@charset "UTF-8";
/* Design tokens (CSS variables) */
:root {
  --container: 1088px;
  --gutter: 20px;
  --brand: #8b1e1e;
  --ink: #111;
  --paper: #fff;
  --wave-h: 140px;
  /* z-index map */
  --z-header: 100;
  --z-nav: 110;
  --z-dropdown: 200;
  --z-backdrop: 900;
  --z-drawer: 1000;
  /* hero dim */
  --hero-dim: 0.38; /* default */
  --hero-dim2: 0.60; /* night */
}

/* px -> rem（html 16px前提） */
/* media query helper */
/* 軽めReset（Ress併用でも破綻しにくい） */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

/* base */
html,
body {
  /* 横スクロール保険：waveやdrawerで事故りやすい */
  overflow-x: clip;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  color: #333;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

/* a11y: 動きが苦手な人向け（OS設定尊重） */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  html {
    scroll-behavior: auto;
  }
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1.25;
  font-weight: 500;
}

p {
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* 3カラム“ガター付き” */
.partsGrid {
  display: grid;
  grid-template-columns: minmax(8vw, 1fr) minmax(auto, var(--container)) minmax(8vw, 1fr);
}
.partsGrid > * {
  grid-column: 2;
}

/* 4 → 12 */
.grid12 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 10px;
}
.grid12 > * {
  grid-column: 1/-1;
}

@media (min-width: 768px) {
  .grid12 {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 16px;
  }
}
.cols-mob2 > * {
  grid-column: span 2;
}

.cols-mob2.cols-pc3 > :first-child {
  grid-column: span 4;
}

@media (min-width: 768px) {
  .cols-pc2 > * {
    grid-column: span 6;
  }
  .cols-pc3 > * {
    grid-column: span 4;
  }
  .cols-pc4 > * {
    grid-column: span 3;
  }
}
/* header基礎（ナビ本体は component/nav 側） */
/* ===== Sticky Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header, 100);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* 影：スクロール中だけ付けたい場合は JSで .is-scrolled を付与 */
.header.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ヒーロー上で透明にしたい場合（ページに .has-hero を付ける） */
.has-hero .header {
  background: rgba(255, 255, 255, 0.15);
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.has-hero .header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

/* hero（文字・レイアウト土台） */
.catchArea {
  min-height: min(80vh, 720px);
  display: flex;
  align-items: center;
  position: relative; /* steam/slide の基準 */
  overflow: hidden;
}

.catchArea h1 {
  color: #fff;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.15;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* 文字レイヤーを前へ */
.catchArea > .container {
  position: relative;
  z-index: 2;
}

.footer.partsGrid {
  position: relative;
  row-gap: 74px;
  padding: 80px 0;
  border-top: 1px solid var(--brand);
  background: linear-gradient(180deg, #2a0d0d, #0b0b0b);
  color: #fff;
}

@media (min-width: 768px) {
  .footer.partsGrid {
    row-gap: 99px;
  }
}
.footer-site.grid12 {
  row-gap: 32px;
}

.profile p {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.copyright ul {
  display: grid;
  grid-auto-flow: column;
  justify-content: start;
  column-gap: 18px;
  font-size: 12px;
}

.copyright p {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

@media (min-width: 768px) {
  .copyright {
    justify-self: end;
    align-self: end;
    text-align: right;
  }
  .copyright ul {
    column-gap: 28px;
  }
}
/* 残火パーティクル（使うなら footer 内に .footer-embers を置く） */
.footer-embers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
}

.footer-embers span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255, 120, 60, 0.6);
  border-radius: 50%;
  animation: emberSlow 6s linear infinite;
}

@keyframes emberSlow {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-80px);
    opacity: 0;
  }
}
.list > .grid12 {
  row-gap: 32px;
}

.list h2 {
  color: #444;
  font-size: 26px;
  font-weight: 400;
}

.list h2 + p {
  font-size: 14px;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .list h2,
  .list h2 + p {
    grid-column: span 8;
  }
  .list h2 {
    font-size: 32px;
  }
  .list h2 + p {
    font-size: 16px;
  }
}
/* cards */
.list ul.grid12 {
  row-gap: 20px;
}

.list ul img {
  margin-bottom: 10px;
  width: 100%;
  height: 155px;
  object-fit: cover;
  border-radius: 10px;
}

.list ul h3 {
  font-size: 16px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .list ul.grid12 {
    row-gap: 28px;
  }
  .list ul img {
    height: 265px;
  }
  .list ul.cols-pc3 img {
    height: 353px;
  }
  .list ul h3 {
    font-size: 18px;
  }
}
/* section variants */
.list-plant {
  padding: 80px 0;
  background: linear-gradient(#ffffff, #f3eee7);
}

.list-exp {
  padding: 80px 0;
  background: #f6efe7;
}

.list-item {
  padding: 80px 0;
  background: linear-gradient(rgba(15, 10, 8, 0.72), rgba(15, 10, 8, 0.72)), url("../img/bg-wood.jpg") center/cover no-repeat;
  color: #fff;
}

.list-item h2 {
  color: #fff;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.list-item p {
  color: rgba(255, 255, 255, 0.78);
}

/* 見出し＆説明を“木目に埋もれない”札に */
.list-item .frame > h2,
.list-item .frame > p {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
}

.list-item .frame > p {
  margin-top: 10px;
}

/* カード側も少しだけ持ち上げ */
.list-item ul.grid12 li a {
  display: block;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.2);
  padding: 12px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
}

.list-item ul.grid12 h3 {
  color: #fff;
}

.list-item ul.grid12 p {
  color: rgba(255, 255, 255, 0.85);
}

.list-item ul.grid12 img {
  filter: saturate(1.03) contrast(1.03);
}

@media (min-width: 768px) {
  .list-item {
    padding: 60px 0;
  }
}
@media (min-width: 768px) {
  .list-plant {
    padding-bottom: 86px;
  }
  .list-plant > .grid12::before {
    right: 17px;
  }
}
/* item と footer の境目に置く想定 */
.infoStrip {
  padding: 22px 0;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.infoStrip-inner {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  padding: 16px;
  background: #ffffff;
  display: grid;
  row-gap: 12px;
}

/* “営業時間”とボタン群を並べる */
@media (min-width: 768px) {
  .infoStrip-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 18px;
  }
}
.infoStrip h3 {
  color: #111;
  font-size: 18px;
  margin-bottom: 6px;
}

.infoStrip p {
  color: rgba(17, 17, 17, 0.72);
  line-height: 1.8;
}

.infoStrip-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media (min-width: 768px) {
  .infoStrip-actions {
    justify-content: flex-end;
  }
}
.btnLine,
.btnGhost,
.btnPrimary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 500;
}

.btnLine {
  background: #111;
  color: #fff;
}

.btnGhost {
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
}

.btnPrimary {
  width: 100%;
  border: none;
  background: var(--brand);
  color: #fff;
  padding: 16px 18px;
  cursor: pointer;
}

/* nav row */
.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  position: relative;
  z-index: var(--z-nav);
}

/* brand */
.brand {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.brand img {
  max-height: 56px;
}

/* ロゴ：押下で炎が光る（JSで .is-glow） */
.brand.is-glow img {
  filter: drop-shadow(0 0 10px rgba(255, 80, 80, 0.9)) drop-shadow(0 0 24px rgba(255, 30, 30, 0.6));
  transition: filter 0.2s ease;
}

/* PC menu (base) */
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  color: var(--brand);
  font-size: 15px;
}

.nav-menu a {
  white-space: nowrap;
}

.nav-menu a[aria-current=page] {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* hamburger */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle__bar {
  width: 18px;
  height: 2px;
  background: var(--ink);
}

/* backdrop */
.nav-backdrop[hidden] {
  display: none !important;
}

/* =========================================
  WP dropdown (menu-item-has-children / sub-menu)
========================================= */
/* 親 */
.nav-menu li.menu-item-has-children {
  position: relative;
}

/* 子メニュー（PC前提の初期状態：閉じる） */
.nav-menu li.menu-item-has-children > ul.sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 200px;
  background: var(--paper);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  padding: 8px 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s;
  z-index: var(--z-dropdown);
}

/* 子メニューのリンク（共通） */
.nav-menu li.menu-item-has-children > ul.sub-menu a {
  display: block;
  padding: 10px 14px;
  color: #333;
}

.nav-menu li.menu-item-has-children > ul.sub-menu a:hover {
  background: var(--brand);
  color: #fff;
}

/* PC：hoverで開く */
@media (min-width: 768px) {
  .nav-menu li.menu-item-has-children:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
/* JS運用：is-openで開く（主にSP） */
.nav-menu li.menu-item-has-children > ul.sub-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Chevron（FontAwesome） */
.nav-menu li.menu-item-has-children > a::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin-left: 6px;
  transform: translateY(-1px);
  opacity: 0.9;
}

/* =========================================
  SP drawer + accordion
========================================= */
@media (max-width: 767px) {
  .nav-toggle {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 86vw;
    max-width: 360px;
    padding: 90px 20px 20px;
    background: #0b0b0b;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    transform: translateX(105%);
    transition: transform 0.28s;
    z-index: var(--z-drawer);
    box-sizing: border-box;
  }
  .nav-menu.is-open {
    transform: translateX(0);
  }
  .nav-menu a {
    color: #fff;
  }
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: var(--z-backdrop);
  }
  /* SP：子メニューはアコーディオン */
  .nav-menu li.menu-item-has-children > ul.sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 10px;
    display: none;
  }
  .nav-menu li.menu-item-has-children > ul.sub-menu.is-open {
    display: block;
  }
  .nav-menu li.menu-item-has-children > ul.sub-menu a {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
  }
  .nav-menu li.menu-item-has-children > a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: #fff;
  }
}
/* =========================
  Steam (shared)
  - ヒーロー上の“湯気オーバーレイ”
  - SVG湯気を使う場合の見え方補強も同梱
========================= */
.heroSteamOverlay {
  position: absolute;
  inset: -12%;
  pointer-events: none;
  /* heroSlide::after(暗幕) より上、文字より下に置きたい */
  z-index: 1;
  opacity: 0.26;
  background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.2), transparent 55%), radial-gradient(circle at 70% 35%, rgba(255, 120, 120, 0.16), transparent 60%), radial-gradient(circle at 55% 55%, rgba(255, 255, 255, 0.14), transparent 62%);
  filter: blur(20px);
  mix-blend-mode: screen;
  animation: steamOverlay 7.2s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes steamOverlay {
  0% {
    transform: translateY(10px) scale(1.02);
    opacity: 0.14;
  }
  50% {
    transform: translateY(-16px) scale(1.08);
    opacity: 0.36;
  }
  100% {
    transform: translateY(10px) scale(1.02);
    opacity: 0.14;
  }
}
@media (prefers-reduced-motion: reduce) {
  .heroSteamOverlay {
    animation: none !important;
    opacity: 0.14;
  }
}
/* 夜は湯気を少しだけ強く（LP含む） */
body.is-night .heroSteamOverlay {
  opacity: 0.32;
}

/* SVG湯気（.steam を使ってる場合の見え方補強） */
.steam {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.25));
  will-change: transform;
  z-index: 1;
}

body.is-night .steam {
  opacity: 0.28;
}

/* =========================
  Wave Divider (shared)
  - .custom-shape-divider-bottom-1615337033 を想定
  - JSで translateY するため will-change つけてる
========================= */
.custom-shape-divider-bottom-1615337033 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--wave-h);
  overflow: hidden;
  line-height: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.custom-shape-divider-bottom-1615337033 svg {
  width: calc(134% + 1.3px);
  height: var(--wave-h);
  display: block;
}

/* waveの塗り（SVG側で .shape-fill を付けてる想定） */
.custom-shape-divider-bottom-1615337033 .shape-fill {
  transition: filter 0.2s ease, opacity 0.2s ease;
}

/* 押下フラッシュ（JSで .is-flash 付与） */
.custom-shape-divider-bottom-1615337033.is-flash .shape-fill {
  filter: drop-shadow(0 0 18px rgba(255, 70, 70, 0.9)) drop-shadow(0 0 40px rgba(255, 20, 20, 0.55));
}

/* heroSlide.scss：変数定義は置かない（global/variables.scss を使う） */
.heroSlide {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.heroSlide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  animation: heroSlideFade 24s infinite;
  will-change: opacity, transform;
}

.heroSlide img:nth-child(1) {
  animation-delay: 0s;
}

.heroSlide img:nth-child(2) {
  animation-delay: 6s;
}

.heroSlide img:nth-child(3) {
  animation-delay: 12s;
}

.heroSlide img:nth-child(4) {
  animation-delay: 18s;
}

.heroSlide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(rgba(0, 0, 0, var(--hero-dim)), rgba(0, 0, 0, calc(var(--hero-dim) + 0.12)));
}

@keyframes heroSlideFade {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }
  4% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  29% {
    opacity: 0;
    transform: scale(1.02);
  }
  100% {
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .heroSlide img {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
/* =========================
  Hero Slide Show
========================= */
/* hero：見せ場担当 */
.hero {
  position: relative;
  overflow: hidden;
}

/* 夜モード（JSで body.is-night を付与） */
body.is-night {
  --hero-dim: var(--hero-dim2);
}

/* SVG湯気（既存 .steam を “ヒーロー内” で使う場合の見え方強化） */
.heroSteam {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1; /* 暗幕より上、文字より下 */
  opacity: 0.22;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.25));
}

.heroSteam .steam-line {
  stroke: rgba(255, 255, 255, 0.65);
  stroke-width: 3.6;
  filter: blur(0.6px);
}

/* 夜で沈むなら湯気だけ少し増やす */
body.is-night .heroSteam {
  opacity: 0.28;
}

/* =========================
  CTA（ホーム専用の演出）
========================= */
.heroBtn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 50px;
  background: linear-gradient(135deg, #8b1e1e, #c0392b);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  overflow: visible;
  z-index: 0;
  transform: translateZ(0);
}

.heroBtn:active {
  transform: translateY(1px) scale(0.99);
}

/* halo */
.heroBtn::before,
.heroBtn::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  border-radius: 999px;
  mix-blend-mode: screen;
}

.heroBtn::before {
  inset: -30px;
  background: radial-gradient(circle at 35% 70%, rgba(255, 120, 120, 0.38), rgba(255, 255, 255, 0) 62%), radial-gradient(circle at 70% 35%, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 72%);
  filter: blur(18px);
  opacity: 0.16;
  animation: steamHalo 4.8s ease-in-out infinite;
}

.heroBtn::after {
  inset: -46px;
  background: radial-gradient(circle at 55% 55%, rgba(255, 70, 70, 0.24), rgba(255, 255, 255, 0) 70%), radial-gradient(circle at 45% 35%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 75%);
  filter: blur(30px);
  opacity: 0.1;
  animation: steamHalo 6.4s ease-in-out infinite;
  animation-delay: 0.7s;
}

/* click puff（JSで .is-puff） */
.heroBtn.is-puff::before {
  animation: steamPuff 0.4s ease-out 1;
  opacity: 0.85;
}

.heroBtn.is-puff::after {
  animation: steamPuff 0.4s ease-out 1;
  opacity: 0.55;
}

@keyframes steamHalo {
  0% {
    transform: scale(0.99) translateY(4px);
    opacity: 0.08;
  }
  50% {
    transform: scale(1.03) translateY(-8px);
    opacity: 0.22;
  }
  100% {
    transform: scale(0.99) translateY(4px);
    opacity: 0.08;
  }
}
@keyframes steamPuff {
  0% {
    transform: scale(0.96) translateY(6px);
    filter: blur(18px);
  }
  60% {
    transform: scale(1.1) translateY(-12px);
    filter: blur(22px);
  }
  100% {
    transform: scale(0.98) translateY(4px);
    filter: blur(18px);
  }
}
@media (hover: hover) and (pointer: fine) {
  .heroBtn:hover::before {
    opacity: 0.35;
    filter: blur(20px);
  }
  .heroBtn:hover::after {
    opacity: 0.22;
    filter: blur(34px);
  }
}
.menu {
  padding: 60px 0;
}

@media (min-width: 768px) {
  .menu {
    padding: 80px 0;
  }
}
.menuCards {
  row-gap: 18px;
}

.menuCard {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.menuCard img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .menuCard img {
    height: 280px;
  }
}
.menuCard-body {
  padding: 14px 14px 16px;
  display: grid;
  row-gap: 8px;
}

.menuCard-desc {
  color: rgba(17, 17, 17, 0.75);
  font-size: 14px;
  line-height: 1.8;
}

.menuCard-price {
  color: var(--brand);
  font-weight: 700;
  font-size: 18px;
}

.faq {
  padding: 70px 0;
}

.faqList {
  display: grid;
  row-gap: 12px;
  margin: 16px 0 32px;
}

.faqItem {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  background: #fff;
  padding: 0;
  overflow: hidden;
}

.faqQ {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  font-weight: 600;
  color: #111;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.faqQ i {
  transition: transform 0.2s ease;
  opacity: 0.7;
}

.faqItem.is-open .faqQ i {
  transform: rotate(180deg);
}

.faqA {
  padding: 0 14px 14px;
  color: rgba(17, 17, 17, 0.78);
  line-height: 1.9;
}

.faqSection {
  margin-top: 64px;
  scroll-margin-top: 90px;
}
@media (min-width: 768px) {
  .faqSection {
    scroll-margin-top: 120px;
  }
}

/* FAQ TOC */
.faqToc {
  margin: 28px 0 48px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  backdrop-filter: blur(6px);
}

.faqToc-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  padding: 0;
  margin: 0;
}

.faqToc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.faqToc-link:hover {
  background: var(--brand);
  color: #fff;
}

.access {
  padding: 70px 0;
}

.accessInfo h2 {
  font-size: 28px;
  color: #111;
}

.accessInfo > p {
  margin-top: 6px;
  line-height: 1.9;
}

.accessTable {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 18px;
  font-size: 14px;
}

.accessTable th,
.accessTable td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  vertical-align: top;
}

.accessTable th {
  width: 7em;
  color: #333;
  text-align: left;
}

.accessActions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mapBox {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.mapBox iframe {
  width: 100%;
  height: 320px;
  display: block;
}

@media (min-width: 768px) {
  .mapBox iframe {
    height: 420px;
  }
}
.mapPlaceholder {
  height: 320px;
  display: grid;
  place-items: center;
  color: rgba(17, 17, 17, 0.6);
}

@media (min-width: 768px) {
  .mapPlaceholder {
    height: 420px;
  }
}
.contact {
  padding: 70px 0;
}

.contactForm {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  display: grid;
  row-gap: 14px;
}

.contactForm label {
  display: grid;
  row-gap: 6px;
  font-size: 14px;
  color: #111;
}

.contactForm input,
.contactForm textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 10px;
  padding: 12px;
  font: inherit;
}

/* =========================
  Contact polish
========================= */
.contactWrap {
  row-gap: 22px;
  align-items: start;
}

.contact h2 {
  font-size: 22px;
  color: #111;
  margin-bottom: 8px;
}

.contactWrap > div p {
  margin-top: 6px;
  line-height: 1.9;
}

.btnLine {
  width: 100%;
  justify-content: center;
  margin: 12px 0 18px;
}

.contactForm {
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
}

.contactNote {
  font-size: 13px;
  color: rgba(17, 17, 17, 0.7);
}

.req {
  color: var(--brand);
  font-weight: 700;
  margin-left: 4px;
}

.contactForm input,
.contactForm textarea {
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contactForm input:focus-visible,
.contactForm textarea:focus-visible {
  outline: none;
  border-color: rgba(139, 30, 30, 0.55);
  box-shadow: 0 0 0 4px rgba(139, 30, 30, 0.14);
}

.contactForm textarea {
  resize: vertical;
  min-height: 160px;
}

.contactSmall {
  font-size: 12px;
  color: rgba(17, 17, 17, 0.62);
  line-height: 1.8;
}

/* 送信メッセージ枠（仮） */
.formMsg {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #faf7f2;
  color: #111;
}

/* PC時：左の案内を少し“カード風”に */
@media (min-width: 768px) {
  .contactWrap > div {
    padding: 18px;
    border-radius: 16px;
    background: linear-gradient(#ffffff, #faf7f2);
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
}
/* =========================
  LP Base
========================= */
.lp {
  padding: 0;
}

/* セクション共通 */
.lp-section {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .lp-section {
    padding: 110px 0;
  }
}

/* =========================
  Hero
========================= */
.lp-hero {
  position: relative;
  min-height: min(72vh, 640px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

/* スライドは既存heroSlide流用 */
.lp-heroInner {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

/* eyebrow */
.lp-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  opacity: 0.8;
  margin-bottom: 14px;
}

/* タイトル */
.lp-hero h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.45), 0 0px 18px rgba(255, 120, 80, 0.18);
}

/* リード文 */
.lp-lead {
  font-size: 15px;
  line-height: 1.9;
  opacity: 0.92;
  margin-bottom: 28px;
}

/* CTA群 */
.lp-heroCtas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.lp-subCta {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
}

/* =========================
  LP HERO (kodawari): slideshow + steam + readability
========================= */
.lp-hero {
  position: relative;
  min-height: min(80vh, 720px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

/* 湯気（暗幕の上・文字の下） */
.lp-hero .heroSteamOverlay {
  position: absolute;
  inset: -12%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.34;
  background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.2), transparent 55%), radial-gradient(circle at 70% 35%, rgba(255, 120, 120, 0.16), transparent 60%), radial-gradient(circle at 55% 55%, rgba(255, 255, 255, 0.14), transparent 62%);
  filter: blur(18px);
  mix-blend-mode: screen;
  animation: steamOverlay 7.2s ease-in-out infinite;
}

/* 文字レイヤー */
.lp-hero .lp-heroInner {
  position: relative;
  z-index: 3;
}

/* 読みやすさの保険（必要なら消せる） */
.lp-hero h1,
.lp-hero .lp-lead {
  color: #fff;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
}

.lp-hero .lp-eyebrow {
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.12em;
}

/* =========================
  Intro
========================= */
.lp-intro .lp-copy {
  display: grid;
  gap: 36px;
  align-items: center;
}
@media (min-width: 768px) {
  .lp-intro .lp-copy {
    grid-template-columns: 1fr 1fr;
  }
}

.lp-intro h2 {
  font-size: 28px;
  margin-bottom: 14px;
  color: #111;
}

.lp-intro p {
  line-height: 2;
  color: rgba(17, 17, 17, 0.82);
}

.lp-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
@media (min-width: 768px) {
  .lp-photo img {
    height: 420px;
  }
}

/* =========================
  Media Row
========================= */
.lp-mediaRow {
  align-items: center;
  gap: 40px;
}

.lp-media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}
@media (min-width: 768px) {
  .lp-media img {
    height: 460px;
  }
}

/* 交互色 */
.lp-block--alt {
  background: #faf7f2;
}

/* 炎セクション */
.lp-block--dark {
  background: linear-gradient(#1a0c0c, #0a0505);
  color: #fff;
}

.lp-block--dark h2 {
  color: #fff;
}

/* =========================
  Text
========================= */
.lp-text h2 {
  font-size: 26px;
  margin-bottom: 14px;
  color: #111;
}
@media (min-width: 768px) {
  .lp-text h2 {
    font-size: 32px;
  }
}

.lp-text p {
  line-height: 2;
  color: rgba(17, 17, 17, 0.82);
  margin-bottom: 18px;
}

.lp-block--dark p {
  color: rgba(255, 255, 255, 0.85);
}

/* =========================
  Points List
========================= */
.lp-points {
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.lp-points li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.lp-points i {
  color: var(--brand);
}

.lp-block--dark .lp-points i {
  color: #ff8c6a;
}

/* =========================
  CTA
========================= */
.lp-ctaBox {
  text-align: center;
  padding: 46px 20px;
  border-radius: 18px;
  background: #faf7f2;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.lp-ctaBox h2 {
  font-size: 26px;
  margin-bottom: 12px;
}

.lp-ctaBox p {
  margin-bottom: 22px;
  color: rgba(17, 17, 17, 0.72);
}

.lp-ctaBtns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================
  Steam Overlay調整
========================= */
.lp-hero .heroSteamOverlay {
  opacity: 0.24;
}

body.is-night .lp-hero .heroSteamOverlay {
  opacity: 0.32;
}

/* =========================
  Responsive 微調整
========================= */
@media (max-width: 767px) {
  .lp-media img {
    height: 260px;
  }
  .lp-photo img {
    height: 260px;
  }
}
/* =========================
  Ember Canvas (LP effects)
========================= */
.emberCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1200;
  opacity: 0;
  transition: opacity 0.25s ease;
  mix-blend-mode: screen;
}

.emberCanvas.is-on {
  opacity: 1;
}

/* LP夜演出強化 */
.page-lp.is-night .lp-hero .heroSlide::after {
  background: linear-gradient(rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.72));
}

.page-lp.is-night .heroSteamOverlay {
  opacity: 0.4;
}

.is-locked {
  overflow: hidden;
}

/*# sourceMappingURL=style.css.map */
