/* ------------------------------
   Minimal Reset for LP
------------------------------ */
html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

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

button, input, textarea, select {
  font: inherit;
}

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

*, *::before, *::after {
  box-sizing: border-box;
}


/* ------------------------------
   ベース
------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
}

body {
  margin: 0;
  font-family:
    "Noto Sans JP",
    -apple-system,
    BlinkMacSystemFont,
    "YuGothic",
    "游ゴシック体",
    "Hiragino Kaku Gothic ProN",
    "メイリオ",
    sans-serif;
  line-height: 1.7;
  color: #333;
  /* background: #fff; */
}

/* --------------------------------
  PCレイアウト（デフォはSPのまま）
-------------------------------- */
.pc-frame {
  /* SPでは単純に1カラム */
}

.pc-side-left {
  display: none; /* SPは非表示 */
}

.lp-main {
  /* 今までの中央500px運用のままでOK */
  max-width: 500px;
  margin: 0 auto;
  /* background: #fff; */
}

/* mainに影をつけたい場合（既に要望あったので） */
.lp-main {
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* --------------------------------
  PC: 左サイド＋mainを「ページ3分の2の中心」に置く
-------------------------------- */
@media (min-width: 1024px) {
  html, body {
    height: 100%;
  }

  body {
    margin: 0;
    background: url(../img/bg_lp_pc.webp) no-repeat;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .pc-frame {
    min-height: 100vh;
    display: grid;
    /* 左 1/3 + 右 2/3 */
    grid-template-columns: 1fr 2fr;
    align-items: start;
  }

  /* 左サイド表示 */
  .pc-side-left {
    display: grid;
    align-items: center;     /* 縦だけ中央 */
    justify-items: end;      /* 横を右寄せ */
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 24px;
    padding-right: 0px;     /* mainとの間隔（お好みで） */
  }

  /* 左のカード */
  .pc-side-card {
    width: min(360px, 100%);
    background: #fff;
    padding: 28px 26px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.22);
  }

  .pc-side-logo img {
    width: 62%;
    height: auto;
    display: block;
    margin: 0 auto 32px;
  }

  .pc-side-title {
    font-size: 2.0rem;
    margin: 0 0 10px;
    text-align: center;
    font-weight: 700;
  }

  .pc-side-lead {
    font-size: 1.3rem;
    margin: 0 0 18px;
    text-align: center;
    line-height: 1.6;
    color: #444;
  }

  .pc-side-ctas {
    display: grid;
    gap: 12px;
  }

  .pc-side-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    position: relative;
  }

  .pc-side-btn::after {
    content: "→";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
  }

  .pc-side-btn.is-line {
    background: #00A65A;
    color: #fff;
  }

  .pc-side-btn.is-mail {
    background: #c7b37c;
    color: #fff;
  }

  /* mainを「右側2/3の中央」に配置 */
  .lp-main {
    justify-self: center;   /* 2/3カラムの中央 */
    margin: 0;              /* PCではauto中央は不要 */
    width: min(500px, 100%);
    background: #fff;
  }
}


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

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

:root {
  --tc-orange: #d18b4b;
  --tc-green: #009944;
  --tc-beige: #f7f1e6;
  --tc-gray: #666;
}

/* ===============================
   ファーストビュー
=============================== */

/* fv 全体 */
#fv {
  color: #fff;
  padding: 0;
  margin-bottom: 40px;
}

/* 背景画像：画面の高さ60% */
.fv-visual {
  position: relative;
  height: 75vh;
  min-height: 600px;
  background-image: url("../img/fv01_2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ------------------------------------
   FV 背景右→左スライドアニメーション
------------------------------------ */
.fv-visual {
  background-size: cover;
  background-position: right center; /* 初期値：右寄せ */
  animation: fvSlide 22s linear forwards;
}

@keyframes fvSlide {
  0% {
    background-position: 100% center;
  }
  50% {
    background-position: 0% center;
  }
  100% {
    background-position: 0% center; /* ← 左端で停止 */
  }
}


/* ロゴ（左上） */
.fv-logo {
  position: absolute;
  top: 0;
  left: 1.6rem;
  width: clamp(10.56rem, 33vw, 12.87rem); /* ← 指定通り画面幅の33% */
  max-width: 180px; /* 大画面のときの上限（任意） */
}

.fv-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* 右側縦帯：上からスッと降りてくる */
.fv-tagline {
  position: absolute;
  top: 15%;
  right: 2.4rem;
  padding: 0.7rem 0.2rem;
  background: #fff;
  color: #c86f32;
  font-size: clamp(1.72rem, 5.38vw, 2.8rem);
  font-weight: 700;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);

  opacity: 0;
  transform: translateY(-32px); /* ← 上から降りる */
  animation: fvTaglineDown 1.4s ease-out 0.8s forwards;
}

@keyframes fvTaglineDown {
  0% {
    opacity: 0;
    transform: translateY(-32px); /* 上 */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* 元の位置 */
  }
}



/* 中央の縦書きコピー */
.fv-copy {
  position: absolute;
  top: 20%;
  right: 2.5rem;
  transform: translateX(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  /* font-size: 3.6rem; */
  font-size: clamp(2.95rem, 9.23vw, 4.6rem);
  font-family: "Noto Serif JP"; /* 高級感UP */
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0 0 10px rgba(0,0,0,0.6);
}
/* fv-copy アニメーション */
.fv-copy {
  opacity: 0;
  transform: translateX(-50%) translateY(24px);
  animation: fvCopyFade 1.6s ease-out 0.4s forwards;
}

@keyframes fvCopyFade {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}


/* スペック3つのボックス */
.fv-features {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1.2rem;
  box-sizing: border-box;
}

.fv-feature-box {
  flex: 1;
  text-align: center;
  background: rgba(232, 82, 76, 0.55);  /* 赤みのある半透明（デザイン参考） */
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 1.2rem 0.8rem;
}
/* スペック3つのボックス：順番にフェードアップ */
.fv-feature-box {
  opacity: 0;
  transform: translateY(20px);
  animation: fvFeatureUp 0.8s ease-out forwards;
}

/* 1つ目 → 一番先に出る */
.fv-feature-box:nth-child(1) {
  animation-delay: 2.4s;
}

/* 2つ目 */
.fv-feature-box:nth-child(2) {
  animation-delay: 2.7s;
}

/* 3つ目 */
.fv-feature-box:nth-child(3) {
  animation-delay: 3.0s;
}

@keyframes fvFeatureUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



.fv-feature-title {
  /* font-size: 1.5rem; */
  font-size: clamp(1.23rem, 3.85vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 0.3rem;
}




.fv-sub {
  padding: 20px 0 0 0;
}
.fv-sub p {
  font-size: clamp(1.15rem, 3.59vw, 1.6rem);
  font-weight: 700;
  text-align: center;
  color: #000;
}

/* ------------------------------
   LINE CTA（共通で使えるように）
------------------------------ */
/* CTA 全体の余白（背景はページ色） */
.line-cta-Wrapper {
  padding: 0  1.6rem;
}
.line-cta {
  padding: 2.4rem 0rem;
}

/* 楕円形のボタン部分 */
.line-cta-inner {
  background: #00A65A;              /* 緑 */
  border-radius: 999px;             /* 完全な楕円 */
  padding: 1.6rem 2.0rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  text-decoration: none;  /* リンクの青線防止 */
  color: inherit;         /* テキスト色継承 */
  position: relative;
}

/* テキスト側 */
.line-cta-text {
  color: #fff;
  flex: 1;
  text-align: center;
  padding-right: 3.0em;
}

/* 1行目：黄色で強調 */
.line-cta-main {
  font-size: clamp(1.64rem, 5.12vw, 2.0rem);
  font-weight: 700;
  margin: 0 0 0.6rem;
  color: #FFF100;
}

/* 2行目：白の説明文 */
.line-cta-sub {
  font-size: clamp(1.22rem, 3.8vw, 1.48rem);
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

/* 本の画像側 */
.line-cta-book {
  flex: 0 0 auto;
}

.line-cta-book img {
  position: absolute;
  top: 10px;
  right: 0px;
  width: clamp(5.63rem, 17.6vw, 6.86rem);                      /* 画面幅の約1/4 */
  max-width: 80px;
  height: auto;
  display: block;
  transform: rotate(5deg);          /* ちょっとナナメに */
  animation: photobookFloat 3.2s ease-in-out infinite;
}

/* フロートアニメーション */
@keyframes photobookFloat {
  0% {
    transform: rotate(5deg) translateY(0);
  }
  50% {
    transform: rotate(5deg) translateY(-4px);
  }
  100% {
    transform: rotate(5deg) translateY(0);
  }
}


/* -/-/-/-/-/-/-/-/-/-/-/-/-/- */
/* 宿泊体験でわかる 3つのこと */
/* -/-/-/-/-/-/-/-/-/-/-/-/-/- */
.sec-points {
  background: #f7efe3;          /* 画像のベージュ寄せ */
  padding: 4rem 1.6rem 3.2rem;
}

.sec-points .inner {
  max-width: 640px;
  margin: 0 auto;
}

/* セクション見出し */
.points-sub {
  /* font-size: 1.4rem; */
  font-size: clamp(1.31rem, 4.1vw, 1.6rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.4rem;
  line-height: 1.4;
}

.points-title {
  font-family: "Noto Serif JP";
  font-weight: 700;
  /* font-size: 2.4rem; */
  font-size: clamp(2.11rem, 6.6vw, 2.57rem);
  text-align: center;
  margin: 0 0 1.2rem;
  letter-spacing: 0.2em;
  line-height: 1.5;
}

/* カード全体 */
.points-list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.point-card {
  padding: 14px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
}

/* 写真＋Pointラベル */
.point-photo {
}

.point-photo img {
  width: 100%;
  display: block;
}

/* 左上の Point.XX リボン */
.point-label {
  position: absolute;
  top: 7px;
  left: 0;
  background: #D67743;
  color: #fff;
  font-size: clamp(1.23rem, 3.85vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 1.4rem;
  border-top-right-radius: 0.9rem;
}

/* テキスト部分 */
.point-body {
  padding: 1.6rem 0;
}

.point-heading {
  font-family: "Noto Serif JP";
  font-weight: 700;
  font-size: clamp(1.47rem, 4.6vw, 1.79rem);
  margin: 0 0 0.75rem;
}

.point-text {
  font-size: clamp(1.15rem, 3.59vw, 1.4rem);
  line-height: 1.6;
  margin: 0;
}




/* -/-/-/-/-/-/-/-/-/-/-/-/-/- */
/* 暮らしの質を確かめるセクション */
/* -/-/-/-/-/-/-/-/-/-/-/-/-/- */

.sec-experience {
  background: #ffffff;
  padding: 3.2rem 1.6rem 4rem;
}

.sec-experience .inner {
  max-width: 640px;
  margin: 0 auto;
}

/* 写真共通 */
.exp-photo {
  margin: 0 0 2.4rem;
}

.exp-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* 上のメイン写真は少しだけ余白を多めに */
.exp-photo-main {
  margin-bottom: 2.8rem;
}

/* テキストブロック */
.exp-text-block {
  margin-bottom: 3.2rem;
}

.exp-heading {
  font-family: "Noto Serif JP";
  font-weight: 700;
  font-size: clamp(1.64rem, 5.13vw, 2.0rem);
  line-height: 1.5;
  margin: 0 0 1.6rem;
}

.exp-heading span {
  /* 2行目を少しだけ強調したいとき */
}

/* 本文 */
.exp-text {
  font-size: clamp(1.15rem, 3.6vw, 1.4rem);
  line-height: 1.8;
  margin: 0;
}

/* コンテナ */
.exp-photo-group {
  position: relative;
  width: 100%;
  margin-bottom: 3.2rem;
}

/* 左の縦長写真 */
.exp-photo-left {
  width: 35%;
  position: absolute;
  left: 0;
  top: 40%;         /* 右の上写真の高さの50％あたりに配置 */
  transform: translateY(-30%);  /* 調整：見た目で合うように */
}

.exp-photo-left img {
  width: 100%;
  display: block;
}

/* 右側2枚をまとめるラッパー */
.exp-photo-right {
  width: 60%;
  margin-left: 40%;   /* 左を避けるための余白 */
}

/* 右上（大） */
.exp-photo-right-top img {
  width: 100%;
  display: block;
  height: auto;
}
.exp-photo-right-bottom img {
  width: 65%;
  display: block;
  height: auto;
}
.exp-photo-right-top {
  margin-bottom: 1.6rem;
}



/* 箇条書き */
.exp-list {
  margin: 0 0 1.8rem 2.0rem;
  padding: 0;
  font-size: clamp(1.15rem, 3.6vw, 1.4rem);
  line-height: 1.8;
  list-style: disc;
}

.exp-list li {
  margin-bottom: 0.4rem;
}



/* -/-/-/-/-/-/-/-/-/-/-/-/-/- */
/* 宿泊されたご家族の声 */
/* -/-/-/-/-/-/-/-/-/-/-/-/-/- */

.sec-voices {
  background: #D3DEF1;            /* 見出しまわりの淡いブルー */
  padding: 3.2rem 1.6rem 3.6rem;
}

.voices-inner {
  max-width: 640px;
  margin: 0 auto;
}

/* セクションタイトル */
.voices-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(1.76rem, 5.5vw, 2.15rem);               /* 約21px@390px */
  text-align: center;
  margin: 0 0 3.0rem;
  line-height: 1.6;
}

/* カード本体 */
.voice-card {
  background: #ffffff;
  padding: 1.8rem 1.6rem 2.0rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  margin-bottom: 3.0rem;
}

/* 上部：アイコン＋タイトル */
.voice-header {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
  position: relative;
}

.voice-tag {
  position: absolute;
  top: -35px;
  left: -25px;
  background: #D67743;
  color: #fff;
  font-size: clamp(1.23rem, 3.85vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 1.4rem;
}

/* 丸アイコン（ここだけborder-radius使用） */
.voice-icon {
  width: 10rem;
  height: auto;
  border-radius: 50%;
  background: #c4cfde;
  display: flex;
  align-items: center;
  justify-content: center;
}

.voice-icon-mark {
  width: 60%;
  height: 60%;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: block;
}

/* タイトル＆星 */
.voice-heading {
  font-weight: 700;
  font-size: clamp(1.41rem, 4.4vw, 1.72rem);
  line-height: 1.5;
  margin: 0 0 0.4rem;
}

.voice-stars {
  font-size: clamp(1.15rem, 3.6vw, 1.4rem);
  color: #f6b900;
  margin: 0;
  letter-spacing: 0.2em;
}

/* リスト本文 */
.voice-list {
  margin: 0;
  padding-left: 1.4rem;
  font-size: clamp(1.09rem, 3.4vw, 1.33rem);
  line-height: 1.8;
}
.voice-list span {
  background-image: linear-gradient(transparent 60%, #d85c3a 60%);
  background-size: 100% 0.55em;   /* 線の太さ */
  background-repeat: no-repeat;
  background-position: 0 100%;
}
.voice-list li {
  margin-bottom: 0.4rem;
  list-style: disc;
}




/* -/-/-/-/-/-/-/-/-/-/-/-/-/- */
/* 比較表セクション */
/* -/-/-/-/-/-/-/-/-/-/-/-/-/- */

.sec-compare {
  background: 
    url("../img/compare-town.webp") no-repeat center bottom / cover;
  padding: 2.8rem 1.6rem 18rem;   /* 下に余白を多く取って画像を見せる */
  position: relative;
}

.compare-inner {
  max-width: 640px;
  margin: 0 auto;
}

.compare-title {
  font-weight: 700;
  font-size: clamp(1.76rem, 5.5vw, 2.15rem);               /* 約21px@390px */
  text-align: center;
  margin: 0 0 2.4rem;
  line-height: 1.6;
}

/* テーブル全体 */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2.8rem;
  background: #fff;
  font-size: clamp(1.15rem, 3.6vw, 1.4rem);
}

/* ヘッダー */
.compare-table thead th {
  padding: 1.2rem 0.8rem;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid #ddd;
  background: #f4f4f4;
}

/* 左の項目名 */
.compare-label {
  width: 26%;
  font-weight: 700;
  text-align: center;
  padding: 1.2rem 0.4rem;
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
}

/* 他社 */
.compare-col-other {
  border-left: 1px solid #ddd;
  width: 25%;
}

/* 表データ */
.compare-table td {
  padding: 1.2rem 0.4rem;
  text-align: center;
  border-bottom: 1px solid #ddd;
  border-left: 1px solid #ddd;
  color: #005178;
}

/* ToCasa列の色 */
.compare-table th.compare-col-tocasa {
  width: 25%;
  background: #d77a3c;      /* ToCasaのオレンジ */
  color: #fff;
  font-weight: 700;
}

.compare-table td.tocasa-cell {
  width: 25%;
  background: #fff;      /* ToCasaのオレンジ */
  color: #d77a3c;
  font-weight: 700;
}





/* ------------------------------
   宿泊体験の流れ
------------------------------ */

.sec-flow {
  padding: 4rem 1.6rem 5rem;
}

/* 見出し（背景クリーム色の帯） */
.flow-heading {
  text-align: center;
  margin: 0 auto 2rem;
}

.flow-heading h2 {
  padding: 1.4rem 3rem;
  border-radius: 99px;
  background: #EFE6D7;
  margin: 0;
  font-size: clamp(1.64rem, 5.12vw, 2.0rem);
  font-weight: 700;
  color: #000;
  display: inline-block;
}
.flow-heading-sub {
  margin-bottom: 2.0em;
}
.flow-heading-sub p {
  font-weight: 500;
  font-size: clamp(1.15rem, 3.59vw, 1.4rem);
}

/* 流れ全体 */
.flow-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

/* ボックス */
.flow-step-box {
  width: 100%;
  padding: 1.2rem 1rem;
  border: 2px solid #C86F32;
  text-align: center;
}

.flow-step-box h3 {
  color: #C86F32;
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.31rem, 4.1vw, 1.6rem);
  letter-spacing: 0.05em;
}

.flow-step-box p {
  font-size: clamp(0.99rem, 3.1vw, 1.21rem);
}

/* 矢印 */
.flow-arrow {
  font-size: clamp(2.24rem, 7.0vw, 2.73rem);
  color: #C86F32;
  font-weight: 700;
}




/* ------------------------------
   見て欲しい7つのポイント
------------------------------ */

.sec-points7 {
}

/* オレンジの見出し帯 */
.points7-head {
  background: #D67743;
  color: #fff;
  text-align: center;
  padding: 1.6rem 1.2rem 1.8rem;
  margin-bottom: 2.0em;
}

.points7-sub {
  margin: 0 0 0.3rem;
  font-size: clamp(1.15rem, 3.6vw, 1.4rem);
  font-weight: 500;
}

.points7-title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.47rem, 4.6vw, 1.79rem);
  letter-spacing: 0.1em;
}

/* 中身 */
.points7-inner {
  max-width: 640px;
  margin: 0 auto;
  /* padding: 3.0rem 1.6rem 4.0rem; */
}

.points7-item {
  margin-bottom: 3.2rem;
  padding: 0 1.6em;
}

/* Point.XX ラベル */
.points7-label {
  display: inline-block;
  color: #d67743;
  font-size: clamp(1.06rem, 3.3vw, 1.29rem);
  font-weight: 500;
  letter-spacing: 0.12em;
}
.points7-item h3 {
  font-size: clamp(1.47rem, 4.6vw, 1.79rem);
}
.points7-item p {
  font-size: clamp(1.06rem, 3.3vw, 1.29rem);
  margin-bottom: 1.0em;
}

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

.points7-photo img {
  width: 100%;
  height: auto;
  display: block;
}


.points7-item-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.6rem;
}
.points7-item-column {
  width: 47%;
}


/* ------------------------------
   LINE CTA　ver2（共通で使えるように）
------------------------------ */
/* 余白 */
.cta2-wrapper {
  padding: 2.4rem 1.6rem;
}

/* CTAボタン本体 */
.cta2-button {
  display: block;
  width: 100%;

  background: #00A65A;
  border-radius: 999px;

  padding: 2rem 2.4rem;

  color: #fff;
  font-size: clamp(1.6rem, 5.0vw, 1.95rem);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;

  position: relative;      /* ::after配置のため */
  overflow: hidden;        /* はみ出し防止(任意) */
}

/* 矢印（右側固定） */
.cta2-button::after {
  content: "→";
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);

  font-size: clamp(1.92rem, 6.0vw, 2.34rem);
  line-height: 1;
}




/* --------------------------------
   宿泊体験前のよくある質問
--------------------------------- */
.sec-faq {
  background: #f7efe3;
  padding: 4rem 1.6rem 4.4rem;
}

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

.faq-title {
  font-weight: 700;
  font-size: clamp(1.63rem, 5.1vw, 1.99rem);
  text-align: center;
  margin: 0 0 2.8rem;
}

/* 各Q&Aブロック */
.faq-item {
  margin-bottom: 2.6rem;
}

/* Q行（オレンジ帯） */
.faq-question {
  background: #d67743;
  color: #fff;
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  font-size: clamp(1.31rem, 4.1vw, 1.6rem);
}

.faq-q-label {
  font-size: clamp(1.38rem, 4.3vw, 1.68rem);
}

.faq-q-text {
  flex: 1;
}

.faq-toggle {
  font-size: clamp(1.6rem, 5.0vw, 1.95rem);
  line-height: 1;
}

/* A部分 */
.faq-answer {
  display: flex;
  padding: 1.4rem 0 0.4rem;
}

.faq-a-label {
  margin: 0 0.8rem 0 0;
  font-weight: 700;
  font-size: clamp(1.38rem, 4.3vw, 1.68rem);
  color: #d67743;
}

.faq-a-text p {
  margin: 0 0 0.6rem;
  font-size: clamp(1.15rem, 3.6vw, 1.4rem);
  line-height: 1.8;
}

.faq-a-text p strong {
  font-weight: bold;
}

/* CTA（下の余白だけ少し増やす） */
.faq-cta {
  padding-top: 2.4rem;
}



/* アコーディオン開閉アニメーション */
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.28s ease;
}

/* 開いた状態はJS側で max-height を設定 */
.faq-item.open .faq-answer {
  /* max-height はJSが動的に計算するのでここは空でOK */
}




/* ------------------------------
   展示場へのアクセス
------------------------------ */

.sec-access {
  background: #ffffff;
  padding: 3.6rem 1.6rem 4.0rem;
}

.access-inner {
  max-width: 640px;
  margin: 0 auto;
}

/* 見出し */
.access-title {
  font-weight: 700;
  font-size: clamp(1.63rem, 5.1vw, 1.99rem);
  text-align: center;
  margin: 0 0 2.8rem;
}

/* テキスト情報 */
.access-info {
  margin-bottom: 2.8rem;
}

.access-block {
  margin-bottom: 1.8rem;
}

.access-label {
  margin: 0 0 0.2rem;
  font-weight: 700;
  font-size: clamp(1.31rem, 4.1vw, 1.6rem);
}

.access-text {
  margin: 0;
  font-size: clamp(1.18rem, 3.7vw, 1.44rem);
  line-height: 1.8;
}

/* マップ */
.access-map {
  margin-bottom: 2.0em;
}
.access-map iframe {
  width: 100%;
  border: 0;
  min-height: 260px;        /* 必要なら好みで調整 */
  display: block;
}



/* ------------------------------
   ラストCTAセクション
------------------------------ */

.sec-final-cta {
  /* 背景画像：ファイル名は実際に置いた名前に変更してください */
  background: url("../img/final-cta-bg.webp") no-repeat left top / cover;
  color: #fff;
}

/* 1画面内に収めるためのレイアウト */
.final-cta-inner {
  min-height: 70vh;                 /* 1画面分の高さを確保 */
  padding: 5.2rem 1.8rem 3.6rem;     /* 上・左右・下の余白 */
  display: flex;
  flex-direction: column;
  justify-content: space-between;    /* 上にコピー、下にボタン */
}

/* キャッチコピー部分 */
.final-cta-copy {
  max-width: 640px;
}

.final-cta-lead {
  margin: 0 0 1.8rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(2.11rem, 6.6vw, 2.57rem);
  line-height: 1.6;
  letter-spacing: 0.2em;
}

.final-cta-sub {
  margin: 0;
  font-weight: 300;
  font-size: clamp(1.31rem, 4.1vw, 1.6rem);
  line-height: 2.0;
  letter-spacing: 0.1em;
}

/* ボタン2つを下側に */
.final-cta-buttons {
  max-width: 640px;
  margin: 4.0rem auto;
  padding: 0 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

/* 共通ボタンスタイル */
.final-btn {
  display: block;
  width: 100%;
  padding: 1.8rem 2.4rem;
  border-radius: 999px;
  font-size: clamp(1.54rem, 4.8vw, 1.87rem);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* 矢印（右側） */
.final-btn::after {
  content: "→";
  position: absolute;
  right: 1.8rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(1.76rem, 5.5vw, 2.15rem);
}

/* LINEボタン */
.final-btn-line {
  background: #00a651;
  color: #fff;
}

/* メールボタン */
.final-btn-mail {
  background: #c4b178;
  color: #fff;
}



/* ------------------------------
   フッター：To Casa の家づくりについて
------------------------------ */

.sec-footer {
  background: #3a3635;              /* ダークグレー */
  color: #ffffff;
  padding: 4.0rem 1.8rem 1.2rem;
}

.footer-inner {
  max-width: 640px;
  margin: 0 auto;
}

/* 見出し */
.footer-heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1.48rem, 4.62vw, 1.8rem);
  line-height: 1.6;
  margin: 0 0 1.2rem;
  letter-spacing: 0.05em;
}

/* メッセージテキスト */
.footer-message {
  font-size: clamp(1.23rem, 3.85vw, 1.5rem);
  margin-bottom: 7.0rem;
}
.footer-message p {
  margin: 0 0 1.8rem;
  font-size: clamp(1.23rem, 3.85vw, 1.5rem);
  font-weight: 300;
  line-height: 2.0;
  letter-spacing: 0.05em;
}

/* ロゴ */
.footer-logo {
  margin: 2.8rem auto 2.4rem;
  text-align: center;
}

.footer-logo img {
  max-width: 260px;
  width: 70%;
  height: auto;
  display: inline-block;
}

/* 会社情報 */
.footer-company {
  text-align: center;
  font-size: clamp(1.23rem, 3.85vw, 1.5rem);
  line-height: 1.9;
  letter-spacing: 0.05em;
}

.footer-company-name {
  margin: 0 0 0.6rem;
  font-weight: 700;
}

.footer-company-info {
  margin: 0 0 0.4rem;
  font-size: clamp(1.06rem, 3.3vw, 1.29rem);
  font-weight: 300;
}

/* コピーライト */
.footer-copy {
  margin: 1.2rem 0 0;
  text-align: center;
  font-size: clamp(0.82rem, 2.56vw, 1.0rem);
  font-weight: 300;
  letter-spacing: 0.08em;
}


@media (min-width: 1024px) {
  .sec-experience {
    padding: 3.2rem 3.2rem 4rem;
  }
  .sec-compare {
    padding: 2.8rem 3.2rem 18rem;
  }
  .sec-flow {
    padding: 4rem 3.2rem 5rem;
  }
  .points7-item {
    padding: 0 3.2em;
  }
  .sec-access {
    padding: 3.6rem 3.2rem 4.0rem;
  }
  .final-cta-inner {
    padding: 5.2rem 3.6rem 3.6rem;
  }
  .sec-footer {
    padding: 4.0rem 3.6rem 1.2rem;
  }
}



/* --- 下部固定ボタン --- */
.ftbtn {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  z-index: 1000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.ftbtn.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ftbtn-item {
  flex: 1;
  padding: 1rem 0;
  font-size: clamp(1.28rem, 4.0vw, 1.56rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
}

/* LINE側 */
.ftbtn-item.line {
  background: #333;
}

/* Mail側 */
.ftbtn-item.mail {
  background: #666;
}

/* アイコン（::before） */
.ftbtn-item.line::before,
.ftbtn-item.mail::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background-size: contain;
  background-repeat: no-repeat;
}

/* SVGのパス */
.ftbtn-item.line::before {
  background-image: url("../img/icon_footer_line.svg");
}

.ftbtn-item.mail::before {
  background-image: url("../img/icon_footer_mail.svg");
}

@media (min-width: 1024px) {
  .ftbtn {
    display: none;
  }
}



/* 調整用 */
.txtCenter {
  text-align: center;
}
.fcRed {
  color: #ED1C24;
}
.txtRedUnLine {
  background-image: linear-gradient(transparent 60%, #ED1C24 60%);
  background-size: 100% 0.55em;   /* 線の太さ */
  background-repeat: no-repeat;
  background-position: 0 100%;
}


/* ------------------------------
   共通スクロールフェードアニメーション
   .js-fade ＋ .fade-up/.fade-down/.fade-left/.fade-right
------------------------------ */

/* ベース：最初は非表示＆少しだけズラす */
.js-fade {
  opacity: 0;
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
}

/* 方向ごとの初期位置 */
.fade-up {
  transform: translateY(24px);
}

.fade-down {
  transform: translateY(-24px);
}

.fade-left {
  transform: translateX(24px);
}

.fade-right {
  transform: translateX(-24px);
}

.fade-in {
  transform: none;
}

/* 画面内に入ったら発火 */
.js-fade.is-inview {
  opacity: 1;
  transform: translate(0, 0);
}
