body {
  margin: 0;
  font-family: 'ヒラギノ明朝 ProN','Hiragino Mincho ProN','游明朝','Yu Mincho','ＭＳ Ｐ明朝','MS PMincho',serif;

  /* 薄いピンクのグラデーション */
  background: linear-gradient(
    135deg,
    #f6dbe3,
    #fbeff3
  );

  color: #5a4a4a;
}

/* ヒーロー */
.hero {
  padding: 80px 40px;
}

.hero-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;

  /* 半透明ホワイト */
  background: rgba(255, 255, 255, 0.55);

  /* ぼかしは弱め */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  border-radius: 28px;
  padding: 60px;

  /* 影も控えめ */
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.06);
}

/* 左 */
.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 10px;
}

.hero-text h1 span {
  font-weight: 600;
}

.hero-text h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 14px;
  line-height: 1.9;
  opacity: 0.9;
}

/* 効果 */
.effect-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.effect {
  background: rgba(255,255,255,0.25);

  /* ★ 輪郭をはっきりさせる */
  border: 1px solid rgba(255,255,255,0.7);

  border-radius: 12px;
  padding: 15px 10px;
  text-align: center;
  font-size: 13px;

  /* ★ うっすら影で立体感 */
  box-shadow:
    0 2px 6px rgba(0,0,0,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.4);

}

/* リンク */
.more-link {
  display: inline-block;
  margin-top: 25px;
  color: #ffd;
  text-decoration: none;
  font-size: 14px;
}

/* 右 */
.hero-visual {
  flex: 1;
  position: relative;
}

.img {
  border-radius: 16px;
  object-fit: cover;
}

.img-main {
  width: 100%;
}

.img-sub1 {
  width: 60%;
  position: absolute;
  top: 20px;
  right: -40px;
}

.img-sub2 {
  width: 55%;
  position: absolute;
  bottom: -30px;
  left: -40px;
}

/* 予約ボタン */
.reserve-btn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 120px;
  height: 120px;
  background: #7a8f6a;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: bold;
}

.reserve-btn small {
  font-size: 12px;
  font-weight: normal;
}
/* =========================
   スマホ用レスポンシブ対応
   ========================= */
@media screen and (max-width: 768px) {

  /* 全体余白 */
  .hero {
    padding: 40px 16px;
  }

  /* ガラスカード */
  .hero-inner {
    flex-direction: column;
    gap: 30px;

    padding: 30px 20px;
    border-radius: 20px;
  }

  /* 左テキスト */
  .hero-text h1 {
    font-size: 26px;
    text-align: center;
  }

  .hero-text h2 {
    font-size: 18px;
    text-align: center;
  }

  .hero-text p {
    font-size: 14px;
    line-height: 1.8;
  }

  /* 効果アイコン */
  .effect-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .effect {
    font-size: 12px;
    padding: 14px 8px;
  }

  /* 一覧リンク */
  .more-link {
    display: block;
    text-align: center;
    margin-top: 20px;
  }

  /* 右ビジュアル */
  .hero-visual {
    position: relative;
  }

  .img-main {
    width: 100%;
  }

  /* 重なり画像はスマホでは非表示 */
  .img-sub1,
  .img-sub2 {
    display: none;
  }

  /* 予約ボタン */
  .reserve-btn {
    width: 90px;
    height: 90px;
    right: 15px;
    bottom: 15px;
    font-size: 12px;
  }

  .reserve-btn small {
    font-size: 10px;
  }

}
/* =========================
   料金セクション
   ========================= */
.price-section {
  margin: 60px auto;
  padding: 0 16px;
}

.price-inner {
  max-width: 700px;
  margin: auto;

  background: rgba(255, 255, 255, 0.55);
  border-radius: 24px;
  padding: 40px 30px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.price-title {
  font-size: 20px;
  color: #6a4a4a;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-title .dot {
  width: 14px;
  height: 14px;
  background: #6a4a4a;
  border-radius: 50%;
}
.dot{
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #b08a8a; /* お好みで */
  margin-right: 10px;
  vertical-align: middle;
}
.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-list li {
  display: grid;
  grid-template-columns: 1fr 80px 100px;
  align-items: center;

  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);

  font-size: 15px;
  color: #6a4a4a;
}

.price-list li:last-child {
  border-bottom: none;
}

.menu-name {
  text-align: left;
}

.menu-time {
  text-align: center;
  color: #7a6a6a;
}

.menu-price {
  text-align: right;
  font-weight: bold;
  color: #d34b4b;
}

/* オプション（延長） */
.price-list li.option {
  font-size: 14px;
  opacity: 0.85;
}
/* hero内に入れる料金カード */
.price-section.in-hero {
  margin-top: 40px;
}

.price-section.in-hero .price-inner {
  max-width: 100%;
  padding: 28px 24px;
  border-radius: 20px;
}

/* hero内では少しコンパクトに */
.price-section.in-hero .price-title {
  font-size: 18px;
  margin-bottom: 18px;
}

.price-section.in-hero .price-list li {
  font-size: 14px;
  grid-template-columns: 1fr 70px 90px;
}

/* =========================
   SP(480px以下)：画像に文字を安全に重ねる（切れない版）
========================= */
@media screen and (max-width: 480px){

  /* 固定メニュー分の余白（スマホだけ） */
  :root{ --menu-h: 72px; }
  body{
    padding-top: calc(var(--menu-h) + env(safe-area-inset-top));
    font-family: 'ヒラギノ明朝 ProN','Hiragino Mincho ProN','游明朝','Yu Mincho','ＭＳ Ｐ明朝','MS PMincho',serif;
  }

  .hero{
    padding: 12px;
  }

  /* heroカード枠は消す（今の方針のまま） */
  .hero-inner{
    padding: 0;
    background: none;
    box-shadow: none;
    backdrop-filter: none;
  }

  /* 画像を基準にする */
  .hero-visual{
    order: -1;
    position: relative;
  }

  .img-main{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
  }

  /* ★ 文字を「画像の上」に絶対配置で乗せる（margin-topで持ち上げない） */
  .hero-text{
    position: absolute;
    left: 12px;
    right: 12px;
    top: 12px;
    z-index: 3;

    margin: 0;                 /* ← -660px を完全撤去 */
    padding: 18px 16px 18px;

    background: linear-gradient(
      to bottom,
      rgba(255,255,255,0.70),
      rgba(255,255,255,0.40)
    );

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    border-radius: 22px;
  }

  .hero-text h1{
    font-size: 22px;
    margin: 0 0 6px;
    text-align: center;
  }

  .hero-text h2{
    font-size: 16px;
    margin: 0 0 14px;
    text-align: center;
  }

  .hero-text p{
    font-size: 13px;
    line-height: 1.75;
    margin: 0;
  }

  /* 重なり画像は非表示のままでOK */
  .img-sub1,.img-sub2{ display:none; }
}

/* =========================
   PC Menu
========================= */
.pc-menu{
  position:fixed;
  top:24px;
  right:40px;
  z-index:900;
}
.pc-menu ul{
  display:flex;
  gap:28px;
  list-style:none;
  margin:0;
  padding:0;
}
.pc-menu a{
  font-size:14px;
  letter-spacing:.15em;
  text-decoration:none;
  color:#fff;
  opacity:.85;
  transition:opacity .3s;
}
.pc-menu a:hover{opacity:1;}
.pc-menu a.current{opacity:1;text-decoration:none;}
.pc-menu a{
  color:#2f2f2f;
}
/* 下線を絶対出さない（保険） */
.pc-menu a,
.pc-menu a:link,
.pc-menu a:visited,
.pc-menu a:hover,
.pc-menu a:active{
  text-decoration:none !important;
}

/* =========================
   Hamburger
========================= */
.hamburger{
  position:fixed;
  top:20px;
  right:20px;
  width:28px;
  height:22px;
  display:none;
  flex-direction:column;
  justify-content:space-between;
  z-index:1001;
  cursor:pointer;
}
.hamburger span{
  height:2px;
  background:#2f2f2f; /* 普段：黒 */
  display:block;
}

/* 開いたら白 */
.hamburger.active span{
  background:#fff;
}

/* =========================
   SP Menu
========================= */
.sp-menu{
  position:fixed;
  inset:0;
  background:rgba(90,110,80,.95); /* 抹茶 */
  display:flex;
  justify-content:center;
  align-items:center;
  opacity:0;
  pointer-events:none;
  transition:.4s;
  z-index:1000;
}
.sp-menu.active{opacity:1;pointer-events:auto;}
.sp-menu ul{list-style:none;text-align:center;margin:0;padding:0;}
.sp-menu li{margin:20px 0;}
.sp-menu a{
  font-size:20px;
  letter-spacing:.2em;
  text-decoration:none;
  color:#fff;
}
.sp-menu a.current{text-decoration:none;}

/* =========================
   Responsive
========================= */
@media(max-width:768px){
  .pc-menu{display:none;}
  .hamburger{display:flex;}

  /* 既存レイアウトにメニューが被る場合の保険 */
  .hero{ padding-top: 84px; }
}

/* =========================
   料金カード（予約サイト風）
   ※HTMLを .price-cards / .price-card 構造にした場合に使用
========================= */
.price-cards{
  display:flex;
  flex-direction:column;
  gap: 18px;
}

.price-subtitle{
  margin: 18px 0 0;
  font-size: 16px;
  font-weight: 600;
  color:#5a4a4a;
}

.price-card{
  background: rgba(255,255,255,0.75);
  border-radius: 22px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}

.price-card.option{
  opacity: .92;
}

.pc-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size: 16px;
  color:#5a4a4a;
}

.pc-name{
  font-weight: 600;
  letter-spacing: .06em;
}

.pc-time{
  font-size: 13px;
  color:#7a6a6a;
  white-space: nowrap;
}

.pc-mid{
  margin: 14px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.pc-bottom{
  display:flex;
  align-items: baseline;
  gap: 10px;
}

.pc-yen{
  font-size: 30px;
  font-weight: 700;
  letter-spacing: .02em;
  color:#2f2f2f;
}

.pc-tax{
  font-size: 14px;
  color:#7a6a6a;
}

@media (max-width: 480px){
  .pc-top{ font-size: 15px; }
  .pc-yen{ font-size: 25px; color:#7a6a6a;}
  .pc-time{ font-size: 12px; }
}
/* ===== 料金カード：タイトル表示の最適化 ===== */

/* デフォルト（PC・タブレット） → 1行 */
.pc-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap: nowrap;
}

.pc-name,
.pc-time{
  white-space: nowrap;
}

/* ===== スマホだけレイアウトを変更 ===== */
@media (max-width: 480px){

  .pc-top{
    flex-direction: column;     /* 縦並び */
    align-items: flex-start;   /* 左揃え */
    gap: 4px;
  }

  .pc-name{
    font-size: 15px;
  }

  .pc-time{
    font-size: 13px;
    color:#7a6a6a;
  }
}
/* ===== スマホ：上が切れる対策（固定メニュー分の余白を確保） ===== */
:root{
  --menu-h: 72px; /* メニューの高さに合わせて調整 */
}

/* iPhoneのノッチ分も考慮して上に余白を作る */
body{
  padding-top: calc(var(--menu-h) + env(safe-area-inset-top));
}

/* hero が 100vh を使ってる場合のスマホ崩れ対策 */
.hero{
  min-height: 100svh;
  min-height: 100dvh;
  height: auto;          /* 100vh固定を解除 */
  padding-top: 12px;     /* さらに少し余白（好みで） */
}
/* 持ち物 */
.bring-section{
  margin-top: 26px;
}

.bring-inner{
  background: rgba(255,255,255,0.65);
  border-radius: 18px;
  padding: 18px 18px 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.bring-title{
  font-size: 18px;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.bring-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.bring-list li{
  padding-left: 1.4em;
  position: relative;
  line-height: 1.7;
}

.bring-list li::before{
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.7;
}

.bring-note{
  margin-top: 10px;
  font-size: 13px;
  opacity: 0.75;
}
/* 支払い注意 */
.payment-note{
  margin-top: 10px;
  font-size: 13px;
  color: #6f4a4a;
  opacity: 0.85;
  white-space: nowrap; 
}

.payment-note strong{
  font-weight: 600;
}

@media (max-width: 768px){
  .reserve-btn{
 width: 64px;
    height: 64px;
    right: 16px;
    font-size: 11px;
    z-index: 99999;

    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    transform: translateZ(0);
  }
}

body.menu-open .reserve-btn{
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

