/* =============================================================================
   Pet Funeral Area Taxonomy Template CSS (Cassette Style)
   ファイル名: pet-funeral-area.css
============================================================================= */

/* ===== カラーパレット ===== */
:root {
  --primary-color: #7eb3d3;        /* 優しい水色 */
  --secondary-color: #f4a896;      /* 温かいコーラル */
  --accent-color: #a8d5ba;         /* 柔らかいグリーン */
  --text-dark: #333333;
  --text-medium: #666666;
  --text-light: #999999;
  --bg-light: #fafbfc;
  --bg-warm: #fff9f5;
  --border-color: #e8ecef;
}

/* ===== 基本設定 ===== */
.pet-funeral-area-main {
  background: var(--bg-light);
  padding-bottom: 80px;
}

.swell-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== パンくずリスト ===== */
.pet-funeral-breadcrumb {
  background: #fff;
  border-bottom: 1px solid #e9ecef;
  padding: 15px 0;
  font-size: 14px;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
  align-items: center;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: #6c757d;
  font-weight: bold;
}

.breadcrumb-list a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-list a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.breadcrumb-list .current {
  color: var(--text-dark);
  font-weight: 500;
}

/* ===== ヘッダー（ヒーロースタイル） ===== */
.pet-funeral-area-header.hero-style {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: #fff;
  padding: 60px 0;
  margin-bottom: 40px;
}

.header-content {
  text-align: center;
}

.area-hierarchy {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 15px;
  font-weight: 500;
}

.area-title {
  font-size: 36px;
  font-weight: bold;
  margin: 0 0 30px;
  line-height: 1.3;
}

.area-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-icon {
  font-size: 28px;
}

.stat-number {
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  opacity: 0.9;
}

.area-lead-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.95;
}

/* ===== 目次ナビゲーション ===== */
.table-of-contents {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.toc-title {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 20px;
  color: #212529;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}

.toc-list li a {
  display: block;
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  color: #495057;
  transition: all 0.2s;
  font-weight: 500;
}

.toc-list li a:hover {
  background: var(--bg-warm);
  color: var(--text-dark);
  transform: translateX(4px);
  border-left: 3px solid var(--secondary-color);
}

/* ===== カセットスタイル（共通） ===== */
.content-cassette {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  overflow: hidden;
}

.cassette-header {
  background: linear-gradient(135deg, var(--bg-warm) 0%, #f0f4f7 100%);
  padding: 25px 30px;
  border-bottom: 2px solid var(--accent-color);
}

.cassette-title {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  color: #212529;
  display: flex;
  align-items: center;
  gap: 10px;
}

.title-icon {
  font-size: 28px;
}

.cassette-subtitle {
  margin: 8px 0 0;
  color: #6c757d;
  font-size: 14px;
}

.cassette-body {
  padding: 30px;
}

/* ===== エリア概要 ===== */
.overview-content p {
  line-height: 1.8;
  color: #495057;
  margin-bottom: 30px;
}

.feature-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature-box {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.2s;
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-box-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.feature-box h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 10px;
  color: #212529;
}

.feature-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #6c757d;
  margin: 0;
}

/* ===== 葬儀社グリッド ===== */
.pet-funeral-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.pet-funeral-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
}

.pet-funeral-card:hover {
  box-shadow: 0 8px 20px rgba(126, 179, 211, 0.2);
  transform: translateY(-4px);
  border-color: var(--primary-color);
}

.card-header {
  position: relative;
  overflow: hidden;
}

.card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-light);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.pet-funeral-card:hover .card-image img {
  transform: scale(1.05);
}

.card-image--placeholder .placeholder-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.placeholder-icon {
  font-size: 64px;
  opacity: 0.5;
}

.card-body {
  padding: 20px;
}

.card-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 15px;
}

.card-title a {
  color: #212529;
  text-decoration: none;
  transition: color 0.2s;
}

.card-title a:hover {
  color: var(--primary-color);
}

.card-address,
.card-phone {
  font-size: 14px;
  color: var(--text-medium);
  margin: 8px 0;
  line-height: 1.5;
}

.card-phone a {
  color: var(--primary-color);
  text-decoration: none;
}

.card-phone a:hover {
  text-decoration: underline;
}

.card-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 15px 0;
}

.service-tag {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #b8dfcb 100%);
  color: #2d5f3e;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.card-actions {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

.btn-detail {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f7b9a9 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.2s;
  width: 100%;
  text-align: center;
}

.btn-detail:hover {
  background: linear-gradient(135deg, #f29583 0%, var(--secondary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 168, 150, 0.3);
}

/* ===== ペジネーション ===== */
.pet-funeral-pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pet-funeral-pagination ul {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pet-funeral-pagination a,
.pet-funeral-pagination .current {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  text-decoration: none;
  color: #495057;
  transition: all 0.2s;
  font-weight: 500;
}

.pet-funeral-pagination a:hover {
  background: var(--secondary-color);
  color: #fff;
  border-color: var(--secondary-color);
}

.pet-funeral-pagination .current {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

/* ===== 結果なし ===== */
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: #6c757d;
}

.no-results-icon {
  font-size: 80px;
  margin-bottom: 20px;
  opacity: 0.5;
}

/* ===== 選び方ガイド ===== */
.guide-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #495057;
  margin-bottom: 30px;
}

.guide-steps {
  display: grid;
  gap: 20px;
}

.guide-step {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: var(--bg-warm);
  border-radius: 10px;
  border-left: 4px solid var(--secondary-color);
}

.step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 10px;
  color: #212529;
}

.step-content p {
  margin: 0;
  line-height: 1.7;
  color: #495057;
}

/* ===== 料金表 ===== */
.price-intro {
  font-size: 15px;
  line-height: 1.8;
  color: #495057;
  margin-bottom: 30px;
}

.price-table-wrapper {
  margin-bottom: 30px;
}

.price-table-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 15px;
  color: #212529;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
}

.price-table thead {
  background: linear-gradient(135deg, var(--primary-color) 0%, #8fc4df 100%);
  color: #fff;
}

.price-table th,
.price-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #dee2e6;
}

.price-table th {
  font-weight: 600;
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

.price-table tbody tr:hover {
  background: #f8f9fa;
}

.price-notes {
  background: #fff8e1;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #ffc107;
}

.price-notes h4 {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 12px;
  color: #212529;
}

.price-notes ul {
  margin: 0 0 20px;
  padding-left: 20px;
  line-height: 1.8;
}

.price-notes ul:last-child {
  margin-bottom: 0;
}

.price-notes li {
  color: #495057;
  margin-bottom: 5px;
}

/* ===== 火葬の種類 ===== */
.cremation-options {
  display: grid;
  gap: 25px;
}

.cremation-option {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
}

.cremation-option:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(126, 179, 211, 0.2);
}

.option-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background: var(--bg-warm);
  border-bottom: 2px solid var(--border-color);
}

.option-icon {
  font-size: 36px;
}

.option-title {
  flex: 1;
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  color: var(--text-dark);
}

.option-price {
  font-size: 18px;
  font-weight: bold;
  color: var(--secondary-color);
}

.option-content {
  padding: 25px;
}

.option-description {
  font-size: 15px;
  line-height: 1.8;
  color: #495057;
  margin-bottom: 20px;
}

.option-features h4 {
  font-size: 16px;
  font-weight: bold;
  margin: 20px 0 10px;
  color: #212529;
}

.option-features ul {
  margin: 0 0 15px;
  padding-left: 20px;
  line-height: 1.8;
}

.option-features li {
  color: #495057;
  margin-bottom: 5px;
}

.option-features p {
  margin: 0;
  padding: 12px;
  background: #e7f3ff;
  border-radius: 6px;
  color: #0066cc;
  font-size: 14px;
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-list {
  display: grid;
  gap: 20px;
}

.faq-item {
  border: 1px solid #e9ecef;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
  background: #f8f9fa;
  padding: 18px 25px;
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #212529;
  border-bottom: 1px solid #e9ecef;
}

.faq-answer {
  padding: 20px 25px;
  background: #fff;
}

.faq-answer p {
  margin: 0;
  line-height: 1.8;
  color: #495057;
}

/* ===== 近隣エリアリンク ===== */
.area-links-section {
  margin-bottom: 40px;
}

.area-links-section:last-of-type {
  margin-bottom: 30px;
}

.area-links-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 20px;
  color: var(--text-dark);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
}

.area-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.area-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  text-decoration: none;
  color: #495057;
  transition: all 0.2s;
  font-weight: 500;
}

.area-link-card:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(126, 179, 211, 0.3);
}

.area-link-name {
  flex: 1;
}

.area-link-count {
  font-size: 13px;
  opacity: 0.8;
  margin-left: 10px;
}

.back-links {
  display: flex;
  gap: 15px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #e9ecef;
  flex-wrap: wrap;
}

.btn-back-link,
.btn-all-link {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
}

.btn-back-link {
  background: #f8f9fa;
  color: #495057;
  border: 1px solid #dee2e6;
}

.btn-back-link:hover {
  background: #e9ecef;
  border-color: #adb5bd;
}

.btn-all-link {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f7b9a9 100%);
  color: #fff;
}

.btn-all-link:hover {
  background: linear-gradient(135deg, #f29583 0%, var(--secondary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 168, 150, 0.3);
}

/* ===== レスポンシブ対応 ===== */
@media (max-width: 768px) {
  .area-title {
    font-size: 28px;
  }
  
  .area-stats {
    gap: 20px;
  }
  
  .stat-number {
    font-size: 24px;
  }
  
  .pet-funeral-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-boxes {
    grid-template-columns: 1fr;
  }
  
  .guide-step {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .area-links-grid {
    grid-template-columns: 1fr;
  }
  
  .cassette-body {
    padding: 20px;
  }
  
  .table-of-contents {
    padding: 20px;
  }
  
  .toc-list {
    grid-template-columns: 1fr;
  }
  
  .back-links {
    flex-direction: column;
  }
  
  .btn-back-link,
  .btn-all-link {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .pet-funeral-area-header.hero-style {
    padding: 40px 0;
  }
  
  .area-title {
    font-size: 24px;
  }
  
  .cassette-title {
    font-size: 20px;
  }
  
  .option-header {
    flex-wrap: wrap;
  }
  
  .option-price {
    width: 100%;
    text-align: left;
    margin-top: 5px;
  }
}


/* ==============================================
   SEOコラムセクション用CSS
   ============================================== */

/* コラムセクション全体 */
.column-section .cassette-body {
    padding: 40px 30px;
}

.column-articles {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* 個別コラム記事 */
.column-article {
    background: #fff;
    border: 2px solid #e8f4f8;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.column-article:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* コラムアイコン */
.column-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1;
}

/* コラムタイトル */
.column-title {
    font-size: 1.75rem;
    font-weight: bold;
    color: #2c5282;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #4299e1;
    line-height: 1.5;
}

/* コラムコンテンツ */
.column-content {
    line-height: 1.9;
    color: #333;
}

.column-content > p {
    margin-bottom: 20px;
    font-size: 1rem;
}

/* セクションサブタイトル */
.section-subtitle {
    font-size: 1.35rem;
    font-weight: bold;
    color: #2d3748;
    margin: 35px 0 20px;
    padding-left: 15px;
    border-left: 4px solid #4299e1;
    line-height: 1.5;
}

/* ステップボックス */
.column-step-box {
    background: #f7fafc;
    border-radius: 10px;
    padding: 30px;
    margin: 25px 0;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 2px 6px rgba(66, 153, 225, 0.3);
}

.step-detail h5 {
    font-size: 1.15rem;
    font-weight: bold;
    color: #2c5282;
    margin-bottom: 8px;
}

.step-detail p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* 情報リスト */
.info-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.info-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    line-height: 1.7;
}

.info-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 1.2rem;
}

.info-list li strong {
    color: #2c5282;
    font-weight: 600;
}

/* 用語リスト */
.term-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.term-item {
    background: #f7fafc;
    border-left: 4px solid #4299e1;
    padding: 20px;
    border-radius: 0 8px 8px 0;
}

.term-name {
    font-size: 1.15rem;
    font-weight: bold;
    color: #2c5282;
    margin-bottom: 8px;
}

.term-description {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* コラムノート */
.column-note {
    background: #e6fffa;
    border-left: 4px solid #38b2ac;
    padding: 15px 20px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* 服装コードセクション */
.dress-code-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 25px 0;
}

.dress-item {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 25px;
}

.dress-item h5 {
    font-size: 1.15rem;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.dress-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dress-item ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    line-height: 1.7;
}

.dress-item ul li::before {
    position: absolute;
    left: 0;
    font-weight: bold;
}

.dress-item:first-child h5 {
    color: #2c5282;
}

.dress-item:first-child {
    border-color: #bee3f8;
}

.dress-item:first-child ul li::before {
    content: "✓";
    color: #48bb78;
}

.dress-item:last-child h5 {
    color: #c53030;
}

.dress-item:last-child {
    border-color: #fed7d7;
}

.dress-item:last-child ul li::before {
    content: "×";
    color: #e53e3e;
}

/* チェックリストセクション */
.checklist-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 25px 0;
}

.checklist-category {
    background: #f7fafc;
    border-radius: 10px;
    padding: 25px;
}

.checklist-category h5 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c5282;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist li {
    padding: 10px 0 10px 30px;
    position: relative;
    line-height: 1.7;
}

.checklist li::before {
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

.checklist li strong {
    color: #2c5282;
    font-weight: 600;
}

.checklist.warning li {
    color: #742a2a;
}

.checklist.warning li::before {
    content: "✗";
    color: #e53e3e;
}

.note-text {
    font-size: 0.9rem;
    color: #718096;
    margin-top: 10px;
    font-style: italic;
}

/* タイムラインセクション */
.timeline-section {
    margin: 30px 0;
    position: relative;
    padding-left: 50px;
}

.timeline-section::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #4299e1, #63b3ed);
}

.timeline-item {
    position: relative;
    margin-bottom: 35px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -38px;
    top: 5px;
    width: 15px;
    height: 15px;
    background: #4299e1;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #bee3f8;
}

.timeline-time {
    display: inline-block;
    background: #4299e1;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.timeline-content {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px;
}

.timeline-content h5 {
    font-size: 1.15rem;
    font-weight: bold;
    color: #2c5282;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 10px;
}

.manner-tip {
    background: #e6fffa;
    border-left: 3px solid #38b2ac;
    padding: 10px 15px;
    margin-top: 10px;
    border-radius: 0 5px 5px 0;
    font-size: 0.9rem;
}

.manner-tip strong {
    color: #234e52;
}

/* Q&Aセクション */
.qa-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.qa-item {
    background: #f7fafc;
    border-radius: 10px;
    padding: 25px;
    border-left: 4px solid #4299e1;
}

.question {
    font-size: 1.1rem;
    font-weight: bold;
    color: #2c5282;
    margin-bottom: 12px;
}

.answer {
    color: #4a5568;
    line-height: 1.8;
    margin: 0;
}

/* クロージングノート */
.closing-note {
    background: #fff5f5;
    border: 2px solid #fc8181;
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    line-height: 1.8;
    color: #742a2a;
}

/* ベネフィットカード */
.benefit-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.benefit-card {
    background: #fff;
    border: 2px solid #bee3f8;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.2);
    border-color: #4299e1;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.benefit-card h5 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #2c5282;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* 準備リスト */
.preparation-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin: 30px 0;
}

.prep-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.prep-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
}

.prep-content {
    flex: 1;
}

.prep-content h5 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #2c5282;
    margin-bottom: 15px;
}

.prep-content p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

.prep-content ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.prep-content ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    line-height: 1.7;
}

.prep-content ul li::before {
    content: "•";
    position: absolute;
    left: 5px;
    color: #4299e1;
    font-size: 1.5rem;
    line-height: 1;
}

.prep-content .tip {
    background: #fef5e7;
    border-left: 4px solid #f39c12;
    padding: 12px 15px;
    margin-top: 15px;
    border-radius: 0 6px 6px 0;
    font-size: 0.9rem;
}

/* 料金チェックポイント */
.price-check-points,
.discussion-points {
    background: #f7fafc;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
}

.price-check-points h6,
.discussion-points h6 {
    font-size: 1.05rem;
    font-weight: bold;
    color: #2c5282;
    margin-bottom: 12px;
}

.price-check-points ul,
.discussion-points ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-check-points ul li,
.discussion-points ul li {
    padding: 6px 0 6px 25px;
    position: relative;
    line-height: 1.7;
}

.price-check-points ul li::before,
.discussion-points ul li::before {
    content: "◆";
    position: absolute;
    left: 0;
    color: #4299e1;
}

.warning {
    background: #fff5f5;
    border: 2px solid #fc8181;
    border-left-width: 4px;
    padding: 15px 20px;
    border-radius: 6px;
    margin: 15px 0;
    color: #742a2a;
}

/* 供養オプション */
.memorial-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.memorial-option {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px;
}

.memorial-option h6 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #2c5282;
    margin-bottom: 10px;
}

.memorial-option p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* アドバイスセクション */
.advice-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.advice-item {
    background: #f0fff4;
    border-left: 4px solid #48bb78;
    padding: 20px 25px;
    border-radius: 0 10px 10px 0;
}

.advice-text {
    font-style: italic;
    color: #2d3748;
    line-height: 1.8;
    margin-bottom: 10px;
}

.advice-author {
    text-align: right;
    color: #718096;
    font-size: 0.9rem;
    margin: 0;
}

/* クロージングメッセージ */
.closing-message {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
}

.closing-message h5 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
}

.closing-message p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
}

.closing-message p:last-child {
    margin-bottom: 0;
}

/* 特徴セクション */
.feature-section {
    margin: 25px 0;
}

.feature-section h5 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c5282;
    margin: 25px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4299e1;
}

.merit-item,
.demerit-item {
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 8px;
}

.merit-item {
    background: #f0fff4;
    border-left: 4px solid #48bb78;
}

.demerit-item {
    background: #fff5f5;
    border-left: 4px solid #fc8181;
}

.merit-item h6,
.demerit-item h6 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.merit-item h6 {
    color: #22543d;
}

.demerit-item h6 {
    color: #742a2a;
}

.merit-item p,
.demerit-item p {
    line-height: 1.8;
    margin: 0;
}

/* セレクターセクション */
.selector-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 25px 0;
}

.selector-box {
    background: #fff;
    border: 3px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
}

.selector-box h5 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c5282;
    margin-bottom: 20px;
    text-align: center;
}

.selector-box .checklist {
    list-style: none;
    padding: 0;
}

.selector-box .checklist li {
    padding: 10px 0 10px 30px;
    position: relative;
    line-height: 1.7;
}

.selector-box .checklist li::before {
    content: "☑";
    position: absolute;
    left: 0;
    color: #4299e1;
    font-size: 1.2rem;
}

/* 訪問チェックリスト */
.visit-checklist {
    background: #f7fafc;
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
}

.visit-checklist h5 {
    font-size: 1.15rem;
    font-weight: bold;
    color: #2c5282;
    margin-bottom: 15px;
}

.visit-checklist ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.visit-checklist ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    line-height: 1.7;
}

.visit-checklist ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

/* 最終メッセージ */
.final-message {
    background: #e6fffa;
    border: 2px solid #81e6d9;
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
    line-height: 1.9;
    color: #234e52;
    font-weight: 500;
}

/* ==============================================
   レスポンシブ対応
   ============================================== */

@media (max-width: 768px) {
    .column-article {
        padding: 25px 20px;
    }

    .column-title {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 1.15rem;
    }

    .dress-code-section,
    .benefit-cards,
    .memorial-options,
    .selector-section {
        grid-template-columns: 1fr;
    }

    .timeline-section {
        padding-left: 30px;
    }

    .timeline-section::before {
        left: 12px;
    }

    .timeline-item::before {
        left: -28px;
    }

    .visit-checklist ul {
        grid-template-columns: 1fr;
    }

    .prep-item {
        flex-direction: column;
        gap: 15px;
    }

    .prep-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-number {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .column-section .cassette-body {
        padding: 25px 15px;
    }

    .column-article {
        padding: 20px 15px;
    }

    .column-title {
        font-size: 1.25rem;
    }

    .section-subtitle {
        font-size: 1.05rem;
    }

    .column-icon {
        font-size: 2.5rem;
    }

    .benefit-icon {
        font-size: 2rem;
    }
}