@charset "UTF-8";

/* =================
   基本設定
================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #000000;
    --secondary-black: #1a1a1a;
    --gray-dark: #333333;
    --gray-medium: #666666;
    --gray-light: #cccccc;
    --white: #ffffff;
    --background: #fafafa;
}

body {
    font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Noto Sans JP', 'Yu Gothic', 'Meiryo', sans-serif;
    line-height: 1.8;
    color: var(--gray-dark);
    background-color: var(--white);
    font-size: 16px;
}

img {
    width: 100%;
}

/* ヘッダー */
header {
    background: var(--primary-black);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid var(--gray-light);
}

header h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    line-height: 1.4;
}

header .subtitle {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

/* コンテナ */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* セクション */
section {
    padding: 80px 0;
    border-bottom: 1px solid var(--gray-light);
}

section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: 0.08em;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--primary-black);
}

h2 {
    font-size: 1.6rem;
    font-weight: 400;
    margin: 60px 0 30px;
    letter-spacing: 0.05em;
}

h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin: 40px 0 20px;
    letter-spacing: 0.05em;
}

p {
    margin-bottom: 1.5em;
    text-align: justify;
}

/* =================
   モデル比較テーブル（セクション0用）
================= */
.recommendation-section {
    background: var(--background);
}

.model-comparison-wrapper {
    overflow-x: auto;
    margin: 40px 0;
}

.model-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    min-width: 1000px;
}

.model-comparison-table th {
    background: var(--primary-black);
    color: var(--white);
    padding: 15px 12px;
    text-align: left;
    font-weight: 500;
    letter-spacing: 0.05em;
    border: 1px solid var(--gray-light);
    font-size: 0.95rem;
}

.model-comparison-table td {
    padding: 20px 15px;
    border: 1px solid var(--gray-light);
    vertical-align: top;
}

.model-comparison-table tbody tr {
    transition: background-color 0.3s ease;
}

.model-comparison-table tbody tr:hover {
    background: var(--background);
}

/* 列幅の調整 */
.col-model {
    width: 15%;
}

.col-feature {
    width: 30%;
}

.col-recommend {
    width: 28%;
}

.col-price {
    width: 12%;
}

.col-link {
    width: 15%;
    text-align: center;
}

/* モデル名のスタイル */
.model-name strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-black);
}

.model-desc {
    font-size: 0.9rem;
    color: var(--gray-medium);
    margin: 0;
    line-height: 1.5;
}

/* 特徴リストのスタイル */
.feature-list,
.recommend-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li,
.recommend-list li {
    padding: 6px 0 6px 0;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.feature-list li::before {
    content: '・';
    margin-right: 5px;
    color: var(--gray-dark);
}

.recommend-list li {
    padding-left: 0;
}

.recommend-list li::before {
    content: none;
}

/* 価格セルのスタイル */
.price-cell {
    text-align: center;
}

.normal-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-black);
    margin: 0;
    white-space: nowrap;
}

/* 詳細リンクのスタイル */
.link-cell {
    text-align: center;
}

.detail-link {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary-black);
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    border: 1px solid var(--primary-black);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.detail-link:hover {
    background: var(--white);
    color: var(--primary-black);
}

/* =================
   テーブル
================= */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background: var(--white);
}

.comparison-table th {
    background: var(--primary-black);
    color: var(--white);
    padding: 15px;
    text-align: left;
    font-weight: 400;
    letter-spacing: 0.05em;
    border: 1px solid var(--gray-light);
}

.comparison-table td {
    padding: 15px;
    border: 1px solid var(--gray-light);
}

.comparison-table tbody tr:nth-child(even) {
    background: var(--background);
}

/* リスト */
ul {
    list-style: none;
    margin: 30px 0;
}

ul li {
    padding-left: 1.5em;
    margin-bottom: 15px;
    position: relative;
}

ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--primary-black);
}

/* カードスタイル */
.model-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    padding: 50px 40px;
    margin: 60px 0;
}

.model-card h3 {
    margin-top: 0;
    font-size: 1.5rem;
    border-bottom: 1px solid var(--primary-black);
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.model-subtitle {
    font-size: 1rem;
    color: var(--gray-medium);
    margin-bottom: 30px;
    font-weight: 300;
}

.spec-table {
    width: 100%;
    margin: 30px 0;
}

.spec-table tr {
    border-bottom: 1px solid var(--gray-light);
}

.spec-table td {
    padding: 12px 0;
}

.spec-table td:first-child {
    font-weight: 500;
    width: 140px;
    color: var(--gray-dark);
}

.feature-section {
    margin: 40px 0;
}

.feature-section h4 {
    font-size: 1.1rem;
    margin: 25px 0 15px;
    font-weight: 500;
}

/* =================
   セクション3用CTAボタン
================= */
.section-cta {
    text-align: center;
    margin: 80px 0 40px;
}

.official-site-button {
    display: inline-block;
    padding: 20px 60px;
    background: var(--primary-black);
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    border: 2px solid var(--primary-black);
    transition: all 0.3s ease;
}

.official-site-button:hover {
    background: var(--white);
    color: var(--primary-black);
}

/* ボックス */
.info-box {
    background: var(--background);
    border-left: 3px solid var(--primary-black);
    padding: 25px 30px;
    margin: 30px 0;
}

.info-box p:last-child {
    margin-bottom: 0;
}

/* 店舗テーブル */
.store-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    font-size: 0.9rem;
}

.store-table th {
    background: var(--primary-black);
    color: var(--white);
    padding: 12px 10px;
    text-align: left;
    font-weight: 400;
    border: 1px solid var(--gray-light);
}

.store-table td {
    padding: 12px 10px;
    border: 1px solid var(--gray-light);
}

.store-table tbody tr:nth-child(even) {
    background: var(--background);
}

/* オーナーの声 */
.voice-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    padding: 40px;
    margin: 40px 0;
}

.voice-header {
    border-bottom: 1px solid var(--gray-light);
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.voice-name {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.voice-model {
    font-size: 0.95rem;
    color: var(--gray-medium);
}

/* CTA */
.cta-section {
    background: var(--primary-black);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-top: 0;
    font-size: 2rem;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    margin: 15px 10px;
    background: var(--white);
    color: var(--primary-black);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.1em;
    border: 1px solid var(--white);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--primary-black);
    color: var(--white);
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.cta-button.secondary:hover {
    background: var(--white);
    color: var(--primary-black);
}

/* フッター */
footer {
    background: var(--secondary-black);
    color: var(--white);
    text-align: center;
    padding: 40px 20px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

/* レスポンシブ */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .model-card,
    .voice-card {
        padding: 30px 20px;
    }

    .comparison-table,
    .store-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td,
    .store-table th,
    .store-table td {
        padding: 10px 8px;
    }

    .cta-button {
        display: block;
        margin: 15px auto;
        max-width: 300px;
    }

    /* モデル比較テーブルのレスポンシブ */
    .model-comparison-table {
        font-size: 0.85rem;
    }

    .model-comparison-table th,
    .model-comparison-table td {
        padding: 12px 8px;
    }

    .model-name strong {
        font-size: 1rem;
    }

    .feature-list li,
    .recommend-list li {
        font-size: 0.85rem;
    }

    .detail-link {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    /* セクション3のCTAボタン */
    .official-site-button {
        display: block;
        max-width: 300px;
        margin: 0 auto;
        padding: 18px 40px;
        font-size: 1rem;
    }
}

/* スムーススクロール */
html {
    scroll-behavior: smooth;
}

/* アクセント */
.accent {
    color: var(--primary-black);
    font-weight: 500;
}

.price {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary-black);
}
