h1.entry-title{
 display:none;
}

/* Arkheの自動FVを完全に無効化 */
.l-fv,
.l-fv__inner,
.l-fv__bg,
.l-fv__img,
.l-fv__content {
  display: none !important;
}


html, body {
  margin: 0;
  padding: 0;
  font-family: 'Zen Old Mincho', serif;
  background: #fff;
  line-height: 1.5;
  overflow-x: hidden !important;
}

.lp-wrapper {
  max-width: 100%;
  overflow-x: clip; /* hiddenではなくclip */
}

/* 共通中央コンテナ */
.l-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* 狭めたいセクション用 */
.l-container--narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
}


/* 見出しだけゴシック系 */
h1, h2, h3, h4, h5, h6{
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 600;
  color: #007B43;
  margin: 0.5rem auto;
  text-align: center;
}

p{
  font-weight: 400;
  color: #433D3C;
  letter-spacing: 0.1em;
  margin: 0.1rem auto;
}

/* =========================================================
   🔷 セクション共通 
========================================================= */
.section {
  width: 100%;
  max-width: 900px;
  margin: 3rem auto;
  padding: 1.5rem;
}

/* ======================================== */
/* 3. First View（FVセクション） */
/* ======================================== */
.fv {
  width: 100%;
  margin: 0 auto;
}

/* PC・共通 */
.fv-image {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  aspect-ratio: 16 / 8;
  background-image: url("https://kochi-lp.xrea.jp/wp-content/uploads/2025/12/fv.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(108%);
}

/* スクロール時（ヘッダー縮小対応） */
body.is-scrolled .fv-image {
  aspect-ratio: 14 / 7;          /* 高さ変化させない */
}

/* ============================= */
/* モバイル版（左右トリミング） */
/* ============================= */
@media (max-width: 768px) {

  .fv {
    margin-top: 45px;
  }

  .fv-image {
    width: 100%;
    max-width: 100%;
    height: 55vh;
    aspect-ratio: 4 / 5;         /* ← スマホ向け縦比率 */
    background-size: cover;      /* ← 左右を自然にカット */
    background-position: center;
  }
}

/* ============================= */
/* fv下テキスト */
/* ============================= */
.fv-text {
  display: none;
}

@media (max-width: 768px) {
  .fv-text {
    display: block;
    background: #ffffff;
    padding: 1.5rem 0.5em 0.5rem;
    text-align: center;
  }

  .fv-text h2 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.7;
    letter-spacing: 0.1em;
    color: #433D3C;
    margin: 0 auto;
    max-width: 90%;
  }

  .fv-catch {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
    color: #433D3C;
    margin: 0 auto;
    max-width: 90%;
    padding-bottom: 1.5rem;
  }
}

/* ================================
   PC FV直下 テキストCTA
================================ */
.text-cta--fv {
  display: none;
}

@media (min-width: 769px) {
  .text-cta--fv {
    display: block;
    text-align: center;
    margin: 2rem auto 1.5rem;
    font-size: 1.4rem;          /* ← 大きめ */
    font-family: 'Zen Kaku Gothic New', sans-serif;
    color: #433D3C;
    letter-spacing: 0.2em;
    line-height: 1.8;
    text-align: center;
  }

  .text-cta--fv a {
    color: #028760;
    text-decoration: underline;
    font-weight: 600;
    margin: 0 0.2em;
  }

  .text-cta--fv a:hover {
    color: #3A715A;
  }
}

/* ========================================= */
/* SP：FV下 HTML/CSS CTA */
/* ========================================= */
.cta-fv-sp {
  display: none; /* デフォルト非表示（PC） */
}

@media (max-width: 768px) {

  .cta-fv-sp {
    display: block;
    text-align: center;
    margin: 0 auto 2rem;
    padding: 0 1rem;
  }

  .cta-fv-note {
    margin: 0.2rem;
    font-size: 0.8rem;
    color: #6D7972;
  }

  /* ボタン本体（前に出した改変版） */
  a.btn-radius-solid {
    display: inline-block;
    width: 100%;
    max-width: 320px;
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(2, 135, 96, 0.35);
    background: linear-gradient(
      to bottom,
      #e6f4ef 0%,
      #cfe9df 100%
    );
    color: #028760;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-align: center;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
    transition: background 0.25s ease, transform 0.2s ease;
  }

  a.btn-radius-solid .fa-position-right {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9em;
  }
}

/* PC hover（念のため：SPでは発動しない） */
@media (hover: hover) and (pointer: fine) {
  a.btn-radius-solid:hover {
    background: linear-gradient(
      to bottom,
      #d9efe7 0%,
      #bfe1d5 100%
    );
    transform: translateY(-1px);
  }
}

/* ======================================== */
/* 問題提起セクション (Problem Section) */
/* ======================================== */
.problem-section {
  background: #B2BCAC;
  margin-top: -1rem;
  padding: 1rem 1rem 0.8rem;
  text-align: center;
}

.problem-inner {
  max-width: 900px; /* セクション幅の最大値 */
  margin: 0 auto;
}

/* 導入文・メッセージの共通スタイル */
.lead-text,
.message-text,
.end-text {
  font-size: 1em;
  line-height: 1.5;
  color: #433D3C;
  margin: 1.2rem auto;
  text-align: center;
  max-width: 800px;
}

@media (max-width: 768px) {
.message-text{
 text-align: left;
  }
}

.highlight {
  font-weight: 700;
  color: #028760;
}

/* 🔹 グリッド（6項目） */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 800px;
  margin: 1.5rem auto;
}

/* 🔸 各項目のデザイン */
.problem-item {
  background: #ffffff;
  border: 2px solid #C9E0D1;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem; /* 高さ調整して均一感 */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* テキスト本体 */
.problem-text {
  font-size: 0.7rem;
  color: #433D3C;
  font-weight: 500;
  text-align: justify;
  margin: 0;
}

/* ========================================= */
/* PCレイアウト（2列×3行、中央寄せ）       */
/* ========================================= */
@media (min-width: 769px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px; /* 横と縦の間隔を調整 */
  }

  .problem-text {
    font-size: 0.8rem;
    text-align: justify;
  }

  .lead-text,
  .message-text,
  .end-text {
    font-size: 1rem;
  }
}

/* ========================================= */
/* モバイル版（1列・読みやすさ優先）        */
/* ========================================= */
@media (max-width: 768px) {
  .problem-section {
    padding: 2rem 1rem;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    width: 92%;
  }

  .problem-item {
    padding: 10px;
    min-height: 3rem;
  }

  .problem-text {
    font-size: 0.9rem;
    line-height: 1.2;
    text-align: left;
  }
}

/* ========================================
   タブブロック全体
======================================== */
.tab-block {
  width: 100%;
  max-width: 900px;
  margin: 3rem auto 1.5rem;
  text-align: center;
  padding: 0;
  position: relative;
  z-index: 0;
}

/* ========================================
   タブボタン共通（PC / SP 共通）
======================================== */
.tab-btn {
  flex: 1;
  background: transparent;
  color: #028760;
  border: none;
  padding: 6px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
}

/* ========================================
   PC版 タブバー（ピル型）
======================================== */
.tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 4px;
  width: 100%;
  max-width: 640px;
  margin: 2rem auto 1.5rem;
  background: #E6F2EB;
  border-radius: 999px;
}

.tab-btn.active {
  background: #028760;
  color: #fff;
}

/* ========================================
   SP版 タブ（ミニマル表示）
======================================== */
@media (max-width: 768px) {
  .tabs {
    background: none;
    padding: 0;
    gap: 0;
    max-width: 100%;
    margin: 1.5rem auto 1rem;
  }

  .tab-btn {
    border-radius: 0;
    color: #6f7f76;
    position: relative;
  }

  .tab-btn.active {
    color: #007B43;
    background: none;
  }

  .tab-btn.active::after {
    content: "";
    position: absolute;
    left: 20%;
    bottom: -4px;
    width: 60%;
    height: 2px;
    background: #028760;
    border-radius: 2px;
  }
}

/* ========================================
   PC hover（マウス環境のみ）
======================================== */
@media (hover: hover) and (pointer: fine) {
  .tab-btn:hover {
    background: rgba(0, 123, 67, 0.12);
  }
}

/* ===================================================
   タブコンテンツ共通
=================================================== */
.tab-content {
  display: none;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 1rem;
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible;
}
.tab-content.active { display: block; }

/* ===================================================
   メニュー画像：下に余白を作る（priceと1.5rem）
=================================================== */
.tab-content {
  display: none;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 1.5rem;
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible;   /* ★ PCスライダーのため必須 */
}

.tab-content.active {
  display: block;
}

/* ===================================================
   メニュー画像：下に余白を作る
=================================================== */
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;600;700&display=swap');

/* =========================================
   メニュー画像＋テキスト重ね
========================================= */
.menu-section{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
  font-family: "Zen Old Mincho", serif;
}

/* メニュー画像＋テキスト重ね */
.menu-image-overlay{
  position: relative;          /* ★ 基準点 */
  width: 100%;
  height: 400px;               /* ← さっき決めたPC高さ */
  overflow: hidden;
}

/* 背景画像 */
.menu-image-overlay img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 重ねるテキスト */
.menu-overlay-text{
  position: absolute;          /* ★ 重ねる */
  inset: 0;                    /* 上下左右0 */
  z-index: 2;                  /* ★ 画像より上 */
  display: flex;
  flex-direction: column;
  justify-content: center;     /* 縦中央 */
  align-items: center;         /* 横中央 */
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  background: rgba(0,0,0,0.25);  /* 読ませる用の暗幕 */
  padding: 1.5rem;
}

/* 見出し（今は h2 をサブ扱い） */
.menu-overlay-subtitle{
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin: 0.4rem 0 0.1rem;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* 説明文 */
.menu-overlay-desc{
  font-size: 1rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
  margin: 0 0 0.4rem;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* SPは高さを自動に */
@media (max-width: 768px){
  .menu-image-overlay {
    position: relative;
    height: 360px;
  }

  .menu-overlay-text {
    position: absolute;    /* SPでも画像上 */
    inset: 0;              /* 全方向に重ねる */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.35); /* 少し濃いめに */
    padding: 1rem 1.2rem;
  }

  .menu-overlay-title,
  .menu-overlay-subtitle,
  .menu-overlay-desc {
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
  }
}

/* ===================================================
   お客様の声：CSSスライダー（PC/SP共通）
=================================================== */
.voice-section {
  display: flex;
  gap: 10;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0;                    /* ★ 左右paddingもゼロ（チラ見え原因） */
  margin: 1rem auto 1.5rem;      /* ここで上下余白を管理 */
  max-width: 900px;
}

/* ついでに“止まり”を強くする（対応ブラウザ） */
.voice-section {
  scroll-snap-stop: always;
}

/* スクロールバー控えめ */
.voice-section::-webkit-scrollbar {
  height: 6px;
}
.voice-section::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.15);
  border-radius: 3px;
}

/* ===================================================
   お客様の声：CSSスライダー（PC/SP共通・安定版）
=================================================== */
.voice-section{
  display: flex;
  gap: 16px;                 /* ← 単位必須。gap:10 は無効 */
  overflow-x: auto;
  overflow-y: hidden;

  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-snap-stop: always;

  padding: 0;
  margin: 1.5rem auto;
  max-width: 900px;          /* 好みで 700〜900 */
}

/* スクロールバー控えめ */
.voice-section::-webkit-scrollbar{ height: 6px; }
.voice-section::-webkit-scrollbar-thumb{
  background: rgba(0,0,0,0.15);
  border-radius: 3px;
}

/* 1枚分カード（枠画像＋テキスト） */
.voice-box{
  flex: 0 0 100%;
  scroll-snap-align: start;
  position: relative;
  width: 100%;
  height: 380px;             /* PC */
  overflow: hidden;
  background: transparent;
}

/* 枠画像 */
.voice-frame{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
}

/* テキスト内側 */
.voice-inner{
  position: relative;
  height: 100%;
  padding: 1.5rem 1.6rem;
  overflow-y: auto;
  box-sizing: border-box;
}

/* 内側スクロールバー */
.voice-inner::-webkit-scrollbar{ width: 4px; }
.voice-inner::-webkit-scrollbar-thumb{
  background: rgba(0,0,0,0.2);
  border-radius: 2px;
}

/* 見出し・本文 */
.voice-inner h2{
  margin: 1.5rem auto;
  font-size: 1.2rem;
  color: #028760;
  letter-spacing: 0.3em;
}

.voice-inner p{
  margin: 1rem 2.5rem;
  font-size: 1rem;
  line-height: 1.85;
  letter-spacing: 0.2rem;
  color: #433D3C;
  text-align: left;
  align-items: center;
}

/* ドット */
.voice-dots{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0.25rem auto 0;
  max-width: 900px;
}

.voice-dots .dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(2,135,96,0.25);
}

.voice-dots .dot.active{
  background: rgba(2,135,96,0.9);
}

/* SP */
@media (max-width: 768px){
  .voice-section{ max-width: 100%; }
  .voice-box{ height: 420px; }
  .voice-inner{ padding: 1.2rem 1.3rem; }

  .voice-inner h2{
  margin: 1rem auto;
  font-size: 1.2rem;
  color: #028760;
  letter-spacing: 0.1em;
}

.voice-inner p{
  margin: 1rem 2rem;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.2rem;
  color: #433D3C;
  text-align: left;
  align-items: center;
}
}

.menu-image-overlay{
  position: relative;          /* ★ 基準点 */
  width: 100%;
  height: 420px;               /* ← さっき決めたPC高さ */
  overflow: hidden;
}

.menu-image-overlay img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

  /* ======================================== */
/* 8. 料金・日程セクション (Price) */
/* ======================================== */
.price {
  padding: 1rem 20px; 
  background: #8A9A85;
  text-align: center;
  overflow: visible;
}

.price h2 {
  color: #fff;
  margin: 1rem;
  letter-spacing: 0.3em;
}

.price-table {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.4fr;
  gap: 15px;
  align-items: stretch;
}

.price-card {
  background: #E6F2EB;
  padding: 1em;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: auto;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.price-card h3 {
  color: #433D3C;
  font-size: 1em;
  margin-bottom: 0.8rem;
  font-weight: bold;
  border-bottom: 2px solid #8A9A85;
  padding-bottom: 10px;
}

.price-card h4 {
  color: #433D3C;
  font-size: 1em;
  margin-bottom: 0.8rem;
  font-weight: bold;
  border-bottom: 2px solid #8A9A85;
  padding-top: 0.5rem;
}

.small-title{
  font-size: 0.8em;
  letter-spacing: 0.2em;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  color: #433D3C;
  margin-top: -1rem;
}

.price-list li {
  padding: 0.8rem 0 0.5rem;
  font-size: 1em;
  font-family: 'arial';
  font-weight: bold;
  border-bottom: 1px solid rgba(138, 154, 133, 0.2);
}

.price-list li:last-child {
  border-bottom: none;
}

.price-list .time {
  font-size: 0.9em;
  font-weight: normal;
  color: #666;
}

.price-list .additional {
  font-size: 1em;
  color: #433D3C;
}

.note {
  font-size: 1em;
  color: #fff;
  margin-top: 1em;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.2em;
}

.note-small {
  font-size: 0.8em;
  color: #433D3C;
  margin-top: 1em;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: justify;
}

.calendar-card {
  display: flex;
  flex-direction: column;
}

.calendar-embed {
  width: 100%;
  aspect-ratio: 1 / 1;   /* 正方形で安定 */
  overflow: hidden;
}

.calendar-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
.price-table {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .price {
    padding: 1.2rem 15px; 
  }
  
  .price h2 {
    font-size: 1.6em;
    margin-bottom: 30px;
  }
  
  .price-card {
    padding: 20px 15px;
  }
}

/* ======================================== */
/* 2nd CTA セクション */
/* ======================================== */
.cta-section-2 {
  clear: both;
  display: block;
  position: relative;
  z-index: 1;
}

/* PC：横並び */
.cta-buttons--2nd {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-width: 1100px;
  margin: 1.5rem auto 1rem;
}

.cta-buttons--2nd a {
  width: 500px;
  display: block;
  overflow: hidden;        /* ★ 透明余白を外に出さない */
  background: transparent; /* 念のため */
}

.cta-buttons--2nd img {
  display: block;          /* 行間・謎スペース防止 */
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  background: transparent;
}

@media (hover: hover) and (pointer: fine) {
  .cta-buttons--2nd a {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform; /* 滲み防止（Safari対策） */
  }

  .cta-buttons--2nd a:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  }
}

/* SP：縦並び */
@media (max-width: 768px) {
  .cta-buttons--2nd {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin: 2rem auto 1rem;
    padding: 0 1rem;          /* ★ 画面端からはみ出さない */
  }

  .cta-buttons--2nd a {
    width: 100%;
    max-width: 360px;
    overflow: hidden;         /* ★ 透過PNGの余白切り */
  }

  .cta-buttons--2nd img {
    display: block;
    width: 100%;
    height: auto;
  }
}

/* ========================================= */
/* PROFILE セクション */
/* ========================================= */
.profile-section {
  margin: 1rem auto;
  width: 100%;
  padding: 2rem 0;
  background-color: #F7F4F0;
}

/* 内側ボックス */
.profile-box {
  width: 900px;
  max-width: 95%;
  margin: 0 auto;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  text-align: center; /* 見出し・画像用 */
}

/* プロフィール画像（円形＆200x200固定） */
.profile-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #C9E0D1;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================= */
/* 見出しグループ（★追加） */
/* ============================= */

.profile-headings {
  text-align: center;
  margin-bottom: 1.8rem;
}

/* 見出し個別指定 */
.profile-section h2 {
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.3em;
  padding-bottom: 0.8em;
  color: #028760;
}

.profile-section h3 {
  font-size: 1.3em;
  letter-spacing: 0.5em;
  font-weight: bold;
  padding-bottom: 0.3em;
}

.profile-section h4 {
  font-size: 0.8em;
  color: #8A9A85;
  letter-spacing: 0.2em;
  font-weight: 500;
}

.profile-section h5 {
  font-size: 1em;
  color: #6D7972;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.profile-section h6 {
  font-size: 0.9em;
  font-weight: 500;
  letter-spacing: 0.1em;

}

/* ============================= */
/* 本文 */
/* ============================= */
.profile-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: left; /* 本文は左基準 */
}

.profile-section p {
  font-size: 0.95em;
  margin: 0 1.5em;
  color: #433D3C;
  text-align: justify;
}

/* ============================= */
/* モバイル対応 */
/* ============================= */
@media (max-width: 768px) {
 .profile-heading-image {
    width: 150px;
    height: 150px;
    margin-bottom: 1rem;
  }

  .profile-box {
    width: 95%;
  }

  .profile-text {
    width: 98%;
    margin: 0 auto;
  }
}

/* ========================================= */
/* FAQ セクション */
/* ========================================= */
.faq {
  padding-top: 1rem;
  padding-bottom: 40px;
  background: #ffffff;
}

/* FAQ見出し（中央寄せ） */
.faq h2 {
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.3em;
  margin: 0 auto 0.6rem;
  text-align: center;
  color: #028760;
}

.faq h3 {
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.3em;
  margin: 0 auto;
  text-align: center;
  color: #028760;
}

/* 外枠 */
.accordion-wrapper {
  width: 100%;
  max-width: 720px;
  margin: 10px auto;
  padding: 0 1rem;
}

/* ========================================= */
/* FAQ セクション */
/* ========================================= */
.faq {
  padding-top: 1rem;
  padding-bottom: 40px;
  background: #ffffff;
}

/* FAQ見出し（中央寄せ） */
.faq h2 {
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.3em;
  margin: 0 auto 0.6rem;
  text-align: center;
  color: #028760;
}

.faq h3 {
  font-size: 0.9em;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 auto;
  text-align: center;
  color: #028760;
}

/* ========================================= */
/* アコーディオン全体（PC：2列Grid） */
/* ========================================= */
.accordion-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 20px auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  align-items: start;            /* ★ これが超重要 */
}

/* ========================================= */
/* アコーディオン項目（角丸ボックス） */
/* ========================================= */
.accordion-item {
  position: relative;
  background: #ffffff;
  padding: 0.15rem 0;

  border-top: 2px solid #028760;
  border-bottom: 2px solid #028760;

  border-radius: 10px;     /* ★ box2風の丸み */
  overflow: hidden;
  align-self: start;
}

/* 左右の縦線（角丸と自然につながる） */
.accordion-item::before,
.accordion-item::after {
  content: "";
  position: absolute;
  top: 8px;                          /* ★ 角丸10pxに合わせて内側へ */
  width: 2px;
  height: calc(100% - 16px);         /* ★ 上下8pxずつ引く */
  background: #028760;
  border-radius: 2px;
}

/* フチに密着 */
.accordion-item::before { left: 0; }
.accordion-item::after  { right: 0; }

/* ========================================= */
/* 質問ヘッダー */
/* ========================================= */
.accordion-toggle {
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 0.55rem 1.6rem;
  color: #433D3C;
}

/* 質問タイトル */
.accordion-toggle h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: #433D3C;
  text-align: left;
  padding: 0 0.5rem;
}

/* フォーカス */
.accordion-toggle:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 224, 209, 0.7) inset;
}

/* アイコン */
.rotate-icon {
  width: 1.4em;
  height: 1.4em;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: rgba(2, 135, 96, 0.7);
}

.accordion-item.active .rotate-icon {
  transform: rotate(180deg);
}

/* ========================================= */
/* 回答 */
/* ========================================= */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 1rem;
}

/* 開いた時 */
.accordion-item.active .accordion-content {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  border-top: 1px solid #E2EAE5;
}

/* 回答本文 */
.accordion-content p {
  margin: 0;
  color: #433D3C;
  line-height: 1.5;
  font-size: 0.9rem;
  padding: 0 0.6rem;
}

.accordion-content a {
  color: #028760;
  text-decoration: underline;
}

.accordion-content a:hover {
  color: #3A715A;
}

/* ========================================= */
/* SP：1列に戻す */
/* ========================================= */
@media (max-width: 768px) {

  .accordion-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 0.9rem;
  }

  .accordion-toggle {
    padding: 0.5rem 1.4rem;
  }

  .accordion-item::before { left : 1px; }
  .accordion-item::after  { right: 1px; }

  .rotate-icon {
    width: 1em;
    height: 1em;
  }

  .accordion-content {
    padding: 0 1.2rem;
  }

  .accordion-item.active .accordion-content {
    padding-top: 0.7rem;
    padding-bottom: 0.9rem;
  }
}

/* ==========================================================
   MEDIA（SNS・プラットフォーム）セクション
========================================================== */

.media-link-section {
  width: 100%;
  padding: 2rem 0 2.5rem;
  background: #ffffff;
  text-align: center;
}

.media-link-section h2 {
  font-size: 1.3em;
  font-weight: 700;
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
  color: #028760;
}

.media-link-wrapper {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.media-icon-link {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.media-icon-link img {
  width: 50px;
  height: 50px;
  display: block;
  object-fit: contain;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .media-icon-link:hover img {
    transform: translateY(-2px);
    opacity: 0.85;
  }
}

/* ==========================================================
   MEDIA（SNS・プラットフォーム）セクション
========================================================== */
/* セクション全体 */
.media-link-section {
  width: 100%;
  padding: 2rem 0 2.5rem;
  background: #ffffff;
  text-align: center;
}

/* 見出し */
.media-link-section h2 {
  font-size: 1.3em;
  font-weight: 700;
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
  color: #028760;
}

/* アイコンの横並び本体（flexをここに当てる） */
.media-link-wrapper {
  width: 80%;
  margin: 0 auto;
  display: flex;                 /* ★ここが最重要 */
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

/* 各アイコンリンク */
.media-icon-link {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

/* アイコン画像 */
.media-icon-link img {
  width: 50px;
  height: 50px;
  display: block;
  object-fit: contain;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* hover（PCのみ・控えめ） */
@media (hover: hover) and (pointer: fine) {
  .media-icon-link:hover img {
    transform: translateY(-2px);
    opacity: 0.85;
  }
}

/* ==========================================================
   SP（モバイル）調整
========================================================== */
@media (max-width: 768px) {

  .media-link-wrapper {
    width: 90%;
    justify-content: center;   /* SPは中央寄せ */
    gap: rem;
    flex-wrap: wrap;           /* ★ はみ出し防止 */
  }

  .media-icon-link img {
    width: 40px;
    height: 40px;
  }
}

/* ======================================== */
/* 12. 連絡先セクション */
/* ======================================== */
.contact {
  width: 100%;
  background: #D3D7CF;
  text-align: center;
  margin: 0 auto;
  padding: 1em 0;    /* ← ここがポイント！ 1em auto は NG */
}

/* タイトル */
.contact h2 {
  font-size: 1.4em;
  margin: 1em auto 0.5em;
}

.contact h3 {
  font-size: 1em;
  margin: 0.5em auto;
  color: #433D3C;
  font-weight: 400;
}

.contact h4 {
  font-size: 1.2em;
  margin-bottom: 0.5em;
}

/* 段落（説明文・営業時間など） */
.contact p {
  font-size: 0.9em;
  letter-spacing: 0.1em;  /* ← カンマではなくドット */
  margin: 0.3em auto;
}

/* 営業時間ブロック */
.contact .info {
  margin-top: 1rem;
  font-size: 1em;
  line-height: 1.8;
}

/* メールリンク */
.contact .info a {
  color: #007B43;
  text-decoration: underline;
}

.contact .info a:hover {
  color: #3A715A;
}