/* 全体 */
body {
    margin: 0;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    color: #333;
    line-height: 1.6;
}

/* ヘッダー */
header {
    background-color: #004d99;
    color: white;
    padding: 20px;
}

.header-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-area {
    text-align: center;
    margin-bottom: 15px;
}

.logo-area img {
    max-width: 450px;
    height: auto;
}

.sub-title {
    margin: 0;
    font-size: 0.9em;
    opacity: 0.9;
}

/* ナビゲーション */
.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 10px 0 0 0;
    border-top: 1px solid rgba(255,255,255,0.3);
}

.nav-menu li {
    margin: 0 15px;
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* ドロップダウン */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 100;
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 2px solid #004d99;
}

.dropdown-content li a {
    color: #333;
    padding: 12px 16px;
    display: block;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.dropdown-content li a:hover {
    background-color: #f0f7ff;
    color: #004d99;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* メイン */
main {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
    background-color: white;
}

.main-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.info-left { flex: 2; }
.info-right { flex: 1; background: #f0f7ff; padding: 20px; border-radius: 8px; }

/* ブログボタン */
.btn-blog {
    display: inline-block;
    background: #004d99;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: bold;
}

.btn-blog:hover {
    background: #003366;
}

/* フッター */
footer {
    text-align: center;
    padding: 30px;
    background-color: #eee;
    font-size: 0.8em;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .header-inner {
        align-items: center;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 10px;
    }

    .main-flex {
        flex-direction: column;
    }

    .logo-area img {
        max-width: 180px;
    }
}

/* 機能比較表のスタイル */
.table-category {
    background-color: #d1e3ff; /* 画像のような薄い青 */
    color: #004d99;
    padding: 10px 15px;
    font-weight: bold;
    border-left: 5px solid #004d99;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
    table-layout: fixed; /* 列の幅を均等にする */
}

.spec-table th, .spec-table td {
    border: 1px solid #e0e0e0;
    padding: 12px 8px;
    text-align: center;
    font-size: 0.9em;
}

.spec-table th {
    background-color: #f8f9fa;
    color: #555;
    font-weight: normal;
}

/* 一番左の列（機能名）だけ左寄せにする */
.spec-table td:first-child, .spec-table th:first-child {
    text-align: left;
    width: 40%;
    background-color: #ffffff;
}

/* チェックマークの色 */
.spec-table td {
    color: #28a745; /* 緑色 */
    font-weight: bold;
}

/* 「ー」の記号の色は薄くする */
.spec-table td:contains("ー") {
    color: #ccc;
}

/* スマホ対応：横スクロールできるようにする */
@media (max-width: 600px) {
    .spec-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* 購入導線・強調ボタン（オレンジ背景） */
.btn-stores {
    display: inline-block;
    background: #ff9900; /* オレンジ色 */
    color: white !important; /* 文字を白で固定 */
    padding: 15px 35px;    /* ボタンの余白 */
    text-decoration: none; /* 下線を消す */
    border-radius: 8px;    /* 角を少し丸く */
    font-size: 1.1em;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 4px 0 #cc7a00; /* ボタンの下に影をつけて立体的に */
    margin: 10px 0;
}

/* マウスを乗せた時の動き */
.btn-stores:hover {
    background: #e68a00;
    transform: translateY(2px); /* 押した感じを出す */
    box-shadow: 0 2px 0 #cc7a00;
}

.hero-section {
    background: linear-gradient(135deg, #003d80, #0066cc);
    color: white;
    padding: 60px 20px;
    text-align: center;
}
.hero-section h2 {
    font-size: 2em;
    margin-bottom: 15px;
    line-height: 1.5;
}
.hero-section p {
    font-size: 1.1em;
    margin-bottom: 30px;
    opacity: 0.9;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-primary {
    background: #ff9900;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
}
.btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    border: 2px solid white;
