/*
 * merit-cost.css
 * ページ固有CSS：法人向けEV社用車の導入メリットとコスト比較
 * 対象URL：/ev/zero/topics/merit-cost/
 * ガイドライン準拠：/ev/assets/css/page/ 配下に各ページ固有CSSを格納
 */

/* 記事コンテナ */
.article-wrapper {
    padding-top: 180px;
    padding-bottom: 60px;
    background-color: #fff;
}
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
}

/* 見出し */
.article-container h1 {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1a1a1a;
    padding-bottom: 20px;
    border-bottom: 3px solid #06b884;
}
.article-container h2 {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.5;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
    padding: 12px 16px;
    border-left: 4px solid #06b884;
    background-color: #f4fdfa;
}
.article-container h3 {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #333;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0f5ed;
}

/* 本文 */
.article-container p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #444;
}
.article-container section {
    margin-bottom: 40px;
}

/* 注記 */
.note {
    display: block;
    font-size: 13px;
    color: #888;
    line-height: 1.7;
    margin-top: 10px;
    margin-bottom: 8px;
}

/* テーブル */
.article-container table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 15px;
}
.article-container th,
.article-container td {
    border: 1px solid #d0ede3;
    padding: 12px 15px;
    text-align: center;
}
.article-container th {
    background-color: #ebf9f5;
    font-weight: bold;
    color: #1a5c44;
}
.article-container tbody tr:nth-child(even) {
    background-color: #f9fffe;
}

/* リスト */
.article-container ul {
    padding-left: 20px;
    margin-bottom: 20px;
}
.article-container ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #444;
}

/* 参考資料 */
.reference-list {
    margin-top: 60px;
    padding: 25px 30px;
    background-color: #f8f8f8;
    border-radius: 8px;
}
.reference-list h3 {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    border-bottom: none;
}
.reference-list ul {
    padding-left: 0;
    list-style: none;
}
.reference-list li {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 8px;
}
.reference-list a {
    color: #06b884;
    text-decoration: underline;
}
.reference-list a img {
    vertical-align: middle;
    margin-left: 4px;
}

/* CTAボックス */
.cta-box {
    background: linear-gradient(135deg, #ebf9f5 0%, #f4fdfa 100%);
    padding: 50px 40px;
    border-radius: 16px;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(6, 184, 132, 0.1);
}
.cta-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}
.cta-text-col {
    flex: 3;
    text-align: left;
}
.cta-action-col {
    flex: 2;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 30px;
    border-radius: 12px;
}
.cta-box h2 {
    background: none;
    border: none;
    padding: 0;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 28px;
    color: #06b884;
    text-align: left;
    line-height: 1.5;
}
.cta-box h3 {
    font-size: 20px;
    color: #333;
    border-bottom: none;
    padding-bottom: 0;
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.5;
}
.cta-box p {
    font-size: 16px;
    line-height: 1.8;
}
.cta-service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
    display: inline-block;
    font-size: 16px;
}
.cta-service-list li {
    margin-bottom: 12px;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    line-height: 1.5;
}
.cta-service-list li i {
    color: #06b884;
    margin-right: 12px;
    font-size: 18px;
    width: 20px;
    text-align: center;
}
.cta-btn {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    background: linear-gradient(to right, #06b884, #15d49c);
    color: #fff;
    padding: 18px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(6, 184, 132, 0.3);
}
.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(6, 184, 132, 0.4);
    color: #fff;
}
.cta-btn i {
    margin-right: 8px;
}

/* レスポンシブ */
@media screen and (max-width: 767px) {
    .article-wrapper {
        padding-top: 120px;
    }
    .article-container h1 {
        font-size: 22px;
    }
    .article-container h2 {
        font-size: 18px;
    }
    .article-container h3 {
        font-size: 16px;
    }
    .article-container p,
    .article-container ul li {
        font-size: 15px;
    }
    .article-container table {
        font-size: 13px;
    }
    .article-container th,
    .article-container td {
        padding: 8px 10px;
    }
    .cta-box {
        padding: 30px 20px;
    }
    .cta-content-wrapper {
        flex-direction: column;
    }
    .cta-action-col {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }
    .cta-btn {
        max-width: none;
    }
}
