/* 全体の標準カーソルを消す（統一） */
html, body, *{
  cursor: none !important;
}

body{
  /* cursor: none; */
  margin: 0;
  font-family: "Yu Gothic","Hiragino Kaku Gothic ProN",sans-serif;
  color: rgba(63,52,43,0.85);   /* 本文：やさしい茶 */
  background-color: #F7F2EC;   /* 背景：ベージュ */
}

*,*::before,*::after{
  box-sizing: border-box; /*すべての要素 + その疑似要素に対してwidth / height に収める*/
}



.cursor{
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);

  background: rgba(63,52,43,.18);
  border: 2px solid rgba(63,52,43,.55);
  box-shadow: 0 4px 14px rgba(63,52,43,.18);
  mix-blend-mode: multiply;

  opacity: 0; /* 最初は非表示にしておく */
}

.cursor.is-hover{
  transform: translate(-50%, -50%) scale(1.35);
  background: rgba(255,255,255,.65);
  border-color: rgba(164,134,97,.55);
}


/* 固定ヘッダー */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(247,242,236,.85);
  padding: 24px;
  transition: padding .3s ease, background .3s ease, box-shadow .3s ease;
}

/* スクロールで小さくなる */
.site-header.is-small{
  padding: 12px 24px;
  background: rgba(247,242,236,.95);
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}

/* ヘッダー内の横並び */
.header-inner{
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

/* ロゴ */
.site-logo{
  display: inline-flex;
  align-items: center;
  flex-shrink: 0; /* ロゴが潰れない */
}

.site-logo img{
  height: 70px;
  width: auto;
  display: block;
  transition: height .3s ease;
}
.site-header.is-small .site-logo img{
  height: 50px;
}

/* ナビ */
.site-nav{ margin-left: auto; }

.nav-list{
  display: flex;
  align-items: center;
  gap: 12px;

  flex-wrap: nowrap;      /* 折り返し防止 */
  white-space: nowrap;    /* 文字の改行防止 */
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ナビリンク（共通） */
.nav-list a{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 12px;
  border: 1px solid rgba(90,70,54,.25);
  border-radius: 8px;

  text-decoration: none;
  color: #5A4636;
  font-size: 13px;
  line-height: 1;

  width: auto;            /* ←固定幅禁止（予約が欠ける原因） */
  overflow: visible;      /* ←切れ防止 */
  white-space: nowrap;    /* ←文字を1行に */
  transition: .25s;
}

.nav-item--reserve{
  background: #b9aa96;
  color: #fff;
  padding: 8px 14px;
  border-radius: 10px;

  width: auto;
  min-width: 64px;
  white-space: nowrap;
  overflow: visible;
}

/* ハンバーガー（スマホ） */
.menu-toggle {
  display: none; /* PCは非表示 */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #F3E2D0;
  justify-content: center;
  align-items: center;
  position: relative; /*要素を「位置指定の基準」にする*/
  cursor: pointer;  /*マウスを乗せたとき、指マーク（☝）にする*/
  z-index: 105;/*重なり順を一番手前に*/
  box-shadow: 0 4px 6px rgba(0,0,0,0.15), inset 0 -2px 0 rgba(0,0,0,0.05);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  position: absolute;
  transition: all 0.4s ease;
}

.menu-toggle span:nth-child(1) { top: 12px; }
.menu-toggle span:nth-child(2) { top: 19px; }
.menu-toggle span:nth-child(3) { top: 26px; }

/* ハンバーガーX変形 */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 19px;
}
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 19px;
}

.page-hero{
  background: #F7F2EC;
  padding: 140px 24px 10px; /* ヘッダー固定考慮 */
}

.page-hero-inner{
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-title{
  font-size: 32px;
  color: #5A4636;
  margin-bottom: 16px;
}

.page-leaf{
  width: 200px;
  margin: 0 auto 16px;
  display: block;
}

.page-lead{
  font-size: 18px;
  line-height: 1.9;
  color: #5A4636;
}



/* FV */
#fv{
  height:100vh;
  background:url("fv-curtain.jpg") center/cover;
  position:relative; /*要素を「位置指定の基準」にする*/
  display:flex;
  align-items:center;
}
#fv::before{
  content:"";
  position:absolute;
  inset:0; /*上下左右すべてを 0*/
  background:rgba(255,255,255,.6);
}
.fv-inner{position:relative;padding-left:10%}
.fv-catch{font-size:32px;line-height:1.6}
.fv-sub{font-size:14px;color:#5A4E44}



/* スクロール */
.scroll-wrap{
  position:absolute;
  bottom:20px;left:50%;
  transform:translateX(-50%);
  text-align:center;
}

.scroll-indicator{
  width:32px;height:32px;
  border:1px solid rgba(107,95,85,0.5);
  border-radius:50%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 6px;
}

.scroll-indicator span{
  width:2px;height:8px;
  background:rgba(107,95,85,.7);
  animation:scrollDown 1.5s infinite;
}

@keyframes scrollDown{
  0%{opacity:0}
  40%{opacity:1}
  100%{opacity:0;transform:translateY(10px)}
}

/* セクション */
.sec{padding:96px 0}
#about,#menu,#skincare,#reserve{scroll-margin-top:110px}
.sec-inner{
  max-width:1120px;
  margin:0 auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
}
.sec-title{font-size:20px;margin-bottom:12px}
.sec-body{font-size:14px;line-height:1.9}
.sec-media img{width:100%;aspect-ratio:4/3;object-fit:cover}

/* 交互 */
.sec:nth-of-type(even) .sec-text{order:2}
.sec:nth-of-type(even) .sec-media{order:1}

/* about 特徴 */
.feature-list{
  list-style:none;
  padding:0;
  margin:18px 0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.feature-title{font-size:13px}
.feature-desc{font-size:12px;color:#6B5F55}

.sec{
  background: #FBF8F4;
  position: relative;
}

.sec::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:60%;
  height:1px;
  background:rgba(107,95,85,0.15);
}

.sec-media img{
  border-radius: 12px;          /* ← 少しだけ */
  transition: border-radius .3s ease;
}

/* メニュー注意 */
.menu-note{
  font-size:12px;
  margin-top:12px;
  padding-left:12px;
}
.br-sp{display:none}

/* ===== 凪ボタン ===== */
.btn-nagi{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 11px 20px;
  border-radius: 999px;                 /* 丸い（凪） */

  /* 背景：やさしいベージュ */
  background: linear-gradient(
    180deg,
    #F4EEE7 0%,
    #E9DED2 100%
  );

  /* 枠線：主張しすぎないベージュ */
  border: 1px solid #D2C3B3;

  color: #3F342B;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-decoration: none;

  /* ふわっと感 */
  box-shadow:
    0 6px 14px rgba(63,52,43,0.08);

  transition:
    transform 0.25s ease,/*浮く・動く*/
    box-shadow 0.25s ease,
    /* background 0.25s ease, */
    opacity 0.25s ease;
}

/* 矢印 */
.btn-nagi::after{
  content: "→";
  font-size: 13px;
  opacity: 0.9;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ホバー */
.btn-nagi:hover{
  background: linear-gradient(
    180deg,
    #F8F2EC 0%,
    #EFE4D9 100%
  );
  transform: translateY(-2px);          /* 控えめに浮く */
  box-shadow:
    0 10px 22px rgba(63,52,43,0.12);
}

.btn-nagi:hover::after{
  transform: translateX(4px);           /* 矢印が少し動く */
  opacity: 1;
}

/* 押下 */
.btn-nagi:active{
  transform: translateY(0);
  box-shadow:
    0 6px 14px rgba(63,52,43,0.08);
  opacity: 0.96;
}

/* キーボード操作 */
.btn-nagi:focus-visible{
  outline: 2px solid rgba(160,140,120,0.55);
  outline-offset: 3px;
}

/* ===== NAGI SALON marquee（完全エンドレス） ===== */
.marquee{
  width: 100%;
  overflow: hidden;
  padding: 18px 0;
}

.marquee-track{
  display: flex;
  align-items: center;
  gap: 200px;                /* 文字間隔 */
  width: max-content;

  animation: marquee-left 60s linear infinite; /* ← ゆっくり */
  will-change: transform;
}

.marquee-item{
  font-size: 40px;
  letter-spacing: 0.25em;
  color: rgba(203,187,167,0.35);
  white-space: nowrap;
}

/* ★ 半分だけ動かすのがポイント */
@keyframes marquee-left{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-50%);
  }
}

/* ===== FAQ ===== */
.faq{
  background:#EFE7DF;
  padding:64px 24px;
  margin:0;
  border-radius:0;
}

.faq-inner{
  max-width:1120px;
  margin:0 auto;
}

.faq-title{
  text-align:center;
  font-size:18px;
  margin-bottom:24px;
  letter-spacing:.08em;
}

.faq-item{
  background:#F7F2EC;
  border-radius:12px;
  margin-bottom:12px;
  overflow:hidden;
}

.faq-q{
  width:100%;
  background:none;
  border:none;
  padding:16px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:14px;
  color:#3F342B;
  cursor:pointer;
}

.faq-q:hover{
  background:rgba(255,255,255,.4);
}

.faq-icon{
  font-size:18px;
  transition:transform .3s ease;
}

/* 回答 */
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
  padding:0 20px;
}

.faq-a p{
  font-size:13px;
  line-height:1.8;
  color:#6B5F55;
  padding-bottom:16px;
}

/* 開いた状態 */
.faq-item.open .faq-a{
  max-height:300px;
}

.faq-item.open .faq-icon{
  transform:rotate(45deg); /* ＋ → × */
}


/* 背景全体 */
.reserve{
  background:
    linear-gradient(
      rgba(247,242,236,0),
      rgba(247,242,236,0)
    ),
    url("../img/reserve.png");;
  background-size: cover;
  background-position: center;
  padding: 96px 24px;
}

/* 中央の白い箱 */
.reserve-box{
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255,255,255,0.75);
  border-radius: 20px;
  padding: 56px 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(90,70,54,0.08);
}

/* 見出し */
.reserve-box h2{
  font-size: 24px;
  margin-bottom: 16px;
  text-align: center;
}

/* 文章 */
.reserve-box p{
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 12px;
  color:#5A4636;
  text-align: center;
}

.reserve-lead{
  font-weight: 500;
}

/* ボタンエリア */
.reserve-buttons{
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 32px;
}

.reserve-btn{
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  border: 2px solid #B8946A;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}

.reserve-btn img{
  width: 44px;
  height: 44px;
}

/* ホバーでふわっと */
.reserve-btn:hover{
  background: rgba(184,148,106,0.1);
  transform: translateY(-2px);
}

.site-footer{
  background-color: #3f332b; /* 濃いブラウン */
  color: #f7f2ec;
  padding: 64px 24px;
}

.footer-inner{
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

/* ロゴ */
.footer-logo{
  width: 120px;
  margin-bottom: 16px;
}

/* キャッチ */
.footer-catch{
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 32px;
  opacity: 0.9;
}

/* ナビ */
.footer-nav{
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.footer-nav a{
  font-size: 13px;
  color: #f7f2ec;
  text-decoration: none;
  opacity: 0.8;
}

.footer-nav a:hover{
  opacity: 1;
  text-decoration: underline;
}

/* 安心材料 */
.footer-note p{
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 32px;
  opacity: 0.8;
}

/* コピーライト */
.footer-copy{
  font-size: 11px;
  opacity: 0.6;
}




/* ===== Owner Section ===== */
.owner{
  padding: 72px 24px;
}

.owner-inner{
  max-width: 1120px;
  margin: 0 auto;
  background: rgba(255,255,255,0.75);
  border-radius: 22px;
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
}

/* 見出し */
.owner-text h2{
  font-size: 22px;
  letter-spacing: 0.06em;
  margin: 0 0 22px;
  color: #3F342B;
}

/* 文章 */
.owner-text p{
  font-size: 18px;
  line-height: 2.1;
  margin: 0 0 18px;
  color: rgba(63,52,43,0.85);
}

.owner-greet{
  margin-bottom: 22px;
}

.owner-last{
  margin-top: 8px;
}

/* 写真 */
.owner-photo{
  margin: 0;
}

.owner-photo img{
  width: 75%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 2px solid rgba(164,134,97,0.7); /* 薄いゴールド系 */
  padding: 6px; /* 枠っぽく見せる */
  background: rgba(255,255,255,0.7);
  /* margin: 10%; */
}

/* ===== Features ===== */
.features{
  padding: 72px 24px;
}

.features-inner{
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.features-head{
  margin-bottom: 34px;
}

.features-line{
  display: block;
  width: 78%;
  max-width: 760px;
  height: 1px;
  margin: 0 auto 22px;
  background: rgba(164,134,97,0.55);
}

.features-title{
  font-size: 32px;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  color: #3F342B;
}

.features-leaf{
  display: block;
  width: 160px;
  margin: 0 auto;
  opacity: 0.9;
}

.features-list{
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 720px;
  width: 60%;
  text-align: left;
}

.features-item{
  display: flex;
  gap: 14px;
  padding: 16px 0;
  align-items: flex-start;
}

.features-bullet{
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(164,134,97,0.85);
  margin-top: 6px;
  flex: 0 0 14px;
}

.features-main{
  font-size: 22px;
  font-weight: 500;
  display: inline;
  padding: 0 4px;
  color: #3F342B;

  /* マーカー（初期は見えない） */
  background-image: linear-gradient(
    transparent 60%,
    rgba(212,186,153,0.45) 60%
  );
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left bottom;
}

/* 表示されたらアニメーション開始 */
.features.is-visible .features-main{
  animation: markerDraw 2s ease forwards;
}

/* 左から右へマーカー */
@keyframes markerDraw{
  from{
    background-size: 0% 100%;
  }
  to{
    background-size: 100% 100%;
  }
}


.features-sub{
  margin: 8px 0 0;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(63,52,43,0.75);
}

.features-back{
  display: inline-block;
  margin-top: 34px;
  font-size: 18px;
  color: rgba(63,52,43,0.75);
  text-decoration: none;
}

.features-back:hover{
  text-decoration: underline;
}


/* ===== メニューセクション ===== */
.menu-section{
  background:#F7F2EC;
  padding: 24px 0 96px;
}

.menu-inner{
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

/* 2カラムグリッド（PC） */
.menu-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ===== カード（buttonでもdivでもOK） ===== */
.menu-card{
  background: rgba(255,255,255,.75);
  border-radius: 22px;
  padding: 32px 20px;
  text-align: center;
  min-height: 500px;
  box-shadow: 0 10px 28px rgba(90,70,54,.08);

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border: none;
  width: 100%;
  cursor: pointer;
  font: inherit;
  color: inherit;

  /* ★追加：hoverを滑らかに */
  transition: transform .35s cubic-bezier(.22,.61,.36,1),
              box-shadow .35s cubic-bezier(.22,.61,.36,1);
}

/* hover */
.menu-card:hover{
  transform: translateY(-6px)!important;
  box-shadow: 0 20px 40px rgba(90,70,54,.16);
}

/* 見出し */
.menu-name{
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px;
  color:#5A4636;
}

/* 説明文：ここがズレ対策 */
.menu-desc{
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 16px;
  color:#5A4636;

  /* ★1行/2行でも画像位置を揃える（2行分確保） */
  min-height: 3.6em;
}

/* 画像 */
.menu-img{
  width: 100%;
  max-width: 100%;
  height: 250px;          /* ★高さを固定（ここがポイント） */
  object-fit: cover;      /* はみ出た分をトリミング */
  border-radius: 14px;
  margin: 0 auto 12px;
  display: block;
}

/* ===== 初回カウンセリング案内（上部に置いてる場合） ===== */
.menu-note-box{
  background: rgba(255,255,255,.55);
  border-radius: 18px;
  padding: 18px 18px;
  text-align: center;
  margin: 18px auto 26px;
  max-width: 700px;
}

.menu-note-box p{
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  color:#5A4636;
}

/* 葉っぱ装飾を中央に置く場合 */
.menu-deco{
  width: 120px;
  display: block;
  margin: 18px auto 30px;
  opacity: .9;
}


/* ===== nagi modal ===== */
.nagi-modal{
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  padding: 24px 16px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.nagi-modal.is-open{ display: block; }

.nagi-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(63,52,43,0.45);
}

/* panel */
.nagi-modal__panel{
  position: relative;
  margin: 8vh auto;
  max-width: 760px;
  padding: 28px 30px 24px;
  border-radius: 22px;
  background: rgba(247,242,236,0.96);
  box-shadow: 0 18px 60px rgba(0,0,0,.25);
  animation: nagiFade .35s ease both;
}

@keyframes nagiFade{
  from{ opacity:0; transform: translateY(12px); }
  to{ opacity:1; transform: translateY(0); }
}

/* close */
.nagi-modal__close{
  position:absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,.9);
  font-size: 22px;
  color:#5A4636;
  cursor:pointer;
}

/* title */
.nagi-modal__title{
  text-align: center;
  font-size: 20px;
  letter-spacing: .08em;
  color:#3F342B;
  margin-bottom: 8px;
}
.nagi-modal__title span{
  font-size: 14px;
  margin-left: 6px;
}

/* tags */
.nagi-modal__tags{
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  color:#5A4636;
  margin-bottom: 20px;
}

/* body */
.nagi-modal__body{
  text-align: center;
  font-size: 13px;
  line-height: 1.9;
  color:#5A4636;
}
.nagi-modal__head{
  font-weight: 600;
  margin-bottom: 6px;
  color:#3F342B;
}
.nagi-modal__text{ margin-bottom: 14px; }

/* price */
.nagi-modal__price{
  display: flex;
  flex-direction: column;
  align-items: center;   /* ← ここが重要 */
  gap: 6px;
}

.nagi-modal__price-main{
  display:flex;
  align-items: baseline;
  gap: 8px;
}
.nagi-modal__price-main strong{ font-size: 22px; }
.nagi-modal__price-main span{ font-size: 12px; opacity:.85; }

.nagi-modal__price-sub{
  margin-top: 6px;
  font-size: 13px;
}

.nagi-modal__price-sub.is-first{
  padding: 6px 14px;
  background: rgba(255,255,255,0.5);
  border-radius: 12px;
  text-align: center;
}

.nagi-modal__price-sub.is-first strong{
  font-size: 17px;
  color:#3F342B;
}

/* note */
.nagi-modal__note{
  font-size: 12px;
  opacity: .9;
  margin-top: 10px;
}

/* footer */
.nagi-modal__foot{
  margin-top: 12px;
  text-align: right;
}
.nagi-modal__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 112px;
  height: 46px;
  border-radius: 10px;
  background: #5A4636;
  color:#fff;
  text-decoration:none;
  font-weight: 700;
  letter-spacing: .14em;
}


/* ===== skincare ===== */
.skincare{
  background: #F7F2EC;
  padding: 90px 24px;
}

.skincare-inner{
  max-width: 1000px;
  margin: 0 auto;
}

.skincare-title{
  text-align: center;
  font-size: 32px;
  letter-spacing: .12em;
  color: #3F342B;
  margin-bottom: 32px;
}

/* 説明ボックス */
.skincare-leadbox{
  max-width: 820px;
  margin: 0 auto 28px;
  background: rgba(255,255,255,.35);
  padding: 28px 32px;
  line-height: 2;
  font-size: 18px;
  color: #5A4636;
}

/* 葉っぱ */
.skincare-leaf{
  display: block;
  width: 200px;
  margin: 0 auto 40px;
  opacity: .9;
}

/* item */
.skincare-item{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;         /* ← start より揃って見える */
  margin-bottom: 64px;
}

/* 反転は order で */
.skincare-item.is-reverse .skincare-text{ order: 2; }
.skincare-item.is-reverse .skincare-img{  order: 1; }

.skincare-text{
  /* max-width: 420px; */
  background: rgba(255,255,255,0.7);
  padding: 32px;
  border-radius: 20px;
  height: 260px; /* ←画像と同じ高さ */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.skincare-text h3{
  font-size: 18px;
  color: #3F342B;
  margin-bottom: 12px;
}

.skincare-text p{
  font-size: 14px;
  line-height: 1.8;
  color: #5A4636;
  margin: 0;
}

.skincare-text h3,
.skincare-text p{
  text-align: left;   /* カード内は左揃え */
}

.skincare-img{
  border-radius: 20px;
  overflow: hidden;   /* 角丸を効かせる */
  min-height: 260px;  /* テキストと揃える */
}

.skincare-img img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;     /* img下の余白を消す */
  border-radius: 0;   /* 親に角丸を任せる */
}



/* =========================
   reveal（全セクション共通）
========================= */
.reveal{
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}

.reveal.is-show{
  opacity: 1;
  transform: translateY(0);
}

/* 少し遅らせる用（画像など） */
.reveal-delay-1{ transition-delay: .12s; }
.reveal-delay-2{ transition-delay: .24s; }


/* スマホ */
@media(max-width:800px){

  .nav-list {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 200px;
    height: 100vh;
    padding: 60px 16px;
    gap: 12px;
    background-color: #F7F2EC;
    border-left: 1px solid #D8D0C7;

    
    transform: translateX(100%); 
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1); /* GPUで滑らか */
    z-index: 100;
  } 

  .nav-list.show {
    transform: translateX(0); 
  }

  .menu-toggle { 
     display: flex !important; 
    }  

  /* ナビ縦スライド */
  .nav-list.show {
    transform: translateX(0);
    opacity: 1;
  }


  .sec{padding:64px 0}
  .sec-inner{grid-template-columns:1fr;gap:18px}
  .sec:nth-of-type(even) .sec-text{order:1}
  .sec:nth-of-type(even) .sec-media{order:2}
  .feature-list{grid-template-columns:1fr}
  .br-sp{display:block}


  .nav-list{
    display: flex !important;
    flex-direction: column;

    position: fixed;
    top: 0;
    right: 0;

    width: 220px;
    height: 100vh;
    padding: 80px 16px;
    gap: 12px;

    background-color: #F7F2EC;
    border-left: 1px solid #D8D0C7;

    transform: translateX(100%);
    opacity: 0;

    transition: transform 0.5s ease, opacity 0.5s ease;
    z-index: 100;
  }

  .nav-list.show{
    transform: translateX(0);
    opacity: 1;
  }

  .page-hero.is-top { padding-bottom: 96px; }

  /* .page-hero{
    padding: 140px 24px 10px;
  } */

  .page-title{
    font-size: 24px;
  }

  .page-leaf{
  width: 150px;
  margin: 0 auto 16px;
  display: block;
}

  .sec-inner{
    max-width: 520px;            /* ← ここが一番重要 */
    margin: 0 auto;

    grid-template-columns: 1fr auto;
    gap: 12px;                   /* 離れすぎ防止 */
    align-items: center;
  }

  .sec-body{
    margin-bottom: 10px;
  }

  /* テキストは読みやすく少しだけ幅制限 */
  .sec-text{
    padding-right: 4px;
  }

  /* 画像は丸く小さく */
  .sec-media{
    display: flex;
    justify-content: center;
  }

  /* ボタンは小さく・中央寄せ */
  .btn-nagi{
    padding: 8px 14px;
    font-size: 12px;
    margin-top: 8px;
  }

   .sec-media img{
    width: 180px;   
    height: 180px;
  }

  .faq-inner{
    padding: 0 50px;
  }

   .footer-nav{
    flex-direction: column;
    gap: 12px;
  }

  .owner-text{
    margin: 0 auto;
  }

  .owner-text p{
    font-size: 14px;
  }

  .owner-inner{
    grid-template-columns: 1fr;
    padding: 40px 22px;
    gap: 26px;
  }

  .owner-photo{
    order: -1;
    text-align: center; /* 写真を中央に */
  }

  .owner-photo img{
    max-width: 150px;   /* ← ここが重要 */
    width: 100%;
    margin: 0 auto;
  }

  .features{
    padding: 56px 16px;
  }

    /* リスト全体を中央に置く（箱だけ中央） */
  .features-list{
    max-width: 400px;
    margin: 24px auto 0;
    text-align: left; /* ←ここ重要 */

     /* 見出しは中央のままでOK */
  .features-title{ font-size: 18px; }
  .features-line{ width: 86%; margin: 0 auto 18px; }
  .features-leaf{ width: 120px; }
  }

  /* 各項目：中身は左揃えで統一（←ここ重要） */
  .features-item{
    display: flex;
    gap: 12px;
    align-items: flex-start;
    justify-content: flex-start; /* ←centerにしない */
  }

  /* 本文エリアを伸ばして、短い項目も幅を揃える */
  .features-body{
    flex: 1;
    text-align: left; /* ←読みやすく綺麗 */
  }

  /* タイトルも左に統一すると揃って見える */
  .features-main{
    font-size: 14px;
  }

  .features-sub{
    font-size: 14px;
    line-height: 1.9;
  }

  /* ○（bullet）が少し下がって見える場合の微調整（任意） */
  .features-bullet{
    margin-top: 5px;
  }

  /*menu*/

  .menu-grid{
    grid-template-columns: 1fr; /* 1列＝縦並び */
    gap: 24px;                  /* 縦の余白は少し詰める */
  }

  .menu-btn{
    font-size: 12px;
    padding: 7px 16px;   /* 少し押しやすく */
    margin-top: 12px;
  }

   .nagi-modal__panel{
    margin: 6vh auto;
    padding: 22px 18px 20px;
  }
  .nagi-modal__foot{
    text-align: center;
  }
  .nagi-modal__cta{
    width: 100%;
  }

  .skincare-leadbox{
    font-size: 15px;
    padding: 20px 18px;
  }

  .skincare-item{
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 42px;
  }

  /* SPでは反転しても見た目を揃えたいなら（画像→テキストに統一） */
  .skincare-item .skincare-img{ order: 1; }
  .skincare-item .skincare-text{ order: 2; }

  .skincare-text{
    padding: 20px 18px;
    min-height: auto;     /* SPは高さ揃えなくてOK */
  }

  .skincare-img img{
    height: 220px;
  
  }
}


