/* ===================================
   名古屋市ページ専用スタイル
   =================================== */

:root {
    --primary-color: #FF8A00;
    --primary-dark: #E67E22;
    --primary-light: #FFB366;
    --accent-color: #52B788;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --bg-light: #f8f9fa;
}

/* ヒーローセクション */
.nagoya-hero {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.9), rgba(230, 126, 34, 0.9)),
                url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?w=1200') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* ヘッダー調整 */
.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-back-home:hover {
    background: var(--primary-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* メインコンテンツ */
.nagoya-main {
    background: linear-gradient(180deg, #fef9f3 0%, #ffffff 100%);
    min-height: 100vh;
}

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

/* セクションタイトル */
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-intro {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* 基本情報セクション */
.section-basic-info {
    margin-bottom: 80px;
}

.basic-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.info-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 138, 0, 0.3);
}

.info-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.info-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.info-desc {
    font-size: 14px;
    color: var(--text-light);
}

/* 魅力セクション */
.section-attractions {
    margin-bottom: 80px;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.attraction-card {
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.attraction-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #66bb6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: white;
}

.attraction-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.attraction-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.cost-example {
    margin-top: 20px;
}

.cost-comparison {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
}

.cost-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.cost-values {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-radius: 8px;
}

.cost-item.nagoya {
    background: #fff9e6;
    border-left: 4px solid var(--primary-color);
}

.cost-item.tokyo {
    background: #f0f0f0;
    border-left: 4px solid #999;
}

.cost-item .city {
    font-size: 14px;
    color: var(--text-light);
}

.cost-item .price {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
}

.access-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.access-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.access-list i {
    color: var(--accent-color);
    font-size: 16px;
}
/* 区別ガイドセクション */
.section-districts {
    margin-bottom: 80px;
}

.districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.district-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.district-card.featured {
    border: 2px solid var(--primary-color);
}

.district-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.district-card.featured .district-header {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: white;
}

.district-header h3 {
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.district-tag {
    background: #FFD700;
    color: #333;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.district-body {
    padding: 25px;
}

.district-body h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.district-points {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.district-points li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.district-points i {
    color: var(--accent-color);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.district-info {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.info-label {
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-label i {
    color: var(--primary-color);
}

.info-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    text-align: right;
}

/* その他の区 */
.other-districts {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.other-districts h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
}

.district-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.district-tag-item {
    background: #f8f9fa;
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.district-tag-item:hover {
    background: var(--primary-light);
    color: white;
    transform: translateY(-2px);
}

/* 住居探しガイドセクション */
.section-housing-guide {
    margin-bottom: 80px;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.step-item {
    background: white;
    border-radius: 16px;
    padding: 30px;
    flex: 1;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
    text-align: center;
}

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

.step-item ul li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-light);
    padding-left: 20px;
    position: relative;
}

.step-item ul li::before {
    content: '•';
    position: absolute;
    left: 5px;
    color: var(--primary-color);
    font-weight: 700;
}

.step-arrow {
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.housing-resources {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.housing-resources h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.resource-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.resource-link {
    background: #f8f9fa;
    color: var(--text-color);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.resource-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* 施設情報セクション */
.section-facilities {
    margin-bottom: 80px;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.facility-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.facility-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.facility-card h3 i {
    color: var(--primary-color);
}

.facility-list {
    list-style: none;
    padding: 0;
}

.facility-list li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-light);
    border-bottom: 1px solid #f0f0f0;
}

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

.facility-list li strong {
    color: var(--text-color);
    display: block;
    margin-bottom: 5px;
}
/* 体験談セクション */
.section-testimonials {
    margin-bottom: 80px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-header {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.testimonial-icon {
    font-size: 50px;
    color: var(--primary-color);
}

.testimonial-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.testimonial-meta {
    font-size: 14px;
    color: var(--text-light);
}

.testimonial-body p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    background: #fef9f3;
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

/* FAQセクション */
.section-faq {
    margin-bottom: 80px;
}

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

.faq-item {
    background: white;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-question i {
    font-size: 28px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.faq-answer ul {
    list-style: none;
    padding-left: 20px;
}

.faq-answer ul li {
    padding: 5px 0;
    font-size: 14px;
    color: var(--text-light);
    position: relative;
}

.faq-answer ul li::before {
    content: '•';
    position: absolute;
    left: -15px;
    color: var(--primary-color);
    font-weight: 700;
}

/* 関連リンクセクション */
.section-links {
    margin-bottom: 80px;
}

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

.link-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: block;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background: var(--primary-light);
    color: white;
}

.link-card i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.link-card:hover i {
    color: white;
}

.link-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.link-card p {
    font-size: 13px;
    color: var(--text-light);
}

.link-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* CTAセクション */
.section-cta {
    margin-bottom: 40px;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 40px rgba(255, 138, 0, 0.3);
}

.cta-box h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cta-box p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .content-container {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 24px;
    }

    .attractions-grid,
    .districts-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .cta-box {
        padding: 35px 25px;
    }

    .cta-box h2 {
        font-size: 22px;
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .nagoya-hero {
        height: 300px;
    }

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

    .hero-subtitle {
        font-size: 14px;
    }

    .basic-info-grid {
        grid-template-columns: 1fr;
    }
}
