/* ========================================
   リセット・基本設定
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

:root {
    --primary-color: #1e3a8a;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #ffffff;
    --bg-light: #f9fafb;
    --bg-gray: #f3f4f6;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--bg-color);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========================================
   コンテナ
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ========================================
   セクション共通
   ======================================== */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.3;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* ========================================
   ヘッダー
   ======================================== */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-title {
    font-size: 1.3rem;
    font-weight: 900;
    color: white;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

/* 旧.logoスタイルは.logo-titleに統合 */
.logo {
    font-size: 1.3rem;
    font-weight: 900;
    color: white;
    text-align: center;
    line-height: 1.5;
}

/* ========================================
   ボタン
   ======================================== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    transition: opacity 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ea580c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.3rem;
}

.btn-submit {
    width: 100%;
    margin-top: 30px;
}

/* ========================================
   ヒーローセクション
   ======================================== */
.hero {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
    padding: 60px 0 80px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* 左側：メッセージエリア */
.hero-left {
    padding-top: 20px;
}

.hero-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 25px;
}

.hero-title {
    margin-bottom: 30px;
    line-height: 1.3;
}

.hero-catch {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.hero-main {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.4;
}

.text-highlight {
    color: var(--secondary-color);
    position: relative;
}

.hero-problems {
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    border-left: 4px solid var(--danger-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.problem-item {
    font-size: 1.15rem;
    color: var(--text-color);
    line-height: 1.9;
    margin-bottom: 8px;
    font-weight: 500;
}

.problem-item:last-child {
    margin-bottom: 0;
}

.hero-solution {
    font-size: 1.3rem;
    color: var(--text-color);
    line-height: 1.9;
    font-weight: 500;
}

.hero-solution strong {
    color: var(--primary-color);
    font-weight: 900;
    background: linear-gradient(transparent 60%, rgba(245, 158, 11, 0.3) 60%);
}

/* 右側：画像とカードエリア */
.hero-right {
    position: relative;
}

.hero-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: -50px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    z-index: 10;
}

.overlay-main {
    font-size: 4.5rem;
    font-weight: 900;
    color: white;
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.5),
        -1px -1px 0 rgba(0, 0, 0, 0.3),
        1px -1px 0 rgba(0, 0, 0, 0.3),
        -1px 1px 0 rgba(0, 0, 0, 0.3),
        1px 1px 0 rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.overlay-sub {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.5),
        -1px -1px 0 rgba(0, 0, 0, 0.3),
        1px -1px 0 rgba(0, 0, 0, 0.3),
        -1px 1px 0 rgba(0, 0, 0, 0.3),
        1px 1px 0 rgba(0, 0, 0, 0.3);
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.hero-card {
    background: white;
    padding: 90px 30px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.card-title {
    text-align: center;
    margin-bottom: 25px;
}

.card-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 8px;
}

.card-name {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.3;
}

.card-info {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 600;
}

.info-row i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.card-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ea580c 100%);
    color: white;
    padding: 22px 40px;
    border-radius: 15px;
    font-weight: 900;
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.5;
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.4);
    transition: opacity 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    opacity: 0.9;
}

.btn-line {
    background: #06C755;
    color: white;
    padding: 18px 35px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.5;
    box-shadow: 0 6px 25px rgba(6, 199, 85, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.btn-line:hover {
    background: #05b34c;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(6, 199, 85, 0.5);
}

.btn-line i {
    font-size: 1.5rem;
}

.price-box {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--primary-color);
}

.price-label {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 8px;
}

.price-main {
    margin-bottom: 5px;
}

.price-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
}

.price-tax {
    font-size: 1rem;
    color: var(--text-light);
    margin-left: 5px;
}

.price-with-tax {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 5px;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ========================================
   お悩みセクション
   ======================================== */
.problems {
    background: var(--bg-light);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.problem-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.problem-card:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--danger-color) 0%, #dc2626 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.problem-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
    line-height: 1.5;
}

.problem-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.problems-solution {
    text-align: center;
    margin-top: 50px;
}

.problems-solution p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.problems-solution h3 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   特徴セクション
   ======================================== */
.features {
    background: white;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-item-right {
    flex-direction: row-reverse;
}

.feature-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.feature-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ========================================
   開催スケジュールセクション（カレンダー）
   ======================================== */
.event-schedule {
    background: white;
}

.calendar-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.calendar-header {
    text-align: center;
    margin-bottom: 30px;
}

.calendar-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.calendar {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 15px;
}

.weekday {
    text-align: center;
    font-weight: 700;
    color: var(--primary-color);
    padding: 10px 0;
    font-size: 1rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 600;
    color: var(--text-light);
    background: var(--bg-light);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.calendar-day.empty {
    background: transparent;
}

.calendar-day.event-day {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%);
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    cursor: pointer;
}

.calendar-day.event-day:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.calendar-day.final-day {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f59e0b 100%);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.calendar-day.final-day:hover {
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.day-number {
    font-size: 1.2rem;
    font-weight: 900;
}

.day-label {
    font-size: 0.65rem;
    font-weight: 700;
    margin-top: 3px;
    line-height: 1.2;
    text-align: center;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-color {
    width: 30px;
    height: 30px;
    border-radius: 8px;
}

.legend-color.event-color {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%);
}

.legend-color.rest-color {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
}

.legend-item span {
    font-weight: 600;
    color: var(--text-color);
}

.calendar-note {
    background: #fff4e6;
    border-left: 5px solid var(--secondary-color);
    padding: 20px 25px;
    border-radius: 10px;
}

.calendar-note p {
    margin: 8px 0;
    color: var(--text-color);
    line-height: 1.8;
}

.calendar-note p:first-child {
    margin-top: 0;
}

.calendar-note p:last-child {
    margin-bottom: 0;
}

.calendar-note i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.calendar-note strong {
    color: var(--primary-color);
}

/* ========================================
   1日のスケジュールセクション
   ======================================== */
.schedule {
    background: var(--bg-light);
}

.schedule-table-wrapper {
    max-width: 1000px;
    margin: 0 auto 40px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.schedule-table {
    width: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-collapse: collapse;
}

.schedule-table thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.schedule-table th {
    padding: 20px 15px;
    font-weight: 700;
    text-align: left;
    font-size: 1.1rem;
}

.schedule-table .time-col {
    width: 150px;
    white-space: nowrap;
}

.schedule-table .content-col {
    width: 200px;
}

.schedule-table .detail-col {
    width: auto;
}

.schedule-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.schedule-table tbody tr:last-child {
    border-bottom: none;
}

.schedule-table tbody tr:hover {
    background: var(--bg-light);
}

.schedule-table td {
    padding: 20px 15px;
    vertical-align: middle;
}

.schedule-table .time-col {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.05rem;
}

.schedule-table .duration {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 3px;
}

.schedule-table .content-col {
    font-size: 1rem;
}

.schedule-table .content-col i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 1.1rem;
}

.schedule-table .detail-col {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.schedule-table .highlight-row {
    background: rgba(59, 130, 246, 0.05);
}

.schedule-table .break-row {
    background: rgba(245, 158, 11, 0.05);
}

.schedule-table .break-row .content-col i {
    color: var(--secondary-color);
}

.schedule-summary {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 30px;
    background: white;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-color);
}

.summary-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* ========================================
   参加者の声セクション
   ======================================== */
.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.testimonial-rating {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-rating i {
    margin-right: 3px;
}

.testimonial-text {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1rem;
}

/* ========================================
   講師紹介セクション
   ======================================== */
.instructors {
    background: var(--bg-light);
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.instructor-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instructor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.instructor-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
}

.instructor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.instructor-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%);
}

.instructor-photo-placeholder i {
    font-size: 5rem;
    color: white;
}

.instructor-info {
    margin-top: 20px;
}

.instructor-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.instructor-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ========================================
   料金比較セクション
   ======================================== */
.price-comparison {
    background: white;
}

.comparison-table-wrapper {
    max-width: 900px;
    margin: 0 auto 30px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-collapse: collapse;
}

.comparison-table thead {
    background: var(--bg-light);
}

.comparison-table th {
    padding: 25px 20px;
    font-weight: 700;
    text-align: center;
    font-size: 1.1rem;
    border-bottom: 3px solid var(--border-color);
}

.comparison-table .empty-cell {
    width: 25%;
    background: transparent;
    border: none;
}

.comparison-table .recommend-col {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    width: 40%;
}

.recommend-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 20px;
    text-align: center;
    vertical-align: middle;
}

.comparison-table .label-col {
    font-weight: 700;
    color: var(--text-color);
    text-align: left;
    background: var(--bg-light);
    font-size: 0.95rem;
}

.comparison-table .highlight-col {
    background: rgba(59, 130, 246, 0.05);
    font-weight: 700;
    color: var(--primary-color);
}

.comparison-table .price-row {
    background: var(--bg-light);
}

.comparison-table .calc-row {
    background: rgba(245, 158, 11, 0.1);
}

.price-large {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.price-with-tax-small {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    display: block;
    margin-top: 3px;
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
}

.price-highlight {
    color: var(--secondary-color);
    font-size: 1.6rem;
}

.check-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-right: 5px;
}

.times-icon {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-right: 5px;
}

.comparison-note {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
}

.comparison-note p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
}

.comparison-note i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* ========================================
   料金セクション
   ======================================== */
.pricing {
    background: var(--bg-light);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.pricing-card {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--border-color);
    position: relative;
}

.pricing-card-early {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.2);
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ea580c 100%);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 30px;
}

.pricing-badge-normal {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.pricing-amount {
    margin-bottom: 10px;
}

.pricing-with-tax {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    margin: 0 0 20px 0;
}

.pricing-yen {
    font-size: 2rem;
    vertical-align: top;
    color: var(--text-color);
}

.pricing-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
}

.pricing-tax {
    font-size: 1.2rem;
    color: var(--text-light);
}

.pricing-period {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.pricing-period-title {
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5px;
}

.pricing-date {
    color: var(--text-light);
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--accent-color);
    margin-right: 10px;
}

/* 参加者特典セクション */
.bonus-section {
    margin: 60px 0;
    position: relative;
}

.bonus-card {
    background: linear-gradient(145deg, #fffbf0 0%, #fff8e7 50%, #ffffff 100%);
    border: 4px solid transparent;
    border-image: linear-gradient(135deg, var(--secondary-color) 0%, #fbbf24 50%, var(--secondary-color) 100%);
    border-image-slice: 1;
    border-radius: 30px;
    padding: 60px 50px;
    text-align: center;
    box-shadow: 
        0 15px 50px rgba(245, 158, 11, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.bonus-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 30px;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-badge i {
    margin-right: 10px;
    font-size: 1.4rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.bonus-title {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0c4a6e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.bonus-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 50px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.bonus-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    padding: 15px;
}

.bonus-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.bonus-img-wrapper:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 
        0 20px 50px rgba(245, 158, 11, 0.3),
        0 0 0 2px var(--secondary-color);
}

.bonus-img-wrapper:hover::before {
    opacity: 1;
}

.bonus-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    position: relative;
    z-index: 0;
}

.bonus-features {
    list-style: none;
    text-align: left;
    max-width: 850px;
    margin: 50px auto 0;
    display: grid;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.bonus-features li {
    padding: 20px 25px;
    background: white;
    border-radius: 15px;
    border-left: 5px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    font-size: 1.15rem;
    line-height: 1.8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, #fbbf24 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.bonus-features li:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.2);
}

.bonus-features li:hover::before {
    transform: scaleY(1);
}

.bonus-features i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 1.4rem;
    vertical-align: middle;
}

.bonus-features strong {
    color: var(--primary-color);
    font-weight: 800;
}

.bonus-note {
    margin-top: 35px;
    font-size: 1rem;
    color: var(--text-light);
    background: rgba(251, 191, 36, 0.1);
    padding: 15px 25px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    position: relative;
    z-index: 1;
}

.pricing-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.info-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.info-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-box h3 i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.info-box p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   サービス内容セクション
   ======================================== */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
}

.service-detail {
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 500;
}

/* ========================================
   キャンセル規定セクション
   ======================================== */
.cancellation {
    background: white;
}

.cancellation-content {
    max-width: 800px;
    margin: 0 auto;
}

.cancellation-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.cancellation-table {
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.cancellation-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    border-bottom: 1px solid var(--border-color);
}

.cancellation-row:last-child {
    border-bottom: none;
}

.cancellation-period {
    font-weight: 700;
    color: var(--text-color);
    font-size: 1.2rem;
}

.cancellation-fee {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--danger-color);
}

/* ========================================
   最後のメッセージセクション
   ======================================== */
.final-message {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 80px 0;
}

.final-message-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fefbf3;
    border: 12px solid #8b3a3a;
    border-radius: 8px;
    padding: 60px 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.final-message-card::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid #d4af37;
    border-radius: 4px;
    pointer-events: none;
}

.final-message-card::after {
    content: '🏆';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    background: #8b3a3a;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.final-message-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 3px double #d4af37;
}

.final-message-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #8b3a3a;
    line-height: 1.5;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.final-message-content {
    text-align: left;
    line-height: 2;
    margin-bottom: 40px;
}

.final-message-content p {
    margin-bottom: 1.5em;
    color: #2d2d2d;
    font-size: 1.05rem;
    font-weight: 400;
}

.final-message-highlight {
    background: linear-gradient(transparent 60%, #fff4b3 60%);
    padding: 10px 5px;
    font-weight: 700 !important;
    color: #1e3a8a !important;
    font-size: 1.1rem !important;
}

.final-message-closing {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #8b3a3a !important;
    text-align: center;
    margin-top: 30px !important;
    margin-bottom: 0 !important;
}

.final-message-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 3px double #d4af37;
}

.final-message-cta .btn-large {
    font-size: 1.3rem;
    padding: 20px 50px;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.final-message-cta .btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
}

/* ========================================
   お申し込み後の流れセクション
   ======================================== */
.application-flow {
    background: white;
}

.flow-steps {
    max-width: 700px;
    margin: 0 auto 40px;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: var(--bg-light);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.flow-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.flow-content {
    flex: 1;
}

.flow-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.flow-content p {
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
}

.flow-warning {
    color: var(--danger-color);
    display: inline-block;
    margin-top: 8px;
}

.flow-arrow {
    text-align: center;
    margin: 20px 0;
}

.flow-arrow i {
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.flow-notice {
    max-width: 700px;
    margin: 0 auto;
    background: #fff4e6;
    border-left: 5px solid var(--secondary-color);
    padding: 25px 30px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.flow-notice i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.flow-notice p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.8;
}

.flow-notice strong {
    color: var(--primary-color);
}

/* ========================================
   お申し込みフォームセクション
   ======================================== */
.application {
    background: var(--bg-light);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 1rem;
}

.required {
    color: var(--danger-color);
    font-size: 0.85rem;
    margin-left: 5px;
}

.optional {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-left: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Noto Sans JP', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group label {
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
}

/* ========================================
   よくある質問セクション
   ======================================== */
.faq {
    background: white;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(30, 58, 138, 0.05);
}

.faq-question i:first-child {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 15px;
}

.faq-question h3 {
    flex: 1;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
}

.faq-toggle {
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px 75px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   フッター
   ======================================== */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-info h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.footer-info p {
    opacity: 0.8;
}

.footer-keywords {
    font-size: 0.9rem;
    margin-top: 8px;
    opacity: 0.7 !important;
    font-weight: 400;
}

.footer-contact p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-line-btn {
    margin: 15px 0 !important;
}

.line-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #06C755;
    color: white !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
}

.line-button:hover {
    background: #05b34c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4);
}

.line-button i {
    font-size: 1.5rem;
}

.footer-email,
.footer-hours {
    font-size: 0.95rem;
    margin: 8px 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
}

/* ========================================
   トップに戻るボタン
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top:hover {
    opacity: 0.8;
}

.scroll-top.visible {
    display: flex;
}

/* ========================================
   レスポンシブデザイン
   ======================================== */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    section {
        padding: 50px 0;
    }

    /* ヘッダー */
    .logo-image {
        height: 50px;
    }

    .logo-title {
        font-size: 1rem;
        line-height: 1.6;
    }

    .logo {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .container {
        padding: 0 16px;
    }

    /* ヒーロー */
    .hero {
        padding: 40px 0 50px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-left {
        order: 2;
        padding-top: 0;
    }
    
    .hero-right {
        order: 1;
    }

    .hero-badge {
        font-size: 0.9rem;
        padding: 8px 20px;
        margin-bottom: 20px;
    }

    .hero-catch {
        font-size: 1.6rem;
    }

    .hero-main {
        font-size: 2.2rem;
    }

    .hero-problems {
        padding: 20px 20px;
    }

    .problem-item {
        font-size: 1.05rem;
    }

    .hero-solution {
        font-size: 1.15rem;
    }
    
    .hero-image-wrapper {
        margin-bottom: -40px;
    }
    
    .overlay-main {
        font-size: 3.5rem;
    }
    
    .overlay-sub {
        font-size: 2rem;
    }
    
    .hero-card {
        padding: 70px 25px 25px;
    }
    
    .card-name {
        font-size: 1.7rem;
    }
    
    .card-info {
        padding: 15px;
    }
    
    .info-row {
        font-size: 0.9rem;
    }
    
    .btn-cta {
        padding: 18px 30px;
        font-size: 1.25rem;
    }

    .btn-line {
        padding: 15px 28px;
        font-size: 1.1rem;
    }

    .btn-line i {
        font-size: 1.3rem;
    }
    
    .price-num {
        font-size: 2.5rem;
    }

    /* お悩み */
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .problem-card {
        padding: 35px 25px;
    }
    
    .problem-card h3 {
        font-size: 1.3rem;
        line-height: 1.6;
    }

    .problems-solution h3 {
        font-size: 1.5rem;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    .problems-solution p {
        font-size: 1.15rem;
        padding: 0 10px;
    }

    /* 特徴 */
    .feature-item,
    .feature-item-right {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .feature-content h3 {
        font-size: 1.35rem;
        line-height: 1.5;
    }
    
    .feature-content p {
        font-size: 1rem;
    }

    /* 開催スケジュール（カレンダー） */
    .calendar {
        padding: 20px;
    }

    .calendar-header h3 {
        font-size: 1.5rem;
    }

    .weekday {
        font-size: 0.9rem;
        padding: 8px 0;
    }

    .calendar-days {
        gap: 6px;
    }

    .calendar-day {
        font-size: 1rem;
    }

    .day-number {
        font-size: 1.1rem;
    }

    .day-label {
        font-size: 0.6rem;
    }

    .calendar-legend {
        gap: 20px;
    }

    .legend-color {
        width: 25px;
        height: 25px;
    }

    .legend-item span {
        font-size: 0.95rem;
    }

    .calendar-note {
        padding: 18px 20px;
    }

    .calendar-note p {
        font-size: 0.95rem;
    }

    /* 1日のスケジュール */
    .schedule-table-wrapper {
        margin: 0 -16px 30px;
        border-radius: 0;
    }
    
    .schedule-table {
        border-radius: 0;
    }
    
    .schedule-table th {
        padding: 15px 10px;
        font-size: 0.95rem;
    }
    
    .schedule-table td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
    
    .schedule-table .time-col {
        width: 100px;
        font-size: 0.9rem;
    }
    
    .schedule-table .content-col {
        width: 140px;
        font-size: 0.9rem;
    }
    
    .schedule-table .detail-col {
        display: none;
    }
    
    .schedule-summary {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .summary-item {
        justify-content: center;
        font-size: 0.95rem;
    }

    /* 参加者の声 */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .testimonial-text {
        font-size: 0.98rem;
        line-height: 1.85;
    }

    /* 講師紹介 */
    .instructors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .instructor-card {
        padding: 40px 25px;
    }

    .instructor-photo {
        width: 180px;
        height: 180px;
        margin-bottom: 20px;
    }

    .instructor-photo-placeholder i {
        font-size: 4rem;
    }

    .instructor-name {
        font-size: 1.6rem;
    }

    .instructor-card p {
        font-size: 1rem;
    }

    /* お申し込み後の流れ */
    .flow-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
    }

    .flow-number {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .flow-content h3 {
        font-size: 1.25rem;
    }

    .flow-content p {
        font-size: 0.95rem;
    }

    .flow-arrow i {
        font-size: 2rem;
    }

    .flow-notice {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .flow-notice i {
        font-size: 1.5rem;
    }

    /* 料金 */
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-card {
        padding: 40px 25px;
    }

    /* 参加者特典（タブレット） */
    .bonus-card {
        padding: 50px 30px;
    }

    .bonus-badge {
        font-size: 1.1rem;
        padding: 12px 30px;
    }

    .bonus-title {
        font-size: 1.7rem;
        margin-bottom: 35px;
    }

    .bonus-images {
        gap: 30px;
        margin: 40px 0;
    }

    .bonus-img-wrapper {
        padding: 12px;
    }

    .bonus-features {
        gap: 15px;
        margin-top: 40px;
    }

    .bonus-features li {
        font-size: 1.05rem;
        padding: 18px 20px;
    }

    .bonus-features i {
        font-size: 1.3rem;
    }

    .bonus-note {
        font-size: 0.95rem;
        padding: 12px 20px;
    }

    /* 料金比較 */
    .comparison-table-wrapper {
        margin: 0 -16px 25px;
        border-radius: 0;
    }
    
    .comparison-table {
        border-radius: 0;
        font-size: 0.85rem;
    }
    
    .comparison-table th {
        padding: 15px 8px;
        font-size: 0.9rem;
    }
    
    .comparison-table td {
        padding: 12px 8px;
        font-size: 0.85rem;
    }
    
    .comparison-table .empty-cell {
        width: 30%;
    }
    
    .comparison-table .recommend-col {
        width: 35%;
    }
    
    .price-large {
        font-size: 1.2rem;
    }
    
    .price-highlight {
        font-size: 1.3rem;
    }
    
    .comparison-note {
        padding: 20px;
        margin: 0 0;
    }
    
    .comparison-note p {
        font-size: 0.95rem;
    }
    
    .pricing-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-box {
        padding: 25px 20px;
    }
    
    .info-box h3 {
        font-size: 1.2rem;
        line-height: 1.5;
    }

    /* サービス */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-item {
        padding: 25px 20px;
    }
    
    .service-item h3 {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* キャンセル規定 */
    .cancellation-row {
        padding: 20px 15px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cancellation-period {
        font-size: 1rem;
        flex: 1 1 auto;
    }

    .cancellation-fee {
        font-size: 1.5rem;
        flex: 0 0 auto;
    }

    /* 最後のメッセージ */
    .final-message {
        padding: 60px 0;
    }

    .final-message-card {
        padding: 40px 25px;
        border-width: 8px;
    }

    .final-message-card::after {
        font-size: 2.5rem;
        width: 60px;
        height: 60px;
        top: -25px;
    }

    .final-message-title {
        font-size: 1.6rem;
    }

    .final-message-content p {
        font-size: 0.95rem;
    }

    .final-message-highlight {
        font-size: 1rem !important;
    }

    .final-message-closing {
        font-size: 1.05rem !important;
    }

    .final-message-cta .btn-large {
        font-size: 1.1rem;
        padding: 16px 35px;
    }

    /* 参加者特典（スマホ） */
    .bonus-card {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .bonus-badge {
        font-size: 0.95rem;
        padding: 10px 20px;
        margin-bottom: 25px;
    }

    .bonus-title {
        font-size: 1.4rem;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .bonus-images {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 35px 0;
    }

    .bonus-img-wrapper {
        padding: 10px;
    }

    .bonus-features {
        gap: 15px;
        margin-top: 35px;
    }

    .bonus-features li {
        font-size: 0.95rem;
        padding: 15px 18px;
        border-left-width: 4px;
    }

    .bonus-features i {
        font-size: 1.2rem;
        margin-right: 12px;
    }

    .bonus-note {
        font-size: 0.9rem;
        padding: 12px 18px;
        margin-top: 30px;
    }

    /* フォーム */
    .form-container {
        padding: 30px 20px;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }

    /* FAQ */
    .faq-question {
        padding: 20px 15px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .faq-answer p {
        padding: 0 15px 20px 15px;
        font-size: 0.95rem;
        line-height: 1.8;
    }

    /* フッター */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-info h3 {
        font-size: 1.3rem;
    }
    
    .footer-contact p {
        font-size: 0.95rem;
    }

    .line-button {
        font-size: 1rem;
        padding: 10px 25px;
    }

    .line-button i {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    /* ヘッダー（小型スマホ） */
    .logo-image {
        height: 40px;
    }

    .logo-title {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .logo {
        font-size: 0.85rem;
        line-height: 1.7;
    }
    
    .hero {
        padding: 30px 0 40px;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 7px 18px;
    }
    
    .hero-catch {
        font-size: 1.4rem;
    }
    
    .hero-main {
        font-size: 1.9rem;
    }
    
    .hero-problems {
        padding: 18px 18px;
    }
    
    .problem-item {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .hero-solution {
        font-size: 1.05rem;
    }
    
    .hero-image-wrapper {
        margin-bottom: -35px;
    }
    
    .overlay-main {
        font-size: 2.8rem;
    }
    
    .overlay-sub {
        font-size: 1.6rem;
    }
    
    .hero-card {
        padding: 60px 20px 20px;
    }
    
    .card-label {
        font-size: 0.85rem;
    }
    
    .card-name {
        font-size: 1.5rem;
    }
    
    .card-info {
        padding: 12px;
    }
    
    .info-row {
        font-size: 0.85rem;
        padding: 6px 0;
    }
    
    .info-row i {
        font-size: 1.1rem;
    }
    
    .btn-cta {
        padding: 16px 25px;
        font-size: 1.15rem;
    }

    .btn-line {
        padding: 13px 22px;
        font-size: 1rem;
    }

    .btn-line i {
        font-size: 1.2rem;
    }
    
    .price-num {
        font-size: 2.2rem;
    }
    
    .price-tax {
        font-size: 0.9rem;
    }
    
    .price-note {
        font-size: 0.85rem;
    }

    .pricing-number {
        font-size: 2.8rem;
    }

    .btn {
        padding: 14px 25px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.4;
    }
    
    .problem-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-content h3 {
        font-size: 1.25rem;
    }
    
    /* 開催スケジュール（カレンダー・小型スマホ） */
    .calendar {
        padding: 15px;
    }

    .calendar-header h3 {
        font-size: 1.3rem;
    }

    .weekday {
        font-size: 0.75rem;
        padding: 6px 0;
    }

    .calendar-days {
        gap: 4px;
    }

    .calendar-day {
        font-size: 0.85rem;
        border-radius: 8px;
    }

    .day-number {
        font-size: 0.95rem;
    }

    .day-label {
        font-size: 0.5rem;
    }

    .calendar-legend {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .legend-color {
        width: 22px;
        height: 22px;
    }

    .legend-item span {
        font-size: 0.9rem;
    }

    .calendar-note {
        padding: 15px;
    }

    .calendar-note p {
        font-size: 0.9rem;
    }

    /* 1日のスケジュール（小型スマホ） */
    .schedule-table .time-col {
        width: 90px;
        font-size: 0.85rem;
    }
    
    .schedule-table .content-col {
        width: 130px;
    }
    
    .schedule-table .content-col strong {
        font-size: 0.85rem;
    }
    
    /* 比較表追加 */
    .comparison-table .label-col {
        font-size: 0.8rem;
    }
    
    .price-large {
        font-size: 1.1rem;
    }
    
    .price-highlight {
        font-size: 1.2rem;
    }

    /* 講師紹介（小型スマホ） */
    .instructor-photo {
        width: 150px;
        height: 150px;
        border-width: 4px;
    }

    .instructor-photo-placeholder i {
        font-size: 3.5rem;
    }

    .instructor-name {
        font-size: 1.4rem;
    }

    .instructor-card p {
        font-size: 0.95rem;
    }

    /* お申し込み後の流れ（小型スマホ） */
    .flow-step {
        padding: 25px 15px;
        gap: 15px;
    }

    .flow-number {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .flow-content h3 {
        font-size: 1.15rem;
    }

    .flow-content p {
        font-size: 0.9rem;
    }

    .flow-arrow {
        margin: 15px 0;
    }

    .flow-arrow i {
        font-size: 1.8rem;
    }

    .flow-notice {
        padding: 18px 15px;
    }

    .flow-notice i {
        font-size: 1.3rem;
    }

    .flow-notice p {
        font-size: 0.9rem;
    }
    
    /* 最後のメッセージ（小型スマホ） */
    .final-message {
        padding: 50px 0;
    }

    .final-message-card {
        padding: 30px 18px;
        border-width: 6px;
    }

    .final-message-card::after {
        font-size: 2rem;
        width: 50px;
        height: 50px;
        top: -20px;
    }

    .final-message-title {
        font-size: 1.4rem;
        line-height: 1.6;
    }

    .final-message-content p {
        font-size: 0.9rem;
        line-height: 1.9;
    }

    .final-message-highlight {
        font-size: 0.95rem !important;
        padding: 8px 3px;
    }

    .final-message-closing {
        font-size: 1rem !important;
    }

    .final-message-cta .btn-large {
        font-size: 1rem;
        padding: 14px 30px;
    }
}