html {
  background: #FFF;
}

body {
  color: #262120;
  background-color: #FFF;
  background-image: linear-gradient(rgba(233, 226, 224, 0.4) 1px, transparent 1px), linear-gradient(90deg, rgba(233, 226, 224, 0.4) 1px, transparent 1px);
  background-size: 48px 48px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 15px;
  }
}

a {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

body.is-fixed {
  overflow: hidden;
}

.opening {
  position: fixed;
  inset: 0;
  z-index: 9999;
  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;
  background-color: #FFF;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 1.3s ease, visibility 1.3s ease;
  transition: opacity 1.3s ease, visibility 1.3s ease;
}
.opening.is-logo-hide .opening__brand {
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.opening.is-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.opening__brand {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  width: min(160px, 42vw);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
.opening__icon {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 64px;
          flex: 0 0 64px;
  width: 64px;
  height: 64px;
}
.opening__icon-line, .opening__icon-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.opening__icon-line {
  overflow: visible;
  fill: none;
  opacity: 0;
  -webkit-animation: openingIconLineIn 0.01s linear 1.2s forwards, openingIconLineOut 0.7s ease 2.65s forwards;
          animation: openingIconLineIn 0.01s linear 1.2s forwards, openingIconLineOut 0.7s ease 2.65s forwards;
}
.opening__icon-path {
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  -webkit-animation: openingDraw 1.45s ease 1.2s forwards;
          animation: openingDraw 1.45s ease 1.2s forwards;
}
.opening__icon-path--blue {
  stroke: #008ED2;
}
.opening__icon-path--red {
  stroke: #EB4129;
  -webkit-animation-delay: 1.38s;
          animation-delay: 1.38s;
}
.opening__icon-fill {
  opacity: 0;
  -webkit-transform: scale(0.96);
          transform: scale(0.96);
  -webkit-animation: openingIconFill 0.7s ease 2.55s forwards;
          animation: openingIconFill 0.7s ease 2.55s forwards;
}
.opening__name {
  width: 100%;
  fill: #262120;
}
.opening__name path {
  opacity: 0;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-animation: openingName 0.75s ease forwards;
          animation: openingName 0.75s ease forwards;
}
.opening__name path:nth-child(1) {
  -webkit-animation-delay: 2.95s;
          animation-delay: 2.95s;
}
.opening__name path:nth-child(2) {
  -webkit-animation-delay: 3.11s;
          animation-delay: 3.11s;
}
.opening__name path:nth-child(3) {
  -webkit-animation-delay: 3.27s;
          animation-delay: 3.27s;
}
.opening__name path:nth-child(4) {
  -webkit-animation-delay: 3.43s;
          animation-delay: 3.43s;
}
.opening__name path:nth-child(5) {
  -webkit-animation-delay: 3.59s;
          animation-delay: 3.59s;
}

@-webkit-keyframes openingDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes openingDraw {
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes openingIconLineIn {
  to {
    opacity: 1;
  }
}
@keyframes openingIconLineIn {
  to {
    opacity: 1;
  }
}
@-webkit-keyframes openingIconLineOut {
  to {
    opacity: 0;
  }
}
@keyframes openingIconLineOut {
  to {
    opacity: 0;
  }
}
@-webkit-keyframes openingIconFill {
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes openingIconFill {
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes openingName {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes openingName {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
main {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 60px;
  }
}

.section {
  padding: 140px 0;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 80px 0;
  }
}

.section__inner {
  width: min(1500px, 100% - 64px);
  max-width: none;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .section__inner {
    width: calc(100% - 32px);
  }
}

.section-title {
  position: relative;
  display: inline-block;
  padding-left: 14px;
  color: #262120;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
.section-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #EB4129;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: max(18px, 3.125vw);
  }
}

.text-reveal .text-reveal__mask {
  display: inline-block;
  overflow: hidden;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: 0;
  vertical-align: baseline;
}
.text-reveal .text-reveal__mask + .text-reveal__mask {
  margin-left: var(--text-reveal-letter-spacing, 0.02em);
}
.text-reveal .text-reveal__char {
  display: inline-block;
  opacity: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: 0;
  -webkit-transform: translateY(1.1em);
          transform: translateY(1.1em);
  -webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s ease, -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-transition-delay: calc(var(--text-reveal-index) * 0.045s);
          transition-delay: calc(var(--text-reveal-index) * 0.045s);
}
.text-reveal.is-active .text-reveal__char {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-fadein {
  opacity: 0;
  -webkit-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}

.js-fadein.show {
  opacity: 1;
}

.scroll-reveal {
  --scroll-reveal-delay: calc(var(--scroll-reveal-index, 0) * 0.12s);
}

.scroll-reveal--work {
  opacity: 0;
  -webkit-transform: translateY(48px);
          transform: translateY(48px);
  -webkit-transition: opacity 0.8s ease var(--scroll-reveal-delay), -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--scroll-reveal-delay);
  transition: opacity 0.8s ease var(--scroll-reveal-delay), -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--scroll-reveal-delay);
  transition: opacity 0.8s ease var(--scroll-reveal-delay), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--scroll-reveal-delay);
  transition: opacity 0.8s ease var(--scroll-reveal-delay), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--scroll-reveal-delay), -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--scroll-reveal-delay);
}
.scroll-reveal--work .media__thumb {
  clip-path: inset(0 0 100% 0);
  -webkit-transition: clip-path 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--scroll-reveal-delay);
  transition: clip-path 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--scroll-reveal-delay);
}
.scroll-reveal--work .media__detail,
.scroll-reveal--work .media__title {
  opacity: 0;
  -webkit-transform: translateY(16px);
          transform: translateY(16px);
  -webkit-transition: opacity 0.7s ease calc(var(--scroll-reveal-delay) + 0.18s), -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--scroll-reveal-delay) + 0.18s);
  transition: opacity 0.7s ease calc(var(--scroll-reveal-delay) + 0.18s), -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--scroll-reveal-delay) + 0.18s);
  transition: opacity 0.7s ease calc(var(--scroll-reveal-delay) + 0.18s), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--scroll-reveal-delay) + 0.18s);
  transition: opacity 0.7s ease calc(var(--scroll-reveal-delay) + 0.18s), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--scroll-reveal-delay) + 0.18s), -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--scroll-reveal-delay) + 0.18s);
}
.scroll-reveal--work.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.scroll-reveal--work.is-show .media__thumb {
  clip-path: inset(0);
}
.scroll-reveal--work.is-show .media__detail,
.scroll-reveal--work.is-show .media__title {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.scroll-reveal--news {
  opacity: 0;
  -webkit-transform: translateY(28px);
          transform: translateY(28px);
  -webkit-transition: opacity 0.7s ease var(--scroll-reveal-delay), -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) var(--scroll-reveal-delay);
  transition: opacity 0.7s ease var(--scroll-reveal-delay), -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) var(--scroll-reveal-delay);
  transition: opacity 0.7s ease var(--scroll-reveal-delay), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) var(--scroll-reveal-delay);
  transition: opacity 0.7s ease var(--scroll-reveal-delay), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) var(--scroll-reveal-delay), -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) var(--scroll-reveal-delay);
}
.scroll-reveal--news .news__thumb {
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 0.8s cubic-bezier(0.22, 1, 0.36, 1) var(--scroll-reveal-delay);
  transition: clip-path 0.8s cubic-bezier(0.22, 1, 0.36, 1) var(--scroll-reveal-delay);
}
.scroll-reveal--news .news__body {
  opacity: 0;
  -webkit-transform: translateX(24px);
          transform: translateX(24px);
  -webkit-transition: opacity 0.7s ease calc(var(--scroll-reveal-delay) + 0.16s), -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--scroll-reveal-delay) + 0.16s);
  transition: opacity 0.7s ease calc(var(--scroll-reveal-delay) + 0.16s), -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--scroll-reveal-delay) + 0.16s);
  transition: opacity 0.7s ease calc(var(--scroll-reveal-delay) + 0.16s), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--scroll-reveal-delay) + 0.16s);
  transition: opacity 0.7s ease calc(var(--scroll-reveal-delay) + 0.16s), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--scroll-reveal-delay) + 0.16s), -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--scroll-reveal-delay) + 0.16s);
}
.scroll-reveal--news.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.scroll-reveal--news.is-show .news__thumb {
  clip-path: inset(0);
}
.scroll-reveal--news.is-show .news__body {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (max-width: 767px) {
  .scroll-reveal--news .news__thumb {
    clip-path: inset(0 0 100% 0);
  }
  .scroll-reveal--news .news__body {
    -webkit-transform: translateY(16px);
            transform: translateY(16px);
  }
  .scroll-reveal--news.is-show .news__thumb {
    clip-path: inset(0);
  }
  .scroll-reveal--news.is-show .news__body {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  margin-left: 4px;
  color: #262120;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#EB4129), to(#EB4129));
  background-image: linear-gradient(#EB4129, #EB4129);
  background-repeat: no-repeat;
  background-position: -2px 100%;
  background-size: 0 1px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  -webkit-transition: background-size 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-size 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-size 0.3s ease, transform 0.3s ease;
  transition: background-size 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  border: 1px solid transparent;
}
.btn::before {
  content: "";
  position: absolute;
  display: block;
  top: calc(50% - 2px);
  right: 9px;
  z-index: 1;
  width: 12px;
  height: 12px;
  background-color: #262120;
  mask: url("../img/arrow.svg") center/contain no-repeat;
  -webkit-mask: url("../img/arrow.svg") center/contain no-repeat;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  pointer-events: none;
}
.btn::after {
  content: "";
  display: inline-grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid #262120;
  background-color: #FFF;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.btn:hover {
  background-size: calc(100% - 36px) 1px;
}
.btn:hover::after {
  background-color: #EB4129;
  border: 1px solid #EB4129;
}
.btn:hover::before {
  background-color: #FFF;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  -webkit-box-shadow: 0 2px 12px rgba(125, 125, 125, 0.02);
          box-shadow: 0 2px 12px rgba(125, 125, 125, 0.02);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.header__inner {
  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;
  width: 100%;
  max-width: none;
  min-height: 80px;
  margin: 0 auto;
  padding: 20px 32px;
  -webkit-transition: width 0.3s ease, min-height 0.3s ease, padding 0.3s ease, border-radius 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: width 0.3s ease, min-height 0.3s ease, padding 0.3s ease, border-radius 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: width 0.3s ease, min-height 0.3s ease, padding 0.3s ease, border-radius 0.3s ease, box-shadow 0.3s ease;
  transition: width 0.3s ease, min-height 0.3s ease, padding 0.3s ease, border-radius 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media screen and (max-width: 1040px) {
  .header__inner {
    padding: 18px 24px;
  }
}
@media screen and (max-width: 767px) {
  .header__inner {
    min-height: 60px;
    padding: 12px 16px;
  }
}
.header__logo img {
  display: block;
  width: 149px;
  height: auto;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header__logo img {
    width: 116px;
  }
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  -webkit-transition: gap 0.3s ease, font-size 0.3s ease;
  transition: gap 0.3s ease, font-size 0.3s ease;
}
@media screen and (max-width: 1040px) {
  .header__nav {
    gap: 18px;
  }
}
@media screen and (max-width: 767px) {
  .header__nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    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-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 40px;
    width: 100%;
    max-width: none;
    height: 100vh;
    height: 100dvh;
    padding: 112px 24px max(48px, env(safe-area-inset-bottom));
    overflow-y: auto;
    background: #F4EDEC;
    font-size: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}
.header__link, .header__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 24px;
  font-weight: 500;
  line-height: 1;
}
.header__link {
  position: relative;
  border: 1px solid transparent;
}
.header__link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #EB4129;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.header__link:hover {
  color: #EB4129;
}
.header__link:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.header__button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 4px 4px 4px 16px;
  width: 120px;
  border-radius: 999px;
  color: #FFF;
  background: #262120;
  border: 1px solid #262120;
  -webkit-transition: background-color 0.6s ease, color 0.6s ease, border-color 0.6s ease, -webkit-transform 0.6s ease;
  transition: background-color 0.6s ease, color 0.6s ease, border-color 0.6s ease, -webkit-transform 0.6s ease;
  transition: background-color 0.6s ease, color 0.6s ease, border-color 0.6s ease, transform 0.6s ease;
  transition: background-color 0.6s ease, color 0.6s ease, border-color 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
.header__button::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 9px;
  z-index: 1;
  width: 10px;
  height: 10px;
  background-color: #262120;
  mask: url("../img/arrow.svg") center/contain no-repeat;
  -webkit-mask: url("../img/arrow.svg") center/contain no-repeat;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: background-color 0.6s ease;
  transition: background-color 0.6s ease;
  pointer-events: none;
}
.header__button::after {
  content: "";
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: #FFF;
  -webkit-transition: background-color 0.6s ease, -webkit-transform 0.6s ease;
  transition: background-color 0.6s ease, -webkit-transform 0.6s ease;
  transition: background-color 0.6s ease, transform 0.6s ease;
  transition: background-color 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
.header__button--red {
  background: #EB4129;
  border-color: #EB4129;
}
.header__button--red::after {
  color: #262120;
}
.header__button:hover {
  background-color: #FFF;
  color: #262120;
}
.header__open {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__open {
    display: block;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 36px;
            flex: 0 0 36px;
    width: 36px;
    height: 36px;
  }
}
.header.headerColorScroll {
  padding-top: 14px;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  pointer-events: none;
}
.header.headerColorScroll .header__inner {
  width: calc(100% - 64px);
  min-height: 72px;
  padding: 16px 32px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  -webkit-box-shadow: 0 4px 4px rgba(125, 125, 125, 0.2);
          box-shadow: 0 4px 4px rgba(125, 125, 125, 0.2);
  pointer-events: auto;
}
@media screen and (max-width: 1040px) {
  .header.headerColorScroll .header__inner {
    width: calc(100% - 48px);
    padding: 16px 16px;
  }
}
@media screen and (max-width: 767px) {
  .header.headerColorScroll .header__inner {
    width: calc(100% - 24px);
    min-height: 56px;
    padding: 10px 16px;
  }
}
@media screen and (max-width: 1040px) {
  .header.headerColorScroll .header__nav {
    gap: 18px;
  }
}
@media screen and (max-width: 1040px) {
  .header.headerColorScroll .header__logo img {
    width: 120px;
  }
}

.drawer-icon {
  position: relative;
}
.drawer-icon__bar {
  position: absolute;
  left: 3px;
  width: 30px;
  height: 2px;
  background-color: #222;
  -webkit-transition: top 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  transition: top 0.3s ease, transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.drawer-icon__bar:nth-of-type(1) {
  top: 8px;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 17px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 26px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 17px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  opacity: 0;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 17px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media screen and (max-width: 767px) {
  body.is-fixed .header {
    padding-top: 0;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    pointer-events: auto;
  }
  body.is-fixed .header__inner,
  body.is-fixed .header.headerColorScroll .header__inner {
    width: 100%;
    min-height: 84px;
    margin: 0;
    padding: 24px;
    border-radius: 0;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  body.is-fixed .header.headerColorScroll {
    padding-top: 0;
    background: rgba(255, 255, 255, 0.94);
    -webkit-box-shadow: 0 2px 12px rgba(125, 125, 125, 0.02);
            box-shadow: 0 2px 12px rgba(125, 125, 125, 0.02);
    pointer-events: auto;
  }
  body.is-fixed .header.headerColorScroll .header__inner {
    width: 100%;
    min-height: 84px;
    margin: 0;
    padding: 24px;
    border-radius: 0;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  body.is-fixed .header.headerColorScroll .header__logo img {
    width: 149px;
  }
  body.is-fixed .header__nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  body.is-fixed .header__link {
    display: block;
  }
  body.is-fixed .header__logo img {
    width: 149px;
  }
  body.is-fixed .header__link,
  body.is-fixed .header__button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 24px;
    font-weight: 500;
    line-height: 1;
  }
  body.is-fixed .header__button {
    width: 200px;
  }
}
body:has(.page-service) .header:not(.headerColorScroll),
body:has(.page-media) .header:not(.headerColorScroll),
body:has(.page-news) .header:not(.headerColorScroll),
body:has(.page-news-detail) .header:not(.headerColorScroll),
body:has(.page-contact) .header:not(.headerColorScroll),
body:has(.page-privacy) .header:not(.headerColorScroll) {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
body:has(.page-service) main,
body:has(.page-media) main,
body:has(.page-news) main,
body:has(.page-news-detail) main,
body:has(.page-contact) main,
body:has(.page-privacy) main {
  padding-top: 0;
}

.fv {
  width: 100%;
  height: min(50vw, 720px);
  margin: 0;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}
@media screen and (max-width: 767px) {
  .fv {
    height: 70vh;
  }
}
.fv__inner, .fv__content {
  height: 100%;
}
.fv__content {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}
.fv__content::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
.fv__video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: min(38vw, 360px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .fv__logo {
    width: min(62vw, 260px);
  }
}
.fv__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.mission {
  position: relative;
  overflow: hidden;
  padding-bottom: 140px;
  background: transparent;
}
@media screen and (max-width: 767px) {
  .mission {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.mission__inner {
  position: relative;
}
.mission__contents {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  padding-left: 14px;
  padding-right: 14px;
}
@media screen and (max-width: 767px) {
  .mission__contents {
    padding-left: 0;
    padding-right: 0;
  }
}
.mission__contents::after {
  content: "BEYOND THE MOMENT";
  position: absolute;
  right: -18vw;
  bottom: -40px;
  z-index: -1;
  color: #FDFBFB;
  font-family: "Poppins", sans-serif;
  font-size: clamp(100px, 15vw, 180px);
  font-weight: 700;
  line-height: 0.9;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .mission__contents::after {
    font-size: 100px;
  }
}
.mission__contents h2 {
  --text-reveal-letter-spacing: 0.02em;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: clamp(32px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.mission .btn {
  margin-top: 40px;
}

.service {
  padding: 0;
  background: transparent;
}
.service__inner {
  width: 100%;
  max-width: none;
  padding: 0;
}
.service__contents {
  margin-top: 0;
}

.service-scroll {
  height: 190vh;
}
@media screen and (max-width: 767px) {
  .service-scroll {
    height: 220vh;
  }
}
.service-scroll__sticky {
  position: sticky;
  top: 104px;
  z-index: 2;
  min-height: 610px;
  padding-top: 96px;
  padding-bottom: 120px;
  isolation: isolate;
}
@media screen and (max-width: 767px) {
  .service-scroll__sticky {
    top: 64px;
    padding-top: 40px;
    padding-bottom: 48px;
  }
}
.service-scroll__sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #FBF8F7;
  pointer-events: none;
}
.service-scroll__title, .service-scroll__layout {
  width: min(1500px, 100% - 64px);
  margin-right: auto;
  margin-left: auto;
  padding-left: 14px;
  padding-right: 14px;
}
@media screen and (max-width: 767px) {
  .service-scroll__title, .service-scroll__layout {
    width: calc(100% - 32px);
  }
}
.service-scroll__title {
  display: block;
}
.service-scroll__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 40px;
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .service-scroll__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 20px;
    padding-left: 0;
    padding-right: 0;
    gap: 20px;
  }
}
.service-scroll__body {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 45%;
          flex: 1 1 45%;
  min-width: 0;
  min-height: 390px;
}
@media screen and (max-width: 767px) {
  .service-scroll__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    min-height: 240px;
  }
}
@media screen and (max-width: 500px) {
  .service-scroll__body {
    min-height: 310px;
  }
}
.service-scroll__index {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .service-scroll__index {
    gap: 40px;
  }
}
.service-scroll__index span {
  position: relative;
  color: #E9E2E0;
}
.service-scroll__index span + span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + 9px);
  width: 40px;
  height: 1px;
  background: #F4EDEC;
}
.service-scroll__index span.is-active {
  color: #EB4129;
}
@media screen and (max-width: 767px) {
  .service-scroll__index span + span::before {
    width: 24px;
  }
}
.service-scroll__texts {
  position: relative;
  min-height: 330px;
}
@media screen and (max-width: 767px) {
  .service-scroll__texts {
    min-height: 240px;
  }
}
@media screen and (max-width: 500px) {
  .service-scroll__texts {
    min-height: 280px;
  }
}
.service-scroll__text {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.35s ease, visibility 0.35s ease;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
@media screen and (max-width: 767px) {
  .service-scroll__text {
    top: 20px;
  }
}
.service-scroll__text.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.service-scroll__text h3 {
  margin-bottom: 32px;
  color: #262120;
  font-size: clamp(20px, 3.4vw, 34px);
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .service-scroll__text h3 {
    margin-bottom: 16px;
  }
}
.service-scroll__text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .service-scroll__text p {
    font-size: 15px;
    line-height: 1.5;
  }
}
.service-scroll__more {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .service-scroll__more {
    margin-top: 24px;
  }
}
.service-scroll__images {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 52%;
          flex: 1 1 52%;
  min-width: 440px;
  height: clamp(320px, 37.4vw, 374px);
}
.service-scroll__images.js-fadein {
  opacity: 0;
  -webkit-transform: translateY(40px) scale(0.98);
          transform: translateY(40px) scale(0.98);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.8s ease, -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.8s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.8s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-scroll__images.js-fadein.show {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}
@media screen and (max-width: 1040px) {
  .service-scroll__images {
    min-width: 360px;
  }
}
@media screen and (max-width: 767px) {
  .service-scroll__images {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    min-width: 0;
    height: clamp(180px, 40vw, 320px);
  }
}
.service-scroll__image {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.service-scroll__image.is-active {
  opacity: 1;
  visibility: visible;
}
.service-scroll__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.media {
  background: transparent;
  padding-bottom: 40px;
}
.media__contents {
  margin-top: 40px;
  padding-left: 14px;
  padding-right: 14px;
}
@media screen and (max-width: 767px) {
  .media__contents {
    padding-left: 0;
    padding-right: 0;
    margin-top: 24px;
  }
}
.media__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .media__list {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.media__link {
  display: block;
}
.media__link:hover .media__thumb img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.media__thumb {
  overflow: hidden;
  aspect-ratio: 16/9;
  border-radius: 8px;
}
.media__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.media__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  margin-top: 32px;
  color: #7D7D7D;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .media__detail {
    margin-top: 16px;
  }
}
.media__detail .year {
  font-size: 10px;
  letter-spacing: 0.05em;
}
.media__title {
  margin-top: 8px;
  color: #262120;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}
.media .btn {
  margin-top: 64px;
}

.news {
  background: transparent;
}
.news__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 120px;
}
@media screen and (max-width: 1040px) {
  .news__inner {
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .news__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 36px;
  }
}
.news__contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  margin-top: 0;
  padding-right: 14px;
}
@media screen and (max-width: 767px) {
  .news__contents {
    padding-right: 0;
  }
}
.news__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: 40px;
}
.news__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news__link:hover .news__thumb img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (max-width: 767px) {
  .news__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 16px;
  }
}
.news__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .news__body {
    gap: 8px;
  }
}
.news__thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 240px;
          flex: 0 0 240px;
  overflow: hidden;
  aspect-ratio: 16/9;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .news__thumb {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    width: 100%;
  }
}
.news__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.news__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  color: #7D7D7D;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1;
}
.news__detail .category {
  font-size: 12px;
}
.news__title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #262120;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .news__title {
    font-size: 15px;
  }
}
.news__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 220px;
          flex: 0 0 220px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .news__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 16px;
  }
}
.news__btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 14px;
}
@media screen and (max-width: 767px) {
  .news__btn {
    margin-left: 0;
  }
}

.recruit {
  padding-top: 0;
}
.recruit__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 286px;
  overflow: hidden;
  border-radius: 10px;
  background: #F4EDEC;
}
@media screen and (max-width: 767px) {
  .recruit__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: 0;
  }
}
.recruit__contents:hover .btn {
  background-size: calc(100% - 36px) 1px;
}
.recruit__contents:hover .btn::after {
  background-color: #EB4129;
  border: 1px solid #EB4129;
}
.recruit__contents:hover .btn::before {
  background-color: #FFF;
}
.recruit__contents:hover .recruit__img img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.recruit__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  -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;
  padding: 40px 40px;
}
@media screen and (max-width: 767px) {
  .recruit__body {
    padding: 40px 24px;
  }
}
.recruit__title {
  margin-top: 40px;
  color: #262120;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 2.3vw, 32px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .recruit__title {
    margin-top: 24px;
  }
}
.recruit__text {
  margin-top: 32px;
  color: #262120;
  font-size: 18px;
  line-height: 2;
  margin-left: 14px;
}
.recruit__text span {
  display: block;
  font-weight: 700;
}
@media screen and (max-width: 1040px) {
  .recruit__text span {
    display: inline;
  }
}
@media screen and (max-width: 767px) {
  .recruit__text {
    margin-left: 0;
    font-size: 15px;
  }
}
.recruit__btn {
  margin-top: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 14px;
}
@media screen and (max-width: 767px) {
  .recruit__btn {
    margin-left: 0;
  }
}
.recruit__img {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  min-height: 286px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .recruit__img {
    min-height: 100%;
  }
}
.recruit__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.page-title {
  position: relative;
  padding: 190px 0 140px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page-title {
    padding: 128px 0 80px;
  }
}
.page-title::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -30px;
  width: 476px;
  aspect-ratio: 1;
  background: url("../img/il_pagetitle-bg.png") center/contain no-repeat;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .page-title::before {
    top: -60px;
    left: -30px;
    width: 320px;
  }
}
.page-title__inner {
  position: relative;
  z-index: 1;
}
.page-title__en {
  color: #262120;
  font-family: "Poppins", sans-serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .page-title__en {
    font-size: 40px;
  }
}
.page-title__ja {
  color: #262120;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.page-title:has(.page-title__lead) {
  padding-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .page-title:has(.page-title__lead) {
    padding-bottom: 48px;
  }
}

.service-detail {
  padding-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .service-detail {
    padding-bottom: 80px;
  }
}
.service-detail__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 80px;
  width: auto;
  margin-right: 0;
  margin-left: max(32px, (100vw - 1500px) / 2);
}
@media screen and (max-width: 1040px) {
  .service-detail__inner {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .service-detail__inner {
    width: calc(100% - 32px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    margin-right: auto;
    margin-left: auto;
  }
}
.service-detail__side {
  position: sticky;
  top: 120px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 220px;
          flex: 0 0 220px;
  padding-top: 120px;
}
@media screen and (max-width: 1040px) {
  .service-detail__side {
    -ms-flex-preferred-size: 190px;
        flex-basis: 190px;
  }
}
@media screen and (max-width: 767px) {
  .service-detail__side {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    position: static;
    width: 100%;
    padding-top: 0;
  }
}
.service-detail__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .service-detail__nav {
    gap: 14px;
  }
}
.service-detail__nav-link {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 8px;
  color: rgba(38, 33, 32, 0.2);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}
.service-detail__nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #EB4129;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.service-detail__nav-link.is-active, .service-detail__nav-link:hover {
  color: #262120;
  font-weight: 700;
}
.service-detail__nav-link.is-active::before, .service-detail__nav-link:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.service-detail__panel {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding: 96px 56px;
  border-radius: 20px 0 0 20px;
  background: #FBF8F7;
}
@media screen and (max-width: 1040px) {
  .service-detail__panel {
    padding: 60px 40px;
  }
}
@media screen and (max-width: 767px) {
  .service-detail__panel {
    width: 100%;
    padding: 40px 24px;
    border-radius: 10px;
  }
}
.service-detail__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  scroll-margin-top: 120px;
}
.service-detail__item + .service-detail__item {
  margin-top: 132px;
}
@media screen and (max-width: 1040px) {
  .service-detail__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    scroll-margin-top: 84px;
  }
  .service-detail__item + .service-detail__item {
    margin-top: 80px;
  }
}
.service-detail__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .service-detail__body {
    width: 100%;
  }
}
.service-detail__title {
  margin-top: 8px;
  color: #262120;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 2vw, 34px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
  margin-left: 14px;
  margin-right: 14px;
}
@media screen and (max-width: 767px) {
  .service-detail__title {
    margin-top: 12px;
    margin-left: 0;
    margin-right: 0;
  }
}
.service-detail__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  margin-top: 40px;
  margin-left: 14px;
  margin-right: 14px;
}
@media screen and (max-width: 767px) {
  .service-detail__text {
    gap: 20px;
    margin-top: 28px;
    margin-left: 0;
    margin-right: 0;
  }
}
.service-detail__text p {
  color: #262120;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .service-detail__text p {
    font-size: 15px;
    line-height: 1.8;
  }
}
.service-detail__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42%;
          flex: 0 0 42%;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .service-detail__img {
    width: 100%;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}
.service-detail__img img {
  display: block;
  width: 100%;
  aspect-ratio: 368/269;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-archive {
  padding: 0 0 150px;
  background: transparent;
}
@media screen and (max-width: 767px) {
  .news-archive {
    padding-bottom: 90px;
  }
}
.news-archive__contents {
  width: min(1200px, 100%);
  margin: 0 auto;
}
.news-archive__list {
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .news-archive__list {
    gap: 56px;
  }
}
.news-archive .news__thumb {
  -ms-flex-preferred-size: 300px;
      flex-basis: 300px;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 767px) {
  .news-archive .news__thumb {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    width: 100%;
    height: auto;
  }
}
.news-archive__more {
  display: block;
  width: min(220px, 100%);
  margin: 80px auto 0;
  padding: 11px 24px;
  border: 1px solid rgba(38, 33, 32, 0.6);
  border-radius: 999px;
  color: rgba(38, 33, 32, 0.65);
  background: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  -webkit-transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
.news-archive__more:hover {
  border-color: #EB4129;
  color: #FFF;
  background: #EB4129;
}
@media screen and (max-width: 767px) {
  .news-archive__more {
    margin-top: 56px;
  }
}

.single-panel {
  padding: 64px 0;
  border-radius: 24px 24px 0 0;
  background: #FBF8F7;
}
@media screen and (max-width: 767px) {
  .single-panel {
    padding: 48px 0 64px;
    border-radius: 16px 16px 0 0;
  }
}
.single-panel__content {
  width: min(960px, 100%);
  margin: 0 auto;
}

.page-panel {
  padding: 72px 0 130px;
  border-radius: 24px 24px 0 0;
  background: #FBF8F7;
}
@media screen and (max-width: 767px) {
  .page-panel {
    padding: 52px 0 88px;
    border-radius: 16px 16px 0 0;
  }
}
.page-panel__content {
  width: min(960px, 100%);
  margin: 0 auto;
}
.page-panel--form .page-panel__content {
  width: min(690px, 100%);
}
.page-panel--text .page-panel__content {
  width: min(960px, 100%);
}

.page-body {
  color: #262120;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.page-body > * + * {
  margin-top: 32px;
}
.page-body p {
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.single-hero {
  position: relative;
  padding: 200px 0 64px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .single-hero {
    padding: 128px 0 48px;
  }
}
.single-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -30px;
  width: 476px;
  aspect-ratio: 1;
  background: url("../img/il_pagetitle-bg.png") center/contain no-repeat;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .single-hero::before {
    top: -60px;
    left: -30px;
    width: 320px;
  }
}
.single-hero__inner {
  position: relative;
  z-index: 1;
}
.single-hero__content {
  width: min(960px, 100%);
  margin: 0 auto;
}
.single-hero__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  color: #7D7D7D;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1;
}
.single-hero__title {
  margin-top: 20px;
  color: #262120;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

.single-body {
  color: #262120;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.single-body > * + * {
  margin-top: 32px;
}
.single-body p {
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.single-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.single-body ul,
.single-body ol {
  padding-left: 1.5em;
}
.single-body ul {
  list-style: disc;
}
.single-body ol {
  list-style: decimal;
}

.single-back {
  display: block;
  width: min(220px, 100%);
  margin: 120px auto 0;
  padding: 11px 24px;
  border: 1px solid rgba(38, 33, 32, 0.6);
  border-radius: 999px;
  color: rgba(38, 33, 32, 0.65);
  background: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  -webkit-transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
.single-back:hover {
  border-color: #EB4129;
  color: #FFF;
  background: #EB4129;
}
@media screen and (max-width: 767px) {
  .single-back {
    margin-top: 80px;
  }
}

.page-title__lead {
  max-width: 850px;
  margin-top: 72px;
  color: #262120;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .page-title__lead {
    margin-top: 44px;
    font-size: 15px;
    line-height: 1.8;
  }
}

.contact-form {
  width: min(690px, 100%);
  margin: 0 auto;
}
.contact-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: 40px;
}
@media screen and (max-width: 767px) {
  .contact-form__list {
    gap: 30px;
  }
}
.contact-form__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 2px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.4;
}
.contact-form__required {
  color: #EB4129;
  font-size: 12px;
}
.contact-form__input, .contact-form__textarea {
  width: 100%;
  border: 1px solid #E9E2E0;
  border-radius: 10px;
  background: #FFF;
  color: #262120;
  font-size: 16px;
  line-height: 1.5;
  -webkit-transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.contact-form__input:focus, .contact-form__textarea:focus {
  outline: none;
  border-color: rgba(235, 65, 41, 0.65);
  -webkit-box-shadow: 0 0 0 3px rgba(235, 65, 41, 0.08);
          box-shadow: 0 0 0 3px rgba(235, 65, 41, 0.08);
}
.contact-form__input {
  min-height: 58px;
  padding: 12px 18px;
}
.contact-form__textarea {
  min-height: 150px;
  padding: 16px 18px;
  resize: vertical;
}
.contact-form__privacy {
  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;
  gap: 10px;
  margin-top: 30px;
  color: #262120;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .contact-form__privacy {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    font-size: 14px;
  }
}
.contact-form__privacy a {
  border-bottom: 1px solid rgba(38, 33, 32, 0.3);
  -webkit-transition: color 0.3s ease, border-color 0.3s ease;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.contact-form__privacy a:hover {
  color: #EB4129;
  border-color: #EB4129;
}
.contact-form__checkbox {
  width: 14px;
  height: 14px;
  accent-color: #EB4129;
}
.contact-form__submit {
  position: relative;
  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;
  width: min(220px, 100%);
  min-height: 36px;
  margin: 40px auto 0;
  padding: 8px 44px;
  border-radius: 999px;
  background: #EB4129;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.contact-form__submit::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  z-index: 1;
  width: 11px;
  height: 11px;
  background: #EB4129;
  mask: url("../img/arrow.svg") center/contain no-repeat;
  -webkit-mask: url("../img/arrow.svg") center/contain no-repeat;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.contact-form__submit::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #FFF;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.contact-form__submit:hover {
  background: #262120;
}
.contact-form__submit:hover::before {
  background: #262120;
}

.media-archive {
  padding: 0 0 150px;
  background: transparent;
}
@media screen and (max-width: 767px) {
  .media-archive {
    padding-bottom: 90px;
  }
}

.media-category + .media-category {
  margin-top: 140px;
}
@media screen and (max-width: 767px) {
  .media-category + .media-category {
    margin-top: 80px;
  }
}
.media-category__contents {
  margin-top: 54px;
}
@media screen and (max-width: 767px) {
  .media-category__contents {
    margin-top: 32px;
  }
}
.media-category__list {
  padding: 0 14px;
}
@media screen and (max-width: 767px) {
  .media-category__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 10px;
    padding: 0;
  }
}
.media-category__title {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
}

.footer {
  padding: 74px 0 32px;
  background: #FDFDFD;
}
.footer__inner {
  width: min(1500px, 100% - 64px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    width: calc(100% - 32px);
  }
}
.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1040px) {
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 64px;
  }
}
@media screen and (max-width: 767px) {
  .footer__top {
    gap: 40px;
  }
}
.footer__logo {
  width: max(160px, 19vw);
  max-width: 200px;
}
.footer__logo img {
  display: block;
  width: 200px;
  height: auto;
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 1040px) {
  .footer__nav {
    gap: 40px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.footer__nav-title, .footer__page-link {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  padding-right: 1.5em;
}
.footer__nav-title:hover, .footer__page-link:hover {
  color: #EB4129;
}
.footer__nav-list, .footer__page-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: 12px;
}
.footer__nav-list {
  margin-top: 8px;
}
.footer__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  color: #262120;
  font-size: 12px;
  line-height: 1.4;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  padding-right: 1.5em;
}
.footer__nav-link::before {
  content: "-";
}
.footer__nav-link:hover {
  color: #EB4129;
}
.footer__contact-link {
  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;
  gap: 32px;
  padding-bottom: 9px;
  padding-right: 14px;
  padding-left: 14px;
  border-bottom: 1px solid #E9E2E0;
  color: #EB4129;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.footer__contact-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: #EB4129;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.footer__contact-link span {
  font-weight: 700;
}
.footer__contact-link:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.footer__contact-link:hover .footer__contact-icon {
  color: #FFF;
  background-color: #EB4129;
  border-color: #EB4129;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__contact-link:hover .footer__contact-icon::before {
  content: "";
  background-color: #FFF;
}
@media screen and (max-width: 767px) {
  .footer__contact {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    width: 100%;
    margin-top: 40px;
  }
}
.footer__contact-icon {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid #262120;
  border-radius: 50%;
  font-size: 0;
  line-height: 1;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
.footer__contact-icon::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #262120;
  mask: url("../img/arrow.svg") center/contain no-repeat;
  -webkit-mask: url("../img/arrow.svg") center/contain no-repeat;
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 68px;
  padding-top: 32px;
  border-top: 1px solid #E9E2E0;
}
@media screen and (max-width: 767px) {
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px;
  }
}
.footer__copy, .footer__privacy {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  line-height: 1.4;
}
.footer__copy {
  color: #7D7D7D;
}
.footer__privacy {
  color: #262120;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__privacy:hover {
  color: #EB4129;
}