/* =========================================================
   eyelash-salon-multipage  —  美容サロン向け 3ページテンプレート
   高級感（明朝体・余白多め）/ トータルビューティー / 予約導線
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Shippori+Mincho:wght@400;500;600;700&display=swap');

:root {
  --bg:        #f7f6f3;   /* 上質なオフホワイト */
  --bg-alt:    #efece7;   /* セクション交互背景（ライトグレージュ） */
  --ink:       #1a1816;   /* 文字（ほぼ黒） */
  --ink-soft:  #4c463f;   /* 補助テキスト（濃いめグレー＝可読性UP） */
  --line:      #e0dad1;   /* 罫線 */
  --accent:    #6a615a;   /* アクセント＝中濃グレー */
  --accent-dk: #2e2a25;   /* 強めアクセント＝チャコール */
  --hpb:       #1c1a18;   /* 予約ボタン＝黒（ラグジュアリー） */
  --hpb-dk:    #000000;
  --line-green:#06c755;   /* LINE 公式カラー */
  --line-green-dk:#05a546;
  --serif:     "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  --serif-en:  "Cormorant Garamond", "Shippori Mincho", serif;
  --radius:    10px;
  --maxw:      1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--serif);
  color: var(--ink);
  background: var(--bg);
  line-height: 2;
  font-size: 15px;
  letter-spacing: .03em;
  -webkit-font-smoothing: antialiased;
  /* 下部固定の予約バーに隠れないよう余白 */
  padding-bottom: 74px;
}

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

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 246, 247, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}
.brand { display: flex; align-items: center; }
.brand-logo { height: 40px; width: auto; display: block; }
.nav { display: flex; gap: 20px; }
.nav a {
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--ink-soft);
  padding: 6px 2px;
  position: relative;
  transition: color .2s;
}
.nav a:hover { color: var(--accent-dk); }

/* ---------- ボタン共通（ラグジュアリー：角ばった上質な形） ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 26px;
  border-radius: 2px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .1em;
  line-height: 1.3;
  transition: transform .15s, opacity .2s, background .2s, color .2s;
}
.btn:active { transform: translateY(1px); }
.btn-hpb  { background: var(--hpb); color: #fff; }
.btn-hpb:hover  { background: var(--hpb-dk); }
.btn-line { background: #fff; color: var(--ink); border: 1px solid var(--ink); }
.btn-line:hover { background: var(--ink); color: #fff; }
.btn-ghost {
  background: #fff;
  color: var(--accent-dk);
  border: 1px solid var(--accent);
  box-shadow: none;
}

/* ---------- 下部固定 予約バー ---------- */
.reserve-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: flex;
  gap: 8px;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 18px rgba(0,0,0,.06);
}
.reserve-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 9px 4px;
  border-radius: 12px;
  color: #fff;
  text-align: center;
  line-height: 1.2;
}
.reserve-hpb  { background: var(--hpb); }
.reserve-line { background: var(--line-green); }
.reserve-btn-label { font-size: 15px; font-weight: 700; letter-spacing: .03em; }
.reserve-btn-sub   { font-size: 10px; opacity: .9; margin-top: 2px; letter-spacing: .04em; }

/* ---------- ヒーロー（画像メイン：実内装の明るい写真＋下に文字） ---------- */
.hero {
  position: relative;
  background: #f0ece6;
}
.hero-photo { display: block; line-height: 0; }
.hero-photo img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  object-position: center center;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.18) 22%, rgba(255,253,250,.62) 50%, rgba(255,253,250,.86) 74%, rgba(255,253,250,.96) 100%);
}
.hero-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;          /* 下寄せ */
  text-align: center;
  color: var(--ink);
  padding: 0 22px 30px;
}
.hero-logo {
  width: 150px;
  max-width: 48%;
  height: auto;
  margin: 0 auto 12px;
  filter: drop-shadow(0 1px 8px rgba(255,255,255,.85));
}
.hero-sub {
  font-size: 11.5px;
  letter-spacing: .22em;
  color: var(--ink);
  margin: 0 0 14px;
  text-shadow: 0 0 10px #fff, 0 0 18px rgba(255,255,255,.9);
}
.hero-title {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.7;
  margin: 0;
  color: var(--ink);
  text-shadow: 0 0 14px #fff, 0 0 26px rgba(255,255,255,.95), 0 1px 2px rgba(255,255,255,.9);
}
.hero-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13.5px;
  letter-spacing: .2em;
  color: var(--ink);
  margin: 15px 0 0;
  text-shadow: 0 0 10px #fff, 0 0 18px rgba(255,255,255,.95);
}
.hero-tagline::before,
.hero-tagline::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--ink);
  opacity: .45;
}
.hero-services {
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--ink);
  margin: 12px 0 0;
  line-height: 1.9;
  max-width: 22em;
  text-shadow: 0 0 10px #fff, 0 0 16px rgba(255,255,255,.9);
}
.hero-badges, .hero-lead { display: none; }
/* キャッチ直下に予約ボタン（スマホでも表示） */
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 330px;
  margin: 20px auto 0;
}
.hero-cta .btn-hpb { background: var(--hpb); color: #fff; }
.hero-cta .btn-hpb:hover { background: var(--hpb-dk); color: #fff; }

/* 写真の下の特徴アイコン帯 */
.feature-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.feature-strip-inner {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 92px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .02em;
}
.feature-item .hf-ico {
  line-height: 1;
  color: var(--accent-dk);
}
.feature-item .hf-ico svg { width: 27px; height: 27px; display: block; }

/* コンセプト帯（色のあるビジュアル＋パララックス） */
.concept { position: relative; overflow: hidden; aspect-ratio: 16 / 10; }
.parallax-media {
  position: absolute;
  left: 0; right: 0; top: -9%; bottom: -9%;   /* 上下に余白＝視差で動かす分 */
  will-change: transform;
}
.parallax-media .concept-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.concept::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255,253,250,.34) 0%, rgba(255,253,250,.42) 50%, rgba(255,253,250,.62) 100%);
}
.concept-inner {
  position: absolute; inset: 0;
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding: 0 28px;
}
/* 次のセクションが丸い角で“かぶさる” */
.concept + .section {
  position: relative;
  z-index: 3;
  background: var(--bg);
  margin-top: -30px;
  border-radius: 26px 26px 0 0;
  padding-top: 52px;
}

/* スクロール演出は撤去（コンテンツを隠す事故を防ぐため、.reveal は常に表示） */
.reveal { opacity: 1 !important; transform: none !important; }
.concept-text {
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: .04em;
  text-align: center;
  max-width: 22em;
  margin: 0;
  text-shadow: 0 1px 14px rgba(255,255,255,.95), 0 1px 3px rgba(255,255,255,.9);
}

/* ---------- セクション（余白多め・明朝） ---------- */
.section { padding: 78px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; margin-bottom: 48px; }
.section-en {
  display: block;
  font-family: var(--serif-en);
  font-size: 13px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: .14em;
  margin: 0;
}
.section-lead {
  text-align: center;
  color: var(--ink-soft);
  font-size: 14px;
  max-width: 34em;
  margin: 18px auto 0;
  line-height: 2.1;
}

/* ---------- 選ばれる理由（5点・アイコン＋ラベルのグリッド） ---------- */
.reason-list {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.reason-item {
  flex: 0 0 33.333%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 24px 6px;
}
.reason-ico { color: var(--accent-dk); line-height: 0; }
.reason-ico svg { width: 28px; height: 28px; display: block; }
.reason-label { font-size: 13px; letter-spacing: .04em; line-height: 1.6; }

/* ---------- Owner（画像＋テキスト） ---------- */
.owner-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.owner-photo { width: 100%; max-width: 360px; line-height: 0; }
.owner-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.owner-body { text-align: center; }
.owner-title {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: .08em;
  margin: 6px 0 20px;
}
.owner-text {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 2.3;
  margin: 0;
}

/* ---------- 選ばれる理由（画像＋テキスト 交互レイアウト） ---------- */
.strengths {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.strength {
  display: flex;
  flex-direction: column-reverse;   /* スマホ：文面→画像の順 */
  gap: 18px;
}
.strength-img {
  line-height: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(40,30,24,.1);
}
.strength-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.strength-body { padding: 0 2px; }
.strength-label {
  display: inline-block;
  font-family: var(--serif-en);
  font-size: 13px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.strength-title { font-weight: 500; }
.strength-title {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1.5;
  margin: 0 0 12px;
}
.strength-desc {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.95;
}

/* ---------- 情報カード（営業時間など） ---------- */
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 22px;
  max-width: 560px;
  margin: 0 auto;
}
.info-row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.info-row:last-child { border-bottom: none; }
.info-label {
  flex: 0 0 84px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dk);
  letter-spacing: .04em;
}
.info-value { flex: 1; font-size: 14px; margin: 0; }
.info-value small { color: var(--ink-soft); }

/* ---------- Instagram ---------- */
.insta-wrap { text-align: center; }
.insta-handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 18px;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 0 0 22px;
}
.gallery-item {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0;
  background: var(--bg-alt);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ---------- Googleマップ ---------- */
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  line-height: 0;
}
.map-frame iframe { width: 100%; height: 280px; border: 0; }
.map-link { display: inline-block; margin-top: 14px; font-size: 13px; color: var(--accent-dk); border-bottom: 1px solid var(--accent); padding-bottom: 1px; }

/* 埋め込みなしでも確実に開けるマップカード */
.map-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.6), transparent 60%),
    repeating-linear-gradient(0deg, #e9ddcf 0 1px, transparent 1px 26px),
    repeating-linear-gradient(90deg, #e9ddcf 0 1px, transparent 1px 26px),
    linear-gradient(135deg, #f0e7db, #e3d4c2);
  position: relative;
  min-height: 220px;
  text-align: center;
  transition: box-shadow .2s, transform .15s;
}
.map-card:hover { box-shadow: 0 10px 24px rgba(0,0,0,.1); }
.map-card:active { transform: translateY(1px); }
.map-card-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; padding: 24px;
}
.map-pin { font-size: 34px; line-height: 1; filter: drop-shadow(0 3px 4px rgba(0,0,0,.2)); }
.map-card-addr { font-size: 14px; font-weight: 600; color: var(--ink); margin: 0; }
.map-card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; color: var(--accent-dk);
  border: 1px solid var(--accent);
  border-radius: 999px; padding: 8px 18px;
  font-size: 13px; font-weight: 600; margin-top: 4px;
}

/* ---------- メニュー ---------- */
.menu-cat { margin-bottom: 30px; }
.menu-cat:last-child { margin-bottom: 0; }
.menu-cat-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 8px;
  margin-bottom: 6px;
}
.menu-cat-name { font-size: 18px; font-weight: 600; letter-spacing: .04em; margin: 0; }
.menu-cat-note { font-size: 12px; color: var(--ink-soft); }
.price-sub {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--accent-dk);
  background: var(--bg-alt);
  border-radius: 6px;
  padding: 5px 10px;
  margin: 14px 0 2px;
  display: inline-block;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 13px 4px;
  border-bottom: 1px dashed var(--line);
}
.price-row:last-child { border-bottom: none; }
.price-name { font-size: 14.5px; }
.price-name small { display: block; color: var(--ink-soft); font-size: 12px; }
.price-value { font-size: 15px; font-weight: 600; color: var(--accent-dk); white-space: nowrap; }
.menu-note {
  font-size: 12.5px;
  color: var(--ink-soft);
  background: var(--bg-alt);
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 26px;
}

/* ---------- アクセス 補足 ---------- */
.access-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.access-points li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
}
.access-points li strong { color: var(--accent-dk); }

.badge-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 18px; }
.badge {
  background: #fff;
  border: 1px solid var(--accent);
  color: var(--accent-dk);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
}

/* ---------- 区切り CTA 帯 ---------- */
.cta-band {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 48px 0;
  border-top: 1px solid var(--accent);
}
.cta-band h2 { font-size: 20px; margin: 0 0 6px; letter-spacing: .06em; }
.cta-band p { margin: 0 0 22px; font-size: 13.5px; color: #cfcfcf; }
.cta-band .btns { display: flex; flex-direction: column; gap: 10px; max-width: 340px; margin: 0 auto; }
.cta-band .btn-hpb { background: #fff; color: #1b1b1d; box-shadow: none; }
.cta-band .btn-hpb:hover { background: #e8e8ea; color: #1b1b1d; }
.cta-band .btn-line { background:#fff; color: var(--ink); }

/* ---------- フッター ---------- */
.site-footer { background: #161617; color: #d6d6d8; padding: 40px 0 24px; }
.footer-inner { display: grid; gap: 26px; }
.footer-logo { height: 64px; width: auto; margin: 0 0 10px; }
.footer-name { font-size: 17px; font-weight: 600; letter-spacing: .06em; margin: 0 0 4px; }
.footer-area { font-size: 12px; color: var(--accent); margin: 0 0 8px; letter-spacing: .08em; }
.footer-address { font-size: 13px; color: #b3b3b6; margin: 0 0 2px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; align-items: flex-start; }
.footer-links-head { font-family: var(--serif-en); font-size: 13px; letter-spacing: .24em; color: var(--accent); margin: 0 0 6px; }
.footer-link { font-size: 13px; color: #b3b3b6; letter-spacing: .06em; }
.footer-link:hover { color: #fff; }
.footer-cta-lead { font-size: 13px; margin: 0 0 12px; color: #d6d6d8; }
.footer-cta-btns { display: flex; flex-direction: column; gap: 10px; max-width: 340px; }
.footer-cta-btns .btn-hpb { background: #fff; color: #1b1b1d; }
.footer-cta-btns .btn-hpb:hover { background: #e8e8ea; }
.footer-nav { display: flex; gap: 22px; }
.footer-nav a { font-size: 13px; color: #b3b3b6; letter-spacing: .1em; }
.footer-nav a:hover { color: #fff; }
.footer-copy { text-align: center; margin-top: 30px; font-size: 11px; color: #7a7a7e; letter-spacing: .08em; }

/* =========================================================
   タブレット以上
   ========================================================= */
@media (min-width: 720px) {
  body { font-size: 16px; padding-bottom: 0; }    /* PC では固定バー不要 */
  .reserve-bar { display: none; }
  .hero-inner { padding: 0 22px 58px; }
  .hero-logo { width: 188px; max-width: none; }
  .hero-title { font-size: 36px; }
  .hero-sub { font-size: 13px; }
  .hero-tagline { font-size: 15px; margin-top: 18px; gap: 16px; }
  .hero-tagline::before, .hero-tagline::after { width: 34px; }
  .hero-services { font-size: 12.5px; margin-top: 16px; }
  .hero-cta { display: flex; flex-direction: row; gap: 14px; max-width: none; justify-content: center; margin-top: 26px; }
  .hero-cta .btn { flex: 0 0 auto; }
  .hero-photo img { aspect-ratio: 16 / 8; object-position: center 38%; }
  .section { padding: 110px 0; }
  .section-title { font-size: 30px; }
  .map-frame iframe { height: 380px; }
  .footer-inner { grid-template-columns: 1.3fr 1.2fr; align-items: start; }
  .footer-nav { grid-column: 1 / -1; }
  .cta-band .btns { flex-direction: row; max-width: none; justify-content: center; }

  /* 選ばれる理由：5列の横並び */
  .reason-list { display: flex; max-width: 900px; border-top: none; }
  .reason-item { flex: 1; flex-direction: column; text-align: center; gap: 16px; padding: 10px 14px; border-bottom: none; border-right: 1px solid var(--line); }
  .reason-item:last-child { border-right: none; }
  .reason-ico svg { width: 30px; height: 30px; }
  .reason-label { font-size: 14px; }

  /* コンテンツ：左右交互の大きめレイアウト */
  .strengths { gap: 90px; }
  .strength { flex-direction: row; align-items: center; gap: 60px; }
  .strength > div { flex: 1 1 0; min-width: 0; }
  .strength:nth-child(even) { flex-direction: row-reverse; }
  .strength-img img { aspect-ratio: 4 / 3; }
  .strength-label { font-size: 12px; margin-bottom: 14px; }
  .strength-title { font-size: 27px; margin-bottom: 18px; }
  .strength-desc { font-size: 15px; }

  .owner-inner { flex-direction: row; align-items: center; gap: 56px; }
  .owner-photo { flex: 0 0 38%; max-width: none; }
  .owner-body { flex: 1; text-align: left; }
  .owner-title { font-size: 25px; }
}
