/* ===============================================
   エリアページ専用CSS - area.css
   不用品回収コスモ東京
   
   カラーパレット:
   - Primary: #2563eb (ブルー)
   - Light: #dbeafe (ライトブルー)
   - Accent: #f59e0b (オレンジ)
   - Background: #f9fafb (ライトグレー)
   - Dark: #1e293b (ダークネイビー)
   - Text: #475569 (グレー)
=============================================== */

/* ===============================================
   エリアページ用ヒーロー
=============================================== */
.area-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
}

.area-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.area-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    margin-top: 8rem !important;
    max-width: 900px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb i {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.area-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.area-name {
    color: #f59e0b;
    font-size: 56px;
}

.area-hero-lead {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

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

.area-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
}

.area-feature-item i {
    font-size: 24px;
    color: #f59e0b;
}

.area-hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===============================================
   エリア紹介セクション
=============================================== */
.area-intro-section {
    padding: 80px 20px;
    background: #f9fafb;
}

.area-intro-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.area-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
    line-height: 1.4;
}

.area-intro-description {
    font-size: 16px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 20px;
}

.area-intro-points {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.intro-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.intro-point i {
    color: #2563eb;
    font-size: 20px;
    flex-shrink: 0;
}

.intro-point span {
    font-size: 15px;
    color: #334155;
    font-weight: 500;
}

.area-info-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}

.area-info-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #2563eb;
}

.area-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.area-info-list dt {
    font-weight: 600;
    color: #475569;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.area-info-list dt i {
    color: #2563eb;
    width: 20px;
}

.area-info-list dd {
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
    margin-left: 28px;
    margin-top: 5px;
}

/* ===============================================
   実績セクション
=============================================== */
.area-achievement {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: #ffffff;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.achievement-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.achievement-number {
    font-size: 52px;
    font-weight: 700;
    color: #f59e0b;
    line-height: 1;
    margin-bottom: 15px;
}

.achievement-number span {
    font-size: 28px;
}

.achievement-label {
    font-size: 15px;
    opacity: 0.95;
}

/* ===============================================
   エリアサービス
=============================================== */
.area-service-section {
    padding: 80px 20px;
    background: #ffffff;
}

.area-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.area-service-item {
    padding: 40px;
    background: #f9fafb;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
}

.area-service-item:hover {
    border-color: #2563eb;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

.service-icon-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon-large i {
    font-size: 32px;
    color: #ffffff;
}

.area-service-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.area-service-item p {
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
}

/* ===============================================
   対応地域
=============================================== */
.area-coverage {
    padding: 80px 20px;
    background: #f9fafb;
}

.coverage-container {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.coverage-highlight h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
}

.major-areas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.major-area-card {
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
}

.major-area-card:hover {
    border-color: #2563eb;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.major-area-card i {
    font-size: 32px;
    color: #2563eb;
    margin-bottom: 15px;
}

.major-area-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.major-area-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

.coverage-all h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
}

.area-list-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

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

.area-name-list li {
    padding: 8px 0;
    font-size: 15px;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
    transition: color 0.3s;
}

.area-name-list li:hover {
    color: #2563eb;
}

.coverage-note {
    margin-top: 30px;
    padding: 20px;
    background: #dbeafe;
    border-left: 4px solid #2563eb;
    border-radius: 4px;
    font-size: 15px;
    color: #1e40af;
}

/* ===============================================
   対応地域：スマホは最初の5件だけ表示
=============================================== */
@media (max-width: 768px) {
    .area-list-grid.hide-extra-sp li {
        transition: opacity 0.2s ease;
    }

    .area-list-grid.hide-extra-sp li:nth-child(n+6) {
        display: none;
    }

    .coverage-more-toggle {
        margin-top: 16px;
        text-align: center;
    }

    .coverage-more-button {
        display: inline-block;
        padding: 10px 24px;
        font-size: 14px;
        border-radius: 999px;
        border: 1px solid #2563eb;
        background: #fff;
        color: #2563eb;
        cursor: pointer;
        transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    }

    .coverage-more-button:hover {
        background: #2563eb;
        color: #fff;
        box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
    }
}

/* ===============================================
   料金セクション
=============================================== */
.area-price-section {
    padding: 80px 20px;
    background: #ffffff;
}

.area-price-table {
    max-width: 800px;
    margin: 50px auto 30px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-bottom: 1px solid #e2e8f0;
    transition: background 0.3s;
}

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

.price-row:hover {
    background: #f9fafb;
}

.price-label h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.price-label p {
    font-size: 14px;
    color: #64748b;
}

.price-value {
    text-align: right;
}

.price-from {
    font-size: 36px;
    font-weight: 700;
    color: #2563eb;
}

.price-unit {
    font-size: 18px;
    color: #64748b;
    margin-left: 5px;
}

.price-notes {
    max-width: 800px;
    margin: 0 auto;
    padding: 25px;
    background: #fef3c7;
    border-radius: 8px;
}

.price-notes p {
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 14px;
    color: #92400e;
    margin-bottom: 10px;
}

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

.price-notes i {
    color: #f59e0b;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ===============================================
   CTAバナー
=============================================== */
.cta-banner {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===============================================
   お客様の声
=============================================== */
.area-reviews {
    padding: 80px 20px;
    background: #f9fafb;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.review-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
}

.review-location i {
    color: #2563eb;
}

.review-rating {
    display: flex;
    gap: 3px;
}

.review-rating i {
    color: #f59e0b;
    font-size: 14px;
}

.review-text {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.review-service {
    background: #dbeafe;
    color: #1e40af;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 600;
}

.review-date {
    color: #94a3b8;
}

/* ===============================================
   よくある質問
=============================================== */
.area-faq {
    padding: 80px 20px;
    background: #ffffff;
}

.faq-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #2563eb;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.faq-question i {
    color: #2563eb;
    font-size: 18px;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
}

/* ===============================================
   お問い合わせ
=============================================== */
.area-contact {
    padding: 80px 20px;
    background: #f9fafb;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 50px;
}

.contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-icon i {
    font-size: 28px;
    color: #ffffff;
}

.contact-details h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.contact-tel a {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

.contact-time {
    font-size: 14px;
    color: #64748b;
    margin: 10px 0;
}

.contact-note {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin-top: 15px;
}

.contact-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-line {
    background: #06c755;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-line:hover {
    background: #05b04b;
}

.contact-form-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-form-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
}

.area-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.required {
    color: #ef4444;
    font-size: 12px;
    margin-left: 5px;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-full {
    width: 100%;
}

/* ===============================================
   事例セクション
=============================================== */
.area-cases {
    padding: 80px 20px;
    background: #ffffff;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.case-card {
    background: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
}

.case-card:hover {
    border-color: #2563eb;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.case-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #ffffff;
}

.case-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.case-location {
    font-size: 14px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 8px;
}

.case-body {
    padding: 30px;
}

.case-detail {
    display: flex;
    margin-bottom: 15px;
    font-size: 15px;
}

.case-detail-label {
    font-weight: 600;
    color: #475569;
    min-width: 100px;
}

.case-detail-value {
    color: #1e293b;
}

.case-description {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e2e8f0;
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
}

/* ===============================================
   サービスの流れ
=============================================== */
.area-flow {
    padding: 80px 20px;
    background: #f9fafb;
}

.flow-steps {
    max-width: 900px;
    margin: 50px auto 0;
}

.flow-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

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

.flow-step:last-child::after {
    display: none;
}

.flow-step::after {
    content: '';
    position: absolute;
    left: 39px;
    top: 80px;
    width: 2px;
    height: calc(100% - 40px);
    background: #cbd5e1;
}

.flow-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.flow-content {
    flex: 1;
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 12px;
}

.flow-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.flow-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
}

/* ===============================================
   選ばれる理由
=============================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 48px;
    color: #2563eb;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    color: #1e40af;
    transform: scale(1.1);
}

.feature-icon i {
    display: block;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1e293b;
    font-weight: bold;
    line-height: 1.4;
}

.feature-card p {
    color: #555;
    line-height: 1.9;
    font-size: 15px;
}

/* ===============================================
   レスポンシブ対応 - タブレット (1024px以下)
=============================================== */
@media (max-width: 1024px) {
    .area-intro-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .area-info-card {
        position: static;
    }

    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .area-service-grid {
        grid-template-columns: 1fr;
    }

    .major-areas {
        grid-template-columns: 1fr;
    }

    .area-list-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===============================================
   レスポンシブデザイン - スマートフォン (768px以下)
=============================================== */
@media (max-width: 768px) {
    .area-intro-section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .section-title::after {
        width: 60px;
        height: 3px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-card {
        padding: 35px 25px;
    }

    .feature-icon {
        font-size: 42px;
    }

    .feature-card h3 {
        font-size: 22px;
    }

    .feature-card p {
        font-size: 14px;
    }

    .area-hero {
        min-height: 400px;
        padding: 60px 20px;
    }

    .area-hero-content {
        margin-top: 4rem !important;
    }

    .area-hero-title {
        font-size: 32px;
    }

    .area-name {
        font-size: 40px;
    }

    .area-hero-lead {
        font-size: 16px;
    }

    .area-hero-features {
        gap: 20px;
    }

    .area-feature-item {
        font-size: 14px;
    }

    .area-hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .area-hero-cta .btn {
        width: 100%;
    }

    .area-intro-section,
    .area-service-section,
    .area-coverage,
    .area-price-section,
    .area-review,
    .area-faq,
    .area-contact,
    .area-cases,
    .area-flow {
        padding: 60px 20px;
    }

    .area-section-title,
    .coverage-highlight h3,
    .coverage-all h3 {
        font-size: 24px;
    }

    .area-intro-points {
        gap: 12px;
    }

    .intro-point {
        padding: 12px 15px;
    }

    .area-info-card {
        padding: 25px;
    }

    .area-info-card h3 {
        font-size: 20px;
    }

    .area-achievement {
        padding: 60px 20px;
    }

    .achievement-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .achievement-number {
        font-size: 42px;
    }

    .achievement-number span {
        font-size: 24px;
    }

    .area-service-item {
        padding: 30px 25px;
    }

    .service-icon-large {
        width: 60px;
        height: 60px;
    }

    .service-icon-large i {
        font-size: 28px;
    }

    .area-service-item h3 {
        font-size: 20px;
    }

    .area-list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 25px 20px;
    }

    .price-label h3 {
        font-size: 20px;
    }

    .price-value {
        font-size: 28px;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }

    .contact-method {
        padding: 25px 20px;
    }

    .contact-tel a {
        font-size: 28px;
    }

    .contact-form-box {
        padding: 30px 20px;
    }

    .contact-form-box h3 {
        font-size: 20px;
    }

    .case-header {
        padding: 20px 25px;
    }

    .case-title {
        font-size: 18px;
    }

    .case-body {
        padding: 25px 20px;
    }

    .case-detail {
        flex-direction: column;
        gap: 5px;
    }

    .case-detail-label {
        min-width: auto;
    }

    .flow-step {
        flex-direction: column;
        text-align: center;
        margin-bottom: 30px;
    }

    .flow-step::after {
        display: none;
    }

    .flow-number {
        margin: 0 auto;
    }

    .flow-content {
        padding: 20px;
    }

    .flow-content h3 {
        font-size: 20px;
    }
}

/* ===============================================
   レスポンシブデザイン - 小型スマートフォン (480px以下)
=============================================== */
@media (max-width: 480px) {
    .area-hero-title {
        font-size: 28px;
    }

    .area-name {
        font-size: 34px;
    }

    .area-hero-lead {
        font-size: 15px;
    }

    .breadcrumb {
        font-size: 12px;
        flex-wrap: wrap;
    }

    .area-list-grid {
        grid-template-columns: 1fr;
    }

    .achievement-number {
        font-size: 36px;
    }

    .area-info-card {
        padding: 20px;
    }

    .contact-tel a {
        font-size: 24px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* ===============================================
   エリア別お客様の声・回収事例セクション用CSS
=============================================== */

/* お客様の声セクション - 共通スタイル */
.testimonial-area-section {
    padding: 80px 20px;
    background: #f9fafb;
}

.testimonial-area-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-area-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.testimonial-area-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
}

.testimonial-area-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-area-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-area-quote {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 48px;
    color: #dbeafe;
    opacity: 0.5;
}

.testimonial-area-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.testimonial-area-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-area-avatar i {
    font-size: 32px;
    color: #ffffff;
}

.testimonial-area-info {
    flex: 1;
}

.testimonial-area-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.testimonial-area-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #64748b;
}

.testimonial-area-location {
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonial-area-location i {
    color: #2563eb;
}

.testimonial-area-rating {
    display: flex;
    gap: 3px;
}

.testimonial-area-rating i {
    color: #f59e0b;
    font-size: 14px;
}

.testimonial-area-text {
    font-size: 1rem;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-area-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dbeafe;
    color: #1e40af;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.testimonial-area-tag i {
    font-size: 12px;
}

/* 回収事例セクション - 共通スタイル */
.case-area-section {
    padding: 80px 20px;
    background: #ffffff;
}

.case-area-header {
    text-align: center;
    margin-bottom: 50px;
}

.case-area-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.case-area-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
}

.case-area-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.case-area-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.case-area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.case-area-image {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
}

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

.case-area-card:hover .case-area-image img {
    transform: scale(1.05);
}

.case-area-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(37, 99, 235, 0.95);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.case-area-content {
    padding: 30px;
}

.case-area-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.4;
}

.case-area-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.case-area-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.case-area-icon {
    width: 32px;
    height: 32px;
    background: #dbeafe;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.case-area-icon i {
    color: #2563eb;
    font-size: 14px;
}

.case-area-label {
    font-weight: 600;
    color: #64748b;
    min-width: 70px;
}

.case-area-value {
    color: #1e293b;
    font-weight: 600;
}

.case-area-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #64748b;
    padding-top: 20px;
    border-top: 2px solid #e2e8f0;
}

/* レスポンシブデザイン - タブレット (1024px以下) */
@media (max-width: 1024px) {
    .testimonial-area-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .case-area-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .testimonial-area-card {
        padding: 30px;
    }

    .case-area-content {
        padding: 25px;
    }
}

/* レスポンシブデザイン - スマートフォン (768px以下) */
@media (max-width: 768px) {

    .testimonial-area-section,
    .case-area-section {
        padding: 60px 20px;
    }

    .testimonial-area-title,
    .case-area-title {
        font-size: 2rem;
    }

    .testimonial-area-subtitle,
    .case-area-subtitle {
        font-size: 1rem;
    }

    .testimonial-area-grid,
    .case-area-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-area-card {
        padding: 25px;
    }

    .testimonial-area-avatar {
        width: 60px;
        height: 60px;
    }

    .testimonial-area-avatar i {
        font-size: 28px;
    }

    .testimonial-area-name {
        font-size: 1.1rem;
    }

    .testimonial-area-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .testimonial-area-text {
        font-size: 0.95rem;
    }

    .case-area-image {
        height: 220px;
    }

    .case-area-content {
        padding: 20px;
    }

    .case-area-heading {
        font-size: 1.2rem;
    }

    .case-area-detail-item {
        flex-wrap: nowrap;
    }

    .case-area-label {
        min-width: 60px;
    }
}

/* レスポンシブデザイン - 小型スマートフォン (480px以下) */
@media (max-width: 480px) {

    .testimonial-area-section,
    .case-area-section {
        padding: 50px 15px;
    }

    .testimonial-area-title,
    .case-area-title {
        font-size: 1.8rem;
    }

    .testimonial-area-subtitle,
    .case-area-subtitle {
        font-size: 0.95rem;
    }

    .testimonial-area-card {
        padding: 20px;
    }

    .testimonial-area-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .testimonial-area-avatar {
        width: 55px;
        height: 55px;
    }

    .testimonial-area-avatar i {
        font-size: 24px;
    }

    .testimonial-area-quote {
        font-size: 36px;
        top: 15px;
        right: 15px;
    }

    .case-area-image {
        height: 200px;
    }

    .case-area-content {
        padding: 18px;
    }

    .case-area-heading {
        font-size: 1.1rem;
    }

    .case-area-icon {
        width: 28px;
        height: 28px;
    }

    .case-area-icon i {
        font-size: 12px;
    }

    .case-area-detail-item {
        font-size: 0.9rem;
    }

    .case-area-label {
        min-width: auto;
        flex-basis: 60%;
    }

    .case-area-description {
        font-size: 0.9rem;
    }
}

/* 印刷用スタイル */
@media print {

    .testimonial-area-section,
    .case-area-section {
        padding: 40px 20px;
        page-break-inside: avoid;
    }

    .testimonial-area-card,
    .case-area-card {
        box-shadow: none;
        border: 1px solid #e2e8f0;
        page-break-inside: avoid;
    }

    .testimonial-area-card:hover,
    .case-area-card:hover {
        transform: none;
    }

    .case-area-image img {
        max-height: 200px;
    }
}

/* ============================================
   1. 回収品目一覧セクション
   ============================================ */
.items-collection-section {
    padding: 80px 0;
    background: #f9fafb;
}

.items-collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.items-collection-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.items-collection-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.items-collection-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #2563eb;
}

.items-collection-header i {
    font-size: 24px;
    color: #2563eb;
}

.items-collection-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

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

.items-collection-list li {
    font-size: 13px;
}

.items-collection-list li a {
    display: inline-block;
    padding: 4px 10px;
    background: #f0f0f0;
    border-radius: 20px;
    color: #555;
    text-decoration: none;
    transition: all 0.2s ease;
}

.items-collection-list li a:hover {
    background: #2563eb;
    color: #fff;
}

.items-collection-note {
    margin-top: 32px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    text-align: center;
}

.items-collection-note p {
    margin: 8px 0;
    font-size: 14px;
    color: #666;
}

.items-collection-note i {
    margin-right: 8px;
}

.items-collection-warning {
    color: #d32f2f !important;
}

/* ============================================
   2. 会社情報セクション
   ============================================ */
.company-detail-section {
    padding: 80px 0;
    background: #fff;
}

.company-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.company-detail-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.company-detail-map iframe {
    display: block;
}

.company-detail-table {
    width: 100%;
    border-collapse: collapse;
}

.company-detail-table tr {
    border-bottom: 1px solid #eee;
}

.company-detail-table th,
.company-detail-table td {
    padding: 16px;
    text-align: left;
    vertical-align: top;
}

.company-detail-table th {
    width: 140px;
    background: #f9fafb;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.company-detail-table th i {
    margin-right: 8px;
    color: #2563eb;
}

.company-detail-table td {
    color: #555;
}

.company-detail-table td a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.company-detail-table td a:hover {
    text-decoration: underline;
}

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

.company-license-list li {
    padding: 4px 0;
    font-size: 14px;
}

.company-license-list li::before {
    content: "✓";
    color: #2563eb;
    margin-right: 8px;
    font-weight: bold;
}

.company-detail-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.company-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #f9fafb;
    border-radius: 12px;
}

.company-feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.company-feature-icon i {
    font-size: 24px;
    color: #fff;
}

.company-feature-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
}

.company-feature-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   3. 買取サービスセクション
   ============================================ */
.purchase-service-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fffbeb 0%, #fff 100%);
}

.purchase-intro {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.purchase-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
}

.purchase-subtitle i {
    margin-right: 10px;
    color: #f59e0b;
}

.purchase-categories {
    margin-bottom: 56px;
}

.purchase-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.purchase-category-item {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.purchase-category-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.purchase-category-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.purchase-category-icon i {
    font-size: 28px;
    color: #fff;
}

.purchase-category-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
}

.purchase-category-item p {
    font-size: 13px;
    color: #777;
    margin: 0;
    line-height: 1.5;
}

.purchase-example-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.purchase-example-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.purchase-example-card:hover {
    transform: translateY(-4px);
}

.purchase-example-image {
    height: 160px;
    background: #f0f0f0;
    overflow: hidden;
}

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

.purchase-example-content {
    padding: 20px;
}

.purchase-example-category {
    display: inline-block;
    padding: 4px 12px;
    background: #f59e0b;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 8px;
}

.purchase-example-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin: 0 0 6px 0;
}

.purchase-example-detail {
    font-size: 12px;
    color: #888;
    margin: 0 0 12px 0;
}

.purchase-example-location {
    font-size: 12px;
    color: #64748b;
    margin: 0 0 12px 0;
}

.purchase-example-location i {
    color: #2563eb;
    margin-right: 5px;
}

.purchase-example-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px dashed #ddd;
}

.purchase-example-price .price-label {
    font-size: 12px;
    color: #888;
}

.purchase-example-price .price-value {
    font-size: 20px;
    font-weight: 700;
    color: #2563eb;
}

.purchase-note {
    margin-top: 32px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.purchase-note p {
    margin: 8px 0;
    font-size: 14px;
    color: #666;
}

.purchase-note i {
    margin-right: 8px;
    color: #f59e0b;
}

/* ============================================
   4. 悪質業者注意喚起セクション
   ============================================ */
.caution-section {
    padding: 80px 0;
    background: #fef2f2;
}

.caution-container {
    margin-top: 40px;
}

.caution-warning-box {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px;
    background: #fff;
    border: 2px solid #ef4444;
    border-radius: 12px;
    margin-bottom: 48px;
}

.caution-warning-icon {
    width: 72px;
    height: 72px;
    background: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.caution-warning-icon i {
    font-size: 32px;
    color: #fff;
}

.caution-warning-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #dc2626;
    margin: 0 0 12px 0;
}

.caution-warning-content p {
    font-size: 15px;
    color: #555;
    margin: 0;
    line-height: 1.7;
}

.caution-points {
    margin-bottom: 48px;
}

.caution-points h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
}

.caution-points h3 i {
    margin-right: 10px;
    color: #ef4444;
}

.caution-points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.caution-point-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.caution-point-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.caution-danger .caution-point-icon i {
    font-size: 32px;
    color: #ef4444;
}

.caution-point-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
}

.caution-point-content p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.caution-troubles {
    margin-bottom: 48px;
}

.caution-troubles h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
}

.caution-troubles h3 i {
    margin-right: 10px;
    color: #ef4444;
}

.caution-trouble-list {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.caution-trouble-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.caution-trouble-item:last-child {
    border-bottom: none;
}

.trouble-number {
    display: inline-block;
    padding: 4px 12px;
    background: #ef4444;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    white-space: nowrap;
}

.caution-trouble-item p {
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.caution-trouble-item strong {
    color: #dc2626;
}

.caution-checklist {
    margin-bottom: 48px;
}

.caution-checklist h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
}

.caution-checklist h3 i {
    margin-right: 10px;
    color: #2563eb;
}

.caution-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.caution-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
}

.caution-check-list li i {
    color: #2563eb;
    font-size: 18px;
}

.caution-our-commitment {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-radius: 16px;
    padding: 40px;
    color: #fff;
}

.caution-our-commitment h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 24px 0;
    text-align: center;
}

.caution-our-commitment h3 i {
    margin-right: 10px;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.commitment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    text-align: center;
}

.commitment-item i {
    font-size: 28px;
}

.commitment-item span {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}

/* ============================================
   5. 関連エリアリンクセクション
   ============================================ */
.related-area-section {
    padding: 80px 0;
    background: #f9fafb;
}

.related-area-container {
    margin-top: 40px;
}

.related-area-group {
    margin-bottom: 40px;
}

.related-area-group:last-child {
    margin-bottom: 0;
}

.related-area-group h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #2563eb;
}

.related-area-group h3 i {
    margin-right: 10px;
    color: #2563eb;
}

.related-area-grid {
    display: grid;
    gap: 16px;
}

.related-area-grid.nearby {
    grid-template-columns: repeat(5, 1fr);
}

.related-area-grid.railway {
    grid-template-columns: repeat(4, 1fr);
}

.related-area-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
    background: #fff;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.related-area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: #2563eb;
}

.related-area-card .area-name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.related-area-card .area-distance,
.related-area-card .area-line {
    font-size: 12px;
    color: #888;
}

.related-area-card:hover .area-name,
.related-area-card:hover .area-distance,
.related-area-card:hover .area-line {
    color: #fff;
}

.related-area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.related-area-list a {
    display: inline-block;
    padding: 8px 16px;
    background: #fff;
    border-radius: 25px;
    color: #555;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

.related-area-list a:hover {
    background: #2563eb;
    color: #fff;
}

.related-area-note {
    margin-top: 32px;
    padding: 16px 24px;
    background: #fff;
    border-radius: 8px;
    text-align: center;
}

.related-area-note p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.related-area-note i {
    margin-right: 8px;
    color: #2563eb;
}

.related-area-note a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.related-area-note a:hover {
    text-decoration: underline;
}

/* ============================================
   レスポンシブ対応
   ============================================ */
@media (max-width: 1024px) {
    .items-collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .purchase-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .purchase-example-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .company-detail-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .commitment-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .related-area-grid.nearby {
        grid-template-columns: repeat(3, 1fr);
    }

    .related-area-grid.railway {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .items-collection-section,
    .company-detail-section,
    .purchase-service-section,
    .caution-section,
    .related-area-section {
        padding: 60px 0;
    }

    .items-collection-grid {
        grid-template-columns: 1fr;
    }

    .company-detail-container {
        grid-template-columns: 1fr;
    }

    .company-detail-map {
        order: 2;
    }

    .company-detail-info {
        order: 1;
    }

    .company-detail-features {
        grid-template-columns: 1fr;
    }

    .purchase-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .purchase-example-grid {
        grid-template-columns: 1fr;
    }

    .caution-warning-box {
        flex-direction: column;
        text-align: center;
    }

    .caution-warning-icon {
        margin: 0 auto;
    }

    .caution-points-grid {
        grid-template-columns: 1fr;
    }

    .caution-check-list {
        grid-template-columns: 1fr;
    }

    .commitment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-area-grid.nearby,
    .related-area-grid.railway {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .purchase-category-grid {
        grid-template-columns: 1fr;
    }

    .commitment-grid {
        grid-template-columns: 1fr;
    }

    .related-area-grid.nearby,
    .related-area-grid.railway {
        grid-template-columns: 1fr;
    }

    .caution-our-commitment {
        padding: 24px;
    }
}