.post_content td, .post_content th{
	vertical-align : middle;
}


.tr_h2 {
    letter-spacing: var(--swl-letter_spacing, .2px);
    text-align: center;
	font-weight: bold;
	background: none  !important;
	border: none  !important;
	font-size: 32px !important;
	color: #333333 !important;
	position: unset !important;
}



/* PC表示時のヘッダー下白帯を非表示 */
.l-header__bar.pc_ {
  display: none !important;
}

/* 強調 */
.bb {
background: linear-gradient(transparent 70%, rgba(58, 172, 219, 0.25) 50%);
    font-weight: bold;
	
}
/* 汎用グリッドコンテナ */
.block-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

/* スマホ対応（768px以下） */
@media (max-width: 768px) {
    .block-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .block-card {
        padding: 15px;
    }
}



/* 参考文献 */
.reference-section {
    background: #fff;
    padding: 40px 20px;
    margin-top: 60px;
    border: 1px solid #e0e0e0;
    position: relative;
}

.reference-section::before {
    content: 'References';
    position: absolute;
    top: -12px;
    left: 30px;
    background: #fff;
    padding: 0 15px;
    color: #888;
    font-size: 0.9em;
    font-style: italic;
}

.reference-section h2 {
    color: #1a1a1a;
    font-size: 2em;
    font-weight: 300;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 2px;
}

.reference-section h3 {
    color: #444;
    font-size: 1.1em;
    font-weight: 600;
    margin: 35px 0 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.reference-list {
    list-style: none;
    padding: 0;
    counter-reset: ref-counter;
}

.reference-list li {
    padding: 6px 0 6px 40px;
    position: relative;
    counter-increment: ref-counter;
    line-height: 1.8;
    color: #555;
}

.reference-list li::before {
    content: '[' counter(ref-counter) ']';
    position: absolute;
    left: 0;
    color: #999;
    font-size: 0.9em;
    font-weight: 500;
}

.reference-list a {
    color: #2c3e50;
    text-decoration: none;
    border-bottom: 1px dotted #999;
    font-family: 'Courier New', monospace;
    font-size: 0.85em;
}

.reference-list a:hover {
    border-bottom: 1px solid #2c3e50;
}

/* 注意喚起 */
.disclaimer-box {
    background: #fef9e7;
    border-left: 4px solid #f39c12;
    padding: 20px;
    margin: 40px 0;
    font-size: 0.9em;
    line-height: 1.7;
}

.disclaimer-box p {
    margin: 0;
}

/* ===== クール＆シンプルなブログカード（サムネ＋タイトルのみ） ===== */
.cool-blogcard {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  margin: 1.8em 0;
  background: #fff;
  transition: all 0.3s ease;
}

.cool-blogcard:hover {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.cool-blogcard-link {
  display: flex;
  text-decoration: none;
  color: #222;
  flex-direction: row;
  align-items: stretch;
}

.cool-blogcard-thumb {
  width: 40%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.cool-blogcard:hover .cool-blogcard-thumb {
  transform: scale(1.05);
}

.cool-blogcard-content {
  width: 60%;
  padding: 16px 20px;
  display: flex;
  align-items: center;
}

.cool-blogcard-title {
  font-size: 1.1em;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.cool-blogcard:hover .cool-blogcard-title {
  color: #0078ff; /* お好みのリンクカラーに変更可能 */
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .cool-blogcard-link {
    flex-direction: column;
  }

  .cool-blogcard-thumb {
    width: 100%;
    height: 180px;
  }

  .cool-blogcard-content {
    width: 100%;
    padding: 12px 15px;
  }

  .cool-blogcard-title {
    font-size: 1em;
  }
}





 /* 全体のコンテナ */
      .cta-container {
        background-color: #3AACDB;
        padding: 24px 20px;
        font-family: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
        border-radius: 16px;
        padding-top: 32px; /* アイコンがはみ出すスペースを確保 */
      }
      .cta-headline {
        text-align: center;
        color: white;
        font-size: 1.4rem;
        font-weight: bold;
        margin-top: 0;
        margin-bottom: 64px;
      }
      /* 2つのカードを囲むコンテナ */
      .cta-card-container {
        display: flex;
        gap: 20px; /* カード間の余白 */
        max-width: 1000px;
        margin: 0 auto;
      }
      /* カードのスタイル */
      .cta-card {
        flex: 1; /* コンテナ内で均等な幅を持つ */
        background-color: white;
        border-radius: 20px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        padding: 20px;
        padding-top: 60px; /* アイコンとの余白を確保 */
        text-align: center;
        position: relative; /* アイコンの位置の基準にする */
      }
      .cta-icon-background {
        width: 80px;
        height: 80px;
        background-color: #ffffff; /* アイコン背景色をピンクに設定 */
        border-radius: 50%; /* 円形にする */
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%); /* 中央に配置 */
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      }
      .cta-icon {
        font-size: 2.5em;
        color: white;
				padding: 24px 16px 0px 16px;
      }
      .cta-title {
        font-size: 1.2em;
        font-weight: bold;
        margin-top: 0;
        margin-bottom: 10px;
      }
      .cta-description {
        font-size: 0.8em;
        color: #555;
        margin-bottom: 25px;
        line-height: 1.6;
      }
      .cta-button {
        display: inline-block;
        background-color: #e91e63;
        color: white;
        padding: 14px 40px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: opacity 0.3s;
      }
      .cta-button:hover {
        opacity: 0.8;
      }
      .cta-phone-number {
        color: #007bff;
        text-decoration: none;
        font-weight: bold;
        font-size: 2.2em;
        display: block;
        margin-bottom: 10px;
      }
      .cta-subtext {
        font-size: 0.8em;
        color: #555;
        margin: 0;
      }
      .cta-company-name {
        font-size: 0.8em;
        color: #777;
        margin-top: 0px;
      }

      /* ▼▼▼【ここがスマホ表示の設定】画面幅が768px以下の時に適用されます▼▼▼ */
      @media (max-width: 768px) {
        .cta-container {
          padding-top: 24px;
        }
        .cta-headline {
					text-align: left;
          font-size: 1.4em;
        }
        /* カードコンテナを縦積みに変更 */
        .cta-card-container {
          flex-direction: column;
        }
        .cta-card {
          /* スマホ表示時にアイコンがはみ出すスペースを確保 */
          margin-top: 50px; 
        }
        /* 最初のカードの上マージンは不要 */
        .cta-card:first-child {
            margin-top: 0;
        }
      }





/* サービスセクション専用スタイル */
.service-section {
    font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
/*     background-color: #d9eef7; */
    padding: 40px 20px;
    line-height: 1.7;
}
.service-section * {
    box-sizing: border-box;
}
.service-section .service-container {
    max-width: 1200px;
    margin: 0 auto;
}
.service-section .service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-section .service-item {
    background-color: none;
/*     border: 2px solid #5eb3d6; */
/*     border-radius: 8px; */
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(-50px) scale(0.3);
}

.service-section .service-item.animate {
    animation: dropAndGrow 0.8s ease-out forwards;
}

.service-section .service-item.animate:nth-child(1) {
    animation-delay: 0.1s;
}

.service-section .service-item.animate:nth-child(2) {
    animation-delay: 0.3s;
}

.service-section .service-item.animate:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes dropAndGrow {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0.3);
    }
    60% {
        transform: translateY(10px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/*
.service-section .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
*/
.service-section .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border: 2px solid #5eb3d6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5eb3d6;
    font-size: 36px;
}
.service-section h3 {
    color: #333;
    font-size: 20px;
    margin: 0 0 8px 0;
    font-weight: bold;
    text-decoration: none;
    border-bottom: none;
}
.service-section h3:before {
border-bottom: none;
    width: 0;
}
.service-section p {
    color: #555;
    font-size: 16px;
    text-align: left;
    margin: 0;
}
/* レスポンシブデザイン */
@media (max-width: 992px) {
    .service-section .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .service-section .service-grid {
        grid-template-columns: 1fr;
    }
    
    .service-section .service-item {
        padding: 25px 15px;
    }
}


/* ============================================
   エリア別民泊清掃ページ専用CSS（既存CSS追記用）
   Area-Specific Minpaku Cleaning Pages Stylesheet
   
   対象ページ:
   - 箱根エリアページ
   - 熱海エリアページ
   - 小田原エリアページ
   - 伊東エリアページ
   
   使用方法:
   PHPテンプレートのbodyタグに class="area-page" を追加
   
   最終更新: 2025年
   作成者: 株式会社インビックス
   ============================================ */

/* エリアページ専用のCSS変数 */

/* ヘッダー下の余白を完全に削除 */

/* ヘッダー下の余白を完全に削除 - 強化版 */

.area-page .l-content {
        padding-top: 0em;
    }


/* ヘッダー直後の要素の余白を削除 */
.area-page > *:first-child,
main.area-page > *:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* hero-wrapperの余白を削除 */
.area-page .hero-wrapper {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.area-page .hero {
    margin-top: 0 !important;
    padding-top: 5rem !important; /* 内部の余白は保持 */
}
この修正により:

ヘッダー下の白帯を完全に非表示（PC・モバイル両方）
body、main、hero-wrapperの上部余白を削除
ヘッダー直後の要素の余白も削除

これでヘッダーのすぐ下から緑色の背景画像が表示されるようになります。再試行Claudeは間違えることがあります。回答内容を必ずご確認ください。

.area-page .hero {
    margin-top: 0 !important;
    /* その他のスタイル */
}

.area-page {
    --area-primary: #1a1a1a;
    --area-secondary: #666;
    --area-accent: #2d5016;
    --area-light: #f8f9fa;
    --area-border: #e5e5e5;

    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.7;
    color: var(--area-primary);
    background: #fff;
}

/* 既存のコンテナの影響を無効化 */
.area-page .hero-wrapper {
    width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    max-width: none !important;
}

.area-page .hero {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%),
                url('/img/eye_hakone_minpakuseisou.jpg') center center / cover no-repeat;
}

/* テキストを白く */
.area-page .hero-title,
.area-page .hero-desc {
    color: #fff !important;
}


/* ヒーローセクション */
.area-page .hero {
    background: linear-gradient(135deg, var(--area-light) 0%, #fff 100%);
    padding: 5rem 0 4rem !important;
    position: relative;
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    max-width: none !important;
}

.area-page .hero-inner {
    max-width: 1200px;         /* mainと同じ幅 */
    margin: 0 auto;            /* 中央配置 */
    padding-left: 24px;        /* 固定の余白 */
    padding-right: 24px;
}

.area-page .hero-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(218, 165, 32, 0.9) !important;  /* ゴールド */
    color: #fff !important;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.area-page .hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--area-primary);
}

.area-page .hero-desc {
    font-size: 1.1rem;
    color: var(--area-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.9;
    max-width: 700px;
}

/* 統計情報のアピール強化 - 既存のスタイルを上書き */
.area-page .hero-stats {
    display: flex !important;
    gap: 2rem !important;
    margin-bottom: 3rem !important;
    justify-content: flex-start !important;
}

.area-page .stat-item {
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    padding: 2rem 2.5rem !important;
    border-radius: 16px !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    transition: all 0.3s ease !important;
    min-width: 180px !important;
}

.area-page .stat-item:hover {
    transform: translateY(-8px) scale(1.05) !important;
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3) !important;
}

.area-page .stat-number {
    font-size: 3.5rem !important;
    font-weight: 900 !important;
    color: #fff !important;
    line-height: 1 !important;
    margin-bottom: 0.8rem !important;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
    letter-spacing: -0.02em !important;
}

.area-page .stat-label {
    font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3) !important;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .area-page .hero-stats {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 1rem !important;
    }
    
    .area-page .stat-item {
        min-width: calc(50% - 0.5rem) !important;
        padding: 1.5rem 1rem !important;
    }
    
    .area-page .stat-item:nth-child(3) {
        min-width: 100% !important;
        max-width: calc(50% - 0.5rem) !important;
        margin: 0 auto !important;
    }
    
    .area-page .stat-number {
        font-size: 2.5rem !important;
    }
    
    .area-page .stat-label {
        font-size: 0.85rem !important;
    }
}

.area-page .cta-buttons {
    display: flex;
    gap: 1rem;
}

.area-page .btn {
    padding: 1.2rem 2.5rem;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    letter-spacing: 0.05em;
}

.area-page .btn-primary {
    background: var(--area-primary);
    color: #fff;
}

.area-page .btn-primary:hover {
    background: var(--area-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.area-page .btn-secondary {
    background: #fff;
    color: var(--area-primary);
    border: 2px solid var(--area-primary);
}

.area-page .btn-secondary:hover {
    background: var(--area-primary);
    color: #fff;
}

/* セクション */
.area-page .section {
    padding: 6rem 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.area-page .section-label {
    font-size: 0.75rem;
    color: var(--area-accent);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.area-page .section-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: var(--area-primary);
}

.area-page .section-desc {
    color: var(--area-secondary);
    font-size: 1rem;
    margin-bottom: 3.5rem;
    line-height: 1.8;
}

.area-page .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.area-page .gray-bg {
    background: var(--area-light);
}

/* カード */
.area-page .card {
    padding: 2.5rem;
    background: #fff;
    border: 1px solid var(--area-border);
    transition: all 0.3s;
}

.area-page .card:hover {
    border-color: var(--area-accent);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.area-page .card-number {
    font-size: 0.75rem;
    color: var(--area-accent);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.area-page .card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: var(--area-primary);
}

.area-page .card-text {
    color: var(--area-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* リスト */
.area-page .list {
    list-style: none;
    padding: 0;
}

.area-page .list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--area-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.area-page .list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1rem;
    width: 6px;
    height: 6px;
    background: var(--area-accent);
    border-radius: 50%;
}

/* フローセクション */
.area-page .flow-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.area-page .flow-step {
    text-align: center;
    position: relative;
}

.area-page .flow-step::after {
    content: "→";
    position: absolute;
    right: -2rem;
    top: 1.5rem;
    font-size: 1.5rem;
    color: var(--area-border);
}

.area-page .flow-step:last-child::after {
    display: none;
}

.area-page .flow-number {
    width: auto;
    height: auto;
    background: var(--area-accent);
    color: #fff;
    border-radius: 8px; /* 角丸の四角 */
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

.area-page .flow-number::before {
    content: "STEP ";
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}


.area-page .flow-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--area-primary);
}

.area-page .flow-desc {
    font-size: 0.9rem;
    color: var(--area-secondary);
}

/* 料金表 */
.area-page .pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2.5rem 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.area-page .pricing-table th {
    background: var(--area-primary);
    color: #fff;
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}

.area-page .pricing-table td {
    padding: 1.5rem 1.2rem;
    border-bottom: 1px solid var(--area-border);
}

.area-page .pricing-table tbody tr:hover {
    background: var(--area-light);
}

.area-page .price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--area-primary);
}

.area-page .price-note {
    font-size: 0.85rem;
    color: var(--area-secondary);
    margin-top: 0.3rem;
    display: block;
}

/* 注意書き */
.area-page .notice {
    background: var(--area-light);
    padding: 2rem;
    margin-top: 2.5rem;
    border-left: 4px solid var(--area-accent);
}

.area-page .notice h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--area-primary);
}

.area-page .notice li {
    font-size: 0.9rem;
    color: var(--area-secondary);
    padding: 0.4rem 0;
    line-height: 1.7;
}

.area-page .notice li::before {
    content: "※ ";
    color: var(--area-accent);
    font-weight: 700;
}

/* チェックリスト */
.area-page .checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.area-page .checklist-category {
    background: #fff;
    border: 1px solid var(--area-border);
    padding: 1.5rem;
}

.area-page .checklist-category h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--area-accent);
    color: var(--area-primary);
}

.area-page .checklist-category ul {
    list-style: none;
    padding: 0;
}

.area-page .checklist-category li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--area-secondary);
}

.area-page .checklist-category li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--area-accent);
    font-weight: 700;
}

/* オプションサービス */
.area-page .options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.area-page .option-card {
    background: #fff;
    border: 1px solid var(--area-border);
    padding: 2rem;
    transition: all 0.2s;
}

.area-page .option-card:hover {
    border-color: var(--area-accent);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.area-page .option-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--area-primary);
}

.area-page .option-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--area-accent);
    margin-bottom: 1rem;
}

.area-page .option-desc {
    font-size: 0.9rem;
    color: var(--area-secondary);
    line-height: 1.7;
}

/* お客様の声 */
.area-page .testimonial-card {
    background: #fff;
    border: 1px solid var(--area-border);
    padding: 2.5rem;
    position: relative;
}

.area-page .testimonial-card::before {
    content: """;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--area-light);
    font-family: Georgia, serif;
    line-height: 1;
}

.area-page .testimonial-text {
    color: var(--area-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.area-page .testimonial-author {
    font-weight: 700;
    margin-bottom: 0.3rem;
    font-size: 1rem;
    color: var(--area-primary);
}

.area-page .testimonial-location {
    font-size: 0.9rem;
    color: var(--area-secondary);
}

.area-page .testimonial-rating {
    color: #ffa500;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* FAQ */
.area-page .faq-item {
    border-bottom: 1px solid var(--area-border);
}

.area-page .faq-q {
    padding: 1.8rem 0;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
    color: var(--area-primary);
}

.area-page .faq-q:hover {
    color: var(--area-accent);
}

.area-page .faq-a {
    padding-bottom: 2rem;
    color: var(--area-secondary);
    line-height: 1.9;
    display: none;
}

.area-page .faq-item.active .faq-a {
    display: block;
}

.area-page .toggle {
    width: 32px;
    height: 32px;
    border: 2px solid var(--area-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.2s;
    flex-shrink: 0;
    margin-left: 1rem;
    color: var(--area-primary);
}

.area-page .faq-item.active .toggle {
    transform: rotate(45deg);
    border-color: var(--area-accent);
    color: var(--area-accent);
}

/* お問い合わせセクション */
.area-page .contact {
    background: var(--area-primary);
    color: #fff;
    padding: 5rem 24px;
    text-align: center;
}

.area-page .contact h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.area-page .contact p {
    opacity: 0.9;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.area-page .contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2.5rem;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.area-page .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* フッター */
.area-page .footer {
    background: var(--area-light);
    padding: 3rem 24px 2rem;
    text-align: center;
}

.area-page .footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.area-page .footer-links a {
    color: var(--area-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.area-page .footer-links a:hover {
    color: var(--area-primary);
}

.area-page .copyright {
    color: var(--area-secondary);
    font-size: 0.85rem;
}

/* ハイライトボックス */
.area-page .highlight-box {
    background: #fff;
    border: 2px solid var(--area-accent);
    padding: 2rem;
    margin: 2.5rem 0;
}

.area-page .highlight-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--area-accent);
}

/* 選ばれる理由 - カードデザイン */
.area-page .reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.area-page .reason-card {
    position: relative;
    height: 320px;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.area-page .reason-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

/* カードの内側（画像エリア） */
.area-page .reason-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}


/* 背景画像 */
.area-page .reason-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    transition: all 0.3s ease;
}

/* .area-page .reason-card:hover .reason-card-bg {
    filter: brightness(0.8);
    transform: scale(1.05);
} */

/* 左上のナンバー - 角に配置、確実に上に */
.area-page .reason-number {
    position: absolute;
    top: -20px;
    left: -16px;
    width: 48px;
    height: 48px;
    background: var(--area-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    z-index: 10; /* 確実に一番上 */
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.6);
}


.area-page .reason-item {
    text-align: center;
}

.area-page .reason-icon {
    width: 80px;
    height: 80px;
    background: var(--area-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* コンテンツエリア */
.area-page .reason-content {
    position: absolute;
    top: 46%;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    background: linear-gradient(
        to top, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 255, 255, 0.95) 60%,
        rgba(255, 255, 255, 0.8) 85%,
        transparent 100%
    );
    z-index: 2;
}

.area-page .reason-title {
    font-weight: 700;
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    position: relative;
    display: inline-block;
}

.area-page .reason-title::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--area-accent) 0%, transparent 100%);
}

.area-page .reason-desc {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
    .area-page .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .area-page .hero-title { 
        font-size: 2rem; 
    }
    
    .area-page .section-title { 
        font-size: 1.8rem; 
    }
    
    .area-page .hero-stats { 
        flex-direction: column; 
        gap: 1.5rem; 
    }
    
    .area-page .cta-buttons { 
        flex-direction: column; 
    }
    
    .area-page .btn { 
        text-align: center; 
        width: 100%; 
    }
    
    .area-page .grid { 
        grid-template-columns: 1fr; 
    }
    
    .area-page .section { 
        padding: 4rem 20px; 
    }
    
    .area-page .flow-step::after { 
        display: none; 
    }
    
    .area-page .stat-number { 
        font-size: 2rem; 
    }
    
    .area-page .hero-inner {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    .area-page .contact-info {
        gap: 1.5rem;
    }
    
    .area-page .reasons-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .area-page .reason-card {
        height: 280px;
    }
        .area-page .reason-number {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        top: -20px;
        left: -18px;
    }
    
    .area-page .reason-content {
        padding: 1.8rem 1.3rem 1.3rem 1.3rem;
    }
    
    .area-page .reason-title {
        font-size: 1.1rem;
    }
    
    .area-page .reason-desc {
        font-size: 0.85rem;
    }
   }



/* ヒーローセクションの背景画像とスタイル */
.area-page .hero {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%),
                url('/wp-content/themes/swell/img/eye_hakone_minpakuseisou.jpg') center center / cover no-repeat !important;
    padding: 5rem 0 4rem !important;
    position: relative;
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    max-width: none !important;
}

/* 背景画像がある場合のテキストスタイル */
.area-page .hero-title {
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.area-page .hero-desc {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.area-page .breadcrumb {
    color: rgba(255, 255, 255, 0.9) !important;
}

.area-page .breadcrumb::before {
    background: rgba(255, 255, 255, 0.9);
}

.area-page .stat-number {
    color: #fff !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.area-page .stat-label {
    color: rgba(255, 255, 255, 0.9) !important;
}

.area-page .btn-primary {
    background: #fff;
    color: #2d5016;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* .area-page .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #2d5016;
    transform: translateY(-2px);
} */

.area-page .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

/* .area-page .btn-secondary:hover {
    background: #fff;
    color: #2d5016;
} */




/* ご利用の流れ - アイコン付きカード */
.area-page .section-full-width:has(.flow-container) {
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%) !important;
    /* または単色なら: background: #e8f5e8 !important; */
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    max-width: none !important;
    padding: 6rem 0 !important;
}

.area-page .section-full-width .section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ====================================
   ご利用の流れ - 帯状デザイン（横幅フル・背景グリーン）
   参考デザイン: 白の横長バー + 下向き三角形
   ==================================== */

/* セクション背景 - 横幅フル・淡い緑 */
.area-page .section-full-width:has(.flow-bar-container) {
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%) !important;
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    max-width: none !important;
    padding: 6rem 0 !important;
}

/* 選ばれる理由セクションと同じpadding */
.area-page .section:has(.reasons-grid),
.area-page .section-full-width:has(.flow-bar-container) {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

/* セクション内部のコンテナ */
.area-page .section-full-width:has(.flow-bar-container) .section-inner {
    /* max-width: 1000px; */
    margin: 0 auto;
    padding: 0 24px;
}

/* フローバーコンテナ */
.area-page .flow-bar-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

/* 各バー - 白背景 */
.area-page .flow-bar {
    background: #fff;
    padding: 1.5rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.area-page .flow-bar:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* 下向き三角形（矢印）- 白 */
.area-page .flow-bar::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #fff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* 最後のバーの三角形は非表示 */
.area-page .flow-bar:last-child::after {
    display: none;
}

/* STEP番号 */
.area-page .flow-bar-step {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--area-accent);
    letter-spacing: 0.02em;
    white-space: nowrap;
    min-width: 110px;
}

/* タイトル */
.area-page .flow-bar-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    flex-shrink: 0;
    min-width: 200px;
}

/* 説明文 */
.area-page .flow-bar-desc {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
    line-height: 1.6;
    flex-grow: 1;
}

/* ===================================
   レスポンシブ対応
   =================================== */

/* タブレット（900px以下） */
@media (max-width: 900px) {
    /* STEPとタイトルを横並び、説明文は下 */
    .area-page .flow-bar {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        column-gap: 1rem;
        row-gap: 1rem;
        padding: 1.5rem 2rem;
        align-items: start;
    }
    
    .area-page .flow-bar-step {
        grid-column: 1;
        grid-row: 1;
        font-size: 1.5rem;
        align-self: center;
    }
    
    .area-page .flow-bar-title {
        grid-column: 2;
        grid-row: 1;
        font-size: 1.3rem;
        min-width: auto;
        align-self: center;
    }
    
    .area-page .flow-bar-desc {
        grid-column: 1 / -1;
        grid-row: 2;
        font-size: 0.9rem;
    }
    
    .area-page .flow-bar::after {
        left: 30px;
    }
}

/* スマホ（768px以下） */
@media (max-width: 768px) {
    /* 選ばれる理由とご利用の流れの上下余白を統一 */
    .area-page .section:has(.reasons-grid),
    .area-page .section-full-width:has(.flow-bar-container) {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
    
    .area-page .section-full-width:has(.flow-bar-container) {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .area-page .section-full-width:has(.flow-bar-container) .section-inner {
        padding: 0 20px;
    }
    
    .area-page .flow-bar-container {
        gap: 2rem;
    }
    
    /* STEPとタイトルを横並び維持 */
    .area-page .flow-bar {
        padding: 1.3rem 1.5rem;
        border-radius: 6px;
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        column-gap: 0.8rem;
        row-gap: 1rem;
    }
    
    .area-page .flow-bar-step {
        grid-column: 1;
        grid-row: 1;
        font-size: 1.3rem;
        align-self: center;
    }
    
    .area-page .flow-bar-title {
        grid-column: 2;
        grid-row: 1;
        font-size: 1.2rem;
        align-self: center;
    }
    
    .area-page .flow-bar-desc {
        grid-column: 1 / -1;
        grid-row: 2;
        font-size: 0.85rem;
    }
}

/* 極小スマホ（480px以下） */
@media (max-width: 480px) {
    /* STEPとタイトルを横並び維持 */
    .area-page .flow-bar {
        padding: 1.2rem 1.2rem;
        column-gap: 0.6rem;
    }
    
    .area-page .flow-bar-step {
        font-size: 1.1rem;
    }
    
    .area-page .flow-bar-title {
        font-size: 1.1rem;
    }
    
    .area-page .flow-bar-desc {
        font-size: 0.8rem;
    }
    
    .area-page .flow-bar::after {
        border-left-width: 15px;
        border-right-width: 15px;
        border-top-width: 15px;
        bottom: -15px;
        left: 20px;
    }
}
