﻿:root {
      --ink: #4b2418;
      --muted: #7c675c;
      --orange: #f46d34;
      --orange-dark: #d95723;
      --peach: #fff3ea;
      --cream: #fffaf5;
      --rose: #ffe7dc;
      --mint: #edf7ec;
      --line: #f3d8ca;
      --paper: #ffffff;
      --soft: #fff7ef;
      --shadow: 0 18px 42px rgba(128, 67, 34, 0.14);
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      color: var(--ink);
      font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
      background: var(--cream);
      line-height: 1.65;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    .topbar {
      background: linear-gradient(90deg, #fff8f2, #fff);
      color: var(--ink);
      color: #fff;
      font-size: 13px;
    }

    .topbar-inner,
    .nav,
    .section-inner {
      width: min(1160px, calc(100% - 40px));
      margin: 0 auto;
    }

    .topbar-inner {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      padding: 7px 0;
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(255, 251, 247, 0.97);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(10px);
    }

    .nav {
      min-height: 48px;
      display: grid;
      grid-template-columns: auto auto;
      grid-template-rows: auto auto;
      align-items: center;
      justify-content: space-between;
      row-gap: 3px;
      column-gap: 8px;
      padding: 4px 0 5px;
    }

    .brand {
      display: grid;
      grid-template-columns: 34px 1fr;
      align-items: center;
      column-gap: 7px;
      min-width: 148px;
    }

    .brand-mark {
      width: 32px;
      height: 32px;
      display: grid;
      place-items: center;
      border: 1px solid var(--orange);
      border-radius: 50%;
      color: var(--orange);
      font-size: 18px;
      line-height: 1;
      background: #fff;
    }

    .brand-text {
      display: grid;
      gap: 1px;
    }

    .brand strong {
      color: var(--orange-dark);
      font-size: 15px;
      letter-spacing: 0;
    }

    .brand span {
      color: var(--muted);
      font-size: 10px;
      line-height: 1.1;
    }

    .brand .brand-mark {
      color: var(--orange);
      font-size: 18px;
      line-height: 1;
    }

    .brand .brand-text span {
      color: var(--muted);
      font-size: 10px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 5px;
      color: #5d382b;
      font-size: 10px;
      white-space: nowrap;
      grid-column: 1 / -1;
      grid-row: 2;
      min-width: 0;
      flex-wrap: nowrap;
      justify-content: flex-start;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .nav-links::-webkit-scrollbar {
      display: none;
    }

    .nav-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 20px;
      padding: 0 5px;
      border: 1px solid rgba(244, 109, 52, 0.24);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.72);
      color: #5d382b;
      font-weight: 700;
      font-size: 10px;
      flex: 0 0 auto;
    }

    .actions {
      display: flex;
      align-items: center;
      gap: 6px;
      justify-self: end;
      grid-column: 2;
      grid-row: 1;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 30px;
      padding: 0 10px;
      border: 1px solid transparent;
      border-radius: 5px;
      font-weight: 700;
      line-height: 1.2;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--orange), #ff8a50);
      color: #fff;
      box-shadow: 0 10px 24px rgba(244, 109, 52, 0.28);
    }

    .btn-outline {
      color: var(--orange-dark);
      border-color: var(--orange);
      background: #fff;
    }

    .hero {
      position: relative;
      min-height: 620px;
      display: flex;
      align-items: center;
      background-image:
        linear-gradient(90deg, rgba(255,250,245,0.99) 0%, rgba(255,250,245,0.92) 36%, rgba(255,250,245,0.34) 62%, rgba(255,250,245,0) 100%),
        url("assets/kurage-warm-hero.png");
      background-size: cover;
      background-position: center right;
      border-bottom: 1px solid var(--line);
      overflow: hidden;
    }

    .hero::after {
      content: "";
      position: absolute;
      left: -4%;
      right: -4%;
      bottom: -68px;
      height: 132px;
      background: var(--cream);
      border-top: 18px solid rgba(244, 109, 52, 0.55);
      border-radius: 50% 50% 0 0 / 58% 58% 0 0;
      transform: rotate(-2deg);
      pointer-events: none;
    }

    .hero-inner {
      width: min(1160px, calc(100% - 40px));
      margin: 0 auto;
      padding: 84px 0 104px;
    }

    .hero-copy { max-width: 590px; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--orange-dark);
      font-weight: 700;
      font-size: 14px;
      margin-bottom: 16px;
    }

    .eyebrow::before {
      content: "";
      width: 36px;
      height: 2px;
      background: var(--orange);
    }

    h1 {
      margin: 0;
      font-size: clamp(36px, 5vw, 64px);
      line-height: 1.12;
      letter-spacing: 0;
    }

    .hero-copy p {
      margin: 22px 0 0;
      color: #3f586e;
      font-size: 18px;
      max-width: 540px;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }

    .hero-consult {
      width: min(560px, 100%);
      margin: 30px auto 0;
      padding: 18px;
      text-align: center;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid var(--line);
      border-radius: 8px;
      box-shadow: 0 14px 30px rgba(128, 67, 34, 0.12);
    }

    .hero-consult h2 {
      margin: 0;
      color: var(--orange-dark);
      font-size: 22px;
      line-height: 1.35;
    }

    .hero-consult p {
      margin: 8px auto 14px;
      max-width: 460px;
      color: var(--muted);
      font-size: 14px;
    }

    .hero-consult .btn {
      min-width: 260px;
    }

    .hero-points {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      max-width: 600px;
      margin-top: 36px;
    }

    .point {
      width: 130px;
      min-height: 130px;
      padding: 20px 14px;
      display: grid;
      place-items: center;
      text-align: center;
      background: rgba(255,255,255,0.94);
      border: 1px solid #fff;
      border-radius: 50%;
      box-shadow: 0 14px 30px rgba(128, 67, 34, 0.14);
    }

    .point b {
      display: block;
      color: var(--ink);
      font-size: 15px;
      line-height: 1.2;
    }

    .point span {
      color: var(--orange);
      font-size: 24px;
      line-height: 1;
    }

    .section { padding: 72px 0; }
    .section.soft { background: var(--soft); }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 28px;
    }

    .section-head h2 {
      margin: 0;
      font-size: 30px;
      line-height: 1.25;
      letter-spacing: 0;
    }

    .section-head p {
      margin: 0;
      max-width: 560px;
      color: var(--muted);
    }

    .menu-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .menu-card,
    .reason-card,
    .price-card,
    .faq-item,
    .news-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 8px;
    }

    .menu-card {
      min-height: 224px;
      padding: 22px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .menu-icon {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 6px;
      background: var(--rose);
      color: var(--orange-dark);
      font-size: 18px;
      font-weight: 800;
    }

    .menu-card h3,
    .reason-card h3,
    .price-card h3,
    .news-card h3 {
      margin: 16px 0 8px;
      font-size: 20px;
      line-height: 1.25;
    }

    .menu-card p,
    .reason-card p,
    .price-card p,
    .news-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .price-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .price-card {
      padding: 24px;
      box-shadow: 0 12px 30px rgba(21, 50, 74, 0.07);
    }

    .price-tag {
      margin: 18px 0 10px;
      color: var(--orange-dark);
      font-size: 28px;
      font-weight: 800;
      line-height: 1.2;
    }

    .price-tag small {
      font-size: 15px;
      font-weight: 700;
    }

    .label {
      display: inline-flex;
      align-items: center;
      min-height: 26px;
      padding: 0 10px;
      border-radius: 999px;
      background: var(--sand);
      color: #8a5b25;
      font-size: 12px;
      font-weight: 700;
    }

    .reason-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .choice-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 16px;
    }

    .choice-card {
      position: relative;
      min-height: 214px;
      padding: 38px 18px 20px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 8px;
      box-shadow: 0 12px 26px rgba(128, 67, 34, 0.09);
    }

    .choice-card::before {
      content: attr(data-number);
      position: absolute;
      top: -16px;
      left: 16px;
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--orange);
      color: #fff;
      font-weight: 800;
      font-size: 14px;
    }

    .choice-icon {
      color: var(--orange);
      font-size: 34px;
      line-height: 1;
      margin-bottom: 14px;
    }

    .choice-card h3 {
      margin: 0 0 10px;
      font-size: 17px;
      line-height: 1.35;
    }

    .choice-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .photo-strip {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 18px;
      margin-top: 32px;
    }

    .photo-panel {
      position: relative;
      min-height: 260px;
      overflow: hidden;
      border-radius: 8px;
      border: 1px solid var(--line);
      background: #fff;
      box-shadow: 0 14px 30px rgba(128, 67, 34, 0.09);
    }

    .photo-panel img {
      width: 100%;
      height: 100%;
      min-height: 260px;
      object-fit: cover;
    }

    .photo-caption {
      position: absolute;
      left: 18px;
      bottom: 18px;
      max-width: 330px;
      padding: 16px 18px;
      border-radius: 8px;
      background: rgba(255, 250, 245, 0.92);
      box-shadow: 0 10px 24px rgba(83, 32, 14, 0.12);
    }

    .photo-caption h3 {
      margin: 0 0 6px;
      color: var(--orange-dark);
      font-size: 20px;
      line-height: 1.3;
    }

    .photo-caption p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .inline-photo {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 28px;
      align-items: center;
      margin-top: 34px;
    }

    .inline-photo img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      border-radius: 8px;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .inline-photo-copy {
      padding: 26px;
      background: rgba(255,255,255,0.75);
      border: 1px solid var(--line);
      border-radius: 8px;
    }

    .inline-photo-copy h3 {
      margin: 0 0 10px;
      color: var(--orange-dark);
      font-size: 24px;
      line-height: 1.35;
    }

    .inline-photo-copy p {
      margin: 0;
      color: var(--muted);
    }

    .reason-card,
    .news-card {
      padding: 24px;
    }

    .reason-number {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--mint);
      color: #216b5c;
      font-weight: 800;
    }

    .flow {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      counter-reset: step;
    }

    .flow-step {
      min-height: 162px;
      padding: 22px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 8px;
    }

    .flow-step::before {
      counter-increment: step;
      content: "0" counter(step);
      display: block;
      color: var(--orange);
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .flow-step h3 {
      margin: 0 0 8px;
      font-size: 17px;
    }

    .flow-step p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      padding: 20px 22px;
    }

    .faq-item summary {
      cursor: pointer;
      color: var(--ink);
      font-weight: 800;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker { display: none; }

    .faq-item summary::after {
      content: "+";
      float: right;
      color: var(--orange);
      font-size: 24px;
      line-height: 1;
    }

    .faq-item[open] summary::after { content: "-"; }

    .faq-item p {
      margin: 12px 0 0;
      color: var(--muted);
    }

    .cta {
      padding: 54px 0;
      background:
        radial-gradient(circle at 8% 25%, rgba(255,255,255,0.24), transparent 26%),
        linear-gradient(135deg, #f46d34, #ff9b62);
      color: #fff;
    }

    .cta-inner {
      width: min(1160px, calc(100% - 40px));
      margin: 0 auto;
      display: grid;
      gap: 24px;
      text-align: center;
    }

    .cta h2 {
      margin: 0;
      font-size: 30px;
      line-height: 1.25;
    }

    .cta p {
      margin: 10px 0 0;
      color: rgba(255,255,255,0.84);
    }

    .cta .btn-outline {
      border-color: #fff;
      color: #fff;
      background: transparent;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      text-align: left;
    }

    .contact-card {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 14px;
      align-items: center;
      min-height: 86px;
      padding: 18px;
      background: #fff;
      color: var(--ink);
      border-radius: 8px;
      box-shadow: 0 14px 30px rgba(83, 32, 14, 0.14);
    }

    .contact-icon {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--rose);
      color: var(--orange);
      font-weight: 800;
    }

    .contact-card strong {
      display: block;
      color: var(--orange-dark);
      font-size: 24px;
      line-height: 1.1;
    }

    .contact-card span {
      display: block;
      color: var(--muted);
      font-size: 13px;
    }

    .contact-card .contact-icon {
      display: grid;
      color: var(--orange);
      font-size: 13px;
      line-height: 1;
    }

    .info-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .info-card {
      padding: 24px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 8px;
      box-shadow: 0 12px 26px rgba(128, 67, 34, 0.08);
    }

    .info-card h3 {
      margin: 0 0 10px;
      color: var(--orange-dark);
      font-size: 20px;
      line-height: 1.35;
    }

    .info-card p,
    .info-card li {
      color: var(--muted);
      font-size: 14px;
    }

    .info-card p {
      margin: 0;
    }

    .info-card ul {
      margin: 0;
      padding-left: 18px;
    }

    .text-link {
      display: inline-flex;
      margin-top: 12px;
      color: var(--orange-dark);
      font-weight: 800;
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    .news-list {
      display: grid;
      gap: 12px;
    }

    .news-row {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 18px;
      align-items: center;
      padding: 18px 20px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 8px;
    }

    .news-date {
      color: var(--orange-dark);
      font-weight: 800;
      font-size: 14px;
    }

    .sns-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .sns-card {
      min-height: 120px;
      padding: 22px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 8px;
      box-shadow: 0 12px 26px rgba(128, 67, 34, 0.08);
    }

    .sns-card strong {
      display: block;
      margin-bottom: 8px;
      color: var(--orange-dark);
      font-size: 19px;
    }

    .sns-card span {
      color: var(--muted);
      font-size: 14px;
    }

    .area-layout {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 28px;
      align-items: center;
    }

    .area-list {
      display: grid;
      gap: 12px;
    }

    .area-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 16px 18px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 8px;
      box-shadow: 0 10px 22px rgba(128, 67, 34, 0.07);
    }

    .area-item strong {
      color: var(--orange-dark);
      font-size: 18px;
    }

    .area-item span {
      color: var(--muted);
      font-size: 13px;
    }

    .kobe-map {
      position: relative;
      min-height: 360px;
      padding: 24px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,248,240,0.92)),
        radial-gradient(circle at 78% 12%, rgba(244,109,52,0.16), transparent 34%);
      border: 1px solid var(--line);
      border-radius: 8px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .kobe-map svg {
      width: 100%;
      height: auto;
      display: block;
    }

    .map-district {
      fill: #ffe3d3;
      stroke: #fff;
      stroke-width: 4;
    }

    .map-district.primary {
      fill: #f46d34;
    }

    .map-district.secondary {
      fill: #ffae7f;
    }

    .map-label {
      fill: var(--ink);
      font-size: 18px;
      font-weight: 800;
      text-anchor: middle;
    }

    .map-label.light {
      fill: #fff;
    }

    .map-note {
      margin: 14px 0 0;
      color: var(--muted);
      font-size: 13px;
      text-align: center;
    }

    .footer {
      padding: 34px 0;
      background: #4b2418;
      color: rgba(255,255,255,0.78);
      font-size: 13px;
    }

    .footer-inner {
      width: min(1160px, calc(100% - 40px));
      margin: 0 auto;
      display: grid;
      gap: 20px;
    }

    .footer-main {
      display: flex;
      justify-content: space-between;
      gap: 18px;
    }

    .footer-info {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,0.18);
    }

    .footer-info div {
      display: grid;
      gap: 3px;
    }

    .footer-info b {
      color: #fff;
      font-size: 12px;
    }

    .footer-info span,
    .footer a {
      color: rgba(255,255,255,0.78);
    }

    .footer-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,0.18);
    }

    .footer-nav a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 28px;
      padding: 0 8px;
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.88);
      font-weight: 700;
      font-size: 12px;
    }

    @media (max-width: 980px) {
      .nav {
        justify-content: space-between;
        gap: 8px;
      }

      .nav-links {
        order: initial;
        grid-column: 1 / -1;
        width: auto;
        display: flex;
        grid-template-columns: none;
        gap: 5px;
        flex-basis: auto;
      }

      .nav-links a {
        min-height: 24px;
        padding: 0 5px;
        font-size: 10px;
        white-space: nowrap;
        text-align: center;
      }

      .hero {
        min-height: auto;
        background-image:
          linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.9) 48%, rgba(255,255,255,0.76) 100%),
          url("assets/kurage-warm-hero.png");
        background-position: 64% center;
      }

      .hero-inner { padding: 64px 0 72px; }

      .hero-points,
      .menu-grid,
      .price-grid,
      .reason-grid,
      .choice-grid,
      .info-grid,
      .sns-grid,
      .area-layout,
      .flow,
      .photo-strip,
      .inline-photo {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .section-head,
      .footer-main {
        align-items: start;
        flex-direction: column;
      }

      .footer-info {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .contact-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .topbar { display: none; }

      .topbar-inner,
      .nav,
      .section-inner,
      .hero-inner,
      .cta-inner,
      .footer-inner {
        width: min(100% - 28px, 1160px);
      }

      .nav { min-height: 48px; }

      .brand {
        min-width: 0;
        grid-template-columns: 30px 1fr;
        column-gap: 6px;
      }

      .brand-mark {
        width: 28px;
        height: 28px;
        font-size: 16px;
      }

      .brand .brand-mark {
        font-size: 16px;
      }
      .brand strong { font-size: 14px; }

      .actions .btn-outline { display: none; }

      .actions {
        width: auto;
        justify-content: flex-end;
      }

      .actions .btn-primary {
        width: auto;
      }

      .btn {
        min-height: 28px;
        padding: 0 8px;
        font-size: 11px;
      }

      .hero-copy p { font-size: 16px; }

      .hero-points,
      .menu-grid,
      .price-grid,
      .reason-grid,
      .choice-grid,
      .info-grid,
      .sns-grid,
      .area-layout,
      .flow,
      .photo-strip,
      .inline-photo {
        grid-template-columns: 1fr;
      }

      .news-row {
        grid-template-columns: 1fr;
        gap: 6px;
      }

      .photo-caption {
        position: static;
        max-width: none;
        border-radius: 0;
      }

      .footer-info {
        grid-template-columns: 1fr;
      }

      .section { padding: 52px 0; }

      .section-head h2,
      .cta h2 {
        font-size: 25px;
      }

      .hero-buttons {
        flex-direction: column;
      }

      .hero-buttons .btn {
        width: 100%;
      }
    }
