@font-face {
  font-family: "Pragmatica Extended";
  src: local("Pragmatica Extended"), local("PragmaticaExtended");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  /* Main brand gradient */
  --color-main-gradient: linear-gradient(180deg, #58fef9 0%, #6bffa1 100%);

  /* Background gradient */
  --color-bg-gradient: linear-gradient(180deg, #b4eedd 0%, #98e7f0 100%);

  /* Text colors */
  --color-text-green: #22d2ae;
  --color-text-body: #232323;
  --color-text-gray: #6b6b6b;

  /* Accent colors */
  --color-accent-pink: #ffbac6;
  --color-accent-navy: #4d6ca9;
  --color-accent-yellow: #fdcf64;
  --color-accent-red: #f27b90;
  --color-accent-green: #4dc5b2;

  /* Font families */
  --font-main: "Zen Kaku Gothic New", sans-serif;
  --font-en: "Syncopate", sans-serif;

  /* Typography */
  --letter-spacing-base: 0.04em;
  --line-height-180: 1.8;
  --line-height-220: 2.2;
  --site-header-height: 116px;
}

html,
body {
  font-family: var(--font-main);
  color: var(--color-text-body);
  letter-spacing: var(--letter-spacing-base);
  line-height: var(--line-height-180);
}

html {
  scroll-behavior: smooth;
}

body {
  padding-top: var(--site-header-height);
}

html.js-page-transition body {
  opacity: 0;
  transition: opacity 0.32s ease;
}

html.js-page-transition.is-page-entered body {
  opacity: 1;
}

html.js-page-transition.is-page-exiting body {
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.32s ease,
    transform 0.32s ease;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  html.js-page-transition body,
  html.js-page-transition.is-page-entered body,
  html.js-page-transition.is-page-exiting body {
    opacity: 1;
    transform: none;
    transition: none;
    pointer-events: auto;
  }

  .sv-hero__inner {
    opacity: 1;
    animation: none;
  }

  .svd-hero__inner {
    opacity: 1;
    animation: none;
  }
}

p {
  font-size: clamp(
    14px,
    calc(13.354005167958656px + 0.17226528854435832vw),
    16px
  );
}

/* body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 4.4270833333vw;
  width: 1px;
  height: 100vh;
  background: rgba(255, 0, 0, 0.6);
  z-index: 9999;
  pointer-events: none;
  box-shadow:
    6.5104166667vw 0 0 rgba(255, 0, 0, 0.6),
    45.5729166667vw 0 0 rgba(255, 0, 0, 0.6),
    84.6354166667vw 0 0 rgba(255, 0, 0, 0.6),
    91.1458333333vw 0 0 rgba(255, 0, 0, 0.6);
}

body::after {
  content: "";
  position: absolute;
  top: 864px;
  left: 0;
  width: 100vw;
  height: 1px;
  background: rgba(255, 0, 0, 0.6);
  z-index: 9999;
  pointer-events: none;
} */

body.is-menu-open {
  overflow: hidden;
}

/* Utility classes for line-height variations */
.lh-180 {
  line-height: var(--line-height-180);
}

.lh-220 {
  line-height: var(--line-height-220);
}

/* Utility class for English text / numeric styling */
.font-en {
  font-family: var(--font-en);
}

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

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

.bold {
  font-weight: 700;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 30px 0;
  transition:
    transform 0.45s ease,
    opacity 0.35s ease;
  will-change: transform, opacity;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 8px));
  opacity: 0;
  pointer-events: none;
}

.site-header__inner {
  width: min(100% - 136px, 1840px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, calc(13.540051679586563px + 1.7226528854435832vw), 40px);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  width: clamp(80px, calc(41.24031007751938px + 10.335917312661499vw), 200px);
  z-index: 3;
}

.site-logo img {
  display: block;
  width: 100%;
}

.site-nav {
  margin-left: auto;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(28px, calc(14.956521739130435px + 1.6304347826086956vw), 40px);
}

.mobile-menu {
  display: none;
}

.site-nav a {
  color: var(--color-text-body);
  font-size: clamp(
    14px,
    calc(13.354005167958656px + 0.17226528854435832vw),
    16px
  );

  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  line-height: 180%;
  letter-spacing: 4%;
  transition: opacity 0.2s ease;
}

.site-nav a:hover {
  opacity: 0.7;
}

/* Desktop submenu dropdown */
.site-nav__item--has-submenu {
  position: relative;
}

/* Bridge the gap between nav link and submenu so hover isn't lost */
.site-nav__item--has-submenu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 14px;
}

.site-nav__submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 220px;
  background: #fff;
  border-radius: 20px;
  padding: 20px 30px;
  box-shadow: 0px 8px 16px 0px #0000001a;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  white-space: nowrap;
  z-index: 100;
  overflow: hidden;
}

.site-nav__item--has-submenu:hover .site-nav__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.site-nav__submenu li {
  border-bottom: 1px solid #dfdfdf;
  min-width: 200px;
}

.site-nav__submenu li:last-child {
  border-bottom: none;
}

.site-nav__submenu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px 0px;
  color: var(--color-text-body);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease;

  font-size: 16px;
  line-height: 180%;
  letter-spacing: 4%;
}

.site-nav__submenu li:first-child {
  padding-top: 0;
}
.site-nav__submenu li:last-child {
  padding-bottom: 0;
}

.site-nav__submenu a:hover {
  color: var(--color-text-green);
}

.entry-button {
  border-radius: 8px;
  background: linear-gradient(180deg, #58fef9 0%, #6bffa1 100%);

  padding: clamp(4px, calc(2px + 0.5vw), 10px)
    clamp(14px, calc(8.347545219638242px + 1.5073212747631353vw), 31.5px);
  color: var(--color-text-body);
  font-size: clamp(
    14px,
    calc(12.062015503875969px + 0.516795865633075vw),
    20px
  );

  box-shadow: 0px 0px 6px 0px #00000033;

  font-family: Syncopate;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 4%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  transition:
    transform 0.24s ease,
    filter 0.24s ease;
}

.entry-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6.5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26.4px;
  height: 2.4px;
  border-radius: 999px;
  background: #22d2ae;
  transition:
    transform 0.28s ease,
    opacity 0.2s ease;
}

.side-scroll {
  position: fixed;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  z-index: 9;
  top: 549px;
  left: -100px;
  background: linear-gradient(180deg, #58fef8e8 0%, #6bffa1e8 100%);
  transition: opacity 1s ease;
}

.side-scroll.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.side-scroll p {
  position: absolute;
  color: #232323;
  font-family: Syncopate;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  width: 100px;
  right: -3px;
  top: 66px;
  text-align: center;
  margin-top: 0px;
}
.side-scroll p::after {
  content: "";
  position: relative;
  display: block;
  top: 19px;
  right: -50%;
  width: 1px;
  height: 103px;
  background: #232323;
  animation: sdl 3s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@keyframes sdl-x {
  0% {
    transform: scale(0, 1);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 100% 0;
  }
  100% {
    transform: scale(0, 1);
    transform-origin: 100% 0;
  }
}

.kv {
  position: relative;
  overflow: hidden;
  height: clamp(
    490px,
    calc(435.09043927648577px + 14.642549526270457vw),
    660px
  );
  margin-top: -116px;
  background:
    url("/images/kv-bg.jpg") center / cover no-repeat,
    #d9d9d9;
}

.kv::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 75.8%;
  z-index: 1;
  background: url("/images/kv-bg-yoko.jpg") center / cover no-repeat;
}

.kv__bg-shape {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.kv__bg-shape::before {
  content: "";
  position: absolute;
  right: clamp(20px, 7vw, 90px);
  top: 0;
  width: clamp(160px, calc(30px + 34vw), 520px);
  height: 100%;
  transform: skewX(-32deg);
  opacity: 60%;
  background: linear-gradient(177.37deg, #58fef9 25.45%, #6bffa1 66.21%);
}

.kv__inner {
  position: relative;
  z-index: 2;
  width: 78.125%;
  margin: 0px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  min-height: inherit;
  height: 100%;
}

.kv__content {
  margin-bottom: 74px;
}

.kv__title {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: clamp(7px, calc(5.708010335917312px + 0.34453057708871665vw), 11px);
  font-size: clamp(31px, calc(20.34108527131783px + 2.842377260981912vw), 64px);
  font-weight: 700;
}

.kv-title-card {
  align-items: center;
  border: 2px solid #bfbfbf;
  background: #fff;
  width: clamp(132px, calc(94.53229974160206px + 9.991386735572782vw), 248px);
  aspect-ratio: 248/124;
  height: stretch;
}

.kv-title-card__image {
  display: block;
  width: 92%;
  margin-inline: auto;
  margin-top: -2.5%;
  opacity: 0;
  transform: translateY(10px);
  animation: kv-title-image-in 0.75s ease-out forwards;
  animation-delay: 0.95s;
}

.kv-title-card--friends .kv-title-card__image {
  animation-delay: 1.15s;
}

.kv__title em {
  font-style: normal;
}

.kv__lead {
  margin-top: 13px;
  font-size: clamp(
    22px,
    calc(19.416020671834627px + 0.6890611541774333vw),
    30px
  );
  color: #000;
  white-space: nowrap;

  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0%;
}

.kv-entry {
  width: fit-content;
  border-radius: clamp(
    6px,
    calc(4.708010335917312px + 0.34453057708871665vw),
    10px
  );
  background: #f27b90;
  box-shadow: clamp(
      7px,
      calc(6.0310077519379846px + 0.2583979328165375vw),
      10px
    )
    clamp(7px, calc(6.0310077519379846px + 0.2583979328165375vw), 10px) 0
    #d05167;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.38em;
  padding: clamp(13.8px, calc(11.5px + 0.8vw), 25px)
    clamp(8.7px, calc(5.050129198966408px + 0.9732988802756245vw), 20px)
    clamp(13.8px, calc(11.5px + 0.8vw), 25px)
    clamp(135px, calc(112.39018087855297px + 6.029285099052541vw), 205px);

  text-decoration: none;
  transition: transform 0.2s ease;
  position: relative;
  margin-top: 54px;
}

.kv-entry-sp {
  display: none;
  margin-top: 36px;
}

.kv-entry img {
  width: clamp(136px, calc(111.12919896640827px + 6.6322136089577945vw), 213px);
  height: auto;
  position: absolute;
  bottom: 0;
  left: -8%;
  transform-origin: 40% bottom;
  transition: transform 0.3s ease;
}

.kv-entry:hover img {
  transform: scale(1.08);
}

.kv-entry span {
  color: var(--color-text-body);
}

.kv-entry .font-en {
  font-size: clamp(
    16px,
    calc(12.77002583979328px + 0.8613264427217916vw),
    26px
  );
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0%;
}

.kv-entry__arrow {
  width: clamp(22px, 1.7vw, 34px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #ffe8ed;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(12px, 0.9vw, 18px);
  overflow: hidden;
}

.kv-entry__arrow::before,
.kv-entry__arrow svg {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity;
  transition:
    transform 0.45s cubic-bezier(0.3, 0.7, 0.2, 1),
    opacity 0.45s cubic-bezier(0.3, 0.7, 0.2, 1);
}

.kv-entry__arrow::before {
  background: center / 100% 100% no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none'%3E%3Ccircle cx='15' cy='15' r='15' fill='white'/%3E%3Crect width='18' height='18' transform='translate(24 6) rotate(90)' fill='white'/%3E%3Cpath d='M18.172 11.2598C18.3209 11.2605 18.4635 11.3199 18.5688 11.4252C18.674 11.5305 18.7335 11.6731 18.7342 11.822L18.7342 17.1253C18.7368 17.2008 18.7243 17.276 18.6972 17.3465C18.6702 17.4171 18.6292 17.4814 18.5767 17.5358C18.5243 17.5901 18.4614 17.6333 18.3919 17.6629C18.3223 17.6924 18.2476 17.7076 18.172 17.7076C18.0965 17.7076 18.0217 17.6924 17.9522 17.6629C17.8827 17.6333 17.8198 17.5901 17.7673 17.5358C17.7149 17.4814 17.6739 17.4171 17.6468 17.3465C17.6198 17.276 17.6072 17.2008 17.6099 17.1253L17.6099 13.1796L12.2058 18.5837C12.1003 18.6892 11.9573 18.7484 11.8081 18.7484C11.6589 18.7484 11.5158 18.6892 11.4103 18.5837C11.3048 18.4782 11.2456 18.3351 11.2456 18.1859C11.2456 18.0367 11.3048 17.8937 11.4103 17.7882L16.8144 12.3841L12.8687 12.3841C12.7231 12.379 12.5851 12.3175 12.4839 12.2126C12.3826 12.1078 12.3261 11.9677 12.3261 11.822C12.3261 11.6762 12.3826 11.5362 12.4839 11.4313C12.5851 11.3264 12.7231 11.265 12.8687 11.2598L18.172 11.2598Z' fill='%23232323'/%3E%3C/svg%3E");
  transform: translate3d(-12px, 12px, 0);
  opacity: 0;
}

.kv-entry:hover .kv-entry__arrow svg {
  transform: translate3d(12px, -12px, 0);
  opacity: 0;
}

.kv-entry:hover .kv-entry__arrow::before {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.kv__visual {
  position: relative;
  height: 88%;
  margin-right: 24%;
}

@media screen and (max-width: 1320px) {
  .kv__visual {
    margin-right: 12%;
    height: 86%;
  }
}

@media screen and (max-width: 1200px) {
  .kv__visual {
    margin-right: 4%;
    height: 82%;
  }
}

@media screen and (max-width: 1080px) {
  .kv__visual {
    margin-right: 0%;
    height: 82%;
  }
}

.kv-rotate-text {
  position: absolute;
  right: -40%;
  top: 48%;
}

.kv-rotate-text svg {
  display: block;
  width: 100%;
  height: auto;
  animation: kv-spin 14s linear infinite;
}

.kv-rotate-text svg path {
  filter: drop-shadow(-4px 4px 4px rgb(34, 109, 68, 0.3));
}

.kv-person-stage {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  max-width: 720px;
  perspective: 900px;
  transform-style: preserve-3d;
}

.kv-person {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  opacity: 0;
  filter: blur(12px);
  transform: translateX(34px) scale(0.99);
}

.kv-person--base.is-active {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0) scale(1);
  transition:
    opacity 1.1s ease,
    filter 1.1s ease,
    transform 1.1s ease;
}

.kv-person--base.is-leaving {
  opacity: 0;
  filter: blur(6px);
  transform: translateX(-32px) scale(0.99);
}

.kv-person--base,
.kv-person--alt {
  transform-origin: 60% 55%;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.kv-person--alt {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  transition: none;
}

.kv-person--alt.is-active {
  opacity: 1;
  filter: blur(0);
  -webkit-transform: rotateY(360deg);
  transform: translateX(0) scale(1) rotateY(360deg);
}

.kv-person--alt.is-leaving {
  opacity: 0;
  filter: blur(6px);
  -webkit-transform: translateX(-32px) scale(0.99) rotateY(360deg);
  transform: translateX(-32px) scale(0.99) rotateY(360deg);
  transition:
    opacity 1.1s ease,
    filter 1.1s ease,
    transform 1.1s ease;
}

.kv-person.is-pair-flip-out,
.kv-person.is-pair-flip-in {
  opacity: 1;
  filter: blur(0);
  will-change: transform;
  -webkit-transition: -webkit-transform 0.6s 0s
    cubic-bezier(0.54, 0.2, 0.15, 0.99);
  transition:
    transform 0.6s 0s cubic-bezier(0.54, 0.2, 0.15, 0.99),
    -webkit-transform 0.6s 0s cubic-bezier(0.54, 0.2, 0.15, 0.99);
}

.kv-person--base.is-pair-flip-out {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.kv-person--alt.is-pair-flip-in {
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}

.is-delayed {
  opacity: 0;
  transform: translateY(18px);
  animation: kv-delayed-in 0.9s ease-out forwards;
  animation-delay: 0.9s;
}

.kv__visual.is-delayed {
  transform: scale(0.99);
  animation: kv-visual-in-place 0.9s ease-out forwards;
  animation-delay: 1.3s;
}

@keyframes kv-delayed-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes kv-visual-in-place {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes kv-title-image-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes kv-spin {
  to {
    transform: rotate(360deg);
  }
}

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

  .kv::before {
    height: 49%;
    top: 0;
  }

  .kv__bg-shape::before {
    width: 280px;
    right: -130px;
  }

  .kv__inner {
    grid-template-columns: 1fr;
  }

  .kv__content {
    margin-bottom: 0;
    width: 102%;
    margin-left: -0.6%;
  }

  .kv__title {
    justify-content: center;
  }
  .kv__lead {
    text-align: center;
  }

  .kv-entry-wrap-sp {
    text-align: center;
  }

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

  .kv-entry-sp {
    display: inline-block;
  }

  .kv__visual {
    height: 288px;
    margin-right: 0;
    margin-top: -36px;
  }

  .kv-person {
    object-position: center bottom;
    height: 100%;
    width: 100%;
  }

  .kv-person--base {
    transform: translateX(16px) scale(0.99);
  }

  .kv-person--base.is-leaving {
    transform: translateX(-14px) scale(0.99);
  }

  .kv-rotate-text {
    width: clamp(200px, 45vw, 320px);
    right: -8%;
    top: 40%;
  }

  .site-header {
    padding: 12.6px 0;
  }

  .site-header__inner {
    flex-wrap: nowrap;
    align-items: center;
    position: static;
    width: 100%;
    padding-inline: 5.2%;
  }

  .site-logo {
    justify-content: flex-start;
    flex: 0 0 auto;
  }

  .entry-button {
    position: relative;
    z-index: 3;
    margin-inline: auto 0;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 3;
  }

  .site-nav {
    margin-left: 0;
    width: 100%;
    height: 100vh;
    order: 0;
    position: fixed;
    inset: 0;
    background: white;
    border-radius: 0 0 26px 26px;
    padding: 67px 7.7% 40px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-18px);
    transition:
      opacity 0.24s ease,
      transform 0.24s ease,
      visibility 0.24s ease;
  }

  .site-nav__list--desktop {
    display: none;
  }

  .site-nav .kv-entry {
    margin-top: 0;
    margin-inline: auto;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu__section {
    padding: 0 10px 12px;
    margin-bottom: 14px;
  }

  .mobile-menu__heading {
    margin: 0;
    font-size: 36px;
    line-height: 1.45;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #dfdfdf;
    padding-bottom: 12px;
  }

  .mobile-menu__heading a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;

    font-family: "Zen Kaku Gothic New", sans-serif;
    line-height: 180%;
    letter-spacing: 4%;
  }

  .mobile-menu__list {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-menu__list a {
    color: var(--color-text-body);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
    font-family: "Zen Kaku Gothic New", sans-serif;
    letter-spacing: 4%;
  }

  .mobile-menu__list--numbered a {
    justify-content: flex-start;
  }

  .mobile-menu__arrow {
    margin-left: auto;
    line-height: 1;
  }

  .mobile-menu__circle-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu__footer {
    padding: 4px 10px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .mobile-menu__footer .mobile-menu__policy {
    color: #6b6b6b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 20px;
  }

  .site-header.is-menu-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-header.is-menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

.section-heading {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(2px, calc(1.3540051679586562px + 0.17226528854435832vw), 4px);
  margin: 0;
  color: var(--color-text-body);
}

.section-heading__main {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: clamp(
    32px,
    calc(20.372093023255815px + 3.10077519379845vw),
    68px
  );
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, calc(17.6640826873385px + 2.756244616709733vw), 60px);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading__main::before {
  content: "";
  position: absolute;
  left: 0.4em;
  top: 50%;
  height: 0.767em;
  aspect-ratio: 21/56;
  border-radius: 2px;
  background: var(
    --color-main-gradient,
    linear-gradient(180deg, #58fef9 0%, #6bffa1 100%)
  );
  transform: translateY(-54%) skewX(-24deg);
  transform-origin: center;
}

@media (max-width: 768px) {
  .section-heading__main::before {
    height: 0.97em;
  }
}

.section-heading__sub {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(
    10px,
    calc(6.7700258397932815px + 0.8613264427217916vw),
    20px
  );
  padding-left: clamp(
    32px,
    calc(20.372093023255815px + 3.10077519379845vw),
    68px
  );
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.section-heading--ja .section-heading__main {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(20px, calc(14px + 1.6vw), 30px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.section-heading--ja .section-heading__main::before {
  height: 69%;
}

@keyframes marquee-left {
  to {
    transform: translateX(-50%);
  }
}

.top_flow_text {
  margin-top: 60px;
  height: 332px;
  position: relative;
  overflow: hidden;
}
.top_flow_text ._bg_text {
  white-space: nowrap;
  font-family: Syncopate;
  font-size: clamp(
    36px,
    calc(18.580749354005164px + 4.645133505598623vw),
    89.93px
  );
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
}

.top_flow_text ._bg_text_top {
  font-weight: 700;
}

.top_flow_text ._bg_text ul {
  display: inline-flex;
  gap: 0;
}

.top_flow_text ._bg_text li {
  margin-inline: 0 110px;
  position: relative;
  display: inline-block;
}

.top_flow_text ._bg_text ul:first-child li:first-child {
  margin-left: 0px;
}

.top_flow_text ._bg_text ul:last-child li:last-child {
  margin-right: 110px;
  margin-left: 0;
}

.top_flow_text ._bg_text li:after {
  content: "";
  position: absolute;
  left: -4.4%;
  top: 50%;
  height: 60.6%;
  aspect-ratio: 21/56;
  border-radius: 2px;
  transform: translateY(-50%) skewX(-24deg);
  transform-origin: center;
}

.top_flow_text ._bg_text_top li:nth-of-type(odd):after {
  background: var(--color-accent-pink);
}

.top_flow_text ._bg_text_top li:nth-of-type(even):after {
  background: var(--color-accent-navy);
}

.top_flow_text ._bg_text_bottom li:nth-of-type(odd):after {
  background: var(--color-accent-green);
}

.top_flow_text ._bg_text_bottom li:nth-of-type(even):after {
  background: var(--color-accent-yellow);
}

.top_flow_text ._bg_text_top {
  display: flex;
  width: max-content;
  height: 100px;
  position: absolute;
  top: 48px;
  animation: marquee-left 40s linear infinite;
}
.top_flow_text ._bg_text_bottom {
  display: flex;
  width: max-content;
  height: 100px;
  position: absolute;
  bottom: 15px;
  animation: marquee-left 40s linear infinite reverse;
}
.top_flow_text ._people {
  width: 1440px;
  position: absolute;
  left: 50.5%;
  overflow: visible;
  pointer-events: none;
}

.top_flow_text ._people_top {
  top: 8px;
}

.top_flow_text ._people_bottom {
  bottom: 8px;
}

@media screen and (max-width: 600px) {
  .top_flow_text {
    height: 160px;
    margin-top: 47px;
  }

  .top_flow_text ._bg_text li {
    padding-left: 0px;
    margin-inline: 24px;
  }

  .top_flow_text ._bg_text_top {
    height: 50px;
    top: 32px;
  }
  .top_flow_text ._bg_text_bottom {
    height: 50px;
    bottom: 0px;
  }

  .top_flow_text ._people {
    width: 500px;
  }

  .top_flow_text ._people img {
    width: 100%;
    height: auto;
  }

  .top_flow_text ._people_top {
    top: 0px;
  }
  .top_flow_text ._people_bottom {
    bottom: 0px;
  }

  .top_flow_text ._bg_text ul:last-child li:last-child {
    margin-right: 24px;
  }
}
.top_flow_text ._people .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.value {
  padding: clamp(0px, calc(-38.75968992248062px + 10.335917312661499vw), 120px)
    0 clamp(90px, calc(67px + 6.8vw), 170px);
}

.value .section-heading__main {
  font-weight: 700;
  font-size: clamp(
    18px,
    calc(17.354005167958658px + 0.17226528854435832vw),
    20px
  );
  line-height: 180%;
  letter-spacing: 4%;
  padding-left: clamp(30px, calc(24px + 0.69vw), 34px);
  margin-bottom: clamp(
    12px,
    calc(9.416020671834625px + 0.6890611541774333vw),
    20px
  );
  width: fit-content;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.value .section-heading__main::before {
  height: 1.4em;
}

.value__inner {
  width: 78.1%;

  margin: 0 auto;
}

.value__lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  margin-bottom: clamp(
    30px,
    calc(13.850129198966407px + 4.3066322136089585vw),
    80px
  );
}

.value__catch {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(
    22px,
    calc(16.186046511627907px + 1.550387596899225vw),
    40px
  );
  line-height: 200%;
  letter-spacing: 4%;
  width: fit-content;
}

.value__lead {
  font-size: clamp(14px, calc(12.7px + 0.34453vw), 18px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 280%;
  letter-spacing: 4%;
}

.value__panel {
  background: #f9f9f9;
  box-shadow: 0px 8px 16px 0px #0000001a;
  border-radius: clamp(
    20px,
    calc(7.080103359173126px + 3.4453057708871664vw),
    60px
  );
  width: 100%;
  margin-inline: auto;
  position: relative;
  min-height: 540px;
  height: fit-content;
  overflow: hidden;
  padding-inline: clamp(
    20px,
    calc(0.620155038759691px + 5.167958656330749vw),
    80px
  );
}

.value__points {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  transform: translateY(75%);
  position: relative;
  z-index: 2;
}

.value__point h3 {
  font-size: clamp(
    16px,
    calc(15.354005167958656px + 0.17226528854435832vw),
    18px
  );
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 4%;
}

.value__point p {
  font-size: clamp(13px, 0.95vw, 16px);

  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(
    14px,
    calc(13.354005167958656px + 0.17226528854435832vw),
    16px
  );
  line-height: 180%;
  letter-spacing: 4%;
}

.value__point h3 + p {
  margin-bottom: 18px;
}

.value__venn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: grid;
  grid-template-columns: 1fr 1fr;
}

.value__venn img:first-child {
  --venn-x: 10%;
  transition-delay: 0s;
}

.value__venn img:last-child {
  --venn-x: -10%;
}

.value__venn img {
  --venn-x: 0%;
  width: clamp(190px, calc(128.63049095607235px + 16.365202411714037vw), 380px);
  height: auto;
  display: block;
  opacity: 0;
  transform: translate(var(--venn-x), 40px) scale(0.8);
  transform-origin: center bottom;
  transition:
    transform 0.78s cubic-bezier(0.2, 1.25, 0.35, 1),
    opacity 0.42s ease;
}

.value__venn.is-visible img {
  opacity: 1;
  transform: translate(var(--venn-x), 0) scale(1);
}

.value__people {
  position: absolute;
  bottom: 0;
  opacity: 0;
  transform: translateY(72px);
  transform-origin: center bottom;
}

.value__people--left {
  width: clamp(114px, calc(95.58914728682171px + 4.909560723514212vw), 171px);
  left: clamp(20px, 4vw, 60px);
  animation-delay: 0.4s !important;
}

.value__people--right {
  width: clamp(172px, calc(144.22222222222223px + 7.4074074074074066vw), 258px);
  right: clamp(20px, 4vw, 60px);
  animation-delay: 0.55s !important;
}

.value__venn.is-visible ~ .value__people {
  animation: valuePeoplePop 0.4s cubic-bezier(0.2, 1.2, 0.35, 1) forwards;
  animation-fill-mode: forwards;
}

@keyframes valuePeoplePop {
  0% {
    opacity: 0;
    transform: translateY(72px);
  }

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

.value__team-photo-Parallax,
.great-environment__wide-photo-Parallax {
  margin-top: clamp(80px, calc(74.1px + 1.68634064vw), 100px);
  width: 72%;
  aspect-ratio: 110 / 28;
  position: relative;
  border-top-right-radius: clamp(
    10px,
    calc(0.3100775193798455px + 2.5839793281653747vw),
    40px
  );
  border-bottom-right-radius: clamp(
    10px,
    calc(0.3100775193798455px + 2.5839793281653747vw),
    40px
  );
  overflow: visible;
  background: none;
}

.great-environment__wide-photo-Parallax {
  margin-top: -80px;

  border-top-left-radius: clamp(
    10px,
    calc(0.3100775193798455px + 2.5839793281653747vw),
    40px
  );
  border-bottom-left-radius: clamp(
    10px,
    calc(0.3100775193798455px + 2.5839793281653747vw),
    40px
  );
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin-inline: auto 0;
}

.value__team-photo-Parallax::after,
.great-environment__wide-photo-Parallax::after {
  content: "";
  position: absolute;
  top: 30px;
  right: -50px;
  bottom: -30px;
  left: 0;
  background: url("/images/kv-bg-shape.jpg") center / cover no-repeat;
  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
}

.great-environment__wide-photo-Parallax::after {
  right: 0;
  left: -50px;
}

.value__team-photo,
.great-environment__wide-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.value__team-photo img,
.great-environment__wide-photo img {
  --value-team-parallax-y: 0px;
  position: relative;
  display: block;
  width: 100%;
  object-fit: cover;
  margin-top: -36px;
  transform: translate3d(0, var(--value-team-parallax-y), 0) scale(1.08);
  will-change: transform;
}

.great-environment__wide-photo img {
  margin-top: -72px;
}

@media (max-width: 1024px) {
  .value {
    margin-top: 50px;
  }

  .value__lead-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .value__inner {
    width: 84.62%;
  }

  .value .section-heading__main::before,
  .page-evaluation-system .sv-hero .section-heading__main::before,
  .page-404 .section-heading__main::before {
    top: 25%;
  }

  .value__catch {
    margin-inline: auto;
  }

  .value__lead {
    line-height: 220%;
  }

  .value__panel {
    width: 106%;
    margin-left: -3%;
    height: 861px;
  }

  .value__points {
    flex-direction: column;
    gap: 289px;
    transform: translateY(289px);
  }

  .value__point {
    text-align: left;
  }

  .value__point h3 + p {
    margin-bottom: 20px;
  }

  .value__venn {
    grid-template-columns: 1fr;
    gap: 237px;
    width: 100%;
    top: 40px;
    transform: translate(-50%, 0);
  }

  .value__venn img {
    width: 190px;
  }

  .value__venn img:first-child {
    margin-inline: 0 auto;
  }

  .value__venn img:last-child {
    margin-inline: auto 0;
  }

  .value__people--left {
    top: 149px;
    right: 20px;
    left: auto;
  }

  .value__people--right {
    bottom: 158px;
    left: 20px;
    right: auto;
  }

  .value__team {
    width: 100%;
    border-radius: 26px;
  }

  .value__team-photo-Parallax,
  .great-environment__wide-photo-Parallax {
    width: 83.5%;
  }

  .value__team-photo img {
    margin-top: -16px;
    transform: translate3d(0, var(--value-team-parallax-y), 0) scale(1);
  }

  .great-environment__wide-photo img {
    margin-top: -24px;
    transform: translate3d(0, var(--value-team-parallax-y), 0) scale(1);
  }

  .value__team-photo-Parallax::after,
  .great-environment__wide-photo-Parallax::after {
    top: 9px;
    right: -14px;
    bottom: -9px;
  }

  .great-environment__wide-photo-Parallax::after {
    right: 0;
    left: -14px;
  }

  .job-satisfaction .job-satisfaction__heading .section-heading__main::before,
  .great-environment__heading .section-heading__main::before {
    top: 25%;
    height: 44%;
  }
}

.job-satisfaction {
  padding-bottom: clamp(80px, calc(60px + 5.5vw), 200px);
}

.page-has-sticky-parallax .job-satisfaction {
  padding: clamp(80px, calc(72px + 1.8087855297157622vw), 110px) 0
    clamp(20px, calc(-60px + 5vw), 120px);
}

.job-satisfaction__inner {
  width: 78.1%;
  margin: 0 auto;
}

.job-satisfaction__cards {
  margin-top: clamp(
    30px,
    calc(24.444444444444443px + 1.4814814814814816vw),
    60px
  );
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 1.28vw, 20px);
  align-items: stretch;
}

.job-satisfaction-card {
  padding: 20px
    clamp(10px, calc(6.124031007751938px + 1.03359173126615vw), 22px) 36px;
  border-radius: clamp(
    10px,
    calc(6.296296296296296px + 0.9876543209876543vw),
    30px
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #232323;
  height: 100%;
  position: relative;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.job-satisfaction-card--pink {
  background: var(--color-accent-pink);
}

.job-satisfaction-card--blue {
  background: var(--color-accent-navy);
  color: #ffffff;
}

.job-satisfaction-card--yellow {
  background: var(--color-accent-yellow);
}

.job-satisfaction-card--coral {
  background: var(--color-accent-red);
  color: #ffffff;
}

.job-satisfaction-card--green {
  background: var(--color-accent-green);
}

.job-satisfaction-card__number {
  line-height: 1;
  font-weight: 700;

  font-size: clamp(16px, calc(12.124031007751938px + 1.03359173126615vw), 28px);
  letter-spacing: 0%;
  text-align: center;
}

.job-satisfaction-card__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, calc(16.06201550387597px + 0.516795865633075vw), 24px);
  line-height: 180%;
  letter-spacing: 4%;
  text-align: center;
}

.job-satisfaction-card__icon {
  width: clamp(60px, calc(40.62015503875969px + 5.167958656330749vw), 120px);
}

.job-satisfaction-card__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(
    13px,
    calc(12.677002583979329px + 0.08613264427217916vw),
    14px
  );
  line-height: 180%;
  letter-spacing: 4%;
  text-align: left;
}

.job-satisfaction-card__view-more {
  position: absolute;
  left: 50%;
  bottom: clamp(-72px, -4.6vw, -32px);
  width: 50.5%;
  opacity: 0;
  transform: translateX(-50%) scale(0.8);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  pointer-events: none;
}

.job-satisfaction-card__view-more svg {
  display: block;
  width: 100%;
  height: auto;
}

@media (hover: hover) and (pointer: fine) {
  .job-satisfaction-card:hover {
    opacity: 0.7;
  }

  .job-satisfaction-card.js-fade.is-visible:hover {
    opacity: 0.7;
  }

  .job-satisfaction-card:hover .job-satisfaction-card__view-more,
  .job-satisfaction-card:focus-visible .job-satisfaction-card__view-more {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }

  .job-satisfaction-card:hover .job-satisfaction-card__view-more svg,
  .job-satisfaction-card:focus-visible .job-satisfaction-card__view-more svg {
    animation: kv-spin 7s linear infinite;
  }
}

.great-environment {
  position: relative;
  padding: clamp(38px, 5vw, 60px) 0 140px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
    url("/images/kv-bg-shape.jpg") center / cover no-repeat;
}

.great-environment .entry-section__link {
  margin-top: clamp(
    14px,
    calc(10.77002583979328px + 0.8613264427217916vw),
    24px
  );
}

.great-environment__inner {
  width: 78.1%;
  margin: 0 auto;
}

.great-environment__intro {
  display: grid;
  position: relative;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  margin-top: clamp(
    20px,
    calc(7.080103359173126px + 3.4453057708871664vw),
    60px
  );
}

.great-environment__side {
  padding-top: 40px;
}

.great-environment__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(
    14px,
    calc(12.708010335917313px + 0.34453057708871665vw),
    18px
  );
  line-height: 180%;
  letter-spacing: 4%;
}

.great-environment__photo--main {
  margin-inline: auto;
  width: clamp(230px, calc(155.7105943152455px + 19.810508182601204vw), 460px);
}

.great-environment__photo--rear {
  position: absolute;
  width: clamp(98px, calc(34.69250645994832px + 16.881998277347115vw), 294px);
  right: 0;
}

.staff-voice {
  padding: clamp(89px, calc(54.6282722513089px + 8.81326352530541vw), 190px) 0
    clamp(0px, calc(-44.24083769633508px + 11.343804537521814vw), 130px);
  overflow: hidden;
}

.staff-voice__inner {
  width: 78.1%;

  margin: 0 auto;
}

.staff-voice__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.staff-voice__buttons {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

.staff-voice__arrow--next {
  transform: scale(-1);
}

.staff-voice__arrow svg,
.staff-voice__arrow svg circle,
.staff-voice__arrow svg path {
  transition: all 0.3s ease;
}

.staff-voice__arrow:hover {
  svg {
    fill: var(--color-text-green);
  }

  svg circle {
    stroke: none;
  }

  svg path {
    fill: white;
  }
}

.staff-voice__arrow.swiper-button-disabled {
  opacity: 0.45;
  cursor: default;
}

.staff-voice__view-more {
  padding-top: 20px;
  grid-column: 1 / -1;
  align-items: center;
  position: relative;
  display: inline-flex;
  gap: 13px;
  transition: opacity 0.3s ease;
}

.staff-voice__view-more::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: var(--color-text-green);
  animation: sdl-x 3s cubic-bezier(1, 0, 0, 1) infinite;
}

.staff-voice__view-more:hover {
  opacity: 0.6;
}

.staff-voice__slider {
  --staff-voice-overhang: clamp(40px, 7vw, 120px);
  margin-top: 24px;
  width: calc(100% + var(--staff-voice-overhang));
  overflow: visible;
  clip-path: inset(0 calc(-1 * var(--staff-voice-overhang)) 0 0);
}

.staff-voice__grid {
  display: flex;
}

.staff-voice-card {
  width: 100%;
  z-index: 2;
}

.staff-voice-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.staff-voice-card__photo-wrap {
  position: relative;
  padding-left: 20px;
  padding-bottom: 20px;
  overflow: hidden;
}

.staff-voice-card__accent {
  position: absolute;
  left: 0;
  right: 10px;
  bottom: 0;
  top: 120px;
}

.staff-voice-card--navy .staff-voice-card__accent {
  background: var(--color-accent-navy);
}

.staff-voice-card--pink .staff-voice-card__accent {
  background: var(--color-accent-pink);
}

.staff-voice-card--yellow .staff-voice-card__accent {
  background: var(--color-accent-yellow);
}

.staff-voice-card--red .staff-voice-card__accent {
  background: var(--color-accent-red);
}

.staff-voice-card__photo-wrap .photowrap {
  width: 100%;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 340/440;
  margin-inline: auto;
  position: relative;
  background-color: #fff;
}
/* 画像のスタイル */
.staff-voice-card__photo-wrap .photowrap img {
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;

  display: block;
  aspect-ratio: 0.78;
  object-fit: cover;
  object-position: center top;
  transform-origin: center center;
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

/* 2枚目の画像は最初透明 */
.staff-voice-card__photo-wrap .photowrap img:last-of-type {
  opacity: 0;
  transition: opacity 0.2s;
}
/* hoverすると2枚目の画像が透明じゃなくなる */
.staff-voice-card__photo-wrap .photowrap:hover img {
  opacity: 1;
}

/* hoverすると2枚目を表示 */
.staff-voice-card__photo-wrap .photowrap:hover img:last-of-type {
  opacity: 1;
}

.staff-voice-card__meta {
  margin-top: clamp(
    8px,
    calc(5.277486910994764px + 0.6980802792321117vw),
    16px
  );
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.staff-voice-card__name {
  font-size: clamp(
    16px,
    calc(14.638743455497382px + 0.34904013961605584vw),
    20px
  );
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 4%;
  white-space: nowrap;
}

.staff-voice-card__name-en {
  font-size: clamp(
    12px,
    calc(11.319371727748692px + 0.17452006980802792vw),
    14px
  );
  font-family: Syncopate;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0%;
  white-space: nowrap;
}

.staff-voice-card__role {
  color: #232323;
  font-size: clamp(13px, calc(12.7px + 0.086vw), 14px);
  line-height: 1.8;
  letter-spacing: 4%;
}

@media (max-width: 1200px) {
  .job-satisfaction__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .great-environment__intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .great-environment__side {
    padding-top: 0;
  }

  .great-environment__photo--rear {
    margin-top: -110px;
  }

  .staff-voice__slider {
    width: calc(100% + var(--staff-voice-overhang));
    margin-top: 4px;
  }
}

@media (max-width: 767px) {
  .job-satisfaction__inner .section-heading__main::before {
    height: 1.13em;
  }

  .job-satisfaction__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .job-satisfaction__cards > .job-satisfaction-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc((100% - clamp(18px, 1.28vw, 20px)) / 2);
    justify-self: center;
  }

  .great-environment__intro {
    display: flex;
    flex-direction: column-reverse;
  }

  .great-environment__photo--main {
    margin-inline: 0 auto;
  }

  .great-environment__photo--rear {
    bottom: -123px;
  }

  .great-environment__wide-photo-Parallax {
    margin-top: -40px;
  }

  .staff-voice-card__photo-wrap {
    padding-left: 12px;
    padding-bottom: 12px;
  }

  .staff-voice-card {
    width: 81.5%;
    margin-inline: auto 2.8em;
  }

  .staff-voice-card__accent {
    top: 54px;
  }

  .staff-voice-card__caption-stack {
    top: 8px;
    right: 8px;
    gap: 8px;
  }

  .staff-voice-card__caption-col {
    font-size: 16px;
    padding: 8px;
  }

  .staff-voice__header {
    flex-direction: column;
  }

  .staff-voice__nav {
    justify-content: start;
  }

  .staff-voice__slider {
    width: 100%;
  }
}

.entry-section {
  padding: clamp(80px, calc(45.968586387434556px + 8.726003490401396vw), 180px)
    0 clamp(107px, calc(48.12565445026178px + 15.095986038394415vw), 280px);
  overflow: hidden;
  position: relative;
  background: white;
}

.entry-section__inner {
  width: 78.1%;

  margin: 0 auto;
  align-items: center;
}

.entry-section__text {
  margin-top: clamp(
    20px,
    calc(13.540051679586563px + 1.7226528854435832vw),
    40px
  );

  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(
    14px,
    calc(12.708010335917313px + 0.34453057708871665vw),
    18px
  );
  line-height: 240%;
  letter-spacing: 4%;
}

.entry-section__link {
  margin-top: clamp(14px, calc(5.6px + 2.24vw), 40px);
  display: inline-flex;
  align-items: center;
  color: var(--color-text-green);
  text-decoration: none;

  font-family: Syncopate;
  font-weight: 700;
  font-size: clamp(
    12px,
    calc(11.354005167958656px + 0.17226528854435832vw),
    14px
  );
  gap: clamp(14px, calc(13.031007751937985px + 0.2583979328165375vw), 17px);
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.entry-section__link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, calc(36.770025839793284px + 0.8613264427217916vw), 50px);
  height: clamp(40px, calc(36.770025839793284px + 0.8613264427217916vw), 50px);
  position: relative;
  overflow: hidden;
}

.entry-section__link-icon svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.entry-section__link-icon svg path {
  fill: transparent;
}

.entry-section__link-icon::before,
.entry-section__link-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 2;
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity;
  transition:
    transform 0.45s cubic-bezier(0.3, 0.7, 0.2, 1),
    opacity 0.45s cubic-bezier(0.3, 0.7, 0.2, 1);
}

.entry-section__link-icon::before {
  background: center / 100% 100% no-repeat
    url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30.2854 18.7667C30.5335 18.7678 30.7712 18.8669 30.9467 19.0424C31.1221 19.2178 31.2212 19.4555 31.2223 19.7036L31.2223 28.5424C31.2268 28.6683 31.2058 28.7937 31.1607 28.9112C31.1157 29.0288 31.0474 29.136 30.9599 29.2266C30.8725 29.3172 30.7677 29.3892 30.6518 29.4384C30.5359 29.4876 30.4113 29.513 30.2854 29.513C30.1595 29.513 30.0349 29.4876 29.919 29.4384C29.8031 29.3892 29.6983 29.3172 29.6109 29.2266C29.5235 29.136 29.4552 29.0288 29.4101 28.9112C29.365 28.7937 29.3441 28.6683 29.3485 28.5424L29.3485 21.9663L20.3417 30.9731C20.1659 31.1489 19.9274 31.2477 19.6788 31.2477C19.4302 31.2477 19.1917 31.1489 19.0159 30.9731C18.8401 30.7973 18.7413 30.5588 18.7413 30.3102C18.7413 30.0616 18.8401 29.8231 19.0159 29.6473L28.0227 20.6405L21.4466 20.6405C21.2038 20.6319 20.9739 20.5295 20.8051 20.3547C20.6364 20.1799 20.5421 19.9465 20.5421 19.7036C20.5421 19.4607 20.6364 19.2273 20.8051 19.0525C20.9739 18.8777 21.2038 18.7752 21.4466 18.7667L30.2854 18.7667Z' fill='%2322D2AE'/%3E%3C/svg%3E");
  opacity: 1;
}

.entry-section__link-icon::after {
  background: center / 100% 100% no-repeat
    url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30.2854 18.7667C30.5335 18.7678 30.7712 18.8669 30.9467 19.0424C31.1221 19.2178 31.2212 19.4555 31.2223 19.7036L31.2223 28.5424C31.2268 28.6683 31.2058 28.7937 31.1607 28.9112C31.1157 29.0288 31.0474 29.136 30.9599 29.2266C30.8725 29.3172 30.7677 29.3892 30.6518 29.4384C30.5359 29.4876 30.4113 29.513 30.2854 29.513C30.1595 29.513 30.0349 29.4876 29.919 29.4384C29.8031 29.3892 29.6983 29.3172 29.6109 29.2266C29.5235 29.136 29.4552 29.0288 29.4101 28.9112C29.365 28.7937 29.3441 28.6683 29.3485 28.5424L29.3485 21.9663L20.3417 30.9731C20.1659 31.1489 19.9274 31.2477 19.6788 31.2477C19.4302 31.2477 19.1917 31.1489 19.0159 30.9731C18.8401 30.7973 18.7413 30.5588 18.7413 30.3102C18.7413 30.0616 18.8401 29.8231 19.0159 29.6473L28.0227 20.6405L21.4466 20.6405C21.2038 20.6319 20.9739 20.5295 20.8051 20.3547C20.6364 20.1799 20.5421 19.9465 20.5421 19.7036C20.5421 19.4607 20.6364 19.2273 20.8051 19.0525C20.9739 18.8777 21.2038 18.7752 21.4466 18.7667L30.2854 18.7667Z' fill='%2322D2AE'/%3E%3C/svg%3E");
  transform: translate3d(-12px, 12px, 0);
  opacity: 0;
}

.entry-section__link:hover .entry-section__link-icon svg,
.entry-section__link:focus-visible .entry-section__link-icon svg,
.staff-voice-card:hover .entry-section__link-icon svg,
.jo-appeal-card:hover .entry-section__link-icon svg,
.jo-appeal-card:focus-visible .entry-section__link-icon svg {
  transform: none;
  opacity: 1;
}

.entry-section__link span:first-child {
  transition: opacity 0.3s ease;
}

.entry-section__link:hover span:first-child,
.staff-voice-card:hover span {
  opacity: 0.7;
}

.entry-section__link:hover .entry-section__link-icon::before,
.entry-section__link:focus-visible .entry-section__link-icon::before,
.staff-voice-card:hover .entry-section__link-icon::before,
.jo-appeal-card:hover .entry-section__link-icon::before,
.jo-appeal-card:focus-visible .entry-section__link-icon::before {
  transform: translate3d(12px, -12px, 0);
  opacity: 0;
}

.entry-section__link:hover .entry-section__link-icon::after,
.entry-section__link:focus-visible .entry-section__link-icon::after,
.staff-voice-card:hover .entry-section__link-icon::after,
.jo-appeal-card:hover .entry-section__link-icon::after,
.jo-appeal-card:focus-visible .entry-section__link-icon::after {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.entry-section__visual-wrap {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 58.6%;
  isolation: isolate;
  padding-block: 50px;
}

.entry-section__visual-wrap::before,
.entry-section__visual-wrap::after {
  content: "";
  position: absolute;
  width: 80%;
  aspect-ratio: 2 / 1;
  background: url("/images/kv-bg-shape.jpg") center / cover no-repeat;
  z-index: 1;
  pointer-events: none;
}

.entry-section__visual-wrap::before {
  top: -7%;
  right: -4%;
}

.entry-section__visual-wrap::after {
  left: -5.5%;
  bottom: 15%;
}

.entry-section__visual {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  z-index: 2;
}

@media (max-width: 1200px) {
  .entry-section__inner {
    grid-template-columns: 1fr;
  }

  .entry-section__visual-wrap {
    padding: 14px 0 14px 14px;
  }
}

@media (max-width: 767px) {
  .entry-section__text {
    margin-left: 2%;
  }

  .entry-section__visual {
    margin-top: 54px;
  }

  .entry-section__visual-accent {
    right: 24px;
  }

  .entry-section__visual-wrap {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: calc(100% - 60px);
    margin-inline: auto;
    padding: 0;
  }

  .entry-section__visual-wrap::before {
    top: -14px;
    right: -30px;
    width: 80%;
  }

  .entry-section__visual-wrap::after {
    left: -10px;
    bottom: -26px;
    width: 88%;
  }
}

/* ----- Five Pillars Section ----- */
.five-pillars {
  padding: clamp(80px, calc(70px + 2.5vw), 120px) 0;
}

.five-pillars .five-pillars__heading .section-heading__main {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, calc(16px + 0.5vw), 20px);
  line-height: 180%;
  letter-spacing: 4%;
  padding-left: clamp(30px, 5vw, 33px);
}

.five-pillars .five-pillars__heading .section-heading__main::before {
  left: 0.6em;
  height: 78%;
  top: 50%;
}

.five-pillars .five-pillars__heading .section-heading__sub {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, calc(16.48979591836735px + 1.530612244897959vw), 40px);
  line-height: 160%;
  letter-spacing: 4%;
  padding-left: 0;
  margin-top: clamp(8px, 2vw, 30px);
}

.five-pillars__inner {
  width: 78.125%;
  margin: 0 auto;
}

/* Prevent first-paint flash before .js-fade is attached by JS */
.page-environment .five-pillars__inner,
.page-evaluation-system .five-pillars__inner {
  opacity: 0;
  transform: translateY(24px);
}

.page-environment .five-pillars__inner.js-fade.is-visible,
.page-evaluation-system .five-pillars__inner.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.five-pillars__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 0;
  margin-bottom: clamp(
    40px,
    calc(27.080103359173126px + 3.4453057708871664vw),
    80px
  );
}

.five-pillars__description {
  font-size: clamp(
    14px,
    calc(12.708010335917313px + 0.34453057708871665vw),
    18px
  );
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 4%;
  color: var(--color-text-body);
}

/* Prevent first-paint flash before .js-fade is attached by JS */
.page-environment .five-pillars__heading,
.page-environment .five-pillars__description,
.page-job-openings .jo-intro-text {
  opacity: 0;
  transform: translateY(24px);
}

.page-environment .five-pillars__heading.js-fade.is-visible,
.page-environment .five-pillars__description.js-fade.is-visible,
.page-job-openings .jo-intro-text.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.five-pillars__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  justify-content: center;
  gap: 26px clamp(14px, calc(7.346px + 2.1258503401360542vw), 40px);
  flex-wrap: wrap;
}

.five-pillars-card {
  position: relative;
  width: 100%;
  display: block;
  background: white;
  text-decoration: none;
  color: inherit;
  padding-top: 29px;
  transition: transform 0.01s;
}

.five-pillars-card.js-fade.is-visible:hover {
  transform: translateY(8px);
}

.five-pillars-card__number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Syncopate", sans-serif;
  z-index: 2;
  font-weight: 700;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 4%;
  text-align: center;
}

.five-pillars-card--auxiliary .five-pillars-card__number,
.five-pillars-card--auxiliary .five-pillars-card__title,
.five-pillars-card--auxiliary .five-pillars-card__subtitle,
.five-pillars-card--auxiliary .five-pillars-card__arrow path,
#detail-auxiliary .pillars-detail__section-number,
#detail-auxiliary .pillars-detail__section-name,
#detail-auxiliary .pillars-detail__section-subtitle,
#detail-auxiliary .pillars-detail__benefit-content h4 {
  color: var(--color-accent-green);
  fill: var(--color-accent-green);
}

.five-pillars-card--system .five-pillars-card__number,
.five-pillars-card--system .five-pillars-card__title,
.five-pillars-card--system .five-pillars-card__subtitle,
.five-pillars-card--system .five-pillars-card__arrow path,
#detail-system .pillars-detail__section-number,
#detail-system .pillars-detail__section-name,
#detail-system .pillars-detail__section-subtitle,
#detail-system .pillars-detail__benefit-content h4 {
  color: var(--color-accent-pink);
  fill: var(--color-accent-pink);
}

.five-pillars-card--vacation .five-pillars-card__number,
.five-pillars-card--vacation .five-pillars-card__title,
.five-pillars-card--vacation .five-pillars-card__subtitle,
.five-pillars-card--vacation .five-pillars-card__arrow path,
#detail-vacation .pillars-detail__section-number,
#detail-vacation .pillars-detail__section-name,
#detail-vacation .pillars-detail__section-subtitle,
#detail-vacation .pillars-detail__benefit-content h4 {
  color: var(--color-accent-yellow);
  fill: var(--color-accent-yellow);
}

.five-pillars-card--support .five-pillars-card__number,
.five-pillars-card--support .five-pillars-card__title,
.five-pillars-card--support .five-pillars-card__subtitle,
.five-pillars-card--support .five-pillars-card__arrow path,
#detail-support .pillars-detail__section-number,
#detail-support .pillars-detail__section-name,
#detail-support .pillars-detail__section-subtitle,
#detail-support .pillars-detail__benefit-content h4 {
  color: var(--color-accent-navy);
  fill: var(--color-accent-navy);
}

.five-pillars-card--peace .five-pillars-card__number,
.five-pillars-card--peace .five-pillars-card__title,
.five-pillars-card--peace .five-pillars-card__subtitle,
.five-pillars-card--peace .five-pillars-card__arrow path,
#detail-peace .pillars-detail__section-number,
#detail-peace .pillars-detail__section-name,
#detail-peace .pillars-detail__section-subtitle,
#detail-peace .pillars-detail__benefit-content h4 {
  color: var(--color-accent-red);
  fill: var(--color-accent-red);
}

#detail-auxiliary .pillars-detail__benefits {
  border-top: 2px solid var(--color-accent-green);
}

#detail-system .pillars-detail__benefits {
  border-top: 2px solid var(--color-accent-pink);
}

#detail-vacation .pillars-detail__benefits {
  border-top: 2px solid var(--color-accent-yellow);
}

#detail-support .pillars-detail__benefits {
  border-top: 2px solid var(--color-accent-navy);
}

#detail-peace .pillars-detail__benefits {
  border-top: 2px solid var(--color-accent-red);
}

.five-pillars-card__image {
  width: 100%;
  border-radius: clamp(
    5.5px,
    calc(4.046511627906977px + 0.3875968992248062vw),
    10px
  );
  overflow: hidden;
}

.five-pillars-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.five-pillars-card__content {
  padding: 4px 0 2px;
  text-align: center;
}

.five-pillars-card__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(
    16px,
    calc(15.354005167958656px + 0.17226528854435832vw),
    18px
  );

  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 4%;
  text-align: center;
}

.five-pillars-card__subtitle {
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 180%;
  letter-spacing: 4%;
  text-align: center;
}

.five-pillars-card__arrow {
  text-align: center;
  width: clamp(24px, calc(23px + 0.51vw), 30px);
  margin-inline: auto;
}

@media (max-width: 1200px) {
  .five-pillars__inner {
    grid-template-columns: 1fr;
    gap: clamp(40px, calc(30px + 2vw), 60px);
  }
}

@media (max-width: 768px) {
  .five-pillars__inner {
    width: 84.53%;
  }

  .five-pillars__content {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .five-pillars__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .five-pillars-card {
    padding-top: 0px;
    width: calc((100% - 32px) / 3);
  }

  .five-pillars-card__number {
    display: none;
  }
}

/* ----- Pillars Detail Section ----- */
.pillars-detail {
  padding: clamp(40px, calc(20.62015503875969px + 5.167958656330749vw), 100px) 0;
}

.pillars-detail__inner {
  width: 100%;
  margin: 0 0 0 auto;
  display: grid;
  grid-template-columns: 255px 1fr;
  gap: 9.44%;
  align-items: start;
}

.pillars-detail__nav {
  position: sticky;
  top: 115px;
  background: white;
  overflow: hidden;
  padding-left: 24%;
}

.pillars-detail__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pillars-detail__nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(16px, calc(12px + 1vw), 24px) 0;
  text-decoration: none;
  color: #b7b7b7;
  transition: all 0.3s ease;
  border-bottom: 1px solid #dfdfdf;
}

.pillars-detail__nav-text-wrapper {
  display: flex;
  gap: 8px;
}

.pillars-detail__nav-number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  transition: all 0.3s ease;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 4%;
}

.pillars-detail__nav-link svg path {
  transition: all 0.3s ease;
}

/* 01 補助 - green */
.pillars-detail__nav-link[href="#detail-auxiliary"]:hover,
.pillars-detail__nav-link[href="#detail-auxiliary"].is-active,
.pillars-detail__nav-link[href="#detail-auxiliary"]:hover svg path,
.pillars-detail__nav-link[href="#detail-auxiliary"].is-active svg path {
  color: var(--color-accent-green);
  fill: var(--color-accent-green);
}

/* 02 制度 - pink */
.pillars-detail__nav-link[href="#detail-system"]:hover,
.pillars-detail__nav-link[href="#detail-system"].is-active,
.pillars-detail__nav-link[href="#detail-system"]:hover svg path,
.pillars-detail__nav-link[href="#detail-system"].is-active svg path {
  color: var(--color-accent-pink);
  fill: var(--color-accent-pink);
}

/* 03 休暇 - yellow */
.pillars-detail__nav-link[href="#detail-vacation"]:hover,
.pillars-detail__nav-link[href="#detail-vacation"].is-active,
.pillars-detail__nav-link[href="#detail-vacation"]:hover svg path,
.pillars-detail__nav-link[href="#detail-vacation"].is-active svg path {
  color: var(--color-accent-yellow);
  fill: var(--color-accent-yellow);
}

/* 04 サポート - navy */
.pillars-detail__nav-link[href="#detail-support"]:hover,
.pillars-detail__nav-link[href="#detail-support"].is-active,
.pillars-detail__nav-link[href="#detail-support"]:hover svg path,
.pillars-detail__nav-link[href="#detail-support"].is-active svg path {
  color: var(--color-accent-navy);
  fill: var(--color-accent-navy);
}

/* 05 安心 - red */
.pillars-detail__nav-link[href="#detail-peace"]:hover,
.pillars-detail__nav-link[href="#detail-peace"].is-active,
.pillars-detail__nav-link[href="#detail-peace"]:hover svg path,
.pillars-detail__nav-link[href="#detail-peace"].is-active svg path {
  color: var(--color-accent-red);
  fill: var(--color-accent-red);
}

.pillars-detail__nav-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 4%;
  width: 7.2em;
}

.pillars-detail__nav-text small {
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 180%;
  letter-spacing: 4%;
}

.pillars-detail__content {
  display: flex;
  flex-direction: column;
  gap: clamp(60px, calc(53.54005167958656px + 1.7226528854435832vw), 80px);
}

.pillars-detail__section {
  box-shadow: 0px 8px 16px 0px #0000001a;
  background: #f9f9f9;
  padding-top: 40px;
  padding-right: clamp(20px, calc(-5.5px + 6.61vw), 100px);
  padding-bottom: 60px;
  padding-left: clamp(20px, calc(-5.5px + 6.61vw), 100px);
  border-top-left-radius: clamp(
    30px,
    calc(20.816326530612244px + 2.5510204081632653vw),
    60px
  );
  border-bottom-left-radius: clamp(
    30px,
    calc(20.816326530612244px + 2.5510204081632653vw),
    60px
  );
}

.pillars-detail__section:last-child {
  border-bottom: none;
}

.pillars-detail__section-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
  margin-bottom: clamp(
    30px,
    calc(20.816326530612244px + 2.5510204081632653vw),
    60px
  );
}

.pillars-detail__section-title {
  margin: 0;
  color: var(--color-text-body);

  align-self: center;
  display: flex;
  flex-direction: column;
}

.pillars-detail__section-name {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, calc(18px + 1vw), 40px);
  line-height: 180%;
  letter-spacing: 4%;
}

.pillars-detail__section-number {
  font-family: Syncopate;
  font-weight: 700;
  font-size: clamp(16px, calc(14px + 0.5vw), 22px);
  line-height: 180%;
  letter-spacing: 4%;
  padding-top: 0.4em;
}

.pillars-detail__section-subtitle {
  font-family: Syncopate;
  font-weight: 700;
  font-size: clamp(
    12px,
    calc(9.551020408163264px + 0.6802721088435374vw),
    20px
  );
  line-height: 100%;
  letter-spacing: 0%;
}

.pillars-detail__section-image {
  width: clamp(160px, calc(108.3204134366925px + 13.781223083548666vw), 320px);
  border-radius: clamp(
    10px,
    calc(6.7700258397932815px + 0.8613264427217916vw),
    20px
  );
  overflow: hidden;
  margin-top: 30px;
}

.pillars-detail__section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pillars-detail__section-description {
  font-size: clamp(14px, calc(13px + 0.3vw), 18px);
  color: var(--color-text-body);

  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(
    14px,
    calc(12.775510204081632px + 0.3401360544217687vw),
    18px
  );
  line-height: 180%;
  letter-spacing: 4%;
  margin-top: 18px;
}

.pillars-detail__benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: clamp(
    30px,
    calc(20.310077519379846px + 2.5839793281653747vw),
    60px
  );

  gap: clamp(30px, calc(26.938px + 0.85034vw), 40px) 80px;
}

.pillars-detail__benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pillars-detail__benefit-icon {
  width: clamp(80px, calc(63.85012919896641px + 4.3066322136089585vw), 130px);
}

.pillars-detail__benefit-icon img {
  width: 100%;
}

.pillars-detail__benefit-content h4 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: var(--color-text-body);
  margin: 12px 0 4px 0;
  font-weight: 700;
  font-size: clamp(
    18px,
    calc(16.163265306122447px + 0.5102040816326531vw),
    24px
  );
  line-height: 180%;
  letter-spacing: 4%;
  text-align: center;
}

.pillars-detail__benefit-content p {
  font-size: clamp(14px, calc(13px + 0.3vw), 16px);
  color: var(--color-text-body);

  font-weight: 500;
  line-height: 180%;
  letter-spacing: 4%;
}

@media (max-width: 1000px) {
  .pillars-detail__inner {
    width: 95%;
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: clamp(40px, calc(30px + 2vw), 60px);
  }

  .pillars-detail__nav {
    display: none;
  }

  .pillars-detail__nav-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
  }

  .pillars-detail__nav-link {
    border-bottom: none;
    border-right: 1px solid #f0f0f0;
  }

  .pillars-detail__nav-link:last-child {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .pillars-detail__nav-list {
    grid-template-columns: 1fr;
  }

  .pillars-detail__nav-link {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
  }

  .pillars-detail__nav-link:last-child {
    border-bottom: none;
  }

  .pillars-detail__section-header {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "title image"
      "desc desc";
    column-gap: 14px;
    row-gap: 20px;
    align-items: start;
    text-align: left;
    margin-inline: 3%;
  }

  .pillars-detail__section-header > div:first-child {
    display: contents;
  }

  .pillars-detail__section-title {
    grid-area: title;
  }

  .pillars-detail__section-image {
    grid-area: image;
    margin-top: 0;
    justify-self: end;
  }

  .pillars-detail__benefit-content p {
    text-align: left;
  }

  .pillars-detail__section-description {
    grid-area: desc;
    margin-top: 0;
  }

  .pillars-detail__benefits {
    grid-template-columns: 1fr;
    margin-inline: 6%;
  }

  .pillars-detail__benefit-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

.site-footer {
  background: linear-gradient(135deg, #a8dfcc 0%, #86d2e5 100%);
  border-radius: clamp(
      30px,
      calc(7.390180878552972px + 6.029285099052541vw),
      100px
    )
    clamp(30px, calc(7.390180878552972px + 6.029285099052541vw), 100px) 0 0;
  overflow: hidden;
}

.site-footer__main {
  padding: 98px 0 24px;
}

.site-footer__inner {
  width: 78.1%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(420px, 1fr);
}

.site-footer .site-footer__left {
  text-align: left;
}

.site-footer .kv__content {
  transform: scale(0.78);
  margin-left: -8%;
  margin-bottom: 40px;
}

.site-footer .kv__title {
  justify-content: start;
}

.site-footer .kv__lead {
  text-align: left;
}

.site-footer .kv-entry {
  transform: scale(1.3);
  margin-left: 10%;
}

.site-footer__right {
  padding-top: 6px;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: 129fr 93fr 178fr;
  gap: 40px;
  width: 80%;
  white-space: nowrap;
  margin-inline: auto;
}

.site-footer__nav-col h3,
.site-footer__nav-col h3 a {
  text-decoration: none;

  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: 4%;
  color: #232323;
}

.site-footer__nav-col ul {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.site-footer__nav-col a {
  font-size: 15px;
  text-decoration: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 180%;
  letter-spacing: 4%;
}

.site-footer__right a,
.site-footer__legal a,
.site-footer__pagetop {
  transition: opacity 0.2s ease;
}

.site-footer__right a:hover,
.site-footer__legal a:hover,
.site-footer__pagetop:hover {
  opacity: 0.7;
}

.site-footer__info {
  grid-column: 1 / 2;
  margin-top: 6px;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-footer__brand img {
  width: clamp(140px, calc(28.059701492537314px + 11.194029850746269vw), 200px);
  height: auto;
}

.site-footer__address {
  margin-top: 18px;
  font-style: normal;
  display: grid;
  gap: 8px;
}

.site-footer__address p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 4%;
  display: flex;
  align-items: center;
}

.site-footer__legal {
  grid-column: 1 / -1;
  margin-top: 40px;
  text-align: center;
  display: grid;
  gap: 8px;
}

.site-footer__legal a,
.site-footer__legal p {
  text-decoration: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 4%;
  text-align: center;
  color: #6b6b6b;
}

.site-footer__pagetop-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.65);
  padding: 36px 0 46px;
}

.site-footer__pagetop {
  width: min(100% - 32px, 520px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  text-decoration: none;
}

.site-footer__pagetop .font-en {
  font-family: Syncopate;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

@media (max-width: 1200px) {
  .site-footer__inner {
    width: min(100% - 32px, 1120px);
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .site-footer__nav {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__nav-col:last-child {
    grid-column: 1 / -1;
  }

  .site-footer__info,
  .site-footer__legal {
    grid-column: 1 / -1;
    width: 80%;
    margin-inline: auto;
  }
}

@media (max-width: 767px) {
  .site-footer__main {
    padding: 40px 0 18px;
  }

  .site-footer .kv__lead {
    font-size: 14px;
  }

  .site-footer .kv__content {
    margin-bottom: 0;
  }

  .site-footer .kv-entry {
    transform: scale(1.265);
    margin-left: 12%;
    margin-top: 48px;
  }

  .site-footer__nav {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
  }

  .site-footer__nav-col ul {
    margin-top: 8px;
    gap: 4px;
  }

  .site-footer__nav-col:first-child {
    grid-row: span 2;
  }

  .site-footer__nav-col:last-child {
    grid-column: auto;
  }

  .site-footer__info,
  .site-footer__legal {
    margin-top: 16px;
    width: 100%;
  }

  .site-footer__pagetop-wrap {
    padding: 30px 0 60px;
  }

  .site-footer__pagetop {
    gap: 16px;
  }
}

/* ============================================================
   Staff Voice Page
   ============================================================ */

.page-has-sticky-parallax {
  --sv-parallax-overlap: clamp(36px, 7vw, 120px);
}

.page-has-sticky-parallax .sv-hero {
  position: sticky;
  top: var(--site-header-height);
  z-index: 0;
}

.page-has-sticky-parallax .sv-section:first-of-type {
  margin-top: calc(-1 * var(--sv-parallax-overlap));
  padding-top: calc(
    clamp(50px, calc(30.62015503875969px + 5.167958656330749vw), 110px) +
      var(--sv-parallax-overlap)
  );
}

.page-has-sticky-parallax .site-footer {
  margin-top: 0;
  position: relative;
  z-index: 3;
}

/* ----- Hero ----- */
.sv-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(30px, calc(17px + 3.45vw), 100px);
  height: clamp(250px, calc(200px + 10vw), 360px);

  margin-bottom: -80px;
}

.sv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/images/kv-bg-shape.jpg") center / cover no-repeat;
  transform: rotate(180deg);
  opacity: 0.5;
  z-index: -1;
}

.sv-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 78.15%;
  margin-inline: auto;
  gap: 40px;
  opacity: 0;
  animation: svHeroInnerFadeIn 0.45s ease 0.14s forwards;
}

@keyframes svHeroInnerFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes svdHeroInnerFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.sv-hero__content {
  flex: 0 0 auto;
}

.sv-hero .section-heading__main {
  font-size: clamp(
    22px,
    calc(13.602067183462532px + 2.239448751076658vw),
    48px
  );
  padding-left: clamp(
    22px,
    calc(10.372093023255815px + 3.10077519379845vw),
    58px
  );
}

.sv-hero .section-heading__sub {
  font-size: clamp(
    12px,
    calc(10.062015503875969px + 0.516795865633075vw),
    18px
  );
  padding-left: clamp(
    22px,
    calc(10.372093023255815px + 3.10077519379845vw),
    58px
  );
}

.sv-hero__heading {
  margin-bottom: 40px;
}

.sv-hero__person {
  width: clamp(130px, calc(87px + 11.3vw), 360px);
  position: absolute;
  right: 10%;
  bottom: 80px;
}

/* ----- Breadcrumb ----- */
.sv-breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 180%;
  letter-spacing: 4%;
  text-align: center;
  color: #232323;
}

@media screen and (max-width: 767px) {
  .sv-breadcrumb ol {
    flex-wrap: wrap;
    width: 80%;
  }
}

.sv-breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.sv-breadcrumb a:hover {
  opacity: 0.7;
}

.sv-breadcrumb [aria-current="page"] {
  color: inherit;
}

/* ----- Section common ----- */
.sv-section {
  padding-block: clamp(50px, calc(30px + 5.2vw), 100px);

  border-top-left-radius: clamp(
    30px,
    calc(26.77002583979328px + 0.8613264427217916vw),
    40px
  );
  border-top-right-radius: clamp(
    30px,
    calc(26.77002583979328px + 0.8613264427217916vw),
    40px
  );

  box-shadow: 0 -12px 24px -16px #1c6f6b1a;

  position: relative;
  z-index: 2;
  background: #fff;
  padding-bottom: clamp(
    80px,
    calc(-8.775510204081627px + 24.65986394557823vw),
    370px
  );
}

.sv-section__inner {
  width: 63.74%;
  margin-inline: auto;
}

/* Prevent first-paint flash before .js-fade is attached by JS */
.page-staff-voice .sv-section__title {
  opacity: 0;
  transform: translateY(24px);
}

.page-staff-voice .sv-section__title.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sv-section .section-heading__main {
  font-size: clamp(
    18px,
    calc(14.326530612244898px + 1.0204081632653061vw),
    30px
  );
  padding-left: clamp(
    30px,
    calc(23.54005167958656px + 1.7226528854435832vw),
    50px
  );
}

.skewed-wrap {
  position: relative;
  height: 160px;
}

.skewed {
  position: absolute;
  top: 100%;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: clamp(1140px, calc(288px + 50vw), 1600px);
  background: #e9f9fa;
  z-index: 0;
  transform: skewY(-12deg);
  transform-origin: top left;
}

@media (max-width: 600px) {
  .skewed {
    top: 76%;
  }
}

/* ----- Grid ----- */
.sv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 19.5%;
  margin-top: clamp(
    40px,
    calc(27.080103359173126px + 3.4453057708871664vw),
    80px
  );
}

/* Prevent first-paint flash before JS adds .js-fade */
.page-staff-voice .sv-grid .staff-voice-card {
  opacity: 0;
  transform: translateY(24px);
}

.page-staff-voice .sv-grid .staff-voice-card.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sv-grid .staff-voice-card__photo-wrap {
  padding-left: clamp(
    14px,
    calc(11.416020671834625px + 0.6890611541774333vw),
    22px
  );
  padding-bottom: clamp(
    14px,
    calc(11.416020671834625px + 0.6890611541774333vw),
    22px
  );
  overflow: visible;
}

.sv-grid .staff-voice-card__accent {
  right: 22px;
  top: 99px;
}

.sv-grid .staff-voice-card__meta {
  margin-top: 20px;
}

.sv-grid .staff-voice-card__name {
  font-size: clamp(
    18px,
    calc(15.416020671834625px + 0.6890611541774333vw),
    26px
  );
}

.sv-grid .staff-voice-card__name-en {
  font-size: clamp(
    13px,
    calc(11.38501291989664px + 0.4306632213608958vw),
    18px
  );
}

.sv-grid .staff-voice-card__role {
  vertical-align: middle;
  margin-top: 0;
  font-size: clamp(
    13px,
    calc(12.031007751937985px + 0.2583979328165375vw),
    16px
  );
}

.sv-grid .entry-section__link {
  margin-top: 0.85em;
  vertical-align: middle;
}

.sv-grid .staff-voice-card__caption-stack {
  position: absolute;
  top: 8%;
  right: -8%;
  z-index: 3;
  display: flex;
  flex-direction: row-reverse;
  gap: 12px;
  pointer-events: none;
}

.sv-grid .staff-voice-card__caption-col {
  height: fit-content;
  display: inline-block;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(
    20px,
    calc(18.70801033591731px + 0.34453057708871665vw),
    24px
  );
  line-height: 1;
  letter-spacing: 8%;
  text-align: center;
  padding: 15% 2px;
  background: #232323;
  color: #ffffff;
}

.sv-card__link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
}

.sv-card__link:hover .photowrap img:first-child {
  opacity: 0;
}

.sv-card__link:hover .photowrap img:last-child {
  opacity: 1;
}

/* Vertical caption text inside the accent strip */
.sv-card__caption {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  white-space: nowrap;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.08em;
  text-align: center;
  pointer-events: none;
}

/* VIEW MORE link */
.sv-card__viewmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--color-text-green, #22d2ae);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: opacity 0.2s;
}

.sv-card__viewmore-arrow {
  font-size: 14px;
  line-height: 1;
}

.sv-card__link:hover .sv-card__viewmore {
  opacity: 0.7;
}

/* ---- Mobile overrides ---- */
@media (max-width: 1024px) {
  .page-has-sticky-parallax {
    --sv-parallax-overlap: clamp(28px, 6vw, 72px);
  }

  .sv-hero__inner {
    width: min(100% - 48px, 1840px);
    gap: 24px;
  }

  .sv-hero__content {
    padding-bottom: 40px;
  }

  .sv-section__inner {
    width: min(100% - 80px, 1840px);
  }
}

@media (max-width: 600px) {
  .page-has-sticky-parallax {
    --sv-parallax-overlap: clamp(24px, 5vw, 48px);
  }

  .sv-hero {
    min-height: auto;
    padding-top: 32px;
  }

  .sv-hero__inner {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-inline: 20px;
    gap: 22px;
  }

  .sv-hero__content {
    max-width: 100%;
    padding-bottom: 0;
  }

  .sv-hero__visual {
    width: 100%;
    height: clamp(190px, 58vw, 280px);
  }

  .sv-section__inner {
    width: 84.53%;
  }

  .sv-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================
   Staff Voice Detail Page
   ============================================================ */

.svd-hero {
  background:
    linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)),
    url("/images/kv-bg-shape.jpg") center / cover no-repeat;
  padding: 59px 0 0;
  margin-top: clamp(
    63px,
    calc(31.34625322997416px + 8.440999138673558vw),
    161px
  );
  position: relative;
}

.svd-hero__top {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 78.13%;
  margin-inline: auto;
  align-items: start;
  top: calc(
    clamp(33px, calc(11.036175710594314px + 5.8570198105081825vw), 101px) * -1
  );
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.svd-hero__top .sv-breadcrumb {
  margin-top: 3.3%;
}

.svd-hero__inner {
  margin-inline: auto;
  display: flex;
  justify-content: center;
  margin-left: 12%;
  opacity: 0;
  animation: svdHeroInnerFadeIn 0.45s ease 0.14s forwards;
}

.svd-hero__name {
  font-size: clamp(
    40px,
    calc(17.39018087855297px + 6.029285099052541vw),
    110px
  );
  font-family: Syncopate;
  font-weight: 700;
  line-height: 90%;
  letter-spacing: 0%;
}

/* Prevent first-paint flash before .js-fade is attached by JS */
.page-staff-voice-detail .svd-hero__name {
  opacity: 0;
  transform: translateY(24px);
}

.page-staff-voice-detail .svd-hero__name.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.staff-profile-sticky {
  position: sticky;
  top: calc(var(--site-header-height) * - 270px);
  z-index: 10;
  pointer-events: none;
  height: 0;
  width: 100%;
}

.svd-hero__profile {
  position: absolute;
  left: 4.44%;
  top: 270px;
  padding: 0;

  width: clamp(252px, calc(248.12403100775194px + 1.03359173126615vw), 264px);

  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(
    14px,
    calc(12.708010335917313px + 0.34453057708871665vw),
    18px
  );
  line-height: 180%;
  letter-spacing: 4%;
}

/* Prevent first-paint flash before .js-fade is attached by JS */
.page-staff-voice-detail .svd-hero__profile,
.page-staff-voice-detail .svd-hero__photo-wrap,
.page-staff-voice-detail .svd-hero__catch {
  opacity: 0;
  transform: translateY(24px);
}

.page-staff-voice-detail .svd-hero__profile.js-fade.is-visible,
.page-staff-voice-detail .svd-hero__photo-wrap.js-fade.is-visible,
.page-staff-voice-detail .svd-hero__catch.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.svd-hero__profile-sp {
  display: none;
}

.svd-hero__jpname {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(
    20px,
    calc(18.70801033591731px + 0.34453057708871665vw),
    24px
  );
  line-height: 180%;
  letter-spacing: 4%;
  margin-top: 6px;
  padding-bottom: 16px;
  border-bottom: #cbcbcb 1px solid;
}

.svd-hero__role {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #232323;
  color: #fff;
  font-size: 11px;
  padding: 0px 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(
    14px,
    calc(13.354005167958656px + 0.17226528854435832vw),
    16px
  );
  line-height: 180%;
  letter-spacing: 4%;
  margin-top: 16px;
  margin-bottom: 2px;
}

.svd-hero__photo-wrap {
  position: relative;
  margin-bottom: -69px;
  width: clamp(240px, calc(117.4869109947644px + 31.413612565445025vw), 600px);
}

.svd-hero__rotating-badge {
  position: absolute;
  bottom: 10px;
  left: -150px;
  width: clamp(100px, calc(60px + 10.42vw), 190px);
  height: auto;
  animation: svd-badge-rotate 12s linear infinite;
  pointer-events: none;
}

@keyframes svd-badge-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.svd-hero__photo-wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 600 / 770;
  object-fit: cover;
  object-position: center top;
  filter: drop-shadow(
    calc(
        -1 * clamp(12px, calc(9.416020671834625px + 0.6890611541774333vw), 20px)
      )
      clamp(12px, calc(9.416020671834625px + 0.6890611541774333vw), 20px) 0
      var(--color-text-green)
  );
}

.svd-hero__catch {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  justify-self: center;
  white-space: nowrap;

  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, calc(14.124031007751938px + 1.03359173126615vw), 30px);
  letter-spacing: 10%;
  line-height: 0.933;
  display: flex;
  flex-direction: column;
  gap: clamp(0px, calc(-6.459948320413437px + 1.6vw), 20px);
  margin-left: clamp(
    14px,
    calc(2.3720930232558146px + 3.10077519379845vw),
    50px
  );
  margin-top: 1.5em;
  margin-bottom: -69px;
}

.svd-content {
  padding: clamp(40px, calc(-8.12661498708011px + 12.833763996554696vw), 189px)
    0 0;
}

.svd-content__inner {
  display: grid;
  grid-template-columns: 26% minmax(0, 1fr);
  gap: 11%;
  align-items: start;
}

.svd-content__sidebar {
  background: linear-gradient(
    270deg,
    rgba(180, 238, 221, 0.4) 0%,
    rgba(152, 231, 240, 0.4) 100%
  );
  height: 100vh;
  width: 100%;
  border-top-right-radius: 40px;
  position: sticky;
  top: var(--site-header-height);
}

.svd-sidebar__profile {
  font-size: 13px;
  line-height: 1.8;
}

.svd-sidebar__jpname {
  margin-top: 8px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}

.svd-sidebar__role {
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #2a2f36;
  color: #fff;
  font-size: 11px;
  padding: 3px 10px;
}

.svd-article {
  width: 82.68%;
}

.svd-block + .svd-block {
  margin-top: clamp(
    49px,
    calc(45.44702842377261px + 0.9474590869939706vw),
    60px
  );
}

.svd-block h2 {
  color: var(--color-text-green);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, calc(16.06201550387597px + 0.516795865633075vw), 24px);
  line-height: 180%;
  letter-spacing: 4%;
  margin-bottom: 20px;
}

.svd-block p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 4%;
  margin-bottom: clamp(
    50px,
    calc(46.770025839793284px + 0.8613264427217916vw),
    60px
  );
}

.svd-block p:last-child {
  margin-bottom: 0;
}

.svd-photo {
  margin: clamp(60px, calc(53.54005167958656px + 1.7226528854435832vw), 80px) 0;
}

.svd-photo img {
  width: 100%;
  border-radius: clamp(
    12px,
    calc(6.186046511627907px + 1.550387596899225vw),
    30px
  );
  display: block;
}

.svd-message {
  padding: clamp(80px, calc(54.16020671834625px + 6.890611541774333vw), 160px) 0
    clamp(0px, calc(-14.693877551020407px + 4.081632653061225vw), 48px);
}

.svd-message__inner {
  width: clamp(350px, calc(60.73298429319368px + 74.17102966841188vw), 1200px);
  max-width: 92%;
  margin-inline: auto;
  position: relative;
  background: white;
  border-radius: clamp(
    20px,
    calc(13.540051679586563px + 1.7226528854435832vw),
    40px
  );
  padding: 40px 70px 60px 70px;
  display: grid;
  grid-template-columns:
    clamp(238px, calc(183.0904392764858px + 14.642549526270457vw), 408px)
    minmax(0, 1fr);
  gap: clamp(40px, calc(36.12403100775194px + 1.03359173126615vw), 52px);
  align-items: center;
}

.svd-message__inner::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(180deg, #58fef9 0%, #6bffa1 100%);
  border-radius: clamp(
    23px,
    calc(16.540051679586563px + 1.7226528854435832vw),
    43px
  );
  z-index: -1;
}

.svd-message__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.svd-message__label {
  color: var(--color-text-green);

  font-family: Syncopate;
  font-weight: 700;
  font-size: 16px;
  line-height: 90%;
  letter-spacing: 0%;
}

.svd-message__photo {
  width: 100%;
  margin-bottom: 12px;
}

.svd-message__info-section {
  display: flex;
  flex-direction: column;
  background: #f5f3f3;
  border-radius: 14px;
  padding: clamp(0px, calc(-9.689922480620154px + 2.5839793281653747vw), 30px);
  gap: 22px;
}

.svd-message__career-section {
  margin-top: 0;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
}

.svd-message__career-title {
  color: var(--color-text-green);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(
    15px,
    calc(14.677002583979329px + 0.08613264427217916vw),
    16px
  );
  line-height: 180%;
  letter-spacing: 4%;
}

.svd-message__career-table {
  width: 100%;
  border-collapse: collapse;

  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(
    15px,
    calc(14.677002583979329px + 0.08613264427217916vw),
    16px
  );
  line-height: 180%;
  letter-spacing: 4%;
}

.svd-message__career-table td {
  padding-bottom: 8px;
  vertical-align: top;
}

.svd-message__career-table td:first-child {
  width: 79px;
}

.svd-message__career-section p {
  border-radius: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.8;

  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(
    15px,
    calc(14.677002583979329px + 0.08613264427217916vw),
    16px
  );
  line-height: 180%;
  letter-spacing: 4%;
}

.svd-related-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 34px);
}

@media (max-width: 1100px) {
  .svd-hero__inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .svd-content__inner {
    grid-template-columns: 1fr;
  }

  .svd-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .svd-hero {
    padding-bottom: 40px;
  }

  .staff-profile-sticky .svd-hero__profile {
    display: none;
  }

  .svd-hero__rotating-badge {
    left: -22px;
    top: 250px;
    bottom: auto;
  }

  .svd-hero__profile-sp {
    display: block;
    position: static;
    margin-left: -11px;
    width: calc(100% + 11px);
    margin-top: 52px;
  }

  /* ── Hero name: left ~48% so it sits beside profile ── */

  .svd-hero__top {
    width: 89.66%;
  }

  .svd-hero__name {
    margin-bottom: 0;
  }

  .svd-hero__jpname {
    margin-top: 4px;
  }

  /* ── Photo + catch: flex row, photo left / vertical catch right ── */
  .svd-hero__inner {
    display: flex;
    justify-content: space-between;
    width: 89.66%;

    align-items: flex-start;
    margin-inline: auto;
  }

  .svd-hero__photo-wrap {
    margin-left: 12px;
    margin-bottom: 0;
  }

  /* Vertical catch phrase — narrow right column */
  .svd-hero__catch {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    margin-top: 0;
    margin-left: 0;
    line-height: 1.542;
  }

  .svd-content {
    width: 84.53%;
    margin-inline: auto;
  }

  .svd-article {
    width: 100%;
  }

  /* ── Message card ── */
  .svd-message__inner {
    grid-template-columns: 1fr;
    padding: 40px 5.125%;
  }

  .svd-message__inner::before {
    top: -1.6px;
    left: -1.6px;
    right: -1.6px;
    bottom: -1.6px;
  }

  .svd-message__photo {
    margin-bottom: 0;
  }

  .svd-message__photo:first-child {
    width: 76.8%;
    margin-inline: auto;
  }

  .svd-message__label {
    margin-bottom: 12px;
  }

  .svd-message__info-section {
    padding-top: 40px;
    background: none;
  }

  .svd-message__career-section {
    grid-template-columns: 1fr;
  }
  .svd-message__career-title {
    margin-bottom: 8px;
  }

  .svd-message__career-table td:first-child {
    width: 23%;
  }

  .svd-related-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   フェードインアニメーション（スクロール連動）
   ============================================================ */
.js-fade {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* グループ内カードのスタガー（時差）表示 */
.js-fade-group > .js-fade:nth-child(2) {
  transition-delay: 0.12s;
}
.js-fade-group > .js-fade:nth-child(3) {
  transition-delay: 0.24s;
}
.js-fade-group > .js-fade:nth-child(4) {
  transition-delay: 0.36s;
}
.js-fade-group > .js-fade:nth-child(5) {
  transition-delay: 0.48s;
}

/* ---- Bullet lists ---- */
.eval-bullets {
  list-style: none;
  padding: 0;
  margin: clamp(16px, 2vw, 28px) 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.eval-bullets li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding-left: 1.4em;
  position: relative;

  font-weight: 700;
  font-size: clamp(
    14px,
    calc(12.775510204081632px + 0.3401360544217687vw),
    18px
  );
  line-height: 180%;
  letter-spacing: 4%;
}

.eval-bullets li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #232323;
}

/* ---- Nav link active colors for eval sections ---- */
.page-evaluation-system .pillars-detail__nav-link:hover,
.page-evaluation-system .pillars-detail__nav-link.is-active,
.page-evaluation-system .pillars-detail__section-name,
.page-evaluation-system .pillars-detail__section-subtitle,
.page-evaluation-system .pillars-detail__nav-link:hover svg path,
.page-evaluation-system .pillars-detail__nav-link.is-active svg path {
  color: #22d2ae;
  fill: #22d2ae;
}

/* ---- Career pyramid ---- */
.eval-section-visual {
  background: white;
  padding: clamp(27px, calc(25px + 0.7653vw), 36px)
    clamp(46px, calc(42px + 1.1904761905vw), 60px);
  box-shadow: 0px 6px 12px 0px #0000001a;
  border-radius: clamp(10px, 2vw, 14px);

  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(330px, calc(296.9387755102041px + 9.183673469387756vw), 438px);
  max-width: 100%;
}

.eval-section-visual img {
  width: 100%;
}

.page-evaluation-system .five-pillars__content {
  margin-bottom: 0;
}

.page-evaluation-system .pillars-detail__section-header {
  align-items: center;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .page-evaluation-system .pillars-detail__section-header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-inline: 0;
  }

  .page-evaluation-system .pillars-detail__section-header > div:first-child {
    display: block;
  }
}

/* ══════════════════════════════════════════════
           Career Path Page Specific Styles
           ══════════════════════════════════════════════ */

/* ── キャリアコース ──────────────────────────── */
.cp-career-course {
  background: #fff;
}
.cp-career-course__inner {
  width: 78.125%;
  margin: 0 auto;
}

/* Prevent first-paint flash before .js-fade is attached by JS */
.page-career-path .cp-career-course__inner {
  opacity: 0;
  transform: translateY(24px);
}

.page-career-path .cp-career-course__inner.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cp-career-course__lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 180%;
  letter-spacing: 4%;
  margin-top: clamp(10px, 1.1vw, 14px);
}

/* キャリアチャート */
.cp-chart {
  margin-top: 40px;
  background: #f9f9f9;
  box-shadow: 0px 8px 16px 0px #0000001a;
  box-shadow: 0px 8px 16px 0px #0000001a;
  border-radius: 30px;
  padding-block: clamp(40px, calc(34px + 1.74vw), 60px);
  padding-inline: clamp(0px, calc(-180px + 22vw), 200px);
}

/* 一般コース */
.cp-chart__base {
  display: grid;
  grid-template-columns: clamp(60px, calc(50px + 3.4vw), 100px) 1fr;
  align-items: center;
  gap: clamp(16px, calc(13px + 0.85034vw), 26px);
  border: 2px solid var(--color-accent-green, #4dc5b2);
  border-radius: 10px;
  padding: 20px 40px;
  background: #fff;
}

.cp-chart__base-icon img {
  width: 100%;
}

.cp-chart__base-title {
  color: var(--color-accent-green, #4dc5b2);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;

  font-size: clamp(18px, calc(14px + 1.02vw), 30px);

  line-height: 180%;
  letter-spacing: 4%;
}
.cp-chart__base-desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: clamp(
    13px,
    calc(12.081632653061224px + 0.25510204081632654vw),
    16px
  );

  line-height: 180%;
  letter-spacing: 4%;
}

/* コネクター */
.cp-chart__connector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 20px);
  margin-top: 20px;
  height: 35px;
}
.cp-chart__connector-arrow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.cp-chart__connector-arrow::after {
  content: "";
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid;
}
.cp-chart__connector-arrow--pink::after {
  border-top-color: var(--color-accent-pink, #ffbac6);
}
.cp-chart__connector-arrow--blue::after {
  border-top-color: var(--color-accent-navy, #4d6ca9);
}
.cp-chart__connector-arrow--yellow::after {
  border-top-color: var(--color-accent-yellow, #fdcf64);
}

/* 3コース */
.cp-chart__courses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, calc(9.714285714285715px + 1.1904761904761905vw), 28px);
}
.cp-chart__course {
  border-radius: 10px;
  padding: 8.2% 5.2% 9%;
  min-width: 200px;

  text-align: center;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.cp-chart__course-num {
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 8%;
  text-align: center;
  display: block;
  font-weight: 700;
  font-family: var(--font-en);
  color: #fff;
  -webkit-text-stroke: 2px;
  paint-order: stroke fill;
  margin-block: 8px;
}

.cp-chart__course--pink {
  border-color: var(--color-accent-red);
  border-width: 2px;
}
.cp-chart__course--blue {
  border-color: var(--color-accent-navy);
  border-width: 2px;
}
.cp-chart__course--yellow {
  border-color: var(--color-accent-yellow);
  border-width: 2px;
}
/* アイコン円 */
.cp-chart__course-icon {
  width: clamp(60px, calc(50px + 3.4vw), 100px);

  display: flex;
  align-items: center;
  justify-content: center;
}
.cp-chart__course-icon img {
  width: 100%;
}
/* 数字バッジ: 白抜き色枠文字 */
.cp-chart__course--pink .cp-chart__course-num {
  -webkit-text-stroke-color: var(--color-accent-red);
}
.cp-chart__course--blue .cp-chart__course-num {
  -webkit-text-stroke-color: var(--color-accent-navy);
}
.cp-chart__course--yellow .cp-chart__course-num {
  -webkit-text-stroke-color: var(--color-accent-yellow);
}
.cp-chart__course-title {
  align-self: stretch;
  border-bottom: 2px solid currentColor;

  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, calc(16.7px + 0.340136vw), 22px);
  line-height: 140%;
  letter-spacing: 4%;
  text-align: center;
  vertical-align: middle;
  padding-bottom: 8px;
  height: 3.55em;
  white-space: nowrap;
}
.cp-chart__course--pink .cp-chart__course-title {
  color: var(--color-accent-red);
}
.cp-chart__course--blue .cp-chart__course-title {
  color: var(--color-accent-navy);
}
.cp-chart__course--yellow .cp-chart__course-title {
  color: var(--color-accent-yellow);
}
.cp-chart__course-title small {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 4%;
  text-align: center;
  display: block;
  white-space: normal;
}

.cp-chart__course-desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(
    13px,
    calc(12.081632653061224px + 0.25510204081632654vw),
    16px
  );
  line-height: 180%;
  letter-spacing: 4%;
  text-align: left;
  min-height: 7.3em;
  margin-top: 0.75em;
}

/* キャリアアップ実績 */
.cp-career-up {
  margin-top: clamp(80px, calc(73.2px + 1.7452vw), 100px);
  margin-bottom: clamp(
    50px,
    calc(28.571428571428573px + 5.952380952380952vw),
    120px
  );
  text-align: center;
}
.cp-career-up__label {
  display: inline-block;
  background: var(--color-accent-pink, #ffbac6);
  color: #232323;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(
    14px,
    calc(12.16326530612245px + 0.5102040816326531vw),
    20px
  );
  line-height: 180%;
  letter-spacing: 4%;

  padding: 0.28em clamp(30px, calc(26.93px + 0.85034vw), 40px);
  border-radius: 30px;
  margin-bottom: clamp(
    30px,
    calc(26.93877551020408px + 0.8503401360544218vw),
    40px
  );
}
.cp-career-up__list {
  display: flex;
  gap: 6%;
  list-style: none;
  padding: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.cp-career-up__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cp-career-up__photo {
  width: clamp(126px, 18vw, 180px);
  object-fit: cover;
  display: block;
  margin-top: clamp(
    12px,
    calc(9.551020408163264px + 0.6802721088435374vw),
    20px
  );
}
.cp-career-up__underline {
  display: block;
  margin: 4px auto 10px;
  width: auto;
  max-width: 100%;
}
.cp-career-up__meta {
  font-family: var(--font-main);
  font-size: clamp(
    13px,
    calc(12.081632653061224px + 0.25510204081632654vw),
    16px
  );
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--color-text-body, #232323);
}
.cp-career-up__role {
  font-family: var(--font-main);
  font-size: clamp(
    13px,
    calc(12.081632653061224px + 0.25510204081632654vw),
    16px
  );
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--color-text-body, #232323);
  margin-bottom: clamp(
    6px,
    calc(1.7142857142857144px + 1.1904761904761905vw),
    20px
  );
}

.cp-career-up__item svg {
  width: clamp(100px, calc(90.81632653061224px + 2.5510204081632653vw), 130px);
}

/* ── チーム写真 ───────────────────────────── */
.cp-team-photo {
  width: 100%;
  line-height: 0;
  background: var(--color-accent-green, #4dc5b2);
}
.cp-team-photo img {
  width: 100%;
  height: clamp(
    97px,
    calc(-1.8775510204081627px + 27.465986394557824vw),
    420px
  );
  object-fit: cover;
  display: block;
}

/* ── キャリア支援 ─────────────────────────── */
.cp-career-support {
  background: #edf9f7;
  padding: clamp(40px, calc(21.632653061224488px + 5.1020408163265305vw), 100px)
    0 clamp(80px, calc(67.75510204081633px + 3.4013605442176873vw), 120px);
}
.cp-career-support__inner {
  width: 78.125%;
  margin: 0 auto;
}
.cp-career-support__lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(
    14px,
    calc(12.775510204081632px + 0.3401360544217687vw),
    18px
  );
  line-height: 180%;
  letter-spacing: 4%;
  margin-top: clamp(10px, 1.1vw, 14px);
}

/* 2 support items */
.cp-support-items {
  width: 88.3%;
  margin-inline: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  gap: clamp(50px, calc(34.69387755102041px + 4.2517006802721085vw), 100px);
  margin-top: 50px;
}

.cp-support-item__photo {
  width: 100%;
  border-radius: clamp(
    18px,
    calc(14.326530612244898px + 1.0204081632653061vw),
    30px
  );
  object-fit: cover;
  display: block;
  background: #d0ece7;
}
.cp-support-item__body {
  padding-top: 14px;
  text-align: center;
}
.cp-support-item__title {
  position: relative;
  margin-bottom: 18px;
  color: var(--color-text-body, #232323);

  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(
    18px,
    calc(17.387755102040817px + 0.17006802721088435vw),
    20px
  );
  line-height: 180%;
  letter-spacing: 4%;
  text-align: center;
}

.cp-support-item__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 30px;
  height: 2px;
  background: #22d2ae;
  transform: translateX(-50%);
}

.cp-support-item__desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(14px, calc(13.5px + 0.17vw), 16px);
  line-height: 180%;
  letter-spacing: 4%;
  text-align: center;
}

/* その他 */
.cp-other-support {
  margin-top: clamp(
    60px,
    calc(47.755102040816325px + 3.4013605442176873vw),
    100px
  );
}
.cp-other-support__label {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(
    20px,
    calc(16.93877551020408px + 0.8503401360544218vw),
    30px
  );
}
.cp-other-support__card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 8px 16px 0px #0000001a;
  overflow: hidden;
  padding: 40px
    clamp(20px, calc(1.632653061224488px + 5.1020408163265305vw), 80px);
}
.cp-other-support__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cp-other-support__item {
  display: grid;
  grid-template-columns:
    auto clamp(236px, calc(228.6530612244898px + 2.0408163265306123vw), 260px)
    1fr;
  align-items: center;
  gap: 0 clamp(14px, calc(10.938775510204081px + 0.8503401360544218vw), 24px);
  padding: 29px 0px;
  position: relative;
}

.cp-other-support__item:first-of-type {
  padding-top: 0;
}
.cp-other-support__item:last-of-type {
  padding-bottom: 0;
}
.cp-other-support__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    #dfdfdf 0 6px,
    transparent 6px 12px
  );
}

.cp-other-support__item:last-child::after {
  display: none;
}
.cp-other-support__icon {
  width: clamp(60px, calc(41.63265306122449px + 5.1020408163265305vw), 120px);
}
.cp-other-support__icon img {
  width: 100%;
}
.cp-other-support__item-title {
  color: #22d2ae;

  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(
    16px,
    calc(14.775510204081632px + 0.3401360544217687vw),
    20px
  );
  line-height: 180%;
  letter-spacing: 4%;
}
.cp-other-support__text {
  color: var(--color-text-body);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(
    14px,
    calc(13.387755102040817px + 0.17006802721088435vw),
    16px
  );
  line-height: 180%;
  letter-spacing: 4%;
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 768px) {
  .cp-chart {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    border-radius: 0px;
    padding: 40px 0px;
  }
  .cp-chart__base {
    width: 89.66%;
    margin-inline: auto;
    padding: 20px;
  }
  .cp-chart__base-desc br {
    display: none;
  }
  .cp-chart__courses {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    padding: 0 10% 30px;
  }

  .cp-chart__connector-arrow--yellow::after,
  .cp-chart__connector-arrow--pink::after {
    display: none;
  }

  .cp-chart__courses::-webkit-scrollbar {
    height: 10px;
  }
  .cp-chart__courses::-webkit-scrollbar-track {
    background: none;
  }
  .cp-chart__courses::-webkit-scrollbar-thumb {
    background: #d9d9d9;
    border-radius: 4px;
  }
  .cp-chart__course {
    flex: 0 0 min(64%, 240px);
    scroll-snap-align: center;
    padding: 18.8px 13.8px;
  }

  .cp-chart__course-desc {
    min-height: 8.8em;
  }

  .cp-chart__course-num {
    margin-block: 7.5px;
  }

  .cp-chart__course-title {
    height: 4.3em;
  }

  .cp-support-items {
    width: 95.5%;
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .cp-support-item__body {
    padding-top: 18px;
  }

  .cp-chart__connector {
    height: 25px;
  }

  .cp-other-support__card {
    width: 114.76%;
    margin-left: -7.38%;
    box-shadow: 0px 6px 14px 0px #0000001a;
  }

  .cp-other-support__item {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 10px;
  }
  .cp-other-support__icon {
    grid-row: 1;
    align-self: center;
  }
  .cp-other-support__item-title {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin: 0;
  }
  .cp-other-support__text {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0;
  }
}
@media (max-width: 480px) {
  .cp-career-up__list {
    gap: 0;
  }

  .cp-career-up__item {
    width: 50%;
    margin-bottom: 30px;
  }
}

/* ==============================================
   INTERNAL COMMUNICATION PAGE  (ic-)
   ============================================== */

.ic-exchange {
  padding-bottom: clamp(80px, calc(55px + 6.6667vw), 160px);
}

/* Prevent first-paint flash before .js-fade is attached by JS */
.page-internal-communication .ic-exchange {
  opacity: 0;
  transform: translateY(24px);
}

.page-internal-communication .ic-exchange.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-internal-communication .sv-section:first-of-type {
  background: var(--color-accent-pink);
}

.ic-exchange__inner {
  flex-direction: column;
  position: relative;
}

.ic-exchange__inner::before {
  content: "";
  position: absolute;
  top: calc(
    clamp(132px, calc(98.93877551020408px + 9.183673469387756vw), 240px) * -1
  );
  bottom: calc(clamp(80px, calc(55px + 6.6667vw), 160px) * -1);
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: var(--color-accent-pink);
  z-index: -1;
}

.ic-exchange__inner:first-child::before {
  display: none;
}

/* ---- top photos infinite slider ---- */
.ic-exchange__top-photos {
  overflow: hidden;
  margin-top: clamp(
    10px,
    calc(6.666666666666666px + 0.8333333333333334vw),
    20px
  );
  padding: 20px 0 clamp(65px, calc(60px + 1.25vw), 80px); /* 上下の影・80px下げ分を確保 */
}

.ic-exchange__top-photos-track {
  display: flex;
  align-items: flex-start;
  gap: clamp(20px, calc(7.080103359173126px + 3.4453057708871664vw), 60px);
  width: max-content;
  animation: ic-photos-scroll 40s linear infinite;
}

.ic-exchange__top-photo {
  flex-shrink: 0;
  width: clamp(190px, calc(68px + 32.7304vw), 580px);
  padding: clamp(5px, calc(1.9387755102040813px + 0.8503401360544218vw), 15px);
  background: #fff;
  box-shadow: 0px 8px 16px 0px #0000001a;
}

.ic-exchange__top-photo:nth-child(even) {
  margin-top: clamp(
    30px,
    calc(14.693877551020408px + 4.2517006802721085vw),
    80px
  );
}

.ic-exchange__top-photo img {
  width: 100%;
  object-fit: cover;
  display: block;
}

@keyframes ic-photos-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---- decorative section ---- */
.ic-exchange__deco {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(20px, 5vw, 60px);
}

.ic-exchange__deco-text-img {
  width: clamp(120px, calc(100px + 8.5034vw), 230px);
}

.ic-exchange__deco-person {
  object-fit: contain;
  object-position: bottom;
  width: clamp(120px, calc(100px + 8.5034vw), 230px);
}

/* ---- white card wrapper ---- */
.ic-exchange__card {
  display: flex;
  flex-direction: column;
  gap: clamp(50px, calc(40px + 2.5vw), 80px);
  width: 100%;
  background-color: #fff;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
    url("/images/internal-communication__card-bg.png");
  background-repeat: repeat;
  background-size: auto;
  border-radius: 16px;
  padding-block: clamp(
    50px,
    calc(34.69387755102041px + 4.2517006802721085vw),
    100px
  );
  padding-inline: clamp(
    20px,
    calc(-9.081632653061227px + 8.078231292517007vw),
    115px
  );
  box-shadow: 0px 8px 16px 0px #0000001a;
}

/* ---- communication item ---- */
.ic-comm-item {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
}

.ic-comm-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ic-comm-item__num {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: end;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  font-size: clamp(
    10px,
    calc(8.775510204081632px + 0.3401360544217687vw),
    14px
  );
  line-height: 1;
  letter-spacing: 0;
  color: #232323;
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
}

.ic-comm-item__num-number {
  margin-top: 0.4em;
}

.ic-comm-item--01 .ic-comm-item__num-number {
  color: var(--color-accent-red);
}
.ic-comm-item--02 .ic-comm-item__num-number {
  color: var(--color-accent-green);
}
.ic-comm-item--03 .ic-comm-item__num-number {
  color: var(--color-accent-navy);
}
.ic-comm-item--04 .ic-comm-item__num-number {
  color: var(--color-accent-yellow);
}

.ic-comm-item__body {
  display: flex;
  flex: 1;
  gap: clamp(20px, calc(13.877551020408163px + 1.7006802721088436vw), 40px);
  align-items: center;
}

.ic-comm-item__photo {
  position: relative;
  padding-left: clamp(
    20px,
    calc(15px + 1.25vw),
    35px
  ); /* アウトラインスペース */
  width: clamp(310px, calc(242.6530612244898px + 18.70748299319728vw), 530px);
  max-width: 100%;
}

.ic-comm-item__photo img {
  width: 100%;
  object-fit: contain;
  display: block;
  aspect-ratio: 495/278;
  outline-offset: calc(clamp(8px, calc(6.2px + 0.51vw), 14px) * -1);
  box-shadow: 0px 4px 10px 0px #0000001a;
}

.ic-comm-item--01 .ic-comm-item__photo img {
  outline: clamp(8px, calc(6.2px + 0.51vw), 14px) solid var(--color-accent-red);
}

.ic-comm-item--02 .ic-comm-item__photo img {
  outline: clamp(8px, calc(6.2px + 0.51vw), 14px) solid
    var(--color-accent-green);
}

.ic-comm-item--03 .ic-comm-item__photo img {
  outline: clamp(8px, calc(6.2px + 0.51vw), 14px) solid var(--color-accent-navy);
}

.ic-comm-item--04 .ic-comm-item__photo img {
  outline: clamp(8px, calc(6.2px + 0.51vw), 14px) solid
    var(--color-accent-yellow);
}

.ic-comm-item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.5vw, 14px);
}

.ic-comm-item__title {
  display: inline-block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding: clamp(0px, calc(-2px + 0.5vw), 6px) 20px;
  width: fit-content;
  color: #fff;

  font-weight: 700;
  font-size: clamp(18px, calc(16px + 0.5vw), 24px);
  line-height: 140%;
  letter-spacing: 4%;
  text-align: left;
}

.ic-comm-item__title--pink {
  background: var(--color-accent-red);
}

.ic-comm-item__title--teal {
  background: var(--color-accent-green);
}

.ic-comm-item__title--navy {
  background: var(--color-accent-navy);
}

.ic-comm-item__title--yellow {
  background: var(--color-accent-yellow);
}

.ic-comm-item__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(14px, calc(14px + 0.166vw), 16px);
  line-height: 180%;
  letter-spacing: 4%;
}

/* ==============================================
   CULTURE PAGE  (ct-)
   ============================================== */

/* ---- MISSION ---- */
.ct-mission {
  background: #fff;
  padding-bottom: clamp(80px, 9vw, 100px);
}

/* Prevent first-paint flash before .js-fade is attached by JS */
.page-culture .ct-mission {
  opacity: 0;
  transform: translateY(24px);
}

.page-culture .ct-mission.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ct-mission__inner,
.ct-style__inner,
.ct-basic__inner,
.ct-award__inner,
.ic-exchange__inner {
  width: 78.125%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ct-mission__content {
  max-width: 50%;
}

.ct-mission__heading {
  font-family: Syncopate;
  font-weight: 400;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 4.2%;
}

.ct-mission__heading span {
  display: block;
}

.ct-mission__lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 180%;
  letter-spacing: 4%;
}

.ct-mission__desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 180%;
  letter-spacing: 4%;
  margin-top: clamp(20px, 2vw, 30px);
}

.ct-mission__photo {
  width: clamp(330px, 38vw, 480px);
}

.ct-mission__photo img {
  width: 100%;
  object-fit: cover;
  border-radius: clamp(
    18px,
    calc(15.551020408163264px + 0.6802721088435374vw),
    26px
  );
  display: block;
}

/* ---- STYLE ---- */
.ct-style-stack {
  position: relative;
  height: calc(5 * 100vh);
}

.ct-style-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.ct-style {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.ct-style--01 {
  background-color: var(--color-accent-pink);
  z-index: 1;
}
.ct-style--02 {
  background-color: var(--color-accent-navy);
  z-index: 2;
}
.ct-style--03 {
  background-color: var(--color-accent-yellow);
  z-index: 3;
}
.ct-style--04 {
  background-color: var(--color-accent-red);
  z-index: 4;
}
.ct-style--05 {
  background-color: var(--color-accent-green);
  z-index: 5;
}

.ct-style--02,
.ct-style--03,
.ct-style--04,
.ct-style--05 {
  clip-path: inset(100% 0 0 0);
}

.ct-style__photo {
  width: clamp(330px, 38vw, 540px);
}

.ct-style__photo img {
  width: 100%;
  object-fit: cover;
  border-radius: clamp(16px, 2vw, 26px);
  display: block;
}

.ct-style__content {
  position: relative;
  z-index: 1;
  width: clamp(330px, 38vw, 560px);
  display: flex;
  flex-direction: column;
  justify-content: start;
  height: 100%;
}

.ct-style__sub {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, calc(13px + 0.337vw), 18px);
  line-height: 180%;
  letter-spacing: 4%;
  margin-bottom: clamp(40px, calc(30px + 1.5vw), 58px);
}

.ct-style__tag {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, calc(16px + 0.67vw), 26px);
  line-height: 180%;
  letter-spacing: 4%;
  padding: 0 20px;
  width: fit-content;
}

.ct-style--01 .ct-style__tag,
.ct-style--03 .ct-style__tag,
.ct-style--05 .ct-style__tag {
  color: #fff;
  background-color: #232323;
}

.ct-style--02 .ct-style__content,
.ct-style--04 .ct-style__content {
  color: white;
}

.ct-style--02 .ct-style__tag,
.ct-style--04 .ct-style__tag {
  color: #232323;
  background-color: #fff;
}

.ct-style__desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 180%;
  letter-spacing: 4%;
  margin-top: clamp(12px, 1.5vw, 20px);
}

.ct-style__deco-person {
  position: absolute;
  right: 12%;
  bottom: 0;
  object-fit: contain;
  object-position: bottom;
  pointer-events: none;
  width: 9.3%;
}

.ct-style__content .ct-mission__heading {
  margin-bottom: 2.5%;
}

/* ---- BASIC ---- */
.ct-basic {
  background: #fff;
  padding: clamp(80px, 9.4vw, 140px) 0;
}

.ct-basic__inner {
  flex-direction: column;
  text-align: center;
}

.ct-basic .ct-mission__heading {
  margin-bottom: 1.668%;
}

.ct-basic__sub {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 180%;
  letter-spacing: 4%;
  text-align: center;
  color: var(--color-text-body);
}

.ct-basic__list {
  background: #f9f9f9f2;
  border-radius: clamp(
    20px,
    calc(17.142857142857142px + 1.4285714285714286vw),
    30px
  );
  padding: clamp(30px, calc(20.816326530612244px + 2.5510204081632653vw), 60px)
    clamp(20px, calc(-1.5px + 5.95vw), 90px)
    clamp(50px, calc(46.93877551020408px + 0.8503401360544218vw), 60px);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px 0;
  text-align: center;
  box-shadow: 0px 8px 16px 0px #0000001a;
  margin-top: clamp(
    30px,
    calc(26.77002583979328px + 0.8613264427217916vw),
    40px
  );
}

.ct-basic__item--01 {
  grid-column: 3 / span 4;
}

.ct-basic__item--02 {
  grid-column: 7 / span 4;
}

.ct-basic__item--03,
.ct-basic__item--04,
.ct-basic__item--05 {
  grid-column: span 4;
}

.ct-basic__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 11.5px 8px;
}

.ct-basic__item-num {
  font-family: "Syncopate", sans-serif;
  font-style: italic;
  -webkit-text-stroke: 1px var(--_item-color);
  color: transparent;
  align-self: flex-end;

  font-weight: 700;
  font-size: clamp(
    28px,
    calc(27.387755102040817px + 0.17006802721088435vw),
    30px
  );
  line-height: 180%;
  letter-spacing: 4%;
  text-align: center;
}

.ct-basic__item-title {
  font-style: italic;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(
    36px,
    calc(34.775510204081634px + 0.3401360544217687vw),
    40px
  );
  line-height: 175%;
  letter-spacing: 4%;
  text-align: center;
}

.ct-basic__item-text {
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 4%;
  text-align: center;
  vertical-align: middle;
  color: var(--color-text-body);
}

.ct-basic__item--01 {
  --_item-color: var(--color-accent-pink);
}
.ct-basic__item--01 .ct-basic__item-title {
  color: var(--color-accent-pink);
}

.ct-basic__item--02 {
  --_item-color: var(--color-accent-navy);
}
.ct-basic__item--02 .ct-basic__item-title {
  color: var(--color-accent-navy);
}

.ct-basic__item--03 {
  --_item-color: var(--color-accent-yellow);
}
.ct-basic__item--03 .ct-basic__item-title {
  color: var(--color-accent-yellow);
}

.ct-basic__item--04 {
  --_item-color: var(--color-accent-red);
}
.ct-basic__item--04 .ct-basic__item-title {
  color: var(--color-accent-red);
}

.ct-basic__item--05 {
  --_item-color: var(--color-accent-green);
}
.ct-basic__item--05 .ct-basic__item-title {
  color: var(--color-accent-green);
}

/* ---- 表彰制度 ---- */
.ct-award {
  --zigzag-h: clamp(25px, 6.5vw, 100px);
  position: relative;
  background-color: #f8f6eb;
  padding: clamp(60px, 8vw, 100px) 0;
  padding-top: calc(
    clamp(40px, clamp(40px, calc(30px + 3.445vw), 80px), 80px) + var(--zigzag-h)
  );
}

.ct-award::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--zigzag-h);
  background:
    linear-gradient(to bottom right, #fff 50%, transparent 50%),
    linear-gradient(to bottom left, #fff 50%, transparent 50%);
  background-color: #f8f6eb;
  background-size: 33.33vw calc(var(--zigzag-h) * 2);
  background-repeat: repeat-x;
  background-position: 0 calc(var(--zigzag-h) * -1);
}

/* ---- ct-basic__item スライドアップアニメーション ---- */
.ct-basic__item.js-slide-up {
  opacity: 0;
  transform: translateY(40px);
}

.ct-basic__item.js-slide-up.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.ct-award__inner {
  margin: 0 auto;
  align-items: flex-start;
}

.ct-award__inner .section-heading--ja {
  white-space: nowrap;
  width: 26.67%;
}

.ct-award__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, calc(20.310077519379846px + 2.5839793281653747vw), 80px);
}

.ct-award-card {
  position: relative;
  padding-top: clamp(35px, clamp(35px, calc(33px + 0.77519vw), 44px), 44px);
}

.ct-award-card__crown {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.ct-award-card__crown.js-pop-in {
  opacity: 0;
  transform: translateX(-50%) scale(0.3);
}

.ct-award-card__crown.js-pop-in.is-visible {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  transition:
    opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ct-award-card__crown svg {
  width: clamp(40px, 4vw, 50px);
  height: auto;
  display: block;
}

.ct-award-card__photo {
  width: 100%;
  overflow: hidden;
}

.ct-award-card__photo img {
  width: 100%;
  object-fit: cover;
  display: block;

  border-radius: 20px;
}

.ct-award-card__body {
  padding: clamp(11px, calc(10.031007751937985px + 0.2583979328165375vw), 14px)
    0 0;
}

.ct-award-card__title {
  display: block;
  color: var(--color-text-body);

  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(
    16px,
    calc(14.708010335917313px + 0.34453057708871665vw),
    20px
  );
  line-height: 180%;
  letter-spacing: 4%;
}

.ct-award-card__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(
    14px,
    calc(13.677002583979329px + 0.08613264427217916vw),
    15px
  );
  line-height: 180%;
  letter-spacing: 4%;
}

/* ---- responsive ---- */
@media (max-width: 768px) {
  .page-internal-communication .sv-hero,
  .page-job-requirements .sv-hero {
    height: 270px;
  }

  .job-satisfaction__inner,
  .great-environment__inner,
  .staff-voice__inner,
  .entry-section__inner,
  .site-footer__inner,
  .ic-exchange__inner {
    width: 89.66%;
    margin-inline: auto;
  }

  .ic-exchange__inner:first-child {
    width: 100%;
  }

  .ic-exchange__top-photos-track {
    animation-duration: 18s;
  }

  .ic-exchange__top-photo {
    box-shadow: 0px 2.67px 5.33px 0px #0000001a;
  }

  .ic-exchange__card {
    margin: 0 auto;
  }

  .ic-comm-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .ic-comm-item__body {
    flex-direction: column;
    width: 100%;
  }

  .ic-comm-item--reverse .ic-comm-item__body {
    flex-direction: column-reverse;
  }

  .ic-comm-item__content {
    width: 100%;
  }

  .ic-comm-item__title {
    line-height: 180%;
  }

  .ct-style-stack {
    height: calc(5 * 100svh);
  }

  .ct-style-sticky {
    height: 100svh;
  }

  .ct-style,
  .ct-style__inner {
    height: 100svh;
    min-height: 100svh;
  }

  .ct-style__inner {
    padding-block: 8svh;
  }

  .ct-mission__content {
    max-width: 100%;
  }

  .ct-mission__desc {
    margin-bottom: 30px;
  }

  .ct-mission__photo,
  .ct-style__photo {
    flex: none;
    width: 100%;
  }

  .ct-style__photo {
    margin-bottom: 30px;
  }

  .ct-style__deco-person {
    width: 28.7%;
  }

  .ct-basic__list {
    grid-template-columns: 1fr;
    gap: 40px;
    width: 106%;
    box-shadow: 0px 6px 14px 0px #0000001a;
  }

  .ct-basic__item {
    gap: 4px 8px;
  }

  .ct-basic__item--01,
  .ct-basic__item--02,
  .ct-basic__item--03,
  .ct-basic__item--04,
  .ct-basic__item--05 {
    grid-column: span 1;
  }

  .ct-award__grid {
    grid-template-columns: 1fr;
  }
}

/* ==============================================
   GROWTH SUPPORT PAGE  (gs-)
   ============================================== */

.gs-education {
  margin-bottom: clamp(80px, calc(56px + 6.8vw), 160px);
}
.gs-education__inner,
.gs-others__inner {
  width: 78.125%;
  margin: 0 auto;
}

/* Prevent first-paint flash before .js-fade is attached by JS */
.page-growth-support .gs-education__inner {
  opacity: 0;
  transform: translateY(24px);
}

.page-growth-support .gs-education__inner.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- numbered program items ---- */
.gs-program {
  margin-top: clamp(
    30px,
    calc(26.93877551020408px + 0.8503401360544218vw),
    40px
  );
}

.gs-program + .gs-program {
  margin-top: clamp(
    60px,
    calc(41.63265306122449px + 5.1020408163265305vw),
    120px
  );
}

.gs-program__header {
  display: flex;
  align-items: baseline;
  gap: 0.75em;
  margin-bottom: clamp(14px, calc(12.2px + 0.51vw), 20px);
}

.gs-program__num {
  font-family: "Syncopate", sans-serif;
  color: var(--color-text-green);
  background: linear-gradient(180deg, #58fef9 0%, #6bffa1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: clamp(20px, calc(18px + 0.98vw), 32px);
  line-height: 100%;
  letter-spacing: 0%;
}

.gs-program__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: var(--color-text-body);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(16px, calc(14px + 0.46vw), 22px);
  line-height: 180%;
  letter-spacing: 4%;
}

.gs-program__lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(14px, calc(13px + 0.34vw), 18px);
  line-height: 180%;
  letter-spacing: 4%;
}

/* STEP diagram image */
.gs-step-image {
  background: #f9f9f9;
  box-shadow: 0px 8px 16px 0px #0000001a;
  padding: clamp(40px, calc(27.755102040816325px + 3.4013605442176873vw), 80px)
    clamp(10px, calc(-14.48979591836735px + 6.802721088435375vw), 90px);
  border-radius: clamp(
    20px,
    calc(16.93877551020408px + 0.8503401360544218vw),
    30px
  );
  margin-top: clamp(
    30px,
    calc(26.93877551020408px + 0.8503401360544218vw),
    40px
  );
}

.gs-step-image img {
  width: 100%;
  display: block;
}

/* ---- その他 section ---- */
.gs-others {
  background-color: #f0faf5;
  padding: clamp(60px, 8vw, 100px) 0 0;
}

.gs-others__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, calc(33.87755102040816px + 1.7006802721088436vw), 60px);
  margin-top: 80px;
  padding-bottom: 60px;
}

/* Prevent first-paint flash before .js-fade is attached by JS */
.page-growth-support .gs-other-card {
  opacity: 0;
  transform: translateY(24px);
}

.page-growth-support .gs-other-card.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gs-others__grid.js-fade-group > .gs-other-card:nth-child(1) {
  transition-delay: 0ms;
}

.gs-others__grid.js-fade-group > .gs-other-card:nth-child(2) {
  transition-delay: 180ms;
}

.gs-others__grid.js-fade-group > .gs-other-card:nth-child(3) {
  transition-delay: 360ms;
}

.gs-others__grid::after {
  content: "";
  position: absolute;
  left: -16%;
  bottom: 0;
  width: 122%;
  height: 340px;
  background: #4dc5b2;
  border-top-right-radius: clamp(20px, 4vw, 40px);
  border-bottom-right-radius: clamp(20px, 4vw, 40px);
  z-index: 0;
}

.gs-other-card {
  position: relative;
  z-index: 1;
}

.gs-other-card__photo {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}

.gs-other-card__photo img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.gs-other-card__title {
  color: white;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(
    16px,
    calc(14.16326530612245px + 0.5102040816326531vw),
    22px
  );
  line-height: 180%;
  letter-spacing: 4%;
  margin-bottom: 0.36em;
}

.gs-other-card__text {
  color: white;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(
    14px,
    calc(12.775510204081632px + 0.3401360544217687vw),
    18px
  );
  line-height: 180%;
  letter-spacing: 4%;
}

/* ---- responsive ---- */
@media (max-width: 768px) {
  .ct-mission__inner,
  .ct-style__inner,
  .ct-mission__inner,
  .ct-style__inner,
  .ct-basic__inner,
  .ct-award__inner,
  .cp-career-course__inner {
    flex-direction: column;
    width: 84.53%;
  }

  .gs-education__inner,
  .gs-others__inner {
    width: 89.66%;
  }
  .gs-program__header,
  .gs-program__lead {
    padding-inline: 3%;
  }

  .gs-step-image {
    box-shadow: 0px 6px 14px 0px #0000001a;
  }

  .gs-others__grid {
    grid-template-columns: 1fr;
  }

  .gs-others__grid::after {
    height: auto;
    width: auto;
    top: -60px;
    right: 0%;
  }

  .gs-other-card {
    width: 94.3%;
    margin-inline: 0 auto;
  }
}

/* ============================================================
   JOB OPENINGS PAGE  (jo-)
   ============================================================ */

/* ---- Intro + Job Grid ---- */
.jo-jobs {
  padding: 0 0 clamp(80px, calc(66.39px + 3.4904vw), 120px);
  background: #fff;
}

.jo-jobs__inner {
  width: 78.125%;
  margin: 0 auto;
}

.jo-intro-text {
  color: var(--color-text-body);
  margin-bottom: clamp(30px, calc(20px + 2.5vw), 60px);

  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(
    14px,
    calc(12.980392156862745px + 0.261437908496732vw),
    18px
  );
  line-height: 180%;
  letter-spacing: 4%;
  text-align: center;
}

.jo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 3.333%;
}

.jo-card {
  display: grid;
  grid-template-columns: 34.63% 1fr;
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    "img meta"
    "img desc"
    "img link";
  align-items: start;
  gap: 0 clamp(7.7px, calc(2.02px + 1.457vw), 30px);
  background: #f9f9f9;
  border-radius: 20px;
  padding: 30px 30px;
  text-decoration: none;
  color: var(--color-text-body);
}

.jo-card__image {
  grid-area: img;
  overflow: hidden;
  border-radius: clamp(8px, calc(4.6px + 0.8726vw), 18px);
  aspect-ratio: 1 / 1;
  align-self: center;
}

.jo-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.jo-card:hover .jo-card__image img {
  transform: scale(1.12);
}

.jo-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.jo-card__meta {
  grid-area: meta;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: end;
}

.jo-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.jo-card__tag {
  display: inline-block;
  padding: 1px 15.1px;
  border-radius: 20px;
  font-family: var(--font-main);
  white-space: nowrap;

  font-weight: 700;
  font-size: clamp(12px, calc(11.66px + 0.0872vw), 13px);
  line-height: 180%;
  letter-spacing: 4%;
  background: white;
}

.jo-card__tag--type {
  color: var(--jo-accent);
  border: 1px solid var(--jo-accent);
}

.jo-card__heading {
  display: flex;
  align-items: baseline;
  gap: 0.44em;
}

.jo-card__num {
  font-family: Syncopate;
  line-height: 160%;
  letter-spacing: 4%;
  color: var(--jo-accent, var(--color-text-green));
  flex-shrink: 0;

  font-weight: 700;
  font-size: clamp(
    18px,
    calc(16.638743455497384px + 0.34904013961605584vw),
    22px
  );
  line-height: 160%;
  letter-spacing: 4%;
}

.jo-card__title {
  color: var(--color-text-body);

  font-weight: 700;
  font-size: clamp(
    16px,
    calc(14.638743455497382px + 0.34904013961605584vw),
    20px
  );
  line-height: 160%;
  letter-spacing: 4%;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.jo-card__desc {
  grid-area: desc;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(14px, calc(13.32px + 0.17452vw), 16px);
  margin-top: 6px;
  line-height: 180%;
  letter-spacing: 4%;
}

.jo-card__link {
  grid-area: link;
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, calc(13px + 0.2617vw), 17px);
  color: var(--jo-accent, var(--color-text-green));
  margin-top: 6px;

  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  font-size: clamp(14px, calc(13.32px + 0.17452vw), 16px);

  transition: gap 0.2s ease;
}

/* Per-card accent colours */
.jo-grid .jo-card:nth-child(1),
.page-job-requirements01 {
  --jo-accent: #e7736d;
}
.jo-grid .jo-card:nth-child(2),
.page-job-requirements02 {
  --jo-accent: #8bb6ff;
}
.jo-grid .jo-card:nth-child(3),
.page-job-requirements03 {
  --jo-accent: #64d6ed;
}
.jo-grid .jo-card:nth-child(4),
.page-job-requirements04 {
  --jo-accent: #f69d61;
}
.jo-grid .jo-card:nth-child(5),
.page-job-requirements05 {
  --jo-accent: #f4d250;
}
.jo-grid .jo-card:nth-child(6),
.page-job-requirements06 {
  --jo-accent: #b3cd3c;
}
.jo-grid .jo-card:nth-child(7),
.page-job-requirements07 {
  --jo-accent: #9f82b8;
}
.jo-grid .jo-card:nth-child(8),
.page-job-requirements08 {
  --jo-accent: #fc9898;
}
.jo-grid .jo-card:nth-child(9),
.page-job-requirements09 {
  --jo-accent: #59c087;
}
.jo-grid .jo-card:nth-child(10),
.page-job-requirements10 {
  --jo-accent: #f481eb;
}

.jo-card__link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, calc(37px + 0.85vw), 50px);
  height: clamp(40px, calc(37px + 0.85vw), 50px);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.jo-card__link-icon svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.jo-card__link-icon::before,
.jo-card__link-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--jo-accent, currentColor);
  -webkit-mask: center / 100% 100% no-repeat
    url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30.2874 18.7667C30.5355 18.7678 30.7731 18.8669 30.9486 19.0424C31.1241 19.2178 31.2231 19.4555 31.2243 19.7036L31.2243 28.5424C31.2287 28.6683 31.2078 28.7937 31.1627 28.9112C31.1176 29.0288 31.0493 29.136 30.9619 29.2266C30.8744 29.3172 30.7696 29.3892 30.6538 29.4384C30.5379 29.4876 30.4133 29.513 30.2874 29.513C30.1615 29.513 30.0369 29.4876 29.921 29.4384C29.8051 29.3892 29.7003 29.3172 29.6129 29.2266C29.5254 29.136 29.4571 29.0288 29.412 28.9112C29.367 28.7937 29.346 28.6683 29.3504 28.5424L29.3504 21.9663L20.3437 30.9731C20.1679 31.1489 19.9294 31.2477 19.6808 31.2477C19.4321 31.2477 19.1937 31.1489 19.0179 30.9731C18.842 30.7973 18.7433 30.5588 18.7433 30.3102C18.7433 30.0616 18.842 29.8231 19.0179 29.6473L28.0246 20.6405L21.4485 20.6405C21.2058 20.6319 20.9758 20.5295 20.8071 20.3547C20.6384 20.1799 20.5441 19.9465 20.5441 19.7036C20.5441 19.4607 20.6384 19.2273 20.8071 19.0525C20.9758 18.8777 21.2058 18.7752 21.4485 18.7667L30.2874 18.7667Z' fill='black'/%3E%3C/svg%3E");
  mask: center / 100% 100% no-repeat
    url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30.2874 18.7667C30.5355 18.7678 30.7731 18.8669 30.9486 19.0424C31.1241 19.2178 31.2231 19.4555 31.2243 19.7036L31.2243 28.5424C31.2287 28.6683 31.2078 28.7937 31.1627 28.9112C31.1176 29.0288 31.0493 29.136 30.9619 29.2266C30.8744 29.3172 30.7696 29.3892 30.6538 29.4384C30.5379 29.4876 30.4133 29.513 30.2874 29.513C30.1615 29.513 30.0369 29.4876 29.921 29.4384C29.8051 29.3892 29.7003 29.3172 29.6129 29.2266C29.5254 29.136 29.4571 29.0288 29.412 28.9112C29.367 28.7937 29.346 28.6683 29.3504 28.5424L29.3504 21.9663L20.3437 30.9731C20.1679 31.1489 19.9294 31.2477 19.6808 31.2477C19.4321 31.2477 19.1937 31.1489 19.0179 30.9731C18.842 30.7973 18.7433 30.5588 18.7433 30.3102C18.7433 30.0616 18.842 29.8231 19.0179 29.6473L28.0246 20.6405L21.4485 20.6405C21.2058 20.6319 20.9758 20.5295 20.8071 20.3547C20.6384 20.1799 20.5441 19.9465 20.5441 19.7036C20.5441 19.4607 20.6384 19.2273 20.8071 19.0525C20.9758 18.8777 21.2058 18.7752 21.4485 18.7667L30.2874 18.7667Z' fill='black'/%3E%3C/svg%3E");
  z-index: 2;
  will-change: transform, opacity;
  transition:
    transform 0.45s cubic-bezier(0.3, 0.7, 0.2, 1),
    opacity 0.45s cubic-bezier(0.3, 0.7, 0.2, 1);
}

.jo-card__link-icon::before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.jo-card__link-icon::after {
  opacity: 0;
  transform: translate3d(-12px, 12px, 0);
}

.jo-card:hover .jo-card__link-icon::before,
.jo-card:focus-visible .jo-card__link-icon::before {
  transform: translate3d(12px, -12px, 0);
  opacity: 0;
}

.jo-card:hover .jo-card__link-icon::after,
.jo-card:focus-visible .jo-card__link-icon::after {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* ---- jo-card スクロールフェードイン ---- */
/* Prevent first-paint flash before .js-fade is attached by JS */
.page-job-openings .jo-grid .jo-card {
  opacity: 0;
  transform: translateY(24px);
}

.page-job-openings .jo-grid .jo-card.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* デスクトップ2列レイアウト: 右列カードを100ms遅らせてずれ表示 */
@media (min-width: 1101px) {
  .page-job-openings .jo-grid .jo-card.js-fade:nth-child(even) {
    transition-delay: 100ms;
  }
}

/* ---- Application Flow ---- */
.jo-flow {
  padding: 0 0 clamp(60px, 8vw, 120px) 0;
  background: #fff;
}

.jo-flow__inner {
  width: 78.125%;
  margin: 0 auto;
}

.jo-flow__head {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.jo-flow__head .section-heading__main {
  color: #fff;
  padding-left: 0;

  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(
    18px,
    calc(13.916230366492147px + 1.0471204188481675vw),
    30px
  );
  line-height: 180%;
  letter-spacing: 4%;
}

.jo-flow__subtitle {
  color: rgba(255, 255, 255);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(
    16px,
    calc(15.319371727748692px + 0.17452006980802792vw),
    18px
  );
  line-height: 180%;
  letter-spacing: 4%;
}

.jo-flow__box {
  background: #4dc5b2;
  border-radius: clamp(20px, calc(13px + 1.7vw), 40px);
  padding: clamp(24px, calc(19px + 1.33vw), 40px)
    clamp(20px, calc(-4px + 5.8vw), 90px) clamp(40px, calc(34px + 1.66vw), 60px);
}

.jo-flow__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(20px, calc(16.596858638743456px + 0.8726003490401396vw), 30px);
  padding-top: 56px;
}

.jo-flow__steps::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 10%;
  right: 10%;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255);
}

.jo-step {
  position: relative;
  background: white;
  border-radius: 10px;
  padding: 8px 20px 18px;
  text-align: center;
}

.jo-step__num {
  position: absolute;
  top: -56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  color: #22d2ae;
  margin-bottom: 0;
  letter-spacing: 0;

  font-family: Syncopate;
  font-weight: 700;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: 4%;
  text-align: center;
}

.jo-step__title {
  color: #22c8ae;
  margin-bottom: 4px;

  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(
    16px,
    calc(15.319371727748692px + 0.17452006980802792vw),
    18px
  );
  line-height: 180%;
  letter-spacing: 4%;
  text-align: center;
}

.jo-step__desc {
  color: #232323;

  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(
    14px,
    calc(13.319371727748692px + 0.17452006980802792vw),
    16px
  );
  line-height: 130%;
  letter-spacing: 4%;
  text-align: center;
  vertical-align: middle;
  min-height: 2.6em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jo-flow__arrow {
  display: none;
}

/* ---- Consult CTA ---- */
.jo-consult {
  position: relative;
  padding: 0 0
    clamp(80px, calc(66.38743455497382px + 3.4904013961605584vw), 120px) 0;
  background: #fff;
  overflow: hidden;
  text-align: center;
}

.jo-consult .top_flow_text {
  margin-top: 0;
  height: 100px;
  z-index: 999;
}

.jo-consult .top_flow_text ._bg_text_top {
  top: 0;
}

.jo-consult .top_flow_text ._bg_text_top ul li {
  background: linear-gradient(
    180deg,
    rgb(88, 254, 249, 0.2) 0%,
    rgb(107, 255, 161, 0.2) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.jo-consult .top_flow_text ._bg_text li:after {
  background: linear-gradient(
    180deg,
    rgb(88, 254, 249, 0.2) 0%,
    rgb(107, 255, 161, 0.2) 100%
  );
}

.jo-consult__inner {
  position: relative;
  z-index: 1;
  width: 78.125%;
  margin: 0 auto;
}

.jo-consult__heading {
  font-weight: 700;
  color: #22d2ae;
  margin: -54px auto 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(
    18px,
    calc(14.326530612244898px + 1.0204081632653061vw),
    30px
  );
  line-height: 180%;
  letter-spacing: 4%;
  text-align: center;
}

.jo-consult__text {
  margin-bottom: 30px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(
    14px,
    calc(13.319371727748692px + 0.17452006980802792vw),
    16px
  );
  line-height: 180%;
  letter-spacing: 4%;
  text-align: center;
  color: #232323;
}

.jo-consult__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.95em;
  background: #22d2ae;
  border-radius: 8px;
  padding: 10px
    clamp(44px, calc(31.755102040816325px + 3.4013605442176873vw), 84px);
  font-family: var(--font-main);
  font-weight: 700;
  color: white;
  text-decoration: none;

  font-family: Syncopate;
  font-weight: 700;
  font-size: clamp(
    14px,
    calc(12.775510204081632px + 0.3401360544217687vw),
    18px
  );
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;

  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.jo-consult__btn svg {
  width: clamp(40px, calc(37px + 0.85vw), 50px);
  height: clamp(40px, calc(37px + 0.85vw), 50px);
}

.jo-consult__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* ---- Bottom Working Appeal ---- */
.jo-appeal {
  padding: clamp(40px, calc(33.87755102040816px + 1.7006802721088436vw), 60px) 0;
  background: #f8f6eb;
}

.jo-appeal__inner {
  width: 78.125%;
  margin: 0 auto;
}

.jo-appeal__header {
  margin-bottom: 0;
}

.jo-appeal__lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: clamp(
    14px,
    calc(12.638743455497382px + 0.34904013961605584vw),
    18px
  );

  line-height: 180%;
  letter-spacing: 4%;
  color: var(--color-text-body);
}

.jo-appeal__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, calc(32.98429319371728px + 4.363001745200698vw), 100px);
  margin-top: 50px;
  padding-inline: clamp(
    20px,
    calc(2.984293193717278px + 4.363001745200698vw),
    70px
  );
}

.jo-appeal-card {
  text-decoration: none;
  color: var(--color-text-body);
  transition: transform 0.25s ease;
}

.jo-appeal-card__photo {
  width: 100%;
  border-radius: clamp(
    18px,
    calc(14.326530612244898px + 1.0204081632653061vw),
    30px
  );
  aspect-ratio: 48 / 24;
  overflow: hidden;
}

.jo-appeal-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.jo-appeal-card:hover .jo-appeal-card__photo img {
  transform: scale(1.04);
}

.jo-appeal-card__body {
  padding: 14px 0 0;
}

.jo-appeal-card__title {
  font-weight: 700;
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 1.5;
  color: var(--color-text-body);
  text-align: center;
  margin-bottom: 14px;
}

.jo-appeal-card__title::after {
  content: "";
  display: block;
  width: 30px;
  background: #22d2ae;
  height: 2px;
  margin: 0 auto;
  margin-top: 4px;
}

.jo-appeal-card__text {
  margin-bottom: clamp(
    14px,
    calc(9.10204081632653px + 1.3605442176870748vw),
    30px
  );
  text-align: left;

  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: clamp(
    14px,
    calc(13.387755102040817px + 0.17006802721088435vw),
    16px
  );

  line-height: 180%;
  letter-spacing: 4%;
}

.jo-appeal-card .entry-section__link {
  margin-top: 0;
  display: flex;
  justify-content: center;
}

.page-job-openings .sv-section,
.page-404 .sv-section,
.page-privacy-policy .sv-section,
.page-job-requirements .sv-section {
  padding-bottom: clamp(60px, calc(-30px + 11vw), 150px);
}

.page-internal-communication .sv-section,
.page-culture .sv-section,
.page-growth-support .sv-section,
.page-evaluation-system .sv-section,
.page-career-path .sv-section,
.page-environment .sv-section {
  padding-bottom: clamp(0px, calc(-36px + 10vw), 120px);
}

/* ---- Responsive (tablet) ---- */
@media (max-width: 1100px) {
  .jo-grid {
    grid-template-columns: 1fr;
  }

  .jo-card {
    grid-template-columns: 35% 1fr;
  }
}

/* ==========================================================
   JOD — Job Opening Detail page  (page-jod)
   ========================================================== */

/* ---- Intro section ---- */

.jod-intro__inner {
  width: 65.11%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 24% 1fr;
  gap: clamp(20px, calc(7px + 3.3333vw), 60px);
  align-items: center;
}

/* Prevent first-paint flash before .js-fade is attached by JS */
.page-job-requirements .jod-intro__inner {
  opacity: 0;
  transform: translateY(24px);
}

.page-job-requirements .jod-intro__inner.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.jod-intro__image {
  border-radius: clamp(
    8px,
    calc(3.1020408163265305px + 1.3605442176870748vw),
    24px
  );
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

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

.jod-intro__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jod-intro__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.jod-intro__heading {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-top: 10px;
}

.jod-intro__num {
  color: var(--jo-accent);

  font-family: Syncopate;
  font-weight: 700;
  font-size: clamp(
    18px,
    calc(14.938775510204081px + 0.8503401360544218vw),
    28px
  );
  line-height: 160%;
  letter-spacing: 4%;
}

.jod-intro__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(
    16px,
    calc(12.326530612244898px + 1.0204081632653061vw),
    28px
  );
  line-height: 160%;
  letter-spacing: 4%;
}

.jod-intro__desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(14px, calc(13px + 0.33vw), 18px);
  line-height: 180%;
  letter-spacing: 4%;
}

/* ---- Requirements section ---- */
.jod-req {
  padding: clamp(40px, calc(27px + 3.333vw), 80px) 0
    clamp(80px, calc(67px + 3.3333vw), 120px);
  background: #fff;
}

.jod-req__inner {
  width: 78.125%;
  margin: 0 auto;
  background: #f9f9f9;
  border-radius: clamp(20px, calc(14px + 1.6666vw), 40px);
  padding: clamp(30px, calc(14px + 4.16666vw), 80px)
    clamp(20px, calc(-5px + 6.8vw), 100px) clamp(50px, 6vw, 80px);
}

.jod-req__heading {
  margin-bottom: clamp(
    30px,
    calc(23.877551020408163px + 1.7006802721088436vw),
    50px
  );
  text-align: center;
  display: block;
}

.jod-req .section-heading__main,
.jod-others .section-heading__main {
  padding-left: 0;
  font-size: clamp(
    16px,
    calc(12.938775510204081px + 0.8503401360544218vw),
    26px
  );
}

.jod-req .section-heading__main::before,
.jo-flow__head .section-heading__main::before,
.jod-others .section-heading__main::before {
  content: none;
  display: none;
}

/* Tabs */
.jod-tabs {
  --jod-tab-active-index: 0;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: clamp(28px, calc(24px + 1.43vw), 46px);
  border-radius: 999px;
  overflow: visible;
  border: none;
  background: #b6b6b6;
  width: 100%;
}

.jod-tabs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  border-radius: 999px;
  background: #f27b90;
  transform: translateX(calc(var(--jod-tab-active-index) * 100%));
  transition: transform 0.56s cubic-bezier(0.23, 0.99, 0.32, 1);
  z-index: 0;
}

.jod-tab {
  position: relative;
  z-index: 1;
  padding: 0.61em 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, calc(12px + 0.5vw), 20px);
  line-height: 180%;
  letter-spacing: 4%;
  text-align: center;

  background: transparent;
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 999px;
  transition: color 0.2s ease;
}

.jod-tab + .jod-tab {
  border-left: none;
}

.jod-tab--active {
  color: #fff;
}

.jod-tab--active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15.5px solid transparent;
  border-right: 15.5px solid transparent;
  border-top: 15.5px solid #f27b90;
}

.jod-tab-panel {
  max-width: 800px;
  margin: 0 auto;
}

.jod-tab-panel[hidden] {
  display: none !important;
}

.jod-tab-panel.is-tab-entering-from-right {
  animation: jodPanelSlideFromRight 0.42s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.jod-tab-panel.is-tab-entering-from-left {
  animation: jodPanelSlideFromLeft 0.42s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

@keyframes jodPanelSlideFromRight {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes jodPanelSlideFromLeft {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .jod-tab-panel.is-tab-entering-from-right,
  .jod-tab-panel.is-tab-entering-from-left {
    animation: none;
  }
}

/* Facility groups */
.jod-facility {
  margin-bottom: clamp(60px, calc(40px + 5vw), 120px);
}

.jod-facility:last-child {
  margin-bottom: 0;
}

.jod-facility__header {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
  background: transparent;
  border-left: none;
  padding: 0;
  margin-bottom: 10px;
  color: #f27b90;

  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(
    16px,
    calc(14.666666666666666px + 0.33333333333333337vw),
    20px
  );
  line-height: 160%;
  letter-spacing: 4%;
  text-align: center;
}

/* Requirements table */
.jod-table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(14px, calc(13.4px + 0.17006vw), 16px);
}

.jod-table th,
.jod-table td {
  padding: 20px 0px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #c7c7c7;

  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 220.00000000000003%;
  letter-spacing: 4%;
  color: #333;
}

.jod-table th {
  width: clamp(135px, calc(114px + 5.416vw), 200px);
  white-space: nowrap;
  font-weight: 700;
  background: transparent;
}

.jod-table td {
  background: transparent;
}

/* CTA below tables */
.jod-req__cta {
  margin-top: clamp(
    60px,
    calc(53.87755102040816px + 1.7006802721088436vw),
    80px
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, calc(15px + 0.3333vw), 20px);
}

.jod-req__inquiry {
  color: var(--color-text-green);
  text-decoration: none;

  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 4%;
  text-align: center;

  transition: color 0.2s ease;
}

.jod-req__inquiry:hover {
  color: #1ab896;
}

/* ---- Others section ---- */
.jod-others {
  padding: 0 0 clamp(10px, calc(0.816px + 2.551vw), 40px);
}

.jod-others__inner {
  width: 78.125%;
  margin: 0 auto;
}

.jod-others__heading {
  margin-bottom: clamp(28px, 3.5vw, 48px);
  margin-inline: auto;
  width: fit-content;
  display: block;
}

/* ---- Responsive (tablet) ---- */
@media (max-width: 1100px) {
  .jod-intro__inner {
    grid-template-columns: 38% 1fr;
    gap: 28px;
  }
}

/* ---- Responsive (mobile) ---- */
@media (max-width: 767px) {
  .jo-jobs__inner,
  .jo-flow__inner,
  .jo-consult__inner {
    width: 89.66%;
  }

  .jo-appeal__inner {
    width: 84.53%;
  }

  .jo-intro-text {
    text-align: left;
    padding-inline: 2.9%;
  }

  .jo-grid {
    grid-template-columns: 1fr;
  }

  .jo-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
      "img meta"
      "desc desc"
      "link link";
    grid-template-columns: 100px 1fr;
    gap: 12px 14px;
    padding: 24px 20px 12px;
    align-items: start;
  }

  .jo-card__tag {
    padding: 0.56px 9.3px;
    border-radius: 12.12px;
  }

  .jo-card__image {
    aspect-ratio: 1 / 1;
    align-self: start;
    border-radius: 10px;
  }

  .jo-card__meta {
    align-self: start;
  }

  .jo-card__link {
    margin-top: 0;
  }

  .jo-flow__box {
    width: 82.85%;
    margin-inline: auto;
  }

  .jo-flow__steps {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 0;
  }

  .jo-flow__head {
    display: block;
    margin-bottom: 22px;
  }

  .jo-flow__head .section-heading__main {
    line-height: 1.6;
  }

  .jo-flow__steps::before {
    top: 52px;
    bottom: 52px;
    left: 25px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .jo-step {
    width: auto;
    margin-left: 63px;
    margin-right: 7px;
    min-height: 0;
    padding: 4px 10px 10px;
  }

  .jo-step__num {
    top: 50%;
    left: -56px;
    transform: translateY(-50%);
  }

  .jo-appeal__cards {
    grid-template-columns: 1fr;
  }

  .jo-consult__heading {
    margin-top: -84px;
  }

  .jod-intro__inner,
  .jod-req__inner,
  .jod-others__inner {
    width: 89.66%;
  }

  .jod-intro__inner {
    grid-template-columns: minmax(100px, 28vw) 1fr;
    gap: 10px 14px;
    align-items: start;
  }

  .jod-intro__image {
    grid-row: 1 / span 2;
    align-self: start;
  }

  .jod-intro__body {
    display: contents;
  }

  .jod-intro__tags,
  .jod-intro__heading {
    grid-column: 2;
  }

  .jod-intro__tags {
    align-self: end;
  }

  .jod-intro__heading {
    margin-top: 0;
    align-self: start;
    gap: 6px;
  }

  .jod-intro__desc {
    grid-column: 1 / -1;
  }

  .jod-tabs {
    width: 100%;
  }

  .jod-tab--active::after {
    bottom: -8px;
    border-left-width: 8px;
    border-right-width: 8px;
    border-top-width: 8px;
  }

  .jod-facility__header {
    display: block;
    text-align: center;
    line-height: 1.45;
  }

  .jod-facility__accent,
  .jod-facility__role {
    font-size: 23px;
  }

  .jod-table th {
    width: 82px;
    font-size: 12px;
    padding: 12px 10px;
  }

  .jod-table td {
    font-size: 12px;
    padding: 12px 10px;
  }
}

/* ============================================
   404 Page Styles
   ============================================ */

.not-found {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85%;
  margin-inline: auto;
}

.not-found__inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.not-found__content {
  text-align: center;
}

.not-found__message {
  color: var(--color-text-body);
  text-align: left;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(14px, calc(14px + 0.1666vw), 16px);
  line-height: 180%;
  letter-spacing: 4%;
  margin-bottom: clamp(50px, calc(40px + 2.5vw), 80px);
}

.not-found__speech {
  max-width: clamp(240px, calc(188px + 14vw), 400px);
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.not-found__button-wrapper {
  position: relative;
  display: inline-block;
  padding: clamp(126px, calc(103px + 6.166vw), 200px) 12px 12px;
  overflow: hidden;
}

.not-found__button-wrapper.js-fade {
  opacity: 1;
  transform: none;
  transition: none;
}

.not-found__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.48em;
  background-color: var(--color-accent-yellow);
  color: var(--color-text-body);
  width: fit-content;
  padding: 1.048em 4.236em;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  z-index: 2;

  font-family: Syncopate;
  font-weight: 700;
  font-size: clamp(16px, calc(13px + 0.85vw), 26.22px);
  line-height: 100%;
  letter-spacing: 0%;
  box-shadow: clamp(7px, calc(6px + 0.25vw), 10px)
    clamp(7px, calc(6px + 0.25vw), 10px) 0 #d3ac51;
}

.not-found__button:hover {
  transform: translate(10px, 10px);
  box-shadow: 0 4px 12px rgba(253, 207, 100, 0.3);
}

.not-found__button-character {
  position: absolute;
  right: 0;
  bottom: clamp(75px, calc(70px + 1.4vw), 90px);
  left: 0;
  margin: 0 auto;
  z-index: 1;
  width: clamp(80px, calc(67px + 3.33333vw), 124px);
  height: auto;
  opacity: 0;
  transform: translateY(72px);
  transform-origin: center bottom;
  pointer-events: none;
  transition: all 0.3s ease;
}

.not-found__button-wrapper.is-visible .not-found__button-character {
  animation: valuePeoplePop 0.6s cubic-bezier(0.2, 1.2, 0.35, 1) 0.4s forwards;
  animation-fill-mode: forwards;
}

.not-found__button:hover ~ .not-found__button-character {
  transform: translate(10px, 10px) !important;
}

.not-found__button svg {
  width: clamp(19px, calc(15.333333333333334px + 0.9166666666666666vw), 30px);
}

/* ============================================================
   Privacy Policy Page
   ============================================================ */

.pp-section__inner {
  width: 65.108%;
  margin-inline: auto;
}

.pp-section__intro {
  margin-bottom: clamp(30px, calc(15px + 4.1666vw), 80px);

  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(
    14px,
    calc(13.333333333333334px + 0.16666666666666669vw),
    16px
  );
  line-height: 180%;
  letter-spacing: 4%;
  padding-inline: 10%;
}

.pp-card {
  background: #e9f9fa;
  border-radius: clamp(20px, calc(17px + 0.8333vw), 30px);
  padding: clamp(40px, calc(26.666666666666664px + 3.3333333333333335vw), 80px)
    clamp(20px, calc(-6.666666666666668px + 6.666666666666667vw), 100px)
    clamp(60px, calc(53.333333333333336px + 1.6666666666666667vw), 80px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pp-item__heading {
  font-size: clamp(16px, calc(14px + 0.5vw), 22px);
  margin-bottom: clamp(8px, calc(6px + 0.666vw), 16px);

  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 4%;
}

.pp-item__text,
.pp-item__list {
  font-size: clamp(14px, calc(13.4px + 0.16666vw), 16px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 4%;
}

.pp-item__list {
  list-style: none;
  padding-left: 1em;
  display: flex;
  flex-direction: column;
}

.pp-item__list li::before {
  content: "・";
  margin-left: -1em;
}

.pp-item__address {
  font-style: normal;
  margin-top: 1.6em;
}

/* Responsive */
@media (max-width: 768px) {
  .pp-section__inner {
    width: 89.66%;
  }

  .pp-section__intro {
    padding-inline: 4%;
  }
}
