/* --- 基本設定 --- */
h1 {
    padding-top: 120px;
    text-align: center;
    font-family: 'Mochiy Pop One', serif;
    font-weight: normal;
    font-size: 50px;
}

h2, h3, h5 {
    font-size: 40px;
    font-family: "M PLUS Rounded 1c", serif;
    font-weight: 900;
    text-indent: 1em;
    margin: 40px 0 20px;
    padding: 10px 0;
}

h2 { background-color: rgb(248, 204, 213); }
h3 { background-color: rgb(244, 180, 148); }

p {
    padding-top: 10px;
    text-indent: 1em;
    margin-left: 50px;
    margin-right: 50px;
    font-size: 25px;
    line-height: 1.6;
}

/* --- スケジュール表 --- */
.schedule-container {
    width: 90%;
    max-width: 600px;
    margin: 20px auto;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid #e0e7ff;
    background-color: #fff;
}

.schedule-table th, .schedule-table td {
    border: 1px solid #e0e7ff;
    padding: 12px 8px;
    text-align: center;
}

.schedule-table th {
    background-color: #f0f4ff;
    font-size: 1.2em;
    color: #555;
}

.time-slot {
    background-color: #fafbff;
    font-size: 1.5em;
    font-weight: bold;
    color: #666;
}

.check-mark { color: #5c6ac4; font-size: 1.5em; }
.break-row { background-color: #f9f9f9; height: 35px; }

.notes-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
}

.schedule-notes {
    list-style: none;
    padding: 0;
    font-size: 1.2em;
    color: #444;
}

.schedule-notes li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 10px;
}

.schedule-notes li::before {
    content: "・";
    position: absolute;
    left: 0;
}

/* --- 料金プランカード --- */
.price-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1000px;
    margin: 30px auto;
}

.price-card {
    background: #fff;
    border: 3px solid #5c6ac4; /* 高木さんが選んだ青枠 */
    border-radius: 12px;
    padding: 20px;
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center; /* 中身を中央寄せ */
    justify-content: flex-start;
}

/* 一番上のメッセージボックス */
.style-example {
    background-color: #ffedca; /* 優しいオレンジ */
    border-radius: 8px;
    padding: 12px 10px;
    font-size: 0.95em;
    font-weight: bold; /* メッセージなので少し太めに */
    color: #444;
    line-height: 1.5;
    margin-bottom: 15px;
    width: 100%;
    text-align: center;
    text-indent: 0; /* インデントをリセット */
}

.price-card h4 {
    font-size: 1.4em;
    margin: 5px 0;
    color: #333;
}

.price-card .amount {
    font-size: 2em;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

/* 週○回などの詳細テキスト */
.pace-detail {
    width: 100%;
    text-align: center;    /* 文字を中央へ */
    text-indent: 0;        /* 【重要】1文字下げを完全に消す */
    margin: 15px 0 0 0;    /* 上の金額との間隔 */
    padding: 0;            /* 余計な余白をカット */
    font-size: 1.1em;      /* 画像に合わせて少し大きくしてもいいかも */
    line-height: 1.5;      /* 行間を整える */
}

/* --- コミコミバナー --- */
.all-inclusive-banner {
    background: #fff;
    border: 5px solid #f4b494;
    border-radius: 15px;
    padding: 10px 10px;
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
}

.all-inclusive-banner h3 {
    background: none;
    color: #e63946;
    font-size: 3.0em;
    text-indent: 0;
    margin-bottom: 10px;
}

.main-message {
    font-size: 1.3em;
    color: #333;
    text-indent: 0;
    margin: 0 auto 20px;
}

.main-message strong {
    background: linear-gradient(transparent 70%, #fff9c4 70%);
}

.summary-box {

    padding: 15px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.summary-box p { font-size: 1rem; text-indent: 0; margin: 0; }

.guide-box {
    max-width: 850px;
    margin: 50px auto;
    padding: 35px;
    background-color: #fffaf5;
    border: 2px solid #f4b494;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(244, 180, 148, 0.1);
}

.guide-box h3 {
    font-size: 2.0em;
    color: #333;
    margin: 0 0 10px 0;
    padding-bottom: 5px;
    border-bottom: 2px dashed #f4b494;
    background-color: transparent;
    display: inline-block;
}

.guide-box p {
    font-size: 1.1em;
    line-height: 1.8;
    margin: 0 0 10px 0;
    color: #444;
}

.guide-box strong {
    margin-left: -1rem;
}


.small-note {
    display: block;
    font-size: 0.9em; /* 少しだけ大きくして読みやすく */
    color: #555;
    margin-top: 10px;
    line-height: 1.7;
    text-indent: 0;
}

/* 箇条書きの部分を少し強調 */
.small-note strong {
    color: #333;
}

.plan-change-msg {
    max-width: 850px;
    margin: 30px auto; /* guide-boxとの間隔 */
     /* 中央に寄せてメッセージ感を出す */
}

.plan-change-msg p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #000000;
    text-indent: 0;
}

.plan-change-msg strong {
    color: #000000;
    display: block;
    margin-bottom: 5px;
}

.plan-change-msg span {
    font-size: 1.0em;
    color: #000000;
    display: block;
    margin-top: 5px;
}

/* --- ご利用の流れ --- */
.chart { border-top: 5px dashed rgb(248, 202, 142); margin-top: 50px; }
.chart2 { padding: 0; list-style: none; }
.chart2 li {
    background-color: rgb(252, 226, 192);
    font-size: 30px;
    font-weight: bold;
    padding: 10px 40px;
    margin-top: 30px;
}

/* --- レスポンシブ設計 --- */
@media (max-width: 920px) {
    h1 { padding-top: 90px; font-size: 35px; }
}

@media (max-width: 750px) {
    h2, h3, h5 { font-size: 28px; text-indent: 0.5em; }
    p { font-size: 18px; margin-left: 20px; margin-right: 20px; }
    .price-card { width: 90%; max-width: 350px; }
    .chart2 li { font-size: 22px; }
}

@media (max-width: 480px) {
    .schedule-table th, .schedule-table td { font-size: 0.85em; padding: 8px 4px; }
    .all-inclusive-banner h3 { font-size: 1.6em; }
    .main-message { font-size: 1.1em; }
}

/* 改行制御 */
@media (min-width: 601px) { .pc-only { display: block; } }
@media (max-width: 600px) { .pc-only { display: none; } }