    /* ==== Base / Reset ==== */
    *, *::before, *::after {
      box-sizing: border-box
    }
    html, body {
      margin: 0;
      padding: 0;
      overflow-x: clip;
    }
    html {
      scroll-behavior: smooth
    }
    body {
      font-family: "Noto Serif JP", serif, "Hiragino Kaku Gothic ProN", "游ゴシック体", YuGothic, Meiryo, Arial, sans-serif;
      color: #111;
      background: #fff;
      font-optical-sizing: auto;
      font-weight: 100;
      font-style: normal;
    }
    a {
      color: inherit;
      text-decoration: none
    }
    img {
      max-width: 100%;
      height: auto;
      display: block
    }
    :root {
      --header-pad: clamp(12px, 2vw, 24px);
      --nav-gap: clamp(10px, 2vw, 20px);
      --hero-overlay: rgba(0, 0, 0, .35);
      --accent: #111;
      --white: #fff;
      --drawer-w: 400px; /* drawer width target */
      --container-w: 1000px; /* main content max width */
    }
    /* ==== Hero / TOP section (100VW x 100VH) ==== */
    .hero {
      position: relative;
      width: 100vw;
      height: 100vh;
      min-height: 560px;
      background: #000 url('images/main.jpg') center/cover no-repeat;
      overflow: hidden
    }
    /*.hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: var(--hero-overlay)
    }
    /* Fixed hamburger (always visible, top-right) */
    .hamburger {
      position: fixed;
      top: var(--header-pad);
      right: var(--header-pad);
      z-index: 1002;
      width: 60px;
      height: 60px;
      border: none;
      background: rgba(0, 0, 0, .55);
      backdrop-filter: saturate(120%) blur(2px);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer
    }
    .hamburger span {
      position: relative;
      display: block;
      width: 22px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: transform .25s ease, opacity .2s ease
    }
    .hamburger span::before, .hamburger span::after {
      content: "";
      position: absolute;
      left: 0;
      width: 22px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: transform .25s ease, top .25s ease, opacity .2s ease
    }
    .hamburger span::before {
      top: -7px
    }
    .hamburger span::after {
      top: 7px
    }
    .hamburger.is-open span {
      background: transparent
    }
    .hamburger.is-open span::before {
      top: 0;
      transform: rotate(45deg)
    }
    .hamburger.is-open span::after {
      top: 0;
      transform: rotate(-45deg)
    }
    /* Logo (top-left, scrolls with page, links to #top) */
    .logo {
      position: absolute;
      top: var(--header-pad);
      left: var(--header-pad);
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 8px;
      color: #fff
    }
    .logo svg {
      width: 60px;
      height: 60px;
      display: block
    }
    .logo .brand {
      font-size: clamp(14px, 1.6vw, 18px);
      letter-spacing: .12em
    }
    .bn {
      border: 0 !important;
    }
    /* Top inline menu (NOT sticky) aligned right under hamburger area */
    .top-inline-menu {
      position: absolute;
      top: 50%;
      right: 40px;
      transform: translateY(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 14px;
    }
    .top-inline-menu ul {
      display: flex;
      flex-direction: column; /* ←縦並び */
      align-items: flex-end; /* ←右揃え */
      gap: var(--nav-gap);
      list-style: none;
      margin: 0;
      padding: 0;
      text-align: right;
    }
    .top-inline-menu a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: .55em .9em;
      border-radius: 999px;
      border: 1.5px solid transparent;
      color: #000;
      opacity: .95;
      transition: all .2s ease;
      text-align: right;
    }
    .top-inline-menu a:hover {
      border-color: rgba(51, 51, 51, .85)
    } /* hover: white rounded outline */
    .top-inline-menu a.active {
      background: #fff;
      color: #000
    } /* active: white bg / black text */
    /* slide-in animation when TOP is shown */
    .top-inline-menu li {
      opacity: 0;
      transform: translateX(32px)
    }
    .top-inline-menu.is-animate li {
      animation: slideIn 1.0s cubic-bezier(.2, .7, .2, 1) forwards
    }
    .top-inline-menu.is-animate li:nth-child(1) {
      animation-delay: .15s
    }
    .top-inline-menu.is-animate li:nth-child(2) {
      animation-delay: .30s
    }
    .top-inline-menu.is-animate li:nth-child(3) {
      animation-delay: .45s
    }
    .top-inline-menu.is-animate li:nth-child(4) {
      animation-delay: .60s
    }
    .top-inline-menu.is-animate li:nth-child(5) {
      animation-delay: .75s
    }
    @keyframes slideIn {
      to {
        opacity: 1;
        transform: none
      }
    }
    /* External link icon */
    .ext {
      display: inline-flex
    }
    .ext svg {
      width: 14px;
      height: 14px
    }
    .hero-info {
      position: absolute;
      left: 0;
      bottom: 0;
      z-index: 2;
      width: min(560px, calc(100% - 2*var(--header-pad)));
      color: #fff;
      background: rgba(0, 0, 0, .55);
      backdrop-filter: blur(4px) saturate(120%);
      overflow: hidden;
    }
    /* 左カラム：親の中で最大化＋正方形維持 */
    .hero-info__wrap {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 14px;
      align-items: center;
      padding: 8px;
    }
    .hero-info__media {
      aspect-ratio: 1 / 1;
      overflow: hidden;
      margin: 0 !important;
      max-width: 120px;
    }
    .hero-info__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .hero-info__body h3 {
      margin: 0 0 6px;
      font-size: 14px;
      letter-spacing: .12em;
      opacity: .9;
    }
    /* 読みやすさのための軽い整形 */
    .hero-info__body {
      font-size: 14px;
      line-height: 1.85;
    }
    .hero-info__body .lead {
      margin: .25em 0 .6em;
      opacity: .95;
    }
    .hero-info__body a {
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    /* ▼ フェード切替（display制御は使わない） */
    .ticker {
      position: relative;
      margin: 0;
      padding: 0;
      list-style: none;
      min-height: 3.2em;
    }
    /* テキストのフェードをゆっくり＆やわらかく */
    .ticker li {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity .9s cubic-bezier(.22, .61, .36, 1); /* 0.9sに延長＋緩やかなカーブ */
      will-change: opacity;
    }
    .ticker li.active {
      opacity: 1;
    }
    /* 画像のフェード＋微スケールもゆっくり */
    .hero-info__media img.fx {
      animation: fadeScale 1.1s cubic-bezier(.22, .61, .36, 1) both; /* 1.1sに延長 */
      will-change: transform, opacity, filter;
    }
    @keyframes fadeScale {
      from {
        opacity: 0;
        transform: scale(1.035); /* ほんの少し拡大スタート */
        filter: blur(.6px); /* ごく弱いぼかし（好みで外してOK） */
      }
      60% {
        filter: blur(0); /* 途中でぼかし解除 */
      }
      to {
        opacity: 1;
        transform: scale(1);
        filter: none;
      }
    }
    /* ユーザーの簡易表示設定に配慮（任意） */
    @media (prefers-reduced-motion: reduce) {
      .ticker li {
        transition-duration: .3s;
      }
      .hero-info__media img.fx {
        animation-duration: .3s;
      }
    }
    /* Scroll down indicator (bottom-center of hero) */
    .scroll-vertical {
      position: absolute;
      right: 40px;
      bottom: 200px;
      transform: translateX(-50%);
      z-index: 2;
      color: #000;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      letter-spacing: .08em
    }
    /* スクロールダウンの位置 */
    .scroll {
      position: absolute;
      right: 50%;
      top: 10%;
      writing-mode: vertical-rl;
    }
    /* 線のアニメーション部分 */
    .scroll::before {
      animation: scroll 2s infinite;
      background-color: #000;
      bottom: -115px;
      content: "";
      height: 100px;
      left: 0;
      margin: auto;
      position: absolute;
      right: 0;
      width: 1px;
      z-index: 2;
    }
    /* 線の背景色 */
    .scroll::after {
      background-color: #ccc;
      bottom: -115px;
      content: "";
      height: 100px;
      left: 0;
      margin: auto;
      position: absolute;
      right: 0;
      width: 1px;
    }
    /* 線のアニメーション */
    @keyframes scroll {
      0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
      }
      50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
      }
      51% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
      }
      100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
      }
    }
    /* 既存の @keyframes bob を使い回し（なければ以下） */
    @keyframes bob {
      0%, 100% {
        transform: translateY(0) rotate(45deg)
      }
      50% {
        transform: translateY(6px) rotate(45deg)
      }
    }
    /* Drawer (right overlay menu) */
    .backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .45);
      opacity: 0;
      visibility: hidden;
      transition: .2s ease;
      z-index: 1000
    }
    .backdrop.show {
      opacity: 1;
      visibility: visible
    }
    .drawer {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: min(var(--drawer-w), 100vw);
      background: #000;
      color: #fff;
      transform: translateX(100%);
      transition: transform .25s ease;
      z-index: 1001;
      padding: 28px 24px
    }
    .drawer.show {
      transform: translateX(0)
    }
    .drawer h3 {
      margin: 13px 0 30px 0;
      font-weight: 600;
      letter-spacing: .1em
    }
    .drawer nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 12px
    }
    .drawer nav a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 12px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, .15)
    }
    .drawer nav a:hover {
      background: rgba(255, 255, 255, .08)
    }
    /* Main content sections */
    main section {
      padding: 68px 16px
    }
    .container {
      max-width: var(--container-w);
      margin: 0 auto
    }
    h2 {
      font-size: clamp(22px, 2.4vw, 32px);
      letter-spacing: .08em;
      margin: 0 0 18px
    }
    p {
      line-height: 1.9
    }
    /* PageTop button (appears once About is entered) */
    .pagetop {
      position: fixed;
      right: 14px;
      bottom: 16px;
      z-index: 999;
      background: #111;
      color: #fff;
      border: none;
      border-radius: 999px;
      padding: 12px 14px;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: .2s ease
    }
    .pagetop.show {
      opacity: 1;
      visibility: visible;
      transform: none
    }
    /* Responsive (<=768px) */
    @media (max-width:768px) {
		.p-img {
    aspect-ratio: 1 / 1;
		}
      .logo svg {
        width: 36px;
        height: 36px
      }
      .top-inline-menu ul {
        gap: 10px
      }
      .top-inline-menu a {
        padding: .5em .75em
      }
      .scroll-indicator {
        bottom: 16px
      }
      main section {
        padding: 54px 16px
      }
    }
    /* Optional: cap layout to 1920 on very wide screens without breaking 100vw hero */
    @media (min-width:1920px) {
      body {
        --header-pad: 28px
      }
    }
    /* =========================
   Smartphone (≤768px) only
========================= */
    @media (max-width: 768px) {
      /* 基本トーン */ :root {
        --header-pad: 16px;
        --nav-gap: 10px;
      }
      html, body {
        overflow-x: clip;
      }
      /* HERO：はみ出し防止＆端末UIに強い 100svh */
      .hero {
        width: 100%;
        height: 100svh;
        min-height: 560px;
      }
      /* ロゴ：左上・約50px、ハンバーガーと対称配置 */
      .logo {
        position: absolute;
        top: 25px;
        left: 25px;
        z-index: 2;
        display: flex;
        align-items: center;
        gap: 8px;
        color: #fff;
      }
      .logo svg {
        width: 50px;
        height: 50px;
      }
      /* ハンバーガー（既存）サイズ感キープ */
      .hamburger {
        position: fixed;
        top: var(--header-pad);
        right: var(--header-pad);
        z-index: 1002;
        width: 60px;
        height: 60px;
      }
      /* インラインメニューは非表示（モバイルはドロワーのみ） */
      .top-inline-menu {
        display: none;
      }
      /* 縦スクロール誘導を右側・縦中央へ */
      .scroll-vertical {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        writing-mode: vertical-rl;
        z-index: 2;
      }
      .scroll::before {
        animation: scroll 2s infinite;
        background-color: #000;
        bottom: -80px;
        content: "";
        height: 70px;
        left: 0;
        right: 0;
        margin: auto;
        position: absolute;
        width: 1px;
        z-index: 2;
      }
      .scroll::after {
        background-color: #ccc;
        bottom: -80px;
        content: "";
        height: 70px;
        left: 0;
        right: 0;
        margin: auto;
        position: absolute;
        width: 1px;
      }
      @keyframes scroll {
        0% {
          transform: scale(1, 0);
          transform-origin: 0 0;
        }
        50% {
          transform: scale(1, 1);
          transform-origin: 0 0;
        }
        51% {
          transform: scale(1, 1);
          transform-origin: 0 100%;
        }
        100% {
          transform: scale(1, 0);
          transform-origin: 0 100%;
        }
      }
      /* Information：画面下部フル幅のバー風に */
      .hero-info {
        left: 0;
        right: 0;
        bottom: 0;
        width: auto;
        border-radius: 0; /* 端まで使うので角丸OFF（好みで戻してOK） */
        backdrop-filter: blur(4px) saturate(120%);
      }
      .hero-info__wrap {
        display: grid;
        grid-template-columns: 80px 1fr; /* 左画像は控えめ固定 */
        gap: 10px;
        padding: 10px 12px;
        align-items: start;
      }
      .hero-info__media {
        aspect-ratio: 1/1;
        overflow: hidden;
      }
      .hero-info__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
      /* 見出し・本文 */
      .hero-info__body h3 {
        margin: 0 0 6px;
        font-size: 14px;
        letter-spacing: .12em;
        opacity: .9;
      }
      .hero-info__body {
        font-size: 14px;
        line-height: 1.85;
      }
      .hero-info__body .lead {
        margin: .25em 0 .6em;
        opacity: .95;
      }
      .hero-info__body a {
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 0.9em;
      }
      /* テキスト：ふわっとフェード切替（displayは使わない） */
      .ticker {
        position: relative;
        margin: 0;
        padding: 0;
        list-style: none;
        min-height: 3.2em;
      }
      .ticker li {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity .9s cubic-bezier(.22, .61, .36, 1);
        line-height: 1.8;
      }
      .ticker li.active {
        opacity: 1;
      }
      /* 画像：ふわっと（ゆっくり） */
      .hero-info__media img.fx {
        animation: fadeScale 1.1s cubic-bezier(.22, .61, .36, 1) both;
        will-change: transform, opacity, filter;
      }
      @keyframes fadeScale {
        from {
          opacity: 0;
          transform: scale(1.035);
          filter: blur(.6px);
        }
        60% {
          filter: blur(0);
        }
        to {
          opacity: 1;
          transform: scale(1);
        }
      }
      /* ドロワーはそのまま使用（微調整したい時はここに追記） */
      .drawer {
        width: min(var(--drawer-w), 100vw);
      }
      /* ユーザーの簡易表示設定に配慮 */
      @media (prefers-reduced-motion: reduce) {
        .ticker li {
          transition-duration: .3s;
        }
        .hero-info__media img.fx {
          animation-duration: .3s;
        }
      }
    }
    /* ===== About ===== */
    .about {
      position: relative;
      /* PC背景 */
      background: #000 url("images/about_pc.jpg") center/cover no-repeat;
      color: #fff;
      isolation: isolate; /* overlayのブレ防止 */
      padding: clamp(60px, 10vh, 120px) 10%;
    }
    .about::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, .50); /* 黒オーバーレイ */
      z-index: -1;
    }
    @media (max-width:768px) {
      /* SP背景 */
      .about {
        background-image: url("images/about_sp.jpg");
        padding: 56px 10%;
      }
    }
    /* ヘッダー */
    .about__inner {
      max-width: var(--container-w);
      margin: 0 auto;
    }
    .about__head {
      margin-bottom: 10%;
    }
    .about__title {
      font-size: clamp(24px, 3.2vw, 24px);
      margin: 0 0 6px;
      letter-spacing: .06em;
    }
    .about__subtitle {
      margin: 0;
      opacity: .9;
      font-size: clamp(14px, 1.8vw, 16px);
    }
    .about__underline {
      display: block;
      width: 150px;
      height: 1px;
      background: rgba(255, 255, 255, .6);
      margin: 10px 0;
    }
    /* サブ見出し（そのまま） */
    .about__sub {
      display: flex;
      align-items: center;
      gap: .35em;
      font-size: clamp(18px, 2.6vw, 24px);
      margin: 22px 0 10px;
    }
    .about__brand-svg {
      width: auto;
      height: 1em;
      transform: translateY(1px);
    }
    /* mizuhiki.svg：固定表示 */
    .about__mizuhiki {
      width: 100%;
      height: auto;
      display: block;
      margin: 100px 0 0;
      opacity: 0.7;
    }
    /* コピー */
    .about__copy p {
      line-height: 5em;
      margin: 5em 0 5em;
      text-align: center;
      letter-spacing: 0.2em;
    }
    /* スペック（PC：横並び｜＋下線） */
    .about-spec {
      margin: 18px 0 0;
      background: rgba(0, 0, 0, .55);
      backdrop-filter: blur(4px) saturate(120%);
      padding: 20px 40px;
    }
    .about-spec__row {
      display: grid;
      grid-template-columns: 140px 1fr;
      gap: 12px;
      align-items: baseline;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .25);
    }
    .about-spec dt {
      font-weight: 100;
      letter-spacing: .08em;
      opacity: .95;
      padding: 10px;
    }
    .about-spec dd {
      margin: 0;
    }
    /* SP：縦積み表示＋改行（\ → <br> にJSで変換） */
    @media (max-width:768px) {
      .about-spec__row {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 10px 0;
      }
      .about-spec dt {
        font-size: 14px;
        opacity: .9;
      }
      .about-spec dd {
        font-size: 14px;
        line-height: 1.9;
      }
    }
    /* ===== Product ===== */
    .product {
      background: #D7C4BB; /* 背景色 D7C4BB */
      color: #333333; /* 文字色 白 */
      padding: clamp(56px, 10vh, 100px) 10%;
    }
    .product__underline {
      display: block;
      width: 150px;
      height: 1px;
      background: rgba(42, 42, 42, .6);
      margin: 10px 0;
    }
    .product__grid {
      display: grid;
      grid-template-columns: 1fr 420px; /* 左：テキスト / 右：画像縦並び */
      gap: clamp(20px, 4vw, 40px);
      align-items: start;
	  margin-bottom: 20%;
    }
    /* 左カラム */
    .badge-line {
      display: flex;
      gap: 10px;
      margin-bottom: 10px;
    }
    .badge {
      display: inline-block;
      padding: .3em .9em;
      border: 1px solid rgba(255, 255, 255, .7);
      border-radius: 999px;
      font-size: 12px;
      letter-spacing: .08em;
      backdrop-filter: saturate(120%);
    }
    .p-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 12px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(42, 42, 42, .4); /* 左カラム幅のアンダーバー */
      margin-bottom: 12px;
    }
    .p-title {
      margin: 0;
      font-size: clamp(20px, 2.4vw, 28px);
      font-weight: 600;
    }
    .p-price {
      white-space: nowrap;
      font-size: clamp(16px, 2vw, 18px);
      opacity: .95;
    }
    .p-tagline {
      margin: 16px 0 10px;
      opacity: .9;
    }
    /* スペック */
    .p-spec {
      margin: 16px 0 20px;
    }
    .p-row {
      display: grid;
      grid-template-columns: 140px 1fr;
      gap: 14px;
      padding: 12px 0;
    }
    .p-row + .p-row {
      border-top: 1px dashed rgba(42, 42, 42, .25);
    }
    .p-row dt {
      font-weight: 600;
      letter-spacing: .06em;
      opacity: .95;
    }
    .p-row dd {
      margin: 0;
      line-height: 1.9;
    }
    .p-copy {
      margin: 18px 0 22px;
      line-height: 2;
      opacity: .95;
    }
    /* 購入ボタン */
    .p-cta {
      margin-top: 8px;
    }
    .btn-ghost {
      text-align: center;
      display: inline-block;
      width: 100%;
      padding: 12px 18px;
      border: 1px solid rgba(42, 42, 42, .7); /* 既定は極細枠あり */
      border-radius: 0; /* 角丸なし（直角） */
      color: #333333;
      background: transparent; /* 中身は塗りなし */
      transition: background .2s ease, color .2s ease, border-color .2s ease;
    }
    .btn-ghost:hover, .btn-ghost:active {
      background: #6d5249; /* 指定色 */
      color: #fff;
      border-color: transparent; /* ホバー/アクティブ時はボーダーなし */
    }
    .btn-ghost:focus-visible {
      outline: 2px solid rgba(255, 255, 255, .85);
      outline-offset: 2px;
    }
    /* 右カラム（画像 1:1 縦並び） */
    .product__right {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .p-img {
      aspect-ratio: 1 / 1;
      border: 1px solid rgba(255, 255, 255, .3);
      overflow: hidden;
      background: rgba(0, 0, 0, .15);
    }
    .p-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    /* 交互レイアウト（Gridエリアで入替） */
    .product__grid {
      grid-template-areas: "left right";
    }
    .product__left {
      grid-area: left;
    }
    .product__right {
      grid-area: right;
    }
    .product__grid--rev {
      grid-template-columns: 420px 1fr; /* 反転時：列幅も左右逆 */
      grid-template-areas: "right left";
    }
    .product-sep {
      margin: 100px 0;
      opacity: 0.3;
    }
    /* SP：画像→テキストの順で縦積み（反転も同じ順序に） */
    @media (max-width:768px) {
      .product__grid, .product__grid--rev {
        grid-template-columns: 1fr;
        grid-template-areas:
          "right"
          "left";
        gap: 20px;
      }
      /* 既に .btn-ghost は幅100% 指定済み */
      /* lineupは画像1枚のみなので２枚目非表示指定は不要 */
    }
    /* ===== Smartphone (≤768px) ===== */
    @media (max-width:768px) {
      /* 画像を先頭に、テキストは次 */
      .product__grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .product__right {
        order: -1;
      } /* 右カラム（画像）を先頭に */
      .product__right .p-img:nth-child(2) {
        display: none;
      } /* 2枚目は非表示 */
      /* タイトル左、価格は改行（下に回す） */
      .p-head {
        flex-direction: column;
        align-items: flex-start;
      }
      .p-price {
        white-space: normal;
      }
      /* スペックは縦積み（ラベル→値） */
      .p-row {
        grid-template-columns: 1fr;
        gap: 6px;
      }
      /* 購入ボタンは要素めいっぱい＆直角 */
      .p-cta .btn-ghost {
        display: block;
        width: 100%;
        border-radius: 0; /* 念押し */
      }
    }
    /* ===== Footer ===== */
    .site-footer {
      background: #111;
      color: #fff;
      padding: clamp(40px, 8vw, 72px) 16px 28px;
    }
    .site-footer a {
      color: inherit;
      text-decoration: none;
    }
    .site-footer a:hover {
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr; /* brand / nav / legal */
      gap: clamp(20px, 3vw, 40px);
      align-items: start;
    }
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
      color: #fff;
    }
    .footer-logo svg {
      width: 50px;
      height: 50px;
      display: block;
    }
    .footer-logo .brand {
      font-size: 16px;
      letter-spacing: .12em;
    }
    .footer-tagline {
      margin: 0 0 8px;
      opacity: .9;
    }
    .footer-address {
      font-style: normal;
      line-height: 1.9;
      opacity: .9;
    }
    .footer-address a {
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .logo-svg {
      width: 60px;
    }
    .f-head {
      margin: 0 0 8px;
      font-size: 14px;
      letter-spacing: .12em;
      text-transform: uppercase;
      opacity: .9;
    }
    .footer-nav ul, .footer-legal ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 8px;
    }
.f-head {
	margin-top: 20px;
}
    .footer-legal .sns {
      display: flex;
      gap: 12px;
      margin-top: 8px;
    }
    .site-footer .ext {
      display: inline-flex;
      vertical-align: middle;
      margin-left: 6px;
    }
    .site-footer .ext svg {
      width: 14px;
      height: 14px;
    }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-top: 26px;
      padding-top: 14px;
      border-top: 1px solid rgba(255, 255, 255, .12);
    }
    .to-top {
      font-size: 13px;
      opacity: .9;
    }
    .copy {
      opacity: .7;
    }
    /* SP */
    @media (max-width:768px) {
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .footer-logo {
        justify-content: flex-start;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }
    }

/* ====== Product overflow fix pack ====== */

/* 1) Gridの柔軟列を「本当に縮む列」にする */
.product__grid{
  /* 左=柔軟列を明示して縮ませる */
  grid-template-columns: minmax(0,1fr) 420px;
}
.product__grid--rev{
  /* 反転時も同様（右が固定、左をminmaxで） */
  grid-template-columns: 420px minmax(0,1fr);
}

/* 2) Grid子要素が「縮めない」既定を上書き */
.product__left,
.product__right,
.p-row dd {
  min-width: 0;
}

/* 3) 長い語やスラッグでの押し広げを抑止 */
.product,
.product * {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* 4) 画像は絶対に領域をはみ出さない */
.product img { max-width: 100%; height: auto; display:block; }

/* 5) SPでは必ず1カラム化（重複OK・こちらが勝つ） */
@media (max-width:768px){
  .product__grid,
  .product__grid--rev{
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "right"
      "left";
    gap: 20px;
  }
  .product__right{ order:-1; }      /* 画像を先頭に */
}

/* 6) iOSの aspect-ratio フォールバック（旧環境向け） */
@supports not (aspect-ratio: 1 / 1) {
  .p-img{ position:relative; overflow:hidden; }
  .p-img::before{ content:""; display:block; padding-top:100%; } /* 1:1 */
  .p-img > img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
}

/* 7) Grid内コンテンツの縮小許可（Safariで効くおまじない） */
.product__grid > * { min-width:0; min-height:0; }
/* figure の既定余白を全消し（安全） */
figure { margin: 0; }

/* 商品画像ブロックの余白をゼロに固定＋万一の隙間対策 */
.p-img {
  margin: 0;
  line-height: 0;           /* 画像のベースライン隙間ケア（保険） */
}

/* SP時の行ギャップを少しだけ控えめに（お好みで） */
@media (max-width:768px){
  .product__grid, .product__grid--rev{
    gap: 16px;  /* 既定24px → 16pxなど好みで */
  }
	.about__copy p {
	 line-height: 3em;
	}
}