    /* ===== CSS Variables ===== */
    :root {
      --dark: #0f1f14;
      --cream: #f4fcf6;
      --cream-dark: #e6f5ea;
      --forest: #1e5230;
      --forest-light: #2c7a47;
      --warm: #06C755;
      --warm-light: #2eff8c;
      --gold: #73a886;
      --white: #ffffff;
      --text-dark: #0f1f14;
      --text-mid: #385e45;
      --text-light: #6e947d;
      --overlay: rgba(10, 26, 16, 0.65);
    }

    /* ===== Reset & Base ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Noto Sans JP', sans-serif;
      color: var(--text-dark);
      background: var(--white);
      line-height: 1.7;
      font-size: 16px;
      overflow-x: hidden;
      word-break: normal;
      overflow-wrap: break-word;
    }
    p, span, div, h1, h2, h3, h4, h5, h6, a {
      overflow-wrap: break-word;
    }
    img { display: block; width: 100%; height: auto; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }

    /* ===== Navigation Extra ===== */
    .nav-menu {
      display: flex;
      gap: 32px;
      align-items: center;
      margin-left: auto;
      margin-right: 32px;
    }
    .nav-menu-bg {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.6);
      z-index: 99;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .nav-menu-bg.open {
      display: block;
      opacity: 1;
    }
    .nav-link {
      font-size: 14px;
      color: var(--cream);
      font-weight: 500;
      letter-spacing: 0.05em;
      transition: color 0.3s ease;
    }
    .nav-link:hover {
      color: var(--warm-light);
    }

    /* ===== Typography ===== */
    .serif { font-family: 'Noto Serif JP', serif; }
    .text-xs { font-size: 12px; }
    .text-sm { font-size: 14px; }
    .text-base { font-size: 16px; }
    .text-lg { font-size: 18px; }
    .text-xl { font-size: 20px; }
    .text-2xl { font-size: 24px; }
    .text-3xl { font-size: 32px; }
    .text-4xl { font-size: 40px; }
    .fw-300 { font-weight: 300; }
    .fw-400 { font-weight: 400; }
    .fw-500 { font-weight: 500; }
    .fw-600 { font-weight: 600; }
    .fw-700 { font-weight: 700; }
    .ls-wide { letter-spacing: 0.1em; }
    .ls-wider { letter-spacing: 0.15em; }
    .text-center { text-align: center; }
    .text-keep { display: inline-block; }
    .text-white { color: var(--white); }
    .text-cream { color: var(--cream); }

    /* ===== Layout ===== */
    .container {
      max-width: 960px;
      margin: 0 auto;
      padding: 0 32px;
    }
    .container-narrow {
      max-width: 720px;
      margin: 0 auto;
      padding: 0 32px;
    }
    .section {
      padding: 80px 0;
    }
    .section-sm {
      padding: 56px 0;
    }
    .bg-cream { background: var(--cream); }
    .bg-dark { background: var(--dark); }
    .bg-forest { background: var(--forest); }
    .bg-white { background: var(--white); }

    /* ===== Flex / Grid Utilities ===== */
    .flex { display: flex; }
    .flex-col { flex-direction: column; }
    .items-center { align-items: center; }
    .justify-center { justify-content: center; }
    .justify-between { justify-content: space-between; }
    .gap-4 { gap: 4px; }
    .gap-8 { gap: 8px; }
    .gap-12 { gap: 12px; }
    .gap-16 { gap: 16px; }
    .gap-24 { gap: 24px; }
    .gap-32 { gap: 32px; }
    .gap-48 { gap: 48px; }
    .grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .grid-3 {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 24px;
    }

    /* ===== Animations ===== */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .fade-in-delay-1 { transition-delay: 0.1s; }
    .fade-in-delay-2 { transition-delay: 0.2s; }
    .fade-in-delay-3 { transition-delay: 0.3s; }
    .fade-in-delay-4 { transition-delay: 0.4s; }
    .fade-in-delay-5 { transition-delay: 0.5s; }

    /* ===== Navigation ===== */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 20px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.4s ease, backdrop-filter 0.4s ease;
    }
    .nav.scrolled {
      background: rgba(42, 42, 30, 0.92);
      backdrop-filter: blur(8px);
    }
    .nav-logo {
      font-family: 'Noto Serif JP', serif;
      font-size: 14px;
      font-weight: 500;
      color: var(--cream);
      letter-spacing: 0.1em;
      line-height: 1.4;
    }
    .nav-cta {
      background: var(--warm);
      color: var(--white);
      padding: 10px 24px;
      border-radius: 40px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.05em;
      transition: background 0.3s ease, transform 0.2s ease;
    }
    .nav-cta:hover {
      background: var(--warm-light);
      transform: translateY(-1px);
    }
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }
    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--cream);
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    /* ===== Hero Section ===== */
    .hero {
      position: relative;
      height: 100svh;
      min-height: 600px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(var(--overlay), var(--overlay)),
        url('https://images.unsplash.com/photo-1545569341-9eb8b30979d9?w=1600&q=80') center/cover no-repeat;
      transform: scale(1.05);
      transition: transform 8s ease;
    }
    .hero-bg.loaded { transform: scale(1); }
    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 24px;
      max-width: 800px;
    }
    .hero-badge {
      display: inline-block;
      border: 1px solid rgba(242, 237, 227, 0.5);
      color: var(--cream);
      font-size: 12px;
      letter-spacing: 0.15em;
      padding: 6px 20px;
      border-radius: 40px;
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.2s forwards;
    }
    .hero-title {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(22px, 5vw, 42px);
      font-weight: 500;
      color: var(--cream);
      line-height: 1.5;
      letter-spacing: 0.05em;
      margin-bottom: 24px;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.4s forwards;
    }
    .hero-title em {
      font-style: normal;
      color: var(--warm-light);
    }
    .hero-copy {
      font-size: clamp(14px, 2vw, 17px);
      color: rgba(242, 237, 227, 0.88);
      line-height: 1.9;
      letter-spacing: 0.05em;
      margin-bottom: 40px;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.6s forwards;
    }
    .hero-meta {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 48px;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.7s forwards;
    }
    .hero-meta-item {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: rgba(242, 237, 227, 0.85);
      font-size: 14px;
      letter-spacing: 0.05em;
    }
    .hero-meta-item .icon {
      width: 18px;
      height: 18px;
      opacity: 0.7;
    }
    .hero-cta-wrap {
      opacity: 0;
      animation: fadeUp 0.8s ease 0.9s forwards;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--warm);
      color: var(--white);
      padding: 16px 40px;
      border-radius: 40px;
      font-size: 16px;
      font-weight: 500;
      letter-spacing: 0.05em;
      box-shadow: 0 4px 24px rgba(0,0,0,0.3);
      transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
      border: none;
      cursor: pointer;
    }
    .btn-primary:hover {
      background: var(--warm-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    }
    .btn-primary svg { flex-shrink: 0; }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1.5px solid var(--dark);
      color: var(--dark);
      padding: 14px 36px;
      border-radius: 40px;
      font-size: 15px;
      font-weight: 500;
      letter-spacing: 0.05em;
      transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      background: transparent;
    }
    .btn-outline:hover {
      background: var(--dark);
      color: var(--cream);
      transform: translateY(-1px);
    }
    .btn-line {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #06C755;
      color: var(--white);
      padding: 16px 40px;
      border-radius: 40px;
      font-size: 16px;
      font-weight: 500;
      letter-spacing: 0.05em;
      box-shadow: 0 4px 24px rgba(0,0,0,0.2);
      transition: background 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }
    .btn-line:hover {
      background: #05b34b;
      transform: translateY(-2px);
    }
    .hero-scroll {
      position: absolute;
      bottom: 32px;
      /* left: 50%; */
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(242, 237, 227, 0.6);
      font-size: 11px;
      letter-spacing: 0.2em;
      z-index: 2;
      opacity: 0;
      animation: fadeUp 0.8s ease 1.2s forwards;
    }
    .hero-scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, rgba(242,237,227,0.5), transparent);
      animation: scrollLine 2s ease infinite;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes scrollLine {
      0% { transform: scaleY(0); transform-origin: top; }
      50% { transform: scaleY(1); transform-origin: top; }
      51% { transform: scaleY(1); transform-origin: bottom; }
      100% { transform: scaleY(0); transform-origin: bottom; }
    }

    /* ===== Section Headers ===== */
    .section-label {
      font-size: 11px;
      letter-spacing: 0.25em;
      color: var(--forest);
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .section-label-light {
      font-size: 11px;
      letter-spacing: 0.25em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(22px, 3.5vw, 30px);
      font-weight: 500;
      line-height: 1.5;
      letter-spacing: 0.05em;
    }
    .section-title-light {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(22px, 3.5vw, 32px);
      font-weight: 500;
      line-height: 1.5;
      letter-spacing: 0.05em;
      color: var(--cream);
    }
    .section-body {
      font-size: 15px;
      color: var(--text-mid);
      line-height: 1.85;
      letter-spacing: 0.03em;
    }
    .section-divider {
      width: 40px;
      height: 2px;
      background: var(--forest);
      margin: 20px 0;
    }
    .section-divider-center {
      width: 40px;
      height: 2px;
      background: var(--forest);
      margin: 20px auto;
    }
    .section-divider-warm {
      width: 40px;
      height: 2px;
      background: var(--warm);
      margin: 20px auto;
    }

    /* ===== Concept Section ===== */
    .concept-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .concept-image-wrap {
      position: relative;
      border-radius: 4px;
      overflow: hidden;
      aspect-ratio: 4/3;
    }
    .concept-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .concept-image-wrap:hover img { transform: scale(1.03); }
    .concept-image-badge {
      position: absolute;
      top: 20px;
      left: 20px;
      background: var(--forest);
      color: var(--cream);
      font-size: 11px;
      letter-spacing: 0.15em;
      padding: 6px 14px;
      border-radius: 40px;
    }
    .concept-tag-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 24px;
    }
    .concept-tag {
      background: var(--cream);
      border: 1px solid var(--cream-dark);
      color: var(--text-mid);
      font-size: 12px;
      padding: 5px 14px;
      border-radius: 40px;
      letter-spacing: 0.05em;
    }

    /* ===== Course Cards ===== */
    .courses-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .course-card {
      background: var(--white);
      border: 1px solid var(--cream-dark);
      border-radius: 8px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .course-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(42, 42, 30, 0.12);
    }
    .course-card-image {
      width: 100%;
      aspect-ratio: 16/9;
      overflow: hidden;
      border-bottom: 1px solid var(--cream-dark);
    }
    .course-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .course-card:hover .course-card-image img {
      transform: scale(1.05);
    }
    .course-card-top {
      padding: 32px 28px 24px;
      position: relative;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .course-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 16px;
    }
    .course-icon-canva { background: #dcf5e3; }
    .course-icon-ai { background: #c8ebd3; }
    .course-icon-web { background: #e2f0e8; }
    .course-number {
      position: absolute;
      top: 24px;
      right: 28px;
      font-size: 36px;
      font-weight: 700;
      color: var(--cream-dark);
      font-family: 'Noto Serif JP', serif;
      line-height: 1;
    }
    .course-name {
      font-size: 18px;
      font-weight: 600;
      letter-spacing: 0.05em;
      margin-bottom: 12px;
      color: var(--dark);
    }
    .course-desc {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.8;
      letter-spacing: 0.02em;
      flex: 1;
    }
    .course-card-bottom {
      padding: 16px 28px 24px;
      background: var(--cream);
      border-top: 1px solid var(--cream-dark);
    }
    .course-skill-label {
      font-size: 10px;
      letter-spacing: 0.2em;
      color: var(--text-light);
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .course-skill-tag {
      display: inline-block;
      background: var(--forest);
      color: var(--white);
      font-size: 11px;
      padding: 4px 12px;
      border-radius: 40px;
      letter-spacing: 0.05em;
    }
    .support-note {
      background: var(--cream);
      border-left: 3px solid var(--forest);
      padding: 20px 24px;
      border-radius: 0 8px 8px 0;
      margin-top: 40px;
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.8;
    }

    /* ===== Plan Cards ===== */
    .plans-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .plan-cards-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-bottom: 24px;
    }
    .plan-card {
      border-radius: 12px;
      overflow: hidden;
      border: 1.5px solid var(--cream-dark);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .plan-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(42, 42, 30, 0.1);
    }
    .plan-card-featured {
      border-color: var(--forest);
      position: relative;
    }
    .plan-featured-badge {
      position: absolute;
      top: 0;
      right: 0;
      background: var(--forest);
      color: var(--white);
      font-size: 11px;
      letter-spacing: 0.1em;
      padding: 5px 16px;
      border-radius: 0 0 0 12px;
    }
    .plan-header {
      padding: 32px 28px 20px;
      background: var(--cream);
    }
    .plan-emoji {
      font-size: 28px;
      margin-bottom: 12px;
    }
    .plan-name {
      font-size: 17px;
      font-weight: 600;
      letter-spacing: 0.05em;
      margin-bottom: 6px;
    }
    .plan-target {
      font-size: 12px;
      color: var(--text-light);
      letter-spacing: 0.05em;
    }
    .plan-price-wrap {
      padding: 20px 28px;
      border-top: 1px solid var(--cream-dark);
      display: flex;
      align-items: baseline;
      gap: 4px;
    }
    .plan-price {
      font-size: 36px;
      font-weight: 700;
      font-family: 'Noto Serif JP', serif;
      color: var(--dark);
    }
    .plan-price-unit {
      font-size: 14px;
      color: var(--text-mid);
    }
    .plan-price-note {
      font-size: 11px;
      color: var(--text-light);
      margin-left: auto;
    }
    .plan-features {
      padding: 0 28px 28px;
    }
    .plan-feature {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 10px 0;
      border-bottom: 1px solid var(--cream-dark);
      font-size: 13.5px;
      color: var(--text-mid);
      line-height: 1.6;
    }
    .plan-feature:last-child { border-bottom: none; }
    .plan-feature-icon {
      color: var(--forest);
      flex-shrink: 0;
      margin-top: 2px;
    }
    .option-card {
      background: var(--cream);
      border: 1.5px solid var(--gold);
      border-radius: 12px;
      padding: 24px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .option-left { flex: 1; }
    .option-emoji { font-size: 28px; margin-bottom: 8px; }
    .option-name { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
    .option-desc { font-size: 13px; color: var(--text-mid); line-height: 1.7; }
    .option-price-wrap { text-align: right; flex-shrink: 0; }
    .option-price { font-size: 28px; font-weight: 700; font-family: 'Noto Serif JP', serif; }
    .option-price-unit { font-size: 13px; color: var(--text-mid); }
    .option-price-note { font-size: 11px; color: var(--text-light); }

    /* ===== Schedule ===== */
    .schedule-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }
    .schedule-day {
      background: var(--white);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--cream-dark);
    }
    .schedule-day-header {
      padding: 20px 28px;
      background: var(--forest);
      color: var(--white);
    }
    .schedule-day-label {
      font-size: 11px;
      letter-spacing: 0.2em;
      opacity: 0.7;
      margin-bottom: 4px;
    }
    .schedule-day-title {
      font-size: 18px;
      font-weight: 600;
      letter-spacing: 0.05em;
    }
    .schedule-day-date {
      font-size: 13px;
      opacity: 0.8;
      margin-top: 4px;
    }
    .schedule-list {
      padding: 8px 0;
    }
    .schedule-item {
      display: flex;
      gap: 16px;
      padding: 14px 28px;
      border-bottom: 1px solid var(--cream);
      align-items: flex-start;
      transition: background 0.2s ease;
    }
    .schedule-item:last-child { border-bottom: none; }
    .schedule-item:hover { background: var(--cream); }
    .schedule-time {
      font-size: 13px;
      font-weight: 600;
      color: var(--forest);
      white-space: nowrap;
      min-width: 52px;
      letter-spacing: 0.03em;
      padding-top: 1px;
    }
    .schedule-desc {
      font-size: 14px;
      color: var(--text-dark);
      line-height: 1.6;
    }
    .schedule-desc-note {
      font-size: 12px;
      color: var(--text-light);
      margin-top: 3px;
    }
    .schedule-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--forest-light);
      flex-shrink: 0;
      margin-top: 5px;
    }

    /* ===== Application / Info ===== */
    .apply-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-bottom: 48px;
    }
    .info-card {
      background: var(--white);
      border: 1px solid var(--cream-dark);
      border-radius: 12px;
      overflow: hidden;
    }
    .info-card-header {
      background: var(--cream);
      padding: 16px 24px;
      border-bottom: 1px solid var(--cream-dark);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.1em;
      color: var(--forest);
      text-transform: uppercase;
    }
    .info-card-body {
      padding: 20px 24px;
    }
    .info-row {
      display: flex;
      gap: 12px;
      padding: 10px 0;
      border-bottom: 1px solid var(--cream);
      align-items: flex-start;
    }
    .info-row:last-child { border-bottom: none; }
    .info-label {
      font-size: 12px;
      font-weight: 600;
      color: var(--text-light);
      white-space: nowrap;
      min-width: 80px;
      padding-top: 1px;
      letter-spacing: 0.05em;
    }
    .info-value {
      font-size: 14px;
      color: var(--text-dark);
      line-height: 1.7;
    }
    .info-value a {
      color: var(--forest);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .apply-cta-card {
      background: var(--dark);
      border-radius: 16px;
      padding: 48px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .apply-cta-card::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 250px;
      height: 250px;
      background: var(--forest);
      opacity: 0.15;
      border-radius: 50%;
    }
    .apply-cta-card::after {
      content: '';
      position: absolute;
      bottom: -60px;
      left: -60px;
      width: 200px;
      height: 200px;
      background: var(--warm);
      opacity: 0.1;
      border-radius: 50%;
    }
    .apply-cta-title {
      font-family: 'Noto Serif JP', serif;
      font-size: 22px;
      font-weight: 500;
      color: var(--cream);
      line-height: 1.6;
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
    }
    .apply-cta-desc {
      font-size: 14px;
      color: rgba(242,237,227,0.7);
      margin-bottom: 32px;
      line-height: 1.8;
      position: relative;
      z-index: 1;
    }
    .apply-cta-buttons {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .apply-cta-note {
      font-size: 12px;
      color: rgba(242,237,227,0.5);
      margin-top: 16px;
      line-height: 1.7;
      position: relative;
      z-index: 1;
    }

    /* ===== Deadline Strip ===== */
    .deadline-strip {
      background: var(--warm);
      padding: 16px 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
    }
    .deadline-label {
      font-size: 12px;
      letter-spacing: 0.2em;
      color: rgba(255,255,255,0.8);
      text-transform: uppercase;
    }
    .deadline-date {
      font-size: 18px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.05em;
    }
    .deadline-seats {
      font-size: 13px;
      color: rgba(255,255,255,0.85);
      background: rgba(255,255,255,0.15);
      padding: 4px 14px;
      border-radius: 40px;
    }

    /* ===== Organizer ===== */
    .organizer-strip {
      background: var(--cream);
      padding: 40px 32px;
      text-align: center;
    }
    .organizer-label {
      font-size: 11px;
      letter-spacing: 0.2em;
      color: var(--text-light);
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .organizer-names {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      font-size: 15px;
      color: var(--text-mid);
      letter-spacing: 0.05em;
      flex-wrap: wrap;
    }
    .organizer-names span {
      font-weight: 600;
      color: var(--dark);
      white-space: nowrap;
    }
    .organizer-names .organizer-cross {
      font-weight: normal;
      color: var(--text-mid);
    }
    .organizer-logo {
      height: 40px;
      width: auto;
      object-fit: contain;
    }

    /* ===== Footer ===== */
    footer {
      background: var(--dark);
      padding: 48px 32px 32px;
    }
    .footer-inner {
      max-width: 960px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 32px;
    }
    .footer-brand {
      font-family: 'Noto Serif JP', serif;
      font-size: 16px;
      font-weight: 500;
      color: var(--cream);
      line-height: 1.5;
      max-width: 280px;
    }
    .footer-brand-sub {
      font-size: 12px;
      color: rgba(242,237,227,0.5);
      margin-top: 6px;
      font-family: 'Noto Sans JP', sans-serif;
      line-height: 1.7;
    }
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 12px 24px;
      max-width: 600px;
    }
    .footer-link {
      font-size: 13px;
      color: rgba(242,237,227,0.6);
      letter-spacing: 0.05em;
      transition: color 0.2s ease;
    }
    .footer-link:hover { color: var(--cream); }
    .footer-divider {
      height: 1px;
      background: rgba(242,237,227,0.1);
    }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: rgba(242,237,227,0.35);
    }

    /* ===== Plan Card Button ===== */
    .btn-plan {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      background: var(--forest);
      color: var(--white);
      padding: 14px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.05em;
      transition: background 0.3s ease, transform 0.2s ease;
      margin-top: auto;
    }
    .btn-plan:hover {
      background: var(--forest-light);
      transform: translateY(-2px);
    }
    .plan-card {
      display: flex;
      flex-direction: column;
    }
    .plan-features {
      flex: 1;
    }
    .plan-footer {
      padding: 0 28px 28px;
    }

    /* ===== Flow Section ===== */
    .flow-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      position: relative;
    }
    .flow-item {
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .flow-grid::before {
      content: '';
      position: absolute;
      top: 40px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: var(--cream-dark);
      z-index: 0;
    }
    .flow-icon-wrap {
      width: 80px;
      height: 80px;
      background: var(--white);
      border: 3px solid var(--cream-dark);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      position: relative;
      background: var(--white);
    }
    .flow-icon {
      width: 32px;
      height: 32px;
      color: var(--forest);
    }
    .flow-step {
      display: block;
      font-size: 10px;
      font-weight: 700;
      color: var(--text-light);
      margin-bottom: 4px;
      text-transform: uppercase;
    }
    .flow-title {
      font-size: 15px;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 8px;
    }
    .flow-text {
      font-size: 13px;
      color: var(--text-mid);
      line-height: 1.6;
    }

    /* ===== FAQ Section ===== */
    .faq-list {
      max-width: 720px;
      margin: 0 auto;
    }
    .faq-item {
      background: var(--white);
      border-bottom: 1px solid var(--cream-dark);
      padding: 24px 0;
    }
    .faq-item:last-child {
      border-bottom: none;
    }
    .faq-question {
      font-size: 16px;
      font-weight: 600;
      color: var(--dark);
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 12px;
      cursor: pointer;
    }
    .faq-q-mark {
      color: var(--forest);
      font-family: 'Noto Serif JP', serif;
      font-weight: 700;
      font-size: 20px;
      line-height: 1;
    }
    .faq-answer {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.8;
      padding-left: 32px;
    }

    /* ===== Mid CTA ===== */
    .mid-cta {
      background: var(--forest);
      padding: 64px 0;
      text-align: center;
      color: var(--white);
    }
    .mid-cta-content {
      max-width: 640px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .mid-cta-title {
      font-family: 'Noto Serif JP', serif;
      font-size: 24px;
      font-weight: 500;
      margin-bottom: 16px;
      line-height: 1.5;
    }
    .mid-cta-desc {
      font-size: 15px;
      color: rgba(255,255,255,0.8);
      margin-bottom: 32px;
    }

    /* ===== Responsive ===== */
    @media (max-width: 1024px) {
      .container { padding: 0 24px; }
      .concept-wrap { gap: 32px; }
      .grid-3 { grid-template-columns: 1fr 1fr; }
      .nav-menu { gap: 20px; margin-right: 20px; }
      .hero-title { font-size: 32px; }
      .plan-cards-wrap { gap: 16px; }
      .apply-grid { gap: 16px; }
    }
    @media (max-width: 768px) {
      .pc-only { display: none !important; }
      .container, .container-narrow { padding: 0 20px; }
      .section { padding: 60px 0; }
      .concept-wrap { grid-template-columns: 1fr; gap: 40px; }
      .grid-2, .grid-3 { grid-template-columns: 1fr; }
      .plan-cards-wrap { grid-template-columns: 1fr; }
      .schedule-grid { grid-template-columns: 1fr; }
      .apply-grid { grid-template-columns: 1fr; }
      .option-card { flex-direction: column; }
      .option-price-wrap { text-align: left; }
      .footer-top { flex-direction: column; gap: 40px; }
      .footer-links { justify-content: flex-start; gap: 12px 20px; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
      
      /* Mobile Menu */
      .nav-menu-bg { display: block; visibility: hidden; }
      .nav-menu-bg.open { visibility: visible; }
      .nav-menu {
        position: fixed; top: 0; right: -100%;
        width: 80%; max-width: 320px; height: 100vh;
        background: rgba(42, 42, 30, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column; align-items: flex-start; justify-content: flex-start;
        padding: 100px 40px 40px; margin: 0; transition: right 0.4s ease; z-index: 100; gap: 32px;
      }
      .nav-menu.open { right: 0; }
      .nav-link { font-size: 16px; }
      .nav-cta { margin-top: 16px; width: 100%; text-align: center; display: block; font-size: 15px; padding: 14px 24px; }
      .nav-hamburger { display: flex; z-index: 101; cursor: pointer; }
      .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
      .nav-hamburger.open span:nth-child(2) { opacity: 0; }
      .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
      
      .apply-cta-card { padding: 32px 24px; }
      .deadline-strip { flex-direction: column; gap: 8px; text-align: center; }
      .hero-title { font-size: 24px; line-height: 1.6; }
      .plan-price { font-size: 28px; }
      .hero-meta-item { flex-direction: row; align-items: flex-start; text-align: left; gap: 8px; }
      .hero-meta-item .icon { margin-top: 2px; }

      /* Flow Responsive */
      .flow-grid { grid-template-columns: 1fr; gap: 40px; }
      .flow-grid::before { display: none; }
      .flow-item { text-align: center; }
      
      /* FAQ Responsive */
      .faq-question { font-size: 15px; }
      .faq-answer { padding-left: 0; margin-top: 8px; }
    }
    @media (max-width: 480px) {
      .hero-meta { gap: 16px; }
      .hero-meta-item { font-size: 13px; }
      .btn-primary, .btn-line { padding: 14px 24px; font-size: 14px; width: 100%; justify-content: center; }
      .hero-title { font-size: 20px; }
      .apply-cta-title { font-size: 18px; }
      .apply-cta-buttons .btn-line, .apply-cta-buttons .btn-outline { width: 100%; justify-content: center; }
      .nav-logo { font-size: 12px; }
      .sticky-cta { left: 16px; right: 16px; bottom: 16px; }
      .sticky-cta .btn-line { width: 100%; border-radius: 8px; box-shadow: 0 4px 16px rgba(0,0,0,0.4); }
    }