@charset "UTF-8";
/* ============================================================
   THE TAGAYA 京都御幸町 特設LP
   デザイン: 御幸町サロンLP.xd（SP 750px = 37.5rem 基準）
   1rem = デザイン20px（CSS 10px @375vw）
   ============================================================ */

:root {
  --pink: #e4017f;          /* CTA・フッター */
  --salmon: #f3b2b2;        /* ピンクゾーン背景 */
  --salmon-dome: #f4b2b2;   /* ドーム */
  --ink: #242424;
  --gray-line: #434343;
  --serif-jp: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Noto Serif JP", serif;
  /* Webフォントを第一候補にして全環境で同一描画にする（ローカルフォント差異による折返し/重なり防止） */
  --serif-en: "EB Garamond", "Hoefler Text", Garamond, "Times New Roman", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { font-size: calc(100vw / 37.5); }

body {
  font-family: var(--sans);
  color: #000;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.8;
}

.page {
  position: relative;
  max-width: 37.5rem;
  margin: 0 auto;
  background: #fff;
  overflow: hidden;               /* 桜モチーフのはみ出し対策 */
  padding-bottom: 0;
}

/* PC用固定背景・左ブロック・タグライン（SPでは非表示） */
.pc-bg, .pc-veil, .pc-left, .pc-tagline { display: none; }

/* ============================================================
   PC（768px〜）: XD「御幸町サロン – pc」アートボード準拠
   デザイン幅1500px基準（--u = 1design px）。中央右寄りに
   SPカラム（x648-1192 / 幅544）だけがスクロールする。
   ============================================================ */
@media (min-width: 768px) {
  :root {
    --u: calc(100vw / 1500);       /* 1 design px */
    /* 左ブロックの文字・ボタン用: 画面幅が1500px未満でも縮まない（下限=デザイン原寸1px） */
    --ul: max(1px, calc(100vw / 1500));
  }
  html {
    /* SPカラム幅544 design px ÷ 37.5 */
    font-size: calc(100vw * 0.0096711);
    height: 100%;
    overflow: hidden;
  }
  body {
    height: 100%;
    overflow: hidden;
    background: #fff;
  }

  /* 背景: 白 → 宴会場写真(74.9%) → ピンクoverlay合成(90%)+背景ぼかし */
  .pc-bg {
    display: block;
    position: fixed;
    inset: 0;
    background: #fff;
  }
  .pc-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../img/thetagaya/pc_bg.jpg) no-repeat center / cover;
    opacity: 0.749;
  }
  .pc-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(243, 178, 178, 0.9);
    mix-blend-mode: overlay;
    -webkit-backdrop-filter: blur(3.3px);
    backdrop-filter: blur(3.3px);
  }
  /* 内側のピンクベール（四辺に額縁状の余白） */
  .pc-veil {
    display: block;
    position: fixed;
    top: calc(43 * var(--u));
    right: calc(49 * var(--u));
    bottom: calc(42 * var(--u));
    left: calc(49 * var(--u));
    background: #f3b2b2;
    opacity: 0.599;
  }

  /* 左ブランドブロック（ボタン列 x217-480 が基準幅） */
  .pc-left {
    display: block;
    position: fixed;
    left: calc(217 * var(--u));
    top: 50%;
    transform: translateY(-50%);
    width: calc(263 * var(--ul));
    z-index: 1;
  }
  .pc-left__logo {
    display: block;
    width: calc(374 * var(--ul));
    max-width: none;
    margin: 0 calc(-55.5 * var(--ul));
    filter: brightness(0) invert(1);
  }
  .pc-left__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: calc(58 * var(--ul));
    font-family: var(--serif-jp);
    font-size: calc(14 * var(--ul));
    transition: opacity 0.25s;
  }
  .pc-left__btn:hover { opacity: 0.75; }
  .pc-left__btn--pink {
    background: var(--pink);
    color: #fff;
    margin-top: calc(65 * var(--ul));
  }
  .pc-left__btn--white {
    background: #fff;
    color: #000;
    margin-top: calc(10 * var(--ul));
  }
  .pc-left__copy {
    margin-top: calc(51 * var(--ul));
    font-family: "Hiragino Kaku Gothic ProN", var(--sans);
    font-size: calc(12 * var(--ul));
    letter-spacing: 0.11em;
    line-height: 2;
    color: #fff;
  }

  /* カラム右横の縦書きタグライン（90°回転） */
  .pc-tagline {
    display: block;
    position: fixed;
    left: calc(1293.5 * var(--u));
    top: 50%;
    transform: translateY(-50%);
    width: calc(55 * var(--u));
    height: calc(321 * var(--u));
    z-index: 1;
    pointer-events: none;
  }
  .pc-tagline img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(321 * var(--u));
    height: calc(55 * var(--u));
    max-width: none;
    transform: translate(-50%, -50%) rotate(90deg);
    filter: brightness(0) invert(1);
  }

  /* SPカラム: デザインどおりフラット（x648 / 幅544）。この中だけスクロール */
  .page {
    position: fixed;
    left: calc(648 * var(--u));
    top: 0;
    width: calc(544 * var(--u));
    max-width: none;
    margin: 0;
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 2;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .page::-webkit-scrollbar { display: none; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- 共通パーツ ---------- */

/* 見出し（Hoefler系セリフ） */
.h-serif {
  font-family: var(--serif-en);
  font-weight: 400;
  font-size: 5rem;
  line-height: 1.17;
  color: #000;
}
.h-serif--tight { letter-spacing: -0.04em; }
.h-serif--center { text-align: center; font-size: 3.15rem; }

.h-sub {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.13em;
  text-align: center;
  margin-top: 0.2rem;
}

.h-note {
  font-family: var(--serif-jp);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  line-height: 1.8;
}

.catch {
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.body-text {
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  line-height: 1.96;   /* 55/28 */
}
.body-text--white { color: #fff; letter-spacing: 0; }
.body-text--center { text-align: center; }

/* CTAボタン */
.cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 3.5rem;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5.5rem;
  font-family: var(--serif-jp);
  font-size: 1.4rem;
  text-align: center;
  transition: opacity 0.25s;
}
.btn:hover { opacity: 0.75; }
.btn--pink { background: var(--pink); color: #fff; }
.btn--line { border: 1px solid var(--gray-line); color: #000; background: transparent; }
.btn--white { background: #fff; }
.btn--tel .icon-phone {
  width: 1.4rem;
  height: 1.85rem;
  margin-right: 1.4rem;
  flex-shrink: 0;
  object-fit: contain;
}

/* 桜の花アイコン（曲線テキスト下の小花） */
.flower {
  display: block;
  width: 1.72rem;
  height: 1.65rem;
  margin: 0 auto;
  opacity: 0.47;
  background: currentColor;
  -webkit-mask: url(../img/thetagaya/flower_icon.svg) no-repeat center / contain;
  mask: url(../img/thetagaya/flower_icon.svg) no-repeat center / contain;
}
.flower--gray { color: #6a6a6a; }
.flower--white { color: #fff; }
.flower--dark { color: #1a1311; }

/* アーチ状テキスト（SVG画像） */
.arc-text {
  display: block;
  margin: 0 auto;
  width: 12.1rem;
  height: auto;
  filter: brightness(0) invert(1);   /* 白 */
}
.arc-text--dark { filter: none; }

/* 桜モチーフ（背景装飾） */
.sakura {
  position: absolute;
  width: 18.1rem;
  height: 17.3rem;
  opacity: 1;
  background: url(../img/thetagaya/sakura.svg) no-repeat center / contain;
  pointer-events: none;
  z-index: 0;
}
.sakura { opacity: 1; }
.sakura::before { content: none; }
/* 画像自体の色は濃いので薄く */
.sakura { filter: none; opacity: 0.099; }
.sakura--small { width: 11.5rem; height: 11rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 66rem;
}
.hero__photo {
  position: absolute;
  left: 2.5rem;
  top: 2.5rem;
  width: 35rem;
  height: 63.5rem;
  object-fit: cover;
}
.hero__lead {
  position: absolute;
  left: 0;
  right: 0;
  top: 5.6rem;
  font-family: var(--serif-jp);
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: center;
  color: #000;
}
.hero__logo {
  position: absolute;
  left: 7.6rem;
  top: 12.4rem;
  width: 22.3rem;
  height: auto;
}
.hero__vertical {
  position: absolute;
  left: 0.2rem;
  top: 28.5rem;
  writing-mode: vertical-rl;
  font-family: var(--serif-jp);
  font-size: 0.8rem;
  letter-spacing: 0.26em;
  color: #000;
  white-space: nowrap;
}

/* CTA(1) */
.cta--first { margin: 4.2rem 0 4rem; }

/* ============================================================
   MESSAGE（幸せの名を持つ、この場所から。）
   ============================================================ */
.message {
  position: relative;
  padding: 4.4rem 0 16.7rem;
  text-align: center;
}
.message::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/thetagaya/message_bg.jpg) no-repeat center top / cover;
  opacity: 0.116;
  pointer-events: none;
}
.message > * { position: relative; }
.message__title {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 3rem;
  letter-spacing: 0.04em;
  line-height: 1.33;
  margin-top: 2.8rem;
}
.message__en {
  font-family: var(--serif-jp);
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin-top: 3.75rem;
}
.message__body {
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  line-height: 1.96;
  margin-top: 3.5rem;
  padding: 0 2.5rem;
}

/* ============================================================
   LIFE STORY BRAND
   ============================================================ */
.lifestory {
  position: relative;
  padding: 0 2.5rem;
  margin-top: -9.2rem;   /* 写真がMESSAGE背景に少しかかる */
}
.lifestory__photo {
  position: relative;
  width: 32.5rem;
  height: 16.25rem;
  object-fit: cover;
}
.lifestory__head {
  position: relative;
  margin-top: 4.4rem;
}
/* 英字ノートは2行目"BRAND"の右に重ねる（デザイン準拠の絶対配置） */
.lifestory__head .h-note {
  position: absolute;
  left: 21.1rem;
  top: 6.4rem;
  width: 12.1rem;   /* "A wedding is not the end." が1行に収まる幅 */
}
.lifestory .catch { margin-top: 4rem; }
.lifestory .body-text { margin-top: 4.05rem; }

.sakura--ls-right { top: 30rem; right: -3.2rem; width: 11.5rem; height: 11rem; }
.sakura--ls-left { top: 63rem; left: -9.8rem; }

/* ============================================================
   SEMI-ORDER WEDDING
   ============================================================ */
.semiorder {
  position: relative;
  margin-top: 6.2rem;      /* XD書き出し画像の上端(=デザインy4981)がデザイン位置と揃う値 */
}
/* 見出し+縦書き100 PROPOSALS+写真はXD書き出しの1枚画像（images/semiorder_hero.jpg, @2x）。
   デザインの組版（Hoefler Text 100px・回転英字・写真の重なり）を完全再現するため画像化。
   テキスト情報は .visually-hidden の h2 と img alt で担保 */
.semiorder__hero {
  display: block;
  width: 37.5rem;          /* =750 design px（フル幅） */
  height: auto;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.semiorder__catchwrap {
  position: relative;
  padding: 0 2.5rem;
  margin-top: 4.6rem;
}
/* 英語ノートはデザイン準拠でキャッチ右横に絶対配置（x=497） */
.semiorder__catchwrap .h-note {
  position: absolute;
  left: 24.85rem;
  top: 0.45rem;
}
.semiorder .body-text { padding: 0 2.5rem; margin-top: 4.2rem; }

/* CTA(2) */
.cta--second {
  position: relative;
  margin: 3.4rem 0 0;
  padding-bottom: 4rem;
}
.sakura--cta2 { top: -6rem; right: -3.5rem; }

/* ============================================================
   PINK ZONE（変わらないもの。/ 新しくなるもの。）
   ============================================================ */
.pinkzone {
  position: relative;
  background: var(--salmon);
  border-radius: 50% 50% 0 0 / 16.4rem 16.4rem 0 0;
  margin-top: 0;
  padding-top: 6.1rem;    /* ドーム頂点 3392 → arc 3453 */
  padding-bottom: 12.15rem;   /* 本文下端→ピンク帯下端 243 design px（本文→FAIR写真の空きは4rem） */
}
.pinkzone__dome { display: none; }

.keep, .new { position: relative; }
.new { margin-top: 6.9rem; }

.pink-title {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 3rem;
  letter-spacing: 0.01em;
  color: #fff;
  text-align: center;
  line-height: 1.33;
  margin-top: 2.55rem;
}

.keep .flower, .new .flower { margin-top: 0.1rem; }

/* リボン */
.ribbon {
  position: relative;
  width: 35rem;
  height: 4.55rem;
  margin: 0.85rem auto 0;
  color: #fff;                 /* SVG currentColor＝白 */
  background: currentColor;
  -webkit-mask: url(../img/thetagaya/ribbon.svg) no-repeat center / contain;
  mask: url(../img/thetagaya/ribbon.svg) no-repeat center / contain;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* mask併用のためテキストは別レイヤー */
.ribbon { -webkit-mask: none; mask: none; background: none; }
.ribbon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/thetagaya/ribbon.svg) no-repeat center / contain;
  filter: brightness(0) invert(1);
}
.ribbon::after {
  content: "";
  position: absolute;
  inset: 0;
  /* 両端の●はデザイン準拠の座標（中心 x=41 / 659 design px）に
     白丸(直径0.8rem)+サーモン中心(直径0.4rem)を重ねて描画 */
  background:
    radial-gradient(circle at 2.05rem 50%, var(--salmon) 0 0.2rem, #fff 0.2rem 0.4rem, transparent 0.4rem),
    radial-gradient(circle at 32.95rem 50%, var(--salmon) 0 0.2rem, #fff 0.2rem 0.4rem, transparent 0.4rem);
}
.ribbon__text {
  position: relative;
  z-index: 1;
  font-size: 3.15rem;
  color: var(--salmon);
  line-height: 1;
  white-space: nowrap;
}

/* カルーセル */
.carousel {
  margin-top: 3.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel.is-dragging { scroll-snap-type: none; cursor: grabbing; }
.carousel.is-dragging img { pointer-events: none; }
.carousel__track {
  display: flex;
  gap: 0.5rem;
  width: max-content;
  padding: 0 2.5rem;
}
.carousel__slide {
  position: relative;
  width: 32.5rem;
  height: 47.55rem;
  flex-shrink: 0;
  scroll-snap-align: center;
}
.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel__slide::after {
  content: "";
  position: absolute;
  inset: 1.2rem;
  border: 1px solid #fff;
  pointer-events: none;
}
.keep .body-text, .new .body-text { padding: 0 2.5rem; margin-top: 4rem; }

/* ============================================================
   BRIDAL FAIR
   ============================================================ */
.fair {
  position: relative;
  background: #fff;
  /* 写真の負マージンが親とマージン相殺すると白背景ごと持ち上がり
     ピンク帯を覆ってしまう。BFC化して写真だけをピンク側へ食い込ませる */
  display: flow-root;
}
.fair__photo {
  position: relative;
  width: 32.5rem;
  height: 16.25rem;
  object-fit: cover;
  margin: -8.15rem auto 0;   /* ピンクゾーンにまたがる（デザイン準拠: 写真上端はサーモン境界より163 design px上） */
}
.fair .h-serif--center { margin-top: 3.25rem; }   /* 写真下端→見出しベースライン 125 design px */
.fair .body-text--center { margin-top: 1.8rem; }
.fair .cta { margin-top: 2.55rem; }

/* ============================================================
   AFTERNOON TEA
   ============================================================ */
.tea {
  position: relative;
  padding-top: 9.75rem;
}
.tea .flower--dark { margin-top: 0.75rem; }
.tea__photo1 {
  width: 25.9rem;
  height: 26.05rem;
  object-fit: cover;
  margin: 1.5rem auto 0;
}
.tea__row {
  display: flex;
  margin-top: 5.5rem;
}
.tea__photo2 {
  width: 15.05rem;
  height: 28.55rem;
  object-fit: cover;
  flex-shrink: 0;
}
.tea__rowright { padding-left: 3.7rem; }
.tea__catch {
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  line-height: 1.96;
  padding-top: 3.65rem;
}
.tea__photo3 {
  width: 18.75rem;
  height: 16.1rem;
  object-fit: cover;
  margin-top: 5.55rem;
}
.tea .body-text { padding: 0 2.5rem; margin-top: 2.25rem; }
.tea .cta { margin-top: 2.45rem; }

.sakura--tea-left { top: -4rem; left: -9rem; }
.sakura--tea-right { top: 33rem; right: -3.2rem; width: 11.5rem; height: 11rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  position: relative;
  padding: 7.3rem 2.5rem 8.35rem;
}
.faq .h-serif--center, .faq .h-sub { position: relative; }
.faq__list {
  position: relative;
  list-style: none;
  margin-top: 1.1rem;
}
.faq__item { border-bottom: 1px solid var(--ink); }
.faq__q {
  position: relative;
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 1.6rem;
  padding: 2.1rem 2.4rem 2rem 0.5rem;
  background: none;
  border: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
}
.faq__mark {
  font-family: "Hiragino Kaku Gothic ProN", var(--sans);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.43;
  flex-shrink: 0;
}
.faq__qtext {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.43;
  flex: 1;
}
.faq__arrow {
  position: absolute;
  right: 0.3rem;
  top: 2.7rem;
  width: 1.85rem;
  height: 1rem;
  background: url(../img/thetagaya/faq_arrow.svg) no-repeat center / contain;
  transition: transform 0.3s;
}
.faq__item.is-open .faq__arrow { transform: rotate(180deg); }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > .faq__abox { overflow: hidden; }
.faq__abox {
  display: flex;
  gap: 1.7rem;
  background: #f5f5f5;
}
.faq__item.is-open .faq__abox {
  padding: 1.6rem 1.6rem 2rem 0.75rem;
  margin-bottom: 1rem;
}
.faq__atext {
  font-size: 1.4rem;
  line-height: 1.71;   /* 48/28 */
  flex: 1;
}

.sakura--faq-right { top: -5rem; right: -6rem; }
.sakura--faq-left { top: -3.5rem; left: -2.2rem; width: 8.3rem; height: 7.9rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--pink);
  color: #fff;
  padding-top: 3rem;
  text-align: center;
}
.footer__logo {
  width: 7.75rem;
  height: auto;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}
.footer__nav {
  display: flex;
  margin-top: 2.8rem;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.footer__link {
  flex: 1;
  padding: 1.3rem 0;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}
.footer__link + .footer__link { border-left: 1px solid #fff; }
.footer__info {
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.85;
  letter-spacing: 0.02em;
  padding: 2.2rem 2.5rem 0;
}
.footer__mail {
  display: inline-block;
  margin-top: 0.4rem;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.footer__copy {
  font-size: 1.1rem;
  line-height: 1.7;
  padding: 1.8rem 0 2.4rem;
}
.footer__copy small { font-size: 1.1rem; }

/* ============================================================
   固定フッターバー
   ============================================================ */
.fixedbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  height: 5.9rem;
  background: rgba(150, 150, 150, 0.9);
  padding: 0 1.2rem;
  transition: transform 0.35s ease;
}
/* SP: 初期は隠し、下にスクロールしてから追従表示（JSで is-hidden を切替） */
.fixedbar.is-hidden { transform: translateY(120%); }
@media (min-width: 768px) {
  /* PCでは左ブロックに予約ボタンがあるため追従バーは非表示 */
  .fixedbar { display: none; }
}
.fixedbar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.6rem;
  font-family: var(--serif-jp);
  font-size: 1.3rem;
}
.fixedbar__btn--pink { flex: 0 0 14.2rem; background: var(--pink); color: #fff; }
.fixedbar__btn--white { flex: 0 0 19.95rem; background: #f5f5f5; color: #000; }

/* 固定バーで隠れないよう余白（SPのみ。PCは追従バー非表示のため余白不要） */
.page { padding-bottom: 5.9rem; }
@media (min-width: 768px) {
  .page { padding-bottom: 0; }
}

/* ============================================================
   フェードイン
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .fade {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .fade.is-visible { opacity: 1; transform: none; }
}


/* ============================================================
   以下: 予約フォームページ用（旧 form.css を統合）
   ============================================================ */
@charset "UTF-8";
/* ============================================================
   THE TAGAYA 京都御幸町 予約フォーム（フェア見学 / アフタヌーンティー）
   本体LPのトンマナ（style.css）に合わせたフォーム専用スタイル。
   WordPress + Contact Form 7 組み込み前提:
   CF7が出力する input/textarea/select にもそのまま効くよう
   要素セレクタ主体で書いている（.reserve__form 配下限定）。
   ============================================================ */

/* ---------- ページヘッダー ---------- */
.formhead {
  position: relative;
  padding: 2.4rem 2.5rem 0;
  text-align: center;
}
.formhead__logo {
  width: 16rem;
  height: auto;
  margin: 0 auto;
}
.formhead__back {
  position: absolute;
  left: 2.5rem;
  top: 2.6rem;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.15rem;
}
.formhead__back::before { content: "←"; margin-right: 0.5rem; }

/* ---------- 見出しブロック ---------- */
.reserve {
  position: relative;
  padding: 5rem 0 6rem;
}
.reserve .h-sub { margin-top: 0.6rem; }
.reserve__lead {
  padding: 0 2.5rem;
  margin-top: 2.4rem;
  text-align: center;
}

/* ---------- フォーム本体 ---------- */
.reserve__form {
  margin-top: 4rem;
  padding: 0 2.5rem;
}

.form-field { margin-top: 2.8rem; }
.form-field:first-child { margin-top: 0; }

.form-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.form-label .req,
.form-label .opt {
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 0.35rem 0.7rem;
}
.form-label .req { background: var(--pink); color: #fff; }
.form-label .opt { background: #e8e8e8; color: #555; }

.form-hint {
  font-size: 1.1rem;
  color: #777;
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
  line-height: 1.6;
}

/* 入力要素（CF7出力にも効くよう要素セレクタで） */
.reserve__form input[type="text"],
.reserve__form input[type="tel"],
.reserve__form input[type="email"],
.reserve__form input[type="date"],
.reserve__form select,
.reserve__form textarea {
  display: block;
  width: 100%;
  margin-top: 1rem;
  padding: 1.15rem 1.3rem;
  font-family: var(--sans);
  font-size: 1.4rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--gray-line);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.reserve__form input:focus,
.reserve__form select:focus,
.reserve__form textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 1px var(--pink);
}
.reserve__form input::placeholder,
.reserve__form textarea::placeholder { color: #b5b5b5; }
.reserve__form textarea { min-height: 12rem; resize: vertical; line-height: 1.8; }

/* date/select は高さを揃え、selectに矢印を付ける */
.reserve__form input[type="date"] {
  min-height: 4.9rem;
  -webkit-appearance: none;
}
.select-wrap { position: relative; margin-top: 1rem; }
.select-wrap select { margin-top: 0; padding-right: 4rem; }
.select-wrap::after {
  content: "";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 0.85rem;
  background: url(../img/thetagaya/faq_arrow.svg) no-repeat center / contain;
  pointer-events: none;
}

/* 希望日+時間の横並び（SPでは縦積み） */
.form-datetime {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-datetime > * { min-width: 0; }
.form-datetime input[type="date"] { margin-top: 1rem; }

/* ラジオ / チェックボックス（CF7の .wpcf7-list-item 構造にも対応） */
.form-choices { margin-top: 1.2rem; }
.form-choices label,
.reserve__form .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.4rem;
  line-height: 1.7;
  padding: 0.55rem 0;
  cursor: pointer;
}
.reserve__form input[type="radio"],
.reserve__form input[type="checkbox"] {
  width: 1.9rem;
  height: 1.9rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
  accent-color: var(--pink);
}
.reserve__form .wpcf7-list-item { display: block; margin: 0; }

/* 区切り線 */
.form-divider {
  border: none;
  border-top: 1px solid #e2e2e2;
  margin: 3.6rem 0 0;
}

/* 個人情報同意 */
.form-privacy {
  margin-top: 3.2rem;
  padding: 2rem 2rem 2.2rem;
  background: #f5f5f5;
}
.form-privacy__text {
  font-size: 1.2rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #444;
}
.form-privacy__text a { text-decoration: underline; text-underline-offset: 0.2em; }
.form-privacy .form-choices { margin-top: 1.2rem; }
.form-privacy .form-choices label { justify-content: center; font-weight: 500; }

/* 送信ボタン */
.form-submit {
  margin-top: 3.6rem;
  padding: 0 1rem;
}
.form-submit button,
.reserve__form input[type="submit"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 5.5rem;
  font-family: var(--serif-jp);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--pink);
  border: none;
  cursor: pointer;
  transition: opacity 0.25s;
}
.form-submit button:hover,
.reserve__form input[type="submit"]:hover { opacity: 0.75; }
.form-submit button:disabled { background: #ccc; cursor: not-allowed; }

/* 送信完了メッセージ（デモ用） */
.form-done {
  display: none;
  margin-top: 3.6rem;
  padding: 3rem 2.5rem;
  text-align: center;
  background: #fdf3f8;
  border: 1px solid var(--pink);
}
.form-done.is-shown { display: block; }
.form-done__title {
  font-family: var(--serif-jp);
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: var(--pink);
}
.form-done__text {
  margin-top: 1.2rem;
  font-size: 1.3rem;
  line-height: 1.9;
}

/* エラー表示（デモ用 / CF7 .wpcf7-not-valid-tip と同トーン） */
.form-error,
.reserve__form .wpcf7-not-valid-tip {
  display: block;
  font-size: 1.15rem;
  color: #d4001f;
  margin-top: 0.6rem;
}
.reserve__form .is-invalid input,
.reserve__form .is-invalid select {
  border-color: #d4001f;
}

/* イベント案内ボックス（開催概要） */
.form-info {
  margin: 3rem 2.5rem 0;
  border: 1px solid #e2e2e2;
  padding: 2rem 2.2rem;
}
.form-info__title {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.form-info__list {
  margin-top: 1rem;
  font-size: 1.25rem;
  line-height: 2;
  letter-spacing: 0.03em;
}
.form-info__list dt {
  float: left;
  clear: left;
  width: 7.5em;
  font-weight: 500;
  color: #666;
}
.form-info__list dd { margin-left: 8em; }

/* 予約フォームページには固定フッターバーが無いため、
   追従バー用余白（.page padding-bottom 5.9rem）をフォームページに限り打ち消す */
.thetagaya-form .page { padding-bottom: 0; }
