/* 💡 [デザイン明示] 介護イベントは、優しさや清潔感のある配色を使用し、ポケカページと差別化します。 */
body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e9f5f9; /* 明るい水色系の背景 */
    color: #333;
    line-height: 1.7;
}

h1, h2 {
    color: #00796b; /* 深い緑/青系のアクセントカラー */
    border-bottom: 3px solid #b2dfdb; /* 見出しの下線 */
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.section {
    max-width: 800px;
    margin: 30px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* ヒーローセクション */
.kaigo-hero {
    background-color: #00796b;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.catchphrase {
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 10px;
}

.highlight-bar {
    background-color: #80cbc4; /* 薄いミントグリーン */
    color: #004d40;
    padding: 15px;
    border-radius: 5px;
    margin: 20px auto;
    max-width: 500px;
    font-size: 1.1em;
}

.price {
    font-weight: 900;
    color: #ff9800; /* オレンジで強調 */
}

/* CTAボタン */
.cta-button-kaigo {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff9800; /* オレンジ */
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.cta-button-kaigo:hover {
    background-color: #fb8c00;
}

/* 講座内容リスト */
.lesson-list {
    list-style: none;
    padding: 0;
}

.lesson-list li {
    background-color: #f0fdfc;
    margin-bottom: 10px;
    padding: 15px;
    border-left: 5px solid #00796b;
    border-radius: 5px;
}

.check-icon {
    color: #00796b;
    font-size: 1.2em;
    margin-right: 10px;
}

/* 特別オファーセクション */
.special-offer-bg {
    background-color: #ffe0b2; /* 優しいオレンジ系の背景 */
    color: #333;
    border: 2px dashed #ff9800;
}

.price-box {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    text-align: center;
}

.total-amount {
    font-size: 1.5em;
    font-weight: 900;
    color: #d84315; /* 濃い赤系 */
}

.contact-info {
    font-size: 1.1em;
    line-height: 1.8;
}

.qr-code-placeholder {
    margin-top: 20px;
    text-align: center;
}

.small-print {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 0.9em;
}