@charset "UTF-8";
/* =========================================
   ベース設定（スマートフォン向け）
========================================= */
p{
margin: 0;	
}
h3{
padding: 0;
}
h3 + div{
width: 100%;
margin: 0;
}
h2 + p{
padding: 0 1em;
}
nav{
border: none;
}
/* パンくずリスト全体の枠 */
.breadcrumb {
  font-size: 14px;
  margin: 0 auto 20px ; /* 上下の余白（お好みで調整） */
padding:5px 0;
}

/* リストの初期設定をリセットして横並びにする */
.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap; /* スマホなどで画面幅が狭い場合は折り返す */
max-width:1024px;
}

/* リストの各項目 */
.breadcrumb li {
  display: flex;
  align-items: center;
  color: #666;
}

/* 最後の項目以外に「>」を付ける */
.breadcrumb li:not(:last-child)::after {
  content: ">";
  margin: 0 10px; /* 「>」の左右の余白 */
  color: #999;
}

/* リンクの色とホバー時の動き */
.breadcrumb a {
  text-decoration: none;
  color: #0056b3; /* サイトのテーマカラーに合わせて変更してください */
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* 現在のページ（最後のテキスト）の色 */
.breadcrumb span {
  color: #333;
  font-weight: bold;
}
.hero-section {
min-height: 300px;     
}
main section h2 {
  margin: 0 0 .5em;
  background-color: #00A099;
  padding: .15em 0;
}
.alternative-cemetery-section {
  padding: 2.5rem 1rem;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.alt-container {
  max-width: 1024px; /* PC表示時に3枚が綺麗に収まる幅 */
  margin: 0 auto;
}

/* 見出しとリード文 */
.alt-heading {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #2c5234;
  border-bottom: 2px solid #dde6db;
  padding-bottom: 0.5rem;
}

.alt-lead {
  font-size: 1rem;
  line-height: 1.6;
  text-align: left; /* スマホでは左揃えの方が視線移動がスムーズです */
  margin-bottom: 1rem;
}

/* カードのラッパー（スマホは縦積み） */
.alt-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* 個別のカード設計 */
.alt-card {
  background: #ffffff;
  border: 1px solid #e2e8e0;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.alt-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.06);
}

.alt-card-title {
  font-size: 1.1rem;
}

.alt-card-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: .5rem 0 1rem;
  flex-grow: 1; /* PC表示時にボタンの高さを下揃えにするための設定 */
}

/* ボタン設計（スマホは押しやすいよう幅広に） */
.alt-btn {
  display: inline-block;
  padding: 0.8rem 1rem;
  background-color: #2c5234;
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  font-size: 0.9rem;
  width: 100%;
  box-sizing: border-box;
  transition: background-color 0.2s ease;
}

.alt-btn:hover {
  background-color: #3f6e4a;
}
/* =========================================
Q&Aセクション スタイル
========================================= */

/* Q&A全体のラッパー */
.faq-list {
  max-width: 100%;
  margin: 1em auto;
  padding: 0;
}

/* 各Q&Aアイテムのまとまり */
.faq-item {
  margin-bottom: 24px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* 質問部分 (Q) */
.faq-item dt {
  font-size: 1.1em;
  margin-bottom: 16px;
  padding-left: .25em; /* アイコン用の余白 */
  position: relative;
  line-height: 1.5;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 12px;
}
.faq-list dt strong{
margin-left: 1.5em;
}
/* Qのアイコン（疑似要素で自動生成） */
.faq-item dt::before {
  content: "Q";
  position: absolute;
  left: -5px;
  top: -2px;
  color: #fff;
  background-color: #00a099; /* メインカラー（青系）に合わせて調整 */
  border-radius: 50%;
  width: 1.8em;
  height: 1.8em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9em;
}

/* 回答部分 (A) */
.faq-item dd {
  margin: .5em 0 0 1em;
  padding-left:2em; /* アイコン用の余白 */
  position: relative;
  line-height: 1.7;
}

/* Aのアイコン（疑似要素で自動生成） */
.faq-item dd::before {
  content: "A";
  position: absolute;
  left: 0;
  top: 2px;
  color: #fff;
  background-color: #e67e22; /* アクセントカラー（オレンジ系）に合わせて調整 */
  border-radius: 50%;
  width: 1.8em;
  height: 1.8em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9em;
}
/* 結論ファーストの強調部分（AIO対策で書いた最初の1文） */
.faq-item dd strong {
font-weight: bold;
}
/* --- ベース設定（全画面共通） --- */
.price-container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 40px 15px; /* スマホでは余白を控えめに */
  color: #4a4a4a;
}

.price-title {
  text-align: center;
  font-size: 1.5em;
  margin-bottom: 20px;
}

.price-lead {
  line-height: 1.8;
  margin-bottom: 30px;
}

/* --- スマホ用スタイル（標準） --- */
.price-grid {
  display: flex;
  flex-direction: column; /* スマホでは縦並び */
  gap: 20px;
  margin-bottom: 30px;
}

.price-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid #e8e6e0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  text-align: center;
}

.price-range {
  font-size: 1.4em;
  font-weight: bold;
  color: #6a7d6a;
  margin: 10px 0;
text-align: center;
}

.price-desc {
  font-size: 0.95em;
  line-height: 1.6;
}

.price-note {
  background: #fdfdfa;
  border: 1px solid #efebe0;
  padding: 20px;
  border-radius: 12px;
  font-size: 1rem;
  line-height: 1.6;
}
.rule{
background-color: #f7f9f7;
margin: .75em auto 1em;
padding: 1em 1.5em;
font-size: 1rem;
}
.flex_box.merit div h3{
text-align: center;
border-bottom: 1px solid #333;
margin-bottom: .5em;
}
.flex_box.merit div{
  background: #ffffff;
  border: 1px solid #e2e8e0;
  border-radius: 8px;
  padding: 1.5rem;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: .5em;
}
.flex_box.merit div ul li{
list-style-type: disc;
border-bottom: 1px dotted #aaa;
margin: 0 0 .75em 1em;
}
.flex_box.merit div ul li strong{
font-weight: 700;
}
/* 枠全体を少し背景色を変えて際立たせる */
.cta-box {
  background-color: #f8f7f2; /* わずかに温かみのあるクリームベージュ */
  padding: 2.5em 1.5em;
  border-radius: 20px;
  margin: 0 auto 2em;
  text-align: center;
  border: 1px solid #efebe0;
}

.cta-text {
  color: #4a4a4a; /* 真っ黒ではない濃いグレーで読みやすく */
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
.cta-text strong{
font-weight: 700;
}
/* 誘導ボタンのスタイル */
.cta-button-wrapper {
  margin-top: 30px;
}

.btn-gentle {
  display: inline-block;
  padding: 18px 40px;
  background-color: #8b9c8b; /* くすんだ落ち着きのあるグリーン */
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px; /* 角を完全に丸くして柔らかく */
  font-weight: bold;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-gentle:hover {
  background-color: #768876; /* ホバー時は少し色を深く */
}
/* ベーススタイル（スマホ共通） */
.points-container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 40px 20px;
  color: #333;
}

.points-title {
  text-align: center;
  font-size: 1.4em;
  margin-bottom: 30px;
}

.points-list dt {
  font-weight: bold;
  font-size: 1.1em;
  color: #4a4a4a;
  background: #fcfbf7;
  padding: 15px;
  border-left: 5px solid #8b9c8b; /* アクセントカラー */
  margin-top: 20px;
  border-radius: 0 8px 8px 0;
}

.points-list dd {
  margin: 10px 0 20px 0;
  line-height: 1.8;
  font-size: 0.95em;
  padding: 0 10px;
}
/* スマホ閲覧時の微調整 */
@media screen and (max-width: 600px) {
  .faq-item {
    padding: 16px;
  }
  .faq-item dt {
    font-size: 1em;
  }
  .faq-item dd {
    font-size: 0.95em;
  }
}

/* =========================================
   タブレット・PC向け（画面幅768px以上）
========================================= */
@media (min-width: 768px) {
.hero-section {
min-height: 395px;     
}
  .alternative-cemetery-section {
    padding: 3.5rem 1.5rem;
  }

  .alt-heading {
    font-size: 1.8rem;
  }

  .alt-lead {
    line-height: 1.8;
    margin-bottom: 1.25rem;
font-size: 100%;
  }

  /* PCは横並び */
  .alt-cards-wrapper, .flex_box.merit {
    flex-direction: row;
    align-items: stretch; /* カードの高さを揃える */
    gap: 1rem;
  }
 .document .alt-cards-wrapper {
margin-bottom: .75em;
  }

  .alt-card, .flex_box.merit div {
    flex: 1; /* 3枚のカード幅を均等に割付 */
    padding: 2rem 1.5rem;
  }

  .alt-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
 .document .alt-card-desc {
font-size: 1rem;
margin: 10px 0 0 0;
}
  .alt-btn {
    width: 85%; /* PCでは余白を持たせてスッキリさせる */
  }
.price-container, .points-container {
    padding: 40px 0px;
  }
  
  .price-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .price-grid {
    flex-direction: row; /* 横並びに変更 */
    gap: 20px;
  }

  .price-card {
    flex: 1; /* 3等分 */
  }
  .points-title {
    font-size: 1.8em;
  }

  .points-list dt {
    font-size: 1.2em;
    padding: 10px 20px;
  }
  
  .points-list dd {
    padding: 0 25px 15px;
  }
}