@charset "UTF-8";
:root {
  --color-white: #fff;
  --color-text-light: #f4f1ea;
  --color-black: #090b0c;
  --color-header-bg: rgb(0 0 0 / 52%);
  --color-header-bg-strong: rgb(0 0 0 / 82%);
  --color-mobile-menu-bg: #15100c;
  --color-accent: #C4A46B;
  --color-accent-hover: #b59054;
  --color-focus: #ead39d;
  --color-overlay-left: rgb(9 11 12 / 76%);
  --color-overlay-mid: rgb(9 11 12 / 34%);
  --color-overlay-right: rgb(9 11 12 / 12%);
  --font-serif-jp: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  --font-sans-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --font-Poppins: "Poppins", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  --font-cardo: "Cardo", "Times New Roman", "Times", serif;
  --font-fraunces: "Fraunces", "Georgia", serif;
  --header-height-desktop: 82px;
  --header-height-mobile: 68px;
  --site-gutter: clamp(20px, 4.2vw, 60px);
  --hero-content-offset: clamp(24px, 11.8vw, 170px);
  --transition-base: 250ms ease;
  --z-hero-media: 0;
  --z-hero-overlay: 1;
  --z-hero-content: 2;
  --z-header: 10;
  --z-menu: 9;
}

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

html {
  min-width: 320px;
  text-size-adjust: 100%;
}

body,
h1,
p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

img,
picture {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  font: inherit;
  background: none;
  cursor: pointer;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  min-height: 100svh;
  color: var(--color-text-light);
  font-family: var(--font-sans-jp);
  background: var(--color-white);
  line-height: 1.6;
}

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

:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: calc(var(--z-header) + 10);
  transform: translateY(-150%);
  padding: 10px 14px;
  color: var(--color-black);
  font-weight: 700;
  background: var(--color-white);
  transition: transform var(--transition-base);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height-mobile);
  padding-left: var(--site-gutter);
  color: var(--color-white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0));
  transition: background-color var(--transition-base);
}
@media (min-width: 1024px) {
  .site-header {
    min-height: var(--header-height-desktop);
    padding-left: clamp(40px, 4.2vw, 60px);
  }
}

.site-header__logo {
  position: relative;
  z-index: calc(var(--z-menu) + 1);
  display: inline-flex;
  align-items: center;
  width: clamp(188px, 22vw, 292px);
  min-height: 44px;
}

.site-header.is-menu-open {
  background: var(--color-mobile-menu-bg);
}

.site-header__logo-image {
  width: 100%;
  height: auto;
}

.site-header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .site-header__nav {
    display: block;
    align-self: stretch;
    width: clamp(680px, 55.6vw, 1068px);
    margin-left: auto;
    background: var(--color-header-bg);
    backdrop-filter: blur(8px);
  }
}

.site-header__nav-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  height: 100%;
}

.site-header__nav-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 18px;
  overflow: hidden;
  font-family: var(--font-serif-jp);
  font-size: clamp(14px, 1.08vw, 16px);
  letter-spacing: 0;
  transition: background-color var(--transition-base), color var(--transition-base);
  color: #FAFAF7;
}

.site-header__nav-link::after {
  position: absolute;
  right: 28%;
  bottom: 23px;
  left: 28%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--color-accent);
  content: "";
  transition: transform var(--transition-base);
}

.site-header__nav-link:hover,
.site-header__nav-link:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.site-header__nav-link:hover::after,
.site-header__nav-link:focus-visible::after {
  transform: scaleX(1);
}

.site-header--detail {
  color: var(--color-white);
  background: var(--color-white);
}
@media (max-width: 1023px) {
  .site-header--detail {
    border-bottom: 1px solid #d9d9d9;
  }
}

.site-header--detail .site-header__logo-image {
  filter: brightness(0) saturate(100%) invert(58%) sepia(0%) saturate(18%) hue-rotate(153deg) brightness(95%) contrast(87%);
}

.site-header--detail.is-menu-open {
  background: var(--color-mobile-menu-bg);
}
@media (max-width: 1023px) {
  .site-header--detail.is-menu-open {
    border-bottom-color: transparent;
  }
}

.site-header--detail.is-menu-open .site-header__logo-image {
  filter: none;
}

.site-header--detail .site-header__nav {
  background: #858584;
  backdrop-filter: none;
}

.site-header--detail .site-header__nav-link:hover,
.site-header--detail .site-header__nav-link:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.site-header__menu-button {
  position: relative;
  z-index: calc(var(--z-menu) + 1);
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: var(--header-height-mobile);
  background: rgba(0, 0, 0, 0.22);
  transition: background-color var(--transition-base);
}
@media (min-width: 1024px) {
  .site-header__menu-button {
    display: none;
  }
}

.site-header--detail .site-header__menu-button {
  background: #858584;
}

.recruitment-detail-main {
  padding-top: var(--header-height-mobile);
  color: #333;
  background: #fff;
}
@media (min-width: 1024px) {
  .recruitment-detail-main {
    padding-top: var(--header-height-desktop);
  }
}

.detail-breadcrumb {
  width: min(100% - 40px, 1080px);
  margin-inline: auto;
  padding: clamp(30px, 3.6vw, 25px) 0 clamp(28px, 3.2vw, 60px);
}

.detail-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #828282;
  font-family: var(--font-sans-jp);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  padding: 0;
}

.detail-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.detail-breadcrumb__item + .detail-breadcrumb__item::before {
  color: #828282;
  content: "・";
}

.detail-breadcrumb__link {
  color: #333;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color var(--transition-base);
}

.detail-breadcrumb__link:hover,
.detail-breadcrumb__link:focus-visible {
  color: var(--color-accent-hover);
}

.site-header__menu-line {
  position: absolute;
  width: 28px;
  height: 2px;
  background: var(--color-white);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.site-header__menu-line:nth-child(1) {
  transform: translateY(-8px);
}

.site-header__menu-line:nth-child(3) {
  transform: translateY(8px);
}

.site-header.is-menu-open .site-header__menu-line:nth-child(1) {
  transform: rotate(45deg);
}

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

.site-header.is-menu-open .site-header__menu-line:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-menu);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding: calc(var(--header-height-mobile) + 44px) 24px 36px;
  background: radial-gradient(circle at 50% 0%, rgba(200, 165, 104, 0.1), transparent 34%), var(--color-mobile-menu-bg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 420ms cubic-bezier(0.16, 1, 0.3, 1), transform 520ms cubic-bezier(0.16, 1, 0.3, 1), visibility 420ms cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.mobile-menu__list {
  display: grid;
  width: min(100%, 344px);
  margin: auto auto 0;
  gap: clamp(28px, 5.4svh, 37px);
  text-align: center;
}

.mobile-menu__link {
  display: grid;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  font-family: var(--font-serif-jp);
  color: var(--color-white);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 560ms cubic-bezier(0.16, 1, 0.3, 1), transform 560ms cubic-bezier(0.16, 1, 0.3, 1), color var(--transition-base);
}

.mobile-menu.is-open .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu__link:hover,
.mobile-menu__link:focus-visible {
  color: var(--color-accent);
}

.mobile-menu__label {
  color: var(--color-accent);
  font-family: var(--font-sans-jp);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.48em;
  text-indent: 0.48em;
}

.mobile-menu__text {
  color: var(--color-white);
  font-size: clamp(18px, 5vw, 21px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.mobile-menu__entry {
  width: min(100%, 344px);
  min-height: 52px;
  margin: clamp(42px, 8svh, 76px) auto 0;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 560ms cubic-bezier(0.16, 1, 0.3, 1), transform 560ms cubic-bezier(0.16, 1, 0.3, 1), background-color var(--transition-base);
}

.mobile-menu.is-open .mobile-menu__entry {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open .mobile-menu__item:nth-child(1) .mobile-menu__link {
  transition-delay: 90ms;
}

.mobile-menu.is-open .mobile-menu__item:nth-child(2) .mobile-menu__link {
  transition-delay: 140ms;
}

.mobile-menu.is-open .mobile-menu__item:nth-child(3) .mobile-menu__link {
  transition-delay: 190ms;
}

.mobile-menu.is-open .mobile-menu__item:nth-child(4) .mobile-menu__link {
  transition-delay: 240ms;
}

.mobile-menu.is-open .mobile-menu__item:nth-child(5) .mobile-menu__link {
  transition-delay: 290ms;
}

.mobile-menu.is-open .mobile-menu__item:nth-child(6) .mobile-menu__link {
  transition-delay: 340ms;
}

.mobile-menu.is-open .mobile-menu__item:nth-child(7) .mobile-menu__link {
  transition-delay: 390ms;
}

.mobile-menu.is-open .mobile-menu__entry {
  transition-delay: 460ms;
}

@media (max-height: 760px) {
  .mobile-menu {
    justify-content: flex-start;
    overflow-y: auto;
    padding-top: calc(var(--header-height-mobile) + 28px);
  }
  .mobile-menu__list {
    gap: 22px;
  }
  .mobile-menu__entry {
    margin-top: 34px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu,
  .mobile-menu__link,
  .mobile-menu__entry {
    transform: none;
    transition: none;
  }
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  font-family: var(--font-serif-jp);
  font-weight: 600;
  line-height: 1;
  text-align: center;
  transition: transform var(--transition-base), background-color var(--transition-base), border-color var(--transition-base);
}

.button--primary {
  width: min(100%, 280px);
  min-height: 53px;
  padding: 14px 28px;
  color: var(--color-white);
  background: var(--color-accent);
}

.button--primary:hover,
.button--primary:focus-visible {
  transform: translateY(-2px);
  background: var(--color-accent-hover);
}

.button--primary:active {
  transform: translateY(0);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 100svh;
  overflow: hidden;
  padding: calc(var(--header-height-mobile) + 52px) 20px clamp(46px, 11svh, 112px);
  background: var(--color-black);
}
@media (min-width: 768px) {
  .hero {
    align-items: center;
    padding: calc(var(--header-height-mobile) + 80px) var(--hero-content-offset) 80px;
  }
}
@media (min-width: 1024px) {
  .hero {
    min-height: 100svh;
    padding-top: var(--header-height-desktop);
    padding-bottom: clamp(70px, 8.5vh, 112px);
  }
}

.hero__media,
.hero__slide,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: var(--z-hero-media);
  isolation: isolate;
}

.hero__slide {
  opacity: 0;
  z-index: 0;
  overflow: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: opacity 1800ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 2;
}

.hero__slide.is-leaving {
  opacity: 0;
  z-index: 1;
}

.hero__slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.045) translate3d(0, 0, 0);
  object-position: 58% center;
  backface-visibility: hidden;
  transition: transform 7600ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
@media (min-width: 768px) {
  .hero__slide-image {
    object-position: center center;
  }
}

.hero__slide.is-active .hero__slide-image {
  transform: scale(1.015) translate3d(-0.6%, 0, 0);
}

.hero__content {
  position: relative;
  z-index: var(--z-hero-content);
  width: min(100%, 710px);
  margin-bottom: clamp(0px, 4svh, 38px);
  animation: heroContentReveal 1100ms cubic-bezier(0.16, 1, 0.3, 1) 180ms both;
}

.hero__eyebrow {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: clamp(26px, 3vw, 34px);
  color: rgba(244, 241, 234, 0.78);
  font-weight: 700;
  font-size: clamp(13px, 1.1vw, 16px);
  letter-spacing: 2px;
}

.hero__eyebrow::after {
  width: 50px;
  height: 2px;
  background: var(--color-accent);
  content: "";
}

.hero__title {
  display: grid;
  gap: 0.1em;
  margin-bottom: clamp(28px, 3vw, 36px);
  color: var(--color-text-light);
  font-family: var(--font-serif-jp);
  font-size: clamp(24px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero__title span {
  display: block;
}

.hero__cta {
  font-size: clamp(14px, 1.5vw, 14px);
  font-weight: 700;
  letter-spacing: 3.08px;
}

.hero__cta.is-traveling {
  animation: heroCtaTravel 680ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__pagination {
  position: absolute;
  right: var(--site-gutter);
  bottom: clamp(24px, 5vw, 48px);
  z-index: var(--z-hero-content);
  display: flex;
  gap: 12px;
  display: none;
}

.hero__dot {
  position: relative;
  width: clamp(34px, 3.5vw, 52px);
  height: 24px;
}

.hero__dot::before,
.hero__dot::after {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 2px;
  transform: translateY(-50%);
  content: "";
}

.hero__dot::before {
  background: rgba(255, 255, 255, 0.28);
}

.hero__dot::after {
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  background: var(--color-accent);
}

.hero__dot.is-active::after {
  animation: heroProgress 6200ms linear forwards;
}

.hero__dot:hover::before,
.hero__dot:focus-visible::before {
  background: rgba(255, 255, 255, 0.54);
}

@keyframes heroImageDrift {
  from {
    transform: scale(1.065) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.015) translate3d(-0.8%, 0, 0);
  }
}
@keyframes heroContentReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}
@keyframes heroProgress {
  from {
    transform: translateY(-50%) scaleX(0);
  }
  to {
    transform: translateY(-50%) scaleX(1);
  }
}
@keyframes heroCtaTravel {
  0% {
    transform: translateY(0);
  }
  38% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}
@media (max-width: 520px) {
  .hero__slide-image {
    object-position: 63% center;
  }
  .hero__content,
  .hero__eyebrow,
  .hero__title {
    text-align: center;
  }
  .hero__eyebrow::after {
    margin: 0 auto;
  }
  .hero__cta {
    width: min(100%, 280px);
    border-radius: 4px;
  }
  .hero__pagination {
    right: 20px;
    bottom: 18px;
    gap: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__slide,
  .hero__slide.is-active .hero__slide-image,
  .hero__content,
  .hero__cta.is-traveling,
  .hero__dot.is-active::after {
    animation: none;
    transition: none;
  }
  .hero__slide-image {
    transform: none;
  }
  .hero__dot.is-active::after {
    transform: translateY(-50%) scaleX(1);
  }
}
.story-section {
  color: #333;
  background: #f7f6f2;
}

.story-section__inner {
  width: 100%;
  margin-inline: auto;
  padding: clamp(76px, 9.7vw, 140px) 0 clamp(88px, 10vw, 136px);
}

.story-section__intro,
.story-section__detail {
  display: grid;
  column-gap: clamp(44px, 6.2vw, 96px);
  row-gap: clamp(0px, 7vw, 108px);
}

.story-section__intro {
  align-items: center;
  row-gap: clamp(26px, 3.1vw, 38px);
  grid-template-areas: "heading" "image" "body";
}
@media (min-width: 900px) {
  .story-section__intro {
    grid-template-columns: minmax(320px, 500px) minmax(520px, 50vw);
    grid-template-areas: "heading image" "body image";
    justify-content: space-between;
    padding-left: clamp(48px, 11.5vw, 166px);
  }
}

.story-section__detail {
  align-items: center;
  margin-top: clamp(76px, 11vw, 132px);
}
@media (min-width: 900px) {
  .story-section__detail {
    grid-template-columns: minmax(520px, 50vw) minmax(360px, 470px);
    justify-content: space-between;
    padding-right: clamp(48px, 11.5vw, 166px);
  }
}

.story-section__copy {
  padding-inline: 24px;
}
@media (min-width: 900px) {
  .story-section__copy {
    padding-inline: 0;
  }
}

.story-section__copy--lead {
  grid-area: heading;
}
@media (min-width: 900px) {
  .story-section__copy--lead {
    padding-top: 2px;
  }
}

.story-section__copy--lead-body {
  grid-area: body;
}

@media (min-width: 900px) {
  .story-section__copy--secondary {
    justify-self: end;
    width: min(100%, 470px);
  }
}

.story-section__title {
  display: grid;
  gap: 0.03em;
  margin-bottom: 0;
  color: #333;
  font-family: var(--font-serif-jp);
  font-size: clamp(24px, 3.25vw, 40px);
  font-weight: 600;
  line-height: 1.62;
  letter-spacing: 0;
  margin-top: 0;
}

.story-section__title span {
  display: block;
}

.story-section__body {
  display: grid;
  gap: clamp(22px, 2.5vw, 32px);
  font-family: var(--font-serif-jp);
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 400;
  line-height: 2.18;
  letter-spacing: 0.02em;
}

.story-section__image {
  margin: 0;
  overflow: hidden;
  background: #ddd8ce;
}

.story-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.story-section__image:hover img {
  transform: scale(1.025);
}

.story-section__image--top {
  grid-area: image;
  width: 100%;
  aspect-ratio: 572/464;
  justify-self: end;
}
@media (min-width: 900px) {
  .story-section__image--top {
    height: clamp(360px, 32.2vw, 500px);
    aspect-ratio: auto;
  }
}
.story-section__image--top img {
  object-position: center;
}

.story-section__image--bottom {
  width: 100%;
  aspect-ratio: 580/464;
  justify-self: start;
}
@media (min-width: 900px) {
  .story-section__image--bottom {
    height: clamp(360px, 32.2vw, 500px);
    aspect-ratio: auto;
  }
}
.story-section__image--bottom img {
  object-position: center;
}

@media (max-width: 899px) {
  .story-section__intro,
  .story-section__detail {
    grid-template-columns: 1fr;
  }
  .story-section__intro {
    row-gap: 28px;
  }
  .story-section__detail {
    margin-top: 40px;
  }
  .story-section__image--top,
  .story-section__image--bottom {
    width: calc(100% - 48px);
    justify-self: center;
  }
}
@media (max-width: 520px) {
  .story-section__inner {
    padding-top: 64px;
  }
  .story-section__copy {
    padding-inline: 20px;
  }
  .story-section__image--top,
  .story-section__image--bottom {
    aspect-ratio: 375/285;
  }
  .story-section__title {
    line-height: 1.55;
  }
  .story-section__body {
    line-height: 2.05;
  }
}
@media (prefers-reduced-motion: reduce) {
  .story-section__image img {
    transition: none;
  }
  .story-section__image:hover img {
    transform: none;
  }
}
.challenge-section {
  color: #333;
  background: #eee9df;
}

.challenge-section__inner {
  width: min(100% - 40px, 1100px);
  margin-inline: auto;
  padding: clamp(78px, 9vw, 132px) 0 clamp(86px, 9.6vw, 138px);
}

.challenge-section__heading {
  margin-bottom: clamp(42px, 5vw, 60px);
  text-align: center;
}

.challenge-section__eyebrow {
  margin-bottom: 14px;
  color: var(--color-accent);
  font-family: var(--font-Poppins);
  font-size: clamp(12px, 1.2vw, 16px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 2px;
}

.challenge-section__title {
  display: grid;
  gap: 0.25em;
  color: #333;
  font-family: var(--font-serif-jp);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
}

.challenge-section__title span {
  display: block;
}

.challenge-section__body {
  display: grid;
  gap: clamp(22px, 2.5vw, 30px);
  font-family: var(--font-serif-jp);
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 400;
  line-height: 2.22;
  letter-spacing: 0.02em;
  text-align: justify;
}

.challenge-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(42px, 6vw, 64px) clamp(20px, 3vw, 24px);
  margin-top: clamp(54px, 6.5vw, 72px);
}
@media (min-width: 760px) {
  .challenge-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hotel-card {
  min-width: 0;
}

.hotel-card__link {
  display: grid;
  gap: 16px;
  color: inherit;
}

.hotel-card__figure {
  aspect-ratio: 538/260;
  margin: 0;
  overflow: hidden;
  background: #d7d0c3;
}

.hotel-card__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), filter var(--transition-base);
}

.hotel-card__content {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  column-gap: 16px;
}

.hotel-card__area {
  grid-column: 1/-1;
  margin-bottom: 2px;
  color: var(--color-accent);
  font-family: var(--font-Poppins);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.28px;
  text-transform: uppercase;
}

.hotel-card__title {
  min-width: 0;
  color: #333;
  font-family: var(--font-serif-jp);
  font-size: clamp(18px, 1.65vw, 24px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
  margin-top: 2px;
}

.hotel-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 2px;
  color: #333;
  font-family: var(--font-serif-jp);
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.hotel-card__icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #92908c;
  transition: transform var(--transition-base), background-color var(--transition-base);
}

.hotel-card__icon::before {
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
  transform: translateX(-1px) rotate(45deg);
  content: "";
}

.hotel-card__link:hover .hotel-card__figure img,
.hotel-card__link:focus-visible .hotel-card__figure img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

.hotel-card__link:hover .hotel-card__icon,
.hotel-card__link:focus-visible .hotel-card__icon {
  transform: translateX(3px);
  background: var(--color-accent);
}

@media (max-width: 759px) {
  .challenge-section__inner {
    width: min(100% - 40px, 560px);
  }
  .challenge-section__heading {
    text-align: left;
  }
  .challenge-section__title {
    text-align: center;
  }
  .challenge-section__eyebrow {
    text-align: center;
  }
  .hotel-card__figure {
    aspect-ratio: 335/190;
  }
}
@media (max-width: 420px) {
  .challenge-section__inner {
    width: min(100% - 32px, 560px);
  }
  .hotel-card__title {
    margin-bottom: 0;
  }
  .hotel-card__content {
    grid-template-columns: 1fr;
  }
  .hotel-card__more {
    justify-self: end;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hotel-card__figure img,
  .hotel-card__icon {
    transition: none;
  }
  .hotel-card__link:hover .hotel-card__figure img,
  .hotel-card__link:focus-visible .hotel-card__figure img,
  .hotel-card__link:hover .hotel-card__icon,
  .hotel-card__link:focus-visible .hotel-card__icon {
    transform: none;
  }
}
.look-for-section {
  color: #34302c;
  background: #f8f8f5;
}

.look-for-section__inner {
  width: min(100% - 40px, 1080px);
  margin-inline: auto;
  padding: clamp(78px, 9vw, 132px) 0 clamp(86px, 9vw, 126px);
}

.look-for-section__heading {
  margin-bottom: clamp(46px, 6vw, 78px);
  text-align: center;
}

.look-for-section__eyebrow {
  margin-bottom: 16px;
  color: var(--color-accent);
  font-family: var(--font-Poppins);
  font-size: clamp(12px, 1.2vw, 16px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 2px;
}

.look-for-section__title {
  color: #34302c;
  font-family: var(--font-serif-jp);
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 2px;
}

.look-for-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 3vw, 24px);
}
@media (min-width: 760px) {
  .look-for-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1120px) {
  .look-for-section__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.look-for-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: clamp(560px, 45vw, 636px);
  padding: 24px 22px;
  border-top: 2px solid var(--color-accent);
  background: var(--color-white);
  box-shadow: 0 14px 28px rgba(30, 25, 20, 0.07);
}

.look-for-card__number {
  position: absolute;
  top: 22px;
  right: 28px;
  color: var(--color-accent);
  font-family: var(--font-serif-jp);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.look-for-card__content {
  display: grid;
  gap: clamp(18px, 2vw, 22px);
}

.look-for-card__title {
  padding-right: 24px;
  color: #333;
  font-family: var(--font-serif-jp);
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 700;
  line-height: 1.58;
  letter-spacing: 0.8px;
  margin-bottom: 0;
}

.look-for-card__text {
  color: #333;
  font-family: var(--font-serif-jp);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 500;
  line-height: 2.05;
  letter-spacing: 0.02em;
  margin-bottom: 13px;
}

.look-for-card__image {
  aspect-ratio: 304/228;
  margin: auto 0 0;
  overflow: hidden;
  background: #ddd8ce;
}

.look-for-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.look-for-card:nth-child(1) .look-for-card__image img {
  object-position: 45% center;
}

.look-for-card:nth-child(2) .look-for-card__image img {
  object-position: 50% center;
}

.look-for-card:nth-child(3) .look-for-card__image img {
  object-position: 62% center;
}

.look-for-card:hover .look-for-card__image img {
  transform: scale(1.025);
}

@media (max-width: 1119px) and (min-width: 760px) {
  .look-for-card:last-child {
    grid-column: 1/-1;
    width: min(100%, 520px);
    justify-self: center;
  }
}
@media (max-width: 759px) {
  .look-for-section__inner {
    width: min(100% - 40px, 560px);
  }
  .look-for-section__heading {
    text-align: left;
  }
  .look-for-section__eyebrow,
  .look-for-section__title {
    text-align: center;
  }
  .look-for-card {
    min-height: auto;
    gap: 20px;
  }
  .look-for-card__number {
    position: static;
    justify-self: start;
    margin: 0;
    align-self: flex-start;
  }
  .look-for-card__title {
    margin-top: 0;
  }
  .look-for-card__text {
    margin-bottom: 0;
  }
  .look-for-card__image {
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 420px) {
  .look-for-section__inner {
    width: min(100% - 32px, 560px);
  }
  .look-for-card {
    padding: 32px 22px 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .look-for-card__image img {
    transition: none;
  }
  .look-for-card:hover .look-for-card__image img {
    transform: none;
  }
}
.join-us-section {
  color: #333;
  background: #444;
}

.join-us-section__inner {
  width: min(100% - 40px, 1080px);
  margin-inline: auto;
  padding: clamp(72px, 8vw, 104px) 0 clamp(72px, 8vw, 98px);
}

.join-us-section__heading {
  margin-bottom: clamp(48px, 5.4vw, 66px);
  text-align: center;
}

.join-us-section__eyebrow {
  margin-bottom: 16px;
  color: var(--color-accent);
  font-family: var(--font-Poppins);
  font-size: clamp(12px, 1.2vw, 16px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 2px;
}

.join-us-section__title {
  color: var(--color-white);
  font-family: var(--font-serif-jp);
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 1px;
}

.join-us-section__list {
  display: grid;
  gap: clamp(28px, 3vw, 38px);
}

.join-us-card {
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
  align-items: stretch;
  background: #f8f8f5;
}

.join-us-card__figure {
  min-height: 258px;
  margin: 0;
  overflow: hidden;
  background: #2f302f;
}

.join-us-card__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), filter var(--transition-base);
}

.join-us-card:nth-child(1) .join-us-card__figure img {
  object-position: center;
}

.join-us-card:nth-child(2) .join-us-card__figure img {
  object-position: center;
}

.join-us-card:nth-child(3) .join-us-card__figure img {
  object-position: center;
}

.join-us-card__body {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 258px;
  padding: 32px 32px 32px 40px;
}

.join-us-card__point {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  place-items: center;
  width: clamp(70px, 15vw, 200px);
  min-height: 30px;
  color: var(--color-white);
  font-family: var(--font-Poppins);
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 2px;
  background: var(--color-accent);
}

.join-us-card__content {
  display: grid;
  gap: clamp(20px, 2.2vw, 26px);
}

.join-us-card__title {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 0;
  color: #34302c;
  font-family: var(--font-serif-jp);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.55;
}

.join-us-card__title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52px;
  height: 1px;
  background: var(--color-accent);
  content: "";
}

.join-us-card__text {
  color: #333;
  font-family: var(--font-serif-jp);
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 500;
  line-height: 2.05;
  letter-spacing: 0.02em;
  text-align: justify;
}

.join-us-card:hover .join-us-card__figure img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.02);
}

@media (max-width: 860px) {
  .join-us-card {
    grid-template-columns: 1fr;
  }
  .join-us-card__figure {
    aspect-ratio: 335/210;
    min-height: auto;
  }
  .join-us-card__body {
    min-height: auto;
  }
}
@media (max-width: 520px) {
  .join-us-section__inner {
    width: min(100% - 32px, 560px);
  }
  .join-us-section__heading {
    text-align: left;
  }
  .join-us-card__body {
    padding-right: 24px;
    padding-left: 24px;
  }
  .join-us-card__point {
    position: static;
    border-radius: 2px;
  }
  .join-us-section__eyebrow {
    text-align: center;
  }
  .join-us-section__title {
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .join-us-card__figure img {
    transition: none;
  }
  .join-us-card:hover .join-us-card__figure img {
    transform: none;
    filter: none;
  }
}
.numbers-section {
  color: #333;
  background: #F2EDE4;
}

.numbers-section__inner {
  width: min(100% - 40px, 1100px);
  margin-inline: auto;
  padding: 100px 0 0;
}

.numbers-section__intro {
  display: grid;
  align-items: start;
  gap: 8px;
}
@media (min-width: 860px) {
  .numbers-section__intro {
    grid-template-columns: minmax(360px, 540px) minmax(420px, 1fr);
  }
}

.numbers-section__eyebrow {
  margin-bottom: 18px;
  color: var(--color-accent);
  font-family: var(--font-Poppins);
  font-size: clamp(12px, 1.2vw, 16px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.32px;
}

.numbers-section__title {
  display: grid;
  gap: 0.08em;
  margin-top: 15px;
  margin-bottom: 10px;
  color: #333;
  font-family: var(--font-serif-jp);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: 2px;
}

.numbers-section__title span {
  display: block;
}

.numbers-section__lead {
  font-family: var(--font-serif-jp);
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.02em;
}

.numbers-section__visual {
  margin: 0;
  overflow: hidden;
  background: #ddd8ce;
}
@media (min-width: 860px) {
  .numbers-section__visual {
    transform: translateY(-4px);
  }
}

.numbers-section__visual img {
  width: 100%;
  aspect-ratio: 550/319;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.numbers-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 1.8vw, 20px);
  margin-top: clamp(54px, 6.8vw, 70px);
}
@media (min-width: 680px) {
  .numbers-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1040px) {
  .numbers-section__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

.number-card {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  padding: clamp(34px, 3vw, 42px) clamp(20px, 2.3vw, 28px) 30px;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
}

@media (min-width: 1040px) {
  .number-card--small {
    grid-column: span 3;
  }
}

@media (min-width: 1040px) {
  .number-card--wide {
    grid-column: span 4;
  }
}

.number-card__icon {
  position: absolute;
  top: 36px;
  left: 30px;
  width: 100px;
  height: 79px;
  opacity: 0.8;
  color: var(--color-accent);
  pointer-events: none;
}

.number-card__icon::before,
.number-card__icon::after {
  position: absolute;
  content: "";
  display: none;
}

.number-card__icon--calendar::before {
  inset: 22px 6px 8px;
  border: 7px solid currentColor;
  border-radius: 8px;
}

.number-card__icon--calendar::after {
  top: 12px;
  left: 18px;
  width: 56px;
  height: 56px;
  border-top: 8px solid currentColor;
  border-bottom: 8px solid currentColor;
  box-shadow: 0 20px 0 -13px currentColor;
}

.number-card__icon--clock::before {
  inset: 10px;
  border: 8px solid currentColor;
  border-radius: 50%;
}

.number-card__icon--clock::after {
  top: 28px;
  left: 45px;
  width: 26px;
  height: 34px;
  border-left: 7px solid currentColor;
  border-bottom: 7px solid currentColor;
}

.number-card__icon--bed::before {
  right: 0;
  bottom: 18px;
  left: 4px;
  height: 34px;
  border-radius: 8px 8px 0 0;
  background: currentColor;
}

.number-card__icon--bed::after {
  bottom: 52px;
  left: 6px;
  width: 36px;
  height: 28px;
  border-radius: 8px;
  background: currentColor;
  box-shadow: 44px 6px 0 -2px currentColor;
}

.number-card__icon--suitcase::before {
  inset: 18px 10px 2px;
  border: 8px solid currentColor;
  border-radius: 10px;
}

.number-card__icon--suitcase::after {
  top: 4px;
  left: 31px;
  width: 30px;
  height: 24px;
  border: 7px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.number-card__icon--leaf::before {
  top: 30px;
  left: 10px;
  width: 62px;
  height: 42px;
  border-radius: 62px 0;
  background: currentColor;
  transform: rotate(22deg);
}

.number-card__icon--leaf::after {
  right: 10px;
  bottom: 4px;
  width: 7px;
  height: 76px;
  background: currentColor;
  transform: rotate(36deg);
  transform-origin: bottom;
}

.number-card__icon--people::before {
  top: 4px;
  left: 33px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: -30px 10px 0 -3px currentColor, 30px 10px 0 -3px currentColor;
}

.number-card__icon--people::after {
  bottom: 4px;
  left: 30px;
  width: 32px;
  height: 56px;
  border-radius: 16px 16px 5px 5px;
  background: currentColor;
  box-shadow: -31px 7px 0 -4px currentColor, 31px 7px 0 -4px currentColor;
}

.number-card__icon--passport::before {
  inset: 4px 16px;
  border-radius: 4px;
  background: currentColor;
}

.number-card__icon--passport::after {
  top: 27px;
  left: 31px;
  width: 30px;
  height: 30px;
  border: 3px solid #eee9df;
  border-radius: 50%;
  box-shadow: 0 43px 0 -19px #eee9df;
}

.number-card__title {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  color: #333;
  font-family: var(--font-serif-jp);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.8px;
}

.number-card__value {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  padding-bottom: 12px;
  color: var(--color-accent);
  font-family: var(--font-cardo);
  line-height: 1;
}

.number-card__value::after {
  position: absolute;
  right: 10px;
  bottom: 0;
  left: 10px;
  height: 1px;
  background: var(--color-accent);
  content: "";
}

.number-card__value span {
  font-size: clamp(56px, 6.3vw, 80px);
  font-weight: 400;
}

.number-card__value em {
  color: #333;
  font-size: clamp(24px, 2vw, 26px);
  font-style: normal;
  font-weight: 600;
}

.number-card__text {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  color: #333;
  font-family: var(--font-serif-jp);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.numbers-section__note {
  margin-top: 28px;
  padding-bottom: 64px;
  color: #333;
  font-family: var(--font-serif-jp);
  font-size: 11px;
  line-height: 1.4;
  text-align: right;
}

@media (max-width: 859px) {
  .numbers-section__visual {
    order: -1;
  }
  .numbers-section__visual img {
    aspect-ratio: 335/188;
  }
}
@media (max-width: 520px) {
  .numbers-section__inner {
    width: 100%;
    padding: 0;
  }
  .numbers-section__intro {
    position: relative;
    display: block;
    min-height: 356px;
    padding: 0;
    overflow: hidden;
  }
  .numbers-section__heading {
    position: relative;
    z-index: 1;
    padding: 82px 20px 0;
    background: linear-gradient(180deg, rgba(242, 237, 228, 0) 0%, rgba(242, 237, 228, 0.2) 42%, #f2ede4 74%);
  }
  .numbers-section__visual {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 0;
    height: 188px;
  }
  .numbers-section__visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(242, 237, 228, 0.18) 0%, rgba(242, 237, 228, 0) 38%, #f2ede4 100%), linear-gradient(90deg, rgba(242, 237, 228, 0.88) 0%, rgba(242, 237, 228, 0.16) 50%, rgba(242, 237, 228, 0) 100%);
    content: "";
  }
  .numbers-section__visual img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-position: 58% center;
  }
  .numbers-section__eyebrow {
    margin-bottom: 12px;
  }
  .numbers-section__title {
    margin-top: 0;
    margin-bottom: 42px;
    font-size: clamp(24px, 7vw, 28px);
    line-height: 1.45;
  }
  .numbers-section__lead {
    width: min(100%, 340px);
    margin-inline: auto;
    font-size: 16px;
    line-height: 1.95;
  }
  .number-card {
    min-height: 220px;
  }
  .numbers-section__eyebrow,
  .numbers-section__title,
  .numbers-section__lead {
    text-align: center;
  }
  .number-card__text {
    font-size: 14px;
  }
}
.staff-voices-section {
  color: #34302c;
  background: #f6f6ef;
}

.staff-voices-section__inner {
  width: min(100% - 40px, 1080px);
  margin-inline: auto;
  padding: clamp(78px, 8.8vw, 120px) 0 clamp(86px, 9vw, 132px);
}

.staff-voices-section__heading {
  margin-bottom: clamp(48px, 5.8vw, 72px);
  text-align: center;
}

.staff-voices-section__eyebrow {
  margin-bottom: 18px;
  color: var(--color-accent);
  font-family: var(--font-Poppins);
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 2px;
}

.staff-voices-section__title {
  color: #333;
  font-family: var(--font-serif-jp);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 2px;
}

.staff-voices-section__slider {
  --staff-voices-gap: clamp(16px, 4vw, 24px);
  position: relative;
}

.staff-voices-section__viewport {
  margin-inline: calc(var(--staff-voices-gap) * -0.35);
  padding: 0 calc(var(--staff-voices-gap) * 0.35) 12px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: calc(var(--staff-voices-gap) * 0.35);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.staff-voices-section__viewport::-webkit-scrollbar {
  display: none;
}
.staff-voices-section__viewport:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 4px;
}

.staff-voices-section__grid {
  display: flex;
  gap: var(--staff-voices-gap);
}
@media (min-width: 560px) {
  .staff-voices-section__grid .staff-voice-card {
    flex-basis: calc((100% - var(--staff-voices-gap) - var(--staff-voices-gap)) / 3);
  }
}
@media (min-width: 900px) {
  .staff-voices-section__grid {
    --staff-voices-gap: clamp(18px, 2vw, 25px);
  }
  .staff-voices-section__grid .staff-voice-card {
    flex-basis: calc((100% - var(--staff-voices-gap) - var(--staff-voices-gap) - var(--staff-voices-gap) - var(--staff-voices-gap)) / 5);
  }
}

.staff-voice-card {
  flex: 0 0 calc((100% - var(--staff-voices-gap)) / 2);
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.staff-voice-card__link {
  display: grid;
  gap: clamp(18px, 2vw, 24px);
  color: inherit;
}

.staff-voice-card__image {
  aspect-ratio: 202/210;
  margin: 0;
  overflow: hidden;
  background: #d7d0c3;
}

.staff-voice-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), filter var(--transition-base);
}

.staff-voice-card:nth-child(1) .staff-voice-card__image img {
  object-position: 58% 30%;
}

.staff-voice-card:nth-child(2) .staff-voice-card__image img {
  object-position: 52% 28%;
}

.staff-voice-card:nth-child(3) .staff-voice-card__image img {
  object-position: 50% 30%;
}

.staff-voice-card:nth-child(4) .staff-voice-card__image img {
  object-position: 55% 30%;
}

.staff-voice-card:nth-child(5) .staff-voice-card__image img {
  object-position: 48% 28%;
}

.staff-voice-card__body {
  display: grid;
  gap: 4px;
}

.staff-voice-card__role {
  color: #34302c;
  font-family: var(--font-serif-jp);
  font-size: clamp(14px, 1.28vw, 16px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 2px;
}

.staff-voice-card__name {
  color: #34302c;
  font-family: var(--font-serif-jp);
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
  margin: 0;
}

.staff-voice-card__name span {
  margin-left: 4px;
  font-size: 14px;
  font-weight: 400;
}

.staff-voice-card__more {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: var(--color-accent);
  font-family: var(--font-serif-jp);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2px;
}

.staff-voice-card__icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--color-accent);
  transition: transform var(--transition-base), background-color var(--transition-base);
}

.staff-voice-card__icon::before {
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
  transform: translateX(-1px) rotate(45deg);
  content: "";
}

.staff-voice-card__link:hover .staff-voice-card__image img,
.staff-voice-card__link:focus-visible .staff-voice-card__image img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

.staff-voice-card__link:hover .staff-voice-card__icon,
.staff-voice-card__link:focus-visible .staff-voice-card__icon {
  transform: translateX(3px);
  background: var(--color-accent-hover);
}

.staff-voices-section__controls {
  position: absolute;
  top: 40%;
  left: clamp(-18px, -2vw, -10px);
  right: clamp(-18px, -2vw, -10px);
  z-index: 1;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.staff-voices-section__slider.is-static .staff-voices-section__controls {
  display: none;
}

.staff-voices-section__control {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(38px, 4vw, 46px);
  height: clamp(38px, 4vw, 46px);
  border: 1px solid rgba(200, 165, 104, 0.7);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 34px rgba(30, 24, 16, 0.1);
  opacity: 1;
  pointer-events: auto;
  transition: opacity var(--transition-base), transform var(--transition-base), border-color var(--transition-base), background-color var(--transition-base);
}

.staff-voices-section__control::before {
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--color-accent);
  border-right: 1px solid var(--color-accent);
  content: "";
}

.staff-voices-section__control--prev::before {
  transform: translateX(2px) rotate(-135deg);
}

.staff-voices-section__control--next::before {
  transform: translateX(-2px) rotate(45deg);
}

.staff-voices-section__control:hover,
.staff-voices-section__control:focus-visible {
  border-color: var(--color-accent);
  background: var(--color-white);
  transform: translateY(-2px);
}

.staff-voices-section__control:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 4px;
}

.staff-voices-section__control:disabled {
  opacity: 0.28;
  cursor: default;
  transform: none;
}

@media (max-width: 520px) {
  .staff-voices-section__inner {
    width: min(100% - 28px, 560px);
  }
  .staff-voices-section__heading {
    text-align: left;
  }
  .staff-voices-section__eyebrow,
  .staff-voices-section__title {
    text-align: center;
  }
  .staff-voices-section__controls {
    position: static;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
  }
  .staff-voice-card__link {
    gap: 14px;
  }
  .staff-voice-card__role,
  .staff-voice-card__name {
    font-size: 13px;
    letter-spacing: 0.04em;
  }
  .staff-voice-card__name span {
    display: block;
    margin-left: 0;
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .staff-voices-section__viewport,
  .staff-voice-card__image img,
  .staff-voices-section__control,
  .staff-voice-card__icon {
    scroll-behavior: auto;
    transition: none;
  }
  .staff-voice-card__link:hover .staff-voice-card__image img,
  .staff-voice-card__link:focus-visible .staff-voice-card__image img,
  .staff-voice-card__link:hover .staff-voice-card__icon,
  .staff-voice-card__link:focus-visible .staff-voice-card__icon {
    transform: none;
    filter: none;
  }
}
.interview-hero {
  color: #333;
}

.interview-hero__inner {
  position: relative;
  width: min(100% - 40px, 1080px);
  min-height: clamp(360px, 31vw, 400px);
  margin-inline: auto;
  padding-bottom: clamp(46px, 5vw, 64px);
  border-bottom: 1px dashed rgba(51, 51, 51, 0.28);
}

.interview-hero__content {
  position: relative;
  z-index: 2;
  width: min(80%, 680px);
  padding-top: clamp(10px, 2.1vw, 30px);
}

.interview-hero__eyebrow {
  margin-bottom: clamp(20px, 2.2vw, 28px);
  color: var(--color-accent);
  font-family: var(--font-fraunces);
  font-size: clamp(24px, 4.4vw, 48px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.interview-hero__title {
  display: grid;
  gap: 0.2em;
  margin-bottom: clamp(22px, 2.6vw, 28px);
  color: #333;
  font-family: var(--font-serif-jp);
  font-size: clamp(16px, 2.7vw, 32px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 1px;
}

.interview-hero__title span {
  display: block;
}

.interview-hero__profile {
  display: grid;
  place-items: center;
  width: min(100%, 328px);
  min-height: 62px;
  margin-bottom: 20px;
  border: 1px solid rgba(51, 51, 51, 0.44);
  border-radius: 999px;
  color: #333;
  font-family: var(--font-serif-jp);
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.interview-hero__profile p {
  margin: 0;
}

.interview-hero__history {
  display: grid;
  gap: 2px;
  margin: 0;
  padding-left: 1.2em;
  color: #333;
  font-family: var(--font-serif-jp);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  list-style: disc;
}

.interview-hero__visual {
  position: absolute;
  top: 0;
  right: 0;
  width: min(64%, 696px);
  height: min(31vw, 400px);
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  background: #e4dfd5;
}

.interview-hero__visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #f8f8f5 0%, rgba(248, 248, 245, 0.88) 18%, rgba(248, 248, 245, 0.2) 50%, rgba(248, 248, 245, 0) 100%);
  content: "";
  pointer-events: none;
}

.interview-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.interview-body {
  color: #333;
}

.interview-body__inner {
  width: min(100% - 40px, 1080px);
  margin-inline: auto;
  padding: clamp(30px, 3.4vw, 70px) 0 clamp(84px, 8vw, 112px);
}

.interview-qa {
  display: grid;
  gap: clamp(14px, 1.8vw, 18px);
}

.interview-qa + .interview-qa {
  margin-top: clamp(42px, 5.8vw, 50px);
}

.interview-qa--with-image {
  grid-template-columns: minmax(220px, 316px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(42px, 7vw, 96px);
}
.interview-qa--with-image img {
  aspect-ratio: 316/316 !important;
}

.interview-qa--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 316px);
  gap: clamp(42px, 8vw, 118px);
}

.interview-qa__content {
  min-width: 0;
}

.interview-qa__question {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: clamp(14px, 1.8vw, 18px);
  margin-top: 0;
  color: #333;
  font-family: var(--font-serif-jp);
  font-size: clamp(13px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.02em;
  text-align: justify;
}
.interview-qa__question i {
  font-style: normal;
  display: block;
}

.interview-qa__question span:first-child {
  flex: 0 0 auto;
  color: var(--color-accent);
  font-family: var(--font-fraunces);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.interview-qa__answer {
  display: grid;
  gap: 8px;
}

.interview-qa__answer p {
  margin: 0 0 15px;
  color: #333;
  font-family: var(--font-serif-jp);
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 400;
  line-height: 2.05;
  letter-spacing: 0.02em;
  text-align: justify;
}
.interview-qa__answer p:last-child {
  margin-bottom: 0;
}

.interview-qa__image {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #ddd8ce;
}

.interview-qa__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 316/316;
  object-fit: cover;
}

.interview-qa--reverse .interview-qa__image img {
  aspect-ratio: 316/316;
}

@media (max-width: 859px) {
  .interview-hero__inner {
    display: grid;
    gap: 28px;
    min-height: auto;
  }
  .interview-hero__content {
    width: 100%;
    padding-top: 0;
  }
  .interview-hero__visual {
    position: relative;
    order: -1;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16/9;
  }
  .interview-hero__visual::before {
    display: none;
  }
  .interview-qa--with-image,
  .interview-qa--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .interview-qa--with-image .interview-qa__image,
  .interview-qa--reverse .interview-qa__image {
    order: -1;
    width: min(100%, 420px);
    margin: 0 auto;
  }
}
@media (max-width: 520px) {
  .detail-breadcrumb {
    width: min(100% - 32px, 480px);
    padding: 0;
  }
  .detail-breadcrumb__list {
    gap: 8px;
    font-size: 10px;
  }
  .interview-hero__inner {
    width: min(100% - 32px, 560px);
    padding-bottom: 38px;
    text-align: center;
  }
  .interview-hero__eyebrow {
    color: #A7A7A7;
  }
  .interview-hero__title {
    letter-spacing: normal;
  }
  .interview-hero__profile {
    width: 100%;
    max-width: 300px;
    min-height: 40px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    border-color: #C4A46B;
  }
  .interview-hero__history {
    justify-content: center;
    text-align: left;
  }
  .interview-body__inner {
    width: min(100% - 32px, 560px);
    padding-top: 38px;
  }
  .interview-qa + .interview-qa {
    margin-top: 15px;
  }
  .interview-qa__question {
    gap: 10px;
    line-height: 1.75;
    letter-spacing: normal;
  }
  .interview-qa__question i {
    display: inline;
  }
  .interview-qa__answer p {
    font-size: 12px;
    line-height: 2;
  }
}
.job-detail {
  color: #333;
  background: #fff;
}

.job-detail__inner {
  width: min(100% - 40px, 1080px);
  margin-inline: auto;
  padding: 0 0 clamp(72px, 7vw, 96px);
}

.job-detail__intro {
  margin-bottom: clamp(54px, 5.5vw, 72px);
}

.job-detail__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 22px;
  margin-bottom: 18px;
  padding: 2px 9px;
  border: 1px solid #333;
  color: #333;
  font-family: var(--font-serif-jp);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
}

.job-detail__title {
  display: grid;
  gap: 2px;
  margin-bottom: clamp(26px, 3vw, 34px);
  color: #333;
  font-family: var(--font-serif-jp);
  font-size: clamp(22px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.job-detail__title span {
  display: block;
}

.job-detail__lead {
  margin: 0;
  color: #333;
  font-family: var(--font-serif-jp);
  font-size: clamp(14px, 1.16vw, 16px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.02em;
}

.job-detail__table-wrap {
  border: 1px solid #d7d7d7;
  overflow: hidden;
  background: #fff;
}

.job-detail__table {
  width: 100%;
  border-collapse: collapse;
  color: #333;
  font-family: var(--font-serif-jp);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.75;
}

.job-detail__table th,
.job-detail__table td {
  border-bottom: 1px solid #d7d7d7;
  vertical-align: top;
}

.job-detail__table tr:last-child th,
.job-detail__table tr:last-child td {
  border-bottom: 0;
}

.job-detail__table th {
  width: 176px;
  padding: 30px 28px;
  background: #f0f0f0;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
}

.job-detail__table td {
  padding: 30px 32px;
  font-weight: 500;
}

.job-detail__content {
  display: grid;
  gap: 26px;
}

.job-detail__content p,
.job-detail__list {
  margin: 0;
}

.job-detail__content strong {
  font-weight: 700;
}

.job-detail__list {
  display: grid;
  gap: 2px;
  padding-left: 1.2em;
}

.job-detail__note {
  font-size: 13px;
}

.job-detail__entry {
  display: flex;
  width: min(100%, 432px);
  min-height: 60px;
  margin: clamp(54px, 5.4vw, 64px) auto 0;
}

@media (max-width: 680px) {
  .job-detail__inner {
    width: min(100% - 32px, 560px);
  }
  .job-detail__intro {
    margin-bottom: 36px;
  }
  .job-detail__lead br {
    display: none;
  }
  .job-detail__table-wrap {
    border: 0;
    overflow: visible;
  }
  .job-detail__table,
  .job-detail__table tbody,
  .job-detail__table tr,
  .job-detail__table th,
  .job-detail__table td {
    display: block;
    width: 100%;
  }
  .job-detail__table tr {
    overflow: hidden;
    border: 1px solid #d7d7d7;
    border-radius: 5px;
    background: #fff;
  }
  .job-detail__table tr + tr {
    margin-top: 24px;
  }
  .job-detail__table th {
    padding: 12px 16px;
    border-bottom: 1px solid #d7d7d7;
    background: #F2F2F2;
    font-size: 14px;
    line-height: 1.45;
    white-space: normal;
  }
  .job-detail__table td {
    padding: 19px 16px 23px;
    border-bottom: 0;
    font-size: 14px;
    line-height: 1.9;
  }
  .job-detail__content {
    gap: 18px;
  }
  .job-detail__content p,
  .job-detail__list {
    line-height: 1.9;
  }
  .job-detail__entry {
    border-radius: 4px;
  }
}
.entry-form-section {
  color: #333;
  background: #fff;
}

.entry-form-section__inner {
  width: min(100% - 40px, 980px);
  margin-inline: auto;
  padding: 0 0 clamp(80px, 8vw, 112px);
}

.entry-form-section__heading {
  margin-bottom: clamp(76px, 9vw, 132px);
  text-align: center;
}

.entry-form-section__title {
  margin-bottom: clamp(12px, 3vw, 32px);
  color: #333;
  font-family: var(--font-serif-jp);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.entry-form-section__lead {
  margin: 0;
  color: #333;
  font-family: var(--font-serif-jp);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.entry-form {
  width: min(100%, 900px);
  margin-inline: auto;
  color: #333;
  font-family: var(--font-serif-jp);
}

.entry-form__rows {
  display: grid;
  gap: clamp(36px, 4.6vw, 56px);
}

.entry-form__row {
  display: grid;
  grid-template-columns: minmax(210px, 270px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(34px, 4.8vw, 78px);
  margin: 0;
  padding: 0;
  border: 0;
}

.entry-form__label {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding-top: 8px;
  color: #333;
  font-size: clamp(15px, 1.16vw, 16px);
  font-weight: 700;
  line-height: 1.45;
}

.entry-form__label em {
  flex: 0 0 auto;
  min-width: 40px;
  padding: 3px 8px;
  color: #fff;
  background: var(--color-accent);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.entry-form__field {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.entry-form__field--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.entry-form__choice {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 26px;
  color: #333;
  font-size: clamp(15px, 1.14vw, 16px);
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
}

.entry-form__choice input {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: #333;
}

.entry-form__field--radio-look .entry-form__choice input[type=checkbox] {
  display: grid;
  place-content: center;
  appearance: none;
  border: 1px solid #666;
  border-radius: 50%;
  background: #fff;
}

.entry-form__field--radio-look .entry-form__choice input[type=checkbox]::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #333;
  transform: scale(0);
  transition: transform var(--transition-base);
  content: "";
}

.entry-form__field--radio-look .entry-form__choice input[type=checkbox]:checked::before {
  transform: scale(1);
}

.entry-form__field--radio-look .entry-form__choice input[type=checkbox]:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 4px;
}

.entry-form__input,
.entry-form__textarea {
  width: 100%;
  border: 1px solid #BDBDBD;
  border-radius: 3px;
  color: #333;
  background: #fff;
  font-family: var(--font-serif-jp);
  font-size: 14px;
  line-height: 1.5;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.entry-form__input {
  min-height: 40px;
  padding: 8px 11px;
}

.entry-form__textarea {
  min-height: 142px;
  resize: vertical;
  padding: 12px 13px;
}

.entry-form__input::placeholder,
.entry-form__textarea::placeholder {
  color: #8e8e8e;
}

.entry-form__input:focus,
.entry-form__textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(200, 165, 104, 0.18);
  outline: 0;
}

.entry-form__file {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.entry-form__file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.entry-form__file-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 204px);
  min-height: 42px;
  border: 1px solid #333;
  border-radius: 3px;
  color: #333;
  background: #f7f7f7;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color var(--transition-base), border-color var(--transition-base);
}

.entry-form__file-input:focus-visible + .entry-form__file-button {
  outline: 2px solid var(--color-focus);
  outline-offset: 4px;
}

.entry-form__file-button:hover {
  background: #fff;
  border-color: var(--color-accent);
}

.entry-form__file-name {
  color: #828282;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.entry-form__help {
  margin: -8px 0 0;
  color: #333;
  font-size: 14px;
  line-height: 1.65;
}

.entry-form__privacy {
  width: min(100%, 650px);
  margin: clamp(84px, 9vw, 118px) auto 0;
  text-align: center;
}

.entry-form__privacy p {
  margin: 0 0 24px;
  color: #333;
  font-size: 14px;
  line-height: 1.9;
}

.entry-form__privacy a {
  color: #1473e6;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-form__agree {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
}

.entry-form__agree input {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--color-accent);
}

.entry-form__submit {
  display: flex;
  width: min(100%, 432px);
  min-height: 60px;
  margin: 22px auto 0;
  font-size: 16px;
  font-weight: 700;
}

.entry-complete {
  color: #333;
  background: #fff;
}

.entry-complete__inner {
  width: min(100% - 40px, 1080px);
  margin-inline: auto;
  padding-bottom: 60px;
  border-bottom: 1px dashed rgba(51, 51, 51, 0.3);
  text-align: center;
  margin-bottom: 215px;
}

.entry-complete__title {
  margin-bottom: clamp(88px, 9.8vw, 132px);
  color: #333;
  font-family: var(--font-serif-jp);
  font-size: clamp(28px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.entry-complete__message {
  display: grid;
  gap: 2px;
  color: #333;
  font-family: var(--font-serif-jp);
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

.entry-complete__message p {
  margin: 0;
}

@media (max-width: 760px) {
  .entry-form-section__title {
    margin-top: 24px;
  }
  .entry-form-section__inner {
    width: min(100% - 32px, 560px);
  }
  .entry-form-section__heading {
    margin-bottom: 48px;
  }
  .entry-form__rows {
    gap: 30px;
  }
  .entry-form__row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .entry-form__label {
    align-items: center;
    gap: 12px;
    padding-top: 0;
    line-height: 1.45;
  }
  .entry-form__label em {
    min-width: 34px;
    padding: 3px 7px;
    font-size: 10px;
  }
  .entry-form__field--split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .entry-form__field {
    gap: 12px;
  }
  .entry-form__input {
    min-height: 42px;
    padding: 9px 11px;
  }
  .entry-form__file {
    display: grid;
    grid-template-columns: minmax(0, 200px) auto;
    align-items: center;
    gap: 16px;
  }
  .entry-form__file-button {
    width: 100%;
    min-height: 40px;
  }
  .entry-form__file-name {
    font-size: 13px;
    white-space: nowrap;
  }
  .entry-form__help {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.55;
  }
  .entry-form__privacy br {
    display: none;
  }
  .entry-form__privacy {
    margin-top: 64px;
  }
  .entry-form__agree {
    align-items: flex-start;
  }
  .entry-complete__inner {
    width: min(100% - 32px, 560px);
    padding-top: 32px;
  }
  .entry-complete__title {
    margin-bottom: 58px;
    font-size: clamp(24px, 7vw, 30px);
  }
}
.positions-section {
  color: #444;
  background: #f8f8f5;
}

.positions-section.is-scroll-arrived .positions-section__inner {
  animation: positionsArrive 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.positions-section__inner {
  width: min(100% - 40px, 1080px);
  margin-inline: auto;
  padding: clamp(78px, 8.8vw, 116px) 0 clamp(92px, 9.5vw, 128px);
}

.positions-section__heading {
  margin-bottom: clamp(52px, 6vw, 74px);
  text-align: center;
}

.positions-section__eyebrow {
  margin-bottom: 18px;
  color: var(--color-accent);
  font-family: var(--font-Poppins);
  font-size: clamp(12px, 1.3vw, 16px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 2px;
}

.positions-section__title {
  color: #333;
  font-family: var(--font-serif-jp);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 2px;
}

.positions-section__tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
  background: transparent;
}

.positions-section__tab {
  display: grid;
  place-items: center;
  gap: 4px;
  min-height: 80px;
  padding: 16px 12px 18px;
  color: #444;
  background: #eee9df;
  transition: background-color var(--transition-base), color var(--transition-base);
}

.positions-section__tab span {
  color: var(--color-accent);
  font-family: var(--font-sans-jp);
  font-size: clamp(8px, 0.9vw, 11px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 2px;
}

.positions-section__tab strong {
  font-family: var(--font-serif-jp);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 2px;
}

.positions-section__tab.is-active {
  color: var(--color-white);
  background: #444;
}

.positions-section__tab.is-active span {
  color: var(--color-accent);
}

.positions-section__panels {
  padding: 20px;
  background: #444;
}

.positions-section__panel {
  display: grid;
  gap: 18px;
  overflow: visible;
}

.positions-section__panel.is-scrollable {
  max-height: 600px;
  padding-right: 8px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: var(--color-accent) rgba(255, 255, 255, 0.18);
  scrollbar-width: thin;
}

.positions-section__panel::-webkit-scrollbar {
  width: 6px;
}

.positions-section__panel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.14);
}

.positions-section__panel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--color-accent);
}

.positions-section__panel[hidden] {
  display: none;
}

.positions-section__panel.is-active {
  animation: positionsPanelReveal 360ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.position-card {
  position: relative;
  display: grid;
  gap: 7px;
  min-height: 104px;
  padding: clamp(26px, 2.6vw, 32px) clamp(86px, 8vw, 118px) clamp(24px, 2.4vw, 30px) clamp(28px, 3.2vw, 42px);
  background: var(--color-white);
  transition: background-color var(--transition-base), transform var(--transition-base);
}

.position-card__category {
  color: var(--color-accent);
  font-family: var(--font-sans-jp);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 2px;
}

.position-card__title {
  color: #444;
  font-family: var(--font-serif-jp);
  font-size: clamp(16px, 1.75vw, 20px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
}

.position-card__locations {
  color: #444;
  font-family: var(--font-serif-jp);
  font-size: clamp(10px, 1vw, 12px);
  line-height: 1.5;
}

.position-card__icon {
  position: absolute;
  top: 50%;
  right: clamp(32px, 4.2vw, 50px);
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-base), background-color var(--transition-base);
}

.position-card__icon::before {
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--color-accent);
  border-right: 1px solid var(--color-accent);
  transform: translateX(-1px) rotate(45deg);
  content: "";
  transition: border-color var(--transition-base);
}

.position-card:hover,
.position-card:focus-visible {
  transform: translateY(-2px);
  background: #fbfaf7;
}

.position-card:hover .position-card__icon,
.position-card:focus-visible .position-card__icon {
  transform: translate(4px, -50%);
  background: var(--color-accent);
}

.position-card:hover .position-card__icon::before,
.position-card:focus-visible .position-card__icon::before {
  border-color: var(--color-white);
}

@keyframes positionsPanelReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes positionsArrive {
  0% {
    opacity: 0.72;
    transform: translateY(22px);
  }
  55% {
    opacity: 1;
    transform: translateY(-3px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 680px) {
  .positions-section__inner {
    width: min(100% - 32px, 560px);
  }
  .positions-section__heading {
    text-align: left;
  }
  .positions-section__tabs {
    gap: 0;
  }
  .positions-section__eyebrow,
  .positions-section__title {
    text-align: center;
  }
  .positions-section__tab,
  .positions-section__tab.is-active {
    min-height: 72px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .positions-section__panels {
    padding: 14px;
  }
  .positions-section__panel.is-scrollable {
    max-height: 532px;
    padding-right: 4px;
  }
  .position-card {
    min-height: 92px;
    padding: 24px 74px 24px 22px;
  }
  .position-card__icon {
    right: 22px;
    top: inherit;
    bottom: 0;
    width: 40px;
    height: 40px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .positions-section__panel.is-active,
  .positions-section.is-scroll-arrived .positions-section__inner,
  .positions-section__tab,
  .position-card,
  .position-card__icon,
  .position-card__icon::before {
    animation: none;
    transition: none;
  }
  .position-card:hover,
  .position-card:focus-visible,
  .position-card:hover .position-card__icon,
  .position-card:focus-visible .position-card__icon {
    transform: none;
  }
}
.entry-cta-section {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(300px, 27vw, 390px);
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-black);
}

.entry-cta-section__image,
.entry-cta-section__shade {
  position: absolute;
  inset: 0;
}

.entry-cta-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.entry-cta-section__shade {
  background: linear-gradient(90deg, rgba(9, 11, 12, 0.54), rgba(9, 11, 12, 0.34) 50%, rgba(9, 11, 12, 0.5)), rgba(9, 11, 12, 0.34);
}

.entry-cta-section__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(100% - 40px, 790px);
  text-align: center;
}

.entry-cta-section__eyebrow {
  margin-bottom: clamp(24px, 2.6vw, 34px);
  color: var(--color-accent);
  font-family: var(--font-Poppins);
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 2px;
}

.entry-cta-section__title {
  color: var(--color-text-light);
  font-family: var(--font-serif-jp);
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 2px;
  margin: 0;
}

.entry-cta-section__line {
  width: 56px;
  height: 1px;
  margin: clamp(24px, 2.8vw, 34px) 0 clamp(28px, 3vw, 40px);
  background: var(--color-accent);
}

.entry-cta-section__button {
  width: min(100%, 220px);
  min-height: 54px;
  font-size: 14px;
  letter-spacing: 3.08px;
  font-weight: 700;
}

@media (max-width: 520px) {
  .entry-cta-section {
    min-height: 360px;
  }
  .entry-cta-section__image {
    object-position: 52% center;
  }
  .entry-cta-section__button {
    border-radius: 4px;
  }
  .entry-cta-section__title span {
    display: block;
  }
}
.site-footer {
  color: #34302c;
  background: #fff;
}

.site-footer__inner {
  display: grid;
  justify-items: center;
  width: min(100% - 40px, 980px);
  margin-inline: auto;
  padding: clamp(42px, 5vw, 56px) 0 clamp(52px, 6.2vw, 72px);
}

.site-footer__nav {
  width: 100%;
}

.site-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px clamp(32px, 5.3vw, 78px);
}

.site-footer__nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: #34302c;
  font-family: var(--font-serif-jp);
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 500;
  line-height: 1.5;
}

.site-footer__nav-link::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--color-accent);
  content: "";
  transition: transform var(--transition-base);
}

.site-footer__nav-link:hover::after,
.site-footer__nav-link:focus-visible::after {
  transform: scaleX(1);
}

.site-footer__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 232px);
  min-height: 42px;
  margin-top: clamp(52px, 6vw, 76px);
  color: var(--color-white);
  font-family: var(--font-serif-jp);
  font-size: 16px;
  line-height: 1;
  background: #5f5d5b;
  transition: background-color var(--transition-base), transform var(--transition-base);
}

.site-footer__contact:hover,
.site-footer__contact:focus-visible {
  transform: translateY(-2px);
  background: #454543;
}

.site-footer__logo {
  display: inline-flex;
  width: min(100%, 330px);
  margin-top: clamp(70px, 7.4vw, 86px);
  opacity: 0.62;
}

.site-footer__logo img {
  width: 100%;
  height: auto;
  filter: brightness(0) saturate(0);
}

.site-footer__copyright {
  min-height: 38px;
  padding: 9px 20px;
  color: var(--color-white);
  font-family: var(--font-serif-jp);
  font-size: clamp(10px, 1vw, 16px);
  line-height: 1.4;
  text-align: center;
  background: #5f5d5b;
}

@media (max-width: 640px) {
  .site-footer__inner {
    width: min(100% - 32px, 520px);
  }
  .site-footer__nav-list {
    display: grid;
    gap: 12px 22px;
    text-align: center;
  }
  .site-footer__nav {
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 40px;
  }
  .site-footer__nav-link {
    justify-content: center;
  }
  .site-footer__contact {
    margin-top: 44px;
    width: 100%;
    border-radius: 4px;
    background: #333;
    min-height: 46px;
  }
  .site-footer__logo {
    width: min(100%, 170px);
    margin-top: 45px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-footer__nav-link::after,
  .site-footer__contact {
    transition: none;
  }
  .site-footer__contact:hover,
  .site-footer__contact:focus-visible {
    transform: none;
  }
}

/*# sourceMappingURL=main.css.map */
