@charset "UTF-8";

/* 全体の設定：パステルカラーと優しいフォント */
.experience-page-wrapper {
    background-color: #FFFDF5; /* クリーム色 */
    color: #5D5D5D;
    font-family: "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Rounded Mplus 1c", sans-serif; /* 丸ゴシック系推奨 */
    padding-bottom: 60px;
}

/* 共通：セクションタイトル */
.section-title {
    text-align: center;
    font-size: 1.8rem;
    color: #FF8B94; /* パステルレッド */
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #FFAAA5; /* 薄い赤 */
    border-radius: 2px;
    margin: 10px auto 0;
    border-bottom: 2px solid #fff; /* 破線でステッチ風 */
}

/* ①ファーストビュー */
.hero-section {
    background: linear-gradient(180deg, #FFDAC1 0%, #FFFDF5 100%);
    text-align: center;
    padding: 60px 20px;
    border-bottom-left-radius: 50% 20px;
    border-bottom-right-radius: 50% 20px;
}

.target-badge {
    background-color: #fff;
    color: #FF8B94;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(255, 139, 148, 0.2);
}

.hero-title {
    font-size: 2.5rem;
    color: #5D5D5D;
    line-height: 1.4;
    margin-bottom: 20px;
    text-shadow: 2px 2px 0 #fff;
}

.hero-sub {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-illustration {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

/* ②特徴 */
.features-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    width: 280px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 3px solid #fff;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card.blue { border-color: #BAE1FF; }
.feature-card.green { border-color: #E2F0CB; }

.icon-circle {
    width: 70px;
    height: 70px;
    background-color: #FFB7B2;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}
.icon-circle.blue { background-color: #BAE1FF; }
.icon-circle.green { background-color: #E2F0CB; }

.feature-card h3 {
    color: #5D5D5D;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* ③年間テーマ */
.schedule-section {
    padding: 60px 20px;
    background-color: #F0F8FF; /* 薄い水色背景 */
    border-radius: 30px;
    margin: 20px;
}

.section-desc {
    text-align: center;
    margin-bottom: 40px;
}

.theme-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.theme-item {
    display: flex;
    align-items: center;
    background: #fff;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.month-label {
    background-color: #FFDAC1;
    color: #fff;
    font-weight: bold;
    padding: 10px;
    border-radius: 10px;
    width: 80px;
    text-align: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.theme-content {
    display: flex;
    align-items: center;
    width: 100%;
}

.theme-icon {
    font-size: 1.5rem;
    color: #FFB7B2;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.theme-text h4 {
    margin: 0 0 5px;
    color: #FF8B94;
}

.theme-text p {
    margin: 0;
    font-size: 0.95rem;
}

/* ④レッスンの様子 */
.atmosphere-section {
    padding: 60px 20px;
    text-align: center;
}

.atmosphere-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.photo-frame {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transform: rotate(-2deg);
    width: 100%;
    max-width: 280px;
    transition: all 0.3s ease;
}

.photo-frame:hover {
    transform: translateY(-5px) rotate(-2deg);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.photo-frame:nth-child(2) {
    transform: rotate(2deg);
}
.photo-frame:nth-child(2):hover {
    transform: translateY(-5px) rotate(2deg);
}
.photo-frame:nth-child(3) {
    transform: rotate(-1deg);
}
.photo-frame:nth-child(3):hover {
    transform: translateY(-5px) rotate(-1deg);
}
.photo-frame img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    display: block;
}
.photo-frame p {
    margin: 0;
    padding: 15px 5px;
    font-weight: bold;
    color: #5D5D5D;
    font-size: 0.95rem;
}

.atmosphere-text {
    max-width: 600px;
    margin: 30px auto 0;
    line-height: 2;
}

/* ⑤申込ボタン */
.cta-section-custom {
    padding: 40px 20px 80px;
    text-align: center;
}

.cta-box {
    background-color: #fff;
    border: 4px dashed #FFB7B2;
    border-radius: 30px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.cta-box h2 {
    color: #FF8B94;
    margin-bottom: 15px;
}

.btn-primary-custom {
    display: inline-block;
    background-color: #FF9AA2; /* パステルピンク */
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    margin-top: 20px;
    box-shadow: 0 5px 0 #FF6F7D; /* 立体的な影 */
    transition: all 0.2s;
}

.btn-primary-custom:hover {
    transform: translateY(3px);
    box-shadow: 0 2px 0 #FF6F7D;
    color: #fff;
}

.cta-note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 15px;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-sub {
        font-size: 0.95rem;
    }
    .features-container {
        flex-direction: column;
        align-items: center;
    }
    .feature-card {
        width: 100%;
        max-width: 340px;
    }
    .atmosphere-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .photo-frame,
    .photo-frame:nth-child(2),
    .photo-frame:nth-child(3) {
        transform: none; /* スマホでは傾きをなくす */
        width: 90%;
        max-width: 340px;
    }
    .theme-item {
        flex-direction: column;
        text-align: center;
    }
    .month-label {
        margin: 0 auto 15px;
    }
    .theme-content {
        flex-direction: column;
    }
    .theme-icon {
        margin: 0 0 10px 0;
    }
    .cta-box {
        padding: 30px 20px;
    }
    .btn-primary-custom {
        width: 100%;
        box-sizing: border-box;
    }
}