@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  font-size: 1.8rem;
  line-height: 1.75;
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word;
  letter-spacing: 0.2rem;
  font-feature-settings: "palt";
  position: relative;
}
body.open {
  overflow: hidden;
}

@media screen and (max-width: 840px) {
  body {
    font-size: 1.6rem;
  }
}
img {
  width: 100%;
  height: auto;
}

p {
  text-align: justify;
  position: relative;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  width: 95%;
}

.detail {
  font-size: 1rem;
  text-align: right;
}

section {
  padding: 150px 0;
}

@media screen and (max-width: 540px) {
  section {
    padding: 50px 0;
  }
}
/*-------------------------*/
body {
  color: #2d2921;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
} 
h1 {
  font-size: 4.4rem;
  margin-bottom: 2rem;
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
}
h1 span {
  color: #71b3bf;
}
@media screen and (max-width: 540px) {
  h1 {
    font-size: 3.4rem;
  }
}

h2 {
  font-size: 9rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
  line-height: 1.2;
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
}
h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% + 50px);
  height: 3px;
  background: linear-gradient(to right, #71b3bf 0%, #71b3bf 92%, #2d2921 92%, #2d2921 100%);
}
@media screen and (max-width: 540px) {
  h2::after {
    width: 100%;
  }
}
h2 span {
  color: #71b3bf;
}
@media screen and (max-width: 540px) {
  h2 {
    font-size: 5rem;
  }
}

h3 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.7);
}
header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: initial;
  width: 100%;
  padding: 20px 0;
}

.logo {
  margin-right: 130px;
  flex-shrink: 0;
  width: 10%;
  text-align: center;
  z-index: 100;
}
.logo img {
  max-width: 110px;
  height: auto;
}
@media screen and (max-width: 540px) {
  .logo {
    width: 70px;
    margin-left: 15px;
  }
}

.hamburger {
  display: none;
  width: 50px;
  aspect-ratio: 1/1;
  flex-flow: column;
  justify-content: center;
  position: fixed;
  top: 30px;
  right: 15px;
  z-index: 100;
  padding: 6px;
  transition: all ease 0.3s;
  gap: 7px;
}
.hamburger span {
  width: 100%;
  height: 3px;
  background-color: #71b3bf;
  transition: all ease 0.3s;
}
@media screen and (max-width: 840px) {
  .hamburger {
    display: flex;
  }
}
.hamburger.open {
  background: transparent;
  border: none;
}
.hamburger.open span:nth-of-type(1) {
  transform: translateY(5px) rotate(225deg);
}
.hamburger.open span:nth-of-type(2) {
  display: none;
}
.hamburger.open span:nth-of-type(3) {
  transform: translateY(-5px) rotate(135deg);
}

.nav-list {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 80px;
  transition: all ease 0.3s;
}
.nav-list a {
  text-decoration: none;
  color: #333;
  text-align: center;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 2px;
}
.nav-list.nav1 a::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 120%;
  height: 3px;
  background: linear-gradient(to right, #71b3bf 0%, #71b3bf 92%, #2d2921 92%, #2d2921 100%);
  opacity: 0;
  transition: all ease 0.3s;
}
.nav-list.nav1 a:hover::after {
  opacity: 1;
}
.nav-list .en {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.01rem;
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.nav-list .ja {
  display: block;
  font-size: 1.2rem;
  font-weight: normal;
  color: #666;
  line-height: 1;
}
.nav-list .ct {
  width: 230px;
  height: 80px;
  background-color: #71b3bf;
  color: #fff;
  padding-left: 40px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 28% 100%);
  transition: all ease 0.5s;
}
.nav-list .ct .ja {
  color: #fff;
}
.nav-list .ct:hover {
  background-color: #2d2921;
}
@media screen and (max-width: 840px) {
  .nav-list .ct {
    clip-path: none;
    padding: 10px;
  }
}
@media screen and (max-width: 840px) {
  .nav-list {
    position: fixed;
    opacity: 0;
    transform: translateX(100%);
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 99;
    flex-flow: column;
    padding: 30px;
    gap: 30px;
    justify-content: center;
    padding-top: 110px;
  }
  .nav-list a {
    padding-bottom: 10px;
  }
  .nav-list .content {
    width: 100%;
  }
  .nav-list.open {
    opacity: 1;
    transform: translateX(0);
  }
}

.nav-sns {
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-sns img {
  width: 30px;
  height: auto;
  vertical-align: middle;
}

.sticky-container {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  position: relative;
}
@media screen and (max-width: 840px) {
  .sticky-container {
    flex-flow: column-reverse;
  }
}
@media screen and (max-width: 540px) {
  .sticky-container {
    gap: 10px;
  }
}

.scroll-content {
  flex: 4.5;
  padding: 75px;
}
@media screen and (max-width: 840px) {
  .scroll-content {
    flex: initial;
  }
}
@media screen and (max-width: 540px) {
  .scroll-content {
    padding: 30px;
  }
}

.text-top,
.text-bottom {
  margin-top: 18rem;
}
@media screen and (max-width: 840px) {
  .text-top,
  .text-bottom {
    margin-top: 10rem;
  }
}

@media screen and (max-width: 540px) {
  .text-top {
    margin-top: 0;
  }
}

.sticky-img {
  flex: 5.5;
  position: sticky;
  top: 200px;
  clip-path: polygon(4% 0, 100% 0, 100% 100%, 4% 100%, 0 94%, 0 6%);
  aspect-ratio: 1/0.726;
}
.sticky-img img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 840px) {
  .sticky-img {
    position: initial;
    flex: initial;
    width: 90%;
    margin-left: auto;
  }
}

.btn-vm {
  padding-right: 35px;
  display: inline-block;
  text-decoration: none;
  position: relative;
  padding-top: 60px;
  padding-left: 10px;
  padding-bottom: 16px;
  line-height: 1.2;
  font-weight: bold;
  font-size: 2.7rem;
  color: #2d2921;
  letter-spacing: -0.01rem;
}
.btn-vm .vm-lb {
  color: #71b3bf;
}
.btn-vm::before {
  content: "";
  position: absolute;
  left: 43%;
  transform: translateX(-50%);
  bottom: 6px;
  width: calc(100% - 30px);
  height: 4px;
  background: linear-gradient(to right, #71b3bf 0%, #71b3bf 50%, #2d2921 50%, #2d2921 100%);
  z-index: 1;
  transition: all ease 0.5s;
}
.btn-vm::after {
  content: "";
  background-image: url(images/arrow_bk.webp);
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
  height: 25px;
  border-radius: 30px;
  position: absolute;
  right: 0px;
  top: 61%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-vm:hover::after {
  animation: arrow forwards 0.7s;
}
.btn-vm:hover::before {
  width: 120%;
}

@keyframes arrow {
  50% {
    background-position: 50px;
  }
  55% {
    background-position: -50px;
  }
  100% {
    background-position: center;
  }
}
#news {
  width: 100%;
  background-color: rgba(244, 244, 244, 0.9);
  padding: 40px 0 80px;
  position: relative;
}

.news-content {
  text-align: center;
  max-width: 800px;
  margin: 50px auto;
}

.news-list {
  display: flex;
  flex-flow: column;
  gap: 8px;
}
.news-list .item {
  width: 100%;
  padding: 20px;
  background-color: #fff;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3));
  transition: all ease 0.3s;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  position: relative;
  flex-flow: row wrap;
}
.news-list .item .date {
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  width: 160px;
}
@media screen and (max-width: 540px) {
  .news-list .item .date {
    width: 100%;
    text-align: left;
  }
}
.news-list .item .text {
  width: calc(100% - 160px);
  padding-left: 5px;
  text-align: left;
}
@media screen and (max-width: 540px) {
  .news-list .item .text {
    width: 100%;
    padding-left: 0;
  }
}
.news-list .item:hover {
  background-color: #71b3bf;
  color: #fff;
}
.news-list .item::after {
  content: "";
  background-image: url(images/arrow.webp);
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
  width: 33px;
  height: 33px;
  background-color: #747474;
  border-radius: 30px;
  position: absolute;
  right: 3%;
  top: 54%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 840px) {
  .news-list .item {
    padding-right: 70px;
  }
}

#aboutus .inner {
  max-width: initial;
  width: 100%;
}
#aboutus .btn-vm {
  margin-top: 50px;
}
@media screen and (max-width: 540px) {
  #aboutus {
    padding-top: 110px;
  }
}

#photo_slider {
  overflow-x: hidden;
}
#photo_slider .inner {
  max-width: initial;
  width: 100%;
}
#photo_slider .swiper-slide.mt10 {
  margin-top: 10%;
}
#photo_slider .swiper-slide.mt5 {
  margin-top: 5%;
}
#photo_slider .scene_swiper .swiper-wrapper {
  transition-timing-function: linear;
}
#photo_slider .scene_swiper .swiper-wrapper .swiper-slide {
  filter: drop-shadow(8px 8px 8px rgba(0, 0, 0, 0.3));
}

#business {
  position: relative;
}
#business .lead {
  max-width: 600px;
}
#business::before {
  content: "";
  width: 50%;
  aspect-ratio: 1/2;
  background-image: url(images/back_asset.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(180deg);
  z-index: -1;
}
@media screen and (max-width: 540px) {
  #business::before {
    opacity: 0.3;
    width: 80%;
  }
}
#business .link_btn {
  margin-top: 100px;
}
@media screen and (max-width: 840px) {
  #business {
    padding-top: 0;
  }
  #business .lead {
    max-width: 420px;
  }
  #business .link_btn {
    margin-left: 30px;
  }
}

.h2_wrap {
  border-bottom: 1px solid #747474;
  padding-right: 160px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
.h2_wrap h2 {
  font-size: 6rem;
  line-height: 1;
  margin-bottom: 5px;
  transition: all ease 0.3s;
}
.h2_wrap h2::after {
  content: none;
}
.h2_wrap h2::before {
  content: "";
  background-image: url(images/arrow.webp);
  background-size: 75%;
  background-repeat: no-repeat;
  background-position: center;
  width: 45px;
  height: 45px;
  background-color: #747474;
  border-radius: 30px;
  position: absolute;
  right: -14%;
  top: 54%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.h2_wrap .sub_h2 {
  font-size: 2.1rem;
  color: #71b3bf;
}
@media screen and (max-width: 540px) {
  .h2_wrap {
    padding-right: 0;
    width: 100%;
  }
  .h2_wrap h2 {
    font-size: 4rem;
  }
  .h2_wrap h2 span {
    display: block;
  }
  .h2_wrap h2::before {
    right: -60px;
    top: 75%;
  }
}
.h2_wrap:hover h2 {
  color: #71b3bf;
}
.h2_wrap:hover h2:before {
  animation: arrow forwards 0.4s;
}

#interview {
  width: 100%;
  background-color: rgba(244, 244, 244, 0.9);
  padding: 40px 0 80px;
}

.link_btn {
  width: 517px;
  aspect-ratio: 1/0.38;
  background-color: #e3f0f2;
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3.7rem;
  display: flex;
  flex-flow: column;
  padding: 15px 25px;
  line-height: 1.5;
  position: relative;
  transition: all ease 0.3s;
  filter: drop-shadow(3px 4px 6px rgba(0, 0, 0, 0.2));
}
.link_btn span {
  color: #71b3bf;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 2.1rem;
}
.link_btn::before {
  content: "";
  background-image: url(images/arrow.webp);
  background-size: 33%;
  background-repeat: no-repeat;
  background-position: right 13px bottom 16px;
  width: 100px;
  height: 100px;
  background-color: #71b3bf;
  position: absolute;
  right: 0;
  bottom: 0;
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.link_btn::after {
  content: "";
  background-image: url(images/border.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 156px;
  aspect-ratio: 1/1;
  position: absolute;
  top: -25px;
  left: -25px;
  z-index: -1;
  transition: all ease 0.3s;
}
@media screen and (max-width: 840px) {
  .link_btn {
    width: 400px;
  }
}
@media screen and (max-width: 540px) {
  .link_btn {
    width: 310px;
    font-size: 2.7rem;
    line-height: 1.1;
  }
  .link_btn span {
    margin-top: 5px;
  }
  .link_btn::after {
    width: 116px;
    top: -15px;
    left: -15px;
  }
}
.link_btn:hover {
  background-color: #71b3bf;
}
.link_btn:hover span {
  color: #fff;
}
.link_btn:hover::before {
  animation: arrow2 forwards 0.4s;
  background-color: #e3f0f2;
  background-image: url(images/arrow_bk.webp);
}
.link_btn:hover::after {
  top: -15px;
  left: -15px;
}

@keyframes arrow2 {
  50% {
    background-position: right -50px bottom 16px;
  }
  55% {
    background-position: right 50px bottom 16px;
  }
  100% {
    background-position: right 13px bottom 16px;
  }
}
.int_wrap {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
  justify-content: center;
}
.int_wrap .cs {
  font-size: 3rem;
}
.int_wrap .item {
  width: calc((100% - 20px) / 2);
}
.int_wrap .item .int_img {
  width: 100%;
  aspect-ratio: 1/0.65;
  position: relative;
  background-color: #ddd;
  overflow: hidden;
}
.int_wrap .item .int_img img {
  transition: all ease 0.3s;
}
.int_wrap .item .int_copy {
  position: absolute;
  bottom: 15px;
  left: 15px;
}
.int_wrap .item .int_copy p {
  background-color: #fff;
  padding: 0 10px;
  width: -moz-fit-content;
  width: fit-content;
  transition: all ease 0.3s;
}
.int_wrap .item .int_copy p:nth-of-type(1) {
  margin-bottom: 3px;
}
.int_wrap .item .shoulder {
  font-size: 1.5rem;
  color: #71b3bf;
  margin-top: 10px;
}
.int_wrap .item .name {
  font-size: 2.2rem;
}
@media screen and (max-width: 540px) {
  .int_wrap .item {
    width: 100%;
  }
}
.int_wrap .item:hover .int_img img {
  transform: scale(1.1);
}
.int_wrap .item:hover .int_copy p {
  background-color: #2d2921;
  color: #fff;
}
.int_wrap .name_wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: start;
  align-items: center;
  margin-bottom: 2rem;
}
.int_wrap .name_wrap .name_item {
  width: 50%;
  padding-right: 15px;
}
@media screen and (max-width: 540px) {
  .int_wrap .name_wrap {
    flex-flow: column;
  }
  .int_wrap .name_wrap .name_item {
    width: 100%;
  }
}

#recruit .link_btn {
  margin: 0 auto;
}

/* リクルートページ（page-recruit.php） */
body.page-template-page-recruit-php .recruit {
  /*.sticky-container {
    display: flex;
    align-items: flex-start;
    position: relative;
    /* 縦棒を採用プロセスまで通す（擬似要素で高さいっぱい） */
  /*&::before {
      content: "";
      position: absolute;
      left: 260px;
      top: 0;
      bottom: 0;
      width: 1px;
      background: #e6e6e6;
      pointer-events: none;
    }
  }
  .sticky-area {
    flex: 0 0 260px;
    padding-right: 40px;
    position: sticky;
    top: 200px;
  }
  .scroll-content {
    flex: 1;
    min-width: 0;
    padding-left: 40px;
    padding-right: 0;
    border-left: none;
  }*/
  /* 縦棒右側エリア：キャッチ・リード文 */
}
body.page-template-page-recruit-php .recruit .scroll-content .recruit-lead {
  margin-bottom: 32px;
  width: 100%;
}
body.page-template-page-recruit-php .recruit .recruit-catch {
  margin: 0 0 12px;
  font-size: 2.2rem;
  color: #71b3bf;
}
body.page-template-page-recruit-php .recruit .recruit-spec {
  margin: 100px 0 50px;
}
body.page-template-page-recruit-php .recruit .spec-head {
  margin-bottom: 16px;
}
body.page-template-page-recruit-php .recruit .spec-head_title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.6rem;
  color: #71b3bf;
}
body.page-template-page-recruit-php .recruit .spec-head_title::before {
  content: "";
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #5a9ca8 0%, #5a9ca8 50%, #8cc9d1 50%, #8cc9d1 100%);
  flex-shrink: 0;
}
body.page-template-page-recruit-php .recruit .spec-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #e6e6e6;
}
body.page-template-page-recruit-php .recruit .spec-tabs .tab {
  background: transparent;
  border: 0;
  padding: 10px 0;
  cursor: pointer;
  z-index: 1;
  text-align: center;
}
body.page-template-page-recruit-php .recruit .spec-tabs .tab.is-active {
  color: #71b3bf;
}
body.page-template-page-recruit-php .recruit .spec-tabs .tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: #71b3bf;
  opacity: 0;
  transform: scaleX(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
body.page-template-page-recruit-php .recruit .tab-indicator {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50%;
  height: 2px;
  background: #71b3bf;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
body.page-template-page-recruit-php .recruit .spec-tabs:has(.tab[data-tab=career].is-active) .tab-indicator {
  transform: translateX(100%);
}
body.page-template-page-recruit-php .recruit .accordion {
  margin-top: 18px;
}
body.page-template-page-recruit-php .recruit .acc-item {
  margin-bottom: 0;
  overflow: hidden;
}
body.page-template-page-recruit-php .recruit .acc-item.is-open .acc-icon {
  transform: translateX(-3px);
}
body.page-template-page-recruit-php .recruit .acc-head {
  transition: all ease 0.3s;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
  border: 0;
  padding: 12px 14px;
  cursor: pointer;
  background: #71b3bf;
  color: #fff;
  text-align: left;
}
body.page-template-page-recruit-php .recruit .acc-head::before {
  content: "";
  width: 4px;
  height: 1.2em;
  background-color: #fff;
  margin-right: 10px;
  flex-shrink: 0;
}
body.page-template-page-recruit-php .recruit .acc-title {
  flex: 0 1 auto;
}
body.page-template-page-recruit-php .recruit .acc-icon {
  margin-left: auto;
}
body.page-template-page-recruit-php .recruit .acc-item:not(.is-open) .acc-head {
  background: #f2f2f2;
  color: #111;
}
body.page-template-page-recruit-php .recruit .acc-item:not(.is-open) .acc-head::before {
  background-color: #71b3bf;
}
body.page-template-page-recruit-php .recruit .acc-body {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), background-color 0.2s ease, border-color 0.2s ease;
  background-color: transparent;
  border: 1px solid transparent;
  border-top: 0;
}
body.page-template-page-recruit-php .recruit .acc-body > * {
  min-height: 0;
}
body.page-template-page-recruit-php .recruit .acc-body .spec-dl {
  padding: 16px 14px;
  opacity: 0;
  transition: opacity 0.25s ease 0.15s;
}
body.page-template-page-recruit-php .recruit .acc-item.is-open .acc-body {
  grid-template-rows: 1fr;
  background-color: #eaf4f7;
  border-color: #e6e6e6;
}
body.page-template-page-recruit-php .recruit .acc-item.is-open .acc-body .spec-dl {
  opacity: 1;
}
body.page-template-page-recruit-php .recruit .spec-dl {
  margin: 0;
  overflow: hidden;
  overflow-wrap: break-word;
}
body.page-template-page-recruit-php .recruit .spec-dl dt {
  font-size: 1.4rem;
  color: #71b3bf;
  margin-top: 10px;
}
body.page-template-page-recruit-php .recruit .spec-dl dd {
  margin: 4px 0 0;
  overflow-wrap: break-word;
}
body.page-template-page-recruit-php .recruit .recruit-links {
  margin: 50px 0;
}
body.page-template-page-recruit-php .recruit .links-label {
  margin: 0 0 10px;
}
body.page-template-page-recruit-php .recruit .links-list {
  display: grid;
  gap: 0;
}
body.page-template-page-recruit-php .recruit .link-btn {
  display: block;
  padding: 12px 14px;
  border: 1px solid #e6e6e6;
  background: #fff;
  text-decoration: none;
  color: #111;
  text-align: center;
}
body.page-template-page-recruit-php .recruit {
  /* 二重矢印（arrow.webp・ブロック間に追加、下向き） */
}
body.page-template-page-recruit-php .recruit .link-arrow {
  justify-self: center;
  display: block;
  width: 24px;
  height: 24px;
  margin: 8px 0;
  background-color: #71b3bf;
  -webkit-mask-image: url(images/arrow_recruit.webp);
  mask-image: url(images/arrow_recruit.webp);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transform: rotate(0deg);
}
@media (max-width: 768px) {
  body.page-template-page-recruit-php .recruit .sticky-container {
    display: block;
  }
  body.page-template-page-recruit-php .recruit .sticky-area {
    position: static;
    border-right: 0;
    padding-right: 0;
    margin-bottom: 18px;
  }
  body.page-template-page-recruit-php .recruit .scroll-content {
    padding-left: 0;
  }
}

.foot_logo {
  width: 100px;
  margin: 0 auto 40px;
}

footer {
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}
footer .nav-list {
  justify-content: center;
  gap: 0;
}
footer .nav-list a {
  border-right: 1px solid #000;
  width: 16.6666666667%;
}
footer .nav-list a:nth-last-of-type(1) {
  border-right: none;
}
footer .nav-sns {
  display: block;
  margin: 20px auto;
  width: -moz-fit-content;
  width: fit-content;
}
footer .address {
  font-size: 1.4rem;
  text-align: center;
  margin: 50px auto;
}
footer::before {
  content: "";
  width: 50%;
  aspect-ratio: 1/2;
  background-image: url(images/back_asset.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -276%;
  left: 0;
  z-index: -1;
}

.archive,
.page,
.single {
  padding-top: 50px;
}
.archive section,
.page section,
.single section {
  background-color: #f7f8f8;
}
.archive h2,
.page h2,
.single h2 {
  font-size: 4.7rem;
}
.archive .h2_sub,
.page .h2_sub,
.single .h2_sub {
  font-size: 1.65rem;
  display: block;
  color: #71b3bf;
}
.archive header,
.page header,
.single header {
  background-color: #fff;
}
@media screen and (max-width: 540px) {
  .archive,
  .page,
  .single {
    padding-top: 70px;
  }
}

.page .sticky-area {
  position: sticky;
  top: 200px;
  width: 380px;
}
.page .scroll-content {
  flex: 1;
  padding: 8rem;
  padding-right: 0;
  border-left: 1px solid #71b3bf;
}
@media screen and (max-width: 840px) {
  .page .sticky-container {
    flex-flow: column;
  }
  .page .sticky-area {
    position: relative;
    width: 100%;
    top: initial;
  }
  .page .scroll-content {
    border-left: none;
    padding: 4rem;
    padding-left: 0;
    padding-right: 0;
  }
}

.page .sticky-area-2 {
  position: sticky;
  top: 150px;
  width: 430px;
  padding-right: 8rem;
}
.page .scroll-content-2 {
  flex: 1;
  padding: 8rem;
  padding-right: 0;
  border-left: 1px solid #71b3bf;
}
@media screen and (max-width: 840px) {
  .page .sticky-area-2 {
    position: relative;
    width: 100%;
    border-right: none;
    padding-right: 0;
    top: initial;
  }
  .page .scroll-content-2 {
    padding: 4rem;
    padding-left: 0;
    padding-right: 0;
    border-left: none;
  }
}

.archive .news-list {
  margin: 100px auto;
}

.works_wrap {
  display: flex;
  flex-flow: row wrap;
  gap: 50px 25px;
  margin: 100px auto;
}
@media screen and (max-width: 540px) {
  .works_wrap {
    gap: 25px;
  }
}
.works_wrap .item {
  width: calc((100% - 50px) / 3);
  display: flex;
  flex-flow: column;
  filter: drop-shadow(3px 4px 6px rgba(0, 0, 0, 0.3));
}
.works_wrap .item .wo_img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.works_wrap .item .wo_img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.works_wrap .item .txt {
  background-color: #fff;
  flex: 1;
  position: relative;
  padding: 2rem;
  padding-bottom: 5rem;
}
.works_wrap .item .txt .wo_name {
  font-size: 1.6rem;
}
.works_wrap .item .txt .cr {
  font-size: 1rem;
  color: #747474;
  position: absolute;
  left: 2rem;
  bottom: 2rem;
}
@media screen and (max-width: 840px) {
  .works_wrap .item {
    width: calc((100% - 25px) / 2);
  }
}
@media screen and (max-width: 540px) {
  .works_wrap .item {
    width: 100%;
  }
}

.archive_int_wrap {
  display: flex;
  flex-flow: row wrap;
  gap: 50px 25px;
  margin: 100px auto;
}
@media screen and (max-width: 540px) {
  .archive_int_wrap {
    gap: 25px;
  }
}
.archive_int_wrap .item {
  aspect-ratio: 1/1;
  width: calc((100% - 50px) / 3);
  display: flex;
  flex-flow: column;
  filter: drop-shadow(3px 4px 6px rgba(0, 0, 0, 0.3));
}
.archive_int_wrap .item .int_img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.archive_int_wrap .item .int_img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.archive_int_wrap .item .txt {
  background-color: #fff;
  flex: 1;
  position: relative;
  padding: 1.5rem;
}
.archive_int_wrap .item .txt .message {
  font-size: 1.6rem;
  display: -webkit-box;
  -webkit-box-orient: vertical; /* 垂直方向に配置 */
  overflow: hidden; /* 溢れた部分を隠す */
  text-overflow: ellipsis; /* 溢れた部分に「...」を表示 */
  -webkit-line-clamp: 2; /* 最大行数を2行に設定 */
  line-height: 1.5;
}
.archive_int_wrap .item .txt .name_wrap {
  margin-top: 15px;
}
.archive_int_wrap .item .txt .name_item {
  margin-top: 5px;
}
.archive_int_wrap .item .txt .shoulder {
  font-size: 1.3rem;
  color: #71b3bf;
}
.archive_int_wrap .item .txt .name {
  font-size: 1.4rem;
}
@media screen and (max-width: 840px) {
  .archive_int_wrap .item {
    width: calc((100% - 25px) / 2);
  }
}
@media screen and (max-width: 540px) {
  .archive_int_wrap .item {
    width: 100%;
  }
}
.archive_int_wrap .item:hover .int_img img {
  transition: all ease 0.3s;
  transform: scale(1.1);
}

dl.form {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
}
dl.form p {
  margin-bottom: 20px;
}
dl.form p a {
  color: #71b3bf;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
dl.form dt {
  width: 180px;
  font-size: 1.5rem;
}
dl.form dt span {
  font-size: 1.4rem;
  color: #e55653;
}
dl.form dd {
  width: calc(100% - 180px);
}
dl.form dd input {
  width: 100%;
  height: 100%;
  background-color: #fff;
  filter: drop-shadow(3px 4px 6px rgba(0, 0, 0, 0.2));
  padding-left: 10px;
}
dl.form dd input::-moz-placeholder {
  font-size: 1.1rem;
  color: #bdbebe;
}
dl.form dd input::placeholder {
  font-size: 1.1rem;
  color: #bdbebe;
}
dl.form dd textarea {
  width: 100%;
  height: 100%;
  background-color: #fff;
  filter: drop-shadow(3px 4px 6px rgba(0, 0, 0, 0.2));
}
dl.form dt,
dl.form dd {
  margin-bottom: 4rem;
  min-height: 50px;
  display: flex;
  align-items: center;
  flex-flow: row wrap;
}
@media screen and (max-width: 540px) {
  dl.form dt,
  dl.form dd {
    width: 100%;
  }
  dl.form dt {
    margin-bottom: 0;
  }
}

.mw_wp_form .error {
  font-size: 70% !important;
}
.mw_wp_form .link_btn {
  width: 312px;
  height: 100px;
  font-size: 1.6rem;
  margin: 0 auto;
}
.mw_wp_form .link_btn input {
  background-color: transparent;
  filter: none;
  text-align: center;
}
.mw_wp_form .link_btn::after {
  content: none;
}
.mw_wp_form .detail {
  font-size: 1rem;
  line-height: 1.5;
  display: block;
  margin-bottom: 20px;
  text-align: left;
}

.news_wrap {
  background-color: #fff;
  filter: drop-shadow(3px 4px 6px rgba(0, 0, 0, 0.2));
  padding: 7rem;
  margin: 8rem auto 0;
  max-width: 1000px;
}
.news_wrap .date {
  color: #71b3bf;
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 1rem;
  letter-spacing: 0;
}
.news_wrap .title {
  font-size: 3rem;
  border-bottom: 1px solid #71b3bf;
  padding-bottom: 2rem;
}
@media screen and (max-width: 540px) {
  .news_wrap .title {
    font-size: 2rem;
  }
}
.news_wrap img {
  width: auto;
  margin: 10px 0;
}
.news_wrap .content {
  margin-top: 5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 540px) {
  .news_wrap {
    padding: 3rem;
  }
}

.single .vm-area {
  text-align: center;
}
.single .btn-vm {
  font-size: 2rem;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.single .btn-vm .vm-lb {
  color: #000;
}
.single .btn-vm::after {
  left: -30px;
  right: initial;
  transform: rotate(180deg);
}

.single_int_wrap {
  background-color: #fff;
  filter: drop-shadow(3px 4px 6px rgba(0, 0, 0, 0.2));
  margin: 8rem auto 0;
  max-width: 1000px;
}
.single_int_wrap .int_img {
  width: 100%;
  aspect-ratio: 1/0.65;
  position: relative;
  background-color: #ddd;
}
.single_int_wrap .txt {
  padding: 7rem;
}
@media screen and (max-width: 540px) {
  .single_int_wrap .txt {
    padding: 3rem;
  }
}
.single_int_wrap .date {
  color: #71b3bf;
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 1rem;
  letter-spacing: 0;
}
.single_int_wrap .message {
  font-size: 3rem;
}
@media screen and (max-width: 540px) {
  .single_int_wrap .message {
    font-size: 2rem;
  }
}
.single_int_wrap .shoulder {
  font-size: 1.4rem;
  color: #71b3bf;
}
.single_int_wrap .name {
  font-size: 2rem;
}
.single_int_wrap .cross {
  width: 35px;
}
@media screen and (max-width: 540px) {
  .single_int_wrap .cross {
    width: 15px;
  }
}
.single_int_wrap .cross:nth-of-type(1) {
  display: none;
}
.single_int_wrap .content {
  border-top: 1px solid #71b3bf;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  padding-top: 4rem;
}
.single_int_wrap .name_wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: start;
  align-items: center;
  margin: 3rem 0;
}
.single_int_wrap .name_wrap .name_item {
  width: 50%;
  padding-right: 35px;
  margin-bottom: 15px;
}
@media screen and (max-width: 540px) {
  .single_int_wrap .name_wrap .name_item {
    width: 100%;
    padding-right: 0;
  }
}

.company-info {
  max-width: 800px;
  margin: 20px auto;
}

.info-row {
  display: flex;
  align-items: stretch;
  margin-bottom: 0;
  gap: 15px;
  min-height: 80px;
}

.info-row dt,
.info-row dd {
  display: flex;
  align-items: center;
  padding: 10px 0;
  font-weight: 500;
  box-sizing: border-box;
}

.info-row dt {
  width: 25%;
  border-bottom: 1.5px solid #71b3bf;
}

.info-row dd {
  flex: 1;
  margin: 0;
  border-bottom: 1px solid #2d2921;
  line-height: 1.6;
}

.profile-card {
  margin-top: 50px;
  max-width: 240px;
}

.profile-image {
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 15px;
}

.profile-caption {
  text-align: left;
}

.title {
  display: block;
  color: #71b3bf;
  font-size: 14px;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}

.name {
  display: block;
  color: #2d2921;
  font-size: 24px;
  line-height: 1.2;
}

.link_btn-s {
  margin: 120px auto 0;
  width: 312px;
  aspect-ratio: 1/0.3;
  background-color: #e3f0f2;
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.6rem;
  display: flex;
  flex-flow: column;
  padding: 15px 25px;
  line-height: 1.5;
  position: relative;
  justify-content: center;
}
.link_btn-s a {
  text-align: center;
}
.link_btn-s {
  filter: drop-shadow(3px 4px 6px rgba(0, 0, 0, 0.2));
}
.link_btn-s span {
  color: #71b3bf;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 2.1rem;
}
.link_btn-s input {
  background-color: transparent;
  filter: none;
  text-align: center;
  height: 100%;
}
.link_btn-s::after {
  content: none;
}
.link_btn-s::before {
  content: "";
  background-image: url(images/arrow.webp);
  background-size: 33%;
  background-repeat: no-repeat;
  background-position: right 13px bottom 16px;
  width: 100px;
  height: 100px;
  background-color: #71b3bf;
  position: absolute;
  right: 0;
  bottom: 0;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.link_btn-s:hover {
  background-color: #71b3bf;
}
.link_btn-s:hover span {
  color: #fff;
}
.link_btn-s:hover::before {
  animation: arrow2 forwards 0.4s;
  background-color: #e3f0f2;
  background-image: url(images/arrow_bk.webp);
}
.link_btn-s:hover::after {
  top: -15px;
  left: -15px;
}

.map-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-top: 60px;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

.our-container {
  margin-top: 50px;
}
.our-container a {
  text-align: center;
}

.our-container h3 {
  margin: 50px 0 0 0;
}

.our-container p {
  font-weight: 400;
}

.h3_sub {
  font-size: 1.65rem;
  display: block;
  color: #71b3bf;
  letter-spacing: -0.01rem;
  font-weight: 600 !important;
}

.h3_sub:nth-of-type(3) {
  color: #b8b1b1;
}

.h3_sub:nth-of-type(5) {
  color: #e0c2b0;
}

.sp {
  display: none !important;
}
@media screen and (max-width: 540px) {
  .sp {
    display: block;
  }
}

.recruit h6 {
  font-size: 1.4rem;
}

.policy_container {
  margin-top: 30px;
}
.policy_container p {
  margin-bottom: 14px;
}/*# sourceMappingURL=style.css.map */