/* ============================================
   FAS Recruit - Common Components
   Header / Footer / CTA / Utilities
   ============================================ */

/* --- Utility --- */
.site-wrapper {
  width: 100%;
  position: relative;
  background-color: var(--color-primary);
}

.container {
  width: 100%;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* --- Section Heading --- */
.section-heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.section-heading__label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-heading__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-accent);
  flex-shrink: 0;
}

.section-heading__en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1.08px;
  line-height: 1;
}

.section-heading__ja {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 1.28px;
  line-height: 1.45;
}

/* --- Button --- */
.btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 16px;
  padding: 20px 48px;
  border-radius: var(--radius-pill);
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.16px;
  line-height: 1;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  transform: scale(1.03);
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn--accent {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn--white {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.btn:hover .btn__icon {
  animation: arrow-out-in 0.5s ease forwards;
}

@keyframes arrow-out-in {
  0%   { transform: translateX(0);    opacity: 1; }
  40%  { transform: translateX(14px); opacity: 0; }
  41%  { transform: translateX(-14px); opacity: 0; }
  100% { transform: translateX(0);    opacity: 1; }
}

.btn--white .btn__icon {
  filter: brightness(0) saturate(100%) invert(33%) sepia(92%) saturate(456%) hue-rotate(131deg) brightness(95%) contrast(101%);
}

/* --- Corner Decoration --- */
/* --- Interview Card (shared component) --- */
.interview-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.interview-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-image-sm);
  background-color: var(--color-bg-placeholder);
  overflow: hidden;
}

.interview-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview-card__number {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-white);
  border-bottom-right-radius: var(--radius-image-sm);
  padding: 0 14px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.interview-card__number span {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-primary);
  letter-spacing: 0.56px;
  line-height: 1;
}

.interview-card__notch {
  position: absolute;
  width: 12px;
  height: 12px;
  display: block;
}

.interview-card__notch path {
  fill: var(--color-white);
}

.interview-section .interview-card__number {
  background-color: var(--color-primary);
}

.interview-section .interview-card__number span {
  color: var(--color-white);
}

.interview-section .interview-card__notch path {
  fill: var(--color-primary);
}

.interview-section .interview-card__img {
  background-color: transparent;
}

.interview-section .interview-card__catch {
  display: block;
  color: var(--color-white);
}

.interview-section .interview-card__meta {
  flex-direction: row;
  align-items: baseline;
  gap: 0;
}

.interview-section .interview-card__role,
.interview-section .interview-card__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.interview-section .interview-card__name::before {
  content: '｜';
  margin: 0 2px;
  color: var(--color-white);
}

.interview-card__notch--bottom {
  bottom: -12px;
  left: 0;
  transform: rotate(90deg);
}

.interview-card__notch--right {
  top: 0;
  right: -12px;
  transform: rotate(90deg);
}

.interview-card__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.interview-card__catch {
  display: none;
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.interview-card__meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.interview-card__role {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-white);
  line-height: 1;
}

.interview-card__name {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-white);
  letter-spacing: 0.32px;
  line-height: 1;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 32px var(--container-padding) 0;
  z-index: 1000;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 12px 32px;
  background-color: var(--color-white);
  border-radius: var(--radius-pill);
  max-width: var(--content-width);
  margin: 0 auto;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-logo__img {
  height: 38px;
  width: auto;
}

.header-logo__text {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-primary);
  letter-spacing: 0.16px;
  line-height: 1;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav__link {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text);
  letter-spacing: -0.16px;
  line-height: 1;
  transition: color 0.3s ease;
}

.header-nav__link:hover {
  color: var(--color-primary);
}

.header-nav__entry {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-pill);
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.16px;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.header-nav__entry:hover {
  background-color: var(--color-accent);
}

/* --- Hamburger Button (hidden on desktop) --- */
.header-hamburger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  position: relative;
  z-index: 1001;
}

.header-hamburger__line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-hamburger__inner {
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: transform 0.3s ease;
}

.header-hamburger:hover .header-hamburger__inner {
  transform: none;
}

.header-hamburger.is-active .header-hamburger__inner .header-hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header-hamburger.is-active .header-hamburger__inner .header-hamburger__line:nth-child(2) {
  opacity: 0;
}
.header-hamburger.is-active .header-hamburger__inner .header-hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile Menu Overlay (hidden on desktop) --- */
.mobile-menu {
  display: none;
}

.mobile-menu__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: var(--color-primary);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu__overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.mobile-menu__link {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-white);
  letter-spacing: 0.4px;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.mobile-menu__link:hover {
  opacity: 0.7;
}

.mobile-menu__entry {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 48px;
  background-color: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius-pill);
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.16px;
  line-height: 1;
  margin-top: 16px;
  transition: transform 0.3s ease;
}

.mobile-menu__entry:hover {
  transform: scale(1.03);
}

.mobile-menu__external {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
  opacity: 0.5;
}

.mobile-menu__external-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 13px;
  color: var(--color-white);
  line-height: 1;
  transition: opacity 0.3s ease;
}

.mobile-menu__external-link:hover {
  opacity: 0.7;
}

.mobile-menu__external-icon {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
  transform: rotate(-90deg);
}

body.is-menu-open {
  overflow: hidden;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background-color: var(--color-bg-light);
  padding: 80px var(--container-padding) 144px;
  border-radius: 0 0 var(--radius-section) var(--radius-section);
}

.cta-section--white {
  background-color: var(--color-white);
}

.cta-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 280px;
  padding: 48px 56px;
  background-color: var(--color-cta-bg);
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
}


.cta-card__bg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
  object-fit: cover;
  pointer-events: none;
}

.cta-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--color-white);
  text-shadow: var(--shadow-text);
}

.cta-card__title {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.45;
  letter-spacing: 2.4px;
}

.cta-card__subtitle {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.45px;
}

.cta-card__arrow {
  position: absolute;
  bottom: 48px;
  right: 56px;
  z-index: 1;
  width: 48px;
  height: 48px;
  background-color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.cta-card__arrow img {
  width: 24px;
  height: 24px;
}

.cta-card:hover .cta-card__arrow img {
  animation: arrow-out-in 0.5s ease forwards;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background-color: var(--color-primary);
  padding: 120px var(--container-padding) 40px;
  overflow: hidden;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: var(--content-width);
  margin: 0 auto;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo__img {
  width: 264px;
  height: auto;
}

.footer-logo__text {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-white);
  letter-spacing: 0.56px;
  line-height: 1;
}

.footer-catch {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-catch__title {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-white);
  letter-spacing: 2px;
  line-height: 1.45;
}

.footer-catch__address {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.56px;
  line-height: 1.45;
  font-style: normal;
}

.footer-right {
  display: flex;
  gap: 120px;
  align-items: flex-start;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-nav__link {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-white);
  letter-spacing: -0.16px;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.footer-nav__link:hover {
  opacity: 0.8;
}

.footer-entry-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 280px;
  height: 64px;
  padding: 0 40px;
  background-color: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius-pill);
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.16px;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.footer-entry-btn > span:first-child {
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

.footer-entry-btn__dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-white);
  border-radius: 50%;
  position: relative;
  z-index: 0;
  transition: transform 0.15s ease-in;
}

.footer-entry-btn:hover .footer-entry-btn__dot {
  transform: scale(60);
  transition: transform 0.25s ease-out;
}

.footer-entry-btn > span:first-child {
  position: relative;
  z-index: 1;
  transition: color 0.2s ease;
}

.footer-entry-btn:hover > span:first-child {
  color: var(--color-accent);
}

.footer-bottom {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-white);
  opacity: 0.3;
  line-height: 1;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer-links__item {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-white);
  opacity: 0.6;
  line-height: 1;
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.footer-links__item:hover {
  opacity: 0.9;
}

.footer-links__icon {
  width: 16px;
  height: 16px;
  transform: rotate(-90deg);
  margin-left: 2px;
}

/* ============================================
   PAGE HEADER (Sub-pages)
   ============================================ */
.page-header {
  background-color: var(--color-primary);
  padding: 160px var(--container-padding) 48px;
}

.page-header__title {
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 48px;
  color: var(--color-white);
  letter-spacing: 1.92px;
  line-height: 1.3;
}

.page-header__en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-white);
  letter-spacing: 1.08px;
  line-height: 1;
  margin-left: 24px;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 16px var(--container-padding) 0;
  background-color: var(--color-primary);
}

.breadcrumb__item {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
}

.breadcrumb__item a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}

.breadcrumb__item a:hover {
  color: var(--color-white);
}

.breadcrumb__separator {
  font-family: var(--font-en);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   SUB-PAGE LAYOUT
   ============================================ */
.sub-page main {
  background-color: var(--color-primary);
}

/* ============================================
   FIXED FV (About / Interview pages)
   ============================================ */
.page-fv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-primary);
  z-index: 1;
}

.page-fv__content {
  display: flex;
  align-items: flex-end;
  height: 500px;
  padding: 0 var(--container-padding);
}

.page-fv__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

/* FV with background image */
.page-fv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 620px;
  object-fit: cover;
  z-index: 0;
}

.page-fv--has-bg .page-fv__content {
  position: relative;
  z-index: 1;
}

.page-fv .page-header {
  background: none;
  padding: 0 0 calc(80px + var(--radius-section));
}

.page-fv .page-header__en {
  font-size: 16px;
  letter-spacing: 1.28px;
}

.page-fv .breadcrumb {
  background: none;
  padding: 0 0 calc(32px + var(--radius-section));
}

.page-body {
  position: relative;
  z-index: 2;
}

.sub-page .page-body {
  margin-top: calc(500px - var(--radius-section));
}

/* Static FV variant (non-parallax pages: entry, jobs, entry-complete) */
.page-fv--static {
  position: relative;
  height: auto;
  background-color: var(--color-primary);
  z-index: auto;
}

.page-fv--static .page-fv__content {
  height: auto;
  padding-top: 168px;
}

.page-fv--static .page-header {
  padding: 0 0 80px;
}

.page-fv--static .breadcrumb {
  padding: 0 0 48px;
}

.sub-page .page-fv--static + .page-body {
  margin-top: 0;
}

.page-body > :first-child {
  border-radius: var(--radius-section) var(--radius-section) 0 0;
  box-shadow: 0 -6px 20px 1px rgba(51, 51, 51, 0.10);
}

.page-fv--static + .page-body > :first-child {
  border-radius: 0;
  box-shadow: none;
}

/* Static FV corner decorations (FV-content boundary) */
.page-fv--static .page-fv__corner {
  position: absolute;
  bottom: 0;
  width: 88px;
  height: 88px;
  pointer-events: none;
}

.page-fv--static .page-fv__corner--bl {
  left: 0;
}

.page-fv--static .page-fv__corner--br {
  right: 0;
  transform: scaleX(-1);
}

/* ============================================
   FIXED FOOTER REVEAL
   ============================================ */
.has-fixed-footer .site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.has-fixed-footer.footer-ready .site-footer {
  opacity: 1;
}

.has-fixed-footer {
  overscroll-behavior: none;
}

.has-fixed-footer main {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.has-fixed-footer .site-header {
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.has-fixed-footer .site-header.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.has-fixed-footer .page-fv.is-hidden,
.has-fixed-footer .interview-fv.is-hidden,
.has-fixed-footer .hero-wrapper.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-wrapper.is-hidden .hero-slider,
.hero-wrapper.is-hidden::after {
  opacity: 0;
  visibility: hidden;
}

.has-fixed-footer .cta-section {
  box-shadow: 0 40px 30px -5px rgba(51, 51, 51, 0.20);
}

/* ============================================
   RESPONSIVE (max-width: 792px)
   ============================================ */
/* --- Intermediate breakpoint: footer + header overlap fix --- */
@media (max-width: 1100px) and (min-width: 793px) {
  .footer-right {
    gap: 48px;
  }

  .footer-entry-btn {
    width: 220px;
    padding: 0 28px;
  }

  .footer-logo__img {
    width: 200px;
  }
}

@media (max-width: 1100px) and (min-width: 793px) {
  .header-nav__links {
    gap: 16px;
  }

  .header-nav__link {
    font-size: 14px;
  }

  .header-nav__entry {
    padding: 10px 16px;
    font-size: 14px;
  }

  .header-nav {
    gap: 16px;
  }
}

@media (max-width: 792px) {

  /* --- Section Heading --- */
  .section-heading__dot {
    width: 8px;
    height: 8px;
  }

  .section-heading__en {
    font-size: 12px;
  }

  .section-heading__ja {
    font-size: 22px;
  }

  /* --- Button --- */
  .btn {
    padding: 14px 32px;
    font-size: 14px;
  }

  /* --- Header --- */
  .site-header {
    padding: 16px var(--container-padding) 0;
  }

  .header-bar {
    height: 56px;
    padding: 10px 16px;
  }

  .header-logo__img {
    height: 24px;
  }

  .header-logo__text {
    font-size: 12px;
  }

  .header-nav__links {
    display: none;
  }

  .header-nav {
    gap: 12px;
  }

  .header-nav__entry {
    padding: 8px 14px;
    font-size: 12px;
  }

  /* --- Hamburger (visible on mobile) --- */
  .header-hamburger {
    display: flex;
  }

  /* --- Mobile Menu --- */
  .mobile-menu {
    display: block;
  }

  /* --- CTA Section --- */
  .cta-section {
    padding: 40px var(--container-padding) 88px;
  }

  .cta-card {
    height: 200px;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
  }

  .cta-card__content {
    gap: 12px;
  }

  .cta-card__title {
    font-size: 20px;
    letter-spacing: 1px;
  }

  .cta-card__subtitle {
    font-size: 11px;
  }

  .cta-card__arrow {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
  }

  .cta-card__arrow img {
    width: 18px;
    height: 18px;
  }

  /* --- Footer --- */
  .site-footer {
    padding: 80px var(--container-padding) 40px;
  }

  .footer-main {
    flex-direction: column;
    gap: 40px;
  }

  .footer-logo__img {
    width: 180px;
  }

  .footer-catch {
    display: none;
  }

  .footer-right {
    flex-direction: column;
    gap: 32px;
  }

  .footer-entry-btn {
    width: 240px;
    height: 56px;
    padding: 0 32px;
  }

  .footer-bottom {
    margin-top: 40px;
    gap: 24px;
  }

  .footer-bottom__row {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-links {
    flex-direction: row;
    gap: 24px;
  }

  .footer-links__item {
    font-size: 12px;
  }

  .footer-catch__title {
    font-size: 18px;
  }

  .footer-nav__link {
    font-size: 14px;
  }

  .footer-copyright {
    font-size: 12px;
  }

  /* --- Page Header --- */
  .page-header {
    padding: 120px var(--container-padding) 48px;
  }


  .page-header__title {
    font-size: 28px;
  }

  .page-header__en {
    font-size: 10px;
    margin-left: 0;
    display: block;
    margin-top: 8px;
  }

  /* --- Breadcrumb --- */
  .breadcrumb {
    padding: 12px var(--container-padding) 0;
  }

  /* --- Page FV --- */
  .page-fv__content {
    height: 300px;
  }

  .page-fv__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .page-fv .page-header {
    padding: 0 0 12px;
  }

  .page-fv .page-header__title {
    font-size: 28px;
  }

  .page-fv .breadcrumb {
    align-self: flex-end;
    padding: 0 0 calc(32px + var(--radius-section));
  }

  .page-fv__bg {
    height: 380px;
  }

  .sub-page .page-body {
    margin-top: calc(300px - var(--radius-section));
  }

  .sub-page .page-fv--static + .page-body {
    margin-top: 0;
  }

  .page-body > :first-child {
    border-radius: var(--radius-section) var(--radius-section) 0 0;
  }

  .page-fv--static + .page-body > :first-child {
    border-radius: 0;
  }

  .page-fv--static .page-fv__content {
    padding-top: 104px;
  }

  .page-fv--static .page-header {
    padding: 0 0 12px;
  }

  .page-fv--static .breadcrumb {
    padding: 0 0 40px;
  }

  .page-fv--static .page-fv__corner {
    width: 40px;
    height: 40px;
  }

  /* --- Corner Decorations --- */
  .corner-decoration {
    width: 40px;
    height: 40px;
  }

  /* --- Interview Card --- */
  .interview-card {
    gap: 10px;
  }

  .interview-card__number {
    height: 28px;
    padding: 0 10px;
  }

  .interview-card__number span {
    font-size: 11px;
  }

  .interview-card__notch {
    width: 8px;
    height: 8px;
  }

  .interview-card__notch--bottom {
    bottom: -8px;
  }

  .interview-card__notch--right {
    right: -8px;
  }

  .interview-card__role {
    font-size: 14px;
  }

  .interview-card__name {
    font-size: 12px;
  }

  .interview-card__catch {
    font-size: 16px;
    line-height: 1.6;
  }

  /* SP: Top & Others — smaller catch */
  .interview-section .interview-card__catch,
  .interview-others .interview-card__catch {
    font-size: 14px;
    line-height: 1.55;
  }

  /* SP: Top & Others — stack meta vertically, shrink, hide separator */
  .interview-section .interview-card__meta,
  .interview-others .interview-card__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .interview-section .interview-card__role,
  .interview-section .interview-card__name,
  .interview-others .interview-card__role,
  .interview-others .interview-card__name {
    font-size: 12px;
    line-height: 1.4;
  }

  .interview-section .interview-card__name::before,
  .interview-others .interview-card__name::before {
    content: none;
  }

}

/* --- Small mobile: Interview Card number size up --- */
@media (max-width: 480px) {
  .interview-card__number {
    height: 32px;
    padding: 0 12px;
  }

  .interview-card__number span {
    font-size: 12px;
  }
}
