/* 全体スタイル */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
}

.admission-flow-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 入塾の流れセクション */
.intro-section h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.intro-section p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.flow-steps h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.flow-step {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 5px solid #003366;
    border-radius: 5px;
}

.flow-step h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* 動画セクション */
.video-container {
    text-align: center;
    margin: 20px 0;
}

.video-container iframe {
    width: clamp(380px, 81vw, 650px); /* 動画サイズを画面幅に合わせる */
    height: clamp(250px, 50vw, 400px); /* 動画の高さも相対的に調整 */
}



/* 最後のステップ */
.final-step {
    text-align: center;
    margin-top: 40px;
}

.contact-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #003366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
}

.contact-btn:hover {
    background-color: #005599;
}


