@charset "UTF-8";
/* SASS変数 */
/* CSS変数 */
:root {
  --color-black: #000;
  --color-black2: #1a1919;
  --color-white: #fff;
  --color-green: #2f7980;
  --color-green2: #0d5c64;
  --color-gray: #efefef;
  --color-gray2: #707070;
  --color-shadow: rgba(0, 0, 0, 0.0705882353);
  --color-shadow2: rgba(0, 0, 0, 0.0823529412);
  --color-shadow3: rgba(0, 0, 0, 0.1607843137);
  --color-placeholder: #a2a2a2;
  --font-shippori-m: shipporiMinchoMedium;
  --font-shippori-sb: shipporiMinchoSemiBold;
  --font-shippori-b: shipporiMinchoBold;
  --font-shippori-eb: shipporiMinchoExtraBold;
  --font-montserrat-m: montserratMedium;
  --font-montserrat-r: montserratRegular;
  --font-montserrat-sb: montserratSemiBold;
  --font-montserrat-mi: montserratMediumItalic;
  --font-notosans-m: notosansJpMedium;
  --radius-xs: 0.5rem;
  --radius-sm: 0.8rem;
  --radius-md: 1rem;
  --radius-lg: 2rem;
  --radius-full: 50%;
  --radius-xs-sp: 0.8vw;
  --radius-sm-sp: 1vw;
  --radius-md-sp: 1.5vw;
  --radius-lg-sp: 2vw;
  --shadow-sm: 0 0.3rem 0.6rem var(--color-shadow3);
  --shadow-md: 0.6rem 1.4rem 1.3rem var(--color-shadow);
  --transit-fast: 0.2s ease;
  --transit-default: 0.3s ease;
  --parallax-ratio: 0.85;
}

/* フォント */
@font-face {
  font-family: "shipporiMinchoMedium";
  src: url("../fonts/Shippori_Mincho/ShipporiMincho-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "shipporiMinchoSemiBold";
  src: url("../fonts/Shippori_Mincho/ShipporiMincho-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "shipporiMinchoBold";
  src: url("../fonts/Shippori_Mincho/ShipporiMincho-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "shipporiMinchoExtraBold";
  src: url("../fonts/Shippori_Mincho/ShipporiMincho-ExtraBold.ttf") format("truetype");
}
@font-face {
  font-family: "montserratMedium";
  src: url("../fonts/Montserrat/Montserrat-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "montserratRegular";
  src: url("../fonts/Montserrat/Montserrat-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "montserratSemiBold";
  src: url("../fonts/Montserrat/Montserrat-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "montserratMediumItalic";
  src: url("../fonts/Montserrat/Montserrat-MediumItalic.ttf") format("truetype");
}
@font-face {
  font-family: "notosansJpMedium";
  src: url("../fonts/NotoSansJP/NotoSansJP-Medium.otf") format("opentype");
}
html {
  font-size: 62.5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1919px) {
  html {
    font-size: 0.520833vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 62.5%;
  }
}

body {
  color: var(--color-black);
  font-size: 1.9rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-family: var(--font-shippori-m);
  min-height: 100vh;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.7rem;
  }
}
body.menu-opened {
  overflow: hidden;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  outline: none;
  color: inherit;
  text-decoration: none;
  -webkit-transition: var(--transit-default);
  transition: var(--transit-default);
}

a:hover,
a:focus {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
}

/* 表示・非表示 */
.hide-lg {
  display: block;
}
@media screen and (max-width: 1199px) {
  .hide-lg {
    display: none;
  }
}

.hide-md {
  display: block;
}
@media screen and (max-width: 991px) {
  .hide-md {
    display: none;
  }
}

.hide-sm {
  display: block;
}
@media screen and (max-width: 767px) {
  .hide-sm {
    display: none;
  }
}

.hide-xs {
  display: block;
}
@media screen and (max-width: 575px) {
  .hide-xs {
    display: none;
  }
}

.show-lg {
  display: none;
}
@media screen and (max-width: 1199px) {
  .show-lg {
    display: block;
  }
}

.show-md {
  display: none;
}
@media screen and (max-width: 991px) {
  .show-md {
    display: block;
  }
}

.show-sm {
  display: none;
}
@media screen and (max-width: 767px) {
  .show-sm {
    display: block;
  }
}

.show-xs {
  display: none;
}
@media screen and (max-width: 575px) {
  .show-xs {
    display: block;
  }
}

/* 幅設定 */
.inner-def {
  max-width: 152rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner-def {
    width: calc(100% - 12vw);
  }
}

.inner-large {
  max-width: 167.5rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner-large {
    width: calc(100% - 12vw);
  }
}

.example-link {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .example-link {
    pointer-events: auto;
  }
}

/*--------------------------------
  アニメーション
--------------------------------*/
/* パララックス */
.prlximg {
  position: relative;
  overflow: hidden;
}

.prlximg__target {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
}

/* スクロール表示アニメーション */
.fadeUp {
  opacity: 0;
  -webkit-transform: translateY(2.5rem);
          transform: translateY(2.5rem);
  -webkit-transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, transform 1.5s;
  transition: opacity 1.5s, transform 1.5s, -webkit-transform 1.5s;
}
.fadeUp.is-invasion {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* テキスト表示アニメーション */
.txt-fadein {
  display: block;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.txt-fadein__item {
  display: block;
  opacity: 0;
}
:where(body.is-loaded) .txt-fadein .txt-fadein__item {
  -webkit-animation: slideUp 2s cubic-bezier(0.19, 1, 0.22, 1) 0.8s both;
          animation: slideUp 2s cubic-bezier(0.19, 1, 0.22, 1) 0.8s both;
}

/* ローディング */
.cover {
  position: fixed;
  inset: 0;
  background-color: var(--color-white);
  opacity: 0;
  visibility: hidden;
  z-index: 500;
}
:where(body.is-transitioning) .cover {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s, visibility 0.5s;
  transition: opacity 0.5s, visibility 0.5s;
}

.loader {
  position: fixed;
  inset: 0;
  background-color: var(--color-white);
  z-index: 500;
}
:where(body.is-loaded) .loader {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s 0.3s, visibility 0.5s 0.3s;
  transition: opacity 0.5s 0.3s, visibility 0.5s 0.3s;
}

@-webkit-keyframes slideLeft {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes slideLeft {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@-webkit-keyframes slideRight {
  from {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideRight {
  from {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes circleLoop {
  0% {
    -webkit-transform: translateY(-150%) scale(0.8);
            transform: translateY(-150%) scale(0.8);
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(150%) scale(0.5);
            transform: translateY(150%) scale(0.5);
    opacity: 0;
  }
}
@keyframes circleLoop {
  0% {
    -webkit-transform: translateY(-150%) scale(0.8);
            transform: translateY(-150%) scale(0.8);
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(150%) scale(0.5);
            transform: translateY(150%) scale(0.5);
    opacity: 0;
  }
}
/*--------------------------------
  メインビジュアル
--------------------------------*/
/* トップページ */
.mv {
  position: relative;
  width: 100%;
  height: 100vh;
}
.mv::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(5, 5, 5, 0.2);
  z-index: 2;
  pointer-events: none;
}
.mv__catch {
  position: absolute;
  top: 35%;
  left: 17.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.8rem;
  color: var(--color-white);
  z-index: 3;
  -webkit-transform: translateX(5rem);
          transform: translateX(5rem);
  -webkit-transition: -webkit-transform 1.2s 0.8s;
  transition: -webkit-transform 1.2s 0.8s;
  transition: transform 1.2s 0.8s;
  transition: transform 1.2s 0.8s, -webkit-transform 1.2s 0.8s;
}
@media screen and (max-width: 767px) {
  .mv__catch {
    top: 32%;
    left: 0;
    right: 0;
    margin: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    -webkit-transform: translateX(3rem);
            transform: translateX(3rem);
  }
}
:where(body.is-loaded) .mv__catch {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.mv__catch-en {
  font-size: 9rem;
  line-height: 1.1;
  letter-spacing: -0.095em;
  font-family: var(--font-montserrat-m);
}
@media screen and (max-width: 767px) {
  .mv__catch-en {
    font-size: 5rem;
  }
}
.mv__catch-ja {
  font-size: 2.2rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-family: var(--font-shippori-sb);
}
@media screen and (max-width: 767px) {
  .mv__catch-ja {
    font-size: 1.8rem;
  }
}
.mv__catch-en > span, .mv__catch-ja > span {
  opacity: 0;
  -webkit-transition: opacity 1.5s;
  transition: opacity 1.5s;
}
.mv__catch-en > span:nth-child(1), .mv__catch-ja > span:nth-child(1) {
  -webkit-transition-delay: 0.84s;
          transition-delay: 0.84s;
}
.mv__catch-en > span:nth-child(2), .mv__catch-ja > span:nth-child(2) {
  -webkit-transition-delay: 0.88s;
          transition-delay: 0.88s;
}
.mv__catch-en > span:nth-child(3), .mv__catch-ja > span:nth-child(3) {
  -webkit-transition-delay: 0.92s;
          transition-delay: 0.92s;
}
.mv__catch-en > span:nth-child(4), .mv__catch-ja > span:nth-child(4) {
  -webkit-transition-delay: 0.96s;
          transition-delay: 0.96s;
}
.mv__catch-en > span:nth-child(5), .mv__catch-ja > span:nth-child(5) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.mv__catch-en > span:nth-child(6), .mv__catch-ja > span:nth-child(6) {
  -webkit-transition-delay: 1.04s;
          transition-delay: 1.04s;
}
.mv__catch-en > span:nth-child(7), .mv__catch-ja > span:nth-child(7) {
  -webkit-transition-delay: 1.08s;
          transition-delay: 1.08s;
}
.mv__catch-en > span:nth-child(8), .mv__catch-ja > span:nth-child(8) {
  -webkit-transition-delay: 1.12s;
          transition-delay: 1.12s;
}
.mv__catch-en > span:nth-child(9), .mv__catch-ja > span:nth-child(9) {
  -webkit-transition-delay: 1.16s;
          transition-delay: 1.16s;
}
.mv__catch-en > span:nth-child(10), .mv__catch-ja > span:nth-child(10) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.mv__catch-en > span:nth-child(11), .mv__catch-ja > span:nth-child(11) {
  -webkit-transition-delay: 1.24s;
          transition-delay: 1.24s;
}
.mv__catch-en > span:nth-child(12), .mv__catch-ja > span:nth-child(12) {
  -webkit-transition-delay: 1.28s;
          transition-delay: 1.28s;
}
.mv__catch-en > span:nth-child(13), .mv__catch-ja > span:nth-child(13) {
  -webkit-transition-delay: 1.32s;
          transition-delay: 1.32s;
}
.mv__catch-en > span:nth-child(14), .mv__catch-ja > span:nth-child(14) {
  -webkit-transition-delay: 1.36s;
          transition-delay: 1.36s;
}
.mv__catch-en > span:nth-child(15), .mv__catch-ja > span:nth-child(15) {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
.mv__catch-en > span:nth-child(16), .mv__catch-ja > span:nth-child(16) {
  -webkit-transition-delay: 1.44s;
          transition-delay: 1.44s;
}
.mv__catch-en > span:nth-child(17), .mv__catch-ja > span:nth-child(17) {
  -webkit-transition-delay: 1.48s;
          transition-delay: 1.48s;
}
.mv__catch-en > span:nth-child(18), .mv__catch-ja > span:nth-child(18) {
  -webkit-transition-delay: 1.52s;
          transition-delay: 1.52s;
}
.mv__catch-en > span:nth-child(19), .mv__catch-ja > span:nth-child(19) {
  -webkit-transition-delay: 1.56s;
          transition-delay: 1.56s;
}
.mv__catch-en > span:nth-child(20), .mv__catch-ja > span:nth-child(20) {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
:where(body.is-loaded) .mv__catch-en > span, :where(body.is-loaded) .mv__catch-ja > span {
  opacity: 1;
}
.mv__catch-en > span.space, .mv__catch-ja > span.space {
  margin-right: 3rem;
}
@media screen and (max-width: 767px) {
  .mv__catch-en > span.space, .mv__catch-ja > span.space {
    margin-right: 1.5rem;
  }
}
.mv__slider {
  width: 100%;
  height: 100vh;
}
.mv .swiper-slide {
  overflow: hidden;
}
.mv .swiper-slide-active .slide-img,
.mv .swiper-slide-duplicate-active .slide-img,
.mv .swiper-slide-prev .slide-img {
  -webkit-animation: zoomUp 10s ease-out;
          animation: zoomUp 10s ease-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.mv .slide-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* 下層ページ */
.page-mv__header {
  height: 48rem;
}
@media screen and (max-width: 767px) {
  .page-mv__header {
    height: 29.3rem;
  }
}
.page-mv__inner {
  position: relative;
  max-width: 152rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .page-mv__inner {
    width: calc(100% - 12vw);
  }
}
.page-mv__ttl {
  position: absolute;
  top: 22rem;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .page-mv__ttl {
    top: 15rem;
  }
}
.page-mv__ttl-en {
  font-size: 10.8rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-family: var(--font-montserrat-sb);
}
@media screen and (max-width: 767px) {
  .page-mv__ttl-en {
    font-size: 5rem;
  }
}
.page-mv__ttl-ja {
  font-size: 2rem;
  letter-spacing: 0.15em;
  font-family: var(--font-shippori-sb);
}
@media screen and (max-width: 767px) {
  .page-mv__ttl-ja {
    font-size: 1.7rem;
  }
}
.page-mv__img {
  height: calc(60rem * var(--parallax-ratio));
}
@media screen and (max-width: 767px) {
  .page-mv__img {
    aspect-ratio: 860/calc(586 * var(--parallax-ratio));
    height: auto;
  }
}
.page-mv__img img {
  width: 100%;
}

.scroll-down {
  position: absolute;
  right: 7rem;
  bottom: 5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.8rem;
  padding: 2rem 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .scroll-down {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.5rem;
    padding-top: 0;
    left: 50%;
    right: auto;
    bottom: 10rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.scroll-down__txt {
  font-size: 1.6rem;
  color: var(--color-white);
  font-family: var(--font-montserrat-m);
}
@media screen and (max-width: 767px) {
  .scroll-down__txt {
    font-size: 1.5rem;
  }
}
.scroll-down__circle {
  width: 2rem;
  height: 2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: var(--radius-full);
  background-color: var(--color-white);
  -webkit-animation: circleLoop 2s cubic-bezier(0.52, 0.08, 0.18, 1) infinite;
          animation: circleLoop 2s cubic-bezier(0.52, 0.08, 0.18, 1) infinite;
}
@media screen and (max-width: 767px) {
  .scroll-down__circle {
    width: 1.4rem;
    height: 1.4rem;
  }
}

/*--------------------------------
  タイトル
--------------------------------*/
.sec-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.sec-ttl__en {
  font-size: 1.8rem;
  color: var(--color-green);
  font-family: var(--font-montserrat-m);
}
@media screen and (max-width: 767px) {
  .sec-ttl__en {
    font-size: 1.4rem;
  }
}
.sec-ttl__ja {
  font-size: 4rem;
  line-height: 1.5;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 767px) {
  .sec-ttl__ja {
    font-size: 2.5rem;
  }
}
.sec-ttl--pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .sec-ttl--pc {
    display: none;
  }
}
.sec-ttl--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sec-ttl--sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/*--------------------------------
  テーブル
--------------------------------*/
.table {
  width: 100%;
}
.table tr:first-child th {
  border-top: 0.5px solid var(--color-black2);
}
.table tr:first-child td {
  border-top: 0.5px solid var(--color-black2);
}
@media screen and (max-width: 767px) {
  .table tr:first-child td {
    border-top: none;
  }
}
.table th {
  width: 18rem;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 500;
  padding: 3.5rem 0 3.5rem 3rem;
  border-bottom: 0.5px solid var(--color-black2);
}
@media screen and (max-width: 767px) {
  .table th {
    display: block;
    width: 100%;
    font-size: 1.9rem;
    margin-bottom: 1rem;
    padding: 2rem 0 0 0;
    border-bottom: none;
  }
}
.table td {
  font-size: 1.9rem;
  line-height: 1.5;
  padding: 3.5rem 3rem 3.5rem 0;
  border-bottom: 0.5px solid var(--color-black2);
}
@media screen and (max-width: 767px) {
  .table td {
    display: block;
    width: 100%;
    font-size: 1.7rem;
    padding: 0 0 2rem 0;
  }
}
.table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.8rem;
}
@media screen and (max-width: 767px) {
  .table__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}

/*--------------------------------
  ボタン
--------------------------------*/
.sec-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30rem;
  height: 7rem;
  background-color: var(--color-black);
  font-size: 1.8rem;
  color: var(--color-white);
  letter-spacing: 0.05em;
  font-family: var(--font-montserrat-m);
  border-radius: 3.5rem;
  border: 1px solid var(--color-black);
  padding-left: 6.5rem;
  -webkit-transition: var(--transit-default);
  transition: var(--transit-default);
}
@media screen and (max-width: 767px) {
  .sec-btn {
    width: 23rem;
    height: 5.9rem;
    font-size: 1.5rem;
    padding-left: 5rem;
  }
}
.sec-btn:hover {
  background-color: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-black);
}
.sec-btn--white {
  background-color: var(--color-white);
  color: var(--color-black);
  border: 1px solid var(--color-white);
}
.sec-btn--white:hover {
  background-color: var(--color-black2);
  color: var(--color-white);
  border-color: var(--color-white);
}
.sec-btn--jp {
  font-size: 1.9rem;
  letter-spacing: 0.08em;
  font-family: var(--font-shippori-sb);
  padding-left: 4.5rem;
}
@media screen and (max-width: 767px) {
  .sec-btn--jp {
    font-size: 1.7rem;
    padding-left: 3.8rem;
  }
}
@media screen and (max-width: 767px) {
  .sec-btn--arrow-down {
    width: 27.6rem;
    height: 6.7rem;
  }
}
@media screen and (max-width: 767px) {
  .sec-btn--pc {
    display: none;
  }
}
.sec-btn--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sec-btn--sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.sec-btn__arrow {
  position: absolute;
  top: 50%;
  right: 6.5rem;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 1.3rem;
  aspect-ratio: 1/1;
  border-top: 1.5px solid var(--color-white);
  border-right: 1.5px solid var(--color-white);
  -webkit-transition: var(--transit-default);
  transition: var(--transit-default);
}
@media screen and (max-width: 767px) {
  .sec-btn__arrow {
    width: 1rem;
    right: 5rem;
  }
}
:where(.sec-btn--white) .sec-btn__arrow {
  border-top: 1.5px solid var(--color-black);
  border-right: 1.5px solid var(--color-black);
}
:where(.sec-btn--jp) .sec-btn__arrow {
  right: 4.8rem;
}
@media screen and (max-width: 767px) {
  :where(.sec-btn--jp) .sec-btn__arrow {
    right: 3.5rem;
  }
}
:where(.sec-btn--arrow-down) .sec-btn__arrow {
  top: 2.5rem;
  right: 3.8rem;
  -webkit-transform: translateY(0) rotate(135deg);
          transform: translateY(0) rotate(135deg);
}
@media screen and (max-width: 767px) {
  :where(.sec-btn--arrow-down) .sec-btn__arrow {
    top: 2.6rem;
    right: 3.2rem;
  }
}
:where(.sec-btn:hover) .sec-btn__arrow {
  border-color: var(--color-black);
}
:where(.sec-btn--white:hover) .sec-btn__arrow {
  border-color: var(--color-white);
}

.contact-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 24rem;
  height: 5.8rem;
  color: var(--color-white);
  background-color: var(--color-black);
  border-radius: 3rem;
  padding-left: 3rem;
}
@media screen and (max-width: 767px) {
  .contact-btn {
    font-size: 1.7rem;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.25);
  }
}
:where(.home) .contact-btn {
  background-color: rgba(255, 255, 255, 0.25);
}
.contact-btn::before {
  content: "";
  background: url(../images/header/contact_icon.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 4.2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.1rem;
  aspect-ratio: 11/9;
}
.contact-btn .btn-anim__en {
  font-size: 2rem;
}
.contact-btn .btn-anim__ja {
  font-size: 1.9rem;
}

.btn-anim {
  letter-spacing: -0.08em;
  white-space: nowrap;
}
.btn-anim:hover .btn-anim__en span {
  opacity: 0;
  -webkit-transform: translateY(-20%);
          transform: translateY(-20%);
  -webkit-transition: var(--transit-fast);
  transition: var(--transit-fast);
}
.btn-anim:hover .btn-anim__en span:nth-child(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.btn-anim:hover .btn-anim__en span:nth-child(2) {
  -webkit-transition-delay: 0.02s;
          transition-delay: 0.02s;
}
.btn-anim:hover .btn-anim__en span:nth-child(3) {
  -webkit-transition-delay: 0.04s;
          transition-delay: 0.04s;
}
.btn-anim:hover .btn-anim__en span:nth-child(4) {
  -webkit-transition-delay: 0.06s;
          transition-delay: 0.06s;
}
.btn-anim:hover .btn-anim__en span:nth-child(5) {
  -webkit-transition-delay: 0.08s;
          transition-delay: 0.08s;
}
.btn-anim:hover .btn-anim__en span:nth-child(6) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.btn-anim:hover .btn-anim__en span:nth-child(7) {
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
}
.btn-anim:hover .btn-anim__en span:nth-child(8) {
  -webkit-transition-delay: 0.14s;
          transition-delay: 0.14s;
}
.btn-anim:hover .btn-anim__en span:nth-child(9) {
  -webkit-transition-delay: 0.16s;
          transition-delay: 0.16s;
}
.btn-anim:hover .btn-anim__en span:nth-child(10) {
  -webkit-transition-delay: 0.18s;
          transition-delay: 0.18s;
}
.btn-anim:hover .btn-anim__ja span {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: var(--transit-fast);
  transition: var(--transit-fast);
}
.btn-anim:hover .btn-anim__ja span:nth-child(1) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.btn-anim:hover .btn-anim__ja span:nth-child(2) {
  -webkit-transition-delay: 0.32s;
          transition-delay: 0.32s;
}
.btn-anim:hover .btn-anim__ja span:nth-child(3) {
  -webkit-transition-delay: 0.34s;
          transition-delay: 0.34s;
}
.btn-anim:hover .btn-anim__ja span:nth-child(4) {
  -webkit-transition-delay: 0.36s;
          transition-delay: 0.36s;
}
.btn-anim:hover .btn-anim__ja span:nth-child(5) {
  -webkit-transition-delay: 0.38s;
          transition-delay: 0.38s;
}
.btn-anim:hover .btn-anim__ja span:nth-child(6) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.btn-anim:hover .btn-anim__ja span:nth-child(7) {
  -webkit-transition-delay: 0.42s;
          transition-delay: 0.42s;
}
.btn-anim:hover .btn-anim__ja span:nth-child(8) {
  -webkit-transition-delay: 0.44s;
          transition-delay: 0.44s;
}
.btn-anim:hover .btn-anim__ja span:nth-child(9) {
  -webkit-transition-delay: 0.46s;
          transition-delay: 0.46s;
}
.btn-anim:hover .btn-anim__ja span:nth-child(10) {
  -webkit-transition-delay: 0.48s;
          transition-delay: 0.48s;
}
.btn-anim__inner {
  position: relative;
}
.btn-anim__inner > div span {
  display: inline-block;
}
.btn-anim__en {
  font-size: 2.2rem;
  font-family: var(--font-montserrat-r);
}
@media screen and (max-width: 767px) {
  .btn-anim__en {
    font-size: 2rem;
  }
}
.btn-anim__en span {
  -webkit-transition: 0.2s ease 0.1s;
  transition: 0.2s ease 0.1s;
}
.btn-anim__ja {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 2.1rem;
  font-family: var(--font-shippori-m);
}
@media screen and (max-width: 767px) {
  .btn-anim__ja {
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    font-size: 1.9rem;
  }
}
.btn-anim__ja span {
  opacity: 0;
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
  -webkit-transition: var(--transit-fast);
  transition: var(--transit-fast);
}

.arrow-anim {
  position: relative;
  width: 1rem;
  aspect-ratio: 10/18;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .arrow-anim {
    width: 0.8rem;
  }
}
.arrow-anim__img {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.arrow-anim__img.is-default {
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  opacity: 1;
}
:where(a:hover) .arrow-anim__img.is-default {
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  opacity: 0;
}
.arrow-anim__img.is-hover {
  -webkit-transform: translate(-180%, -50%);
          transform: translate(-180%, -50%);
  opacity: 0;
}
:where(a:hover) .arrow-anim__img.is-hover {
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  opacity: 1;
}

/*--------------------------------
  スライダー
--------------------------------*/
.slider {
  overflow: hidden;
}
.slider--left .slider__track {
  -webkit-animation: slideLeft 30s linear infinite;
          animation: slideLeft 30s linear infinite;
}
.slider--right .slider__track {
  -webkit-animation: slideRight 30s linear infinite;
          animation: slideRight 30s linear infinite;
}
.slider__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}
.slider__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.slider__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.sec-slider .slider__track {
  -webkit-animation-duration: 60s;
          animation-duration: 60s;
}
.sec-slider .slider__img {
  width: 73.6rem;
  margin-right: 1.6rem;
}
@media screen and (max-width: 767px) {
  .sec-slider .slider__img {
    width: 80vw;
    margin-right: 2.5vw;
  }
}
.sec-slider .slider__img img {
  border-radius: var(--radius-xs);
}
@media screen and (max-width: 767px) {
  .sec-slider .slider__img img {
    border-radius: var(--radius-sm-sp);
  }
}

.fade-slider {
  position: relative;
}
.fade-slider .slide-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fade-slider .swiper-pagination {
  left: auto;
  right: calc(-50% - 3rem);
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.8rem;
}
@media screen and (max-width: 767px) {
  .fade-slider .swiper-pagination {
    left: 0;
    right: auto;
    bottom: -3rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0.9rem;
  }
}
.fade-slider .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  background-color: var(--color-white);
  opacity: 1;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
@media screen and (max-width: 767px) {
  .fade-slider .swiper-pagination-bullet {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.fade-slider .swiper-pagination-bullet-active {
  width: 1.6rem;
  height: 1.6rem;
  background-color: var(--color-green2);
}
@media screen and (max-width: 767px) {
  .fade-slider .swiper-pagination-bullet-active {
    width: 1.3rem;
    height: 1.3rem;
  }
}

/*--------------------------------
  フォーム
--------------------------------*/
.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form__ttl {
  font-size: 3rem;
  font-family: var(--font-shippori-sb);
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .form__ttl {
    font-size: 2.2rem;
    margin-bottom: 0;
  }
}
.form__note {
  color: var(--color-green);
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .form__note {
    margin-bottom: 3.5rem;
  }
}
.form__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5.2rem;
  margin-bottom: 10.4rem;
}
@media screen and (max-width: 767px) {
  .form__list {
    width: 100%;
    gap: 2.6rem;
    margin-bottom: 5.5rem;
  }
}
.form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8.5rem;
}
@media screen and (max-width: 767px) {
  .form__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
.form__item:has(input[type=radio]) dt {
  margin-top: 0;
}
.form__item dt {
  position: relative;
  font-size: 2.2rem;
  font-weight: 500;
  text-align: right;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 1.4rem;
}
@media screen and (max-width: 767px) {
  .form__item dt {
    font-size: 1.7rem;
    text-align: left;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 0;
  }
}
.form__item dt .required {
  position: absolute;
  top: -0.5rem;
  right: -2.5rem;
  font-size: 1.7rem;
  color: var(--color-green);
  font-family: var(--font-shippori-sb);
}
@media screen and (max-width: 767px) {
  .form__item dt .required {
    right: -2rem;
    font-size: 1.6rem;
  }
}
.form__item dd {
  width: 72.5rem;
}
@media screen and (max-width: 767px) {
  .form__item dd {
    width: 100%;
  }
}
.form__item dd:has(select) {
  position: relative;
}
.form__item dd:has(select)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3.2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-left: 1rem solid transparent;
  border-right: 1rem solid transparent;
  border-top: 1.1rem solid var(--color-black);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .form__item dd:has(select)::after {
    border-left-width: 0.8rem;
    border-right-width: 0.8rem;
    border-top-width: 0.9rem;
    right: 2.4rem;
  }
}
.form__actions {
  position: relative;
  width: 30rem;
  height: 7rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .form__actions {
    width: 23rem;
    height: 5.9rem;
  }
}
.form__actions::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8.8rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.9rem;
  aspect-ratio: 1/1;
  background: url(../images/top/contact_send_icon.svg) no-repeat center;
  background-size: contain;
  pointer-events: none;
  mix-blend-mode: difference;
}
@media screen and (max-width: 767px) {
  .form__actions::after {
    right: 6rem;
    width: 1.6rem;
  }
}
.form__actions .sec-btn {
  padding-left: 10rem;
}
@media screen and (max-width: 767px) {
  .form__actions .sec-btn {
    padding-left: 6.7rem;
  }
}
@media screen and (max-width: 767px) {
  .form .wpcf7 {
    width: 100%;
  }
}
.form .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: 0 0 0 1rem;
}
.form .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.4rem;
}
@media screen and (max-width: 767px) {
  .form .wpcf7-radio {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
.form .wpcf7-radio input[type=radio] {
  display: none;
}
.form .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
.form .wpcf7-list-item-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.form .wpcf7-list-item-label::before {
  content: "";
  display: inline-block;
  width: 2.3rem;
  aspect-ratio: 1/1;
  margin-right: 1.2rem;
  border: 0.5px solid var(--color-black2);
  border-radius: var(--radius-full);
}
@media screen and (max-width: 767px) {
  .form .wpcf7-list-item-label::before {
    width: 2rem;
  }
}
.form .wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label::before {
  background-color: var(--color-green);
  border-color: var(--color-green);
  -webkit-box-shadow: inset 0 0 0 0.43rem var(--color-white);
          box-shadow: inset 0 0 0 0.43rem var(--color-white);
}
.form input[type=text],
.form input[type=email],
.form input[type=tel],
.form textarea,
.form select {
  width: 100%;
  border: 0.5px solid var(--color-black);
  padding: 0 3rem;
}
@media screen and (max-width: 767px) {
  .form input[type=text],
  .form input[type=email],
  .form input[type=tel],
  .form textarea,
  .form select {
    padding: 0 2rem;
  }
}
.form input[type=text]::-webkit-input-placeholder, .form input[type=email]::-webkit-input-placeholder, .form input[type=tel]::-webkit-input-placeholder, .form textarea::-webkit-input-placeholder, .form select::-webkit-input-placeholder {
  font-size: 1.9rem;
  color: var(--color-placeholder);
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.form input[type=text]::-moz-placeholder, .form input[type=email]::-moz-placeholder, .form input[type=tel]::-moz-placeholder, .form textarea::-moz-placeholder, .form select::-moz-placeholder {
  font-size: 1.9rem;
  color: var(--color-placeholder);
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.form input[type=text]:-ms-input-placeholder, .form input[type=email]:-ms-input-placeholder, .form input[type=tel]:-ms-input-placeholder, .form textarea:-ms-input-placeholder, .form select:-ms-input-placeholder {
  font-size: 1.9rem;
  color: var(--color-placeholder);
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.form input[type=text]::-ms-input-placeholder, .form input[type=email]::-ms-input-placeholder, .form input[type=tel]::-ms-input-placeholder, .form textarea::-ms-input-placeholder, .form select::-ms-input-placeholder {
  font-size: 1.9rem;
  color: var(--color-placeholder);
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.form input[type=text]::placeholder,
.form input[type=email]::placeholder,
.form input[type=tel]::placeholder,
.form textarea::placeholder,
.form select::placeholder {
  font-size: 1.9rem;
  color: var(--color-placeholder);
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .form input[type=text]::-webkit-input-placeholder, .form input[type=email]::-webkit-input-placeholder, .form input[type=tel]::-webkit-input-placeholder, .form textarea::-webkit-input-placeholder, .form select::-webkit-input-placeholder {
    font-size: 1.7rem;
  }
  .form input[type=text]::-moz-placeholder, .form input[type=email]::-moz-placeholder, .form input[type=tel]::-moz-placeholder, .form textarea::-moz-placeholder, .form select::-moz-placeholder {
    font-size: 1.7rem;
  }
  .form input[type=text]:-ms-input-placeholder, .form input[type=email]:-ms-input-placeholder, .form input[type=tel]:-ms-input-placeholder, .form textarea:-ms-input-placeholder, .form select:-ms-input-placeholder {
    font-size: 1.7rem;
  }
  .form input[type=text]::-ms-input-placeholder, .form input[type=email]::-ms-input-placeholder, .form input[type=tel]::-ms-input-placeholder, .form textarea::-ms-input-placeholder, .form select::-ms-input-placeholder {
    font-size: 1.7rem;
  }
  .form input[type=text]::placeholder,
  .form input[type=email]::placeholder,
  .form input[type=tel]::placeholder,
  .form textarea::placeholder,
  .form select::placeholder {
    font-size: 1.7rem;
  }
}
.form input[type=text],
.form input[type=email],
.form input[type=tel],
.form select {
  height: 6.7rem;
}
.form select {
  letter-spacing: 0.05em;
}
.form textarea {
  height: 32.8rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/*--------------------------------
	パンくずリスト
--------------------------------*/
.breadcrumb {
  position: absolute;
  top: -6.5rem;
  padding: 0 12rem;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    top: -4rem;
    padding: 0 2rem;
  }
}
.breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 1.65rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb ul {
    gap: 1.2rem;
  }
}
.breadcrumb ul li.line {
  position: relative;
  width: 3rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .breadcrumb ul li.line {
    width: 2.3rem;
  }
}
.breadcrumb ul li.line::before {
  content: "";
  position: absolute;
  top: -0.8rem;
  left: 0;
  width: 100%;
  height: 0.5px;
  background-color: var(--color-black2);
}
@media screen and (max-width: 767px) {
  .breadcrumb ul li.line::before {
    top: -0.6rem;
  }
}
.breadcrumb ul li span,
.breadcrumb ul li a {
  display: block;
  font-size: 1.8rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .breadcrumb ul li span,
  .breadcrumb ul li a {
    font-size: 1.4rem;
  }
}
.breadcrumb ul li a {
  color: var(--color-black);
  white-space: nowrap;
}
.breadcrumb ul li span {
  color: var(--color-green);
}

/*--------------------------------
  ヘッダー
--------------------------------*/
.header {
  position: fixed;
  inset: 0;
  height: 16rem;
  -webkit-transition: translate 0.4s cubic-bezier(0.5, 1, 0.89, 1);
  transition: translate 0.4s cubic-bezier(0.5, 1, 0.89, 1);
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .header {
    height: 9rem;
    background: none;
  }
}
:where(.home) .header {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(5, 5, 5, 0.5058823529)), to(rgba(88, 88, 88, 0)));
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.5058823529) 0%, rgba(88, 88, 88, 0) 100%);
}
@media screen and (max-width: 767px) {
  :where(.home) .header {
    background: none;
  }
}
:where(.is-hide) .header {
  translate: 0 -101%;
}
.header__inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 6.4rem;
  padding-right: 7rem;
}
@media screen and (max-width: 767px) {
  .header__inner {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-left: 2.5rem;
    padding-right: 0;
  }
}
.header__logo {
  z-index: 120;
}
.header__logo img {
  width: 7rem;
}
@media screen and (max-width: 767px) {
  .header__logo img {
    width: 4.6rem;
  }
}

.hamburger-wrap {
  display: none;
}
@media screen and (max-width: 767px) {
  .hamburger-wrap {
    display: block;
    position: fixed;
    top: 0;
    right: 2.7rem;
    width: 4rem;
    height: 9rem;
    -webkit-transition: translate 0.4s cubic-bezier(0.5, 1, 0.89, 1);
    transition: translate 0.4s cubic-bezier(0.5, 1, 0.89, 1);
    z-index: 120;
  }
  :where(.is-hide) .hamburger-wrap {
    translate: 0 -101%;
  }
  :where(.is-scrolled) .hamburger-wrap {
    mix-blend-mode: difference;
  }
  :where(body:not(.home)) .hamburger-wrap {
    mix-blend-mode: difference;
  }
}

.hamburger {
  position: relative;
  top: 3.5rem;
  width: 100%;
  height: 2.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hamburger__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-white);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.hamburger__line:nth-child(1) {
  top: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, -webkit-transform 0.2s cubic-bezier(0.32, 0, 0.67, 0) 0s;
  transition: top 0.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, -webkit-transform 0.2s cubic-bezier(0.32, 0, 0.67, 0) 0s;
  transition: top 0.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 0.2s cubic-bezier(0.32, 0, 0.67, 0) 0s;
  transition: top 0.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 0.2s cubic-bezier(0.32, 0, 0.67, 0) 0s, -webkit-transform 0.2s cubic-bezier(0.32, 0, 0.67, 0) 0s;
}
:where(body.menu-opened) .hamburger__line:nth-child(1) {
  top: calc(50% - 0.5px);
  -webkit-transition: top 0.2s cubic-bezier(0.32, 0, 0.67, 0) 0s, -webkit-transform 0.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
  transition: top 0.2s cubic-bezier(0.32, 0, 0.67, 0) 0s, -webkit-transform 0.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
  transition: top 0.2s cubic-bezier(0.32, 0, 0.67, 0) 0s, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
  transition: top 0.2s cubic-bezier(0.32, 0, 0.67, 0) 0s, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, -webkit-transform 0.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
  -webkit-transform: rotate(-38deg);
          transform: rotate(-38deg);
}
.hamburger__line:nth-child(2) {
  -webkit-transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
:where(body.menu-opened) .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger__line:nth-child(3) {
  bottom: 0;
  -webkit-transition: bottom 0.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, -webkit-transform 0.2s cubic-bezier(0.32, 0, 0.67, 0) 0s;
  transition: bottom 0.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, -webkit-transform 0.2s cubic-bezier(0.32, 0, 0.67, 0) 0s;
  transition: bottom 0.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 0.2s cubic-bezier(0.32, 0, 0.67, 0) 0s;
  transition: bottom 0.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 0.2s cubic-bezier(0.32, 0, 0.67, 0) 0s, -webkit-transform 0.2s cubic-bezier(0.32, 0, 0.67, 0) 0s;
}
:where(body.menu-opened) .hamburger__line:nth-child(3) {
  bottom: calc(50% - 0.5px);
  -webkit-transition: bottom 0.2s cubic-bezier(0.32, 0, 0.67, 0) 0s, -webkit-transform 0.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
  transition: bottom 0.2s cubic-bezier(0.32, 0, 0.67, 0) 0s, -webkit-transform 0.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
  transition: bottom 0.2s cubic-bezier(0.32, 0, 0.67, 0) 0s, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
  transition: bottom 0.2s cubic-bezier(0.32, 0, 0.67, 0) 0s, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, -webkit-transform 0.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
  -webkit-transform: rotate(38deg);
          transform: rotate(38deg);
}

.mobile-nav {
  display: none;
}
@media screen and (max-width: 767px) {
  .mobile-nav {
    display: block;
    position: fixed;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
    overflow: hidden;
    z-index: 110;
  }
}
:where(body.menu-opened) .mobile-nav {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.mobile-nav .sec-btn {
  width: 33rem;
  border-radius: 3rem;
}
.mobile-nav .sec-btn__icon {
  right: 3rem;
  width: 1.5rem;
}
.mobile-nav .sec-btn__icon::after {
  top: calc(50% - 0.6rem);
  width: 1.5rem;
  height: 1.2rem;
}
.mobile-nav__bg {
  position: absolute;
  inset: 0;
  background: url(../images/header/sp/hamburger_bg.png) no-repeat center;
  background-size: cover;
  -webkit-transform: translateY(8rem);
          transform: translateY(8rem);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
  pointer-events: none;
}
:where(body.menu-opened) .mobile-nav__bg {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0s;
}
.mobile-nav__inner {
  height: 100%;
  padding: 15rem 6vw 8rem;
  overflow-y: auto;
}
.mobile-nav__list {
  margin-bottom: 9.5rem;
}
.mobile-nav__item {
  border-bottom: 0.5px solid var(--color-white);
  opacity: 0;
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
:where(body.menu-opened) .mobile-nav__item {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
:where(body.menu-opened) .mobile-nav__item:nth-child(1) {
  -webkit-transition-delay: 0.04s;
          transition-delay: 0.04s;
}
:where(body.menu-opened) .mobile-nav__item:nth-child(2) {
  -webkit-transition-delay: 0.08s;
          transition-delay: 0.08s;
}
:where(body.menu-opened) .mobile-nav__item:nth-child(3) {
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
}
:where(body.menu-opened) .mobile-nav__item:nth-child(4) {
  -webkit-transition-delay: 0.16s;
          transition-delay: 0.16s;
}
:where(body.menu-opened) .mobile-nav__item:nth-child(5) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.mobile-nav__item a {
  position: relative;
  display: block;
  padding: 2.5rem 0;
  font-size: 1.9rem;
  color: var(--color-white);
}
.mobile-nav__arrow {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.mobile-nav__arrow::before, .mobile-nav__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1rem;
  height: 0.1rem;
  background-color: var(--color-white);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
.mobile-nav__arrow::before {
  -webkit-transform: translateY(-50%) rotate(38deg);
          transform: translateY(-50%) rotate(38deg);
}
.mobile-nav__arrow::after {
  -webkit-transform: translateY(-50%) rotate(-38deg);
          transform: translateY(-50%) rotate(-38deg);
}

.global-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .global-nav {
    display: none;
  }
}
.global-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7rem;
}
.global-nav__link {
  color: var(--color-black2);
}
:where(.home) .global-nav__link {
  color: var(--color-white);
}
.global-nav__link.current {
  color: var(--color-green);
}

/*--------------------------------
  フッター
--------------------------------*/
.footer {
  background-color: var(--color-black2);
  padding: 8rem 0;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 9.5rem 0 0;
  }
}
.footer a {
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .footer .btn-anim__en span {
    opacity: 0;
    -webkit-transform: translateY(-20%);
            transform: translateY(-20%);
  }
}
@media screen and (max-width: 767px) {
  .footer .btn-anim__ja span {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.footer__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .footer__header {
    margin-bottom: 6rem;
  }
}
.footer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 5.5rem;
    padding-bottom: 7.5rem;
  }
}
.footer__logo img {
  width: 13.5rem;
}
@media screen and (max-width: 767px) {
  .footer__logo img {
    width: 10rem;
  }
}
.footer__company {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.footer__address {
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .footer__address {
    margin-bottom: 5.5rem;
  }
}
.footer__mail {
  margin-left: 1.2rem;
}
@media screen and (max-width: 767px) {
  .footer__mail {
    display: block;
    margin-left: 0;
  }
}
.footer__nav-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 12rem;
}
@media screen and (max-width: 767px) {
  .footer__nav-area {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7rem;
}
@media screen and (max-width: 767px) {
  .footer__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.8rem;
  }
}
.footer__contact-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 0.5px solid var(--color-white);
  width: 27rem;
  padding: 0 1.5rem 2rem 6rem;
}
@media screen and (max-width: 767px) {
  .footer__contact-btn {
    width: 24.5rem;
    padding: 0 0.5rem 1rem 4.5rem;
  }
}
@media screen and (max-width: 767px) {
  .footer__contact-btn--pc {
    display: none;
  }
}
.footer__contact-btn--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .footer__contact-btn--sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.footer__contact-btn::before {
  content: "";
  background: url(../images/header/contact_icon.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  width: 2.6rem;
  aspect-ratio: 11/9;
}
@media screen and (max-width: 767px) {
  .footer__contact-btn::before {
    left: 0.5rem;
    width: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .footer .copyright {
    width: calc(100% + 12vw);
    margin-left: -6vw;
    padding: 1rem;
    text-align: center;
    background-color: var(--color-black);
  }
}

.page-top {
  position: relative;
  font-size: 1.7rem;
  color: var(--color-white);
  font-family: var(--font-montserrat-m);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  padding-top: 2.5rem;
  z-index: 10;
}
.page-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-left: 0.8rem solid transparent;
  border-right: 0.8rem solid transparent;
  border-bottom: 0.8rem solid var(--color-white);
}
.page-top--fixed {
  position: fixed;
  bottom: 3rem;
  right: 5.6rem;
  color: var(--color-black2);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .page-top--fixed {
    display: none;
  }
}
:where(body.is-scrolled) .page-top--fixed {
  opacity: 1;
  pointer-events: auto;
}
:where(body.is-footer) .page-top--fixed {
  opacity: 0;
  pointer-events: none;
}
.page-top--fixed::before {
  border-bottom: 0.8rem solid var(--color-black2);
}

/*--------------------------------
  トップページ
--------------------------------*/
.top-message {
  background-color: var(--color-white);
  padding: 20rem 0;
}
@media screen and (max-width: 767px) {
  .top-message {
    padding: 9.3rem 0 7.5rem;
  }
}
.top-message__inner {
  max-width: 145rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top-message__inner {
    width: calc(100% - 12vw);
  }
}
.top-message__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 19.8rem;
}
@media screen and (max-width: 767px) {
  .top-message__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 10rem;
  }
}
.top-message__imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
  margin-left: -23.5rem;
}
@media screen and (max-width: 1919px) {
  .top-message__imgs {
    margin-left: calc(50% - 50vw);
  }
}
@media screen and (max-width: 767px) {
  .top-message__imgs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-left: -6vw;
    gap: 2vw;
  }
}
.top-message__img {
  border-radius: 0 0.5rem 0.5rem 0;
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
.top-message__img--1 {
  width: 102.5rem;
  aspect-ratio: 1538/calc(867 * var(--parallax-ratio));
}
@media screen and (max-width: 767px) {
  .top-message__img--1 {
    width: 72vw;
    aspect-ratio: 668/calc(384 * var(--parallax-ratio));
    border-radius: 0 1vw 1vw 0;
  }
}
.top-message__img--2 {
  width: 63.4rem;
  aspect-ratio: 951/calc(509 * var(--parallax-ratio));
}
@media screen and (max-width: 767px) {
  .top-message__img--2 {
    width: 26vw;
    aspect-ratio: 244/calc(384 * var(--parallax-ratio));
    border-radius: 1vw 0 0 1vw;
  }
}
.top-message__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-message__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 4.6rem;
  line-height: 2.1;
  letter-spacing: 0.3em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  margin-bottom: 11rem;
}
@media screen and (max-width: 767px) {
  .top-message__ttl {
    font-size: 2.6rem;
    margin-bottom: 6.5rem;
  }
}
.top-message__ttl > span {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-right: 0.5px solid var(--color-black2);
}
.top-message__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.4rem;
  font-size: 2rem;
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  .top-message__area {
    gap: 1.4rem;
    font-size: 1.7rem;
    margin-top: 6rem;
  }
}
.top-message__area span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 14.7rem;
  height: 4.7rem;
  font-size: 2rem;
  color: var(--color-white);
  background-color: var(--color-black2);
  padding-left: 2rem;
}
@media screen and (max-width: 767px) {
  .top-message__area span {
    width: 10.6rem;
    height: 3.7rem;
    font-size: 1.5rem;
  }
}
.top-message__area span::before {
  content: "";
  background: url(../images/top/message3_icon.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 1.3rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.5rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .top-message__area span::before {
    left: 0.8rem;
    width: 2rem;
  }
}

.top-about {
  background-color: var(--color-black2);
  padding: 15.8rem 0 22.7rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-about {
    padding: 10rem 0;
  }
}
.top-about .sec-ttl {
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 767px) {
  .top-about .sec-ttl {
    margin-bottom: 3.5rem;
  }
}
.top-about .sec-ttl__en {
  color: var(--color-white);
}
.top-about__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .top-about__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8.4rem;
  }
}
.top-about__content {
  color: var(--color-white);
}
.top-about__txt {
  margin-bottom: 7rem;
}
.top-about__txt span {
  font-size: 2.7rem;
  padding: 0 1rem;
}
@media screen and (max-width: 767px) {
  .top-about__txt span {
    font-size: 2.5rem;
    padding: 0 0.7rem;
  }
}
.top-about__slider {
  position: relative;
  width: 115rem;
  margin-right: -20rem;
}
@media screen and (max-width: 1919px) {
  .top-about__slider {
    margin-right: calc(50% - 50vw);
  }
}
@media screen and (max-width: 767px) {
  .top-about__slider {
    width: calc(100% + 12vw);
    margin-left: -6vw;
    margin-right: 0;
  }
}
.top-about__slider::before {
  content: "";
  background: url(../images/top/about_txt.png) no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: -7rem;
  left: -19rem;
  width: 33rem;
  aspect-ratio: 660/301;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .top-about__slider::before {
    width: 25rem;
    bottom: -3.5rem;
    left: 2rem;
  }
}
.top-about__slider .slider__img {
  width: 43.3rem;
  margin-right: 2.1rem;
}
@media screen and (max-width: 767px) {
  .top-about__slider .slider__img {
    width: 45vw;
    margin-right: 2vw;
  }
}
.top-about__slider .slider__img img {
  border-radius: var(--radius-xs);
  -webkit-box-shadow: 0.6rem 1.3rem 1.3rem var(--color-shadow);
          box-shadow: 0.6rem 1.3rem 1.3rem var(--color-shadow);
}
@media screen and (max-width: 767px) {
  .top-about__slider .slider__img img {
    border-radius: var(--radius-sm-sp);
  }
}

.top-reason {
  background-color: var(--color-gray);
  padding: 22rem 0 24.5rem;
}
@media screen and (max-width: 767px) {
  .top-reason {
    padding: 7.5rem 0;
  }
}
.top-reason__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14.8rem;
}
@media screen and (max-width: 767px) {
  .top-reason__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6rem;
  }
}
.top-reason__img {
  width: 60.9rem;
  aspect-ratio: 1218/calc(1586 * var(--parallax-ratio));
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  border-radius: var(--radius-xs);
}
@media screen and (max-width: 767px) {
  .top-reason__img {
    width: 100%;
    aspect-ratio: 700/calc(454 * var(--parallax-ratio));
    border-radius: var(--radius-sm-sp);
  }
}
.top-reason__ttl {
  font-size: 3.8rem;
  line-height: 1.5;
  font-family: var(--font-shippori-sb);
  text-align: center;
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 767px) {
  .top-reason__ttl {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
  }
}
.top-reason__ttl span {
  position: relative;
}
.top-reason__ttl span::before, .top-reason__ttl span::after {
  content: "";
  background: url(../images/top/comma.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  width: 2.4rem;
  aspect-ratio: 292/215;
}
@media screen and (max-width: 767px) {
  .top-reason__ttl span::before, .top-reason__ttl span::after {
    width: 1.7rem;
  }
}
.top-reason__ttl span::before {
  top: 1rem;
  left: -8rem;
}
@media screen and (max-width: 767px) {
  .top-reason__ttl span::before {
    top: 0.5rem;
    left: -4.5rem;
  }
}
.top-reason__ttl span::after {
  bottom: 0;
  right: -8rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .top-reason__ttl span::after {
    bottom: 0.5rem;
    right: -4rem;
  }
}
.top-reason__ttl + p {
  text-align: center;
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .top-reason__ttl + p {
    margin-bottom: 4.5rem;
  }
}
.top-reason__strong {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.4rem;
}
@media screen and (max-width: 767px) {
  .top-reason__strong {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
  }
}
.top-reason__strong-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 35.3rem;
  height: 35.3rem;
  border-radius: var(--radius-full);
  border: 2.2rem solid #f4f4f4;
  background-color: var(--color-white);
  -webkit-box-shadow: 0 0.6rem 4rem var(--color-shadow2);
          box-shadow: 0 0.6rem 4rem var(--color-shadow2);
}
@media screen and (max-width: 767px) {
  .top-reason__strong-item {
    width: 28rem;
    height: 28rem;
    border-width: 1.7rem;
    -webkit-box-shadow: 0 0.6rem 2.5rem var(--color-shadow2);
            box-shadow: 0 0.6rem 2.5rem var(--color-shadow2);
  }
}
.top-reason__strong-ttl {
  margin-bottom: 1.8rem;
  font-size: 1.5rem;
  font-family: var(--font-montserrat-m);
}
@media screen and (max-width: 767px) {
  .top-reason__strong-ttl {
    font-size: 1.1rem;
  }
}
.top-reason__strong-ttl span {
  font-size: 2.5rem;
  margin-left: 0.3rem;
}
@media screen and (max-width: 767px) {
  .top-reason__strong-ttl span {
    font-size: 1.7rem;
    margin-left: 0.2rem;
  }
}
.top-reason__strong-icon {
  height: 9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-reason__strong-icon {
    height: 6rem;
    margin-bottom: 1.5rem;
  }
}
:where(.top-reason__strong-item--1) .top-reason__strong-icon img {
  width: 8rem;
}
@media screen and (max-width: 767px) {
  :where(.top-reason__strong-item--1) .top-reason__strong-icon img {
    width: 5rem;
  }
}
:where(.top-reason__strong-item--2) .top-reason__strong-icon img {
  width: 7.9rem;
}
@media screen and (max-width: 767px) {
  :where(.top-reason__strong-item--2) .top-reason__strong-icon img {
    width: 5.3rem;
  }
}
.top-reason__strong-txt {
  font-size: 2rem;
  line-height: 1.45;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-reason__strong-txt {
    font-size: 1.6rem;
  }
}

.top-works {
  background-color: var(--color-gray);
  padding: 21.5rem 0 23rem;
}
@media screen and (max-width: 767px) {
  .top-works {
    padding: 7.5rem 0 10rem;
    overflow: hidden;
  }
}
.top-works .sec-ttl {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .top-works .sec-ttl {
    margin-bottom: 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .top-works .sec-btn {
    margin: 6rem auto 0;
  }
}
.top-works__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .top-works__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 5.5rem;
  }
}
@media screen and (max-width: 767px) {
  .top-works__content {
    width: 100%;
  }
}
.top-works__labels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 3.5rem;
  margin-top: 6rem;
  margin-bottom: 8.5rem;
}
@media screen and (max-width: 767px) {
  .top-works__labels {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    gap: 1rem 3rem;
    margin: 5rem auto 0;
  }
}
@media screen and (max-width: 575px) {
  .top-works__labels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.top-works__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
.top-works__label .progress {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: var(--radius-full);
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-works__label .progress {
    width: 3.8rem;
    height: 3.8rem;
  }
}
.top-works__label .progress-active {
  position: absolute;
  inset: -0.2rem;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.top-works__label .circle-path {
  stroke-dasharray: 113;
  stroke-dashoffset: 113;
}
.top-works__label .circle-dot,
.top-works__label span {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.top-works__label .circle-dot {
  fill: #bababa;
}
.top-works__label span {
  font-size: 2.2rem;
  color: #bababa;
}
.top-works__label.is-active .circle-dot {
  fill: var(--color-green);
}
.top-works__label.is-active span {
  color: var(--color-green);
}
.top-works__label.is-active .circle-path {
  stroke: var(--color-green);
}
.top-works__slider {
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-works__slider {
    margin: 0 auto;
  }
}
.top-works__slider::before {
  content: "";
  background: url(../images/top/works_txt.png) no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: -5rem;
  right: -11rem;
  width: 30rem;
  aspect-ratio: 660/311;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .top-works__slider::before {
    width: 18rem;
    top: -5.3rem;
    bottom: auto;
    right: -4.6rem;
  }
}

.works-slider__list {
  position: relative;
  width: 82.8rem;
  height: 92.3rem;
}
@media screen and (max-width: 767px) {
  .works-slider__list {
    width: 35rem;
    height: 48.8rem;
  }
}
.works-slider__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 8.4rem 11.3rem 5rem;
  background-color: #fcfcfc;
  -webkit-box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.0901960784);
          box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.0901960784);
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  will-change: transform, opacity;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .works-slider__item {
    padding: 3rem 3.45rem 5rem;
  }
}
.works-slider__item.-afterPrev {
  z-index: 1;
}
.works-slider__item.-prev {
  z-index: 2;
}
.works-slider__item.-current {
  z-index: 3;
}
.works-slider__item:first-child.-afterPrev {
  z-index: 2 !important;
}
.works-slider__num {
  font-size: 2rem;
  line-height: 1.2;
  font-family: var(--font-montserrat-r);
  margin-bottom: 2.2rem;
}
@media screen and (max-width: 767px) {
  .works-slider__num {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }
}
.works-slider__img {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .works-slider__img {
    margin-bottom: 3.5rem;
  }
}
.works-slider__img img {
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
.works-slider__ttl {
  font-size: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 0.5px solid var(--color-black);
}
@media screen and (max-width: 767px) {
  .works-slider__ttl {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
  }
}
.works-slider__txt {
  line-height: 1.5;
}

.top-case {
  background-color: var(--color-white);
  padding: 11rem 0 29rem;
}
@media screen and (max-width: 767px) {
  .top-case {
    padding: 8.5rem 0 10rem;
  }
}
.top-case > .inner-def {
  position: relative;
}
.top-case > .inner-def::before {
  content: "";
  position: absolute;
  top: 56.3rem;
  left: -20rem;
  width: 66.4rem;
  height: 117.9rem;
  background-color: var(--color-gray);
}
@media screen and (max-width: 1919px) {
  .top-case > .inner-def::before {
    left: calc(50% - 50vw);
  }
}
@media screen and (max-width: 767px) {
  .top-case > .inner-def::before {
    content: none;
  }
}
.top-case .sec-ttl {
  margin-bottom: 13rem;
}
@media screen and (max-width: 767px) {
  .top-case .sec-ttl {
    margin-bottom: 4rem;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .top-case .sec-btn {
    margin: 6rem auto 0;
  }
}
.top-case__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.2rem;
}
@media screen and (max-width: 767px) {
  .top-case__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6rem;
  }
}
.top-case__featured {
  position: relative;
}
.top-case__featured::before {
  content: "";
  background: url(../images/top/case_txt.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: -9.5rem;
  left: -10.5rem;
  width: 23rem;
  aspect-ratio: 460/295;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .top-case__featured::before {
    content: none;
  }
}
.top-case__featured-item {
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .top-case__featured-item {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .top-case__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6rem;
  }
}
:where(.top-case__list) .top-case__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5.3rem;
  padding: 3.2rem 0;
  border-bottom: 0.5px solid var(--color-black);
}
@media screen and (max-width: 767px) {
  :where(.top-case__list) .top-case__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2.1rem;
    padding: 0;
    border-bottom: none;
  }
}
:where(.top-case__item:first-child) .top-case__link {
  padding-top: 0;
}
.top-case__thumb {
  width: 20.3rem;
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-case__thumb {
    width: 100%;
    border-radius: var(--radius-sm-sp);
  }
}
:where(.top-case__featured) .top-case__thumb {
  width: 72.1rem;
  border-radius: var(--radius-xs);
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  :where(.top-case__featured) .top-case__thumb {
    width: 100%;
    margin-bottom: 2.1rem;
  }
}
.top-case__thumb img {
  width: 100%;
  aspect-ratio: 203/145;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: var(--transit-default);
  transition: var(--transit-default);
}
@media screen and (max-width: 767px) {
  .top-case__thumb img {
    aspect-ratio: 350/250;
  }
}
:where(.top-case__featured) .top-case__thumb img {
  aspect-ratio: 721/513;
}
@media screen and (max-width: 767px) {
  :where(.top-case__featured) .top-case__thumb img {
    aspect-ratio: 350/250;
  }
}
:where(.top-case__link:hover) .top-case__thumb img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.top-case__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.top-case__ttl {
  font-size: 2rem;
  line-height: 1.6;
  font-family: var(--font-shippori-sb);
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .top-case__ttl {
    margin-top: 1rem;
  }
}
:where(.top-case__featured) .top-case__ttl {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  :where(.top-case__featured) .top-case__ttl {
    font-size: 2rem;
  }
}

.top-recruit {
  position: relative;
  width: 167.5rem;
  background-color: #1a1919;
  margin: 0 auto;
  padding: 12.2rem 0 12.2rem 18.5rem;
  border: 1px solid var(--color-gray2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-recruit {
    width: calc(100% - 10vw);
    padding: 8.5rem 0;
  }
}
.top-recruit .sec-ttl {
  margin-bottom: 4.2rem;
}
.top-recruit .sec-ttl__en {
  color: var(--color-white);
}
.top-recruit .sec-btn {
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .top-recruit .sec-btn {
    margin-top: 5rem;
  }
}
.top-recruit__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .top-recruit__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 9.2rem;
  }
}
.top-recruit__content {
  position: relative;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .top-recruit__content {
    width: 100%;
    padding: 0 8vw;
  }
}
.top-recruit__ttl {
  font-size: 3.2rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .top-recruit__ttl {
    font-size: 2.5rem;
  }
}
.top-recruit__slider {
  position: relative;
  width: 85rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
}
@media screen and (max-width: 767px) {
  .top-recruit__slider {
    width: 100%;
    gap: 1.5vw;
  }
}
.top-recruit__slider::before {
  content: "";
  background: url(../images/top/recruit_txt.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: -7.5rem;
  right: 2.5rem;
  width: 36.4rem;
  aspect-ratio: 727/299;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .top-recruit__slider::before {
    width: 20.6rem;
    top: -6rem;
    right: 3.5rem;
  }
}
.top-recruit__slider .slider__img {
  width: 35.4rem;
  margin-right: 0.7rem;
}
@media screen and (max-width: 767px) {
  .top-recruit__slider .slider__img {
    width: 40vw;
    margin-right: 1.5vw;
  }
}

.top-sns {
  background-color: var(--color-white);
  padding: 25.4rem 0 33rem;
}
@media screen and (max-width: 767px) {
  .top-sns {
    padding: 8.5rem 0;
    overflow: hidden;
  }
}
.top-sns .sec-ttl {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .top-sns .sec-ttl {
    margin-bottom: 0;
  }
}
.top-sns .sec-ttl__ja {
  font-size: 3.2rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .top-sns .sec-ttl__ja {
    font-size: 2.5rem;
  }
}
.top-sns .sec-btn {
  font-size: 2rem;
  font-family: var(--font-shippori-sb);
}
@media screen and (max-width: 767px) {
  .top-sns .sec-btn {
    font-size: 1.5rem;
    margin-top: 4.5rem;
    padding-left: 6.5rem;
  }
}
.top-sns .sec-btn::before {
  content: "";
  background: url(../images/top/insta.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 3.2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.2rem;
  aspect-ratio: 1/1;
  mix-blend-mode: difference;
}
@media screen and (max-width: 767px) {
  .top-sns .sec-btn::before {
    width: 2rem;
  }
}
.top-sns .sec-btn__arrow {
  background: url(../images/top/external_link_icon.svg) no-repeat center;
  background-size: contain;
  right: 3.5rem;
  width: 2rem;
  border: none;
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
  mix-blend-mode: difference;
}
@media screen and (max-width: 767px) {
  .top-sns .sec-btn__arrow {
    width: 1.6rem;
  }
}
.top-sns__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8.2rem;
}
@media screen and (max-width: 767px) {
  .top-sns__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 5rem;
  }
}
.top-sns__img {
  position: relative;
  width: 51.1rem;
}
@media screen and (max-width: 767px) {
  .top-sns__img {
    width: 100%;
  }
}
.top-sns__img::before {
  content: "";
  background: url(../images/top/instagram_txt.png) no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: -6.5rem;
  right: -14rem;
  width: 32.2rem;
  aspect-ratio: 648/293;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .top-sns__img::before {
    width: 20rem;
    top: -3.7rem;
    bottom: auto;
    right: -3rem;
  }
}
.top-sns__img img {
  border-radius: var(--radius-xs);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
}

.top-contact {
  background-color: var(--color-gray);
  padding-bottom: 22rem;
}
@media screen and (max-width: 767px) {
  .top-contact {
    padding-bottom: 0;
  }
}
.top-contact .sec-ttl {
  text-align: center;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .top-contact .sec-ttl {
    margin-bottom: 3.5rem;
  }
}
.top-contact .sec-ttl + p {
  text-align: center;
}
.top-contact__content {
  position: relative;
  background-color: var(--color-white);
  margin-top: -12rem;
  padding: 12.5rem 0 15.2rem;
  border-radius: var(--radius-lg);
}
@media screen and (max-width: 767px) {
  .top-contact__content {
    width: calc(100% + 12vw);
    margin-top: -3vw;
    margin-left: -6vw;
    padding: 8rem 6vw 19rem;
    border-radius: 1.5rem 1.5rem 0 0;
  }
}
.top-contact__tel {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 119.3rem;
  height: 22.3rem;
  background-color: var(--color-black2);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-gray2);
  color: var(--color-white);
  margin: 7rem auto 13rem;
}
@media screen and (max-width: 767px) {
  .top-contact__tel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4.5rem;
    width: 35rem;
    height: 27.7rem;
    margin: 4rem auto 6rem;
    border-radius: var(--radius-sm);
  }
}
.top-contact__tel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0.5px;
  height: 13.1rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .top-contact__tel::before {
    width: 27.6rem;
    height: 0.5px;
  }
}
.top-contact__tel > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .top-contact__tel-content {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media screen and (max-width: 767px) {
  .top-contact__tel-content p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .top-contact__tel-info {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.top-contact__tel-ttl {
  font-size: 3.6rem;
  margin-bottom: 0.3rem;
}
@media screen and (max-width: 767px) {
  .top-contact__tel-ttl {
    font-size: 2.3rem;
  }
}
.top-contact__tel-num {
  position: relative;
  font-size: 4.7rem;
  color: var(--color-white);
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding-left: 5.8rem;
}
@media screen and (max-width: 767px) {
  .top-contact__tel-num {
    font-size: 2.8rem;
    padding-left: 3.8rem;
  }
}
.top-contact__tel-num::before {
  content: "";
  background: url(../images/top/contact_tel_icon.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 1.8rem;
  left: 0;
  width: 4.3rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .top-contact__tel-num::before {
    top: 1rem;
    width: 2.7rem;
  }
}

.sec-img--1 {
  height: calc(60.8rem * var(--parallax-ratio));
}
@media screen and (max-width: 767px) {
  .sec-img--1 {
    aspect-ratio: 860/calc(478 * var(--parallax-ratio));
    height: auto;
  }
}
.sec-img--2 {
  height: calc(58.3rem * var(--parallax-ratio));
}
@media screen and (max-width: 767px) {
  .sec-img--2 {
    aspect-ratio: 860/calc(478 * var(--parallax-ratio));
    height: auto;
  }
}
.sec-img img {
  width: 100%;
}

/* 「Instagramはこちらから」非表示 */
.top-recruit {
  margin-bottom: 20rem;
}
@media screen and (max-width: 767px) {
  .top-recruit {
    margin-bottom: 8rem;
  }
}

.top-sns {
  display: none;
}

/*--------------------------------
	今井塗装についてページ
--------------------------------*/
.strengths {
  background-color: var(--color-gray);
  padding: 17rem 0 21rem;
}
@media screen and (max-width: 767px) {
  .strengths {
    padding: 9.5rem 0 13.5rem;
  }
}
.strengths .sec-ttl {
  text-align: center;
  margin-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  .strengths .sec-ttl {
    margin-bottom: 4rem;
  }
}
.strengths .img-wrap {
  position: relative;
}
@media screen and (max-width: 767px) {
  .strengths .img-wrap {
    width: 100%;
  }
}
.strengths .img-wrap::before {
  content: "";
  background: url(../images/about/about_strong_text1.png) no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: -5rem;
  right: -9.5rem;
  width: 23.6rem;
  aspect-ratio: 472/220;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .strengths .img-wrap::before {
    width: 12rem;
    right: -1.5rem;
    bottom: -3.5rem;
  }
}
.strengths__inner {
  max-width: 121.5rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .strengths__inner {
    width: calc(100% - 12vw);
  }
}
.strengths__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14.5rem;
}
@media screen and (max-width: 767px) {
  .strengths__list {
    gap: 6rem;
  }
}
.strengths__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7.5rem;
}
@media screen and (max-width: 767px) {
  .strengths__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
}
.strengths__item:nth-child(2) .img-wrap::before {
  background: url(../images/about/about_strong_text2.png) no-repeat center;
  background-size: contain;
}
.strengths__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.strengths__num {
  font-size: 2rem;
  color: var(--color-green);
  font-family: var(--font-montserrat-m);
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .strengths__num {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
}
.strengths__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 3.5rem;
  color: var(--color-black2);
  line-height: 2;
  letter-spacing: 0.12em;
  font-family: var(--font-shippori-sb);
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .strengths__ttl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    font-size: 2.1rem;
    margin-bottom: 2rem;
    padding-bottom: 0.1rem;
    border-bottom: 0.5px solid var(--color-black2);
  }
}
.strengths__ttl span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 0.5px solid var(--color-black2);
}
@media screen and (max-width: 767px) {
  .strengths__ttl span {
    border-bottom: none;
  }
}
.strengths__img {
  width: 68.8rem;
  aspect-ratio: 1032/calc(800 * var(--parallax-ratio));
  border-radius: var(--radius-xs);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
@media screen and (max-width: 767px) {
  .strengths__img {
    width: 100%;
    aspect-ratio: 700/calc(368 * var(--parallax-ratio));
    border-radius: var(--radius-sm-sp);
  }
}

.manufacturers {
  background-color: var(--color-gray);
}
@media screen and (max-width: 767px) {
  .manufacturers {
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .manufacturers::before {
    content: "";
    position: absolute;
    top: 15rem;
    left: 0;
    width: 100%;
    height: calc(100% - 15rem);
    background-color: var(--color-black2);
  }
}
@media screen and (max-width: 767px) {
  .manufacturers .sec-ttl {
    width: 100%;
    text-align: center;
  }
}
.manufacturers .sec-ttl__en {
  color: var(--color-white);
}
.manufacturers .sec-ttl__ja {
  font-size: 3.5rem;
}
@media screen and (max-width: 767px) {
  .manufacturers .sec-ttl__ja {
    font-size: 2.5rem;
  }
}
.manufacturers__container {
  position: relative;
  max-width: 151.9rem;
  width: 100%;
  margin: 0 auto;
  padding: 7.4rem 13rem;
  color: #f4f4f4;
  background-color: var(--color-green);
  border-radius: var(--radius-xs);
}
@media screen and (max-width: 767px) {
  .manufacturers__container {
    max-width: 35rem;
    width: calc(100% - 12vw);
    padding: 5rem 3.9rem 6.7rem;
    border-radius: var(--radius-md);
  }
}
.manufacturers__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8rem;
}
@media screen and (max-width: 767px) {
  .manufacturers__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
}
.manufacturers__list ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .manufacturers__list ul {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0.6rem;
  }
}
.manufacturers__list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 31rem;
  height: 13.9rem;
  font-size: 1.9rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
  background-color: #0d5c64;
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .manufacturers__list ul li {
    max-width: 27.1rem;
    height: 12.4rem;
    font-size: 1.6rem;
  }
}
.manufacturers__list ul li img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.ceo-message {
  background-color: var(--color-black2);
  padding-bottom: 20rem;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .ceo-message {
    padding-top: 7rem;
    padding-bottom: 12rem;
  }
}
.ceo-message .sec-ttl {
  text-align: center;
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .ceo-message .sec-ttl {
    text-align: left;
    margin-bottom: 5rem;
  }
}
.ceo-message .sec-ttl__en {
  color: var(--color-white);
}
.ceo-message .img-wrap {
  position: relative;
}
@media screen and (max-width: 767px) {
  .ceo-message .img-wrap {
    width: 100%;
  }
}
.ceo-message .img-wrap::before {
  content: "";
  background: url(../images/about/about_message_txt.png) no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: -8.7rem;
  right: -11.4rem;
  width: 29.4rem;
  aspect-ratio: 589/379;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .ceo-message .img-wrap::before {
    right: -2rem;
    bottom: -5.2rem;
    width: 15.3rem;
  }
}
.ceo-message__inner {
  max-width: 94.5rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .ceo-message__inner {
    width: calc(100% - 12vw);
  }
}
.ceo-message__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10.5rem;
}
@media screen and (max-width: 767px) {
  .ceo-message__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 7rem;
  }
}
.ceo-message__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.ceo-message__ttl {
  font-size: 3.5rem;
  line-height: 1.7;
  letter-spacing: 0.12em;
  font-family: var(--font-shippori-sb);
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .ceo-message__ttl {
    font-size: 2.4rem;
    margin-bottom: 3.5rem;
  }
}
.ceo-message__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 2rem;
  margin-top: 6.5rem;
  font-family: var(--font-shippori-b);
}
@media screen and (max-width: 767px) {
  .ceo-message__name {
    gap: 1.2rem;
    margin-top: 3rem;
  }
}
.ceo-message__name-label {
  font-size: 1.9rem;
}
@media screen and (max-width: 767px) {
  .ceo-message__name-label {
    font-size: 1.7rem;
  }
}
.ceo-message__name-value {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .ceo-message__name-value {
    font-size: 2.3rem;
  }
}
.ceo-message__img {
  width: 36.1rem;
  aspect-ratio: 722/calc(1020 * var(--parallax-ratio));
  border-radius: var(--radius-xs);
}
@media screen and (max-width: 767px) {
  .ceo-message__img {
    width: 100%;
    aspect-ratio: 700/calc(440 * var(--parallax-ratio));
    border-radius: var(--radius-sm-sp);
  }
}

.philosophy {
  background-color: var(--color-black2);
  margin-top: -1px;
}
.philosophy .sec-ttl {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.philosophy .sec-ttl__en, .philosophy .sec-ttl__ja {
  color: var(--color-white);
}
.philosophy .sec-ttl__ja {
  letter-spacing: 0.45em;
}
.philosophy__header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 6rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .philosophy__header {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 3rem;
  }
}
.philosophy__ttl {
  font-size: 4.2rem;
  line-height: 1.9;
  letter-spacing: 0.3em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.2rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .philosophy__ttl {
    font-size: 2.8rem;
  }
}
.philosophy__ttl span {
  display: inline-block;
  background-color: var(--color-white);
  padding: 2.5rem 0;
}
@media screen and (max-width: 767px) {
  .philosophy__ttl span {
    padding: 1.5rem 0;
  }
}
.philosophy__ttl span:nth-child(2), .philosophy__ttl span:nth-child(3) {
  height: 33.5rem;
}
@media screen and (max-width: 767px) {
  .philosophy__ttl span:nth-child(2), .philosophy__ttl span:nth-child(3) {
    height: 22rem;
  }
}
.philosophy__body {
  margin-top: -39rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .philosophy__body {
    margin-top: -10.7rem;
  }
}
.philosophy__txt {
  font-size: 14.4rem;
  line-height: 0.9;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.05);
  white-space: nowrap;
  margin-left: -2.5rem;
}
@media screen and (max-width: 767px) {
  .philosophy__txt {
    font-size: 7rem;
    margin-left: -0.5rem;
  }
}
.philosophy__img {
  height: calc(62.1rem * var(--parallax-ratio));
}
@media screen and (max-width: 767px) {
  .philosophy__img {
    aspect-ratio: 860/calc(552 * var(--parallax-ratio));
    height: auto;
  }
}

.company {
  background-color: var(--color-gray);
  padding-top: 15rem;
}
@media screen and (max-width: 767px) {
  .company {
    padding-top: 7.5rem;
  }
}
.company .sec-ttl {
  text-align: center;
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .company .sec-ttl {
    margin-bottom: 5rem;
  }
}
.company__table {
  background-color: var(--color-white);
  padding: 12.2rem 15rem;
  border-radius: var(--radius-lg);
}
@media screen and (max-width: 767px) {
  .company__table {
    padding: 5rem 8vw;
    border-radius: var(--radius-lg-sp);
  }
}
.company__table .pdf-link {
  color: #2f7980;
  text-decoration: underline;
}
.company__slider {
  margin-top: 14.2rem;
}
@media screen and (max-width: 767px) {
  .company__slider {
    margin-top: 8.5rem;
  }
}

.history {
  background-color: var(--color-white);
  margin-top: -6rem;
  padding-top: 26rem;
}
@media screen and (max-width: 767px) {
  .history {
    margin-top: -32vw;
    padding-top: calc(32vw + 7.5rem);
  }
}
.history .sec-ttl {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .history .sec-ttl {
    text-align: center;
    margin-bottom: 3.5rem;
  }
}
.history__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16.8rem;
}
@media screen and (max-width: 767px) {
  .history__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 4rem;
  }
}
.history__img {
  width: 68rem;
  aspect-ratio: 1020/calc(1380 * var(--parallax-ratio));
  margin-left: -20rem;
  border-radius: 0 0.5rem 0.5rem 0;
}
@media screen and (max-width: 1919px) {
  .history__img {
    margin-left: calc(50% - 50vw);
  }
}
@media screen and (max-width: 767px) {
  .history__img {
    width: calc(100% + 12vw);
    height: auto;
    aspect-ratio: 860/calc(426 * var(--parallax-ratio));
    margin-left: -6vw;
    border-radius: 0;
  }
}
.history__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .history__timeline {
    max-width: 50rem;
    margin: 0 auto;
  }
}

.timeline {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10rem;
}
@media screen and (max-width: 767px) {
  .timeline {
    gap: 5.5rem;
  }
}
.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 18rem 12rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .timeline__item {
    grid-template-columns: 10.2rem 1fr;
  }
}
.timeline__item:last-child {
  margin-bottom: 9rem;
}
@media screen and (max-width: 767px) {
  .timeline__item:last-child {
    margin-bottom: 3rem;
  }
}
.timeline__year {
  font-size: 4.5rem;
  color: var(--color-green);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .timeline__year {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    grid-column: 2;
    font-size: 2.9rem;
  }
}
.timeline__year span {
  margin-left: 0.8rem;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .timeline__year span {
    margin-left: 0.5rem;
    font-size: 1.6rem;
  }
}
.timeline__point {
  position: relative;
  width: 6.2rem;
  height: 6.2rem;
  border-radius: var(--radius-full);
  background-color: rgba(47, 121, 128, 0.15);
}
@media screen and (max-width: 767px) {
  .timeline__point {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    grid-column: 1;
    width: 5.1rem;
    height: 5.1rem;
  }
}
.timeline__point::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 100rem;
  background-color: var(--color-green);
}
.timeline__point::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7rem;
  height: 1px;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, var(--color-green)), color-stop(50%, transparent));
  background-image: linear-gradient(to right, var(--color-green) 0 50%, transparent 50% 100%);
  background-size: 0.4rem 1px;
  background-repeat: repeat-x;
}
@media screen and (max-width: 767px) {
  .timeline__point::after {
    width: 6.6rem;
  }
}
.timeline__point span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1rem;
  height: 1rem;
  border-radius: var(--radius-full);
  background-color: #2f7f84;
}
.timeline__txt {
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .timeline__txt {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    grid-column: 2;
    font-size: 1.8rem;
  }
}

.works-info {
  position: relative;
  background-color: var(--color-white);
  padding: 28.5rem 0 10rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .works-info {
    padding: 9rem 0 4rem;
  }
}
.works-info::before {
  content: "";
  position: absolute;
  right: max(0px, (100vw - 192rem) / 2);
  bottom: 0rem;
  width: 87.1rem;
  height: 52rem;
  background-color: var(--color-gray);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .works-info::before {
    content: none;
  }
}
.works-info .sec-ttl {
  margin-bottom: 3rem;
}
.works-info .img-wrap {
  position: relative;
}
@media screen and (max-width: 767px) {
  .works-info .img-wrap {
    width: 100%;
  }
}
.works-info .img-wrap::before {
  content: "";
  background: url(../images/about/about_works_txt1.png) no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: -7.5rem;
  right: -3.5rem;
  width: 26.5rem;
  aspect-ratio: 531/272;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .works-info .img-wrap::before {
    bottom: -4.5rem;
    right: -1.5rem;
    width: 12rem;
  }
}
@media screen and (max-width: 767px) {
  .works-info .img-wrap::after {
    content: "";
    position: absolute;
    left: 21%;
    top: 16%;
    width: 72vw;
    aspect-ratio: 280/165;
    background-color: var(--color-gray);
    z-index: -1;
  }
}
.works-info__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .works-info__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.works-info__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.works-info__ttl {
  font-size: 3rem;
  line-height: 2.3;
  letter-spacing: 0.12em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .works-info__ttl {
    font-size: 2rem;
    margin-bottom: 5rem;
  }
}
.works-info__ttl span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 0.5px solid var(--color-black2);
}
.works-info__img {
  width: 101rem;
  aspect-ratio: 1509/calc(900 * var(--parallax-ratio));
  border-radius: var(--radius-xs);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
@media screen and (max-width: 767px) {
  .works-info__img {
    width: 82vw;
    height: auto;
    aspect-ratio: 631/calc(379 * var(--parallax-ratio));
    border-radius: var(--radius-sm-sp);
    margin-bottom: 6.5rem;
  }
}

.recruit-info {
  position: relative;
  background-color: var(--color-white);
  padding: 18.2rem 0 37rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .recruit-info {
    padding: 5rem 0 20rem;
  }
}
.recruit-info::before {
  content: "";
  position: absolute;
  left: max(0px, (100vw - 192rem) / 2);
  bottom: 27.5rem;
  width: 87.1rem;
  height: 52rem;
  background-color: var(--color-gray);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .recruit-info::before {
    content: none;
  }
}
.recruit-info .sec-ttl {
  margin-bottom: 3rem;
}
.recruit-info .img-wrap {
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruit-info .img-wrap {
    width: 100%;
  }
}
.recruit-info .img-wrap::before {
  content: "";
  background: url(../images/about/about_works_txt2.png) no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: -12.2rem;
  left: -2rem;
  width: 31.9rem;
  aspect-ratio: 638/263;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .recruit-info .img-wrap::before {
    bottom: -4.5rem;
    left: auto;
    right: -3rem;
    width: 16rem;
  }
}
@media screen and (max-width: 767px) {
  .recruit-info .img-wrap::after {
    content: "";
    position: absolute;
    left: 21%;
    top: 16%;
    width: 72vw;
    aspect-ratio: 280/165;
    background-color: var(--color-gray);
    z-index: -1;
  }
}
.recruit-info__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .recruit-info__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.recruit-info__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.recruit-info__ttl {
  font-size: 3rem;
  line-height: 2.3;
  letter-spacing: 0.12em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .recruit-info__ttl {
    font-size: 2rem;
    margin-bottom: 5rem;
  }
}
.recruit-info__ttl span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 0.5px solid var(--color-black2);
}
.recruit-info__img {
  width: 101rem;
  aspect-ratio: 1509/calc(900 * var(--parallax-ratio));
  border-radius: var(--radius-xs);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
@media screen and (max-width: 767px) {
  .recruit-info__img {
    width: 82vw;
    height: auto;
    aspect-ratio: 631/calc(379 * var(--parallax-ratio));
    border-radius: var(--radius-sm-sp);
    margin-bottom: 6.5rem;
  }
}

/*--------------------------------
	業務内容ページ
--------------------------------*/
.works-nav {
  background-color: var(--color-gray);
  padding: 17.6rem 0 1.5rem;
}
@media screen and (max-width: 767px) {
  .works-nav {
    padding: 6.4rem 0 1rem;
  }
}
@media screen and (max-width: 767px) {
  .works-nav .sec-btn {
    height: 6.7rem;
  }
}
.works-nav__inner {
  max-width: 92.3rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.3rem;
}
@media screen and (max-width: 767px) {
  .works-nav__inner {
    display: none;
  }
}
.works-nav__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}

.accordion-nav {
  max-width: 27.6rem;
  margin: 0 auto;
}
.accordion-nav .sec-btn {
  padding-left: 6.5rem;
}
.accordion-nav .sec-btn__arrow {
  right: 5rem;
}
.accordion-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  padding: 2.5rem 0 0.1rem;
}
.accordion-nav__btn {
  position: relative;
  display: block;
  font-size: 1.9rem;
  font-family: var(--font-shippori-sb);
  padding: 1.2rem 0.5rem;
  border-bottom: 0.5px solid var(--color-black);
}
.accordion-nav__btn::before {
  content: "";
  position: absolute;
  top: 2.2rem;
  right: 1rem;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  width: 1rem;
  aspect-ratio: 1/1;
  border-top: 1.5px solid var(--color-black);
  border-right: 1.5px solid var(--color-black);
}

.works {
  position: relative;
  background-color: var(--color-gray);
  padding: 18rem 0;
}
@media screen and (max-width: 767px) {
  .works {
    padding: 8rem 0 9rem;
  }
}
.works::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 174rem;
  height: 1px;
  background-color: #e0dfdf;
}
@media screen and (max-width: 767px) {
  .works::before {
    width: 95%;
  }
}
.works__header {
  max-width: 152rem;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10.5rem;
}
@media screen and (max-width: 767px) {
  .works__header {
    width: calc(100% - 12vw);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 5.5rem;
  }
}
.works__header .sec-btn {
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px) {
  .works__header .sec-btn {
    margin: 3.5rem auto 0;
  }
}
.works__img {
  width: 110.7rem;
  margin-left: -20rem;
  aspect-ratio: 1661/calc(798 * var(--parallax-ratio));
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  border-radius: 0 0.5rem 0.5rem 0;
}
@media screen and (max-width: 1919px) {
  .works__img {
    margin-left: calc(50% - 50vw);
  }
}
@media screen and (max-width: 767px) {
  .works__img {
    width: calc(100% + 6vw);
    margin-left: -6vw;
    border-radius: 0 1vw 1vw 0;
  }
}
.works__header-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.works__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 767px) {
  .works__ttl {
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
}
.works__ttl-num {
  font-size: 10.1rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: var(--font-montserrat-sb);
}
@media screen and (max-width: 767px) {
  .works__ttl-num {
    font-size: 7rem;
  }
}
.works__ttl-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.works__ttl-ja {
  font-size: 4.5rem;
  line-height: 1.4;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
  .works__ttl-ja {
    font-size: 3rem;
  }
}
.works__ttl-en {
  font-size: 1.4rem;
  font-family: var(--font-montserrat-m);
}
.works__header-block {
  display: none;
  max-width: 50rem;
  width: 100%;
  background-color: var(--color-green);
  border-radius: var(--radius-xs);
  color: var(--color-white);
  margin-top: 4.5rem;
  padding: 2.5rem 3.2rem 3rem;
}
@media screen and (max-width: 767px) {
  .works__header-block {
    max-width: 35rem;
    margin: 4rem auto 0;
    padding: 3rem 3.5rem 3.5rem;
  }
}
.works__header-block p {
  font-size: 1.9rem;
}
.works__header-block ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  font-size: 1.7rem;
  line-height: 1.6;
  margin-top: 1rem;
}

.works-cta {
  padding-top: 18rem;
}
@media screen and (max-width: 767px) {
  .works-cta {
    padding-top: 9rem;
  }
}
.works-cta__txt {
  position: relative;
  padding-top: 7.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .works-cta__txt {
    padding-top: 5.5rem;
  }
}
.works-cta__txt::before {
  content: "";
  background: url(../images/works/flow4.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 3.2rem;
  aspect-ratio: 71/82;
}
@media screen and (max-width: 767px) {
  .works-cta__txt::before {
    width: 2.6rem;
  }
}
.works-cta__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px) {
  .works-cta__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 4rem;
  }
}
.works-cta__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.5rem;
  width: 62.3rem;
  height: 32.5rem;
  color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .works-cta__link {
    max-width: 40rem;
    width: 100%;
    height: 20.8rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1rem;
    padding: 0 4.2rem;
    text-align: left;
  }
}
.works-cta__link:nth-child(1) {
  background-color: #343434;
}
.works-cta__link:nth-child(2) {
  background-color: var(--color-black2);
}
.works-cta__content {
  position: relative;
  z-index: 1;
}
.works-cta__ttl {
  font-size: 2.5rem;
  line-height: 1.6;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .works-cta__ttl {
    font-size: 2rem;
    margin-top: 0.5rem;
  }
}
.works-cta__btn {
  position: relative;
  display: inline-block;
  width: 7.7rem;
  aspect-ratio: 1/1;
  border: 1px solid var(--color-white);
  border-radius: var(--radius-full);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .works-cta__btn {
    width: 5.2rem;
  }
}
.works-cta__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 40%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 1.2rem;
  aspect-ratio: 1/1;
  border-top: 1.5px solid var(--color-white);
  border-right: 1.5px solid var(--color-white);
}
@media screen and (max-width: 767px) {
  .works-cta__btn::before {
    width: 0.8rem;
  }
}
.works-cta__hover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s;
  transition: opacity 0.5s ease, visibility 0.5s;
}
:where(.works-cta__link:hover) .works-cta__hover-img {
  opacity: 1;
  visibility: visible;
}

.repainting-points {
  padding-top: 24.5rem;
}
@media screen and (max-width: 767px) {
  .repainting-points {
    padding-top: 7.5rem;
  }
}
.repainting-points .sec-ttl {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .repainting-points .sec-ttl {
    margin-bottom: 1.5rem;
  }
}
.repainting-points__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10rem;
}
@media screen and (max-width: 767px) {
  .repainting-points__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5rem;
  }
}
.repainting-points__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.repainting-points__content p > span {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .repainting-points__content p > span {
    font-size: 2.2rem;
  }
}
.repainting-points__imgs {
  margin-right: -11rem;
}
@media screen and (max-width: 767px) {
  .repainting-points__imgs {
    margin-right: 0;
  }
}

.circle-imgs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 24rem));
  gap: 4rem 3.2rem;
}
@media screen and (max-width: 767px) {
  .circle-imgs {
    grid-template-columns: repeat(2, minmax(0, 16.5rem));
    gap: 3rem 2rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.circle-imgs__item img {
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  border-radius: var(--radius-full);
}
.circle-imgs__caption {
  line-height: 1.3;
  font-family: var(--font-shippori-b);
  text-align: center;
  margin-top: 1.5rem;
  white-space: nowrap;
}

.four-merit {
  padding-top: 19rem;
}
@media screen and (max-width: 767px) {
  .four-merit {
    padding-top: 7.5rem;
  }
}
.four-merit .sec-ttl {
  margin-bottom: 5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .four-merit .sec-ttl {
    margin-bottom: 3.5rem;
  }
}
.four-merit__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 22rem 22rem;
}
@media screen and (max-width: 767px) {
  .four-merit__list {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.four-merit__list::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1.3rem;
  height: 1.3rem;
  background-color: var(--color-gray);
}
@media screen and (max-width: 767px) {
  .four-merit__list::before {
    content: none;
  }
}
.four-merit__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
  padding: 0 4.5rem;
}
@media screen and (max-width: 767px) {
  .four-merit__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    padding: 5rem 2rem;
    border-bottom: 0.5px solid var(--color-black2);
  }
}
@media screen and (max-width: 767px) {
  .four-merit__item:nth-child(1) {
    border-top: 0.5px solid var(--color-black2);
  }
}
.four-merit__item:nth-child(1), .four-merit__item:nth-child(2) {
  border-bottom: 0.5px solid var(--color-black2);
}
.four-merit__item:nth-child(1), .four-merit__item:nth-child(3) {
  border-right: 0.5px solid var(--color-black2);
}
@media screen and (max-width: 767px) {
  .four-merit__item:nth-child(1), .four-merit__item:nth-child(3) {
    border-right: none;
  }
}
.four-merit__icon {
  width: 9rem;
}
@media screen and (max-width: 767px) {
  .four-merit__icon {
    width: 7rem;
  }
}
.four-merit__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.four-merit__ttl {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .four-merit__ttl {
    font-size: 2.2rem;
    text-align: center;
  }
}

.select-grade-plan {
  padding-top: 19rem;
}
@media screen and (max-width: 767px) {
  .select-grade-plan {
    padding-top: 8.5rem;
  }
}
.select-grade-plan .sec-ttl {
  text-align: center;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 767px) {
  .select-grade-plan .sec-ttl {
    margin-bottom: 3rem;
  }
}
.select-grade-plan .sec-ttl + p {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .select-grade-plan .sec-ttl + p {
    text-align: left;
  }
}
.select-grade-plan__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 4rem 2.8rem;
  margin-top: 9rem;
}
@media screen and (max-width: 767px) {
  .select-grade-plan__list {
    width: calc(100% + 4vw);
    grid-template-columns: repeat(1, minmax(0, 40rem));
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 3.5rem;
    margin-top: 5rem;
    margin-left: -2vw;
  }
}

.select-color-type {
  padding-top: 19rem;
}
@media screen and (max-width: 767px) {
  .select-color-type {
    padding-top: 7.5rem;
  }
}
.select-color-type .sec-ttl {
  text-align: center;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 767px) {
  .select-color-type .sec-ttl {
    margin-bottom: 3rem;
  }
}
.select-color-type .sec-ttl + p {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .select-color-type .sec-ttl + p {
    text-align: left;
  }
}
.select-color-type__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 61.8rem));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7.5rem 6rem;
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  .select-color-type__list {
    grid-template-columns: 1fr;
    gap: 4.5rem;
    margin-top: 5rem;
  }
}
.select-color-type__img {
  aspect-ratio: 1236/calc(744 * var(--parallax-ratio));
  margin-bottom: 2.5rem;
  border-radius: var(--radius-xs);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
@media screen and (max-width: 767px) {
  .select-color-type__img {
    border-radius: var(--radius-sm-sp);
  }
}
.select-color-type__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  font-size: 2.3rem;
  font-family: var(--font-shippori-b);
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .select-color-type__ttl {
    font-size: 2rem;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
  }
}
.select-color-type__ttl span {
  display: inline-block;
  font-size: 3rem;
  color: var(--color-green);
  line-height: 1;
  letter-spacing: 0.08em;
  font-family: var(--font-montserrat-sb);
  border-right: 0.5px solid var(--color-black2);
  padding-right: 1.3rem;
}
@media screen and (max-width: 767px) {
  .select-color-type__ttl span {
    font-size: 2.5rem;
  }
}

.construction-type1 {
  padding-top: 17.5rem;
}
@media screen and (max-width: 767px) {
  .construction-type1 {
    padding-top: 7.5rem;
  }
}
.construction-type1 .sec-ttl {
  text-align: center;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .construction-type1 .sec-ttl {
    margin-bottom: 3.5rem;
  }
}
.construction-type1__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .construction-type1__list {
    grid-template-columns: 1fr;
  }
}
.construction-type1__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.5rem;
}
@media screen and (max-width: 767px) {
  .construction-type1__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2rem;
  }
}
.construction-type1__img {
  width: 24rem;
  border-radius: var(--radius-full);
  -webkit-box-shadow: 0 0.6rem 4rem var(--color-shadow2);
          box-shadow: 0 0.6rem 4rem var(--color-shadow2);
}
@media screen and (max-width: 767px) {
  .construction-type1__img {
    width: 20.6rem;
    margin: 0 auto;
  }
}
.construction-type1__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.construction-type1__ttl {
  font-size: 3rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 0.5px solid var(--color-black2);
}
@media screen and (max-width: 767px) {
  .construction-type1__ttl {
    font-size: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.construction-type1__ttl span {
  font-family: var(--font-shippori-eb);
}

.construction-type2 {
  padding-top: 18rem;
}
@media screen and (max-width: 767px) {
  .construction-type2 {
    padding-top: 8.5rem;
  }
}
@media screen and (max-width: 767px) {
  .construction-type2 .sec-ttl {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .construction-type2 .sec-btn {
    margin: 7rem auto 0;
  }
}
@media screen and (max-width: 767px) {
  .construction-type2 .circle-imgs__item:last-child {
    width: 16.5rem;
    grid-column: span 2;
    justify-self: center;
  }
}
.construction-type2__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 23rem;
}
@media screen and (max-width: 767px) {
  .construction-type2__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
  }
}
.construction-type2__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7rem;
}

.flow {
  position: relative;
  margin-top: 18rem;
  padding-top: 18rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .flow {
    margin-top: 0;
    padding-top: 11rem;
  }
}
.flow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 174rem;
  height: 1px;
  background-color: #e0dfdf;
}
@media screen and (max-width: 767px) {
  .flow::before {
    content: none;
  }
}
.flow .sec-ttl {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .flow .sec-ttl {
    margin-bottom: 0;
  }
}

.flow-slider {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
  cursor: pointer;
}
.flow-slider__item {
  width: 35.6rem;
  height: 46rem;
  background-color: var(--color-white);
  margin-right: 7.6rem;
  padding: 3.5rem 3rem;
  border-radius: var(--radius-xs);
  -webkit-box-shadow: 0 0.6rem 4rem var(--color-shadow);
          box-shadow: 0 0.6rem 4rem var(--color-shadow);
}
@media screen and (max-width: 767px) {
  .flow-slider__item {
    width: 32.5rem;
    height: 42.7rem;
    margin-right: 6.5rem;
    padding: 2.8rem 2.5rem;
  }
}
.flow-slider__item + .flow-slider__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4.7rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.5rem 0 1.5rem 1.8rem;
  border-color: transparent transparent transparent var(--color-green);
}
@media screen and (max-width: 767px) {
  .flow-slider__item + .flow-slider__item::before {
    left: -3.8rem;
    border-width: 1rem 0 1rem 1.2rem;
  }
}
.flow-slider__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 3.5rem;
  line-height: 1.1;
  letter-spacing: 0.1em;
  margin-bottom: 2.3rem;
}
@media screen and (max-width: 767px) {
  .flow-slider__num {
    font-size: 3.2rem;
    margin-bottom: 2rem;
  }
}
.flow-slider__num span {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .flow-slider__num span {
    font-size: 1.1rem;
  }
}
.flow-slider__num-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.flow-slider__content {
  padding: 0 1.8rem;
}
@media screen and (max-width: 767px) {
  .flow-slider__content {
    padding: 0 0.8rem;
  }
}
.flow-slider__icon {
  height: 12rem;
  border-bottom: 0.5px solid var(--color-black2);
  margin-bottom: 1.8rem;
  text-align: center;
}
:where(.flow-slider__item:nth-child(1)) .flow-slider__icon img {
  width: 9.2rem;
}
@media screen and (max-width: 767px) {
  :where(.flow-slider__item:nth-child(1)) .flow-slider__icon img {
    width: 7.5rem;
  }
}
:where(.flow-slider__item:nth-child(2)) .flow-slider__icon img {
  width: 6.5rem;
}
@media screen and (max-width: 767px) {
  :where(.flow-slider__item:nth-child(2)) .flow-slider__icon img {
    width: 5.5rem;
  }
}
:where(.flow-slider__item:nth-child(3)) .flow-slider__icon img {
  width: 9.1rem;
}
@media screen and (max-width: 767px) {
  :where(.flow-slider__item:nth-child(3)) .flow-slider__icon img {
    width: 7.8rem;
  }
}
:where(.flow-slider__item:nth-child(4)) .flow-slider__icon img {
  width: 7.1rem;
}
@media screen and (max-width: 767px) {
  :where(.flow-slider__item:nth-child(4)) .flow-slider__icon img {
    width: 6.5rem;
  }
}
:where(.flow-slider__item:nth-child(5)) .flow-slider__icon img {
  width: 9rem;
}
@media screen and (max-width: 767px) {
  :where(.flow-slider__item:nth-child(5)) .flow-slider__icon img {
    width: 7.5rem;
  }
}
.flow-slider__ttl {
  font-size: 2.2rem;
  font-family: var(--font-shippori-b);
  text-align: center;
  margin-bottom: 1.4rem;
}
@media screen and (max-width: 767px) {
  .flow-slider__ttl {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
.flow-slider__ttl + p {
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .flow-slider__ttl + p {
    text-align: left;
  }
}
.flow-slider__cursor {
  position: fixed;
  top: -10rem;
  left: -10rem;
  width: 20rem;
  height: 20rem;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.15s;
  transition: opacity 0.15s;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .flow-slider__cursor {
    display: none;
  }
}
:where(.flow-slider:hover:not(:has(.swiper-scrollbar:hover))) .flow-slider__cursor {
  opacity: 0.9;
}
.flow-slider .swiper-scrollbar {
  position: absolute;
  top: -8rem !important;
  right: 10rem !important;
  width: 55rem;
  height: 0.6rem;
  inset: auto;
  background: #e0e0e0;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .flow-slider .swiper-scrollbar {
    width: 16rem;
    height: 0.3rem;
    margin-right: 0;
    top: -2rem !important;
    right: 0 !important;
  }
}
.flow-slider .swiper-scrollbar-drag {
  background: #2a6e6b;
  border-radius: 0;
  cursor: pointer;
}

.sec-case {
  padding: 16.5rem 0 14rem;
}
@media screen and (max-width: 767px) {
  .sec-case {
    padding: 7rem 0 10rem;
  }
}
.sec-case .sec-ttl {
  text-align: center;
  margin-bottom: 6.5rem;
}
@media screen and (max-width: 767px) {
  .sec-case .sec-ttl {
    margin-bottom: 6rem;
  }
}
.sec-case .sec-btn {
  margin: 0 auto;
}
.sec-case .case-list {
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .sec-case .case-list {
    margin-bottom: 6.5rem;
  }
}

.plan {
  position: relative;
  width: 48.8rem;
}
@media screen and (max-width: 767px) {
  .plan {
    max-width: 40rem;
    width: 100%;
  }
}
.plan--standard::before {
  content: "";
  background: url(../images/works/plan_icon2.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: -3rem;
  left: -2.5rem;
  width: 12.6rem;
  aspect-ratio: 1/1;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .plan--standard::before {
    top: -1rem;
    left: -0.5rem;
    width: 9rem;
  }
}
.plan .sec-btn {
  margin: 0 auto;
}
.plan.is-open [data-accordion-btn] {
  padding-left: 3rem;
}
.plan__inner {
  background-color: #dddddd;
  padding: 4.5rem 2.7rem 4.2rem;
  clip-path: polygon(8.5rem 0, 100% 0, 100% 100%, 0 100%, 0 8rem);
}
@media screen and (max-width: 767px) {
  .plan__inner {
    padding: 3.5rem 2.4rem 2.5rem;
    clip-path: polygon(7rem 0, 100% 0, 100% 100%, 0 100%, 0 6.5rem);
  }
}
:where(.plan--basic) .plan__inner {
  background-color: #dddddd;
}
:where(.plan--standard) .plan__inner {
  background-color: #b7b7b7;
}
:where(.plan--premium) .plan__inner {
  background-color: #454545;
}
.plan__content {
  background-color: var(--color-white);
  padding: 4rem 4.8rem 3.6rem;
}
@media screen and (max-width: 767px) {
  .plan__content {
    padding: 3.5rem 3.5rem 4rem;
  }
}
.plan__ttl {
  font-size: 2.7rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 767px) {
  .plan__ttl {
    font-size: 2.1rem;
    margin-bottom: 2.8rem;
  }
}
:where(.plan--standard) .plan__ttl {
  padding: 0 7rem;
}
@media screen and (max-width: 767px) {
  :where(.plan--standard) .plan__ttl {
    padding: 0 6rem;
  }
}
:where(.plan--premium) .plan__ttl {
  color: var(--color-white);
}
.plan__top-txt {
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 767px) {
  .plan__top-txt {
    margin-bottom: 3rem;
  }
}
.plan__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 4rem;
}
.plan__list-item dt {
  font-family: var(--font-shippori-b);
  border-bottom: 0.5px solid var(--color-black2);
  margin-bottom: 0.5rem;
  padding-bottom: 0.2rem;
}
.plan__feature {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .plan__feature {
    margin-bottom: 3rem;
  }
}
.plan__feature-ttl {
  color: var(--color-white);
  background-color: var(--color-green);
  margin-bottom: 2rem;
  padding: 0.1rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .plan__feature-ttl {
    padding: 0.4rem 1.5rem;
  }
}

/* アコーディオン */
[data-accordion-content] {
  overflow: hidden;
  height: 0;
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
}

[data-accordion-btn] {
  -webkit-transition: none;
  transition: none;
}
[data-accordion-btn]:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}
[data-accordion-btn]:hover .sec-btn__arrow {
  border-color: var(--color-white);
}
[data-accordion-btn] .sec-btn__arrow {
  -webkit-transition: none;
  transition: none;
}
:where(.is-open) [data-accordion-btn] .sec-btn__arrow {
  top: 3rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/*--------------------------------
	施工事例一覧ページ
--------------------------------*/
.blog .accordion-nav__btn.is-active,
.category .accordion-nav__btn.is-active {
  color: var(--color-green);
}

.case {
  padding: 19.5rem 0 27rem;
}
@media screen and (max-width: 767px) {
  .case {
    padding: 10rem 0 20rem;
  }
}

.case-nav {
  margin-bottom: 19.5rem;
}
@media screen and (max-width: 767px) {
  .case-nav {
    margin-bottom: 7.5rem;
  }
}
.case-nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7rem;
}
@media screen and (max-width: 767px) {
  .case-nav__inner {
    display: none;
  }
}
.case-nav__ttl {
  font-size: 1.9rem;
  color: var(--color-green);
  letter-spacing: 0.08em;
  font-family: var(--font-montserrat-m);
}
.case-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.case-nav__item {
  border-left: 1px solid var(--color-black2);
}
.case-nav__item:last-child {
  border-right: 1px solid var(--color-black2);
}
.case-nav__link {
  display: block;
  font-size: 2.2rem;
  padding: 0 4.8rem;
  line-height: 1.3;
  white-space: nowrap;
}
.case-nav__link.is-active {
  color: var(--color-green);
}

/* ページネーション */
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 17rem;
}
@media screen and (max-width: 767px) {
  .pagination {
    margin-top: 7rem;
  }
}
.pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination .page-numbers li {
  position: relative;
  margin: 0 2.8rem;
}
@media screen and (max-width: 767px) {
  .pagination .page-numbers li {
    margin: 0 1.2rem;
  }
}
.pagination .page-numbers li:has(.prev, .next) {
  margin: 0;
}
.pagination .page-numbers li .page-numbers {
  font-size: 2.5rem;
  font-family: var(--font-shippori-sb);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .pagination .page-numbers li .page-numbers {
    font-size: 2rem;
  }
}
.pagination .page-numbers li .page-numbers:not(.dots, .prev, .next):hover, .pagination .page-numbers li .page-numbers:not(.dots, .prev, .next).current {
  color: var(--color-green);
}
.pagination .page-numbers li .page-numbers.prev, .pagination .page-numbers li .page-numbers.next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5.9rem;
  aspect-ratio: 1/1;
  background-color: var(--color-black);
  border: 1px solid var(--color-black);
  border-radius: var(--radius-full);
  -webkit-transition: var(--transit-default);
  transition: var(--transit-default);
}
@media screen and (max-width: 767px) {
  .pagination .page-numbers li .page-numbers.prev, .pagination .page-numbers li .page-numbers.next {
    width: 4.2rem;
  }
}
.pagination .page-numbers li .page-numbers.prev:hover, .pagination .page-numbers li .page-numbers.next:hover {
  background-color: var(--color-white);
}
.pagination .page-numbers li .page-numbers.prev:hover::before, .pagination .page-numbers li .page-numbers.next:hover::before {
  border-color: var(--color-black);
}
.pagination .page-numbers li .page-numbers.prev::before, .pagination .page-numbers li .page-numbers.next::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 1rem;
  aspect-ratio: 1/1;
  border-top: 1.5px solid var(--color-white);
  border-right: 1.5px solid var(--color-white);
  -webkit-transition: var(--transit-default);
  transition: var(--transit-default);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .pagination .page-numbers li .page-numbers.prev::before, .pagination .page-numbers li .page-numbers.next::before {
    width: 0.7rem;
  }
}
.pagination .page-numbers li .page-numbers.prev {
  right: 4rem;
}
@media screen and (max-width: 767px) {
  .pagination .page-numbers li .page-numbers.prev {
    right: 1.7rem;
  }
}
.pagination .page-numbers li .page-numbers.prev::before {
  left: 2.5rem;
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
}
@media screen and (max-width: 767px) {
  .pagination .page-numbers li .page-numbers.prev::before {
    left: 1.8rem;
  }
}
.pagination .page-numbers li .page-numbers.next {
  left: 4rem;
}
@media screen and (max-width: 767px) {
  .pagination .page-numbers li .page-numbers.next {
    left: 1.7rem;
  }
}
.pagination .page-numbers li .page-numbers.next::before {
  right: 2.5rem;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .pagination .page-numbers li .page-numbers.next::before {
    right: 1.8rem;
  }
}

.case-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9rem 6rem;
}
@media screen and (max-width: 767px) {
  .case-list {
    grid-template-columns: 1fr;
    gap: 6rem;
  }
}

.case-item__thumb {
  width: 46.5rem;
  margin-bottom: 3.3rem;
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  border-radius: var(--radius-xs);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .case-item__thumb {
    width: 100%;
    border-radius: var(--radius-sm-sp);
    margin-bottom: 2rem;
  }
}
.case-item__thumb img {
  width: 100%;
  aspect-ratio: 350/250;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: var(--transit-default);
  transition: var(--transit-default);
}
:where(.case-item__link:hover) .case-item__thumb img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.case-item__ttl {
  font-size: 2.2rem;
  line-height: 1.6;
  font-family: var(--font-shippori-sb);
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .case-item__ttl {
    font-size: 2rem;
    margin-top: 1rem;
  }
}

.case-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 2.8rem;
}
@media screen and (max-width: 767px) {
  .case-meta {
    gap: 1.4rem;
  }
}
.case-meta__cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem 0.7rem;
}
@media screen and (max-width: 767px) {
  .case-meta__cats {
    gap: 0.4rem 0.5rem;
  }
}
.case-meta__cat {
  min-width: 10.2rem;
  height: 3.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  padding: 0 1rem;
  border: 1px solid var(--color-black);
}
@media screen and (max-width: 767px) {
  .case-meta__cat {
    min-width: 8.4rem;
    height: 3rem;
  }
}
.case-meta__date {
  position: relative;
  font-size: 2rem;
  font-family: var(--font-montserrat-m);
  padding-left: 3.2rem;
}
@media screen and (max-width: 767px) {
  .case-meta__date {
    font-size: 1.9rem;
    padding-left: 3rem;
  }
}
.case-meta__date::before {
  content: "";
  background: url(../images/top/case_icon.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 2rem;
  aspect-ratio: 23/22;
}
@media screen and (max-width: 767px) {
  .case-meta__date::before {
    width: 1.8rem;
  }
}
:where(.top-case__featured) .case-meta__date {
  font-size: 2.1rem;
  padding-left: 3.5rem;
}
@media screen and (max-width: 767px) {
  :where(.top-case__featured) .case-meta__date {
    font-size: 1.9rem;
    padding-left: 3rem;
  }
}
:where(.top-case__featured) .case-meta__date::before {
  width: 2.2rem;
}
@media screen and (max-width: 767px) {
  :where(.top-case__featured) .case-meta__date::before {
    width: 1.8rem;
  }
}

/*--------------------------------
	求人情報ページ
--------------------------------*/
.message {
  padding: 9rem 0 17rem;
}
@media screen and (max-width: 767px) {
  .message {
    padding: 9.5rem 0 7.5rem;
  }
}
.message .sec-ttl {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .message .sec-ttl {
    margin-bottom: 3.5rem;
  }
}
.message__inner {
  max-width: 145rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .message__inner {
    width: calc(100% - 12vw);
  }
}
.message__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17.1rem;
}
@media screen and (max-width: 767px) {
  .message__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2rem;
  }
}
.message__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 9rem;
}
@media screen and (max-width: 767px) {
  .message__content {
    padding-top: 0;
  }
}
.message__img {
  width: 107.5rem;
  margin-right: -24rem;
}
@media screen and (max-width: 1919px) {
  .message__img {
    margin-right: calc(50% - 50vw);
  }
}
@media screen and (max-width: 767px) {
  .message__img {
    width: calc(100% + 12vw);
    margin-left: -6vw;
    margin-right: 0;
  }
}

.our-culture {
  background-color: var(--color-green);
  padding: 18.6rem 0;
}
@media screen and (max-width: 767px) {
  .our-culture {
    padding: 7rem 0 7.5rem;
  }
}
.our-culture .sec-ttl {
  color: var(--color-white);
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .our-culture .sec-ttl {
    margin-bottom: 4rem;
  }
}
.our-culture .sec-ttl__en {
  color: var(--color-white);
}
.our-culture .fade-slider .slide-img {
  border-radius: var(--radius-xs);
}
@media screen and (max-width: 1919px) {
  .our-culture .fade-slider .slide-img {
    border-top-right-radius: var(--radius-xs);
    border-top-left-radius: 0;
    border-bottom-right-radius: var(--radius-xs);
    border-bottom-left-radius: 0;
  }
}
@media screen and (max-width: 767px) {
  .our-culture .fade-slider .slide-img {
    border-radius: var(--radius-xs-sp);
  }
}
.our-culture__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 18.6rem;
}
@media screen and (max-width: 767px) {
  .our-culture__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 7rem;
  }
}
.our-culture__slider {
  width: 80.5rem;
  margin-left: -12.2rem;
}
@media screen and (max-width: 1919px) {
  .our-culture__slider {
    margin-left: calc(50% - 50vw);
  }
}
@media screen and (max-width: 767px) {
  .our-culture__slider {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .our-culture__content {
    width: 100%;
  }
}
.our-culture__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.2rem;
}
@media screen and (max-width: 767px) {
  .our-culture__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
  }
}
.our-culture__item {
  width: 39rem;
  height: 53.6rem;
  background-color: var(--color-green2);
  border-radius: var(--radius-md);
  color: var(--color-white);
  padding: 2.4rem;
}
@media screen and (max-width: 767px) {
  .our-culture__item {
    max-width: 35rem;
    width: 100%;
    height: auto;
    border-radius: var(--radius-md-sp);
    padding: 2.4rem 2.4rem 5.5rem;
  }
}
.our-culture__num {
  font-size: 2rem;
  line-height: 1;
  font-family: var(--font-montserrat-r);
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .our-culture__num {
    font-size: 1.6rem;
    margin-bottom: 2.3rem;
  }
}
.our-culture__inner {
  padding: 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .our-culture__inner {
    padding: 0 2rem;
  }
}
.our-culture__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 18rem;
  aspect-ratio: 1/1;
  border-radius: var(--radius-full);
  background-color: #20686f;
  margin: 0 auto 5.5rem;
}
@media screen and (max-width: 767px) {
  .our-culture__icon {
    width: 13.8rem;
    margin-bottom: 2.8rem;
  }
}
:where(.our-culture__item:nth-child(1)) .our-culture__icon img {
  width: 8.7rem;
}
@media screen and (max-width: 767px) {
  :where(.our-culture__item:nth-child(1)) .our-culture__icon img {
    width: 6.3rem;
  }
}
:where(.our-culture__item:nth-child(2)) .our-culture__icon img {
  width: 9.3rem;
}
@media screen and (max-width: 767px) {
  :where(.our-culture__item:nth-child(2)) .our-culture__icon img {
    width: 7.3rem;
  }
}
.our-culture__ttl {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 2.8rem;
}
@media screen and (max-width: 767px) {
  .our-culture__ttl {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

.staff {
  background-color: var(--color-gray);
  padding-top: 18.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .staff {
    padding-top: 7rem;
  }
}
.staff .sec-ttl {
  margin-bottom: 12.5rem;
}
@media screen and (max-width: 767px) {
  .staff .sec-ttl {
    margin-bottom: 7rem;
  }
}
.staff__inner {
  max-width: 138rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .staff__inner {
    width: calc(100% - 12vw);
  }
}
.staff__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 37.3rem));
  gap: 12.3rem 11.8rem;
}
@media screen and (max-width: 767px) {
  .staff__list {
    display: none;
  }
}
.staff__bottom-slider {
  margin-top: 27.2rem;
}
@media screen and (max-width: 767px) {
  .staff__bottom-slider {
    margin-top: 12rem;
  }
}

.staff-item {
  position: relative;
  height: 53rem;
}
@media screen and (max-width: 767px) {
  .staff-item {
    width: 22.8rem;
    height: 32.3rem;
    margin-right: 5.5rem;
  }
}
.staff-item__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid var(--color-gray2);
  border-radius: var(--radius-xs);
}
.staff-item__name {
  position: absolute;
  top: -4.5rem;
  right: 3.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 5.5rem;
  background-color: var(--color-white);
  border: 0.5px solid var(--color-black2);
  padding: 2rem 0 0.3rem;
}
@media screen and (max-width: 767px) {
  .staff-item__name {
    top: -2.8rem;
    right: 2.5rem;
    width: 4.6rem;
    padding: 1.2rem 0 0.2rem;
  }
}
.staff-item__name span {
  font-size: 3.2rem;
  letter-spacing: 0.55em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .staff-item__name span {
    font-size: 2.2rem;
    letter-spacing: 0.45em;
  }
}
.staff-item__job {
  position: absolute;
  top: -4.5rem;
  right: -2.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.4rem;
  width: 5.5rem;
  background-color: var(--color-green2);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
  padding: 2rem 0 1.5rem;
}
@media screen and (max-width: 767px) {
  .staff-item__job {
    top: -2.8rem;
    right: -2rem;
    width: 4.1rem;
    gap: 1rem;
    padding: 1.2rem 0 0.7rem;
  }
}
.staff-item__job-icon {
  width: 1.8rem;
}
@media screen and (max-width: 767px) {
  .staff-item__job-icon {
    width: 1.6rem;
  }
}
.staff-item__job-name {
  font-size: 1.9rem;
  color: var(--color-white);
  letter-spacing: 0.32em;
  font-family: var(--font-shippori-sb);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .staff-item__job-name {
    font-size: 1.7rem;
  }
}

.staff-slider {
  display: none;
}
@media screen and (max-width: 767px) {
  .staff-slider {
    display: block;
    position: relative;
  }
}
.staff-slider .swiper-scrollbar {
  position: absolute;
  bottom: -4.5rem !important;
  left: 0 !important;
  max-width: 35rem;
  width: 100%;
  height: 0.3rem;
  inset: auto;
  background: #d6d6d6;
  border-radius: 0;
}
.staff-slider .swiper-scrollbar-drag {
  background: #838383;
  border-radius: 0;
  cursor: pointer;
}
.staff-slider__nav {
  position: absolute;
  top: -13rem;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.8rem;
}
.staff-slider__prev, .staff-slider__next {
  position: relative;
  width: 5.8rem;
  aspect-ratio: 1/1;
  background-color: var(--color-black);
  border-radius: var(--radius-full);
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.staff-slider__prev::before, .staff-slider__next::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 1.1rem;
  aspect-ratio: 1/1;
  border-top: 1.5px solid var(--color-white);
  border-right: 1.5px solid var(--color-white);
}
.staff-slider__prev::before {
  right: 2.1rem;
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
}
.staff-slider__next::before {
  left: 2.1rem;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.staff-slider .swiper-button-disabled {
  opacity: 0.1;
}

.overview {
  background-color: var(--color-black2);
  padding: 28.5rem 0 25.8rem;
}
@media screen and (max-width: 767px) {
  .overview {
    padding: 7rem 0;
  }
}
.overview .sec-ttl {
  color: var(--color-white);
}
.overview .sec-ttl__en {
  color: var(--color-white);
}
.overview__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 17.8rem;
}
@media screen and (max-width: 767px) {
  .overview__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
  }
}
.overview__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  grid-template-rows: 35.6rem 33.4rem;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .overview__list {
    grid-template-columns: repeat(11, 1fr);
    grid-template-rows: 16.1rem 16.1rem 12.2rem;
    gap: 0.7rem;
  }
}
.overview__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2.8rem 3.8rem 4.2rem 3.8rem;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: var(--color-white);
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .overview__item {
    padding: 1.3rem 1.5rem;
    border-radius: var(--radius-xs);
  }
}
.overview__item--1 {
  grid-column: span 6;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .overview__item--1 {
    grid-column: span 7;
  }
}
.overview__item--1::before {
  background: url(../images/recruit/overview1.svg) no-repeat center;
  background-size: contain;
  bottom: 0;
  left: 0;
  width: 31.4rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .overview__item--1::before {
    width: 14.3rem;
  }
}
.overview__item--2 {
  grid-column: span 4;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.overview__item--2::before {
  background: url(../images/recruit/overview2.svg) no-repeat center;
  background-size: contain;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 28rem;
  aspect-ratio: 2/1;
}
@media screen and (max-width: 767px) {
  .overview__item--2::before {
    width: 11rem;
  }
}
.overview__item--3 {
  grid-column: span 4;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .overview__item--3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
}
.overview__item--3::before {
  background: url(../images/recruit/overview3-2.svg) no-repeat center;
  background-size: contain;
  top: 4rem;
  right: -3.5rem;
  width: 30rem;
  aspect-ratio: 2/1;
}
@media screen and (max-width: 767px) {
  .overview__item--3::before {
    top: 1.5rem;
    right: -1.3rem;
    width: 12.8rem;
  }
}
.overview__item--4 {
  grid-column: span 7;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.overview__item--4::before {
  background: url(../images/recruit/overview4.svg) no-repeat center;
  background-size: contain;
  bottom: 0;
  right: 0;
  width: 26rem;
  aspect-ratio: 261/305;
}
@media screen and (max-width: 767px) {
  .overview__item--4::before {
    bottom: 0;
    right: 2.2rem;
    width: 10rem;
  }
}
.overview__item--5 {
  grid-column: span 7;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .overview__item--5 {
    grid-column: span 11;
  }
}
.overview__item--5::before {
  background: url(../images/recruit/overview5.svg) no-repeat center;
  background-size: contain;
  bottom: 0.5rem;
  right: 0;
  width: 24rem;
  aspect-ratio: 239/243;
}
@media screen and (max-width: 767px) {
  .overview__item--5::before {
    bottom: 0;
    width: 10.5rem;
  }
}
.overview__item::before {
  content: "";
  position: absolute;
  z-index: -1;
}
.overview__label {
  font-size: 2rem;
  line-height: 1.4;
  font-family: var(--font-notosans-m);
}
@media screen and (max-width: 767px) {
  .overview__label {
    font-size: 1.5rem;
  }
}
:where(.overview__item--2) .overview__label {
  text-align: center;
}
.overview__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
:where(.overview__item--1) .overview__value {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  :where(.overview__item--1) .overview__value {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
:where(.overview__item--2) .overview__value {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 1.5rem;
  margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  :where(.overview__item--2) .overview__value {
    width: 9rem;
    margin: 0.5rem auto 0;
  }
}
@media screen and (max-width: 767px) {
  :where(.overview__item--3) .overview__value {
    margin-left: 4.7rem;
  }
}
:where(.overview__item--4) .overview__value {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-right: 16rem;
}
@media screen and (max-width: 767px) {
  :where(.overview__item--4) .overview__value {
    width: 14.2rem;
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
:where(.overview__item--5) .overview__value {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-right: 21.5rem;
}
@media screen and (max-width: 767px) {
  :where(.overview__item--5) .overview__value {
    width: 16.8rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-left: 4.5rem;
    margin-right: 0;
  }
}
.overview__value p {
  font-size: 2.1rem;
  font-family: var(--font-notosans-m);
}
@media screen and (max-width: 767px) {
  .overview__value p {
    font-size: 1.5rem;
  }
}
:where(.overview__item--2) .overview__value p {
  margin-top: 6.5rem;
}
@media screen and (max-width: 767px) {
  :where(.overview__item--2) .overview__value p {
    margin-top: 4.5rem;
    margin-left: -1.5rem;
  }
}
.overview__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
:where(.overview__item--4) .overview__row span {
  font-size: 13.7rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: var(--font-montserrat-mi);
}
@media screen and (max-width: 767px) {
  :where(.overview__item--4) .overview__row span {
    font-size: 6rem;
  }
}
.overview__num {
  line-height: 0.95;
  letter-spacing: 0.04em;
  font-family: var(--font-montserrat-mi);
}
:where(.overview__item--1) .overview__num {
  font-size: 19.3rem;
}
@media screen and (max-width: 767px) {
  :where(.overview__item--1) .overview__num {
    font-size: 8.6rem;
  }
}
:where(.overview__item--2) .overview__num {
  font-size: 12.4rem;
}
@media screen and (max-width: 767px) {
  :where(.overview__item--2) .overview__num {
    font-size: 5.2rem;
  }
}
:where(.overview__item--4) .overview__num {
  font-size: 13.7rem;
}
@media screen and (max-width: 767px) {
  :where(.overview__item--4) .overview__num {
    font-size: 6rem;
  }
}
:where(.overview__item--5) .overview__num {
  font-size: 16.5rem;
}
@media screen and (max-width: 767px) {
  :where(.overview__item--5) .overview__num {
    font-size: 7rem;
  }
}
.overview__txt {
  font-size: 10.6rem;
  line-height: 1.15;
  font-family: var(--font-notosans-m);
}
@media screen and (max-width: 767px) {
  .overview__txt {
    font-size: 5.8rem;
  }
}
.overview__txt2 {
  position: absolute;
}
:where(.overview__item--1) .overview__txt2 {
  top: 1.4rem;
  left: 9rem;
}
@media screen and (max-width: 767px) {
  :where(.overview__item--1) .overview__txt2 {
    top: -1.5rem;
    left: auto;
    right: 14.2rem;
  }
}

.benefit {
  background-color: var(--color-black2);
  padding-bottom: 50rem;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .benefit {
    padding-bottom: 24rem;
  }
}
.benefit .sec-ttl {
  color: var(--color-white);
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .benefit .sec-ttl {
    margin-bottom: 4rem;
  }
}
.benefit .sec-ttl__en {
  color: var(--color-white);
}
.benefit .fade-slider {
  width: 40rem;
}
@media screen and (max-width: 767px) {
  .benefit .fade-slider {
    width: 100%;
  }
}
.benefit .fade-slider .slide-img {
  border-radius: var(--radius-xs);
}
@media screen and (max-width: 767px) {
  .benefit .fade-slider .slide-img {
    border-radius: var(--radius-xs-sp);
  }
}
.benefit .fade-slider .swiper-pagination-bullet {
  background-color: #454545;
}
.benefit .fade-slider .swiper-pagination-bullet-active {
  background-color: var(--color-white);
}
.benefit__inner {
  max-width: 125.3rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .benefit__inner {
    width: calc(100% - 12vw);
  }
}
.benefit__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17.6rem;
}
@media screen and (max-width: 767px) {
  .benefit__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 5rem;
  }
}
.benefit__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
.benefit__list {
  font-size: 2.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .benefit__list {
    font-size: 2rem;
  }
}
.benefit__list-item {
  padding: 2.5rem 0.5rem;
}
@media screen and (max-width: 767px) {
  .benefit__list-item {
    padding: 2rem 0;
  }
}
.benefit__list-item + .benefit__list-item {
  border-top: 0.5px solid var(--color-white);
}
.benefit__sub-list {
  display: grid;
  grid-template-columns: repeat(2, -webkit-max-content);
  grid-template-columns: repeat(2, max-content);
  gap: 0 4rem;
  font-size: 1.9rem;
  margin-top: 1rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .benefit__sub-list {
    gap: 0 3.5rem;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 575px) {
  .benefit__sub-list {
    gap: 0 2.5rem;
  }
}

.open-roles {
  position: relative;
  margin-top: -22rem;
}
@media screen and (max-width: 767px) {
  .open-roles {
    margin-top: -18rem;
  }
}
.open-roles::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color-gray);
  z-index: -1;
}
.open-roles .sec-ttl {
  color: var(--color-white);
  margin-bottom: 13rem;
}
@media screen and (max-width: 767px) {
  .open-roles .sec-ttl {
    margin-bottom: 3rem;
  }
}
.open-roles .sec-ttl__en {
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .open-roles .sec-btn {
    width: 23rem;
    height: 5.9rem;
  }
}
@media screen and (max-width: 767px) {
  .open-roles .sec-btn__arrow {
    top: 2.2rem;
  }
}
.open-roles__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14rem;
}
@media screen and (max-width: 767px) {
  .open-roles__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 4.5rem;
  }
}
.open-roles__img {
  width: 116.4rem;
  aspect-ratio: 1746/calc(782 * var(--parallax-ratio));
  margin-left: -20rem;
}
@media screen and (max-width: 1919px) {
  .open-roles__img {
    margin-left: calc(50% - 50vw);
  }
}
@media screen and (max-width: 767px) {
  .open-roles__img {
    width: 100%;
    aspect-ratio: 700/calc(332 * var(--parallax-ratio));
    margin-left: 0;
  }
}
.open-roles__content {
  padding-top: 3rem;
}
@media screen and (max-width: 767px) {
  .open-roles__content {
    width: 100%;
    padding-top: 0;
  }
}
.open-roles__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .open-roles__btn-wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
}

.requirements {
  background-color: var(--color-gray);
  padding-top: 14rem;
}
@media screen and (max-width: 767px) {
  .requirements {
    padding-top: 7rem;
  }
}
.requirements .sec-ttl {
  text-align: center;
  margin-bottom: 8.2rem;
}
@media screen and (max-width: 767px) {
  .requirements .sec-ttl {
    margin-bottom: 4rem;
  }
}
.requirements__table-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6.5rem;
}
@media screen and (max-width: 767px) {
  .requirements__table-wrap {
    gap: 2rem;
  }
}
.requirements__table {
  position: relative;
  padding: 8.5rem 20.5rem 10.6rem;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
}
@media screen and (max-width: 767px) {
  .requirements__table {
    padding: 6.5rem 6vw 7.5rem;
    border-radius: var(--radius-md);
  }
}
.requirements__table .sec-btn {
  margin: 7.8rem auto 0;
  padding-left: 10rem;
}
@media screen and (max-width: 767px) {
  .requirements__table .sec-btn {
    margin-top: 4.5rem;
    padding-left: 6.7rem;
  }
}
.requirements__table .sec-btn__arrow {
  background: url(../images/top/contact_send_icon.svg) no-repeat center;
  background-size: contain;
  right: 8.8rem;
  width: 1.9rem;
  border: none;
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
  aspect-ratio: 1/1;
  mix-blend-mode: difference;
}
@media screen and (max-width: 767px) {
  .requirements__table .sec-btn__arrow {
    right: 6rem;
    width: 1.6rem;
  }
}
.requirements__table-tag {
  position: absolute;
  top: 0;
  left: 5.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 6rem;
  background-color: var(--color-black);
  padding: 8rem 0 3rem;
  -webkit-box-shadow: 0 0.3rem 0.3rem var(--color-shadow3);
          box-shadow: 0 0.3rem 0.3rem var(--color-shadow3);
}
@media screen and (max-width: 767px) {
  .requirements__table-tag {
    left: 2.5rem;
    width: 4.1rem;
    padding: 4.3rem 0 0.8rem;
  }
}
.requirements__table-tag::before {
  content: "";
  background: url(../images/recruit/staff_icon1.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 3rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2.4rem;
  aspect-ratio: 17/22;
}
@media screen and (max-width: 767px) {
  .requirements__table-tag::before {
    top: 1.2rem;
    width: 1.6rem;
  }
}
.requirements__table-tag span {
  font-size: 2.7rem;
  color: var(--color-white);
  letter-spacing: 0.32em;
  font-family: var(--font-shippori-sb);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .requirements__table-tag span {
    font-size: 1.7rem;
  }
}
.requirements__table-ttl {
  font-size: 2rem;
  font-family: var(--font-shippori-b);
  text-align: center;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .requirements__table-ttl {
    font-size: 1.9rem;
    margin-bottom: 4.5rem;
  }
}
.requirements__imgs {
  max-width: 192rem;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 18rem;
}
@media screen and (max-width: 767px) {
  .requirements__imgs {
    margin-top: 7.5rem;
  }
}
.requirements__img {
  border-radius: var(--radius-xs);
}
@media screen and (max-width: 767px) {
  .requirements__img {
    border-radius: var(--radius-xs-sp);
  }
}
.requirements__img--1 {
  width: 113.4rem;
  aspect-ratio: 2268/calc(1020 * var(--parallax-ratio));
}
@media screen and (max-width: 767px) {
  .requirements__img--1 {
    width: 60%;
    aspect-ratio: 516/calc(394 * var(--parallax-ratio));
  }
}
.requirements__img--2 {
  width: 72rem;
  aspect-ratio: 1440/calc(696 * var(--parallax-ratio));
}
@media screen and (max-width: 767px) {
  .requirements__img--2 {
    width: 39%;
    aspect-ratio: 336/calc(290 * var(--parallax-ratio));
  }
}
.requirements__empty-txt {
  text-align: center;
}

.job-application-form {
  background-color: #c5c0b9;
  margin-top: -22rem;
  padding: 40rem 0 27rem;
}
@media screen and (max-width: 767px) {
  .job-application-form {
    margin-top: -0.3rem;
    padding: 4.5rem 0 0;
  }
}
.job-application-form .sec-ttl {
  text-align: center;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 767px) {
  .job-application-form .sec-ttl {
    margin-bottom: 1rem;
  }
}
.job-application-form .form textarea {
  height: 20.5rem;
}
@media screen and (max-width: 767px) {
  .job-application-form .form textarea {
    height: 18rem;
  }
}
.job-application-form__content {
  background-color: var(--color-white);
  padding: 16rem 0;
  border-radius: var(--radius-lg);
}
@media screen and (max-width: 767px) {
  .job-application-form__content {
    width: calc(100% + 12vw);
    margin-left: -6vw;
    padding: 7rem 6vw 20rem;
    border-radius: 1.5rem 1.5rem 0 0;
  }
}

/*--------------------------------
	施工事例個別ページ
--------------------------------*/
.case-detail {
  padding: 26rem 0 6rem;
}
@media screen and (max-width: 767px) {
  .case-detail {
    padding: 15rem 0 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .case-detail .case-meta__date {
    font-size: 1.6rem;
    padding-left: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .case-detail .case-meta__date::before {
    width: 1.6rem;
    top: 0.6rem;
  }
}
@media screen and (max-width: 767px) {
  .case-detail .case-meta__cat {
    font-size: 1.4rem;
    min-width: 7.5rem;
    height: 2.6rem;
  }
}
.case-detail__inner {
  max-width: 125rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .case-detail__inner {
    width: calc(100% - 12vw);
  }
}
.case-detail__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .case-detail__header {
    margin-bottom: 2.5rem;
  }
}
.case-detail__ttl {
  font-size: 4.3rem;
  line-height: 1.5;
  font-family: var(--font-shippori-sb);
}
@media screen and (max-width: 767px) {
  .case-detail__ttl {
    font-size: 2.5rem;
  }
}
.case-detail__content h2 {
  font-size: 3.5rem;
  font-family: var(--font-shippori-b);
}
@media screen and (max-width: 767px) {
  .case-detail__content h2 {
    font-size: 2.5rem;
  }
}
.case-detail__content h3 {
  font-size: 3rem;
  font-family: var(--font-shippori-b);
}
@media screen and (max-width: 767px) {
  .case-detail__content h3 {
    font-size: 2.3rem;
  }
}
.case-detail__content h4 {
  font-size: 2.5rem;
  font-family: var(--font-shippori-b);
}
@media screen and (max-width: 767px) {
  .case-detail__content h4 {
    font-size: 2.1rem;
  }
}
.case-detail__content img {
  display: block;
  width: auto;
}
.case-detail__content .aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.case-detail__content .alignright {
  margin-left: auto;
}
.case-detail__slider {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7.5rem;
  height: 70rem;
  margin-bottom: 8.5rem;
}
@media screen and (max-width: 767px) {
  .case-detail__slider {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4.5vw;
    height: auto;
    margin-bottom: 5rem;
  }
}
.case-detail__slider .swiper-button-prev,
.case-detail__slider .swiper-button-next {
  width: 8.1rem;
  height: auto;
  aspect-ratio: 1/1;
  background-color: var(--color-black);
  border: 1px solid var(--color-black);
  border-radius: var(--radius-full);
  -webkit-transition: var(--transit-default);
  transition: var(--transit-default);
}
@media screen and (max-width: 767px) {
  .case-detail__slider .swiper-button-prev,
  .case-detail__slider .swiper-button-next {
    top: 31vw;
    width: 11vw;
  }
}
.case-detail__slider .swiper-button-prev:hover,
.case-detail__slider .swiper-button-next:hover {
  background-color: var(--color-white);
}
.case-detail__slider .swiper-button-prev:hover::before,
.case-detail__slider .swiper-button-next:hover::before {
  border-color: var(--color-black);
}
.case-detail__slider .swiper-button-prev::before,
.case-detail__slider .swiper-button-next::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 1.2rem;
  aspect-ratio: 1/1;
  border-top: 1.5px solid var(--color-white);
  border-right: 1.5px solid var(--color-white);
  -webkit-transition: var(--transit-default);
  transition: var(--transit-default);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .case-detail__slider .swiper-button-prev::before,
  .case-detail__slider .swiper-button-next::before {
    width: 1.7vw;
  }
}
.case-detail__slider .swiper-button-prev svg,
.case-detail__slider .swiper-button-next svg {
  display: none;
}
.case-detail__slider .swiper-button-prev {
  left: -4rem;
}
@media screen and (max-width: 767px) {
  .case-detail__slider .swiper-button-prev {
    left: -5.2vw;
  }
}
.case-detail__slider .swiper-button-prev::before {
  left: 3.6rem;
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
}
@media screen and (max-width: 767px) {
  .case-detail__slider .swiper-button-prev::before {
    left: 4.8vw;
  }
}
.case-detail__slider .swiper-button-next {
  right: 20rem;
}
@media screen and (max-width: 767px) {
  .case-detail__slider .swiper-button-next {
    right: -5.2vw;
  }
}
.case-detail__slider .swiper-button-next::before {
  right: 3.6rem;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .case-detail__slider .swiper-button-next::before {
    right: 4.8vw;
  }
}
.case-detail__slider-txt {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 3rem 4rem;
  font-size: 2.4rem;
  color: var(--color-white);
  line-height: 1.5;
  font-family: var(--font-shippori-b);
  word-break: break-word;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .case-detail__slider-txt {
    padding: 3vw;
    font-size: 1.9rem;
  }
}
.case-detail .main-slider {
  width: 86%;
  height: 100%;
  border-radius: var(--radius-xs);
}
@media screen and (max-width: 767px) {
  .case-detail .main-slider {
    width: 100%;
    height: 62.5vw;
    border-radius: var(--radius-xs-sp);
  }
}
.case-detail .main-slider .swiper-slide::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.5)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
  pointer-events: none;
}
.case-detail .main-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.case-detail .thumb-slider {
  width: 14%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .case-detail .thumb-slider {
    width: 100%;
    height: 14vw;
  }
}
.case-detail .thumb-slider .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .case-detail .thumb-slider .swiper-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.case-detail .thumb-slider .swiper-slide {
  cursor: pointer;
  opacity: 0.5;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.case-detail .thumb-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius-xs);
}
@media screen and (max-width: 767px) {
  .case-detail .thumb-slider .swiper-slide img {
    border-radius: var(--radius-xs-sp);
  }
}
.case-detail .thumb-slider .swiper-slide-thumb-active {
  opacity: 1;
}

.other-cases {
  padding: 10rem 0 32rem;
}
@media screen and (max-width: 767px) {
  .other-cases {
    padding: 5rem 0 20rem;
  }
}
.other-cases .sec-ttl {
  text-align: center;
  margin-bottom: 11rem;
}
@media screen and (max-width: 767px) {
  .other-cases .sec-ttl {
    margin-bottom: 6rem;
  }
}
.other-cases .sec-btn {
  margin: 0 auto;
}
.other-cases .case-list {
  margin-bottom: 11rem;
}
@media screen and (max-width: 767px) {
  .other-cases .case-list {
    margin-bottom: 6rem;
  }
}

/*--------------------------------
	お問い合わせセクション
--------------------------------*/
.contact {
  position: relative;
  height: 99.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../images/header/contact_bg.png) no-repeat center;
  color: var(--color-white);
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .contact {
    height: auto;
    background: url(../images/header/sp/contact_bg_sp.png) no-repeat center;
    background-size: cover;
    padding: 7.5rem 0;
  }
}
.contact .sec-ttl__en {
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .contact .sec-ttl {
    text-align: center;
  }
}
.contact .img-wrap {
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact .img-wrap {
    width: 100%;
  }
}
.contact .img-wrap::before {
  content: "";
  background: url(../images/header/contact_txt.png) no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: -4.5rem;
  left: -18.3rem;
  width: 37rem;
  aspect-ratio: 556/228;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .contact .img-wrap::before {
    bottom: -4rem;
    left: -2rem;
    width: 20rem;
  }
}
.contact__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14.1rem;
}
@media screen and (max-width: 767px) {
  .contact__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 6.5rem;
  }
}
.contact__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 6.8rem;
  margin-bottom: 9rem;
}
@media screen and (max-width: 767px) {
  .contact__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3rem;
    margin-bottom: 4.5rem;
  }
}
.contact__header p {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .contact__header p {
    text-align: center;
  }
}
.contact__tel {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 93.6rem;
  height: 19.4rem;
  background-color: rgba(183, 183, 183, 0.24);
  border-radius: var(--radius-md);
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .contact__tel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4.5rem;
    width: 35rem;
    height: 27.7rem;
    margin: 0 auto;
    border-radius: var(--radius-sm);
  }
}
.contact__tel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0.5px;
  height: 8.5rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .contact__tel::before {
    width: 27.6rem;
    height: 0.5px;
  }
}
.contact__tel p {
  font-size: 1.7rem;
}
.contact__tel > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .contact__tel-content {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media screen and (max-width: 767px) {
  .contact__tel-content p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .contact__tel-info {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.contact__tel-ttl {
  font-size: 3rem;
  margin-bottom: 0.3rem;
}
@media screen and (max-width: 767px) {
  .contact__tel-ttl {
    font-size: 2.3rem;
  }
}
.contact__tel-num {
  position: relative;
  font-size: 4rem;
  color: var(--color-white);
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding-left: 5rem;
}
@media screen and (max-width: 767px) {
  .contact__tel-num {
    font-size: 2.8rem;
    padding-left: 3.8rem;
  }
}
.contact__tel-num::before {
  content: "";
  background: url(../images/top/contact_tel_icon.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 1.6rem;
  left: 0;
  width: 3.5rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .contact__tel-num::before {
    top: 1rem;
    width: 2.7rem;
  }
}
.contact__img {
  width: 40.3rem;
  aspect-ratio: 842/calc(1268 * var(--parallax-ratio));
}
@media screen and (max-width: 767px) {
  .contact__img {
    width: 100%;
    aspect-ratio: 700/calc(325 * var(--parallax-ratio));
    height: auto;
  }
}

/*--------------------------------
	404ページ
--------------------------------*/
.sec-404 {
  padding: 30rem 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec-404 {
    padding: 15rem 0;
    text-align: left;
  }
}
.sec-404__ttl {
  font-size: 3rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .sec-404__ttl {
    font-size: 2.2rem;
    margin-bottom: 4rem;
  }
}
.sec-404 a {
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */