/* 基本設定とリセット */
body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

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

a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* ヘッダー */
.header {
    background-color: #2c3e50; /* 信頼感のあるネイビー */
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
}

.header-title {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
}

.header-subtitle {
    margin: 10px 0 0;
    font-size: 1.2rem;
    color: #ecf0f1; /* 少し柔らかい白 */
}

/* メインコンテンツ */
main {
    padding: 40px 0;
}

.section {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.section-title {
    font-size: 1.8rem;
    color: #2c3e50;
    border-bottom: 2px solid #3498db; /* アクセントカラー */
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 25px;
}

.section-title .icon {
    margin-right: 10px;
    color: #3498db;
}

/* 情報カード */
.info-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.info-card h3 {
    margin-top: 0;
    font-size: 1.3rem;
    color: #34495e;
}

.info-card ul {
    list-style-type: none;
    padding-left: 0;
}

.info-card li {
    padding: 8px 0;
    border-bottom: 1px dashed #e0e0e0;
}

.info-card li:last-child {
    border-bottom: none;
}

.contact-info {
    text-align: center;
    font-size: 0.9rem;
    color: #555;
    background-color: #eaf2f8;
    padding: 15px;
    border-radius: 5px;
}

/* 疾患リスト */
.disease-list {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.disease-list li {
    background-color: #ecf0f1;
    color: #34495e;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Q&Aセクション */
.faq-item {
    margin-bottom: 25px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.faq-item p {
    margin-top: 0;
    padding-left: 30px; /* アイコン分のインデント */
    border-left: 3px solid #3498db;
}

.icon-small {
    margin-right: 10px;
    color: #3498db;
    font-size: 1.1rem;
}

/* CTA (行動喚起) セクション */
.cta-section {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: #ffffff;
    text-align: center;
    border-radius: 8px;
}

.cta-title {
    color: #ffffff;
    font-size: 1.8rem;
    border-bottom: none;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #2980b9;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    margin-top: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-button .fas {
    margin-right: 8px;
}

/* フッター */
.footer {
    background-color: #34495e;
    color: #bdc3c7;
    text-align: center;
    padding: 25px 0;
    font-size: 0.9rem;
}

.footer p {
    margin: 5px 0;
}

.footer .copyright {
    font-size: 0.8rem;
    color: #95a5a6;
}

/* レスポンシブ対応 (スマートフォン) */
@media (max-width: 768px) {
    .header-title {
        font-size: 2rem;
    }
    .header-subtitle {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .section {
        padding: 20px;
    }
}