/* カラー変更 */
:root {
--content-width: 1300px;
}

/* コンテンツレイアウト */
* {
-webkit-box-sizing: border-box;
box-sizing: border-box;
word-break: break-all;
border-spacing: 0;
border-collapse: collapse;
text-indent: initial;
text-decoration: none;
margin: 0;
padding: 0;
line-height: 1.6;
color: #262626;
}
body {
  font-family: "Noto Sans JP", sans-serif;
}
section {
padding: 60px 0;
}

@media (max-width: 767px) {
section {
padding-bottom: 30px;
}
}
.container {
  margin: 0 auto;
  max-width: var(--content-width);
  padding: 0 15px;
}

.row {
display: flex;
flex-wrap: wrap;
margin-top: 0;
margin-bottom: 0;
margin-right: calc(-1 * 30px / 2);
margin-left: calc(-1 * 30px / 2);
}

@media (max-width: 767px) {
.row {
display: block;
margin-top: 0;
margin-left: 0;
margin-right: 0;
}
.row.sp-2row {
display: flex;
}
}

.row.reverse {
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse;
}

.row .span_1 {
  width: calc(100% / 12 * 1);
}

.row .span_2 {
width: calc(100% / 12 * 2);
}

.row .span_3 {
width: calc(100% / 12 * 3);
}

.row .span_4 {
width: calc(100% / 12 * 4);
}

.row .span_5 {
width: calc(100% / 12 * 5);
}

.row .span_6 {
width: calc(100% / 12 * 6);
}

.row .span_7 {
width: calc(100% / 12 * 7);
}

.row .span_8 {
width: calc(100% / 12 * 8);
}

.row .span_9 {
width: calc(100% / 12 * 9);
}

.row .span_10 {
width: calc(100% / 12 * 10);
}

.row .span_11 {
width: calc(100% / 12 * 11);
}

.row .span_12 {
width: 100%;
}

.row > .col {
margin-top: 30px;
margin-left: 0;
padding-right: calc(30px / 2);
padding-left: calc(30px / 2);
}


@media (max-width: 767px) {
.row > .col {
margin-top: 20px;
margin-left: 0;
margin-right: 0;
padding-right: 0;
padding-left: 0;
width: 100%;
}

.row.sp-2row > .col {
width: 50%;
}
}

@media (max-width: 767px) {
  .row .span_1 {
    width:auto;
}
.row > .col:not(:first-child) {
margin-top: 20px;
}
}

/* ぱんくず */
.bread_wrap {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.bread {
  overflow: hidden;
  margin: 0;
}

.bread ul {
  margin: 0 0 0 auto;
  float: right;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 0;
}

@media (max-width: 767px) {
  .bread ul {
    padding: 15px 0;
  }
}

.bread ul li {
  list-style: none;
  position: relative;
  margin-right: 20px;
  padding-right: 29px;
  float: none;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .bread ul li {
    margin-right: 15px;
    padding-right: 24px;
  }
}

.bread ul li:first-child a {
  color: #B5B5B5;
}

.bread ul li a {
  padding: 0;
  text-decoration: none;
  color: #1b1b1b;
  line-height: 1.4;
}

.bread ul li a:hover {
  color: #FF982C;
  text-decoration: none;
}

.bread ul li::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 14px;
  background: url("/wp-content/uploads/bread-arrow.png") no-repeat center center / contain;
}

.bread ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.bread ul li:last-child::after {
  content: none;
}

/* 画像のフィックス */

figure{
margin: 0;
text-align: center;
}

img {
vertical-align: middle;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
/* image-rendering: crisp-edges; */
-ms-interpolation-mode: nearest-neighbor;
max-width: 100%;
width: 100%;
height: auto;
}

figure img{
width: inherit;
}

/* 投稿 */
.article_list {
    padding: 15px;
    border: 1px solid var(--main-color);
    position: relative;
    overflow: hidden;
    background: #fff;
}

@media (max-width: 767px) {
    .article_list {
        padding: 20px;
    }
}

.article_list:first-child {
    margin-top: 0;
}

.article_list:nth-child(n+2) {
    margin-top: 0;
}

.article_detail {
    background: #f2f6ff;
    padding: 4%;
    margin-bottom: 4%;
    font-size: 1.2rem;
}

.article_detail img {
width: auto;
}

.article_detail .span_12 {
    margin: 2% 0;
}

.article_button {
    margin-top: 30px;
    text-align: right;
}

@media (max-width: 767px) {
    .article_button {
        margin-top: 20px;
    }
}

.more {
    display: inline-block;
    overflow: hidden;
    margin: auto;
}

.more.btn_ss a,
.more.btn_ss span {
    padding: 0.3em 2.1em 0.3em 1.4em;
}

.more.btn_s a,
.more.btn_s span {
    padding: 0.5em 2.1em 0.5em 1.4em;
}

.more.btn_m a,
.more.btn_m span {
    padding: 0.5em 2.1em 0.5em 1.4em;
}

.more a,
.more span {
    display: inline-block;
    letter-spacing: normal;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    padding: 0.9em 1.6em;
    margin-bottom: 1px;
    text-decoration: none;
}

.more a:after,
.more span:after {
    border-color: var(--main-color);
}

.more a:hover,
.more span:hover {
    color: #333;
    border-color: #333;
}

.more a:hover:after,
.more span:hover:after {
    border-color: #333;
}

.more a.add_arrow,
.more span.add_arrow {
    padding-right: 1.9em;
}

.add_arrow {
    display: block;
    position: relative;
}

.add_arrow:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 5%;
    margin: auto;
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: translate(0, -50%) rotate(45deg);
    transform: translate(0, -50%) rotate(45deg);
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.add_arrow:hover:after {
    right: 3%;
    border-color: #fff;
}

.more {
    display: inline-block;
    overflow: hidden;
    margin: auto;
}

.more a {
    display: inline-block;
    letter-spacing: normal;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    padding: 0.3em 1.3em 0.3em 1em;
    margin-bottom: 1px;
    text-decoration: none;
    font-size: 1.2rem;
}

.pager {
    overflow: hidden;
    margin-bottom: 5%;
    display: flex;
    justify-content: space-between;
    flex: auto;
}



.pager .pager_prev a {
    display: block;
    position: relative;
    padding-left: 15px;
    text-decoration: none;
}

.pager .pager_prev a:before,
.pager .pager_prev a:after {
    content: "";
    display: block;
    position: absolute;
    left: 2px;
    margin: auto;
    width: 8px;
    height: 1px;
    background: var(--main-color);
    -webkit-transition: .2s;
    transition: .2s;
}

.pager .pager_prev a:before {
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
    top: calc(50% - 2px);
}

.pager .pager_prev a:after {
    -webkit-transform: translateY(-50%) rotate(-135deg);
    transform: translateY(-50%) rotate(-135deg);
    top: calc(50% + 3px);
}

.pager .pager_prev a:hover {
    text-decoration: underline;
}

.pager .pager_prev a:hover:before {
    left: 0;
}

.pager .pager_prev a:hover:after {
    left: 0;
}

.pager .pager_next a {
    display: block;
    position: relative;
    padding-right: 15px;
    text-decoration: none;
}

.pager .pager_next a:before,
.pager .pager_next a:after {
    content: "";
    display: block;
    position: absolute;
    right: 2px;
    margin: auto;
    width: 8px;
    height: 1px;
    background: var(--main-color);
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: .2s;
    transition: .2s;
}

.pager .pager_next a:before {
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    top: calc(50% - 2px);
}

.pager .pager_next a:after {
    -webkit-transform: translateY(-50%) rotate(135deg);
    transform: translateY(-50%) rotate(135deg);
    top: calc(50% + 3px);
}

.pager .pager_next a:hover {
    text-decoration: underline;
}

.pager .pager_next a:hover:before {
    right: 0;
}

.pager .pager_next a:hover:after {
    right: 0;
}

/* おしらせ */
.news {
  display: flex;
}
.news-title {
  width: 300px;
}
.news-container {
  width: calc(100% - 300px);
}

.news-item {
  display: block;
  padding: 10px 20px;
  border: 2px solid #0000001A;
  background: #fff;
  line-height: 1.625;
  position: relative;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.news-item:hover {
  background: #FFFBF7;
  border-bottom: 2px solid #0000001A;
  border-top: 2px solid #FFFBF7;
  border-left: 2px solid #FFFBF7;
  border-right: 2px solid #FFFBF7;
}

.news-item article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  line-height: 1.625;
  gap: 10px 20px;
  align-items: center;
  flex-wrap: wrap;
}

.news-item:before {
  border-radius: 50%;
  content: '➜';
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  font-family: Montserrat;
  font-size: 14px;
  color: #FF982C;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  text-align: center;
}
.news-item:hover:before {
  border-radius: 50%;
  background-color: #FF982C;
  color: #fff;
}

@media (max-width: 767px) {
  .news {
    flex-direction: column;
  }
  .news-title,
  .news-container {
    width: 100%;
  }
  .news-item {
    padding: 10px 15px;
    line-height: 1.625;
  }
}

.news-item:nth-child(n+2) {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .news-item:nth-child(n+2) {
    margin-top: 15px;
  }
}

.news-item time {
  width: 105px;
  color: #B5B5B5;
  font-family: Montserrat;
  font-weight: bold;
  font-size: 18px;
}

.cat.seisaku {
  background: #FF642C;
  padding: 5px;
  color: #fff;
  font-size: 14px;
  width: inherit !important;
}
.cat.kaihatsu {
  background: #FF2C2C;
  padding: 5px;
  color: #fff;
  font-size: 14px;
  width: inherit !important;
}
.cat.kyuujin {
  background: #6ddb20;
  padding: 5px;
  color: #fff;
  font-size: 14px;
  width: inherit !important;
}
.cat.kaisha {
  background: #FF982C;
  padding: 5px;
  color: #fff;
  font-size: 14px;
  width: inherit !important;
}

.news-item a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: bold;
}

  .news-item span {
    flex: inherit;
    width: 100%;
  }


/* Slider */
.mv {
position: relative;
}

.catch {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  font-size: 2.8vw;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
.catch span{
  font-size: 3.6vw;
  font-family: "Noto Sans JP", sans-serif;
}

@media (max-width: 767px) {
.catch {
    position: absolute;
    top: 25%;
    left: 5%;
    font-size: 6vw;
    font-weight: bold;
  }

  .catch span {
    font-size: 7.2vw;
  }
}

/* 見出し */
h2.aboutus {
  position: relative;
  font-size: 32px;
  display: inline-block;
  margin-bottom: 60px;
  padding-left: 40px;
}
h2.aboutus::first-letter {
  color: #FF982C;
  font-size: 48px;
}
h2.aboutus span {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 16px;
  text-align: right;
  display: block;
  color: #B5B5B5;
}
h2.aboutus:before {
  position: absolute;
  content: '';
  background-image: url(/wp-content/uploads/h2-mark.png);
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 84px;
}
h2.service {
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  margin-bottom: 1.5em;
}
h2.company {
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  margin-bottom: 1.5em;
}
h2.recruit {
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  margin-bottom: 1.5em;
}
h2.contact {
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  margin-bottom: 1.5em;
}

h3.aboutus span{
  font-size: 20px;
  background: linear-gradient(transparent 80%, #FFD1A9 20%);
}

/* ボタン */
.btn-wrap {
  margin-left: calc(100% - 200px);
  background-color: unset!important;
  width: 200px!important;
}
.btn-wrap-2{
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.btn-1 {
  position: relative;
  color: #262626;
  font-family: Montserrat;
  font-weight: 700;
  display: inline-block;
  padding-left: 30px;
  width: 160px;
  border-bottom: #262626 1px solid;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  margin-bottom: 30px;
  margin-top: 30px;
}
.btn-1:before {
position: absolute;
content: '';
height: 20px;
width: 1px;
transform: rotate(-45deg);
background: #262626;
bottom: -4px;
right: 5px;
}
.btn-1:after {
position: absolute;
content: '';
background-color: #FFEEDB;
width: 60px;
height: 60px;
border-radius: 50%;
right: -30px;
bottom: -30px;
z-index: -1;
}
.btn-1:hover {
  width: 180px;
}

.btn-3 {
  width: 270px;
  padding-top: 10px;
  padding-right: 14px;
  padding-bottom: 10px;
  padding-left: 20px;
  border-width: 3px;
  border-radius: 80px;
  border: 3px solid #DDDDDD;
  background-color: #FFFFFF;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  text-align: right;
  align-items: center;
}
.btn-3:hover {
 background-color: #FFE3E3;
}
.btn-3 span{
  border-radius: 50%;
  width: 24px;
  height: 24px;
  text-align: center;
  background-color: #FF982C;
  font-family: Montserrat;
  font-size: 14px;
  color: #fff;
    -webkit-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out;
}
.btn-3:hover span {
  transform: scale(1.3);
}
span.kaihastu {
  background-color: #FF2C2C;
}
span.seisaku {
  background-color: #FF642C;
}

/* リスト */

dl {
margin: 0 0 1em;
line-height: 1.6;
display: flex;
flex-wrap: wrap;
gap: 20px 0;
}

dl:last-child {
margin-bottom: 0;
}

dl dt {
  width: 180px;
  border-bottom: 1px solid #FF982C;
}
dl dt span{
  background-color: #FF982C;
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
  padding: 5px 10px;
  color: #fff;
  display: block;
  font-weight: bold;
  width: 150px;
}

dl dd {
  padding: 5px;
  margin-left: 0;
  width: calc(100% - 180px);
  background: #fff;
  border-bottom: 1px solid #FF982C;
}

dl dd:last-child {
margin-bottom: 0;
}

@media (max-width: 767px){
dl {
gap: 10px 0;
}
dl dt {
width: 100%;
}
dl dd {
width: 100%;
border-bottom: 0;
}
}

/* ページトップ */
.pagetop {
  position: fixed;
  z-index: 100;
  bottom: 3%;
  right: 3%;
  background-color: #fff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  box-shadow: 1px 1px 9px #676767;
}

.pagetop a {
  transition: all .4s;
  display: block;
  padding: 10px;
  position: relative;
  transform: translateY(-4px);
}

.pagetop a:after {
  content: 'TOP';
  position: absolute;
  bottom: -4px;
  left: 27px;
  font-size: 12px;
  color: #ff972d;
}

.pagetop a:hover {
  transform: translateY(-8px);
}

/* ヘッダー */
header {
  background: #fff;
  position: relative;
  z-index: 1;
}

.header-wrap {
	position: fixed;
  top: 0;
  margin-right: auto;
  margin-left: auto;
  width: auto;
  min-height: 77px;
  padding: 20px 80px;
  text-align: center;
  backdrop-filter: blur(5px);
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 150;
}

.header-info {
display: flex;
align-items: center;
gap: 10px;
}

.header-nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
}
.nav-hover {
  position: relative;
}
.nav-hover:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
}
.nav-hover:hover:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  transition: ease 0.5s;
  background-color: #262626;
}
.header-nav ul li span{
background-color: #FF982C;
position: relative;
border-radius: 20px;
padding: 6px 10px 6px 40px;
}
.header-nav ul li span a{
color: #fff;
}
.header-nav ul li span a:before{
  content: '';
  background-color: #fcbe7b;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  width: 30px;
  background-image: url(/wp-content/uploads/mail-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-size: 18px 15px;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 50%;
}

.header-nav ul li:hover span a:before {
  background-color: #FFF;
  background-image: url(/wp-content/uploads/mail-on.png);
}
@media (max-width: 767px) {
  .header-wrap {
    overflow: hidden;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 0;
    margin-top: 0;
    z-index: 999;
    padding: 15px;
  }
}
@media (max-width: 480px) {
  .header-wrap {
    padding: 10px 15px 10px 10px;
  }
}
.header-main {
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 767px) {
  .header-main {
    display: flex;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
  }
}
.header-head:not(.title) {
  font-size: 1rem;
  line-height: 1;
  margin: 0;
  padding: 0 20px 0 0;
  flex: 1;
}
@media (max-width: 767px) {
  .header-head:not(.title) {
    margin: 0 auto 0 0;
    padding: 0;
    text-align: left;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .header-head:not(.title) {
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .header-head:not(.title) img {
    height: auto;
    width: auto;
  }
}
.header-head {
  text-align: left;
}
.header-head a {
  display: inline-block;
  max-width: 400px;
}
.header-head p {
  color: #231815;
  font-size: 1.5rem;
  font-weight: bold;
}
.header-copy:not(.title) {
  color: #1b1b1b;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.2;
  margin: 0 0 20px 0;
  padding: 4px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-align: left;
  position: relative;
}
@media (max-width: 767px) {
  .header-copy:not(.title) {
    display: none;
  }
}
.sp-mail {
  background-color: #FF982C;
  padding: 5px;
  display: flex;
  border-radius: 50%;
  height: 35px;
  width: 35px;
  justify-content: center;
  align-items: center;
  border: 2px solid #FF2C2C;
}
.sp-mail img{
  width: 19px;
}
.header-btn {
  cursor: pointer;
  height: 40px;
  width: 40px;
  position: relative;
  border: 2px solid #999;
  border-radius: 50%;
  background-color: #fff;
}

.header-btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 10px;
  height: 3px;
  border-radius: 2px;
  background: #FF982C;
  width: 45%;
}

.header-btn span:nth-of-type(1) {
  top: 10px;
}

.header-btn span:nth-of-type(2) {
  top: 16px;
}

.header-btn span:nth-of-type(3) {
  top: 22px;
}

.header-btn.is-active span:nth-of-type(1) {
  top: 10px;
  left: 10px;
  transform: translateY(6px) rotate(-45deg);
}

.header-btn.is-active span:nth-of-type(2) {
  opacity: 0;
}

.header-btn.is-active span:nth-of-type(3) {
  top: 22px;
  left: 10px;
  transform: translateY(-6px) rotate(45deg);
}

.nav {
  position: fixed;
  min-height: 100%;
  width: 100%;
  top: -100%;
  z-index: 100;
  will-change: transform;
  opacity: 0;
  display: none;
}
.nav.is-active {
  opacity: 1;
  display: block;
}

.header-wrap.is-active {
  visibility: hidden;
}

.header-wrap.is-active .header-btn {
  visibility: visible;
}



.nav-bg{
  width: 100%;
  height: 100vh;
}

.nav__wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 50vh;
  padding-bottom: 30px;
  overflow: auto;
  background: url(/wp-content/uploads/pc-bgr-menu-bg.jpg);
  background-size: cover;
}

@media (max-width: 767px) {
  .nav__wrap {
    width: 100%;
    height: 100vh;
    padding-bottom: 70px;
    overflow-y: scroll;
    box-shadow: none;
  }
}

.nav__item {
  display: flex;
  max-width: 1300px;
  margin: 0 auto;
  gap: 30px 0;
  margin-top: 100px;
}

.nav-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 50%;
  gap: 30px;
  border-right: 1px solid #B5B5B5;
  padding: 0 30px;
}

.nav-info__name img {
  margin: auto;
  max-width: 350px;
}

.nav-bnr {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.nav-bnr img {
  width: 150px;
}

.nav-nav {
  padding: 0 30px;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}

.nav-nav-inner {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
}

.nav-nav ul {
  list-style: none;
  font-weight: bold;
}

.nav-nav ul li {
  margin-bottom: 20px;
  padding-left: 5px;
}

.nav-nav ul li>ul {
  margin-top: 20px;
  padding-left: 30px;
}

.nav-nav ul li>ul li::marker {
  content: 'ー';
  color: #FF982C;
}

.nav-nav p a {
  background-color: #FF982C;
  color: #fff;
  position: relative;
  border-radius: 20px;
  padding: 6px 10px 6px 40px;
}

.nav-nav p a:before {
  content: '';
  background-color: #fcbe7b;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  height: 28px;
  width: 28px;
  background-image: url(/wp-content/uploads/mail-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-size: 18px 15px;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 50%;
}

.nav-nav p:hover a:before {
  background-color: #FFF;
  background-image: url(/wp-content/uploads/mail-on.png);
}

@media (max-width: 767px) {
  .nav__item {
    flex-direction: column-reverse;
  }
  .nav-nav-inner {
    flex-direction: column;
  }
  .nav-info,
  .nav-nav {
    width: 100%;
    border: 0;
  }
  .nav-bnr {
    flex-direction: column;
  }
}

/* フッター */

footer{
  background: url(/wp-content/uploads/footer-bg.jpg);
  background-size: cover;
  padding-top: 60px;
}
.footer__item {
  display: flex;
  max-width: 1300px;
  margin: 0 auto;
  gap: 30px 0;
}

.footer-info {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
width: 50%;
gap: 30px;
border-right: 1px solid #B5B5B5;
padding: 0 30px;
}

.footer-info__data {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
text-align: left;
line-height: 1.625;
width: 100%;
}
.office-locate {
  border-bottom: 1px solid #FF982C;
}
.office-locate span {
  background-color: #FF982C;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
  width: 250px;
  display: block;
  padding: 5px 20px;
  color: #fff;
  font-weight: bold;
}

.footer-info__name img {
margin: auto;
max-width: 350px;
}

.footer-info__adress {
margin-top: 5px;
position: relative;
padding: 10px 30px 0;
text-align: left;
}
.footer-info__adress:before {
  position: absolute;
  content: '';
  background-image: url(/wp-content/uploads/pin.png);
  top: 10px;
  left: 0;
  width: 20px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer-info__tel-wrap {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.footer-info__tel {
  color: #FF982C;
  font-size: 18px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}
.footer-info__tel span {
  background-color: #FF982C;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  margin-right:10px;
  padding: 2px 10px;
  border-radius: 20px;
}
.footer-info__tel a {
  color:#FF982C;
}
.footer-info__fax {
  color: #B5B5B5;
  font-size: 18px;
  font-weight: bold;
}

.footer-info__fax span {
  background-color: #B5B5B5;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  margin-right: 10px;
  padding: 2px 10px;
  border-radius: 20px;
}

.footer-nav {
  padding: 0 30px;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-nav-inner {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.footer-nav ul {
 list-style: none;
 font-weight: bold;
}
.footer-nav ul li{
  margin-bottom: 20px;
  padding-left: 5px;
}
.footer-nav ul li > ul{
  margin-top: 20px;
  padding-left: 30px;
}

.footer-nav ul li > ul li::marker{
  content: 'ー';
  color: #FF982C;
}

.footer-bnr {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.footer-bnr img{
  width: 150px;
}

@media (max-width: 767px) {
  .footer__item {
    flex-direction: column;
  }
  .footer-info, .footer-nav {
    width: 100%;
    border: 0;
  }
    .footer-info__tel-wrap {
      flex-direction: column;
    }
  .footer-bnr {
    flex-direction: column;
    align-items: center;
  }
}


.footer__copy {
line-height: 1.42857;
text-align: center;
color: #a3a3a3;
padding: 40px 0;
}

@media (max-width: 767px) {
.footer__copy {
padding: 20px 0;
line-height: 1.66667;
}
}

.footer-info__data .footer-info__tel {
margin-bottom: 0;
}

/* 汎用クラス */

.bg-red{
background-color:#fe266d!important;
}

.bg-blue{
background-color:#1646b1!important;
}

.bg-green{
background-color:#5fcf32!important;
}

.bg-orange{
background-color:#ffa204!important;
}

.text-red{
color: #db2d2d!important;
}

.text-blue{
color: #2420db!important;
}

.text-green{
color: #6ddb20!important;
}

.text-orange{
color: #db9620!important;
}

.text-pink{
color: #db20b2!important;
}

.text-black{
color: #000000!important;
}

.text-white{
color: #FFFFFF!important;
}

.mt0 {
margin-top: 0px!important;
}

.mb0 {
margin-bottom: 0px!important;
}

.mt10{
margin-top:10px!important;
}

.mt20{
margin-top:20px!important;
}

.mt30{
margin-top:30px!important;
}

.mt40{
margin-top:40px!important;
}

.mt50{
margin-top:50px!important;
}

.mt60{
margin-top:60px!important;
}

.mr10{
margin-right:10px!important;
}

.mr20{
margin-right:20px!important;
}

.mr30{
margin-right:30px!important;
}

.mr40{
margin-right:40px!important;
}

.mr50{
margin-right:50px!important;
}

.mr60{
margin-right:60px!important;
}

.mb10{
margin-bottom:10px!important;
}

.mb20{
margin-bottom:20px!important;
}

.mb30{
margin-bottom:30px!important;
}

.mb40{
margin-bottom:40px!important;
}

.mb50{
margin-bottom:50px!important;
}

.mb60{
margin-bottom:60px!important;
}

.ml10{
margin-left:10px!important;
}

.ml20{
margin-left:20px!important;
}

.ml30{
margin-left:30px!important;
}

.ml40{
margin-left:40px!important;
}

.ml50{
margin-left:50px!important;
}

.ml60{
margin-left:60px!important;
}

.pt10{
padding-top:10px!important;
}

.pt20{
padding-top:20px!important;
}

.pt30{
padding-top:30px!important;
}

.pt40{
padding-top:40px!important;
}

.pt50{
padding-top:50px!important;
}

.pt60{
padding-top:60px!important;
}

.pr10{
padding-right:10px!important;
}

.pr20{
padding-right:20px!important;
}

.pr30{
padding-right:30px!important;
}

.pr40{
padding-right:40px!important;
}

.pr50{
padding-right:50px!important;
}

.pr60{
padding-right:60px!important;
}

.pb10{
padding-bottom:10px!important;
}

.pb20{
padding-bottom:20px!important;
}

.pb30{
padding-bottom:30px!important;
}

.pb40{
padding-bottom:40px!important;
}

.pb50{
padding-bottom:50px!important;
}

.pb60{
padding-bottom:60px!important;
}

.pl10{
padding-left:10px!important;
}

.pl20{
padding-left:20px!important;
}

.pl30{
padding-left:30px!important;
}

.pl40{
padding-left:40px!important;
}

.pl50{
padding-left:50px!important;
}

.pl60{
padding-left:60px!important;
}

.text-bold{
font-weight: bold!important;
}

.text-center{
text-align: center!important;
}

.text-right{
text-align: right!important;
}

.text-left{
text-align: left!important;
}


.text-xlarge {
font-size: 1.6rem!important;
}

.text-large {
font-size: 1.4rem!important;
}

.text-small {
  font-size: 10px;
}

.w600 {
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 767px) {
.pc-only{
display: none !important;
}
}

@media (min-width: 767px) {
.text-xlarge {
font-size: 2.0rem;
}

.text-large {
font-size: 1.6rem;
}

.text-small {
font-size: 10px;
}

.sp-only {
display: none !important;
}
}

@media (min-width: 767px) and (max-width: 1023px) {
.tablet-hide {
display: none !important;
}
}

@media (min-width: 1024px) {
.tablet-only {
display: none !important;
}
}


.pagination a, .pagination span{
  padding: 5px 10px;
    background: #d9d9d9;
}

.pagination .current{
    background: #616161;
    color: #FFF;
}


/* 想い */
.js-fade {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1.5s, visibility 1.5s, transform 1.5s;
}

.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/* サービス */
section.service {
  position: relative;
  background-color: #FFFBF7;
  z-index: 0;
}
section.service:after {
  position: absolute;
  content: 'SERVICE';
  background: linear-gradient(90deg, #F4F4F4 0%, #FFF2E4 100%);
  font-family: Montserrat;
  font-size: 150px;
  top: 0;
  right: 0;
  font-weight: bold;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1;
  z-index: -1;
}

.service-wrap {
  display: flex;
  position: relative;
  margin: 0 auto;
  max-width: 1440px;
  margin-bottom: 60px;
}
.service-wrap:after {
  position: absolute;
  content: '';
  background: url(/wp-content/uploads/service-x.png);
  height: 55px;
  width: 55px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.service-inner{
  width: 50%;
  display: flex;
}
.service-inner.left{
  justify-content: flex-end;
  position: relative;
}
.service-inner.right{
  justify-content: flex-start;
  position: relative;
}
.service-inner.left:after{
  position: absolute;
  content:'';
  background: url(/wp-content/uploads/service-kaihatsu-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 475px;
  height: 325px;
  left: 0;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
}
.service-inner.right:after{
  position: absolute;
  content:'';
  background: url(/wp-content/uploads/service-seisaku-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 475px;
  height: 325px;
  right: 0;
  z-index: -1;
}
.service-content {
  border-radius: 50%;
  backdrop-filter: blur(4px);
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  color: #262626;
}
.service-inner.right .service-content{
  background-color: #FFBBBBCC;
      -webkit-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
}
.service-inner.left .service-content{
  background-color: #FFC8B4CC;
      -webkit-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
}
.service-inner.right:hover .service-content {
  background-color: #FFBBBB;
  box-shadow: 0px 0px 4px 0px #00000040 inset;
}
.service-inner.left:hover .service-content {
  background-color: #FFC8B4;
  box-shadow: 0px 0px 4px 0px #00000040 inset;
}
.service-inner.right:hover .viewmore {
  text-decoration: underline;
}
.service-inner.left:hover .viewmore {
  text-decoration: underline;
}

.service-content p {
  font-weight: 700;
  font-size: 32px;
}
.service-content ul li {
  padding: 5px 10px;
  border-radius: 20px;
  background: #fff;
  list-style: none;
  display: flex;
  align-items: center;
}
.service-content ul li span{
  color: #FF2C2C;
  font-size: 12px;
  padding-right: 10px;
}
.service-content ul li:nth-child(2n){
  margin-top: 10px;
}
.viewmore {
  font-family: Montserrat;
  font-weight: 700;
  font-size: 16px!important;
  position: relative;
  padding-right: 40px;
}
.viewmore:before {
  content: '〉';
  position: absolute;
  right: 0;
}

.service-list {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.service-list > div{
background-color: #ffffffc3;
width: 20%;
display: flex;
}
.service-list > div > p{
  font-size: 18px;
  font-weight: bold;
  background: linear-gradient(90deg, #FF2C2C 0%, #FF982C 100%);
  padding: 5px 10px;
  background-color: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0px 0px 8px 0px #0000001A;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.service-list p span{
  display: block;
  font-size: 14px;
    background: linear-gradient(90deg, #FF2C2C 0%, #FF982C 100%);
    color: transparent;
      -webkit-background-clip: text;
      background-clip: text;
}

.list-b {
  margin-top: 30px;
}

@media (max-width: 767px) {
section.service:after {
font-size: 50px;
  }
.service-wrap{
  flex-direction: column;
}
.service-inner {
  width: 100%;
}
.service-inner.left, .service-inner.right {
  justify-content: center;
}
.service-inner.left:after{
  background: url(/wp-content/uploads/service-kaihatsu-bg-sp.png);
  width: 100%;
  height: 100%;
  background-position: center center;
  left: auto;
  right: auto;
}

.service-inner.right:after {
  background: url(/wp-content/uploads/service-seisaku-bg-sp.png);
  width: 100%;
  height: 100%;
  background-position: center center;
  left: auto;
  right: auto;
}
.service-content {
  width: 300px;
  height: 300px;
}
.service-list {
flex-direction: column;
}

.service-list div {
width: 100%;
}

.list-a{
  background-color: #FFBBBB;
  padding: 20px;
}
.list-b{
  background-color: #FFC8B4;
  padding: 20px;
}
}

/* 会社概要 */
section.company {
  position: relative;
  z-index: 0;
}

section.company:after {
  position: absolute;
  content: 'COMPANY';
  background: linear-gradient(90deg, #F4F4F4 0%, #FFF2E4 100%);
  font-family: Montserrat;
  font-size: 150px;
  top: 0;
  left: 0;
  font-weight: bold;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1;
  z-index: -1;
}

.company-wrap{
  display: flex;
}
.company-inner{
  width: 50%;
    display: flex;
      align-items: center;
      justify-content: center;
}
.company-inner img{
  width: 320px;
}
@media (max-width: 767px) {
  section.company:after {
    font-size: 50px;
  }
    .company-wrap {
      flex-direction: column;
      gap: 20px 0;
    }
  .company-inner {
    width: 100%;
  }
}

/* 求人 */
section.recruit {
  position: relative;
  background-color: #FFFBF7;
  z-index: 0;
}

section.recruit:after {
  position: absolute;
  content: 'RECRUIT';
  background: linear-gradient(90deg, #F4F4F4 0%, #FFF2E4 100%);
  font-family: Montserrat;
  font-size: 150px;
  top: 0;
  right: 0;
  font-weight: bold;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1;
  z-index: -1;
}

.photo img {
  padding: 0 30px;
}

@media (max-width: 767px) {
  section.recruit:after {
    font-size: 50px;
  }
}

/* お問い合わせ */
section.contact {
  position: relative;
  background-color: #FFFBF7;
  z-index: 0;
}

section.contact:after {
  position: absolute;
  content: 'CONTACT';
  background: linear-gradient(90deg, #F4F4F4 0%, #FFF2E4 100%);
  font-family: Montserrat;
  font-size: 150px;
  top: 0;
  right: 0;
  font-weight: bold;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1;
  z-index: -1;
}

@media (max-width: 767px) {
  section.contact:after {
    font-size: 50px;
  }
}

/* ここから下層 */
#about-thought {
	padding: 0;
}

#about-thought section.section--thought {
  padding: 0 0 80px;
}

@media (max-width: 767px) {
  #about-thought section.section--thought {
    padding: 0 0 40px!important;
  }
}

/* =========================
   ページタイトル共通
========================= */
.content-bg {
  position: relative;
  padding: 120px 0 60px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
}

.content-bg.hook--orange {
  background-image: url("/wp-content/uploads/pagetitle-orange.png");
}

.content-bg.hook--red {
  background-image: url("/wp-content/uploads/pagetitle-red.png");
}

.hook {
  display: inline-block;
  margin: 0 auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.hook__ja {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #262626;
  line-height: 1.4;
}

.hook__en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #B5B5B5;
  letter-spacing: 0.1em;
}

/* =========================
   ページタイトルSP
========================= */
@media (max-width: 767px) {

  .content-bg {
    padding: 20px 0;
  }

  .content-bg.hook--orange {
    background-image: url("/wp-content/uploads/pagetitle-orange-sp.png");
    background-size: 100% auto;
    background-position: center top;
	margin-top: 60px;
  }

  .content-bg.hook--red {
    background-image: url("/wp-content/uploads/pagetitle-red-sp.png");
    background-size: 100% auto;
    background-position: center top;
	margin-top: 60px;
  }

  .hook {
    padding: 8px;
  }

  .hook__ja {
    font-size: 28px;
  }

  .hook__en {
    font-size: 14px;
  }
}

/* =========================
   ページ内アンカーリンク
========================= */
.page-anchor-nav {
  padding: 40px 0;
  border-bottom: 1px solid #B5B5B5;
}

.page-anchor-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-anchor-nav__list li {
  margin: 0;
}

.page-anchor-nav__list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 8px 16px;
  border: 2px solid #B5B5B5;
  border-radius: 30px;
  color: #262626;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.page-anchor-nav__list a::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url("/wp-content/uploads/anc-arrow.svg") no-repeat center center / contain;
  flex-shrink: 0;
}

.page-anchor-nav__list a:hover {
  opacity: 0.6;
}

/* =========================
   ページ内アンカーリンクSP
========================= */

@media (max-width: 767px) {
  .page-anchor-nav {
    padding: 24px 0;
  }

  .page-anchor-nav__list {
    gap: 8px;
  }

  .page-anchor-nav__list a {
    font-size: 14px;
  }

  .page-anchor-nav__list a::after {
    width: 10px;
    height: 10px;
  }
}

/* =========================
   セクション見出し（h3）
========================= */
.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
}

.section-heading__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 40px;
  min-width: 140px;

  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;

  color: #fff;
}

.section-heading--orange .section-heading__label {
  background: #FF982C;
}

.section-heading--red .section-heading__label {
  background: #D92C2C;
}

.section-heading__line {
  width: 1px;
  height: 40px;
  background: #FF982C;
}

/* =========================
   セクション見出し（h3）SP
========================= */

@media (max-width: 767px) {
  .section-heading {
    gap: 20px;
    margin-bottom: 40px;
  }

  .section-heading__label {
    font-size: 24px;
    padding: 16px 40px;
  }

  .section-heading__line {
    height: 20px;
  }
}

/* =========================
   ルクソールの想いページ
========================= */

/*.section--thought {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  padding: 0 0 80px;
  background: linear-gradient(to bottom, #ffffff 0%, #f4f4f4 100%);
}*/

body {
  overflow-x: hidden;
}

.section--thought, .section--philosophy, .section--message {
  position: relative;
  padding: 0 0 80px;
  z-index: 0;
}

.section--thought::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  background: linear-gradient(to bottom, #ffffff 0%, #f4f4f4 100%);
  z-index: -1;
}

.lead-block {
	margin-bottom: 40px;
}

.lead-block__title {
  display: inline;
  font-weight: 700;
  line-height: 1.8;
  font-size: 24px;
  box-shadow: inset 0 -7px 0 #FFD1A9;
}

.text-block p {
	margin-bottom: 40px;
}

.section--philosophy {
  position: relative;
  overflow: hidden;
}

.section--philosophy::before {
  content: "";
  position: absolute;
  bottom: 40px;
  left: 0;

  width: 400px;
  height: 400px;

  background: url("/wp-content/uploads/icon-bg.svg") no-repeat center / contain;

  pointer-events: none;
  z-index: 0;
}

.philosophy-block__title {
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 32px;

  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
}

.philosophy-block__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 2px;

  background: linear-gradient(
    to right,
    #FF982C 0%,
    #FF982C 10%,
    #B5B5B5 10%,
    #B5B5B5 100%
  );
}
.philosophy-block__body {
	position: relative;
	z-index: 1;
}

.philosophy-block__body p {
	margin-bottom: 40px;
}

.section--message {
  position: relative;
  overflow: visible;
  z-index: 0;
}

.section--message::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100vw;
  height: 100%;
  margin-left: -50vw;

  background: url("/wp-content/uploads/message-bg.png") no-repeat center bottom / cover;
  z-index: -2;
  pointer-events: none;
}

.section--message::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100vw;
  height: 100%;
  margin-left: -50vw;

  background: url("/wp-content/uploads/ceo-img.png") no-repeat right bottom / 360px auto;
  z-index: -1;
  pointer-events: none;
}

.message-card__body {
  position: relative;
  margin: 0 auto;
  z-index: 1;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 4px 10px rgba(0, 0, 0, 0.05);

  width: 100%;
  max-width: 800px;
  padding: 80px;

  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  box-sizing: border-box;
}

.message-card__body p { 
	margin-bottom: 40px; 
}

.message-card__body p:last-child {
  margin-bottom: 0;
}

.message-card__name {
  margin-top: 32px;
  text-align: right;
  line-height: 1.4;
}

.message-card__position {
  color: #6E6E6E;
  font-weight: 700;
  font-size: 16px;
}

.message-card__ceo-name {
  margin-left: 12px;
  font-family: "Yuji Syuku", serif;
  font-size: 24px;
  font-weight: 400;
  color: #262626;
}

@media (max-width: 1200px) {
  .message-card__body {
    margin-bottom: 30vw;
  }
}

/* =========================
   ルクソールの想いページSP
========================= */

@media (max-width: 767px) {
	
  .section--thought, .section--philosophy, .section--message {
    padding: 0 0 40px;
  }
	
  .lead-block__title {
    font-size: 20px;
  }
	
	.philosophy-block__title {
      font-size: 20px;
  }
	
	.section--philosophy::before {
    bottom: 200px;
    left: 50px;
    width: 250px;
    height: 250px;
  }

  .section--message::before {
    background: url("/wp-content/uploads/message-bg-sp.png") no-repeat center bottom / cover;
  }

  .section--message::after {
    background: url("/wp-content/uploads/ceo-img.png") no-repeat right bottom / 360px auto;
  }
	
  .message-card__body {
    margin-bottom: 320px;
    padding: 24px 16px;
  }
}

/* =========================
   会社概要ページ
========================= */

.section--company-basic, .section--company-base, .section--company-group, .section--company-compliance, .section--company-partner {
  position: relative;
  padding: 0 0 80px;
  z-index: 0;
}

.section--company-basic::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  background: linear-gradient(to bottom, #ffffff 0%, #f4f4f4 100%);
  z-index: -1;
}

.section--company-basic dd {
  background: none;
}

.section--company-base {
  padding-top: 0;
}

.base-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
  margin-top: 40px;
}

.base-card {
  text-align: center;
}

.base-card__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.base-card__image {
  margin-bottom: 16px;
}

.base-card__image img {
  width: 250px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.base-card__map {
  margin: 16px 0;
}

.base-card__map a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 8px 24px;
  background: #8C8C8C;
  color: #fff;
  font-size: 16px;
  border-radius: 30px;
  text-decoration: none;
}

.base-card__map a::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("/wp-content/uploads/external-link.svg") no-repeat center / contain;
}

.base-card__map a {
  transition: opacity 0.3s ease;
}

.base-card__map a:hover {
  opacity: 0.6;
}

.section--company-base .footer-info__tel-wrap {
  display: block;
}

.section--company-base .footer-info__fax {
  font-family: "Montserrat", sans-serif;
}

.section--company-base .footer-info__fax span {
    margin-right: 8px;
}

.base-card__access {
  text-align: left;
  line-height: 1.6;
  padding-left: 2em;
  margin-top: 16px;
}

.base-card__access li {
  margin-bottom: 4px;
}

.base-card__access li::marker {
  color: #FFEEDB;
}

.base-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 80px 32px;
}

.base-card {
  grid-column: span 2;
}

.base-card:nth-child(1) {
  grid-column: 2 / span 2;
}

.base-card:nth-child(2) {
  grid-column: 4 / span 2;
}

.section--company-group::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  background: linear-gradient(to bottom, #ffffff 0%, #f4f4f4 100%);
  z-index: -1;
}

.section--company-group .section-heading__line {
  background: #005799;
}

.section--company-group .section-heading__label {
  background: #005799;
}

.section--company-group dl dt {
    border-bottom: 1px solid #005799;
}

.section--company-group dl dd {
    border-bottom: 1px solid #005799;
	background: none;
}

.section--company-group dl dt span {
    background-color: #005799;
}

.section--company-group .company-inner img {
    width: 180px;
}

.company-inner.wbs {
    justify-content: flex-start;
}

.company-inner.wbs > dl {
    width: 100%;
}

.section--company-compliance .compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.section--company-compliance .compliance-card {
  padding: 32px 36px 28px;
  border: 1px solid #E5E5E5;
  background: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.section--company-compliance .compliance-card__title {
  margin-bottom: 18px;
  font-size: 24px;
  font-weight: 700;
  color: #262626;
}

.section--company-compliance .compliance-card__text {
  margin-bottom: 20px;
  text-align: left;
  line-height: 1.9;
  color: #262626;
}

.section--company-compliance .compliance-card__link {
  margin: 0;
}

.section--company-compliance .compliance-card__link a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #262626;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.section--company-compliance .compliance-card__link a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: #262626;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s ease;
}

.section--company-compliance .compliance-card__link a::after {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: url("/wp-content/uploads/policy-arrow.svg") no-repeat center / contain;
}

.section--company-compliance .compliance-card__link a:hover::before {
  transform: scaleX(1);
  transform-origin: left center;
}

.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.policy-modal.is-open {
  display: block;
}

.policy-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(56, 56, 56, 0.88);
  cursor: pointer;
}

.policy-modal__inner {
  position: relative;
  z-index: 1;
  width: min(1296px, calc(100% - 80px));
  height: calc(100vh - 320px);
  margin: 160px auto;
  overflow: visible; /* ← 横スクロールを持たせない */
}

.policy-modal__heading-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.policy-modal__heading-line {
  width: 1px;
  height: 40px;
  background: #F59A23;
}

.policy-modal__heading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 40px;
  background: #F59A23;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
}

.policy-modal__content {
  height: calc(100% - 88px);
  overflow-y: auto;
  overflow-x: hidden;
  background: #fff;
  padding: 36px 40px 42px;
  color: #262626;
  line-height: 1.9;
  box-sizing: border-box;
}

.policy-modal__content p,
.policy-modal__content ul,
.policy-modal__content ol {
  margin: 0 0 20px;
}

.policy-modal__content h4 {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
}

.policy-modal__content ol,
.policy-modal__content ul {
  padding-left: 1.5em;
}

.policy-modal__content li {
  margin-bottom: 10px;
}

.policy-modal__signature {
  margin-top: 32px;
  text-align: right;
}

.policy-modal__signature p {
  margin-bottom: 4px;
}

.policy-modal__close {
  position: absolute;
  top: 0;
  right: 0px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.policy-modal__close::before,
.policy-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #F59A23;
  transform-origin: center;
}

.policy-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.policy-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.section--company-partner {
  padding-top: 0;
}

.section--company-partner::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  background: linear-gradient(to bottom, #ffffff 0%, #f4f4f4 100%);
  z-index: -1;
}

.section--company-partner .partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 48px;
  margin-top: 40px;
}

.section--company-partner .partner-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  column-gap: 32px;
  padding: 32px 24px;
  /*background: rgba(255, 255, 255, 0.35);*/
}

.section--company-partner .partner-card__logo {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section--company-partner .partner-card__logo img {
  display: block;
  max-width: 100%;
  height: auto;
}

.section--company-partner .partner-card__body {
  min-width: 0;
}

.section--company-partner .partner-card__title {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #262626;
}

.section--company-partner .partner-card__text {
  margin: 0;
  line-height: 1.9;
  color: #262626;
}

@media (max-width: 1200px) {
  .section--company-partner .partner-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section--company-partner .partner-card {
    grid-template-columns: 220px 1fr;
  }
}

/* =========================
   会社概要ページSP
========================= */
@media (max-width: 767px) {

  .base-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .base-card {
    grid-column: auto !important;
    width: 100%;
    max-width: 100%;
    display: block;
    text-align: center;
  }

  .base-card:nth-child(1),
  .base-card:nth-child(2),
  .base-card:nth-child(3),
  .base-card:nth-child(4),
  .base-card:nth-child(5) {
    grid-column: auto !important;
  }

  .base-card__image {
    margin: 0 auto 12px;
    width: 100%;
    max-width: 170px;
  }

  .base-card__image img {
    display: block;
    width: 100%;
    height: auto;
  }

  .base-card__address {
    display: block;
    width: 100%;
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 1.7;
    text-align: left;
  }

  .base-card__map a {
    display: inline-flex;
    max-width: 100%;
    white-space: nowrap;
  }

  .base-card__info {
    width: 100%;
    margin: 0 0 12px;
    text-align: left;
  }

  .base-card__tel,
  .base-card__fax {
    display: block;
    margin-bottom: 6px;
  }

  .base-card__access {
    padding-left: 1.5em;
  }

  .base-card__access li {
    display: list-item;
    margin-bottom: 4px;
  }
	
  .section--company-compliance .compliance-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section--company-compliance .compliance-card {
    padding: 24px 20px;
  }

  .section--company-compliance .compliance-card__title {
    font-size: 18px;
  }

  .section--company-compliance .compliance-card__text {
    line-height: 1.8;
  }

  .policy-modal__inner {
    width: calc(100% - 24px);
    height: calc(100vh - 80px);
    margin: 40px auto;
  }

  .policy-modal__heading-wrap {
    gap: 8px;
    margin-bottom: 18px;
  }

  .policy-modal__heading-line {
    height: 28px;
  }

  .policy-modal__heading {
    min-height: 44px;
    padding: 10px 20px;
    font-size: 18px;
  }

  .policy-modal__content {
    height: calc(100% - 62px);
    padding: 24px 18px 28px;
  }

  .policy-modal__content h4 {
    font-size: 18px;
  }
	
  .policy-modal__close {
    position: fixed;
    top: 16px;
    right: 16px;
    transform: none;
    z-index: 10001;
  }
	
  .section--company-partner .partner-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 24px;
  }

  .section--company-partner .partner-card {
    grid-template-columns: 1fr;
    row-gap: 20px;
    padding: 24px 16px;
    text-align: center;
  }

  .section--company-partner .partner-card__title {
    margin-bottom: 10px;
  }

  .section--company-partner .partner-card__text {
    line-height: 1.8;
    text-align: left;
  }
}

/* ======================================
   開発ページ
====================================== */

.section--service-mission,
.section--service-content,
.section--service-works {
  position: relative;
}

.section--service-mission .section-heading__line,
.section--service-content .section-heading__line,
.section--service-works .section-heading__line {
  background: #ff3b30;
}

.section--service-mission .section-heading__label,
.section--service-content .section-heading__label,
.section--service-works .section-heading__label {
  background: #ff3b30;
  color: #fff;
}

.section--service-mission {
  padding: 0 0 80px;
}

.section--service-mission::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  background: linear-gradient(to bottom, #ffffff 0%, #f4f4f4 100%);
  z-index: -1;
}

.service-mission__body {
  text-align: center;
}

.service-mission__body p {
  margin: 0 0 34px;
  font-size: 16px;
  line-height: 2;
  color: #262626;
}

.service-mission__body p:last-child {
  margin-bottom: 0;
}

.section--service-content {
  padding: 0 0 100px;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: #FFF3F3;
  padding: 24px;
  text-align: center;
}

.service-card__icon {
  width: 120px;
  margin: 0 auto 24px;
}

.service-card__icon img {
  display: block;
  width: 100%;
  height: auto;
}

.service-card__title {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  color: #262626;
}

.service-card__text {
  margin: 0;
  line-height: 1.2;
  color: #262626;
  text-align: left;
}

.section--service-works {
  padding: 0 0 80px;
}

.section--service-works::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  background: linear-gradient(to bottom, #ffffff 0%, #f4f4f4 100%);
  z-index: -1;
}

.works-panel {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid #ededed;
  padding: 40px 36px;
}

.works-panel + .works-panel {
  margin-top: 48px;
}

.works-panel__title {
  position: relative;
  margin: 0 0 18px;
  padding-left: 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  color: #262626;
}

.works-panel__title::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 6px;
  height: 22px;
  background: #ff3b30;
}

.works-panel__lead {
  margin: 0 0 28px;
  line-height: 1.9;
  color: #262626;
}

.works-accordion {
  display: grid;
  gap: 20px;
}

.works-category {
  position: relative;
}

.works-category__toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 220px;
  min-height: 54px;
  padding: 0 18px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  transition: opacity 0.3s ease;
  border: none;
  outline: none;
}

.works-category__toggle:hover {
  opacity: 0.6;
}

.works-category__toggle::after {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.works-category:not(.is-open) .works-category__toggle {
  background: #fff;
  color: #FF2C2C;
  border: 1px solid transparent;

  /* グラデ枠線 */
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(90deg, #FF2C2C 0%, #FF982C 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.works-category:not(.is-open) .works-category__toggle::after {
  background-image: url("/wp-content/uploads/acd-close-arrow.svg");
}

.works-category.is-open .works-category__toggle {
  color: #fff;
  border: none;
  background: linear-gradient(90deg, #FF2C2C 0%, #FF982C 100%);
}

.works-category.is-open .works-category__toggle::after {
  background-image: url("/wp-content/uploads/acd-open-arrow.svg");
}

.works-category.is-open .works-category__toggle,
.works-category.is-open .works-category__toggle .works-category__label {
  color: #fff;
}

.works-category:not(.is-open) .works-category__toggle,
.works-category:not(.is-open) .works-category__toggle .works-category__label {
  color: #FF2C2C;
}

.works-category__body {
  display: none;
  margin-top: 0;
  padding: 0 18px;
  border: 1px solid #f2b08e;
  background: rgba(255,255,255,0.35);
}

.works-category.is-open .works-category__body {
  display: block;
}

.works-list--system {
  margin: 0;
  padding: 0;
  list-style: none;
}

.works-list--system li {
  padding: 14px 0 12px;
  border-bottom: 1px dotted #d9d9d9;
}

.works-list--system li:last-child {
  border-bottom: 0;
}

.works-list__title {
  position: relative;
  margin: 0 0 8px;
  padding-left: 16px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  color: #262626;
}

.works-list__title::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff3b30;
}

.works-list__meta {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #4d4d4d;
}

.works-list__meta span {
  display: inline-block;
  margin-right: 12px;
  padding: 1px 8px;
  background: #f1f1f1;
  color: #b0b0b0;
  font-size: 12px;
  line-height: 1.5;
  vertical-align: middle;
}

.web-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.web-works-card__title {
  position: relative;
  margin: 0 0 12px;
  padding-left: 14px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #262626;
}

.web-works-card__title::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff3b30;
}

.web-works-card__image {
  margin: 0 0 10px;
  background: #e8e8e8;
}

.web-works-card__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 250 / 150;
  object-fit: cover;
}

.web-works-card__meta {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: #4d4d4d;
}

.web-works-card__meta span {
  display: inline-block;
  margin-right: 10px;
  padding: 1px 8px;
  background: #f1f1f1;
  color: #b0b0b0;
  font-size: 12px;
  line-height: 1.5;
  vertical-align: middle;
}
.other-label-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.other-label {
  display: inline-block;
  padding: 20px;
  background: #fff;
  color: #FF2C2C;
  border: 1px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, #FF2C2C 0%, #FF982C 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

@media (max-width: 1200px) {
  .web-works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ======================================
   開発ページSP
====================================== */
@media (max-width: 767px) {

  .section--service-mission {
    padding: 0 0 60px;
  }

  .section--service-content {
    padding: 0 0 60px;
  }

  .section--service-works {
    padding: 0 0 80px;
  }

  .service-mission__body p {
    margin-bottom: 24px;
    font-size: 13px;
    line-height: 1.9;
    text-align: left;
  }

  .service-card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card {
    padding: 28px 18px 22px;
  }

  .service-card__icon {
    margin-bottom: 18px;
  }

  .service-card__title {
	font-size: 20px;
    margin-bottom: 12px;
  }

  .service-card__text {
    line-height: 1.8;
  }

  .works-panel {
    padding: 22px 16px;
  }

  .works-panel + .works-panel {
    margin-top: 28px;
  }

  .works-panel__title {
    margin-bottom: 14px;
    padding-left: 12px;
    font-size: 16px;
  }

  .works-panel__title::before {
    top: 5px;
    width: 4px;
    height: 18px;
  }

  .works-panel__lead {
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 1.8;
  }

  .works-accordion {
    gap: 12px;
  }

  .works-category__toggle {
    width: 100%;
    min-width: auto;
    min-height: 46px;
    padding: 0 14px;
    font-size: 15px;
  }

  .works-category__toggle::after {
    width: 14px;
    height: 14px;
  }

  .works-category__body {
    padding: 0 12px;
  }

  .works-list--system li {
    padding: 10px 0;
  }

  .works-list__title {
    margin-bottom: 6px;
    padding-left: 14px;
    font-size: 13px;
    line-height: 1.6;
  }

  .works-list__title::before {
    top: 7px;
    width: 6px;
    height: 6px;
  }

  .works-list__meta {
    font-size: 12px;
    line-height: 1.8;
  }

  .works-list__meta span {
    margin-right: 8px;
    padding: 1px 6px;
    font-size: 11px;
  }

  .web-works-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .web-works-card__title {
    margin-bottom: 8px;
    padding-left: 12px;
    font-size: 13px;
  }

  .web-works-card__title::before {
    top: 7px;
    width: 6px;
    height: 6px;
  }

  .web-works-card__meta {
    font-size: 12px;
  }

  .web-works-card__meta span {
    margin-right: 8px;
    padding: 1px 6px;
    font-size: 11px;
  }
}

/* ======================================
   採用情報ページ
====================================== */

.section--recruit-intro {
  padding: 80px 0 100px;
  background: linear-gradient(to bottom, #fff 0%, #f4f4f4 100%);
}

.section--recruit-intro, .section--recruit-entry {
  position: relative;
  padding: 80px 0;
  z-index: 0;
}

.section--recruit-intro::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  background: linear-gradient(to bottom, #ffffff 0%, #f4f4f4 100%);
  z-index: -1;
}

.section--recruit-entry::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  background: linear-gradient(to bottom, #ffffff 0%, #f4f4f4 100%);
  z-index: -1;
}

.recruit-intro__title {
  display: inline;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.9;
  color: #262626;
  box-shadow: inset 0 -7px 0 #FFD1A9;
}

.recruit-intro {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: center;
  margin-top: 70px;
}

.recruit-intro__lead p {
  margin: 0 0 28px;
  line-height: 2;
  color: #262626;
}

.recruit-intro__lead p:last-child {
  margin-bottom: 0;
}

.recruit-intro__image {
  margin: 0;
}

/* ふわふわ浮遊 */
.recruit-intro__image img {
  display: block;
  width: 100%;
  height: auto;
  animation: recruitFloat 4s ease-in-out infinite;
  will-change: transform;
}

@keyframes recruitFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }

  100% {
    transform: translateY(0);
  }
}

.section--recruit-job {
  padding: 90px 0 100px;
  background: #fff;
}

.recruit-message {
  position: relative;
  margin: 0 auto 64px;
  text-align: center;
  font-size: 24px;
}

.recruit-message::before,
.recruit-message::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 70px;
  background: #ff982c;
}

.recruit-message::before {
  left: calc(50% - 310px);
  transform: translateY(-50%) rotate(-22deg);
}

.recruit-message::after {
  right: calc(50% - 310px);
  transform: translateY(-50%) rotate(22deg);
}

.recruit-message p {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
  color: #262626;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.job-card {
  background: #fff3e9;
}

.job-card__title {
  margin: 0;
  padding: 14px 20px;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.job-card--dev .job-card__title {
  background: #ff2c2c;
}

.job-card--creative .job-card__title {
  background: #FF642C;
}

.job-card__body {
  padding: 38px 42px 42px;
}

.job-card__list {
  margin: 0;
  display: grid;
  gap: 22px;
}

.job-card__row {
  display: block;
}

.job-card__row dt {
  display: inline-flex;
  margin: 0 0 8px;
  padding: 3px 12px;
  border: 1px solid #ff2c2c;
  background: #fff;
  color: #ff2c2c;
  font-weight: 700;
  line-height: 1.5;
  width: fit-content;
}

.job-card__row dd {
	background: none;
	border-bottom: none;
}

.job-card__row dd {
  margin: 0;
  line-height: 1.8;
  color: #262626;
}

.job-card__row ul {
  margin: 0;
  padding-left: 1.2em;
}

.job-card__row li::marker {
  color: #ff2c2c;
}

.job-card--creative .job-card__row dt{
  border: 1px solid #FF642C;
  color: #FF642C;
}

.job-card--creative .job-card__row li::marker{
  color: #FF642C;
}

.job-card__button {
  margin: 34px 0 0;
}

.job-card__button a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin-left: auto;
  padding: 10px 14px 10px 40px;
  border: 3px solid #d9d9d9;
  border-radius: 999px;
  background: #fff;
  color: #262626;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  transition:
    background-color 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease,
    transform 0.45s ease;
}

.job-card__button span {
	line-height: 1.2;
}

.job-card__button a::after {
  content: "";
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #ff982c url("/wp-content/uploads/policy-arrow.svg") no-repeat center / 16px auto;
  transition:
    background-color 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease,
    transform 0.45s ease;
}

.job-card__button a:hover {
  background: #FFEEDB;
  opacity: 1;
}

.job-card__button a:hover::after {
  /*width: 50px;
  height: 50px;*/
  transform: scale(1.3);
}

.section--recruit-entry {
  padding: 40px 0 80px;
  background: #fff;
}

.recruit-entry-heading {
  position: relative;
  margin: 0 auto 54px;
  text-align: center;
}

.recruit-entry-heading::before {
  content: "";
  display: block;
  width: 1px;
  height: 36px;
  margin: 0 auto 32px;
  background: #ff982c;
}

.recruit-entry-heading p {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.9;
  color: #262626;
}

/* バナー並び */
.entry-links {
  display: grid;
  gap: 32px;
}

/* 各バナー */
.entry-banner {
  margin: 0;
}

.entry-banner__link {
  display: block;
  position: relative;
  text-decoration: none;
}

/* 画像共通 */
.entry-banner__img {
  display: block;
  width: 100%;
  height: auto;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    filter 0.35s ease;
}

/* SP画像はPC時非表示 */
.entry-banner__img--sp {
  display: none;
}

@media (hover: hover) and (pointer: fine) {

  /* デフォルトOFF画像 */
  .entry-banner--guidance .entry-banner__link {
    background: url("/wp-content/uploads/form-01-on.png") no-repeat center / cover;
  }

  .entry-banner--entry .entry-banner__link {
    background: url("/wp-content/uploads/form-02-on.png") no-repeat center / cover;
  }

  /* hover前はOFF画像見せる */
  .entry-banner__img--pc {
    opacity: 1;
  }

  /* hover時ON画像を背景で見せる */
  .entry-banner__link:hover .entry-banner__img--pc {
    opacity: 0;
    */transform: scale(1.01);*/
  }
}

/* =========================
   1200px以下
========================= */
@media (max-width: 1200px) {
  .recruit-entry-heading p {
    font-size: 20px;
  }

  .entry-links {
    gap: 24px;
  }
}

.section--recruit-job {
  overflow: hidden;
}

.recruit-gallery-wrap {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  padding-top: 80px;
  overflow: hidden;
}

.recruit-gallery {
  display: flex;
  align-items: center;
  gap: 42px;
  width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: recruitGalleryLoop 60s linear infinite;
}

.recruit-gallery__item {
  width: 100px;
  height: 100px;
  flex: 0 0 auto;
  border-radius: 50%;
  overflow: hidden;
}

.recruit-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit-gallery__item--gray {
  background: #d9d9d9;
}

.recruit-gallery__item--yellow {
  background: #ffd42a;
}

.recruit-gallery__item--orange {
  background: #ff982c;
}

.recruit-gallery__item--deep-orange {
  background: #FF642C;
}

.recruit-gallery__item--red {
  background: #ff5a2c;
}

@keyframes recruitGalleryLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 21px));
  }
}

/* ---------- 1200px以下 ---------- */
@media (max-width: 1200px) {
  .recruit-intro {
    grid-template-columns: 1fr 300px;
    gap: 40px;
  }

  .job-grid {
    gap: 24px;
  }

  .entry-card {
    grid-template-columns: 220px 1fr 200px;
    gap: 24px;
  }
}

/* ======================================
   採用情報ページSP
====================================== */
@media (max-width: 767px) {
  .section--recruit-intro {
    padding: 36px 0 54px;
  }

  .recruit-intro {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 0;
  }

  .recruit-intro__title {
    display: inline;
    font-size: 18px;
    line-height: 1.9;
    box-shadow: inset 0 -6px 0 #FFD1A9;
  }

  .recruit-intro__lead {
    margin-top: 34px;
  }

  .recruit-intro__lead p {
    margin-bottom: 22px;
    line-height: 1.9;
  }

  .recruit-intro__image {
    margin: 0 auto;
  }

  .section--recruit-job {
    padding: 40px 2px;
  }

  .recruit-message {
    margin-bottom: 36px;
  }

  .recruit-message::before,
  .recruit-message::after {
    width: 4px;
    height: 54px;
  }

  .recruit-message::before {
    left: 8px;
  }

  .recruit-message::after {
    right: 8px;
  }

  .recruit-message p {
    font-size: 17px;
    line-height: 1.7;
  }

  .job-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .job-card__title {
    padding: 10px 16px;
    font-size: 20px;
  }

  .job-card__body {
    padding: 24px 20px 28px;
  }

  .job-card__list {
    gap: 18px;
  }

  .job-card__button a {
    width: 100%;
    padding: 8px 16px 8px 32px;
  }

  .job-card__button a::after {
    width: 36px;
    height: 36px;
  }

  .section--recruit-entry {
    padding: 24px 0 54px;
  }

  .recruit-entry-heading {
    margin-bottom: 30px;
  }

  .recruit-entry-heading::before {
    height: 28px;
    margin-bottom: 22px;
  }

  .recruit-entry-heading p {
    font-size: 17px;
    line-height: 1.8;
  }

  .entry-links {
    gap: 18px;
  }

  .entry-banner__img--pc {
    display: none;
  }

  .entry-banner__img--sp {
    display: block;
    width: 100%;
    height: auto;
  }

  .entry-banner__link {
    background: none !important;
  }

  .recruit-gallery-wrap {
    padding-top: 50px;
  }

  .recruit-gallery {
    gap: 22px;
    animation-duration: 60s;
  }

  .recruit-gallery__item {
    width: 60px;
    height: 60px;
  }

  @keyframes recruitGalleryLoop {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-50% - 11px));
    }
  }
}
