/* ============================================================
       ここまりか - style.css
       ハワイアン・トロピカル・オレンジ調
       SPファースト設計
       ============================================================ */

    /* --- CSS Variables (イエロー・オレンジ調のハワイアンデザインにアップデート) --- */
    :root {
      /* ベースカラー（背景など） */
      --color-beige: #FFF8E1; /* 非常に淡いイエローベージュ */
      --color-beige-dark: #FFE082; /* 少し濃いめのイエロー */
      --color-beige-mid: #FFECB3; /* 中間のイエローベージュ */
      
      /* アクセントカラー（オレンジ・グリーン系） */
      --color-green: #FFB300; /* 明るいサンイエロー */
      --color-green-light: #FFD54F; /* やわらかなイエロー */
      --color-green-dark: #E65100; /* 深みのある濃いオレンジ（テキストや見出しに） */
      
      /* メインのオレンジ */
      --color-orange: #FF8F00; /* 鮮やかなオレンジ */
      --color-orange-light: #FFA000; /* 少し明るいオレンジ */
      
      /* テキストカラー */
      --color-text: #4E342E; /* 濃いめのブラウン（黒より柔らかい印象） */
      --color-text-light: #795548; /* やわらかいブラウン */
      
      /* その他 */
      --color-white: #FFFFFF; /* 真っ白 */
      --color-line: #06c755; /* LINEグリーン（ブランド標準） */
      --color-hotpepper: #9d0c41; /* ホットペッパーカラー (変更) */
      --color-gold: #FF8F00; /* アクセントのオレンジをゴールド代わりに */

      /* フォントの変更 */
      --font-jp: 'Noto Serif JP', serif; /* Noto Sans JP から Noto Serif JP へ */
      --font-en: 'Dancing Script', cursive; /* Sacramento から Dancing Script へ */
      --font-en-sub: 'Playfair Display', serif; /* 小さな英語用のセリフ体 */
      --font-catch: 'Zen Old Mincho', serif;

      --max-width: 1100px;
      --section-px: 20px;
    }

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

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

    body {
      font-family: var(--font-jp);
      font-size: 16px;
      line-height: 1.9;
      letter-spacing: 0.05em;
      color: var(--color-text);
      background-color: var(--color-white);
      overflow-x: hidden;
      width: 100%;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
      vertical-align: bottom;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    /* --- Section Wrapper --- */
    .section-inner {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--section-px);
    }

    section {
      margin-bottom: 0;
    }

    /* --- Section Heading --- */
    .section-heading {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      margin-bottom: 60px;
      position: relative;
      padding: 40px 0;
    }

    /* Background Ghost Text */
    .section-heading::before {
      display: none;
      content: attr(data-en);
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--font-en);
      font-size: clamp(80px, 20vw, 150px);
      font-weight: 700;
      color: transparent;
      -webkit-text-stroke: 1px rgba(255, 143, 0, 0.15); /* オレンジの縁取り */
      letter-spacing: 0.02em;
      text-transform: none;
      z-index: 1;
      white-space: nowrap;
      pointer-events: none;
      opacity: 0.8;
    }

    .section-heading-en {
      font-family: var(--font-en);
      font-size: clamp(48px, 10vw, 68px);
      font-weight: 700;
      letter-spacing: 0.02em;
      color: var(--color-green-dark); /* 濃いオレンジ */
      text-transform: none;
      position: relative;
      z-index: 2;
      margin: 0;
      line-height: 1.1;
    }

    /* Accent Line */
    .section-heading-en::after {
      content: '';
      display: block;
      width: 40px;
      height: 2px;
      background: var(--color-gold); /* オレンジ */
      margin: 15px auto 5px;
    }

    .section-heading-ja {
      font-family: var(--font-jp);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.25em;
      color: var(--color-text-light); /* ブラウン */
      text-transform: uppercase;
      position: relative;
      z-index: 2;
      display: block;
    }

    .section-heading figure,
    .section-heading figcaption {
      display: contents;
    }
    .section-heading img {
      display: none !important;
    }

    /* ============================================================
       HEADER
       ============================================================ */
    #site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      border-bottom: 2px solid var(--color-beige-dark); /* 線をイエロー系に */
      transition: box-shadow 0.3s;
    }

    #site-header.scrolled {
      box-shadow: 0 2px 20px rgba(78, 52, 46, 0.1);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
      height: 64px;
    }

    .header-logo a {
      display: flex;
      align-items: center;
      transition: opacity 0.2s;
    }

    .header-logo a:hover {
      opacity: 0.72;
    }

    .header-logo-img {
      height: 60px;
      max-height: 100%;
      width: auto;
      display: block;
      object-fit: contain;
    }

    .header-nav {
      display: none;
    }

    .header-cta-group {
      display: none;
    }

    .header-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 18px;
      border-radius: 100px;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.08em;
      transition: all 0.25s ease;
      color: #fff;
    }

    .header-cta.line-btn { background: var(--color-line); }
    .header-cta.line-btn:hover {
      background: #05b14c;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(6, 199, 85, 0.3);
    }

    .header-cta.tol-btn { background: var(--color-orange); }
    .header-cta.tol-btn:hover {
      background: var(--color-orange-light);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(255, 143, 0, 0.3);
    }
    
    /* HOTPEPPERボタン用のクラス */
    .header-cta.hp-btn { background: var(--color-hotpepper); }
    .header-cta.hp-btn:hover {
      background: #b5154f; /* 少し明るい色 */
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(157, 12, 65, 0.3);
    }

    .hamburger {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
      z-index: 1100;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 1.5px;
      background: var(--color-text);
      transition: all 0.3s ease;
      transform-origin: center;
    }

    /* ============================================================
       FULLSCREEN MENU OVERLAY
       ============================================================ */
    #nav-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--color-beige); /* イエローベージュ */
      z-index: 2000;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding-top: 120px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    #nav-overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    .overlay-close {
      position: absolute;
      top: 24px;
      right: 24px;
      background: none;
      border: none;
      font-family: var(--font-jp);
      font-size: 13px;
      letter-spacing: 0.1em;
      color: var(--color-text);
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .overlay-close::before {
      content: '×';
      font-size: 20px;
      line-height: 1;
    }

    .overlay-nav { text-align: center; }
    .overlay-nav ul {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .overlay-nav a {
      font-family: var(--font-en);
      font-size: 40px;
      font-weight: 700;
      letter-spacing: 0.02em;
      color: var(--color-text);
      transition: color 0.2s;
      position: relative;
    }

    .overlay-nav a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 2px;
      background: var(--color-orange);
      transition: width 0.3s ease;
    }

    .overlay-nav a:hover { color: var(--color-orange); }
    .overlay-nav a:hover::after { width: 100%; }

    .overlay-nav .nav-sub {
      display: block;
      font-family: var(--font-jp);
      font-size: 11px;
      font-weight: 300;
      letter-spacing: 0.12em;
      color: var(--color-text-light);
      margin-top: 2px;
    }

    /* ============================================================
       FV - FIRST VIEW
       ============================================================ */
    #fv {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      margin-bottom: 0;
      line-height: 0;
      background:
        radial-gradient(circle at 5% 8%, rgba(158, 204, 134, 0.18), transparent 24%),
        radial-gradient(circle at 15% 95%, rgba(255, 179, 0, 0.18), transparent 24%),
        linear-gradient(135deg, #fffdf5 0%, var(--color-beige) 100%);
      display: flex;
    }

    .swiper-fv {
      position: absolute;
      top: 0;
      right: 0;
      width: 50%;
      height: 100%;
      -webkit-mask-image: none;
      mask-image: none;
      z-index: 1;
    }

    .swiper-fv .swiper-slide {
      height: 100%;
      line-height: 0;
      overflow: hidden;
    }

    .swiper-fv .swiper-slide picture,
    .swiper-fv .swiper-slide img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center center;
    }

    .fv-left-overlay {
      position: relative;
      width: 50%;
      height: 100%;
      z-index: 10;
      overflow: hidden;
      display: flex;
      align-items: center;
      background: url('img/fvleft.png') no-repeat left center / cover;
    }

    .fv-left-overlay::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
        rgba(255, 253, 245, 0.62) 0%,
        rgba(255, 248, 225, 0.48) 50%,
        rgba(255, 248, 225, 0.28) 100%
      );
      z-index: 0;
    }

    .fv-ghost-text {
      position: absolute;
      bottom: 5%;
      left: -0.05em;
      font-family: var(--font-en);
      font-size: clamp(140px, 20vw, 250px);
      font-weight: 700;
      letter-spacing: 0.01em;
      line-height: 1;
      color: transparent;
      -webkit-text-stroke: 1px rgba(255, 143, 0, 0.1);
      pointer-events: none;
      user-select: none;
      white-space: nowrap;
    }

    .fv-vertical-accent {
      position: absolute;
      top: 50%;
      left: 24px;
      transform: translateY(-50%) rotate(-90deg);
      transform-origin: center center;
      font-family: var(--font-en-sub);
      font-size: 16px;
      font-weight: 400;
      letter-spacing: 0.05em;
      color: var(--color-text-light);
      white-space: nowrap;
      pointer-events: none;
    }

    .fv-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      height: auto;
      padding: 0 clamp(28px, 4vw, 64px) 0 clamp(48px, 6vw, 92px);
      width: min(100%, 640px);
    }

    .fv-deco-top {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 28px;
    }

    .fv-deco-line {
      display: block;
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, var(--color-beige-dark), transparent);
    }

    .fv-deco-dot {
      display: block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      border: 2px solid var(--color-orange);
      background: var(--color-white);
      flex-shrink: 0;
    }

    .fv-catch-en {
      font-family: var(--font-en);
      font-size: clamp(44px, 5vw, 74px);
      font-weight: 400;
      letter-spacing: 0.02em;
      line-height: 1.05;
      color: var(--color-text);
      margin-bottom: 8px;
      white-space: nowrap;
    }

    .fv-catch-en em {
      display: block;
      font-family: var(--font-en-sub);
      font-style: italic;
      font-size: 0.95em;
      color: var(--color-text-light);
      white-space: nowrap;
    }

    .fv-catch-sub-ja {
      font-family: var(--font-catch);
      font-size: clamp(16px, 1.6vw, 22px);
      font-weight: 500;
      letter-spacing: 0.22em;
      color: var(--color-text);
      margin-bottom: 20px;
      line-height: 1.4;
      white-space: nowrap;
      text-align: center;
    }

    .fv-main-catch {
      font-family: var(--font-catch);
      font-size: clamp(30px, 3.4vw, 46px);
      font-weight: 700;
      letter-spacing: 0.05em;
      line-height: 1.45;
      color: var(--color-text);
      margin-bottom: 18px;
      white-space: nowrap;
    }

    .fv-main-catch .catch-sub {
      font-size: clamp(22px, 2.5vw, 34px);
      display: block;
      white-space: nowrap;
    }

    .fv-lead {
      font-size: clamp(14px, 1.25vw, 18px);
      line-height: 1.75;
      color: var(--color-text);
      letter-spacing: 0.08em;
      margin-bottom: 22px;
    }

    .fv-bottom-area {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 28px;
    }

    .fv-pr-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 18px;
    }

    .fv-pr-badge {
      display: inline-block;
      background: linear-gradient(135deg, var(--color-orange-light) 0%, var(--color-orange) 100%);
      color: #fff;
      font-family: var(--font-jp);
      font-size: clamp(12px, 1.1vw, 15px);
      font-weight: 700;
      letter-spacing: 0.18em;
      padding: 8px 20px;
      border-radius: 100px;
      border: none;
      box-shadow: 0 4px 12px rgba(255, 143, 0, 0.3);
      white-space: nowrap;
      transition: all 0.3s ease;
    }

    .fv-pr-badge:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 24px rgba(255, 143, 0, 0.4);
    }

    .fv-cta-circles {
      display: flex;
      gap: 18px;
      flex-shrink: 0;
      width: 100%;
    }

    .fv-cta-circle {
      position: relative;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 12px;
      width: auto;
      min-width: 200px;
      height: 58px;
      border-radius: 8px;
      color: #fff;
      text-decoration: none;
      flex-shrink: 0;
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
    }

    .fv-cta-circle.tol-circle {
      background: var(--color-orange);
      box-shadow: 0 4px 15px rgba(255, 143, 0, 0.4);
    }
    .fv-cta-circle.tol-circle:hover {
      background: var(--color-orange-light);
      transform: scale(1.1);
    }

    .fv-cta-circle.line-circle {
      background: var(--color-line);
      box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
    }
    .fv-cta-circle.line-circle:hover {
      background: #05b14c;
      transform: scale(1.1);
    }
    
    .fv-cta-circle.hp-circle {
      background: rgba(255, 255, 255, 0.72);
      color: var(--color-orange);
      border: 2px solid var(--color-orange);
      box-shadow: none;
    }
    .fv-cta-circle.hp-circle:hover {
      background: var(--color-orange);
      color: #fff;
      transform: translateY(-2px);
    }

    .fv-cta-label {
      font-family: var(--font-jp);
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.05em;
      line-height: 1.4;
      text-align: center;
      position: relative;
      z-index: 1;
      margin-top: 0;
    }

    .fv-cta-ring {
      display: none;
    }

    @keyframes fv-ring-spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    .fv-deco-bottom {
      margin-top: 40px;
      width: 100%;
    }

    .fv-deco-bottom .fv-deco-line {
      display: block;
      width: 100%;
      height: 1px;
      background: linear-gradient(to right, var(--color-beige-dark), transparent);
    }

    /* SP（767px以下） */
    @media (max-width: 767px) {
      #fv {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
      }
      .swiper-fv {
        position: relative;
        width: 100%;
        height: 46vh;
        order: 2;
        -webkit-mask-image: none;
        mask-image: none;
      }
      .fv-left-overlay {
        width: 100%;
        height: auto;
        top: auto;
        bottom: auto;
        left: 0;
        order: 1;
        padding-top: 92px;
        padding-bottom: 28px;
      }
      .fv-ghost-text {
        display: none;
      }
      .fv-vertical-accent { display: none; }
      .fv-content { padding: 0 24px; }
      .fv-deco-top { margin-bottom: 14px; }
      .fv-pr-badges {
        margin-bottom: 18px;
        gap: 8px;
      }
      .fv-pr-badge {
        font-size: 12px;
        padding: 8px 18px;
      }
      .fv-catch-en {
        font-size: clamp(38px, 11vw, 52px);
        margin-bottom: 8px;
        letter-spacing: 0.02em;
      }
      .fv-catch-sub-ja {
        font-size: 15px;
        margin-bottom: 22px;
      }
      .fv-main-catch {
        font-size: clamp(20px, 5.8vw, 26px);
        margin-bottom: 18px;
        white-space: nowrap;
      }
      .fv-main-catch .catch-sub {
        font-size: clamp(16px, 4.8vw, 22px);
        white-space: nowrap;
      }
      .fv-lead {
        font-size: 13px;
        line-height: 1.75;
        margin-bottom: 22px;
      }
      .fv-bottom-area {
        gap: 20px;
        flex-direction: column;
        width: 100%;
      }
      .fv-cta-circles {
        gap: 12px;
        flex-direction: column;
      }
      .fv-cta-circle {
        width: 100% !important;
        min-width: 0;
        height: 58px !important;
      }
      .fv-cta-label { font-size: 15px !important; }
      .fv-cta-circle i { font-size: 18px !important; }
      .fv-deco-bottom { display: none; }


      .menu-item-header {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
      }
      .menu-item-name {
        width: 100%;
      }
      .menu-item-meta {
        width: 100%;
        justify-content: flex-end;
        text-align: right;
      }
    }

    /* ============================================================
       CTA BAND
       ============================================================ */
    .cta-band {
      width: 100%;
      background: var(--color-beige); /* イエローベージュ */
      position: relative;
      padding: 40px 20px;
      margin-bottom: 0;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      border-top: 2px dashed var(--color-beige-dark);
      border-bottom: 2px dashed var(--color-beige-dark);
    }

    .cta-band::before {
      content: 'keaomelemele';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--font-en);
      font-size: clamp(80px, 15vw, 180px);
      font-weight: 700;
      color: rgba(255, 143, 0, 0.05); /* 薄いオレンジ */
      letter-spacing: 0.02em;
      pointer-events: none;
      z-index: 1;
    }

    .cta-band-inner {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      max-width: 800px;
      width: 100%;
      text-align: center;
    }

    .cta-tagline {
      font-family: var(--font-jp);
      font-size: clamp(12px, 1.5vw, 14px);
      font-weight: 400;
      letter-spacing: 0.1em;
      color: var(--color-orange);
      margin-bottom: -10px;
    }

    .cta-phone-large {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-family: var(--font-en-sub);
      font-size: clamp(24px, 6vw, 48px);
      font-weight: 400;
      color: var(--color-text);
      text-decoration: none;
      transition: opacity 0.2s;
    }

    .cta-phone-large:hover { opacity: 0.8; }
    .cta-phone-large i {
      color: var(--color-orange);
      font-size: 0.7em;
    }

    .cta-info-sub {
      font-family: var(--font-jp);
      font-size: 13px;
      color: var(--color-text-light);
      letter-spacing: 0.05em;
    }

    .cta-btns-wrap {
      width: 100%;
      max-width: 540px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: 16px;
    }

    .cta-btn-main {
      width: 100%;
      color: #fff;
      padding: 18px 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-decoration: none;
      transition: all 0.3s ease;
      border-radius: 100px;
    }

    .cta-btn-main.line-btn {
      background: var(--color-line);
      box-shadow: 0 4px 15px rgba(6, 199, 85, 0.2);
    }
    .cta-btn-main.line-btn:hover {
      background: #05b14c;
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(6, 199, 85, 0.4);
    }
    
    .cta-btn-main.hp-btn {
      background: var(--color-hotpepper);
      box-shadow: 0 4px 15px rgba(157, 12, 65, 0.2);
    }
    .cta-btn-main.hp-btn:hover {
      background: #b5154f;
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(157, 12, 65, 0.4);
    }

    .cta-btn-main.tol-btn {
      background: var(--color-orange);
      box-shadow: 0 4px 15px rgba(255, 143, 0, 0.3);
    }
    .cta-btn-main.tol-btn:hover {
      background: var(--color-orange-light);
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(255, 143, 0, 0.5);
    }

    .cta-btn-main .arrow {
      font-family: var(--font-en-sub);
      margin-left: 8px;
      font-size: 1.2em;
    }

    /* ============================================================
       TV - TROUBLE
       ============================================================ */
    #trouble {
      padding: 80px 0;
      background: linear-gradient(rgba(255, 248, 225, 0.85), rgba(255, 248, 225, 0.85)), url('img/worriebg.jpeg') no-repeat center / cover;
      position: relative;
    }
    
    .trouble-card-wrapper {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
      padding-top: 40px; /* タイトルがはみ出すスペース */
    }

    .trouble-card {
      background: var(--color-white);
      border-radius: 20px;
      padding: 56px 30px 30px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      position: relative;
    }

    .trouble-closing-full {
      font-size: 20px;
      font-weight: 700;
      line-height: 1.8;
      text-align: center;
      margin-top: 40px;
      color: var(--color-text);
      letter-spacing: 0.05em;
    }

    .trouble-closing-full strong {
      color: var(--color-orange);
    }

    @media (min-width: 768px) {
      .trouble-closing-full {
        font-size: 24px;
        margin-top: 60px;
      }
    }

    .trouble-content-flex {
      display: flex;
      flex-direction: column;
      gap: 18px;
      align-items: center;
    }
    
    @media (min-width: 768px) {
      .trouble-content-flex {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
      }
    }

    .trouble-image {
      width: 100%;
      max-width: 300px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .trouble-image img {
      width: 59%;
      height: auto;
      object-fit: contain;
    }

    .trouble-list-wrap {
      flex: 0 0 auto;
      width: 100%;
      max-width: 430px;
    }
    
    /* こんなお悩みはございませんか？ のタイトルテキストスタイル */
    .trouble-inline-title {
      font-size: clamp(20px, 5vw, 26px);
      font-weight: 700;
      color: var(--color-text);
      letter-spacing: 0.1em;
      margin-bottom: 8px;
      text-align: center;
    }
    
    .trouble-inline-subtitle {
      font-family: var(--font-en);
      font-size: 32px;
      color: #9ecc86;
      text-align: center;
      margin-bottom: 18px;
    }

    .trouble-header {
      width: 100%;
      text-align: center;
    }

    @media (min-width: 768px) {
      .trouble-inline-title {
        text-align: center;
      }
      .trouble-inline-subtitle {
        text-align: center;
      }
    }

    .trouble-list {
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .trouble-list li {
      font-size: 15px;
      line-height: 1.55;
      padding-left: 30px;
      position: relative;
      font-weight: 500;
    }

    .trouble-list li::before {
      content: '\f058'; /* FontAwesome check-circle */
      font-family: "Font Awesome 6 Free";
      position: absolute;
      left: 0;
      top: 2px;
      color: #9ecc86; /* 参考画像の黄緑色に寄せる */
      font-size: 20px;
      font-weight: 900;
    }
    
    .trouble-arrow-down {
      text-align: center;
      margin-top: 18px;
    }
    
    .trouble-arrow-down i {
      color: #9ecc86;
      font-size: 40px;
    }

    /* ============================================================
       ABOUT
       ============================================================ */
    #about {
      position: relative;
      background: var(--color-beige);
      padding: 80px 0;
      overflow: hidden;
    }

    #about::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(255, 248, 225, 0.72) 0%, rgba(255, 248, 225, 0.72) 100%);
      z-index: 1;
      pointer-events: none;
    }

    .about-bg-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 80% center;
      z-index: 0;
    }

    #about .section-inner {
      position: relative;
      z-index: 2;
    }

    .about-grid {
      display: flex;
      flex-direction: column;
      gap: 36px;
    }

    .about-section-heading {
      margin-bottom: 24px;
      display: flex;
      flex-direction: column;
    }

    .about-heading-en {
      font-family: var(--font-en);
      font-size: 48px;
      font-weight: 700;
      color: var(--color-green-dark);
      line-height: 1.1;
    }

    .about-heading-ja {
      font-size: 11px;
      color: var(--color-text-light);
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }

    .about-en {
      font-family: var(--font-jp);
      font-size: 24px;
      font-weight: 700;
      letter-spacing: 0.05em;
      color: var(--color-green-dark);
      line-height: 1.3;
      margin-bottom: 12px;
    }

    .about-ja-title {
      font-size: clamp(20px, 4vw, 26px);
      font-weight: 700;
      letter-spacing: 0.1em;
      color: var(--color-text);
      margin-bottom: 8px;
      line-height: 1.5;
    }

    .about-body {
      font-size: 16px;
      line-height: 2;
    }

    .about-body p+p {
      margin-top: 16px;
    }

    /* ============================================================
       SERVICE
       ============================================================ */
    .service-grid {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .service-card-image {
      width: 100%;
      margin-bottom: 20px;
      overflow: hidden;
      border-radius: 8px;
    }

    .service-card-image img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .service-card:hover .service-card-image img {
      transform: scale(1.03);
    }

    .service-card-num {
      font-family: var(--font-en-sub);
      font-size: 18px;
      color: var(--color-orange);
      margin-bottom: 8px;
    }

    .service-card-title {
      font-size: 18px;
      font-weight: 500;
      line-height: 1.5;
      margin-bottom: 12px;
      color: var(--color-green-dark);
    }

    .service-card-body {
      font-size: 16px;
      line-height: 1.9;
      color: var(--color-text-light);
    }

    /* SERVICE SECTION BACKGROUND */
    #service {
      position: relative;
      background: linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)), url('img/servicebg.png') no-repeat center / cover;
      background-attachment: fixed;
      padding: 80px 0;
      overflow: hidden;
    }

    @media (max-width: 767px) {
      #service {
        background: none;
        background-color: #fff;
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
        isolation: isolate;
      }
    }

    #service::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: transparent;
      opacity: 0.3; /* 全体的に明るく */
      z-index: 1;
      pointer-events: none;
    }

    #service .section-inner {
      position: relative;
      z-index: 2;
    }

    @media (max-width: 767px) {
      #service::before {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)), url('img/servicespbg.png') no-repeat left bottom / cover;
        opacity: 1;
        z-index: -1;
      }
    }

    .service-card {
      background: rgba(255, 255, 255, 0.96);
      padding: 24px;
      border-radius: 16px;
      box-shadow: 0 8px 24px rgba(255, 143, 0, 0.08); /* オレンジ系の影 */
      border: 2px solid var(--color-beige-mid); /* 枠線を少し太く */
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card-num,
    .service-card-title,
    .service-card-body {
      min-width: 0;
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 30px rgba(255, 143, 0, 0.15);
    }

    /* ============================================================
       PRICE MENU
       ============================================================ */
    #price {
      background: linear-gradient(rgba(255, 252, 230, 0.9), rgba(255, 252, 230, 0.9)), url('img/menu.jpeg') no-repeat center / cover; /* 温かみのある色に */
      background-attachment: fixed;
      padding: 80px 0;
    }

    @media (max-width: 767px) {
      #price {
        position: relative;
        background: none;
        background-color: #fffce6;
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
        isolation: isolate;
      }

      #price::before {
        content: '';
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(rgba(255, 252, 230, 0.9), rgba(255, 252, 230, 0.9)), url('img/menu.jpeg') no-repeat center / cover;
        z-index: -1;
        pointer-events: none;
      }
    }

    .price-list-container {
      max-width: 1000px;
      margin: 0 auto;
      background: var(--color-white);
      padding: 40px var(--section-px);
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .menu-group {
      margin-bottom: 48px;
    }

    .menu-group:last-child { margin-bottom: 0; }

    .menu-group-title {
      font-family: var(--font-jp);
      font-size: 15px;
      font-weight: 500;
      color: var(--color-green-dark);
      border-bottom: 2px dashed var(--color-orange); /* 点線にしてカジュアルに */
      padding-bottom: 8px;
      margin-bottom: 24px;
      letter-spacing: 0.12em;
      display: flex;
      flex-direction: column;
      gap: 0;
      align-items: flex-start;
    }

    .menu-group-title span:not(.menu-group-title-en) {
      order: 2;
    }

    .menu-group-title-en {
      order: 1;
      font-family: var(--font-en);
      font-size: 34px;
      font-weight: 700;
      color: var(--color-gold);
      line-height: 1.05;
    }

    .menu-item {
      display: flex;
      flex-direction: column;
      padding: 24px 0;
    }
    .menu-item:first-of-type { padding-top: 0; }

    .menu-item-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      flex-wrap: wrap;
      gap: 8px 16px;
    }

    .menu-item-name {
      font-size: 16px;
      font-weight: 700;
      color: var(--color-text);
    }

    .menu-item-meta {
      display: flex;
      align-items: baseline;
      gap: 12px;
    }

    .menu-item-time {
      font-size: 12px;
      color: var(--color-text-light);
      background-color: var(--color-beige);
      padding: 2px 10px;
      border-radius: 4px;
    }

    .menu-item-price {
      font-family: var(--font-en-sub);
      font-size: 24px;
      color: var(--color-orange);
    }
    .menu-item-price small {
      font-size: 12px;
      font-family: var(--font-jp);
      color: var(--color-text-light);
    }

    .menu-item-desc {
      font-size: 16px;
      line-height: 1.7;
      color: var(--color-text-light);
      margin-top: 10px;
    }

    .menu-more-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      max-width: 440px;
      background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-light) 100%);
      color: #fff;
      padding: 16px 30px;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.1em;
      border-radius: 100px;
      transition: all 0.3s ease;
      box-shadow: 0 6px 20px rgba(255, 143, 0, 0.4);
    }
    .menu-more-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(255, 143, 0, 0.5);
    }

    /* おすすめメニューカード */
    .menu-recommend-section { margin-bottom: 48px; }
    
    .menu-recommend-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }
    
    .menu-recommend-card {
      display: flex;
      flex-direction: column;
      gap: 24px;
      background: var(--color-beige); /* カード背景を薄いイエローに */
      border: 2px solid var(--color-beige-dark);
      border-radius: 12px;
      padding: 24px;
      box-shadow: 0 8px 24px rgba(255, 143, 0, 0.1);
      position: relative;
      overflow: hidden;
    }
    .menu-recommend-image {
      width: 100%;
      height: 200px;
      border-radius: 8px;
      overflow: hidden;
    }
    .menu-recommend-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .menu-recommend-content {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .menu-recommend-badge {
      align-self: flex-start;
      background: var(--color-orange);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 100px;
    }
    .menu-recommend-name {
      font-size: 18px;
      font-weight: 700;
      color: var(--color-green-dark);
      line-height: 1.4;
    }
    .menu-recommend-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid var(--color-beige-dark);
      padding-bottom: 12px;
    }
    .menu-recommend-time {
      font-size: 12px;
      color: var(--color-text-light);
      background-color: var(--color-white);
      padding: 4px 12px;
      border-radius: 4px;
    }
    .menu-recommend-price {
      font-family: var(--font-en-sub);
      font-size: 28px;
      color: var(--color-orange);
    }
    .menu-recommend-price small {
      font-size: 14px;
      color: var(--color-text-light);
    }
    .menu-recommend-desc {
      font-size: 16px;
      line-height: 1.8;
      color: var(--color-text);
      font-weight: 500;
    }
    .details-title {
      font-size: 13px;
      font-weight: 700;
      color: var(--color-text);
      margin-bottom: 8px;
    }
    .details-list {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 12px;
      padding-left: 0;
    }
    .details-list li {
      font-size: 13px;
      color: var(--color-text-light);
      display: flex;
      justify-content: space-between;
    }
    .details-total {
      font-size: 13px;
      font-weight: 700;
      color: var(--color-green-dark);
      text-align: right;
      border-top: 1px dashed var(--color-beige-dark);
      padding-top: 8px;
    }

    /* ============================================================
       MESSAGE
       ============================================================ */
    #message {
      background: linear-gradient(rgba(255, 248, 225, 0.9), rgba(255, 248, 225, 0.9));
      padding: 80px 0;
      position: relative;
    }

    .message-content-wrapper {
      display: flex;
      flex-direction: column;
      gap: 40px;
      align-items: center;
      max-width: 900px;
      margin: 0 auto;
    }

    .message-image {
      width: 100%;
      max-width: 400px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }

    .message-image img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .message-body {
      font-size: 16px;
      line-height: 2.2;
      color: var(--color-text);
      text-align: left;
      width: 100%;
    }

    .message-body p {
      margin-bottom: 20px;
    }

    .message-signature {
      margin-top: 32px;
      padding-top: 24px;
      border-top: 1px dashed var(--color-beige-dark);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
    }

    .sig-title {
      font-size: 12px;
      color: var(--color-text-light);
      letter-spacing: 0.1em;
    }

    .sig-name {
      font-size: 20px;
      font-weight: 700;
      color: var(--color-text);
      letter-spacing: 0.1em;
    }

    .sig-kana {
      font-size: 10px;
      color: var(--color-text-light);
      letter-spacing: 0.15em;
    }

    /* ============================================================
       CONTACT / ACCESS
       ============================================================ */
    .contact-grid {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .contact-store-name {
      font-family: var(--font-en);
      font-size: 32px;
      font-weight: 700;
      color: var(--color-green-dark);
      margin-bottom: 28px;
      display: flex;
      align-items: baseline;
      gap: 12px;
    }

    .contact-store-name-ja {
      font-family: var(--font-jp);
      font-size: 11px;
      letter-spacing: 0.12em;
      color: var(--color-text-light);
    }

    .contact-table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 28px;
    }

    .contact-table tr {
      border-bottom: 1px solid var(--color-beige-dark);
    }

    .contact-table th {
      font-size: 12px;
      font-weight: 500;
      color: var(--color-text-light);
      text-align: left;
      padding: 12px 16px 12px 0;
      width: 80px;
    }

    .contact-table td {
      font-size: 14px;
      line-height: 1.8;
      padding: 12px 0;
    }

    .sns-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 20px;
    }

    .sns-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 22px;
      font-size: 12px;
      border: 1.5px solid var(--color-beige-dark);
      color: var(--color-text);
      transition: all 0.2s;
      border-radius: 100px;
    }

    .sns-btn.line-btn {
      background: var(--color-line);
      border-color: var(--color-line);
      color: #fff;
    }
    .sns-btn.line-btn:hover { background: #05b84d; }

    .sns-btn.tol-sns-btn {
      background: var(--color-orange);
      border-color: var(--color-orange);
      color: #fff;
    }
    .sns-btn.tol-sns-btn:hover { background: var(--color-orange-light); }
    
    .sns-btn.hp-sns-btn {
      background: var(--color-hotpepper);
      border-color: var(--color-hotpepper);
      color: #fff;
    }
    .sns-btn.hp-sns-btn:hover { background: #b5154f; }

    .contact-map iframe {
      width: 100%;
      height: 280px;
      display: block;
      border: none;
    }

    /* ============================================================
       FOOTER
       ============================================================ */
    #site-footer {
      background: var(--color-text); /* 濃いブラウン */
      padding: 36px 20px;
      text-align: center;
    }
    @media (max-width: 767px) {
      #site-footer {
        padding-bottom: 86px; /* SP追従CTAの高さ分を確保 */
      }
    }

    .footer-logo {
      font-family: var(--font-en);
      font-size: 32px;
      font-weight: 700;
      color: var(--color-orange); /* オレンジに変更 */
      margin-bottom: 6px;
    }

    .footer-nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px 24px;
      margin-bottom: 20px;
    }

    .footer-nav a {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.5);
      transition: color 0.2s;
    }
    .footer-nav a:hover { color: rgba(255, 255, 255, 0.9); }

    .footer-copy {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.35);
    }

    /* ============================================================
       SCROLL TO TOP
       ============================================================ */
    #scroll-top {
      position: fixed;
      bottom: 80px;
      right: 20px;
      width: 44px;
      height: 44px;
      background: var(--color-orange); /* オレンジ */
      color: #fff;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s, background 0.2s;
      z-index: 500;
      border-radius: 50%;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    #scroll-top.visible {
      opacity: 1;
      pointer-events: all;
    }

    #scroll-top:hover {
      background: var(--color-green-dark); /* 濃いオレンジ */
    }

    /* ============================================================
       SP STICKY CTA
       ============================================================ */
    #sp-sticky-cta {
      display: flex;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      z-index: 2200;
      height: 56px;
    }

    #sp-sticky-cta a {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      font-size: 12px;
      font-weight: 500;
      color: #fff;
    }
    #sp-sticky-cta a:hover { opacity: 0.85; }

    .sticky-line-btn { flex: 1; background: var(--color-line); }
    .sticky-tol-btn { flex: 1; background: var(--color-orange); }

    /* ============================================================
       PC BREAKPOINT  768px+
       ============================================================ */
    @media (min-width: 768px) {
      :root { --section-px: 40px; }
      body { font-size: 18px; }

      .header-nav {
        display: flex;
        gap: 32px;
        align-items: center;
      }
      .header-nav a {
        font-family: var(--font-en-sub);
        font-size: 20px;
        color: var(--color-text);
        position: relative;
      }
      .header-nav a::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--color-orange);
        transition: width 0.25s;
      }
      .header-nav a:hover { color: var(--color-orange); }
      .header-nav a:hover::after { width: 100%; }

      .header-cta-group {
        display: flex;
        gap: 12px;
        align-items: center;
      }
      .hamburger { display: none !important; }

      .cta-band { padding: 60px 40px; }
      .cta-band-inner { gap: 12px; }
      .cta-btns-wrap {
        flex-direction: row;
        justify-content: center;
        max-width: 760px;
        gap: 20px;
      }

      .trouble-grid {
        flex-direction: row;
        gap: 60px;
        align-items: stretch;
      }
      .trouble-image { width: 50%; }
      .trouble-text { width: 50%; }

      .about-grid {
        flex-direction: row;
        gap: 60px;
        align-items: center;
      }
      .about-text { width: 55%; }
      .about-right-space { width: 45%; }
      #about::before {
        background: linear-gradient(to right, rgba(255, 248, 225, 1) 0%, rgba(255, 248, 225, 0.96) 42%, rgba(255, 248, 225, 0.22) 58%, rgba(255, 248, 225, 0) 72%);
      }
      .about-bg-video {
        object-position: right center;
      }

      .service-grid {
        display: flex;
        flex-direction: column;
        gap: 32px;
      }
      .service-card {
        display: grid;
        grid-template-columns: minmax(280px, 42%) 1fr;
        grid-template-rows: auto auto 1fr;
        gap: 8px 30px;
        align-items: center;
      }
      .service-card-image {
        grid-column: 1;
        grid-row: 1 / 4;
        margin-bottom: 0;
      }
      .service-card-image img { height: 260px; }
      .service-card-num,
      .service-card-title,
      .service-card-body {
        grid-column: 2;
      }

      #service { padding: 100px 0; }
      #price {
        background-attachment: fixed;
        padding: 100px 0;
      }
      .price-list-container { padding: 60px; }
      .menu-group-title {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
      }
      
      .menu-recommend-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .menu-recommend-card {
        flex-direction: column;
        padding: 24px;
        gap: 20px;
      }
      .menu-recommend-image {
        width: 100%;
        height: 200px;
        min-height: auto;
      }
      .menu-recommend-content { width: 100%; }

      .message-content-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 60px;
      }
      .message-image {
        width: 45%;
        max-width: none;
      }
      .message-body {
        width: 55%;
      }

      .contact-grid {
        flex-direction: row;
        gap: 60px;
        align-items: flex-start;
      }
      .contact-info { width: 45%; }
      .contact-map { flex: 1; }
      .contact-map iframe { height: 450px; }

      #sp-sticky-cta { display: none !important; }
      #scroll-top { bottom: 30px; }
    }

    /* ============================================================
       UTILITY & ANIMATIONS
       ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
      pointer-events: none;
    }
    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .delay-100 { transition-delay: 100ms; }
    .delay-200 { transition-delay: 200ms; }
    .delay-300 { transition-delay: 300ms; }
    .delay-400 { transition-delay: 400ms; }

    #mid-slider {
      width: 100%;
      overflow: hidden;
      background: var(--color-white);
    }
    .swiper-mid .swiper-wrapper { transition-timing-function: linear; }
    .swiper-mid .swiper-slide {
      width: auto;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .swiper-mid .swiper-slide img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }
    @media (min-width: 768px) {
      .swiper-mid .swiper-slide img { height: 380px; }
    }

    #contact { padding: 80px 0 120px 0; }
    @media (min-width: 768px) { #contact { padding: 100px 0 160px 0; } }

    @media (min-width: 768px) { .sp-br { display: none; } }
