/*
  Refactored LP CSS (clean + stable)
  - Removed: WP-only selectors, unused scribble SVG/path rules, redundant overflow hacks
  - Added: sane reset, responsive layout for sections, safer fixed SNS bar
  - Keeps your current class names/HTML structure intact.
*/

body.lp-body {
  background-color: #F8F2E7 !important; /* Cocoonの背景色を無視 */
  background-image: none !important;
  color: #504634 !important;
  font-family: "EB Garamond", "Zen Old Mincho", serif !important;
  margin: 0 !important;
  padding: 0 !important;
  min-width: 0 !important; /* Cocoonの幅制限を解除 */
}

/* =====================
   Base / Tokens
===================== */

:root{
  --bg: #F8F2E7;
  --paper:#ece7df;
  --yellow:#FFC931;
  --text:#504634;
  --card:#fff;
  --dot: #f6c62f;
  --radius: 36px;

  /* SP fixed SNS bar height */
  --snsbar-h: 72px;
}

/* Basic reset */
*,
*::before,
*::after{
  box-sizing: border-box;
}

html, body{
  margin: 0;
  padding: 0;
  font-family: "EB Garamond","Zen Old Mincho",serif;
  font-size: 18px;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

/* Prevent accidental horizontal scroll from large radii/abs elements */
body{
  overflow-x: hidden;
}

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

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

.fw500{ font-weight: 500; }
.fw600{ font-weight: 600; }

/* LP wrapper */
.lp{
  color: var(--text);
}

.lp-container{
  width: min(1160px, 92vw);
  margin: 0 auto;
}

/* =====================
   HERO
===================== */

.lp-hero{
  position: relative;
  overflow: visible;
}

/* Background KV image */
.lp-hero__bg{
  position: absolute;
  inset: 0;
  background-image: url("../img/kv_pc.jpg");
  background-size: cover;
  background-position: center 45%;
  background-repeat: no-repeat;
  z-index: 0;
  border-radius: 0 0 0 100px;
}

.lp-hero__inner{
  position: relative;
  z-index: 2;
  margin: 0 auto;
  min-height: 92vh;
  padding: 40px;
  display: grid;
}

/* Left column */
.lp-hero__side{
  display: flex;
  flex-direction: column;
  color: var(--text);
  margin: 96px 0 0 80px;
  align-items: flex-start; /* ★これ追加 */
}

.lp-hero__logo{ display: inline-block; }

.lp-hero__logoImg,
.lp-footer2__logo{
  width: 126px;
  height: auto;
}

.lp-hero__menu{
  margin-top: 32px;
  display: grid;
  gap: 24px;
}

.lp-hero__menuLink{
  color: var(--ink-soft);
  font-size: 16px;
  letter-spacing: .06em;
}

.lp-hero__menuLink:hover{
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* SNS (PC inline) */
.lp-hero__sns{
  margin-top: 32px;
  display: flex;
  gap: 24px;
}

.lp-hero__snsBtn{
  width: 48px;
  height: 48px;
  filter: invert(26%) sepia(11%) saturate(1182%) hue-rotate(0deg) brightness(89%) contrast(85%);
}

.lp-hero__snsBtn img{ width: 48px; height: 48px; }

/* Center copy (absolute) */
.lp-hero__copy{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 160px;
  width: min(980px, 92vw);
  text-align: center;
}

.lp-hero__catch{
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 3.1vw, 40px);
  letter-spacing: .06em;
  line-height: 1.25;
}

.lp-hero__sub{
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 20px;
  letter-spacing: .08em;
  line-height: 1.8;
  font-weight: 500;
}

/* Yellow dots */
.lp-hero__decor{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.lp-hero__dot{
  position: absolute;
  background: var(--dot);
  border-radius: 999px;
  filter: drop-shadow(0 14px 18px rgba(0,0,0,.10));
  opacity: .95;
}

.lp-hero__dot--1{ width:110px; height:110px; left:12%; top:66%; }
.lp-hero__dot--2{ width:18px;  height:18px;  left:30%; top:58%; opacity:.9; }
.lp-hero__dot--3{ width:10px;  height:10px;  left:70%; top:62%; opacity:.85; }
.lp-hero__dot--4{ width:26px;  height:26px;  right:9%; top:63%; }
.lp-hero__dot--5{ width:14px;  height:14px;  right:26%; bottom:20%; opacity:.85; }

/* Scroll hint */
.lp-scrollHint{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -96px;
  width: 2px;
  height: 200px;
  z-index: 3;
  pointer-events: none;
}

.lp-scrollHint__track{
  position: absolute;
  inset: 0;
  width: 2px;
  border-radius: 999px;
  background: rgba(60,55,47,.35);
}

.lp-scrollHint__runner{
  position: absolute;
  left: 0;
  top: 0%;
  width: 2px;
  height: 36%;
  border-radius: 999px;
  background: rgba(60,55,47,.95);
  animation: lpScrollDown 1.35s cubic-bezier(.2,.7,.2,1) infinite;
  will-change: transform, opacity;
}

@keyframes lpScrollDown{
  0%   { transform: translateY(0);     opacity: 0; }
  10%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateY(177%); opacity: 0; }
}

/* =====================
   ABOUT
===================== */

#about{ margin: 240px 0 0; }

.lp-about2__grid{
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  gap: 0;
  align-items: center;
}

.lp-about2__photo{
  display: flex;
  justify-content: flex-end;
  padding-right: 120px;
}

.lp-about2__photo img{
  width: 440px;
  border-radius: 34px;
}

.lp-about2__vert{
  display: flex;
  justify-content: center;
}

.lp-about2__vert span{
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.6em;
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
}

.lp-about2__body{
  padding-left: 120px;
}

.lp-about2__textWrap{
  position: relative;
  padding-top: 12px;
}

.lp-about2__circle{
  position: absolute;
  left: -68px;
  top: -68px;
  width: 105px;
  height: 105px;
  border-radius: 999px;
  background: var(--yellow);
  z-index: 0;
}

.lp-about2__leadText{
  position: relative;
  z-index: 1;
  margin: 0 0 32px;
  letter-spacing: .08em;
  line-height: 2.0;
  font-size: 18px;
  font-weight: 600;
}

.lp-about2__text{
  position: relative;
  z-index: 1;
  letter-spacing: .06em;
  line-height: 2.2;
  font-size: 18px;
}

.lp-about2__text p{ margin: 0 0 26px; }
.lp-about2__text p:last-child{ margin-bottom: 0; }

.scribble{
  position: relative;
  display: inline-block;
  padding: .18em .42em; /* ← 少し増やす */
  z-index: 0;
}

/* SVGは背面 */
.scribble__svg{
  position: absolute;
  inset: -35% -30%;            /* ← 楕円を大きく（重要） */
  width: calc(100% + 56%);
  height: calc(100% + 70%);
  z-index: -1;                 /* ← 文字の裏 */
  pointer-events: none;
  overflow: visible;
}

/* 赤い手書き線（少し薄め） */
.scribble__path{
  fill: none;
  stroke: rgba(241, 66, 66, 0.95); /* ← 赤 */
  stroke-width: 4 ;
  stroke-linecap: round;
  stroke-linejoin: round;

  stroke-dasharray: var(--len);
  stroke-dashoffset: var(--len);
  transition: stroke-dashoffset 900ms cubic-bezier(.2,.7,.2,1);
}

.scribble__path--2{
  stroke-width: 2 ;
  transition-delay: 50ms;
}


/* 表示トリガ */
.scribble.is-drawn .scribble__path{
  stroke-dashoffset: 0;
}

/* =====================
   NEWS
===================== */

#news{ margin: 240px 0 136px; }

.lp-news2__head{
  position: relative;
  display: block;
  margin: 0 0 64px;
}

.lp-news2__circle{
  position: absolute;
  left: -68px;
  top: -68px;
  width: 105px;
  height: 105px;
  border-radius: 999px;
  background: var(--yellow);
  z-index: 0;
}

.lp-news2__title{
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 40px;
  letter-spacing: .12em;
  line-height: 1.1;
}

.lp-news2__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.lp-news2__card{ min-width: 0; }

.lp-news2__thumb{
  border-radius: 30px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 24px;
}

.lp-news2__thumb.is-ph--beige{ background: #DDCEBE; }
.lp-news2__thumb.is-ph--yellow{ background: #E6D29A; }

.lp-news2__date{
  font-size: 14px;
  letter-spacing: .14em;
  color: #BF9D60;
  margin-bottom: 8px;
  display: inline-block;
}

.lp-news2__h3{
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: .08em;
  color: var(--text);
}

.lp-news2__cta{
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.lp-news2__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border: 1px solid rgba(60,55,47,.55);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  letter-spacing: .10em;
  font-size: 14px;
}

.lp-news2__btn:hover{
  background: rgba(255,255,255,.35);
}

/* =====================
   LINEUP
===================== */

.lp-lineup2__bg{
  background: var(--yellow);
  border-radius: 0 120px 0 0;
  width: 100%;
  padding: 120px 0;
}

.lp-lineup2__inner{
  width: min(1160px, calc(100vw - 240px));
  margin: 0 auto;
}

.lp-lineup2__head{
  position: relative;
  display: block;
  margin: 0 0 64px;
}

.lp-lineup2__circle{
  position: absolute;
  left: -68px;
  top: -68px;
  width: 105px;
  height: 105px;
  border-radius: 999px;
  background: #FFF4D6;
  z-index: 0;
}

.lp-lineup2__title{
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 40px;
  letter-spacing: .12em;
  line-height: 1.1;
}

.lp-lineup2__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 80px;
}

.lp-lineup2__item{ text-align: center; }

.lp-lineup2__imgWrap img{
  width: 100%;
  border-radius: 40px;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.lp-lineup2__name{
  margin: 32px 0 16px;
  font-size: 30px;
  letter-spacing: .10em;
}

.lp-lineup2__desc{
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: .08em;
  text-align: left;
}

/* =====================
   INFO
===================== */

#info{ margin: 240px 0 120px; }

.lp-info2__inner{
  width: min(1160px, calc(100vw - 240px));
  margin: 0 auto;
}

.lp-info2__head{
  position: relative;
  display: block;
  margin: 0 0 64px;
}

.lp-info2__circle{
  position: absolute;
  left: -68px;
  top: -68px;
  width: 105px;
  height: 105px;
  border-radius: 999px;
  background: var(--yellow);
  z-index: 0;
}

.lp-info2__title{
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 40px;
  letter-spacing: .12em;
  line-height: 1.1;
}

.lp-info2__table{
  width: min(820px, 100%);
  margin: 0 auto;
}

.lp-info2__row{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  padding: 32px 0;
  border-bottom: 1px solid var(--text);
  align-items: center;
}

.lp-info2__th{
  font-size: 18px;
  letter-spacing: .10em;
}

.lp-info2__td{
  font-size: 18px;
  letter-spacing: .08em;
}

.lp-info2__tel{
  color: inherit;
}

.lp-info2__sns{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  margin-top: 46px;
}

.lp-info2__snsLink{
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.lp-info2__snsIcon{
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  filter: invert(26%) sepia(11%) saturate(1182%) hue-rotate(0deg) brightness(89%) contrast(85%);
}

.lp-info2__snsText{
  letter-spacing: .10em;
}

/* =====================
   MAP / FOOTER
===================== */

.lp-map2 iframe{
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
}

.lp-footer2{
  padding: 72px 0 64px;
}

.lp-footer2__inner{
  width: min(1160px, calc(100vw - 240px));
  margin: 0 auto;
  text-align: center;
}

.lp-footer2__logo{ margin: auto; }

.lp-footer2__copy{
  display: block;
  margin-top: 44px;
  font-size: 14px;
  letter-spacing: .06em;
}

/* =====================
   Responsive (<=900px)
===================== */

@media (max-width: 900px){
  html{ -webkit-text-size-adjust: 100%; }

  /* 固定SNSバー分の余白（ページ全体） */
  main.lp{
    padding-bottom: calc(var(--snsbar-h) + env(safe-area-inset-bottom, 0px));
  }

:root {
    --side-padding: 24px; /* SEサイズを考慮し32pxから少し絞る */
    --section-margin-sp: 120px;
  }

  /* セクション全体のパディングを統一 */
  #about, #news, #lineup, #info {
    padding: 0 var(--side-padding);
    margin-top: var(--section-margin-sp);
  }

  .lp-container {
    width: 100%; /* 親のpadding内で100%に */
    max-width: none;
  } 

  /* 共通：タイトル背後の黄色い円のベーススタイル */
  .lp-section-circle {
    position: absolute;
    background: var(--yellow);
    border-radius: 50%;
    z-index: 0;
  }

  br.sponly{display:contents;}

  /* =====================
     HERO (SP) ここだけが重要
  ===================== */

  /* セクション自体は余計に伸ばさない */
  .lp-hero{
    position: relative;
    overflow: hidden;
    padding-bottom: 0; /* ←ここが重要：snsbar分で伸ばさない */
  }

  /* 背景（パン一体画像）：cover禁止、幅基準で固定 */
  .lp-hero__bg{
    background-image: url("../img/kv_sp.webp");
    background-repeat: no-repeat;
    background-position: center 18%; /* 微調整ポイント：15〜25%でOK */
    background-size: 100% auto;
    border-radius: 0;
  }

  /* 1画面に収める：snsbar分を“内側に確保”する（伸ばさない） */
  .lp-hero__inner{
    position: relative;
    z-index: 2;
    min-height: calc(100svh - var(--snsbar-h) - env(safe-area-inset-bottom, 0px));
    padding:
      calc(18px + env(safe-area-inset-top, 0px))
      18px
      18px;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows:clamp(96px, 14svh, 130px) 1fr  auto;             
    align-items: start;
  }

  /* scroll hint は絶対配置にして、レイアウトを占有させない */
  .lp-scrollHint{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(14px + 18px); /* innerの下padding(18px)に少し足す */
    height: 150px;
    z-index: 10;
    pointer-events: none;
  }

  /* ロゴは1段目の中央に固定（端末差で動かさない） */
  .lp-hero__side{
    grid-row: 1;
    margin: 0;
    width: 100%;
    display: grid;
    justify-items: center;
    align-items: center;
  }

  .lp-hero__logo{
    display: inline-flex;
    width: fit-content;
    margin: 0;
    line-height: 0;
  }

  .lp-hero__logoImg{
    width: 140px;
    height: auto;
    display: block;
  }

  /* PCメニューとPC用SNSはSPでは非表示（固定バーだけ使う） */
  .lp-hero__menu{ display: none; }

  /* コピーは3段目に固定（パンの上に絶対乗らない） */
  .lp-hero__copy{
    grid-row: 3;
    align-self: end;
    justify-self: center;

    position: static;
    transform: none;

    width: min(560px, 92vw);
    margin: 0 auto;
    padding: 0 8px;
    text-align: center;
  }

  .lp-hero__catch{
    margin: 0;
    font-size: clamp(24px, 9.2vw, 38px);
    line-height: 1.55;
    letter-spacing: .03em;
    font-weight: 600;
    text-wrap: balance;
  }

  .lp-hero__sub{
    margin-top: 14px;
    font-size: clamp(13px, 4.1vw, 16px);
    line-height: 2.0;
    letter-spacing: .06em;
    font-weight: 500;
    opacity: .95;
  }

  /* ドット（文字と干渉しやすいのでSPは小さく） */
  .lp-hero__dot--1{ width: 22px; height: 22px; left: 3%; top: 62%; }
  .lp-hero__dot--2{ width: 14px; height: 14px; left: 8%;  top: 82%; opacity:.9; }
  .lp-hero__dot--3{ width: 10px; height: 10px; right: 5%; top: 60%; left:auto; opacity:.85; }
  .lp-hero__dot--4{ width: 14px; height: 14px; right: 3%; top: 74%; }
  .lp-hero__dot--5{ width: 56px; height: 56px; left: 3%; bottom: 2%; right:auto; opacity:.95; }

  /* 固定SNSバー（これはそのまま） */
  .lp-hero__sns{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: calc(var(--snsbar-h) + env(safe-area-inset-bottom, 0px));
    margin: 0;

    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;

    background: var(--yellow);
    z-index: 9999;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .lp-hero__sns::after{
    content: "";
    position: absolute;
    left: 50%;
    top: 16px;
    bottom: 16px;
    width: 1px;
    background: rgba(60,55,47,.28);
    transform: translateX(-50%);
  }

  .lp-hero__snsBtn{
    width: 64px;
    height: 64px;
    filter: none;
    display: grid;
    place-items: center;
  }

  .lp-hero__snsBtn img{
    width: 42px;
    height: 42px;
  }

  /* 全体設定 */
  .lp-hero {
    height: 100svh;
    display: flex;
    flex-direction: column;
  }

  /* 背景画像：パンの位置を中央に固定 */
  .lp-hero__bg {
    background-image: url("../img/kv_sp.webp"); /* 画像内のパンが含まれるKV */
    background-size: cover;
    background-position: center center;
    border-radius: 0;
  }

  /* レイアウト：上(ロゴ)・中(パン用余白)・下(コピー) */
  .lp-hero__inner {
    min-height: 100%;
    padding: 40px 32px; /* 下部にScrollHint用の余白 */
    display: grid;
    grid-template-rows: 0.5fr 0.9fr 1.1fr;
    justify-items: center;
    text-align: center;
    grid-template-columns: 1fr; /* 全幅を1カラムにする */
    justify-items: center;      /* 子要素を水平方向に中央寄せ */
  }

  /* ロゴ：最上部 */
  .lp-hero__side {
    grid-row: 1;
    margin: 0;
    align-items: center;
    grid-row: 1;              /* グリッドの1行目に配置 */
    width: 100%;              /* 横幅いっぱいまで広げる（中央寄せの基準を作るため） */
    margin: 0;
    display: flex;            /* 中身を中央に寄せるためにFlexboxを使用 */
    justify-content: center;  /* 水平中央 */
    align-items: center;      /* 垂直中央（ロゴの上下余白） */
    align-self:flex-end;
  }


  /* キャッチコピー：最下部 */
  .lp-hero__copy {
    grid-row: 3;
    position: static;
    transform: none;
    width: 100%;
    padding-bottom: 5px;
    align-self: center;
  }

  .lp-hero__catch {
    margin-bottom: 20px;
  }

  .lp-hero__sub {
    font-size: 1rem;
    line-height: 1.8;
  }

  /* 黄色ドット：画像の位置に合わせる */
  .lp-hero__dot--1 { width: 18px; height: 18px; left: 15%; top: 52%; } /* 左中 */
  .lp-hero__dot--2 { width: 14px; height: 14px; left: 10%; bottom: 15%; } /* 左下小 */
  .lp-hero__dot--3 { width: 24px; height: 24px; right: 2%; top: 65%; } /* 右中 */
  .lp-hero__dot--4 { width: 36px; height: 36px; right: 10%; bottom: 8%; } /* 右下大 */
  .lp-hero__dot--5 { display: none; }

  /* スクロールヒント：最下部中央の短い線 */
  .lp-scrollHint {
    bottom: 10px;
    height: 40px; /* 画像に合わせた短いライン */
  }

  /* 固定SNSバー：色とアイコンの調整 */
  .lp-hero__sns {
    background:var(--yellow);
    height: var(--snsbar-h);
  }
  
  
  /* =====================
     ABOUT: stack
  ===================== */

#about { margin-top: 160px; padding: 0 32px;}

  .lp-about2__grid {
    display: grid;
    /* 縦書きのタイトル(左) と 本文(右) の2カラム構成 */
    grid-template-columns: 40px 1fr; 
    gap: 40px;
    align-items: start;
    width: 100%;
  }

  /* 1) 画像を一番下に移動 */
  .lp-about2__photo {
    grid-column: 1 / -1; /* 横幅いっぱい使う */
    grid-row: 2;        /* 2行目に配置（テキストの下） */
    margin-top:48px;
    justify-content: center;
    padding: 0;
  }

  .lp-about2__photo img {
    width: 100%;
    max-width: 100%;
    border-radius: 28px;
  }

  /* 2) タイトルの縦書き設定 */
  .lp-about2__vert {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
  }

  .lp-about2__vert span {
    writing-mode: vertical-rl; /* 縦書きに戻す */
    text-orientation: mixed;
    letter-spacing: 0.4em;
    font-size: clamp(30px, 10vw, 40px);
    line-height: 1;
    padding-top: 20px; /* 黄色い円とのバランス調整 */
  }

  /* 3) 本文の配置 */
  .lp-about2__body {
    grid-column: 2;
    grid-row: 1;
    padding-left: 0;
  }

  /* 黄色い円をタイトルの背面に配置 */
  .lp-about2__circle {
    left: -20px; /* タイトルに重なるよう調整 */
    top: -30px;
    width: 90px;
    height: 90px;
    background: var(--yellow);
    z-index: 1;
  }

  .lp-about2__leadText {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 600;
  }

  .lp-about2__text {
    font-size: 15px;
    line-height: 2.0;
  }

/* NEWS: 修正版 */
  .lp-news2__head {
    position: relative;
    margin-bottom: 40px;
  }

  .lp-news2__circle {
    left: -55px;
    top: -45px;
    width: 90px;
    height: 90px;
  }

  .lp-news2__thumb,.lp-news2__date {margin-bottom: 4px;font-size: 13px;}

  .lp-news2__title {
    font-size: 40px;
    letter-spacing: 0.05em;
  }

  .lp-news2__grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2列維持 */
    gap: 24px 16px; /* 横の隙間(16px)を狭めてはみ出し防止 */
  }

  .lp-news2__h3 {
    font-size: 15px; /* SEだと15pxでも長い文字が溢れるため微調整 */
    line-height: 1.4;
  }

  .lp-news2__cta{margin-top: 40px;}

  /* =====================
     LINEUP: 1 col + inner padding
  ===================== */

#lineup {
    padding: 0;
    margin-top: 140px; /* ABOUT/NEWSとリズムを合わせる */
  }

  /* 黄色い背景エリア */
  .lp-lineup2__bg {
    background: var(--yellow);
    border-radius: 0 80px 0 0; 
    width: 100%;
    padding: 80px 0; /* 上下の余白 */
  }

  /* コンテンツ幅をここで制御（共通変数を利用） */
  .lp-lineup2__inner {
    width: 100%;
    padding: 0 var(--side-padding); /* ここで左右32px(or 24px)を確保 */
    box-sizing: border-box;
  }

  /* ヘッダーエリア */
  .lp-lineup2__head {
    position: relative;
    margin-bottom: 60px;
    padding-top: 20px; /* 白い円へのかぶり調整 */
  }

  /* タイトル後ろの白い円 */
  .lp-lineup2__circle {
    position: absolute;
        left: -55px;
        top: -45px;
        width: 90px;
        height: 90px;
    border-radius: 50%;
    background: #FFF4D6; /* 薄いクリーム色 */
    z-index: 0;
  }

  /* タイトルテキスト */
  .lp-lineup2__title {
    position: relative;
    z-index: 1;
    font-size: 36px;
    line-height: 1.3;
    letter-spacing: 0.1em;
    font-weight: 500;
    width: 100%; 
    word-break: keep-all; /* 単語の途中で切らない */
  }

  /* 商品一覧グリッド（1カラム） */
  .lp-lineup2__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px; /* 商品ごとの間隔を広く */
  }

  .lp-lineup2__item {
    text-align: center;
    width: 100%;
  }

  /* 商品画像 */
  .lp-lineup2__imgWrap img {
    width: 100%;
    aspect-ratio: 3 / 2; /* 横長画像の比率 */
    object-fit: cover;
    border-radius: 20px; /* 画像の角丸 */
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* うっすら影 */
  }

  /* 商品名 */
  .lp-lineup2__name {
    font-size: 30px;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    font-weight: 500;
    display: block;
  }

  /* 商品説明文 */
  .lp-lineup2__desc {
    font-size: 15px;
    line-height: 2.0; /* ゆったりした行間 */
    letter-spacing: 0.05em;
    text-align: left; /* 左揃え */
    opacity: 0.9;
  }

  /* =====================
     INFO: table 1 col
  ===================== */

  #info{ margin: 160px 0 80px; }

.lp-info2__inner {
    width: 100%;
  }

  .lp-info2__head {
    margin-bottom: 40px;
  }

  /* タイトル装飾（他セクションと統一） */
  .lp-info2__circle {
        left: -55px;
        top: -45px;
        width: 90px;
        height: 90px;
    background: var(--yellow);
    z-index: 0;
  }

  .lp-info2__title {
    font-size: 34px;
    letter-spacing: 0.1em;
  }

  /* テーブル（リスト）部分：縦並びに変更 */
  .lp-info2__table {
    width: 100%;
    border-top: none; /* デザインにより上線が必要なければ削除 */
  }

  .lp-info2__row {
    display: flex;
    flex-direction: column; /* 上下に積む */
        gap: 24px;
        padding: 32px 0;
    border-bottom: 1px solid var(--text); /* 境界線を画像に合わせて少し濃く */
    align-items: flex-start;
  }

  /* 項目名（店舗所在地など） */
  .lp-info2__th {
    font-size: 15px;
    font-weight: 500;
    opacity: 0.9;
  }

  /* 値（住所など） */
  .lp-info2__td {
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }

  /* 住所の郵便番号などをブロック表示で改行させる */
  .lp-info2__td div {
    display: block;
  }

  /* 電話番号 */
  .lp-info2__tel {
    font-size: 18px; /* 番号は少し大きく */
    letter-spacing: 0.05em;
    color: var(--text);
    text-decoration: none;
  }

  /* INFO内のSNSアイコン（もし表示する場合） */
  .lp-info2__sns {
    margin-top: 40px;
    gap: 20px;
  }

  /* =====================
     MAP: 全幅表示
  ===================== */

  .lp-map2 {
    width: 100%;
    line-height: 0;   /* iframeの下の隙間を消す */
  }

  .lp-map2 iframe {
    height: 300px; /* スマホで見やすい高さに調整 */
    width: 100%;
  }

  /* =====================
     FOOTER: シンプルな配置
  ===================== */

  .lp-footer2 {
    padding: 60px 0 100px; /* 下部は固定SNSバー(約80px)のために広く空ける */
    text-align: center;
    background: var(--bg); /* 背景色を統一 */
  }

  .lp-footer2__inner {
    width: 100%;
    padding: 0 var(--side-padding);
  }

  .lp-footer2__logo {
    width: 125px; /* ロゴサイズ調整 */
    margin: 0 auto 80px;
  }

  .lp-footer2__copy {
    display: block;
    font-size: 15px;
    letter-spacing: 0.05em;
    opacity: 0.8;
    font-family: "EB Garamond", serif; /* 著作権表示を欧文フォントに */
  }
}