@charset "UTF-8";
/*
Theme Name: じもトピニュース テーマ
Theme URI: https://www.southcity.jp/
Author: 株式会社サウスシティー
Author URI: https://www.southcity.jp/
Description: じもトピニュース公式WordPressテーマ
Version: 1.0.1
*/

/* ==============================
   カラー変数・一貫したデザイン定義
============================== */
:root {
    --primary-color: #00a74d;
    --primary-dark: #00863d;
    
    --hachioji-color: #00215B;
    --kawagoe-color: #a51c4b;
    --funabashi-color: #ffd210;
    --yokohama-color: #00a99d;

    --text-dark: #222222;
    --text-muted: #666666;
    --bg-light: #f8faf9;
    --white: #ffffff;
    --border-color: #e2e8f0;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-card: 0 6px 20px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 12px 28px rgba(0, 0, 0, 0.12);
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==============================
   リセット＆共通ベース
============================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

h1, h2, h3, h4, h5, h6, .section-title {
    font-family: 'ルイカ', 'Ruika', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic Medium', 'Yu Gothic', Meiryo, sans-serif;
    font-weight: bold;
}

.section-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 0.06em;
    position: relative;
    display: inline-block;
}

.section-title::before {
    content: '';
    display: block;
    width: 24px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto 10px;
    border-radius: 1.5px;
}

/* ==============================
   表示・非表示の切り替え（PC / SP）
============================== */
@media (max-width: 768px) {
    .pc-only { display: none !important; }
}

@media (min-width: 769px) {
    .sp-only { display: none !important; }
}

/* ==============================
   ① ヘッダー & ナビゲーション
============================== */
header {
    background: var(--primary-color);
    padding: 12px 0;
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.header-logo-img {
    height: 38px;
    width: auto;
    display: block;
    object-fit: contain;
}

.header-logo-text {
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .header-logo-text { font-size: 12px; }
}

.header-nav-list {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.header-nav-list a {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.header-nav-list a:not(.header-cta-btn):hover {
    opacity: 0.8;
}

.header-cta-btn {
    background-color: var(--white);
    color: var(--primary-color) !important;
    padding: 8px 18px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-cta-btn:hover {
    background-color: var(--bg-light) !important;
    transform: translateY(-2px);
}

/* ハンバーガーメニュー */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

@media (max-width: 1024px) {
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1002;
    }
    .hamburger.is-active span {
        background-color: var(--text-dark);
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -10px 0 30px rgba(0,0,0,0.15);
        transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 100px 24px 40px;
        z-index: 1001;
        overflow-y: auto;
    }
    .header-nav.is-active {
        right: 0;
    }
    .header-nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .header-nav-list li a {
        display: block;
        padding: 14px 16px;
        font-size: 16px;
        color: var(--text-dark);
        background-color: var(--bg-light);
        border-radius: var(--radius-sm);
    }
    .header-nav-list li a:hover {
        background-color: #e2e8f0;
    }
    .header-cta-btn {
        background-color: var(--primary-color) !important;
        color: var(--white) !important;
        text-align: center;
        margin-top: 10px;
        box-shadow: 0 4px 12px rgba(0, 167, 77, 0.3);
        padding: 12px;
    }
    .header-cta-btn:hover {
        background-color: var(--primary-dark) !important;
    }
    .hamburger.is-active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger.is-active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.is-active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* ==============================
   ② カルーセルセクション
============================== */
.feed-section {
    background-color: var(--bg-light);
    padding: 48px 0;
    position: relative;
}

@media (min-width: 769px) {
    .feed-section::before,
    .feed-section::after {
        content: '';
        position: absolute;
        top: 0;
        width: 100px;
        height: 100%;
        z-index: 2;
        pointer-events: none;
    }
    .feed-section::before {
        left: 0;
        background: linear-gradient(90deg, var(--bg-light), transparent);
    }
    .feed-section::after {
        right: 0;
        background: linear-gradient(270deg, var(--bg-light), transparent);
    }
}

.feed-carousel {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 10px 16px;
    cursor: grab;
    scrollbar-width: none;
}
.feed-carousel::-webkit-scrollbar { display: none; }

.feed-item {
    width: 75vw;
    max-width: 300px;
    aspect-ratio: 4 / 5;
    flex-shrink: 0;
    background: #e2e8f0;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    overflow: hidden;
}
.feed-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.feed-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

@media (min-width: 769px) {
    .feed-carousel { gap: 20px; padding: 10px 20px; }
    .feed-item { width: 280px; max-width: none; }
}

/* ==============================
   ③ メインビジュアル
============================== */
.hero {
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(248, 250, 249, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%),
                url('images/background_sp.jpg') center/cover no-repeat;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 167, 77, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

@media (min-width: 769px) {
    .hero {
        background-image: linear-gradient(135deg, rgba(248, 250, 249, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%),
                          url('images/background_pc.jpg');
    }
}

.hero h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}
.hero h1 span { color: var(--primary-color); }
.hero p { font-size: 16px; color: var(--text-muted); line-height: 1.8; }

/* ==============================
   ④ 特徴セクション
============================== */
.features-section { padding: 80px 0; }
.features-grid {
    display: flex;              
    flex-wrap: wrap;            
    justify-content: center;    
    gap: 28px;
}
.feature-card {
    flex: 1 1 280px;            
    max-width: 400px;            
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
    text-align: center;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 167, 77, 0.08);
}
.feature-icon {
    width: 72px;
    height: 72px;
    background: rgba(0, 167, 77, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.feature-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--primary-color);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.feature-num {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: inline-block;
    padding: 4px 10px;
    background: var(--bg-light);
    border-radius: 20px;
}
.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}
.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==============================
   ⑤ エリア展開
============================== */
.area-section { padding: 80px 0; background-color: var(--bg-light); }
.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 420px));
    justify-content: center;
    gap: 28px;
}
.area-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 32px 40px;
    width: 100%;
    max-width: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}
.area-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.area-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 6px;
}
.card-hachioji::before { background-color: var(--hachioji-color); }
.card-kawagoe::before { background-color: var(--kawagoe-color); }
.card-funabashi::before { background-color: var(--funabashi-color); }
.card-yokohama::before { background-color: var(--yokohama-color); }

.area-badge {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.card-hachioji .area-badge { background: #eef3fb; color: var(--hachioji-color); }
.card-kawagoe .area-badge { background: #fdf0f4; color: var(--kawagoe-color); }
.card-funabashi .area-badge { background: #fffbe6; color: #8c7300; }
.card-yokohama .area-badge { background: #e6f7f6; color: var(--yokohama-color); }

.area-logo-img {
    width: 90px; height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08), 0 0 0 4px var(--white);
}
.area-card h3 { font-size: 22px; margin-bottom: 12px; }
.area-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; flex-grow: 1; }

.insta-btn {
    width: 100%;
    padding: 14px 24px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 15px;
    color: var(--white);
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: var(--transition-smooth);
}
.btn-hachioji { background-color: var(--hachioji-color); box-shadow: 0 4px 12px rgba(0, 33, 91, 0.25); }
.btn-kawagoe { background-color: var(--kawagoe-color); box-shadow: 0 4px 12px rgba(165, 28, 75, 0.25); }
.btn-funabashi { background-color: var(--funabashi-color); color: #222222; box-shadow: 0 4px 12px rgba(255, 210, 16, 0.3); cursor: default; }
.btn-yokohama { background-color: var(--yokohama-color); color: var(--white); box-shadow: 0 4px 12px rgba(0, 169, 157, 0.3); cursor: default; }

/* ==============================
   ⑥ CTAセクション
============================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}
.cta-box h2 { font-size: 28px; margin-bottom: 16px; }
.cta-box p { font-size: 15px; margin-bottom: 32px; opacity: 0.95; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-btn {
    width: 100%;
    max-width: 360px;
    display: flex; align-items: center; justify-content: center;
    padding: 14px 20px; border-radius: 40px;
    font-weight: 700; font-size: 15px;
    transition: var(--transition-smooth);
}
.primary-cta {
    background-color: var(--white); color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.primary-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.15); }
.secondary-cta { background-color: transparent; border: 2px solid var(--white); color: var(--white); }
.secondary-cta:hover { background-color: var(--white); color: var(--primary-color); }

/* ==============================
   ⑦ ニュースセクション
============================== */
.news-section { padding: 80px 0; }
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.news-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid #f0f0f0;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    display: flex; flex-direction: column; height: 100%;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

/* サムネイル 4:5 固定 */
.news-thumb {
    width: 100% !important;
    aspect-ratio: 4 / 5 !important;
    height: auto !important;
    object-fit: cover !important;
    background: #e2e8f0;
    display: block;
}

.news-content { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }

/* 各エリアごとのタグ色定義 */
.tag {
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 10px;
    color: var(--white);
    line-height: 1;
    width: fit-content;
}
.tag-hachioji { background-color: var(--hachioji-color); color: var(--white); }
.tag-kawagoe  { background-color: var(--kawagoe-color); color: var(--white); }
.tag-funabashi { background-color: #8c7300; color: var(--white); }
.tag-yokohama { background-color: var(--yokohama-color); color: var(--white); }
.tag-report   { background-color: var(--primary-color); color: var(--white); }
.tag-default  { background-color: var(--primary-color); color: var(--white); }

.news-card p { font-size: 15px; font-weight: 700; color: var(--text-dark); line-height: 1.6; margin-bottom: 16px; }
.news-btn-wrap { text-align: center; margin-top: 48px; display: flex; justify-content: center; }
.w-320 { max-width: 320px !important; width: 100%; }

/* ==============================
   ⑦.5 フランチャイズ・ページネーション・その他
============================== */
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 48px; }
.pagination .page-numbers,
.pagination-item {
    display: flex; justify-content: center; align-items: center;
    min-width: 40px; height: 40px; padding: 0 8px;
    background-color: var(--white); border: 1px solid #e2e8f0; border-radius: var(--radius-sm);
    font-size: 14px; font-weight: 700; color: var(--text-dark); transition: var(--transition-smooth);
}
.pagination .page-numbers:hover:not(.current):not(.disabled),
.pagination-item:hover:not(.active):not(.disabled) {
    background-color: var(--bg-light); border-color: var(--primary-color); color: var(--primary-color); transform: translateY(-2px);
}
.pagination .page-numbers.current,
.pagination-item.active { background-color: var(--primary-color); border-color: var(--primary-color); color: var(--white); cursor: default; }
.pagination .dots,
.pagination-dots { display: flex; align-items: center; justify-content: center; width: 30px; color: var(--text-muted); font-weight: bold; }
.pagination-item.disabled { color: #cbd5e1; background-color: #f8fafc; border-color: #e2e8f0; cursor: not-allowed; pointer-events: none; }

.franchise-section { padding: 80px 0; background-color: var(--white); }
.franchise-card {
    background: var(--white); border: 1px solid #f0f0f0; border-radius: var(--radius-md);
    padding: 56px 40px; text-align: center; box-shadow: var(--shadow-card); position: relative; overflow: hidden;
}
.franchise-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--yokohama-color));
}
.franchise-card h2 { font-size: 26px; margin-bottom: 16px; }
.franchise-card p { font-size: 15px; color: var(--text-muted); margin-bottom: 36px; line-height: 1.8; }
.franchise-btn-wrap { display: flex; justify-content: center; }
.franchise-btn-wrap .primary-cta { background-color: var(--primary-color); color: var(--white); max-width: 320px; padding: 14px 28px; border-radius: 40px; }

/* ==============================
   ⑧ スポンサー・パートナーセクション
============================== */
.sponsor-section { padding: 60px 0 80px; background-color: var(--bg-light); border-top: 1px solid rgba(0, 0, 0, 0.05); }
.sponsor-block { margin-bottom: 48px; }
.sponsor-section h2 { text-align: center; font-size: 20px; color: var(--primary-color); margin-bottom: 24px; letter-spacing: 0.08em; }
.sponsor-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.partner-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; }
.partner-grid .sponsor-card { width: 100%; max-width: 300px; }
.sponsor-card {
    display: block; background: var(--white); border-radius: 8px; overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sponsor-card:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.12); }
.sponsor-card img { width: 100%; height: auto; display: block; }
@media (max-width: 768px) {
    .sponsor-grid, .partner-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; display: grid; }
    .partner-grid .sponsor-card { max-width: 100%; }
}

/* ==============================
   ⑨ フッター
============================== */
footer { background: #111111; color: var(--white); padding: 30px 0; text-align: center; }
.footer-logo { margin-bottom: 30px; }
.footer-logo-img { height: 80px; width: 100%; max-width: 60%; display: inline-block; object-fit: contain; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 32px; list-style: none; margin: 0 0 40px; padding: 0; }
.footer-nav a { color: #cccccc; font-size: 13px; transition: var(--transition-smooth); }
.footer-nav a:hover { color: var(--white); text-decoration: underline; }
.copyright { font-size: 12px; color: #666; border-top: 1px solid #222; padding-top: 20px; }
@media (max-width: 768px) {
    .footer-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 16px; max-width: 320px; margin: 0 auto 30px; }
    .footer-nav li:last-child { grid-column: 1 / -1; }
}

/* ==============================
   パンくずリスト
============================== */
.breadcrumbs { background-color: var(--white); padding: 12px 0; border-bottom: 1px solid var(--border-color); }
.breadcrumbs-list { display: flex !important; flex-wrap: wrap; list-style: none !important; margin: 0; padding: 0; font-size: 12px; color: var(--text-muted); }
.breadcrumbs-list li { display: flex; align-items: center; }
.breadcrumbs-list li:not(:last-child)::after { content: '>'; margin: 0 8px; color: #ccc; font-size: 10px; }
.breadcrumbs-list a { color: var(--primary-color); text-decoration: none; }
.breadcrumbs-list a:hover { text-decoration: underline; }

/* ページヘッダー */
.page-header { padding: 80px 0 60px; text-align: center; }
.section-title-en { display: block; font-size: 12px; font-family: 'Helvetica Neue', Arial, sans-serif; font-weight: bold; color: var(--primary-color); margin-top: 8px; letter-spacing: 0.15em; }

/* プライバシーポリシー コンテンツ */
.privacy-content { max-width: 800px; margin: 0 auto 100px; }
.privacy-intro { margin-bottom: 56px; font-size: 15px; line-height: 1.8; background: var(--bg-light); padding: 32px; border-radius: var(--radius-sm); }
.privacy-section { margin-bottom: 48px; }
.privacy-section h2 { font-size: 20px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid #e2e8f0; display: flex; align-items: center; gap: 12px; }
.privacy-section h2::before { content: ''; display: inline-block; width: 8px; height: 8px; background-color: var(--primary-color); border-radius: 50%; }
.privacy-section p { font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.privacy-list { list-style-type: none; padding-left: 0; margin-bottom: 16px; }
.privacy-list li { position: relative; padding-left: 20px; font-size: 15px; line-height: 1.8; margin-bottom: 8px; }
.privacy-list li::before { content: '-'; position: absolute; left: 0; color: var(--primary-color); font-weight: bold; }

/* 問い合わせ窓口 */
.contact-box { background-color: var(--white); padding: 40px; border: 1px solid #e2e8f0; border-radius: var(--radius-md); margin-top: 80px; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05); position: relative; text-align: center; }
.contact-box::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--primary-color); border-radius: var(--radius-md) var(--radius-md) 0 0; }
.contact-box h3 { font-size: 22px; margin-bottom: 24px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.contact-icon { width: 24px; height: 24px; stroke: var(--primary-color); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.contact-desc { margin-bottom: 32px; font-size: 15px; color: var(--text-muted); }
.contact-info { background-color: var(--bg-light); border-radius: var(--radius-sm); padding: 32px; display: block; width: 100%; }
.contact-info-item { margin-bottom: 24px; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-label { font-weight: 700; color: var(--text-muted); font-size: 13px; margin-bottom: 8px; letter-spacing: 0.05em; }
.contact-info-value { font-size: 18px; font-weight: bold; }
.contact-info-value a { color: var(--primary-color); transition: var(--transition-smooth); }
.contact-info-value a:hover { opacity: 0.8; text-decoration: underline; }
@media (max-width: 768px) {
    .contact-box { padding: 32px 20px; }
    .contact-info { padding: 24px 16px; }
    .contact-info-value { font-size: 16px; }
}

/* ==============================
   掲載依頼ページ用スタイル
============================== */
.page-intro { text-align: center; margin-bottom: 60px; font-size: 16px; line-height: 1.8; }
.plans-section { background-color: var(--bg-light); padding: 60px 0; margin-bottom: 80px; }
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.plan-card { background: var(--white); border-radius: var(--radius-md); padding: 40px 30px; box-shadow: var(--shadow-card); position: relative; display: flex; flex-direction: column; border: 1px solid #e2e8f0; transition: var(--transition-smooth); }
.plan-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.plan-badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--primary-color); color: var(--white); font-size: 13px; font-weight: bold; padding: 4px 16px; border-radius: 20px; letter-spacing: 0.05em; box-shadow: 0 4px 8px rgba(0,167,77,0.3); white-space: nowrap; }
.plan-icon { width: 64px; height: 64px; background: rgba(0, 167, 77, 0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; flex-shrink: 0; }
.plan-icon svg { width: 32px; height: 32px; stroke: var(--primary-color); stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.plan-title { font-size: 20px; font-weight: bold; text-align: center; margin-bottom: 16px; height: 56px; display: flex; align-items: center; justify-content: center; }
.plan-price { text-align: center; font-size: 32px; font-weight: bold; color: var(--primary-color); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px dashed #d1d5db; }
.plan-price span { font-size: 14px; color: var(--text-muted); font-weight: normal; }
.plan-price small { display: block; font-size: 13px; color: var(--text-muted); font-weight: normal; margin-top: 4px; }
.plan-desc { font-size: 14px; line-height: 1.8; }
.plan-card.premium { border: 2px solid var(--primary-color); }
.plan-card.premium .plan-badge { background: linear-gradient(135deg, #ffd210, #f59e0b); color: #222; box-shadow: 0 4px 8px rgba(245, 158, 11, 0.3); }
.plan-card.premium .plan-icon { background: rgba(245, 158, 11, 0.1); }
.plan-card.premium .plan-icon svg { stroke: #f59e0b; }

.form-section { max-width: 800px; margin: 0 auto 100px; }
.form-header { text-align: center; margin-bottom: 40px; }
.form-header h2 { font-size: 24px; margin-bottom: 16px; }
.form-header p { font-size: 15px; color: var(--text-muted); }
.request-form { background: var(--white); padding: 48px; border-radius: var(--radius-md); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); border: 1px solid #e2e8f0; }
.form-group { margin-bottom: 32px; }
.form-label { display: block; font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.req-badge { background: #ef4444; color: white; font-size: 11px; padding: 2px 8px; border-radius: 4px; margin-left: 8px; vertical-align: middle; }
.any-badge { background: #9ca3af; color: white; font-size: 11px; padding: 2px 8px; border-radius: 4px; margin-left: 8px; vertical-align: middle; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 14px 16px; font-size: 16px; border: 1px solid #d1d5db; border-radius: var(--radius-sm); background-color: #f9fafb; transition: var(--transition-smooth); font-family: inherit; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--primary-color); background-color: var(--white); box-shadow: 0 0 0 3px rgba(0, 167, 77, 0.1); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-size: 16px; padding-right: 40px; }
.form-textarea { resize: vertical; min-height: 160px; }
.form-note { display: block; font-size: 13px; color: var(--text-muted); margin-top: 8px; }
.file-upload-wrapper { position: relative; display: inline-block; width: 100%; }
.file-upload-input { position: absolute; left: 0; top: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.file-upload-button { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 24px; background: var(--bg-light); border: 2px dashed #d1d5db; border-radius: var(--radius-sm); color: var(--text-muted); font-weight: bold; transition: var(--transition-smooth); }
.file-upload-wrapper:hover .file-upload-button { background: #f0fdf4; border-color: var(--primary-color); color: var(--primary-color); }
.submit-btn-wrapper { text-align: center; margin-top: 48px; }
.submit-btn { background-color: var(--primary-color); color: var(--white); border: none; padding: 18px 60px; font-size: 18px; font-weight: bold; border-radius: 40px; cursor: pointer; box-shadow: 0 4px 12px rgba(0, 167, 77, 0.3); transition: var(--transition-smooth); width: 100%; max-width: 400px; }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0, 167, 77, 0.4); background-color: var(--primary-dark); }
@media (max-width: 768px) {
    .request-form { padding: 32px 20px; }
    .plans-grid { grid-template-columns: 1fr; }
}

/* ==============================
   ニュース（アーカイブ）ページ用スタイル
============================== */
.archive-news-section { padding: 0 0 100px; }
.category-filter { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.filter-btn { background-color: var(--white); border: 1px solid #e2e8f0; padding: 8px 20px; border-radius: 30px; font-size: 14px; font-weight: 700; cursor: pointer; transition: var(--transition-smooth); display: inline-block; }
.filter-btn:hover { background-color: var(--bg-light); border-color: #d1d5db; }
.filter-btn.active { background-color: var(--text-dark); color: var(--white); border-color: var(--text-dark); }
.news-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.news-meta .tag { margin-bottom: 0; line-height: 1; }
.news-date { font-size: 13px; color: var(--text-muted); font-family: 'Helvetica Neue', Arial, sans-serif; }
.news-readmore { margin-top: auto; display: inline-flex; align-items: center; font-size: 14px; font-weight: bold; color: var(--primary-color); transition: var(--transition-smooth); }
.news-readmore::after { content: '→'; margin-left: 4px; font-family: 'Helvetica Neue', Arial, sans-serif; transition: transform 0.3s; }
.news-card:hover .news-readmore::after { transform: translateX(4px); }
@media (max-width: 768px) { .news-readmore { align-self: center; } }

/* ==============================
   シングルページ（記事詳細）用スタイル
============================== */
.single-container { max-width: 800px; margin: 0 auto; padding: 32px 16px 80px; }
.single-header { margin-bottom: 32px; }
.single-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.single-date { font-size: 13px; color: var(--text-muted); font-family: 'Helvetica Neue', Arial, sans-serif; }
.single-header h1.single-article-title { font-size: 22px; font-weight: 800; line-height: 1.5; margin-bottom: 24px; background-color: transparent !important; background-image: none !important; display: block; padding: 0; }
.single-main-img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-md); background-color: var(--bg-light); margin-bottom: 32px; box-shadow: var(--shadow-card); }
.single-body { font-size: 15px; }
.single-body p { margin-bottom: 24px; }
.single-body h2 { font-size: 20px; color: var(--primary-color); margin: 40px 0 20px; padding-bottom: 10px; border-bottom: 2px solid var(--primary-color); line-height: 1.4; }
.single-body h3 { font-size: 18px; margin: 32px 0 16px; padding-left: 12px; border-left: 4px solid var(--primary-color); line-height: 1.4; }
.single-body img { max-width: 100%; height: auto; border-radius: var(--radius-sm); margin: 24px 0; display: block; }
.single-body ul, .single-body ol { margin: 0 0 24px 16px; padding-left: 16px; }
.single-body li { margin-bottom: 8px; }
.single-body blockquote { margin: 0 0 24px; padding: 16px; background-color: var(--bg-light); border-left: 4px solid #cbd5e1; color: var(--text-muted); font-style: italic; }
.info-box { background-color: #f0fdf4; border: 1px solid #bbf7d0; border-radius: var(--radius-md); padding: 24px 16px; margin: 48px 0 32px; }
.info-box-title { font-size: 18px; font-weight: bold; color: var(--primary-dark); text-align: center; margin-bottom: 20px; }
.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td { padding: 12px 0; border-bottom: 1px dashed #cbd5e1; text-align: left; vertical-align: top; }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: none; padding-bottom: 0; }
.info-table th { width: 110px; color: var(--text-muted); font-size: 13px; }
.info-table td { font-size: 14px; word-break: break-all; }
.info-table a { color: var(--primary-color); text-decoration: underline; }
.share-section { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 48px 0; padding: 24px 0; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.share-label { font-weight: bold; font-size: 13px; color: var(--text-muted); }
.share-buttons-wrap { display: flex; gap: 12px; }
.share-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; color: var(--white); transition: var(--transition-smooth); }
.share-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.btn-line-img { background-color: transparent; padding: 0; }
.btn-line-img:hover { opacity: 0.8; }
.btn-x { background-color: #000000; }
.btn-fb { background-color: #1877F2; }
.post-navigation { display: flex; flex-direction: column; gap: 16px; margin-bottom: 48px; }
.nav-link { display: flex; flex-direction: column; width: 100%; padding: 16px; background-color: var(--bg-light); border-radius: var(--radius-sm); transition: var(--transition-smooth); }
.nav-link:hover { background-color: #e2e8f0; }
.nav-label { font-size: 11px; color: var(--text-muted); margin-bottom: 8px; }
.nav-title { font-size: 14px; font-weight: bold; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.nav-prev, .nav-next { text-align: left; }
.back-to-list { text-align: center; }
.back-btn { display: inline-block; padding: 14px 40px; background-color: var(--white); border: 1px solid var(--border-color); font-weight: bold; border-radius: 30px; font-size: 14px; transition: var(--transition-smooth); }
.back-btn:hover { background-color: var(--bg-light); border-color: #d1d5db; }

@media (min-width: 769px) {
    .single-header h1.single-article-title { font-size: 28px; }
    .single-body { font-size: 16px; }
    .single-body h2 { font-size: 24px; }
    .single-body h3 { font-size: 20px; }
    .info-box { padding: 32px; }
    .info-table th { width: 140px; font-size: 14px; }
    .info-table td { font-size: 15px; }
    .post-navigation { flex-direction: row; justify-content: space-between; }
    .nav-link { width: 48%; padding: 20px; }
    .nav-next { text-align: right; }
}

@media (max-width: 480px) {
    .share-section { flex-direction: column; gap: 16px; }
    .share-buttons-wrap { display: flex; width: 100%; max-width: 240px; justify-content: center; gap: 16px; }
    .share-btn { width: 44px; height: 44px; }
    .btn-line-img img { width: 100%; height: auto; }
}

/* ==============================
   FC（フランチャイズ）ページ専用スタイル
============================== */
.fc-hero {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%),
                url('images/image.jpg') center/cover no-repeat;
    border-bottom: 1px solid var(--border-color);
}
.fc-hero-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    font-size: 13px;
    font-weight: bold;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}
.fc-hero h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 24px;
}
.fc-hero h1 span { color: var(--primary-color); }
.fc-hero p {
    font-size: 15px;
    color: var(--white);
    line-height: 1.9;
    max-width: 700px;
    margin: 0 auto 40px;
}
.fc-hero-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 16px;
    font-weight: bold;
    padding: 16px 40px;
    border-radius: 40px;
    box-shadow: 0 6px 20px rgba(0, 167, 77, 0.35);
    transition: var(--transition-smooth);
    width: 100%;
    max-width: 360px;
}
.fc-hero-btn:hover {
    transform: translateY(-3px);
    background-color: var(--primary-dark);
    box-shadow: 0 8px 24px rgba(0, 167, 77, 0.45);
}

.fc-section { padding: 80px 0; }
.fc-section.bg-light { background-color: var(--bg-light); }
.section-title-wrap { text-align: center; margin-bottom: 48px; }
.section-title-en { display: block; font-size: 12px; font-family: 'Helvetica Neue', Arial, sans-serif; font-weight: bold; color: var(--primary-color); margin-top: 6px; letter-spacing: 0.15em; }

.reason-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.reason-card { width: 100%; background: var(--white); border-radius: var(--radius-md); padding: 40px 24px; box-shadow: var(--shadow-card); border: 1px solid var(--border-color); text-align: center; transition: var(--transition-smooth); }
@media (min-width: 769px) {
    .reason-card { width: auto; flex: 1 1 280px; max-width: 400px; }
}
.reason-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.reason-icon { width: 64px; height: 64px; background: rgba(0, 167, 77, 0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.reason-icon svg { width: 32px; height: 32px; stroke: var(--primary-color); stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.reason-num { font-size: 12px; font-weight: 800; letter-spacing: 0.1em; color: var(--white); background: var(--primary-color); display: inline-block; padding: 4px 12px; border-radius: 20px; margin-bottom: 16px; }
.reason-card h3 { font-size: 18px; font-weight: bold; margin-bottom: 16px; color: var(--text-dark); }
.reason-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; text-align: center; }

.model-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
@media (max-width: 768px) { .model-grid { grid-template-columns: 1fr; } }
.model-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); border-top: 4px solid var(--primary-color); display: flex; flex-direction: column; }
.model-img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background-color: #e2e8f0; }
.model-content { padding: 24px; text-align: center; display: flex; flex-direction: column; flex-grow: 1; justify-content: center; }
.model-content h3 { font-size: 18px; font-weight: bold; margin-bottom: 16px; color: var(--text-dark); justify-content: center; }
.model-content p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.requirements-box { background: var(--white); border: 2px solid var(--primary-color); border-radius: var(--radius-md); max-width: 800px; margin: 0 auto; position: relative; overflow: hidden; }
.req-img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background-color: #e2e8f0; display: block; border-bottom: 1px solid var(--border-color); }
.requirements-box::before { content: 'マスト要件'; position: absolute; top: 16px; left: 16px; background: var(--primary-color); color: var(--white); font-weight: bold; font-size: 13px; padding: 4px 16px; border-radius: 20px; letter-spacing: 0.1em; z-index: 1; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.req-content { padding: 32px 24px; text-align: center; }
.req-content h3 { font-size: 18px; margin-bottom: 24px; color: var(--text-dark); }
.req-list { list-style: none; margin-bottom: 24px; padding: 0; display: flex; flex-direction: column; align-items: center; }
.req-list li { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 12px; font-weight: bold; font-size: 15px; color: var(--text-dark); }
.req-list li::before { content: ''; display: block; width: 20px; height: 20px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300a74d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; flex-shrink: 0; }
.req-note { font-size: 13px; color: var(--text-muted); background: var(--bg-light); padding: 16px; border-radius: var(--radius-sm); line-height: 1.6; }

.step-list { display: flex; flex-direction: column; gap: 16px; max-width: 800px; margin: 0 auto; }
.step-item { background: var(--white); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 12px; border: 1px solid var(--border-color); text-align: center; align-items: center; }
@media (min-width: 769px) {
    .step-item { flex-direction: row; align-items: center; gap: 24px; padding: 24px 32px; text-align: left; }
}
.step-badge { background: var(--primary-color); color: var(--white); font-weight: bold; font-size: 13px; padding: 4px 12px; border-radius: 20px; white-space: nowrap; display: inline-block; margin-bottom: 8px; }
@media (min-width: 769px) {
    .step-badge { align-self: flex-start; margin-bottom: 0; }
}
.step-content h3 { font-size: 16px; font-weight: bold; margin-bottom: 8px; }
.step-content p { font-size: 13px; color: var(--text-muted); }

.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--white); border-radius: var(--radius-sm); padding: 20px; border: 1px solid var(--border-color); box-shadow: var(--shadow-card); }
.faq-q { font-size: 15px; font-weight: bold; color: var(--text-dark); margin-bottom: 12px; display: flex; gap: 8px; line-height: 1.5; }
.faq-q::before { content: 'Q.'; color: var(--primary-color); font-weight: 800; }
.faq-a { font-size: 14px; color: var(--text-muted); line-height: 1.7; padding-left: 24px; }

.fc-cta-section { padding: 80px 20px; background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%); color: var(--white); text-align: center; }
.fc-cta-box h2 { font-size: 24px; font-weight: 800; margin-bottom: 16px; line-height: 1.4; }
.fc-cta-box p { font-size: 14px; margin-bottom: 32px; opacity: 0.95; line-height: 1.7; }
.fc-cta-btn-bottom { display: inline-block; background-color: var(--white); color: var(--primary-color); font-size: 16px; font-weight: bold; padding: 16px 40px; border-radius: 40px; box-shadow: 0 6px 20px rgba(0,0,0,0.15); transition: var(--transition-smooth); width: 100%; max-width: 360px; }
.fc-cta-btn-bottom:hover { transform: translateY(-3px); background-color: var(--bg-light); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }

.fc-vision-section { padding: 80px 20px; background-color: var(--white); text-align: center; }
.fc-vision-section h2 { font-size: 22px; font-weight: 800; color: var(--text-dark); margin-bottom: 24px; line-height: 1.5; }
.fc-vision-section p { font-size: 15px; color: var(--text-muted); line-height: 1.9; max-width: 600px; margin: 0 auto; }

@media (min-width: 769px) {
    .fc-hero h1 { font-size: 36px; }
    .fc-cta-box h2 { font-size: 32px; }
    .fc-cta-box p { font-size: 16px; }
}

/* ==============================
   展開エリアチャネル（一覧）専用スタイル
============================== */
.area-gallery { padding: 0 0 80px; }
.area-row { display: flex; flex-direction: column; gap: 40px; margin-bottom: 100px; align-items: center; }
.area-image-wrap { width: 100%; position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 1 / 1; }
.area-image-wrap img.bg-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.area-row:hover .area-image-wrap img.bg-img { transform: scale(1.05); }

.area-logo-float {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid var(--white);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    z-index: 2;
    object-fit: cover;
}

.area-content { width: 100%; padding: 10px 10px 0; display: flex; flex-direction: column; align-items: center; text-align: center; }
.area-content h2 { font-size: 28px; font-weight: 800; margin-bottom: 16px; color: var(--text-dark); font-family: 'ルイカ', 'Ruika', 'Hiragino Sans', Meiryo, sans-serif; }
.feature-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 24px; }
.feature-tags span { font-size: 12px; font-weight: bold; color: var(--text-muted); border: 1px solid var(--border-color); padding: 4px 12px; border-radius: 30px; }
.area-content p { font-size: 15px; color: var(--text-muted); margin-bottom: 32px; line-height: 1.8; max-width: 600px; }

.btn-action { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 36px; border-radius: 40px; font-weight: bold; font-size: 15px; color: var(--white); transition: var(--transition-smooth); width: 100%; max-width: 320px; }
.card-hachioji .btn-action { background-color: var(--hachioji-color); box-shadow: 0 4px 12px rgba(0, 33, 91, 0.25); }
.card-kawagoe .btn-action { background-color: var(--kawagoe-color); box-shadow: 0 4px 12px rgba(165, 28, 75, 0.25); }
.btn-action:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }

.btn-coming-soon { display: inline-flex; align-items: center; justify-content: center; padding: 16px 36px; border-radius: 40px; font-weight: bold; font-size: 15px; width: 100%; max-width: 320px; background: #e2e8f0; color: #94a3b8; cursor: default; }

.bottom-banner {
    background: url('images/franchise_bg.jpg') center/cover;
    position: relative;
    padding: 80px 20px;
    text-align: center;
    color: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 80px;
    overflow: hidden;
}
.bottom-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 167, 77, 0.9) 0%, rgba(0, 134, 61, 0.95) 100%);
    z-index: 1;
}
.bottom-banner-inner { position: relative; z-index: 2; }
.bottom-banner h2 { font-size: 26px; margin-bottom: 16px; font-weight: 800; font-family: 'ルイカ', 'Ruika', 'Hiragino Sans', Meiryo, sans-serif; }
.bottom-banner p { font-size: 15px; opacity: 0.9; margin-bottom: 32px; line-height: 1.8; }

.btn-white { display: inline-block; background: var(--white); color: var(--primary-color); padding: 18px 48px; border-radius: 40px; font-weight: bold; box-shadow: 0 4px 15px rgba(0,0,0,0.1); transition: var(--transition-smooth); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }

@media (min-width: 769px) {
    .area-logo-float { width: 150px; height: 150px; }
    .area-row { flex-direction: row; justify-content: space-between; align-items: center; }
    .area-row:nth-child(even) { flex-direction: row-reverse; }
    .area-image-wrap { width: 45%; max-width: 480px; }
    .area-content { width: 48%; padding: 0; align-items: flex-start; text-align: left; }
    .feature-tags { justify-content: flex-start; }
}