/* 全体の基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #ffffff; /* 背景を白に設定 */
    color: #333;
    line-height: 1.6;
    padding: 1.5rem;
}

/* ヘッダー */
.header {
    text-align: center;
    margin-bottom: 2rem;
}

.logo {
    font-size: 2.5rem;
    color: #0056b3; /* 深い青 */
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1rem;
    color: #4a90e2; /* 明るい青 */
}

/* 無料トライアル強調スタイル */
.trial-highlight {
    text-align: center;
    background: #e3f2fd; /* 淡い青 */
    padding: 1.5rem;
    border: 2px solid #64b5f6; /* 中間の青 */
    border-radius: 8px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    animation: coolGlow 3s infinite alternate;
    position: relative;
}

.trial-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #0277bd; /* 濃いめの青 */
    margin-bottom: 1rem;
}

.trial-text-detail {
    font-size: 1.0rem;
    color: black;
    margin-bottom: 2rem;
}

.trial-btn {
    font-size: 1rem;
    font-weight: bold;
    color: white;
    background: #0277bd; /* 濃い青 */
    border: none;
    border-radius: 5px;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.trial-btn:hover {
    background: #01579b; /* ホバー時の濃い青 */
    transform: translateY(-3px);
}

/* プラン表スタイル */
.pricing-table {
    width: 800px;
    border-collapse: collapse;
    margin: 16px auto 0;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* 金額行とメンバー行の間の罫線を2重線に設定 */
.pricing-table tr:nth-child(1) {
    border-bottom: 3px double #333; /* 2重線 (double) を設定 */
}

/* 表全体のスタイルを維持 */
.pricing-table th,
.pricing-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

/* 特定の行見出し(1列目)の背景色を変更 */
.pricing-table td:first-child {
    background-color: #eee; /* 薄いグレーの背景色を適用 */
    font-weight: bold; /* 見出し部分を強調（オプション） */
    text-align: left; /* 左揃え（必要に応じて） */
}

.pricing-table th {
    background-color: #0277bd; /* 濃い青 */
    color: white;
    font-weight: bold;
}

.pricing-table td {
    background-color: #f7fbff; /* 青みがかった白 */
}

.highlight-row td {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0277bd;
    background-color: #e3f2fd; /* 淡い青 */
}

/* フッター */
.footer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #666;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .pricing-table {
        width: 100%;
    }

    .pricing-table th,
    .pricing-table td {
        font-size: 0.9rem;
        padding: 8px;
    }

    .highlight-row td {
        font-size: 1.2rem;
    }

    .trial-text {
        font-size: 1rem;
    }

    .trial-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
}
