:root {
      --main: #5f8f72;
      --main-dark: #3f6f54;
      --sub: #f3efe7;
      --accent: #d6a85d;
      --text: #2f2f2f;
      --muted: #666;
      --white: #fff;
      --line: #06c755;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      --radius: 18px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
      color: var(--text);
      line-height: 1.8;
      background: #fffaf3;
    }

    a { color: inherit; text-decoration: none; }
    .container { width: min(1080px, 92%); margin: 0 auto; }
    .section { padding: 88px 0; }
    .section-light { background: var(--sub); }

    .section-title { text-align: center; margin-bottom: 44px; }
    .section-title span {
      display: inline-block;
      color: var(--main);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.08em;
      margin-bottom: 8px;
    }
    .section-title h2 {
      font-size: clamp(26px, 4vw, 38px);
      line-height: 1.45;
    }

    .lead {
      font-size: 18px;
      color: var(--muted);
      text-align: center;
      max-width: 720px;
      margin: 0 auto;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 54px;
      padding: 0 28px;
      border-radius: 999px;
      font-weight: 700;
      transition: 0.25s;
      box-shadow: var(--shadow);
    }
    .btn-line { background: var(--line); color: #fff; }
    .btn-main { background: var(--main); color: #fff; }
    .btn-outline { background: #fff; color: var(--main-dark); border: 2px solid var(--main); }
    .btn:hover { transform: translateY(-2px); opacity: 0.92; }

    .header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 250, 243, 0.92);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    .header-inner {
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo {
      font-weight: 800;
      color: var(--main-dark);
      font-size: 20px;
      letter-spacing: 0.03em;
    }
    .nav {
      display: flex;
      align-items: center;
      gap: 24px;
      font-size: 14px;
      font-weight: 700;
    }
    .nav a { color: #444; }
    .nav .nav-cta {
      color: #fff;
      background: var(--line);
      padding: 9px 18px;
      border-radius: 999px;
    }

    .hero {
      position: relative;
      padding: 96px 0 88px;
      background:
        linear-gradient(110deg, rgba(255, 250, 243, 0.96) 0%, rgba(255, 250, 243, 0.86) 52%, rgba(95, 143, 114, 0.2) 100%),
        radial-gradient(circle at top right, rgba(214, 168, 93, 0.24), transparent 34%);
      overflow: hidden;
    }
    .hero::after {
      content: "";
      position: absolute;
      right: -120px;
      bottom: -120px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: rgba(95, 143, 114, 0.16);
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 56px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .hero-badge {
      display: inline-block;
      background: #fff;
      color: var(--main-dark);
      border: 1px solid rgba(95, 143, 114, 0.28);
      padding: 6px 14px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 14px;
      margin-bottom: 18px;
    }
    .hero h1 {
      font-size: clamp(34px, 5vw, 56px);
      line-height: 1.32;
      margin-bottom: 22px;
    }
    .hero h1 strong { color: var(--main-dark); }
    .hero-text {
      font-size: 18px;
      color: var(--muted);
      margin-bottom: 30px;
      max-width: 640px;
    }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
    .hero-points { display: flex; flex-wrap: wrap; gap: 12px; }
    .hero-points span {
      background: #fff;
      border-radius: 999px;
      padding: 8px 14px;
      font-size: 14px;
      font-weight: 700;
      color: var(--main-dark);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    }
    .hero-card {
      background: #fff;
      border-radius: 28px;
      padding: 32px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(0, 0, 0, 0.04);
    }
    .hero-card h3 { color: var(--main-dark); font-size: 24px; margin-bottom: 16px; }
    .hero-card ul { list-style: none; display: grid; gap: 12px; }
    .hero-card li { padding-left: 28px; position: relative; }
    .hero-card li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--main);
      font-weight: 900;
    }

    .problem-grid, .feature-grid, .menu-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 42px;
    }
    .problem-card, .feature-card, .menu-card, .menu-note, .info-table, .map-box, .faq-item {
      background: #fff;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }
    .problem-card { padding: 26px; }
    .problem-card h3, .feature-card h3, .menu-card h3, .menu-note h3, .faq-item h3 {
      color: var(--main-dark);
    }
    .problem-card p, .feature-card p, .menu-card p, .menu-note p, .faq-item p { color: var(--muted); }

    .feature-card {
      padding: 30px;
      border-top: 5px solid var(--main);
    }
    .feature-number {
      color: var(--accent);
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 0.08em;
      margin-bottom: 8px;
    }
    .feature-card h3 { font-size: 22px; line-height: 1.5; margin-bottom: 12px; }

    .menu-card {
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .menu-card.recommend {
      border: 3px solid var(--accent);
      position: relative;
    }
    .menu-label {
      position: absolute;
      top: -16px;
      left: 24px;
      background: var(--accent);
      color: #fff;
      padding: 3px 13px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 800;
    }
    .menu-card h3 { font-size: 22px; margin-bottom: 12px; }
    .menu-time { font-weight: 800; font-size: 18px; margin-bottom: 4px; }
    .menu-price {
      font-size: 30px;
      font-weight: 900;
      color: var(--main-dark);
      margin-bottom: 16px;
    }
    .menu-price small { font-size: 14px; font-weight: 700; }
    .menu-note { margin-top: 36px; padding: 28px; }
    .menu-note h3 { margin-bottom: 10px; }

    .flow { display: grid; gap: 18px; max-width: 820px; margin: 0 auto; }
    .flow-item {
      display: grid;
      grid-template-columns: 72px 1fr;
      gap: 20px;
      align-items: start;
      background: #fff;
      padding: 24px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }
    .flow-num {
      width: 56px;
      height: 56px;
      background: var(--main);
      color: #fff;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-weight: 900;
      font-size: 20px;
    }
    .flow-item h3 { font-size: 20px; margin-bottom: 6px; color: var(--main-dark); }
    .flow-item p { color: var(--muted); }

    .cta {
      background: linear-gradient(135deg, rgba(63, 111, 84, 0.95), rgba(95, 143, 114, 0.92)), var(--main);
      color: #fff;
      text-align: center;
      padding: 72px 0;
    }
    .cta h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
    .cta p { opacity: 0.92; margin-bottom: 28px; font-size: 18px; }
    .cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
    .cta .btn-outline { border: none; }

    .access-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: start;
    }
    .info-table, .map-box { padding: 28px; }
    .info-row {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 16px;
      padding: 14px 0;
      border-bottom: 1px solid #eee;
    }
    .info-row:last-child { border-bottom: none; }
    .info-row dt { font-weight: 800; color: var(--main-dark); }
    .info-row dd { color: var(--muted); }
    .map-placeholder {
      min-height: 260px;
      border-radius: 16px;
      background:
        linear-gradient(135deg, rgba(95, 143, 114, 0.14), rgba(214, 168, 93, 0.14)),
        #f7f7f7;
      display: grid;
      place-items: center;
      text-align: center;
      color: var(--main-dark);
      font-weight: 800;
      margin-bottom: 20px;
      padding: 20px;
    }

    .faq { max-width: 860px; margin: 0 auto; display: grid; gap: 18px; }
    .faq-item { padding: 24px 28px; }
    .faq-item h3 { font-size: 18px; margin-bottom: 8px; }

    .footer {
      background: #2f2f2f;
      color: #fff;
      padding: 36px 0;
      text-align: center;
      font-size: 14px;
    }
    .fixed-cta { display: none; }

    @media (max-width: 900px) {
      .nav { display: none; }
      .hero { padding: 72px 0; }
      .hero-grid, .access-grid { grid-template-columns: 1fr; }
      .problem-grid, .feature-grid, .menu-grid { grid-template-columns: 1fr; }
      .section { padding: 68px 0; }
    }
    @media (max-width: 600px) {
      body { padding-bottom: 78px; }
      .header-inner { height: 64px; }
      .logo { font-size: 17px; }
      .hero-card { padding: 24px; }
      .hero-actions, .cta-actions { flex-direction: column; }
      .btn { width: 100%; }
      .flow-item { grid-template-columns: 1fr; }
      .info-row { grid-template-columns: 1fr; gap: 4px; }
      .fixed-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 10px;
        background: rgba(255, 255, 255, 0.96);
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        z-index: 2000;
      }
      .fixed-cta a {
        min-height: 50px;
        border-radius: 12px;
        font-size: 14px;
        box-shadow: none;
      }
    }
