/* ===========================================
   千賀ツアーLP - CSS
   カラー: 紺・青・白 / アクセント: 黄色
=========================================== */

/* ---------- CSS Variables ---------- */
:root {
  --color-navy: #1a2a4a;
  --color-navy-dark: #0f1a2e;
  --color-blue: #2563eb;
  --color-blue-light: #3b82f6;
  --color-blue-pale: #dbeafe;
  --color-white: #ffffff;
  --color-yellow: #fbbf24;
  --color-yellow-hover: #f59e0b;
  --color-line: #06C755;
  --color-line-hover: #05b04c;
  --color-gray: #6b7280;
  --color-gray-light: #f3f4f6;
  --color-gray-dark: #374151;
  
  --font-base: "Zen Kaku Gothic New", sans-serif;
  --font-en: "Outfit", "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-title: "Zen Kaku Gothic New", sans-serif;
  
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  --container-width: 1200px;
  --section-padding: 100px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-base);
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-navy-dark);
  background-color: var(--color-white);
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* PC only (SPで非表示) */
.pc-only {
  display: block;
}
.pc-only-inline {
  display: inline;
}

/* SP only (PCで非表示) */
.sp-only {
  display: none;
}
.sp-only-inline {
  display: none;
}

/* 改行用 */
.br-pc {
  display: block;
}
.br-sp {
  display: none;
}

@media (max-width: 768px) {
  /* PC only (SPで非表示) */
  .pc-only {
    display: none;
  }
  .pc-only-inline {
    display: none;
  }
  
  /* SP only (PCで非表示) */
  .sp-only {
    display: block;
  }
  .sp-only-inline {
    display: inline;
  }
  
  /* 改行用 */
  .br-pc {
    display: none;
  }
  .br-sp {
    display: block;
  }
}

/* ---------- Section Common ---------- */
.section-label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-blue);
  margin-bottom: 16px;
  position: relative;
  padding-left: 40px;
}

.section-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background: var(--color-blue);
}

.section-label--light {
  color: var(--color-white);
  padding-left: 0;
}

.section-label--light::before {
  display: none;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-navy);
  margin-bottom: 40px;
}

.section-title--center {
  text-align: center;
}

.num-highlight {
  color: var(--color-blue);
  font-size: 1.5em;
  font-weight: 700;
}

.text-small {
  font-size: 0.5em;
  font-weight: 400;
}

/* ---------- Image Placeholder ---------- */
.image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray);
  font-size: 18px;
  font-weight: 500;
  border-radius: inherit;
  object-fit: cover;
}

.image-placeholder img,
.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-placeholder--circle {
  border-radius: 50%;
  min-height: 80px;
}

/* ---------- Button ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 60px;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
}

.btn--primary {
  background: var(--color-line);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(6, 199, 85, 0.4);
}


.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}


.btn--large {
  padding: 22px 50px;
  font-size: 18px;
}

.btn__arrow {
  width: 20px;
  height: 20px;
  transition: var(--transition-base);
}


.btn__icon {
  width: 24px;
  height: 24px;
}

.btn__icon-line {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ---------- Fixed CTA ---------- */
.fixed-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-base);
}

.fixed-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fixed-cta__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: var(--color-line);
  border-radius: 50%;
  box-shadow: 0 10px 40px rgba(6, 199, 85, 0.5);
  transition: var(--transition-base);
  animation: pulse 2s infinite;
}


.fixed-cta__text {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  line-height: 1.3;
}

.fixed-cta__icon {
  width: 32px;
  height: 32px;
  color: var(--color-white);
  margin-bottom: 4px;
}

.fixed-cta__sub {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-white);
  margin-top: 4px;
  padding: 2px 10px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 10px 40px rgba(6, 199, 85, 0.5);
  }
  50% {
    box-shadow: 0 10px 50px rgba(6, 199, 85, 0.7), 0 0 0 15px rgba(6, 199, 85, 0.1);
  }
}

/* ---------- First View ---------- */
.fv {
  position: relative;
  background: var(--color-white);
  overflow: hidden;
}

/* FV Background Random Images */
.fv__bg-images {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.fv__bg-slot {
  position: absolute;
  width: clamp(160px, 18vw, 260px);
  height: clamp(120px, 13vw, 195px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.fv__bg-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fv__bg-slot img.is-active {
  opacity: 1;
}

/* 各スロットの配置位置（PC - 4箇所固定） */
.fv__bg-slot[data-slot="0"] { top: 18%; right: 38%; }
.fv__bg-slot[data-slot="1"] { top: 30%; right: 18%; }
.fv__bg-slot[data-slot="2"] { top: 45%; right: -2%; }
.fv__bg-slot[data-slot="3"] { bottom: 10%; right: 30%; }
.fv__bg-slot[data-slot="4"] { top: -4%; right: 10%; }
.fv__bg-slot[data-slot="5"] { top: -4%; right: 10%; }

@media (max-width: 768px) {
  .fv__bg-slot {
    width: clamp(70px, 20vw, 100px);
    height: clamp(52px, 16vw, 75px);
    border-radius: 10px;
  }

  /* SP - 3箇所表示、上部・下部を避ける */
  .fv__bg-slot[data-slot="0"] { top: 19%; right: 13%; }
  .fv__bg-slot[data-slot="1"] { top: 25%; right: -2%; }
  .fv__bg-slot[data-slot="2"] { top: 53%; right: 6%; }
  .fv__bg-slot[data-slot="3"] { display: none; }
  .fv__bg-slot[data-slot="4"] { display: none; }
  .fv__bg-slot[data-slot="5"] { display: none; }
}

.fv__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 5% 80px;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.fv__content {
  flex: 1;
  text-align: left;
  max-width: 600px;
}

.fv__image {
  flex: 1;
  max-width: 550px;
  position: relative;
}

.fv__slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
}

.fv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.fv__slide.is-active {
  opacity: 1;
}

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

/* SP Slider */
.fv-slider-sp {
  background: var(--color-white);
  padding: 0 20px 40px;
  text-align: center;
}

.fv__slider-sp {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 20px;
}

.fv__slide-sp {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.fv__slide-sp.is-active {
  opacity: 1;
}

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

.fv__catch {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--color-navy-dark);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  text-align: left;
  text-shadow: 
    0 0 3px #fff,
    0 0 6px #fff,
    0 0 10px #fff,
    0 0 15px rgba(255, 255, 255, 0.9);
}

.fv__title {
  font-family: var(--font-title);
  color: var(--color-navy-dark);
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.fv__title-line {
  display: block;
  font-size: clamp(30px, 8vw, 72px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-shadow: 
    0 0 3px #fff,
    0 0 6px #fff,
    0 0 10px #fff,
    0 0 15px rgba(255, 255, 255, 0.9);
}

.fv__title-typing {
  position: relative;
  display: inline-block;
  min-width: 6em;
  text-align: left;
  background: linear-gradient(90deg, #e04a8a, #9b59b6, #5dade2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: none;
}

.fv__title-typing::after {
  content: "|";
  position: relative;
  color: #5dade2;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}

.fv__title-sub {
  margin-top: 20px;
  font-size: clamp(24px, 5vw, 48px);
  opacity: 0.9;
  text-shadow: 
    0 0 3px #fff,
    0 0 6px #fff,
    0 0 10px #fff,
    0 0 15px rgba(255, 255, 255, 0.9);
}

/* SP用FVスタイル */
@media (max-width: 768px) {
  .fv__inner {
    flex-direction: column;
    padding: 60px 40px 40px;
    gap: 0;
  }

  .fv__content {
    max-width: 100%;
    text-align: left;
  }

  .fv__title {
    margin-bottom: 30px;
    align-items: flex-start;
  }

  .fv__title-line {
    font-size: 12vw;
    line-height: 1.3;
    text-align: left;
  }

  .fv__title-sub {
    font-size: 28px;
    margin-top: 16px;
  }

  .fv__title-typing {
    min-width: auto;
  }
}

/* ---------- Intro Section ---------- */
.intro {
  padding: 80px 0;
  background: var(--color-gray-light);
  position: relative;
  overflow: hidden;
}

.intro__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro__profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.intro__photo {
  width: 150px;
  height: 150px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

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

.intro__name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-align: left;
}

.intro__name-org {
  font-size: 18px;
  color: var(--color-gray);
  letter-spacing: 0.05em;
}

.intro__name-title {
  font-size: 18px;
  color: var(--color-gray);
  letter-spacing: 0.05em;
}

.intro__name-person {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-navy-dark);
  letter-spacing: 0.1em;
}

.intro__text {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--color-navy);
  line-height: 2;
  margin-bottom: 0;
  letter-spacing: 0.05em;
  text-align: center;
}

.intro__text strong {
  color: var(--color-blue);
  font-weight: 700;
}

@media (max-width: 768px) {
  .intro__profile {
    gap: 20px;
  }

  .intro__photo {
    width: 120px;
    height: 120px;
  }

  .intro__name-person {
    font-size: 18px;
  }

  .intro__text {
    text-align: left;
  }
}

/* ---------- MEETUP Section ---------- */
.meetup {
  padding: var(--section-padding) 0;
  background: var(--color-white);
  overflow: hidden;
}

.meetup__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.meetup__image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 400px;
}

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

.meetup__image-sp {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
}

.meetup__image-sp img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.meetup__booth {
  display: inline-flex;
  flex-direction: column;
  background: var(--color-blue);
  padding: 80px 40px;
  border-radius: 16px;
  margin-bottom: 30px;
  width: 100%;
  text-align: center;
}

.meetup__booth-label {
  font-size: 24px;
  color: var(--color-white);
  font-weight: 500;
}

.meetup__booth-number {
  font-family: var(--font-en);
  font-size: 80px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

.meetup__benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.meetup__benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--color-gray-light);
  border-radius: 12px;
  transition: var(--transition-base);
}


.meetup__benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 12px;
}

.meetup__benefit-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-blue);
}

.meetup__benefit-text strong {
  display: block;
  font-size: 18px;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.meetup__benefit-text p {
  font-size: 18px;
  color: var(--color-gray-dark);
}

.meetup__benefit-text em {
  font-style: normal;
  color: var(--color-blue);
  font-weight: 600;
}

/* ---------- Company Section ---------- */
.company {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--color-gray-light) 0%, var(--color-white) 100%);
  overflow: hidden;
}

.company .section-label,
.company .section-title {
  text-align: center;
}

.company .section-label {
  display: block;
  padding-left: 0;
}

.company .section-label::before {
  display: none;
}

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

.company__card {
  padding: 0;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.company__card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: var(--transition-slow);
}

.company__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(95 95 95 / 30%) 0%, rgb(24 24 24 / 70%) 100%);
  z-index: 2;
}

.company__card-content {
  position: relative;
  z-index: 3;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}



.company__card--wide {
  grid-column: span 2;
}

.company__card-number {
  font-family: var(--font-en);
  font-size: 56px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.company__card-unit {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-yellow);
  margin-bottom: 12px;
}

.company__card-label {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
}

.company__card-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

/* ---------- Program Section ---------- */
.program {
  padding: var(--section-padding) 0;
  background: var(--color-white);
  overflow: hidden;
}

.program .section-label,
.program .section-title {
  text-align: center;
}

.program .section-label {
  display: block;
  padding-left: 0;
}

.program .section-label::before {
  display: none;
}

.program__steps {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1000px;
  margin: 0 auto;
}

.program__step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.program__step--reverse {
  direction: rtl;
}

.program__step--reverse > * {
  direction: ltr;
}

.program__step-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  height: 300px;
}

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

.program__step-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid var(--color-blue);
  border-radius: 20px;
  transform: translate(15px, 15px);
  z-index: -1;
}

.program__step-number {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-blue);
  padding: 8px 20px;
  background: var(--color-blue-pale);
  border-radius: 30px;
  margin-bottom: 16px;
}

.program__step-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.program__step-desc {
  font-size: 18px;
  color: var(--color-gray-dark);
  line-height: 1.9;
}

/* ---------- Voice Section ---------- */
.voice {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  overflow: hidden;
}

.voice .section-label {
  color: var(--color-blue-light);
}

.voice .section-label::before {
  background: var(--color-blue-light);
}

.voice .section-title {
  color: var(--color-white);
}

.voice .section-label,
.voice .section-title {
  text-align: center;
}

.voice .section-label {
  display: block;
  padding-left: 0;
}

.voice .section-label::before {
  display: none;
}

.voice-swiper {
  padding-bottom: 60px;
}

.voice__card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
  box-shadow: var(--shadow-lg);
  max-width: 700px;
  margin: 0 auto;
}

.voice__card-photo {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-blue-pale);
}

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

.voice__card-text {
  font-size: 18px;
  color: var(--color-gray-dark);
  line-height: 1.9;
  margin-bottom: 20px;
}

.voice__card-text strong {
  color: var(--color-blue);
}

.voice__card-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.voice__card-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
}

.voice__card-role {
  font-size: 18px;
  color: var(--color-gray);
  padding: 4px 12px;
  background: var(--color-gray-light);
  border-radius: 20px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.3);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--color-yellow);
}

/* ---------- Gallery Section ---------- */
.gallery {
  padding: var(--section-padding) 0;
  background: var(--color-white);
}

.gallery .section-label,
.gallery .section-title {
  text-align: center;
}

.gallery .section-label {
  display: block;
  padding-left: 0;
}

.gallery .section-label::before {
  display: none;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.gallery__item {
  display: flex;
  flex-direction: column;
}

.gallery__item:nth-child(1),
.gallery__item:nth-child(2) {
  grid-column: span 6;
}

.gallery__item:nth-child(3),
.gallery__item:nth-child(4),
.gallery__item:nth-child(5),
.gallery__item:nth-child(6) {
  grid-column: span 3;
}

.gallery__item:nth-child(7),
.gallery__item:nth-child(8),
.gallery__item:nth-child(9) {
  grid-column: span 4;
}

.gallery__item-image {
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
}

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

.gallery__caption {
  padding: 12px 4px;
  color: var(--color-navy-dark);
  font-size: 18px;
  font-weight: 500;
}

/* ---------- Apply Section ---------- */
.apply {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.apply__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

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

.apply__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 42, 74, 0.95) 0%,
    rgba(37, 99, 235, 0.85) 100%
  );
}

.apply__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.apply__title {
  font-family: var(--font-title);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
}

.apply__text {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
}

.apply__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.apply__note {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
}

/* ---------- Animation Classes ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
}

.scroll-fade {
  opacity: 0;
  transform: translateY(50px);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }
  
  .meetup__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .company__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .program__step {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .program__step--reverse {
    direction: ltr;
  }
  
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__item:nth-child(1),
  .gallery__item:nth-child(2),
  .gallery__item:nth-child(3),
  .gallery__item:nth-child(4),
  .gallery__item:nth-child(5),
  .gallery__item:nth-child(6),
  .gallery__item:nth-child(7),
  .gallery__item:nth-child(8),
  .gallery__item:nth-child(9) {
    grid-column: span 1;
  }

  .gallery__item-image {
    height: 220px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }
  
  .btn {
    padding: 16px 30px;
    font-size: 18px;
    width: 100%;
  }
  
  .btn--large {
    padding: 18px 36px;
    font-size: 18px;
  }
  
  .fixed-cta {
    bottom: 15px;
    right: 15px;
  }
  
  .fixed-cta__btn {
    width: 90px;
    height: 90px;
  }
  
  .fixed-cta__text {
    font-size: 12px;
  }
  
  /* FV スマホ対応 */
  .fv {
    justify-content: center;
  }
  
  .fv {
    justify-content: center;
  }
  
  .fv__content {
    text-align: center;
    padding:60px 0 40px;
    width: 100%;
  }
  
  .fv__scroll {
    display: none;
  }
  
  
  .intro__inner {
    text-align: left;
  }
  
  .intro__profile {
    margin-bottom: 20px;
  }

  .meetup__title-balloon {
    position: relative;
    background: var(--color-blue-pale);
    border: none;
    border-radius: 20px;
    padding: 24px 20px;
    margin-bottom: 20px;
    text-align: center;
    animation: shake 1.5s ease-in-out infinite;
  }

  .meetup__title-balloon::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 15px 12px 0 12px;
    border-style: solid;
    border-color: var(--color-blue-pale) transparent transparent transparent;
  }

  @keyframes shake {
    0%, 90%, 100% {
      transform: translateX(0);
    }
    92%, 96% {
      transform: translateX(-3px) rotate(-1deg);
    }
    94%, 98% {
      transform: translateX(3px) rotate(1deg);
    }
  }
  
  .company__grid {
    grid-template-columns: 1fr;
  }
  
  .company__card--wide {
    grid-column: span 1;
  }
  
  .company__card-number {
    font-size: 60px;
  }
  
  .program__step-title {
    font-size: 24px;
  }
  
  .program__step-image::after {
    display: none;
  }
  
  .voice__card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  
  .voice__card-photo {
    margin: 0 auto;
  }
  
  .voice__card-info {
    justify-content: center;
  }
  
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .gallery__item:nth-child(1),
  .gallery__item:nth-child(2),
  .gallery__item:nth-child(5),
  .gallery__item:nth-child(8),
  .gallery__item:nth-child(9) {
    grid-column: span 2;
  }

  .gallery__item:nth-child(3),
  .gallery__item:nth-child(4),
  .gallery__item:nth-child(6),
  .gallery__item:nth-child(7) {
    grid-column: span 1;
  }
  
  .gallery__item-image {
    height: 180px;
  }
  
  .apply__buttons {
    flex-direction: column;
  }
  
  .apply__buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .meetup__booth {
    padding: 80px 24px;
    width: 100%;
    text-align: center;
  }
  
  .meetup__booth-number {
    font-size: 80px;
  }
  
  .meetup__benefit {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
