/* =============================================
   Lounge Liberty 公式サイト（お客様向け）
   方針：案B「華」＝白×ワインレッド×金（2026-07-11ママ選定）。
   シャンパンと口紅の世界。明るくて華やか、でも品がある。
   求人サイト（白＋ワイン色）と姉妹デザインでブランド統一。
   作りの約束ごとは共通：
   ・mark.fill ＝ ママがあとで埋める黄色マーカー
   ・.photo-placeholder ＝ 写真の差し替え場所
   スマホファースト（基準は幅375px前後）。
   ============================================= */

/* ---------- 色などの共通設定 ---------- */
:root {
  --base: #fdfbfc;        /* 背景：ほんのり桜がかった白 */
  --tint: #f8f0f2;        /* セクションの薄い色（交互に敷く薄ピンク） */
  --card: #ffffff;        /* カード・表の背景（白） */
  --text: #3a2e33;        /* 本文：赤みのある墨色 */
  --text-soft: #8d787f;   /* 補足文など薄めの文字 */
  --wine: #8e2f48;        /* 主役：ワインレッド（ボタン・リンク） */
  --wine-deep: #5f1f33;   /* ワインの濃いめ（見出し・キャッチコピー） */
  --gold: #a98c55;        /* 差し色：金（英字ロゴ・飾り線。品の下地） */
  --line: #ecdfe3;        /* 罫線（薄いピンクグレー） */
  --fill-bg: #ffe9a8;     /* 【　】未確定箇所のマーカー色（目立つ黄色） */
  --fill-text: #6b5300;   /* 【　】の文字色 */
}

/* ---------- 全体 ---------- */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--base);
  color: var(--text);
  /* 本文はゴシック（スマホで読みやすい）。見出しだけ明朝で上品に */
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
  -webkit-text-size-adjust: 100%;
}

/* 見出しは明朝体（Androidでは自動的にゴシックに置き換わるが問題なし） */
h1, h2, .hero-store, .mama-key, .notice-title {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-weight: 600;
}

p {
  margin: 0 0 1.4em;
}

a {
  color: var(--wine);
}

small {
  color: var(--text-soft);
}

/* ---------- 【　】未確定プレースホルダ ----------
   ママがあとで埋める箇所。公開前に全部消えているのが正。 */
mark.fill {
  background: var(--fill-bg);
  color: var(--fill-text);
  padding: 0.1em 0.4em;
  border-radius: 4px;
  font-weight: 600;
}

/* ---------- ① ファーストビュー ---------- */
.hero {
  text-align: center;
  padding: 76px 24px 64px;
  /* 上からほんのり桜色が差すグラデーション。シャンパンの泡のような明るさ */
  background:
    radial-gradient(ellipse 120% 65% at 50% 0%, #f7e8ec 0%, rgba(247, 232, 236, 0) 75%),
    var(--base);
  border-top: 4px solid var(--wine);
}

.hero-store {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin: 0 0 28px;
}

/* キャッチコピーは3行組み（気さくなママと、／かわいい女の子たちと、／たのしい夜を。）
   「かわいい女の子たちと、」が一番長いので、375px幅で折り返さないサイズにしてある */
.hero h1 {
  font-size: 26px;
  line-height: 1.9;
  letter-spacing: 0.06em;
  color: var(--wine-deep);
  margin: 0 0 28px;
}

.hero-lead {
  font-size: 15px;
  line-height: 2.2;
  margin-bottom: 32px;
}

.hero-place {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.9;
  margin-bottom: 36px;
}

.hero-place strong {
  color: var(--text);
}

.hero-cta {
  margin: 0 0 14px;
}

/* スマホでだけ改行したい場所用 */
.sp-only {
  display: inline;
}

@media (min-width: 600px) {
  .sp-only {
    display: none;
  }
}

/* ---------- ボタン共通 ---------- */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.06em;
}

.btn-primary {
  background: var(--wine);
  color: #fdf6f4;
  box-shadow: 0 4px 14px rgba(142, 47, 72, 0.25);
}

.btn-primary:active {
  background: var(--wine-deep);
}

.btn-secondary {
  background: transparent;
  color: var(--wine);
  border: 1.5px solid var(--wine);
}

/* ---------- セクション共通 ---------- */
.section {
  padding: 64px 24px;
  max-width: 640px;
  margin: 0 auto;
}

/* 薄い色を敷くセクション。背景を端まで伸ばすため幅制限は中の要素で行う */
.section-tint {
  max-width: none;
  background: var(--tint);
}

.section-tint > * {
  max-width: 592px; /* 640 - 左右padding 24×2 */
  margin-left: auto;
  margin-right: auto;
}

/* 見出しの上に小さな金の飾り線（品の下地は金が担当） */
h2 {
  text-align: center;
  font-size: 24px;
  letter-spacing: 0.12em;
  color: var(--wine-deep);
  margin: 0 0 40px;
  padding-top: 20px;
  position: relative;
}

h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 2px;
  background: var(--gold);
}

/* ---------- ② お知らせ枠（10周年） ---------- */
.notice-card {
  background: var(--card);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(95, 31, 51, 0.06);
}

.notice-title {
  color: var(--wine);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.notice-card p:last-child {
  margin: 0;
  font-size: 15px;
}

/* ---------- 写真プレースホルダ：あとで <img> に差し替える ---------- */
.photo-placeholder {
  background: var(--card);
  border: 2px dashed var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-soft);
}

.photo-placeholder p {
  margin: 0;
  font-size: 14px;
  line-height: 2;
}

/* 店内写真：横長 */
.photo-wide {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0 auto 36px;
}

/* ママ写真：縦長 */
.photo-portrait {
  max-width: 220px;
  aspect-ratio: 3 / 4;
  margin: 0 auto 32px;
}

/* プレースホルダを <img> に差し替えたあとの共通スタイル。
   .photo-wide / .photo-portrait の width・aspect-ratio・margin をそのまま活かし、
   はみ出しは object-fit: cover でトリミングする */
img.photo {
  width: 100%;
  height: auto;        /* HTMLのheight属性を無効化し、下のaspect-ratioを効かせる */
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 18px rgba(95, 31, 51, 0.1);
}
/* ママ写真は顔が上寄りなので、トリミングの基準を上側に */
img.photo-portrait {
  object-position: center top;
}

/* ---------- ③ ママからひとこと ---------- */
.mama-box {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.mama-greeting {
  text-align: center;
  font-size: 15px;
}

/* 一番伝えたい一文を静かに強調する */
.mama-key {
  text-align: center;
  font-size: 17px;
  line-height: 2;
  color: var(--wine-deep);
  padding: 20px 12px;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  margin: 32px 0;
}

/* ---------- お客様の声（引用ブロック） ---------- */
.voice {
  margin-top: 44px;
  padding: 24px 22px;
  background: var(--card);
  border-radius: 12px;
  border-left: 3px solid var(--wine);
  box-shadow: 0 2px 12px rgba(95, 31, 51, 0.06);
}

.voice-text {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-size: 15px;
  line-height: 2;
  margin: 0 0 12px;
}

.voice-who {
  text-align: right;
  font-size: 13px;
  color: var(--text-soft);
  margin: 0;
}

/* ---------- ④⑤ 情報テーブル（料金・アクセス共通） ---------- */
.price-lead {
  text-align: center;
  font-size: 15px;
  margin-bottom: 32px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(95, 31, 51, 0.08);
}

.info-table th,
.info-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
  vertical-align: top;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

.info-table th {
  width: 34%;
  background: #f8eef1;
  color: var(--wine-deep);
  font-weight: 600;
}

/* 単語の途中で折り返させない（お酒の名前など） */
.nowrap {
  white-space: nowrap;
  display: inline-block;
}

/* 料金表の下の注記（税別・キープ期間など） */
.price-note {
  margin: 20px 4px 0;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 2;
}

/* ---------- ⑤ 地図 ---------- */
.map-wrap {
  margin-top: 32px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.map-link {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
}

/* ---------- ⑥ ご予約・お問い合わせ ---------- */
.section-last {
  text-align: center;
  padding-bottom: 80px;
}

.contact-lead {
  margin-bottom: 40px;
}

.cta-block {
  margin-bottom: 20px;
}

/* 固定電話（お店直通）の案内。CTAボタンの下に小さく */
.contact-sub {
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 8px;
}

.store-info {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--text-soft);
  line-height: 2;
}

.store-info .store-name {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 8px;
}

/* ---------- フッター ---------- */
.footer {
  text-align: center;
  padding: 32px 24px;
  background: var(--wine-deep);
  color: #d9bfc7;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.footer p {
  margin: 0 0 8px;
}

.footer-recruit a {
  color: #d9bfc7;
}

/* ---------- タブレット以上（600px〜）で少しゆったりに ---------- */
@media (min-width: 600px) {
  .hero {
    padding: 104px 24px 90px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .section {
    padding: 88px 24px;
  }

  h2 {
    font-size: 28px;
  }

  .info-table th,
  .info-table td {
    font-size: 15px;
    padding: 16px 20px;
  }

  .map-wrap iframe {
    height: 380px;
  }
}
