@media (min-width: 769px) {
/* ========================================
   MV
   ======================================== */
.mv {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  background: #ECECEC;
  overflow: hidden;
}

.mv__copy {
  position: absolute;
  bottom: 60px;
  left: 40px;
  right: 40px;
}

.mv__tagline {
  font-family: var(--font-futura);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  color: #000;
  letter-spacing: 0.56px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 20px;
}

.mv__logo {
  width: 100%;
}

.mv__logo img {
  width: 100%;
  height: auto;
}

.mv__nav {
  position: absolute;
  top: 34px;
  right: 18px;
  width: 224px;
  z-index: 10;
}

.mv__entry-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-yellow);
  width: 202px;
  height: 50px;
  padding: 0 20px;
  margin-left: auto;
}

.mv__entry-text {
  font-family: var(--font-futura);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-black-alt);
  line-height: 1.5;
}

.mv__entry-arrow {
  width: 87px;
  height: 1px;
}

.mv__menu {
  position: relative;
  margin-top: 33px;
}

.mv__menu-dot {
  display: none;
}

.mv__menu-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-black);
  line-height: 1.5;
  text-align: right;
}

.mv__menu-list li a {
  position: relative;
  display: inline-block;
}

.mv__menu-list li a::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--color-yellow);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mv__menu-list li a:hover::before {
  opacity: 1;
}

.mv__menu-list li a:hover {
  opacity: 1;
}

/* ========================================
   Hero Text
   ======================================== */
.hero-text {
  position: relative;
  padding: 120px 0 160px;
  overflow: hidden;
}

.hero-text::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-text__bg {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.hero-text__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text__slide {
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.hero-text__slide--active {
  opacity: 1;
}

.hero-text__content {
  position: relative;
  z-index: 2;
  padding-left: calc(6.25% + 1px);
  display: flex;
  flex-direction: column;
  gap: 48px;
  color: var(--color-white);
  max-width: 900px;
}

.hero-text__heading {
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: 38px;
  letter-spacing: 0.38px;
  line-height: 1.7;
  white-space: nowrap;
}

.hero-text__body {
  font-family: var(--font-zen);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.9px;
  line-height: 2.6;
}

.hero-text__scroll-indicator {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
}

.hero-text__scroll-line {
  width: 18px;
  height: 67px;
  border-left: 2px solid var(--color-yellow);
  border-right: 2px solid var(--color-yellow);
}

/* ========================================
   Hero Reveal（オーバーレイなし画像表示）
   ======================================== */
.hero-reveal {
  position: relative;
  height: 100vh;
  z-index: 0;
}

/* ========================================
   ABOUT US
   ======================================== */
.content-wrapper {
  position: relative;
  z-index: 1;
  background: #ECECEC;
}

.about {
  position: relative;
  z-index: 1;
  padding: 0;
}

.about__inner {
  display: flex;
  align-items: stretch;
  padding: 120px 0 0 var(--content-padding);
  gap: 80px;
  min-height: 130vh;
}

.about__content {
  flex: 0 0 601px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 46px;
  padding: 80px 0;
}

.about__image {
  flex: 1;
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% center;
  filter: grayscale(100%);
}

/* ABOUT 写真リビールアニメ（左→右ワイプ＋ズームアウト）
   既定は表示。JSが is-prereveal を付与して一旦隠し、ビューポート侵入で外して登場させる。 */
.about__image {
  transition: clip-path 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.about__image img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.about__image.is-prereveal {
  clip-path: inset(0 0 0 100%);
}
.about__image.is-prereveal img {
  transform: scale(1.18);
}

/* ========================================
   Vision Map
   ======================================== */
.vision {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  background: #ECECEC;
  margin-top: 120px;
}

.vision__img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   GROUP
   ======================================== */
.group-section {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: #ECECEC;
}

.group-section > .container {
  max-width: none;
  padding: 0 100px;
}

.group-section__desc {
  margin-top: 20px;
  margin-bottom: 60px;
}

.group-section__grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.group-section__row {
  display: flex;
  gap: 8px;
}

.group-card {
  background: #FFFFFF;
  border: 1px dashed var(--color-gray-border-dashed);
  border-radius: 6px;
  padding: 32px;
  height: 220px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.group-card__heading {
  display: flex;
  align-items: center;
}

.group-card__bar {
  width: 4px;
  height: 46px;
  background: #000;
  flex-shrink: 0;
  margin-right: 12px;
}

.group-card__name {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-black);
}

.group-card__desc {
  font-family: var(--font-zen);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-gray-text);
}

/* ========================================
   JOB
   ======================================== */
.job {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: #ECECEC;
}

.job__inner {
  display: flex;
  gap: 40px;
  margin: 0 auto;
  padding: 0 100px;
  position: relative;
}

.job__sidebar {
  flex: 0 0 35%;
  position: relative;
}

.job__sidebar-content {
  position: sticky;
  top: 40px;
}

.job__desc {
  margin-top: 20px;
  max-width: 447px;
}

.job__cards {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.job__card {
  position: sticky;
  top: 0;
  width: 100%;
  padding: 48px;
  border: 1px solid var(--color-gray-border-solid);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.job__card--yellow {
  background: var(--color-yellow);
}

.job__card--dark {
  background: var(--color-bg-dark);
  color: var(--color-white);
}

.job__card-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 436px;
}

.job__card-num {
  font-family: var(--font-futura);
  font-size: 110px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.job__card--yellow .job__card-num {
  color: var(--color-dark-text);
}

.job__card-title {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
}

.job__card-desc {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 1.08px;
  font-feature-settings: 'palt' 1;
}

.job__card-icon {
  display: flex;
  justify-content: flex-end;
}

.job__card-icon img {
  width: 87px;
  height: 73px;
}

/* ========================================
   Gallery
   ======================================== */
.gallery {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 1405px;
  overflow: hidden;
}

.gallery__bg {
  position: absolute;
  top: 164px;
  left: 0;
  right: 0;
  height: 1117px;
  background: var(--color-bg-dark);
  z-index: 0;
}

.gallery__grid {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.gallery__item {
  position: absolute;
  overflow: hidden;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: translateY(0);
}

.gallery__item--1 {
  left: 10.3%;
  top: 122px;
  width: 19.6%;
  height: 332px;
}

.gallery__item--2 {
  left: 61%;
  top: 0;
  width: 27.8%;
  height: 480px;
}

.gallery__item--5 {
  left: 2.8%;
  top: 692px;
  width: 21.5%;
  height: 491px;
}

.gallery__title-area {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 577px;
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.gallery__title {
  font-family: var(--font-futura);
  font-size: 100px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}

.gallery__desc {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 1.08px;
  color: var(--color-white);
  text-align: center;
}

.gallery__item--3 {
  left: 39.5%;
  top: 1024px;
  width: 21.5%;
  height: 381px;
}

.gallery__item--4 {
  left: 75.8%;
  top: 925px;
  width: 22.3%;
  height: 279px;
}

.gallery__more-btn {
  margin-top: 0;
}

/* ========================================
   Interview
   ======================================== */
.interview {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
  background: #ECECEC;
}

.interview__header > .container {
  max-width: none;
  padding: 0 100px;
}

.interview__header {
  margin-bottom: 60px;
}

.interview__desc-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 32px;
}

.interview__desc-row .interview__desc {
  margin: 0;
}

.interview__desc {
  margin-top: 32px;
  margin-bottom: 24px;
}

.interview__slider {
  width: 100%;
  overflow: hidden;
  padding: 0 0 80px;
  position: relative;
  pointer-events: none;
}

.interview__slider::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: var(--color-yellow);
  z-index: 0;
}

.interview__slider .interview__track {
  position: relative;
  z-index: 1;
}


.interview__track {
  display: flex;
  gap: 24px;
  padding-left: var(--content-padding);
  transition: transform 0.1s ease-out;
}

.interview__card {
  flex: 0 0 480px;
  height: 640px;
  overflow: hidden;
}

.interview__card-img {
  width: 100%;
  height: 100%;
}

.interview__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   Cross Interview
   ======================================== */
.cross-interview {
  position: relative;
  z-index: 1;
  padding: 0 0 120px 0;
  overflow: hidden;
}

.cross-interview__inner {
  position: relative;
  height: 800px;
  margin: 0 100px;
  overflow: hidden;
  background: var(--color-bg-dark);
}

.cross-interview__bg {
  position: absolute;
  inset: -50px -7px;
  z-index: 0;
  overflow: hidden;
}

.cross-interview__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

/* テキスト焼き込み済み1枚絵（top-cross）用 */
.cross-interview__inner--image {
  height: auto;
  background: none;
  overflow: visible;
}
.cross-interview__image {
  display: block;
  width: 100%;
  height: auto;
}

.cross-interview__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 43%, rgba(0,0,0,0.5) 93%);
}

.cross-interview__name {
  position: absolute;
  z-index: 3;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 70px;
  color: var(--color-black);
  writing-mode: vertical-rl;
  letter-spacing: 4.9px;
  line-height: 1;
  top: 0;
  background: var(--color-yellow);
  padding: 19px 4px 8px;
}

.cross-interview__name--left {
  left: 25px;
}

.cross-interview__name--right {
  right: 37px;
}

.cross-interview__role {
  position: absolute;
  z-index: 3;
  font-family: var(--font-futura);
  font-size: 70px;
  font-weight: 500;
  color: var(--color-black);
  letter-spacing: 4.9px;
  line-height: 1.1;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  top: 38px;
}

.cross-interview__role--left {
  left: 104px;
}

.cross-interview__role--right {
  right: 116px;
}

.cross-interview__title-area {
  position: absolute;
  z-index: 3;
  bottom: 60px;
  left: 91px;
  right: 91px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cross-interview__title {
  font-family: var(--font-futura);
  font-size: 111px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 5.55px;
  white-space: nowrap;
}

.cross-interview__subtitle-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.cross-interview__deco {
  position: relative;
  width: 200px;
  height: 40px;
  flex-shrink: 0;
}

.cross-interview__deco-block {
  position: absolute;
  display: block;
}

.cross-interview__subtitle {
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  white-space: nowrap;
  background: var(--color-yellow);
  color: var(--color-black);
  padding: 8px 22px;
  display: inline-block;
}

/* ========================================
   TECH INNOVATION text
   ======================================== */
.tech-text {
  position: relative;
  z-index: 1;
  background: #ECECEC;
  font-family: 'Tomorrow', sans-serif;
  font-size: 300px;
  font-weight: 600;
  color: var(--color-yellow);
  white-space: nowrap;
  overflow: hidden;
  line-height: 1.2;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 40px 0;
}

/* ========================================
   Work Style
   ======================================== */
.workstyle {
  position: relative;
  z-index: 1;
  padding: 120px 0 0;
  background: #ECECEC;
}

.workstyle > .container {
  max-width: none;
  padding: 0 100px;
}

.workstyle__desc {
  margin-top: 32px;
  margin-bottom: 60px;
}

.workstyle__visual {
  position: relative;
  margin-top: 40px;
  height: 900px;
}

.workstyle__bg-image {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 900px;
  overflow: hidden;
}

.workstyle__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.workstyle__cards {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 40px 100px;
}

.workstyle__card {
  background: var(--color-bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 32px 40px;
  width: 420px;
  height: 220px;
  position: absolute;
  display: flex;
  justify-content: space-between;
  transition: background 0.3s ease;
  cursor: pointer;
  justify-content: space-between;
  align-items: flex-end;
  text-decoration: none;
  color: inherit;
}

.workstyle__card--1 {
  top: 40px;
  right: 200px;
}

.workstyle__card--2 {
  top: 310px;
  right: 660px;
}

.workstyle__card--3 {
  top: 370px;
  right: 100px;
}

.workstyle__card--4 {
  top: 620px;
  right: 260px;
}

.workstyle__card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: flex-start;
}

.workstyle__card-title {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: var(--color-white);
  transition: color 0.3s ease;
}

.workstyle__card-title::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
  transition: background 0.3s ease;
}

.workstyle__card-en {
  font-family: var(--font-futura);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-white);
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: color 0.3s ease;
}

.workstyle__card-num {
  font-family: var(--font-futura);
  font-size: 56px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1;
  align-self: flex-end;
  transition: color 0.3s ease;
}

/* Hover: 黄色背景 */
.workstyle__card:hover {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
}

.workstyle__card:hover .workstyle__card-title,
.workstyle__card:hover .workstyle__card-num {
  color: var(--color-black);
}

.workstyle__card:hover .workstyle__card-en {
  color: var(--color-black);
  opacity: 0.8;
}

.workstyle__card:hover .workstyle__card-title::after {
  background: rgba(0, 0, 0, 0.3);
}

/* キャリア・研修カードのみ常時黄色背景（枠ではなく塗り。税務プロフェッショナルコースと同様） */
.workstyle__card--yellow {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
}

.workstyle__card--yellow .workstyle__card-title,
.workstyle__card--yellow .workstyle__card-num {
  color: var(--color-black);
}

.workstyle__card--yellow .workstyle__card-en {
  color: var(--color-black);
  opacity: 0.8;
}

.workstyle__card--yellow .workstyle__card-title::after {
  background: rgba(0, 0, 0, 0.3);
}

.workstyle__card-desc {
  display: none;
}

/* ========================================
   NEWS
   ======================================== */
.news {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: #ECECEC;
}

.news > .container {
  max-width: none;
  padding: 0 100px;
}

.blog-section > .container {
  max-width: none;
  padding: 0 100px;
}

.news__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.news__heading-area {
  position: relative;
}

.news__heading-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}

.news__heading-bg {
  position: absolute;
  top: 53px;
  left: 0;
  width: 319px;
  height: 60px;
  background: var(--color-yellow);
  z-index: 0;
}

.news__heading-en {
  position: relative;
  z-index: 1;
  font-family: var(--font-futura);
  font-size: 100px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-black);
  text-transform: uppercase;
}

.news__heading-jp {
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: var(--color-black);
  margin-top: 8px;
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.news__card {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  overflow: hidden;
  background: #ECECEC;
}

.news__card-img {
  width: 100%;
  aspect-ratio: 280 / 158;
  overflow: hidden;
}

.news__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news__card-body {
  padding: 16px 0;
}

.news__card-date {
  font-family: var(--font-futura);
  font-size: 14px;
  color: var(--color-gray-text);
}

.news__card-title {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-black);
  margin-top: 8px;
}

/* ========================================
   BLOG
   ======================================== */
.blog-section {
  position: relative;
  z-index: 1;
  padding: 80px 0 120px;
  background: #ECECEC;
}

.blog-section__inner {
  display: flex;
  gap: 60px;
}

.blog-section__header {
  flex: 0 0 240px;
}

.blog-section__heading-area {
  position: relative;
}

.blog-section__heading-top {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  position: relative;
}

.blog-section__heading-bg {
  position: absolute;
  top: 58px;
  left: 0;
  width: 300px;
  height: 47px;
  background: var(--color-yellow);
  z-index: 0;
}

.blog-section__heading-en {
  position: relative;
  z-index: 1;
  font-family: var(--font-futura);
  font-size: 100px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-black);
  text-transform: uppercase;
}

.blog-section__heading-jp {
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: var(--color-black);
  margin-top: 16px;
}

.blog-section__more {
  margin-top: 32px;
}

.blog-section__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 31px;
  margin-left: auto;
  max-width: 65%;
}

.blog-card {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.blog-card__img {
  flex: 0 0 400px;
  height: 280px;
  overflow: hidden;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 13px;
}

.blog-card__date {
  font-family: var(--font-futura);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.33;
  color: var(--color-black);
  text-transform: uppercase;
}

.blog-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 9px;
  background: var(--color-yellow);
  font-family: var(--font-noto);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-black);
}

.blog-card__title {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: var(--color-black);
}

.blog-card__desc {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.7px;
  color: var(--color-black);
  font-feature-settings: 'palt' 1;
}

/* ========================================
   Entry / FAQ
   ======================================== */
.entry-faq {
  position: relative;
  z-index: 1;
  padding: 80px 0 120px;
  background: #ECECEC;
}

.entry-faq > .container {
  max-width: none;
  padding: 0 100px;
}

.entry-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.entry-faq__card {
  position: relative;
  border-radius: 0;
  padding: 40px;
  height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.entry-faq__card:hover {
  transform: translateY(-4px);
}

.entry-faq__card--entry {
  background: var(--color-bg-dark);
  color: var(--color-white);
}

.entry-faq__card--faq {
  background: var(--color-yellow);
  color: var(--color-black);
}

.entry-faq__card-en-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.entry-faq__card-en {
  font-family: var(--font-futura);
  font-size: 120px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.entry-faq__card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.entry-faq__card--entry .entry-faq__card-en-row {
  margin-bottom: auto;
}

.entry-faq__card-subtitle {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.5;
  letter-spacing: 0.52px;
  margin-top: 0;
}

.entry-faq__card-desc {
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.84px;
  margin-top: 12px;
  font-feature-settings: 'palt' 1;
}

.entry-faq__card-icon {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.entry-faq__card-icon img {
  width: 100%;
  height: 100%;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  position: relative;
  z-index: 1;
  background: #ffffff;
  color: #171717;
  padding: 0;
}

.site-footer > .container {
  max-width: none;
  margin: 0;
  padding: 100px 60px 55px;
}

.site-footer__logo {
  margin-bottom: 120px;
}

.site-footer__logo img {
  width: 949px;
  height: auto;
}

.site-footer__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
}

.site-footer__company {
  margin-bottom: 24px;
}

.site-footer__company-jp {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
}

.site-footer__company-en {
  font-family: var(--font-futura);
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.7;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__contact-row {
  display: flex;
  gap: 4px;
}

.site-footer__contact-row dt {
  flex: 0 0 80px;
  font-family: var(--font-futura);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
}

.site-footer__contact-row dd {
  font-family: var(--font-noto);
  font-size: 14px;
  line-height: 1.5;
}

.site-footer__contact-row dd a {
  color: #171717;
}

.site-footer__nav-list {
  display: grid;
  grid-template-columns: repeat(2, 150px);
  gap: 8px 0;
}

.site-footer__nav-list li a {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 14px;
  line-height: 2.2;
  color: #171717;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  padding-top: 32px;
}

.site-footer__bottom-links {
  display: flex;
  gap: 32px;
}

.site-footer__bottom-links a {
  font-family: var(--font-noto);
  font-size: 14px;
  color: #171717;
  opacity: 0.7;
}

.site-footer__copyright {
  font-family: var(--font-futura);
  font-size: 14px;
  color: #171717;
  opacity: 0.7;
}

/* ========================================
   Menu Drawer
   ======================================== */
.menu-trigger {
  display: none;
}

.menu-trigger--visible {
  position: fixed;
  top: 34px;
  right: 18px;
  width: 40px;
  height: 40px;
  background: var(--color-yellow);
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 10px;
  z-index: 90;
}

.menu-trigger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-black);
}

.menu-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 375px;
  height: 100vh;
  background: #ECECEC;
  z-index: 200;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.menu-drawer.is-open {
  right: 0;
}

.menu-drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.menu-drawer__overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.menu-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 23px 20px 0;
}

.menu-drawer__logo {
  width: 134px;
  height: 20px;
}

.menu-drawer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu-drawer__close {
  width: 40px;
  height: 40px;
  background: var(--color-yellow);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.menu-drawer__close::before,
.menu-drawer__close::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--color-black);
}

.menu-drawer__close::before {
  transform: rotate(45deg);
}

.menu-drawer__close::after {
  transform: rotate(-45deg);
}

.menu-drawer__nav {
  padding: 0 20px;
}

.menu-drawer__nav-list {
  display: flex;
  flex-direction: column;
  list-style: none;
}

.menu-drawer__nav-item {
  height: 60px;
  display: flex;
  align-items: center;
  border-bottom: 0.67px solid #e5e7eb;
}

.menu-drawer__nav-item a {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-black);
  display: block;
  width: 100%;
}

.menu-drawer__cta {
  padding: 20px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-drawer__cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 16px;
  border: 1px solid var(--color-black);
  transition: opacity 0.3s ease;
}

.menu-drawer__cta-card:hover {
  opacity: 0.7;
}

.menu-drawer__cta-card--entry {
  background: var(--color-yellow);
}

.menu-drawer__cta-card--faq {
  background: #ECECEC;
}

.menu-drawer__cta-info {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.menu-drawer__cta-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-drawer__cta-title {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: var(--color-black);
}

.menu-drawer__cta-underline {
  width: 100%;
  height: 1px;
  background: var(--color-black);
}

.menu-drawer__cta-en {
  font-family: var(--font-futura);
  font-size: 10px;
  font-weight: 500;
  color: var(--color-black);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1;
}

.menu-drawer__cta-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-drawer__cta-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.menu-drawer__bottom {
  padding: 24px 20px 40px;
  border-top: 0.67px solid #e5e7eb;
  margin: 20px 20px 0;
}

.menu-drawer__bottom-text {
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 12px;
  line-height: 19.5px;
  color: #6a7282;
}
/* ========================================
   Sticky Header
   ======================================== */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: transparent;
  z-index: 1000;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sticky-header.is-visible,
.sticky-header--always {
  transform: translateY(0);
  opacity: 1;
}
.sticky-header--static {
  position: sticky;
  top: 0;
  transform: translateY(0);
  opacity: 1;
  background: var(--color-gray-bg);
}

.sticky-header__inner {
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-header__logo {
  flex-shrink: 0;
}

.sticky-header__logo img {
  width: auto;
  height: 40px;
  display: block;
}

.sticky-header__nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  margin-right: 24px;
}

.sticky-header__nav-list {
  display: flex;
  align-items: center;
  gap: 22.8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sticky-header__nav-list li a {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-black);
  white-space: nowrap;
  text-decoration: none;
}

.sticky-header__ctas {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-header__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 22px;
  border-radius: 4px;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  background: var(--color-yellow);
  color: var(--color-black);
  border: 2px solid var(--color-yellow);
  transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.sticky-header__cta:hover {
  opacity: 0.85;
}

/* 募集要項 = 黒ボタン */
.sticky-header__cta--outline {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}