/*
Theme Name: CENTRALFOREST2026
Theme URI: 
Author: CENTRALFOREST2026
Author URI: 
Description: 
Version: 1.0
*/

/* =========================================
   ベース設定
========================================= */
:root {
  --color-text: #333333;
  --color-green: #376d54; /* ロゴや見出しの緑色 */
  --color-orange: #f29c54; /* ボタンのオレンジ色 */
  --font-mincho: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  --font-gothic: "Noto Sans JP", "Yu Gothic", "YuGothic", sans-serif;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-mincho); /* ★基本を明朝体に変更 */
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================
   ヘッダー
========================================= */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.85); /* ★白の85%半透明に変更 */
  height: 80px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.header-left {
  padding-left: 20px;
}

.header-logo {
  height: 60px; /* お手持ちのロゴ画像に合わせて調整してください */
}

.header-nav ul {
  display: flex;
  gap: 35px;
}

.header-nav a {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #333;
}

.header-btn {
  /* ▼ 濃いめのオレンジ〜オレンジのグラデーション（透明度80%）に変更 ▼ */
  background: linear-gradient(135deg, rgba(230, 115, 30, 0.8), rgba(242, 156, 84, 0.8));
  color: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 40px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
}

/* =========================================
   ヒーローセクション
========================================= */
.hero-section {
  /* 背景画像と、左から右へ透明になる白グラデーションを重ねる */
  background-image: 
    linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 32%, rgba(255,255,255,0) 65%),
    url('../images/common/hero-bg.webp'); /* 実際の背景画像パス */
  background-size: cover;
  background-position: center right;
  padding: 160px 0 110px; /* ★上の余白を 90px から 160px に増やして被りを防ぐ */
}

.hero-content {
  max-width: 550px;
}

.hero-catch {
  font-family: var(--font-mincho);
  font-size: 40px;
  line-height: 1.5; /* ★ 1.8から1.5に縮めて、全体の間延びをなくす */
  letter-spacing: 0.05em;
  margin-bottom: 50px;
  color: #222;
  font-weight: 500;
  margin-top: 0;
}

/* ★ 以下のブロックごとの設定を追記 */
.catch-group {
  display: block; /* ブロック要素にして縦に積む */
}
.catch-group:first-child {
  margin-bottom: 30px; /* ★ 「豊かなまち。」の下の隙間をここで調整（数値を変えれば自由に広げたり縮めたりできます） */
}

.hero-sub-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.icon-tree {
  width: 40px;
}

.hero-sub-logo span {
  font-family: var(--font-mincho);
  font-size: 26px;
  color: var(--color-green);
  font-weight: bold;
  letter-spacing: 0.05em;
}

.hero-desc {
  font-size: 14.5px;
  line-height: 2.3;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin: 0;
}

/* =========================================
   コンセプトセクション
========================================= */
.concept-section {
  padding: 100px 0;
  background-color: #fff;
}

.concept-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.concept-text-area {
  flex: 1;
  padding-top: 30px;
}

.concept-label {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font-mincho);
  font-size: 26px;
  color: var(--color-green);
  border-bottom: 1.5px solid var(--color-green);
  padding-bottom: 15px;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.icon-leaf {
  width: 45px;
}

.concept-title {
  font-family: var(--font-mincho);
  font-size: 30px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #222;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 0;
}

.concept-desc {
  font-size: 15px;
  line-height: 2.3;
  letter-spacing: 0.05em;
  margin: 0;
}

.concept-image-area {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* 画像の白いフチと影の表現 */
.concept-image-wrapper {
  background: #fff;
  padding: 15px; /* 白いフチの太さ */
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.concept-caption {
  font-size: 13px;
  color: #666;
  margin-top: 15px;
  letter-spacing: 0.1em;
  font-family: var(--font-mincho);
  text-align: right;
  margin-bottom: 0;
}

/* =========================================
   ホバーアクション（マウスオーバー時）
========================================= */
/* 簡単30秒資料請求ボタン */
.header-btn {
  transition: opacity 0.3s ease; /* 0.3秒かけて変化させる */
}
.header-btn:hover {
  opacity: 0.75; /* マウスを乗せると少し透明になる */
}

/* ヘッダーのメニューリンク */
.header-nav a {
  transition: opacity 0.3s ease, color 0.3s ease;
}
.header-nav a:hover {
  opacity: 0.7;
  color: var(--color-green); /* ほんの少し緑色に変化させる */
}

/* サイト内のリンク全般（ロゴなど） */
a {
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.8;
}

/* =========================================
   6つの魅力セクション
========================================= */
.features-section {
  background-color: #eef0eb; /* 背景の薄いグレーグリーン */
  padding: 100px 0 60px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 70px;
}

.section-title {
  font-family: var(--font-mincho);
  font-size: 28px;
  color: var(--color-green);
  letter-spacing: 0.05em;
  margin: 0;
  font-weight: 500;
}

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 40px; /* 上段と下段の「縦」の隙間 */
}

.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px; /* カード同士の「横」の隙間 */
}

/* 上段を左に寄せる（右に余白を作る） */
.row-top {
  padding-right: 80px; 
}

/* 下段を右に寄せる（左に余白を作る） */
.row-bottom {
  padding-left: 80px; 
}

.feature-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 40px 30px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03); /* ほんのり影をつける */
}

.feature-num {
  position: absolute;
  top: 25px;
  left: 30px;
  font-family: var(--font-mincho);
  font-size: 32px;
  color: var(--color-green);
  line-height: 1;
}

.feature-icon {
  height: 55px;
  margin-bottom: 25px;
}

.feature-title {
  font-family: var(--font-mincho);
  font-size: 20px;
  color: var(--color-green);
  line-height: 1.6;
  text-align: center;
  margin-bottom: 25px;
  margin-top: 0;
  letter-spacing: 0.05em;
}

.feature-desc {
  font-size: 14px;
  line-height: 2;
  color: #222;
  margin-bottom: 30px;
  text-align: left;
  width: 100%;
  flex-grow: 1;
}

.feature-img {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* =========================================
   周辺環境リストセクション
========================================= */
.env-list-section {
  padding: 0 0 100px;
  background-color: #eef0eb; /* 上のセクションと背景色を繋げる */
}

.env-list-inner {
  background-color: #fcfaf3; /* 外側の薄いクリーム色の枠 */
  padding: 45px;
  border-radius: 20px;
}

.env-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.env-box {
  border-radius: 15px;
  padding: 30px 25px;
}

/* 各ボックスの背景色 */
.env-box.box-shop { background-color: #faebd3; }
.env-box.box-public { background-color: #c9dde2; }
.env-box.box-park { background-color: #dcebdc; }

.env-box-title {
  font-family: var(--font-mincho);
  font-size: 18px;
  color: #fff;
  text-align: center;
  padding: 12px 0;
  border-radius: 8px;
  margin-top: 0;
  margin-bottom: 25px;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* 各タイトルの背景色 */
.box-shop .env-box-title { background-color: #b3a897; }
.box-public .env-box-title { background-color: #92a4a7; }
.box-park .env-box-title { background-color: #a0b2a0; }

.env-box ul li {
  font-size: 14.5px;
  color: #333;
  line-height: 2.3;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* =========================================
   街並み＆動画セクション
========================================= */
.site-plan-section {
  padding: 100px 0;
  background-color: #fff;
}

.plan-top-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 70px;
}

.plan-text-area {
  flex: 1;
  padding-right: 40px;
}

/* このセクションのヘッダーは左寄せ */
.section-header.plan-header {
  justify-content: flex-start;
  margin-bottom: 40px;
}

.plan-desc {
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: 0.1em;
  color: #333;
  margin-bottom: 40px;
  font-weight: 500;
}

/* ▼ 四角いチェックマークのリスト（画像不要のCSS描画） ▼ */
.plan-checklist {
  list-style: none;
}

.plan-checklist li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: bold;
  color: #222;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
}

/* 四角い枠 */
.plan-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 2px solid var(--color-green);
  border-radius: 3px;
  background-color: #fff;
  box-sizing: border-box;
}

/* 緑のチェックマーク */
.plan-checklist li::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 6px;
  height: 12px;
  border-right: 2px solid var(--color-green);
  border-bottom: 2px solid var(--color-green);
  transform: translateY(-65%) rotate(45deg);
}

.plan-image-area {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.plan-image-area img {
  width: 100%;
  max-width: 650px;
}

/* ▼ YouTube動画レスポンシブ対応 ▼ */
.plan-video-area {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 の比率を保つ */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15); /* 映像に少し影をつける */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* =========================================
   空撮イメージ＆3つの特徴セクション
========================================= */
.aerial-features-section {
  width: 100%;
}

.aerial-image-area {
  width: 100%;
  height: 500px; /* 縦幅（必要に応じて調整してください） */
  
  /* ▼ 背景の空撮画像（ファイル名は環境に合わせてください） ▼ */
  background-image: url('../images/common/aerial-bg.webp');
  background-size: cover;
  background-position: center;
  
  display: flex;
  justify-content: center;
  align-items: center;
}

.aerial-logo {
  max-width: 450px; /* 白ロゴの最大幅 */
  width: 80%;
  height: auto;
}

.three-features-area {
  background-color: #fcfcfc; /* うっすらグレーの背景色 */
  padding: 50px 0;
}

.three-features-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.feature-col {
  text-align: center;
  position: relative;
  flex: 1;
}

/* 区切りの縦線（最後以外につける） */
.feature-col:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 45px;
  background-color: #dcdcdc; /* 薄いグレーの線 */
}

.feat-main {
  font-family: var(--font-mincho);
  font-size: 24px;
  color: #333;
  margin: 0 0 15px;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.feat-sub {
  font-size: 14.5px;
  color: #044b62; /* ダークブルーグリーン */
  margin: 0;
  font-weight: bold;
  letter-spacing: 0.05em;
}

/* =========================================
   区画情報＆区画図セクション
========================================= */
.plot-info-section {
  padding-bottom: 60px;
}

.plot-banner {
  /* ▼ フッターと同じ画像と半透明フィルターを指定 ▼ */
  background-image: 
    linear-gradient(rgba(75, 136, 122, 0.55), rgba(75, 136, 122, 0.55)),
    url('../images/common/cta-bg.webp'); /* ※フッターと同じ画像パス */
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 40px 0; /* 上下の余白を少し広げて背景を見えやすくしました */
}

.plot-banner-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.plot-item {
  display: flex;
  align-items: baseline;
}

.plot-label {
  font-family: var(--font-mincho);
  font-size: 20px;
  margin-right: 10px;
}

.plot-number {
  font-family: var(--font-mincho);
  font-size: 65px;
  line-height: 1;
  margin-right: 10px;
}

.plot-unit {
  font-family: var(--font-mincho);
  font-size: 18px;
}

.plot-area {
  flex-direction: column;
  align-items: center;
}

.plot-area-label {
  font-family: var(--font-mincho);
  font-size: 20px;
  margin-bottom: 5px;
}

.plot-area-num {
  font-family: var(--font-mincho);
  font-size: 26px;
  line-height: 1.2;
}

.plot-area-sub {
  font-size: 14px;
}

.plot-map-area {
  width: 100%;
}

.plot-map-img {
  width: 100%;
  height: auto;
  display: block;
}

.plot-notes {
  font-size: 12px;
  line-height: 1.8;
  color: #000;
  margin-top: 30px;
  font-weight: bold;
  font-family: var(--font-gothic); /* ★ゴシック体を指定 */
}

/* =========================================
   Google Map ボタン
========================================= */
.map-btn-wrapper {
  text-align: center;
  margin-top: 40px;
}

.btn-google-map {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-orange); /* ヘッダーの資料請求ボタンと同じオレンジ色 */
  color: #fff;
  font-family: var(--font-gothic);
  font-size: 16px;
  font-weight: bold;
  padding: 16px 45px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(242, 156, 84, 0.4); /* ほんのりオレンジの影を落として目立たせる */
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}

.btn-google-map:hover {
  background-color: #e58b43; /* ホバーで少し色を濃くする */
  transform: translateY(-2px); /* ホバーで少しだけフワッと浮く */
  box-shadow: 0 6px 20px rgba(242, 156, 84, 0.5);
  color: #fff;
}

.icon-map {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

/* =========================================
   建築パートナーセクション
========================================= */
.partners-section {
  padding: 60px 0 100px;
}

.partners-box {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 50px;
  background-color: #fff;
}

.partners-box .section-title {
  margin-bottom: 50px;
  text-align: center;
}

/* 建築パートナー セクションの追加テキスト */
.partner-notes {
  font-family: var(--font-gothic);
  font-size: 12px;
  color: #000;
  font-weight: bold;
  text-align: center;
  
  /* タイトルとロゴの間の余白を調整 */
  margin-top: -30px; 
  margin-bottom: 40px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 40px;
}

.partner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.partner-logo img {
  max-width: 100%;
  height: auto;
  max-height: 60px; /* ロゴの高さを揃える */
}

/* =========================================
   ギャラリーセクション
========================================= */
.gallery-section {
  background-color: #f2f4f1;
  padding-top: 50px;
}

.gallery-header {
  text-align: center;
  margin-bottom: 30px;
}

/* ▼ Swiper用のスタイル ▼ */
.gallery-swiper {
  width: 100%;
}

/* 自動再生を一定の速度で滑らかにするための設定 */
.gallery-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.gallery-swiper .swiper-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  cursor: zoom-in; /* マウスを虫眼鏡にする */
  transition: opacity 0.3s;
  display: block; /* 画像の下の隙間を消す */
}

.gallery-swiper .swiper-slide img:hover {
  opacity: 0.7; /* ホバーで少し透明に */
}

/* 枠をはみ出た部分を隠す */
.gallery-row {
  width: 100%;
  overflow: hidden;
}

/* 画像を横に並べてアニメーションで動かす */
.gallery-track {
  display: flex;
  width: max-content; /* 中身の幅に合わせる */
  animation: scrollGallery 30s linear infinite; /* 30秒かけてループ */
}

/* マウスを乗せたら動きを止める */
.gallery-track:hover {
  animation-play-state: paused;
}

.gallery-track img {
  width: 16.666vw; /* 画面幅の1/6のサイズ（6枚で1画面分） */
  aspect-ratio: 16 / 9;
  object-fit: cover;
  cursor: zoom-in; /* マウスを虫眼鏡アイコンにする */
  transition: opacity 0.3s;
}

.gallery-track img:hover {
  opacity: 0.7; /* クリックできることが分かるようにホバーで半透明に */
}

/* 無限スクロール用アニメーション */
@keyframes scrollGallery {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* 半分の位置（2セット目の頭）まで移動すればループ完了 */
}

/* ▼ 拡大用モーダルのデザイン ▼ */
.gallery-modal {
  display: none; /* 初期は非表示 */
  position: fixed;
  z-index: 9999; /* 画面の一番手前に出す */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85); /* 半透明の黒背景 */
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 5px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.3);
  animation: zoomIn 0.3s ease; /* ふわっと拡大するアニメーション */
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
}

@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* =========================================
   よくあるご質問セクション
========================================= */
.faq-section {
  padding: 100px 0;
  background-color: #fdfdfd;
}

.faq-container {
  max-width: 900px;
}

.faq-container .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: #fff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 25px 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.faq-q {
  display: flex;
  align-items: center;
  font-family: var(--font-gothic); /* ★ゴシック体に変更 */
  font-size: 16px; /* ゴシック体に合わせて少しサイズを調整 */
  color: #333;
  font-weight: bold;
}

.q-icon {
  font-size: 24px;
  color: var(--color-green);
  margin-right: 15px;
}

.faq-q p {
  margin: 0;
  flex: 1;
}

/* Aの部分（回答） */
.faq-a {
  margin-top: 15px;
  display: flex;
  align-items: flex-start; /* 上揃え */
  font-size: 14px;
  color: #444;
  line-height: 1.8;
}

.a-icon {
  font-size: 20px; /* Qより少し小さめ */
  color: #555;
  margin-right: 15px;
  font-weight: bold;
  line-height: 1.5; /* テキストの1行目と高さを合わせる */
}

.faq-a p {
  margin: 0;
  flex: 1;
}

/* =========================================
   フッターCTAセクション
========================================= */
.footer-cta {
  /* ▼ 画像の上に、柔らかい緑色（85%の不透明度）のフィルターを重ねる ▼ */
  background-image: 
    linear-gradient(rgba(75, 136, 122, 0.55), rgba(75, 136, 122, 0.55)),
    url('../images/common/cta-bg.webp'); /* ←ご用意いただいた木漏れ日等の画像パス */
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: #fff;
  text-align: center;
}

.cta-catch {
  font-family: var(--font-mincho);
  font-size: 32px;
  margin-bottom: 25px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.cta-sub {
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  font-weight: bold;
}

.cta-desc {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.btn-cta-doc {
  display: inline-block;
  background-color: #fff;
  color: #e60012; /* 赤色 */
  font-size: 18px;
  font-weight: bold;
  padding: 20px 60px;
  border-radius: 50px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-tel-box {
  background-color: #fff;
  color: #333;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 30px;
  border-radius: 15px;
}

.tel-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.tel-number-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

/* フッター 電話アイコン */
.tel-label-box {
  display: flex;
  align-items: center;
  gap: 8px; /* アイコンと文字の隙間 */
  font-size: 15px; /* フリーダイヤルの文字サイズ */
  font-weight: bold;
  color: #333;
}

.icon-phone {
  width: 22px;
  height: 22px;
  color: #1a5160; /* 番号と同じダークブルーグリーン色に */
}

.icon-freedial {
  height: 30px; /* フリーダイヤルアイコンの高さ */
}

.tel-number {
  font-size: 45px;
  font-weight: bold;
  color: #1a5160; /* ダークブルーグリーン */
  line-height: 1;
  font-family: Arial, sans-serif;
}

.tel-time {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* =========================================
   会社情報セクション
========================================= */
.footer-company {
  background-color: #f7f7f7; /* 薄いグレー */
  padding: 60px 0;
}

.company-inner {
  display: flex;
  justify-content: center;
  gap: 120px;
}

.company-name {
  font-size: 18px;
  font-weight: bold;
  color: #222;
  margin-bottom: 15px;
}

.company-info {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  margin: 0;
}

/* =========================================
   サイトフッター
========================================= */
.site-footer {
  background-color: #fff;
  padding: 40px 0 20px;
  border-top: 1px solid #eaeaea;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
}

.footer-logo img {
  height: 40px;
}

.footer-nav ul {
  display: flex;
  gap: 25px;
}

.footer-nav a {
  font-size: 13px;
  font-weight: bold;
  color: #333;
}

/* スムーススクロールとトップへ戻るボタン */
html {
  scroll-behavior: smooth;
}

.page-top-btn {
  background-color: var(--color-green);
  color: #fff;
  width: 50px; /* 押しやすいように少し大きく */
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  
  /* ▼ 画面右下に固定表示する設定 ▼ */
  position: fixed;
  right: 30px;
  bottom: 70px;
  z-index: 999; /* 他の要素より上に表示 */
  box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* 浮いている感を出す影 */
  transition: all 0.3s ease;
}

/* マウスを乗せると少し上に浮き上がる */
.page-top-btn:hover {
  transform: translateY(-5px);
  opacity: 0.8;
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid #eaeaea;
  padding-top: 20px;
  font-size: 11px;
  color: #666;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #666;
  margin: 0 5px;
}

/* =========================================
   PC時はモバイル専用要素を隠す
========================================= */
.menu-toggle, .mobile-bottom-bar, .mobile-menu { display: none; }

/* =========================================
   スマートフォン用レスポンシブ（一括設定）
   ※必ず一番下に配置してください
========================================= */
@media screen and (max-width: 768px) {
  
  /* ▼ 画面下部に固定ボタンが入るため、bodyの余白を空ける ▼ */
  body { padding-bottom: 60px; }

  /* 全体の余白 */
  .container { padding: 0 15px; }

  /* ▼ ヘッダー（上部固定＆半透明・ハンバーガー追加） ▼ */
  .site-header { 
    padding: 0; 
    position: fixed; /* スクロールしても上部に固定 */
    background-color: rgba(255, 255, 255, 0.95); /* 背景を白の半透明に */
    height: 60px; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  .header-logo { height: 40px; }
  
  /* スマホではPC用メニューと資料請求ボタンを隠す */
  .header-nav, .header-btn { display: none; }
  
 /* ▼ 3本線（ハンバーガーメニュー）のデザイン ▼ */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    background: transparent;
    border: none;
    padding: 0;
    margin-right: 15px;
    cursor: pointer;
    z-index: 10001; /* メニュー本体より手前に出す */
  }
  .menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease; /* アニメーション用 */
  }

  /* メニュー展開時は3本線を「×」に変形し、色を白にする */
  .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #fff; 
  }
  .menu-toggle.is-active span:nth-child(2) {
    opacity: 0; /* 真ん中の線を消す */
  }
  .menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #fff;
  }

  /* ▼ 展開されるメニュー本体（高級感のあるデザイン） ▼ */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(26, 81, 96, 0.95); /* 深いダークブルーグリーンの半透明 */
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease; /* フワッと出す */
  }
  .mobile-menu.is-active {
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px; /* メニューの縦間隔 */
  }
  .mobile-nav a {
    color: #fff;
    font-size: 18px;
    font-family: var(--font-mincho); /* 明朝体 */
    letter-spacing: 0.15em;
  }

  /* ▼ ヒーローセクション（白ぼかし＋下部に写真） ▼ */
  .hero-section {
    /* ▼ 変更ポイント：グラデーションの白を早く透明にして顔にかからないようにする ▼ */
    background-image: 
      linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 65%),
      url('../images/common/hero-bg.webp');
    background-color: #fff; /* 上部の足りない部分を白で塗る */
    
    /* ▼ 変更ポイント：画像を縮小して右下に配置 ▼ */
    background-size: 100% 100%, 250% auto; /* グラデは画面全体、写真はスマホ幅の2.5倍に縮小 */
    background-position: center top, right 10% bottom 0; /* 家族がいる右下に配置 */
    background-repeat: no-repeat;
    
    padding: 100px 0 400px; /* 家族を見せるために下部の余白をしっかり広げる */
  }
  .hero-catch { font-size: 26px; line-height: 1.6; margin-bottom: 25px; }
  .hero-sub-logo span { font-size: 18px; }
  .icon-tree { width: 30px; }
  .hero-desc { font-size: 13px; line-height: 1.8; }
  .catch-group:first-child { margin-bottom: 15px; }

  /* ▼ モバイル下部固定ボタン ▼ */
  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1); 
  }

  /* ▼ オレンジのボタン（透過80%グラデーションに変更） ▼ */
  .m-btn-doc {
    flex: 1;
    background: linear-gradient(135deg, rgba(242, 156, 84, 0.8), rgba(230, 115, 30, 0.8));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: bold;
    font-family: var(--font-mincho);
  }

  /* ▼ 緑のボタン（単色から透過80%グラデーションに変更） ▼ */
  .m-btn-tel {
    flex: 1;
    background: linear-gradient(135deg, rgba(66, 158, 115, 0.8), rgba(43, 119, 84, 0.8));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .m-tel-inner {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .m-tel-icon-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .m-icon-phone {
    width: 16px;
    height: 16px;
  }
  .m-tel-sub {
    font-size: 8px;
    margin-top: 2px;
  }
  .m-tel-num {
    font-size: 18px;
    font-family: Arial, sans-serif;
    font-weight: bold;
  }

  /* トップへ戻るボタンの位置調整（固定ボトムバーに被らないように上に逃がす） */
  .page-top-btn { 
    right: 15px; 
    bottom: 80px; 
    width: 40px; 
    height: 40px; 
    font-size: 16px;
  }

  /* ▼ 以下、既存のスマホ用設定 ▼ */
  .concept-section { padding: 60px 0; }
  .concept-inner { flex-direction: column; gap: 40px; }
  .concept-text-area { padding-right: 0; }
  .concept-label { font-size: 18px; }
  .concept-title { font-size: 22px; }
  .concept-image-wrapper { padding: 10px; }
  
  .features-section { padding: 60px 0; }
  .section-header { flex-direction: column; text-align: center; gap: 15px; margin-bottom: 40px; }
  .section-title { font-size: 20px; line-height: 1.5; }
  .features-grid { gap: 20px; padding: 0 50px; } 
  .features-row { grid-template-columns: 1fr; gap: 20px; } 
  .feature-num { font-size: 28px; top: 15px; left: 15px; }
  .feature-icon { height: 45px; margin-bottom: 15px; }
  .feature-title { font-size: 16px; margin-bottom: 15px; }
  .feature-desc { font-size: 13px; margin-bottom: 20px; line-height: 1.8; }
  .row-top { padding-right: 0; } 
  .row-bottom { padding-left: 0; } 
  .feature-card { padding: 30px 20px 20px; }

  .env-list-inner { padding: 20px; }
  .env-list-grid { grid-template-columns: 1fr; gap: 20px; } 
  .env-box { padding: 20px 15px; }

  .site-plan-section { padding: 60px 0; }
  .plan-top-area { flex-direction: column; gap: 30px; margin-bottom: 40px; }
  .plan-text-area { padding-right: 0; }
  .plan-checklist li { font-size: 14px; }
  
  .aerial-image-area { height: 250px; } 
  .aerial-logo { width: 60%; }
  .three-features-area { padding: 40px 0; }
  .three-features-inner { flex-direction: column; gap: 30px; } 
  .feature-col:not(:last-child)::after { display: none; } 

  .plot-banner { padding: 20px 0; }
  .plot-banner-inner { flex-direction: column; gap: 20px; }
  .plot-number { font-size: 50px; }
  .plot-area-num { font-size: 22px; }
  .plot-notes { font-size: 11px; margin-top: 20px; }

  .partners-section { padding: 40px 0 60px; }
  .partners-box { padding: 30px 20px; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; } 



  .faq-section { padding: 60px 0; }
  .faq-container .section-title { margin-bottom: 30px; }
  .faq-q { font-size: 14.5px; align-items: flex-start; }
  .faq-a { padding-left: 0; margin-top: 10px; }
  .q-icon, .a-icon { margin-right: 10px; font-size: 18px; }

  .footer-cta { padding: 60px 0; }
  .cta-catch { font-size: 20px; line-height: 1.6; }
  .cta-sub { font-size: 14px; }
  .btn-cta-doc { padding: 15px 10px; font-size: 14px; width: 90%; box-sizing: border-box; }
  .cta-tel-box { padding: 25px 15px; width: 90%; box-sizing: border-box; }
  .tel-title { font-size: 15px; }
  /* ▼ 変更ポイント：横並びを解除して縦並び（改行）にする ▼ */
  .tel-number-wrap { 
    flex-direction: column; /* 縦並びにする */
    gap: 5px; /* 上下の隙間を詰める */
  }
  .tel-number { 
    font-size: 32px; 
  }

  .footer-company { padding: 40px 0; }
  .company-inner { flex-direction: column; gap: 30px; text-align: center; }
  
  .footer-top { flex-direction: column; gap: 30px; align-items: center; text-align: center; }
  .footer-nav ul { flex-wrap: wrap; justify-content: center; gap: 15px; }
}