@charset "UTF-8";
body {
  background-color: #fbf9f6;
}
/*//////////PCサイズ///////////*/
/*//////////PCサイズ///////////*/
@media screen and (min-width: 768px) {
/** ==============================
 * ファーストビュー start
 * ============================== **/
.MainVisualSection {
  position: relative;
  width: 100vw;
  /*height: calc(var(--vh, 1vh) * 100);
  height: 100vh;
   min-height: 600px; ← 任意で残してもOK */
  aspect-ratio: 16 / 12;
  overflow: hidden;
  background-color: #333;
}
/* ===== 動画背景 ===== */
.MainVisualSection__video-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.MainVisualSection__video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ★ 黒オーバーレイ */
.MainVisualSection__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3); /* 黒＋透明30% */
  z-index: 2;
  pointer-events: none; /* 下の動画ボタンなどの操作を邪魔しない */
}
/* ===== ブランドMOVIEリンク・コピー配置 ===== */
.MainVisualSection__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}
.MainVisualSection__brand-movie {
  align-self: flex-start;
  margin: 0 0 40px 40px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: auto;
}
/* ブランドムービーボタン */
.MainVisualSection__brand-link img {
  width: 10vw;
  height: auto;
}
/* ライトボックスのスタイル */
.VideoLightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999; /* 必ずヘッダーより前に */
  align-items: center;
  justify-content: center;
}
.VideoLightbox.is-active {
  display: flex;
}
.VideoLightbox__inner {
  position: relative;
  max-width: 90%;
  max-height: 80%;
}
.VideoLightbox__inner video {
  width: 100%;
  max-width: 1280px;
  height: auto;
  display: block;
}
.VideoLightbox__close {
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10000; /* 念のためボタンも強く */
}
.MainVisualSection__brand-link:hover {
  opacity: 0.8;
}
.MainVisualSection__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: absolute;
  left: 10vw;
  top: 41%;
  margin: 0 0 0 0;
  z-index: 2;
  pointer-events: auto;
}
.MainVisualSection__en.serif {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.7rem;
  font-weight: 100;
  color: #fff;
  letter-spacing: 0.2rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
  line-height: 190%
}
.HeaderSection {
  position: relative;
}
/* ヘッダーは画像の前面（オーバーレイ） */
/* 旧：
.MainVisualHeader{
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  z-index: 10;
  background: transparent;
}
*/
.MainVisualHeader {
  /* fixed は common.css に従う */
  background: transparent;
  z-index: 1000; /* 念のため強めておく（任意） */
}
/* 画像コンテナ：100vw × 28vw */
.MainVisualSection__content {
  width: 100vw;
  height: 28vw;
  overflow: hidden;
}
/* 画像は等倍でトリミング（cover） */
.mv-img, .mv-img img {
  width: 100%;
  height: 100%;
  display: block;
}
.mv-img img {
  object-fit: cover;
}
/** ==============================
 * ファーストビュー end
 * ============================== **/
/* ==============================
 * 汎用リボンヒーロー（PCのみ）
 * ============================== */
.RibbonHeroSection {
  position: relative;
  height: calc(18vw + 70px);
  padding-top: 70px
}
/* セクション内インナー（ラベル整列用） */
.rhero-in {
  width: 100vw; /* TB規約v1：sec-in=85vw */
  margin: 0 auto;
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center; /* ← 高さが付くので効くようになる */
  height: 18vw; /* ← 追加：親と同じ高さを持たせる */
}
/* 白帯ラベル */
.rhero-label {
  display: inline-block;
  background: #fff;
  padding: 0.5vw 1.4vw;
  margin: 0 5vw;
  position: relative; /* z-index を効かせるため */
  z-index: 3;
}
.RibbonHeroSection .ttl {
  color: #947847;
  margin: 0;
  z-index: 1;
}
/* 右側の画像（絶対配置） */
.rhero-figure {
  position: absolute;
  right: 0;
  top: 0;
  width: 60vw;
  height: 18vw;
  z-index: 2;
  overflow: hidden;
}
/* 最背面の帯（生成り） */
.RibbonHeroSection .obi {
  position: absolute;
  left: 0;
  top: 1.6vw;
  width: 100%;
  height: 15vw;
  background: #e3daca;
  z-index: 0;
}
.rhero-figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
/** ==============================
 汎用リボンヒーロー end
============================== **/
/* ==============================
 * 木造 9つの理由 ヘッダーブロック start
 * ============================== */
.WoodReasonsSec {
  width: 100vw; /* セクションは100vw幅 */
  text-align: center; /* 中央揃え */
  padding: 6vw 0 5vw; /* 上下余白（必要に応じて微調整可） */
  background: #fbf9f6; /* ページ地色に合わせる（任意。bodyと同じ） */
}
.wr-in {
  width: 100vw; /* 指示：100vw幅のまま */
  margin: 0 auto;
}
/* 上段：木造にこだわる */
.wr-tag {
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  color: #93815f;
  margin: 0 0 0.3rem;
  font-weight: 700;
  font-family: 'Noto Serif JP', serif;
}
/* 下段：9つの理由 */
.wr-ttl {
  font-size: 3.8vw; /* 見本に合わせて大きく（PC） */
  line-height: 1.2;
  letter-spacing: 0.15rem;
  color: #93815f;
  margin: 0 0 0.8vw;
  font-weight: 500;
  font-family: 'Noto Serif JP', serif;
}
/* ==============================
 * 木造 9つの理由 ヘッダーブロック end
 * ============================== */
/* ==============================
 * グリッド上揃え調整 start
 * ============================== */
/* 行全体：上罫線のみ・地色はページと揃える */
.ReasonRow {
  width: 100vw;
  background: #fbf9f6;
  padding: 0 0; /* 上下余白（見本目安） */
  align-items: start; /* ← center → start に変更 */
}
.reason-grid {
  width: 100vw;
  margin: 0 auto;
  border-top: .1rem solid #e3daca;
  display: grid;
  grid-template-columns: 25vw 1fr; /* 左：数字枠 / 右：本文（gapは0） */
  column-gap: 0;
  align-items: start; /* ← center → flex-start に変更 */
}
/* 左：番号エリア（右寄せ・上下中央） */
.reason-numcol {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start; /* 上揃え */
  align-self: stretch; /* ← これで縦線が行の高さ分に伸びる */
  border-right: .1rem solid #e3daca; /* 縦線 */
}
/* 番号（Savoye LET 風） */
.reason-num {
  font-family: 'EB Garamond';
  font-style: italic; /* ← イタリック指定 */
  font-weight: 100; /* 視認性の良い中太（400/700に調整可） */
  font-variant-numeric: lining-nums; /* 上端を揃えやすい等幅ライニング */
  font-size: 6vw;
  line-height: 1;
  color: #947847;
  position: relative;
  top: calc(-1 * var(--num-baseline-fix, 0.6vw)); /* 既存の上端合わせ補正 */
  margin: 3vw 3vw 0 0;
  /* イタリックで十分傾くため skew は原則オフ（必要なら -1deg 等に） */
  transform: none;
  display: inline-block;
}
.reason-words {
  padding: 3vw;
}
/* 右：タイトル・サブ・本文
   ※ .ttl / .lead のサイズ等は common.css に委譲し、色・余白のみ上書き */
.ReasonRow .ttl {
  color: #93815f;
  margin: 0 0 0.2rem 0;
}
.ReasonRow .ttl span {
  letter-spacing: -0.1rem;
}
.rr-sub {
  font-size: 1.3rem;
  letter-spacing: .08rem;
  color: #93815f;
  margin: 0 0 2rem 0;
  font-weight: 700;
  font-family: 'Noto Serif JP', serif;
}
.ReasonRow .lead {
  width: 50vw;
  color: #3e3a37;
  margin: 0;
}
/* ==============================
 * グリッド上揃え調整 end
 * ============================== */
/* ==============================
 * 木造メッセージセクション start（PC）
 * ============================== */
.WoodMessageSec {
  width: 100vw;
  padding: 8vw 0;
  border-top: .1rem solid #e3daca;
}
.wood-msg-in {
  width: 100vw;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45vw 1fr;
  column-gap: 0;
  align-items: center;
}
/* 左：画像 */
.wood-msg-img {
  width: 45vw;
  margin: 0;
}
.wood-msg-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
/* 右：テキスト（左揃え・左に5vw余白） */
.wood-msg-words {
  padding-left: 5vw; /* 指示：左に 5vw */
  text-align: left;
}
.WoodMessageSec .lead { /* サイズ等は common.css の .lead に委譲、色と間隔のみ */
  color: #3e3a37;
  margin: 0;
}
.WoodMessageSec .lead + .lead {
  margin-top: 1.6rem; /* 段落間の余白 */
}
/* ==============================
 * 木造メッセージセクション end
 * ============================== */
/* ==============================
 * 木造・不安払拭メッセージセクション start（PC）
 * ============================== */
/* ベース色・サイズ（必要に応じて数値だけ変えてください） */ :root {
  /* 参考：見本のダークグレー寄せ */
  /* --wm-bg: #6f6c6b;  */
  --wm-bg: #6f6b6b; /* 微調整しやすいよう近似色で定義 */
  --wm-ttl: 3.6vw; /* 大見出しサイズ（PC） */
  --wm-body: 1.08rem; /* 本文サイズ（commonのleadよりほんの少し大きめ） */
}
.WoodMythSec {
  width: 100vw; /* セクションは100vwフル幅 */
  background: var(--wm-bg);
  color: #fff;
}
.wm-in {
  width: 95vw; /* 指示：in も 100vw */
  margin: 0 auto;
  padding: 5.5vw 5vw 2vw; /* 見本の上下左右の余白感に合わせる */
  box-sizing: border-box;
  text-align: left;
}
/* 大見出し：明朝（Noto Serif JP想定） */
.wm-ttl {
  font-family: 'Noto Serif JP', serif;
  font-feature-settings: "palt"1, "kern"1;
  font-kerning: normal;
  font-weight: 400;
  font-size: var(--wm-ttl);
  letter-spacing: .06rem;
  color: #fff;
  margin: 0 0 2.2vw;
}
/* 引用っぽい最初の括りをやや強調（任意・見本ニュアンス） */
.wm-quote {
  font-weight: 500;
}
.wm-ttl > span:not(.wm-quote) {
  font-size: 70%; /* 「そのイメージ、もう昔の話です。」を小さく */
  font-weight: 500; /* 太さは見出しより控えめに（任意） */
}
/* 本文：ゴシック（Noto Sans JP想定） */
.wm-body {
  font-size: var(--wm-body);
  line-height: 2.0;
  letter-spacing: .08rem;
  color: #ffffff;
  margin: 0;
}
/* ==============================
 * 木造・不安払拭メッセージセクション end
 * ============================== */
/* ==============================
 * 誤解を解くセクション（5連） style start（PC）
 * ============================== */
/* 調整用トークン（見本近似色） */ :root {
  --myth-bg: #6f6b6b; /* セクション地色（ご指定） */
  --myth-head-bg: #e0d1cd; /* 見出し帯（薄ピンク系） */
  --myth-card-bg: #f4f1ec; /* カード地（薄生成り） */
  --myth-accent: #947847; /* アクセント（矢印/強調） */
  --myth-text: #3e3a37; /* 本文色 */
}
.MythListSec {
  width: 100vw;
  background: var(--myth-bg);
  padding: 3vw 0 4vw;
  color: #fff;
}
.myth-in {
  width: 85vw; /* 両端に余白を持たせる。必要なら 92〜95vw へ */
  margin: 0 auto;
}
/* ─ 見出し帯 ─ */
.myth-item {
  margin: 0 0 2.2vw;
}
.myth-head {
  background: var(--myth-head-bg);
  padding: 0.5vw 1.2vw;
}
.myth-head__label {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: .06rem;
  color: #855f5a; /* 帯の文字色（見本の赤みブラウン近似） */
}
.myth-head__idx {
  margin-right: 1.2vw;
}
.myth-head__ttl {}
/* ─ 本体カード ─ */
.myth-card {
  background: var(--myth-card-bg);
  padding: 1.5vw;
}
.myth-body {
  display: grid;
  grid-template-columns: 1fr 18vw; /* 左=テキスト / 右=画像（見本比率） */
  column-gap: 0vw;
  align-items: start;
}
/* 左：テキスト */
.myth-words {
  color: var(--myth-text);
  padding-left: 5vw;
}
.myth-point {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--myth-accent);
  margin: 0 0 1.2vw;
  letter-spacing: .06rem;
}
.myth-point__mark {
  display: inline-block;
  margin-right: .5rem;
}
.MythListSec .lead {
  color: var(--myth-text);
  margin: 0;
}
.MythListSec .lead + .lead {
  margin-top: 1.1rem;
  font-weight: bold;
  font-size: 1.2rem;
}
/* 右：画像（白フレーム） */
.myth-fig {
  margin: 0;
  background: #fff;
  box-sizing: border-box;
    align-self: end;          /* ← Gridのセル内で“下”に寄せる */
  display: flex;   
}
.myth-fig img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  align-self: flex-end;   
}
/* ==============================
 * 誤解を解くセクション（5連） style end
 * ============================== */
/* ==============================
 * 木造・信頼メッセージセクション style start（PC）
 * ============================== */
.WoodTrustSec {
  width: 100vw;
  background: var(--wm-bg); /* 既存トークンを使用 */
  color: #fff;
}
.wt-in {
  width: 85vw;
  margin: 0 auto;
  padding: 0 0 6vw 0; /* 余白は見本準拠 */
  box-sizing: border-box;
}
/* 見出しは既存 .wm-ttl を使用。このセクションだけ 2つ目spanを70%に */
.WoodTrustSec .wm-ttl {
  margin: 0 0 2.8vw 0;
  line-height: 1.35;
}
.WoodTrustSec .wm-ttl > span:not(.wm-quote) {
  font-size: 70%; /* 2つ目「それは、木造が…」だけ小さく */
  font-weight: 400;
}
/* 本文は既存 .wm-body を使用（色と間隔のみ調整） */
.WoodTrustSec .wm-body {
  font-size: var(--wm-body);
  line-height: 2;
  letter-spacing: .08rem;
  color: #fff;
  margin: 0;
}
.WoodTrustSec .wm-body + .wm-body {

}
/* ==============================
 * 木造・信頼メッセージセクション style end
 * ============================== */


}
/*//////////SPサイズ///////////*/
@media screen and (max-width:767px) {
/** ==============================
 * ファーストビュー (SP)
 * ============================== **/
.MainVisualSection {
  position: relative;
  width: 100vw;
  aspect-ratio: 16 / 12;
  overflow: hidden;
  background-color: #333;
}
/* 動画背景 */
.MainVisualSection__video-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.MainVisualSection__video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* 黒オーバーレイ */
.MainVisualSection__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.3);
  z-index: 2;
  pointer-events: none;
}
/* コンテンツ：SPは自然フロー＋安全域に見出し配置 */
.MainVisualSection__content {
  position: static;                /* absolute → static */
  width: 100vw;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  z-index: 3;
}
.MainVisualSection__brand-movie {
  align-self: flex-start;
  margin: 0 0 4vw 4vw;             /* 40px → 4vw */
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 4;
  pointer-events: auto;
}
/* ブランドムービーボタン */
.MainVisualSection__brand-link img { width: 24vw; height: auto; }

/* コピー */
.MainVisualSection__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;         /* 右寄せ→左寄せ */
  position: absolute;
  left: 6.5vw;                     /* 安全域 */
  right: 6.5vw;
  bottom: 10vw;                    /* 下部UIと干渉回避 */
  margin: 0;
  z-index: 4;
  pointer-events: auto;
}
.MainVisualSection__en.serif {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.8rem;               /* 見出し：1.6rem基準＋役割で+α */
  font-weight: 100;
  color: #fff;
  letter-spacing: .12rem;
  text-shadow: 0 .125rem 1.125rem rgba(0,0,0,.18);
  line-height: 1.8;                /* 行間＝1.8 */
}

.HeaderSection { position: relative; }
.MainVisualHeader { background: transparent; z-index: 1000; }
.mv-img, .mv-img img { width: 100%; height: 100%; display: block; }
.mv-img img { object-fit: cover; }

/* ==============================
 * 汎用リボンヒーロー (SP) start
 * ============================== */
.RibbonHeroSection{
  position: relative;
  display: grid;                  /* ← 重ね合わせの土台 */
  grid-template-areas: "stack";   /* 1セルを共有させて重ねる */
  padding: 70px 0 0;              /* 画像を上から70px下げて開始（要件） */
}

/* セクション内インナー（ラベル等） */
.rhero-in{
  grid-area: stack;               /* ← 同じセルに重ねる */
  width: 100vw;                   /* 87vw → 100vw（要望） */
  margin: 0 auto;
  position: relative;
  z-index: 3;                     /* 帯や画像より前に */
}

/* 右側の画像（全幅・比率10:3） */
.rhero-figure{
  grid-area: stack;               /* ← 画像も同セル */
  position: relative;
  width: 100%;
  aspect-ratio: 10 / 4;           /* 要望の比率 */
  overflow: hidden;
  z-index: 1;
}
.rhero-figure img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* タイトル：画像の右下固定（right:0,bottom:0 相当） */
.RibbonHeroSection .ttl{
  grid-area: stack;               /* ← 画像と同セルに重ねる */
  align-self: end;                /* 下寄せ */
  justify-self: end;              /* 右寄せ */
  margin: 0;
  margin-right: 0vw;
  margin-bottom: 0.3rem;
  font-size: 1.5rem;              /* ビルドSP：見出し */
  line-height: 1.4;
  color: #947847;
  z-index: 2;
}

/* 白帯ラベル（そのまま使用可） */
.rhero-label{
  display: inline-block;
  background: #fff;
  padding: .6rem 1rem;
  margin: 7vw 0 .8rem 0;
  position: relative;
  z-index: 4;                     /* タイトルより前に出したい場合は 4 */
}

/* 最背面の帯（生成り） */
.RibbonHeroSection .obi{
  position: absolute;
  left: 0;
  top: .8rem;
  width: 100%;
  height: 24vw;
  background: #e3daca;
  z-index: 0;
}
/* ==============================
 * 汎用リボンヒーロー (SP) end
 * ============================== */

/** ==============================
 * 木造 9つの理由 ヘッダー (SP)
 * ============================== **/
.WoodReasonsSec {
  width: 100vw;
  text-align: center;
  padding: 2.4rem 0 1.6rem;
  background: #fbf9f6;
}
.wr-in { width: 100vw; margin: 0 auto; }
.wr-tag {
  font-size: 1.2rem;               /* ラベル */
  letter-spacing: .12rem;
  color: #93815f;
  margin: 0 0 .3rem;
  font-weight: 700;
  font-family: 'Noto Serif JP', serif;
}
.wr-ttl {
  font-size: 1.6rem;               /* 見出し */
  line-height: 1.4;
  letter-spacing: .12rem;
  color: #93815f;
  margin: 0 0 .6rem;
  font-weight: 500;
  font-family: 'Noto Serif JP', serif;
}

/** ==============================
 * 理由行グリッド (SP)
 * ============================== **/
.ReasonRow {
  width: 100vw;
  background: #fbf9f6;
  padding: 0;
}
.reason-grid {
  width: 87vw;
  margin: 0 auto;
  border-top: .1rem solid #e3daca;
  display: grid;
  grid-template-columns: 1fr;      /* 2→1列 */
  row-gap: .4rem;
  align-items: start;
}
/* 番号 */
.reason-numcol {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  align-self: stretch;
  border-right: none;              /* 縦線削除 */
  padding-top: .6rem;
}
.reason-num {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-weight: 100;
  font-variant-numeric: lining-nums;
  font-size: 2.6rem;               /* 強調維持 */
  line-height: 1;
  color: #947847;
  position: relative;
  top: 0;
  margin: .6rem .6rem 0 0;
  transform: none;
  display: inline-block;
}
/* 文章 */
.reason-words { padding: .6rem 0 1.2rem; }
.ReasonRow .ttl {
  color: #93815f;
  margin: 0 0 .2rem 0;
  font-size: 1.6rem;               /* 見出し */
  line-height: 1.4;
}
.ReasonRow .ttl span { letter-spacing: -.1rem; }
.rr-sub {
  font-size: 1.1rem;               /* 小見出し */
  letter-spacing: .08rem;
  color: #93815f;
  margin: 0 0 .8rem 0;
  font-weight: 700;
  font-family: 'Noto Serif JP', serif;
}
.ReasonRow .lead {
  width: auto;                     /* 50vw → 自然幅 */
  color: #3e3a37;
  margin: 0;
  font-size: 1.0rem;               /* 本文 */
  line-height: 1.8;                /* 行間 */
}

/** ==============================
 * 木造メッセージ (SP)
 * ============================== **/
.WoodMessageSec {
  width: 100vw;
  padding: 2.4rem 0;
  border-top: .1rem solid #e3daca;
}
.wood-msg-in {
  width: 87vw;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;      /* 2→1列 */
  row-gap: 1rem;
}
.wood-msg-img {
  width: 100%;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.wood-msg-img img { width: 100%; height: 100%; display: block; object-fit: cover; }
.wood-msg-words {
  padding-left: 0;                 /* 5vw → 0 */
  text-align: left;
}
.WoodMessageSec .lead {
  color: #3e3a37;
  margin: 0;
  font-size: 1.0rem;
  line-height: 1.8;
}
.WoodMessageSec .lead + .lead { margin-top: .8rem; }

/** ==============================
 * 木造・不安払拭メッセージ (SP)
 * ============================== **/
.WoodMythSec {
  width: 100vw;
  background: var(--wm-bg, #6f6b6b);
  color: #fff;
}
.wm-in {
  width: 87vw;                     /* 95vw → 87vw */
  margin: 0 auto;
  padding: 2.4rem 0 1.2rem;
  box-sizing: border-box;
  text-align: left;
}
.wm-ttl {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 1.6rem;               /* 見出し */
  letter-spacing: .06rem;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.4;
}
.wm-ttl > .wm-quote { font-weight: 500; }
.wm-ttl > span:not(.wm-quote) {
  font-size: 70%;
  font-weight: 500;
}
.wm-body {
  font-size: 1.0rem;               /* 本文 */
  line-height: 1.8;
  letter-spacing: .06rem;
  color: #fff;
  margin: 0;
}

/** ==============================
 * 誤解を解く（5連） (SP)
 * ============================== **/
.MythListSec {
  width: 100vw;
  background: var(--myth-bg, #6f6b6b);
  padding: 1.6rem 0;
  color: #fff;
}
.myth-in { width: 87vw; margin: 0 auto; }
.myth-item { margin: 0 0 1.2rem; }
.myth-head {
  background: var(--myth-head-bg, #e0d1cd);
  padding: .6rem 1rem;
}
.myth-head__label {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .06rem;
  color: #855f5a;
}
.myth-head__idx { margin-right: .6rem; }
.myth-card {
  background: var(--myth-card-bg, #f4f1ec);
  padding: 1rem;
}
/* 本体：1カラム */
.myth-body {
  display: grid;
  grid-template-columns: 1fr;      /* 1fr 18vw → 1列 */
  row-gap: .8rem;
  align-items: start;
}
.myth-words {
  color: var(--myth-text, #3e3a37);
  padding-left: 0;                 /* 5vw → 0 */
}

/* ▶ のある見出し行（ぶら下がり＋行中央合わせ） */
.myth-point{
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--myth-accent, #947847);
  letter-spacing: .06rem;
  margin: 0 0 .6rem;

  /* ビルドSP：本文行間 */
  line-height: 1.2;

  /* ぶら下がりインデント（2行目以降を揃える） */
  padding-left: 2.2em;      /* マーカー分の空き */
  text-indent: -1.3em;      /* 1行目だけ左へぶら下げ */
}

/* ▶ マーカー（行の“高さ”に合わせて上下中央） */
.myth-point__mark{
  display: inline-block;
  width: 1em;             /* padding-left と同値 */
  height: 1.8em;            /* 親の line-height(1.8) × 1em */
  line-height: 1.8em;       /* 箱の中で縦中央に配置 */
  text-align: center;
  vertical-align: middle;   /* 行ボックス内での微調整 */
  margin-right: 0em;       /* 文字との間隔（任意） */
}


.MythListSec .lead {
  color: var(--myth-text, #3e3a37);
  margin: 0;
  font-size: 1.0rem;               /* 本文 */
  line-height: 1.8;                /* 行間 */
  letter-spacing: .04rem;
}
.MythListSec .lead + .lead {
  margin-top: .6rem;
  font-weight: 700;                /* 強調は維持 */
  font-size: 1.05rem;
}
/* 画像（白フレーム） */
.myth-fig {
  margin: 0;
  background: #fff;
  box-sizing: border-box;
  padding: .4rem;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  display: block;
}
.myth-fig img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/** ==============================
 * 木造・信頼メッセージ (SP)
 * ============================== **/
.WoodTrustSec {
  width: 100vw;
  background: var(--wm-bg, #6f6b6b);
  color: #fff;
}
.wt-in {
  width: 87vw;
  margin: 0 auto;
  padding: 0 0 2.4rem 0;
  box-sizing: border-box;
}
.WoodTrustSec .wm-ttl {
  margin: 0 0 1rem 0;
  line-height: 1.4;
  font-size: 1.6rem;               /* 見出し */
}
.WoodTrustSec .wm-ttl > span:not(.wm-quote) {
  font-size: 70%;
  font-weight: 400;
}
.WoodTrustSec .wm-body {
  font-size: 1.0rem;               /* 本文 */
  line-height: 1.8;                /* 行間 */
  letter-spacing: .06rem;
  color: #fff;
  margin: 0;
}
.WoodTrustSec .wm-body + .wm-body { margin-top: .8rem; }

}