/* 全体のリセットと共通設定 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    background-color: #f4f7f9;
    color: #333;
    line-height: 1.6;
}

/* ヘッダー */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    height: 40px;
    object-fit: contain;
}

/* メインコンテンツ枠 */
.main-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

/* セクション共通（カード風デザイン） */
.card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

h2 {
    font-size: 1.5rem;
    color: #005bac;
    margin-bottom: 20px;
    border-left: 5px solid #005bac;
    padding-left: 10px;
}

h3 {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 10px;
}

.summary-text {
    font-size: 0.95rem;
    text-align: justify;
}

.divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 25px 0;
}

/* 日程・時間 */
.schedule-list {
    list-style-type: none;
    margin-bottom: 8px;
}

.schedule-list li {
    position: relative;
    padding-left: 20px;
    font-weight: bold;
    font-size: 1.05rem;
    color: #222;
}

.schedule-list li::before {
    content: "■";
    position: absolute;
    left: 0;
    color: #005bac;
}

.note {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 15px;
}
.note_a {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: -15px;
}
.duration-text {
    font-weight: bold;
    color: #333;
}

.mt-20 {
    margin-top: 20px;
}

/* 電話番号エリア */
.phone-area {
    background-color: #f0f7ff;
    border: 1px solid #d0e3f5;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 25px;
}

.phone-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 5px;
    font-weight: bold;
}

.phone-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #005bac;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: color 0.2s;
}

.phone-number:hover {
    color: #004480;
    text-decoration: underline;
}

.phone-icon {
    width: 24px;
    height: 24px;
}

/* フォームラップ */
.form-wrapper {
    margin-top: 20px;
    min-height: 400px; /* 読み込み時のガタつき防止 */
}

/* フッター */
.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 40px 20px;
    margin-top: 60px;
}

.footer-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: color 0.2s;
    display: inline-block;
}

.footer-links a:hover {
    color: #3498db;
    text-decoration: underline;
}

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

/* レスポンシブ（スマホ対応） */
@mixin -screen and (max-width: 600px) {
    .main-container {
        margin: 20px auto;
    }
    .card {
        padding: 10px;
    }
    .footer-links a {
        display: block;
        margin: 10px 0;
    }
}