* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background: #FFFFFF;
    color: #333;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Common Elements */
.section-label {
    font-size: 13px;
    font-weight: 700;
    color: #e63976;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.5;
    color: #1A1A1A;
}

.highlight {
    color: #e63976;
}

/* Header */
.header {
    padding: 20px 0;
    background: #FFFFFF;
}

.logo {
    width: 160px;
    height: auto;
}

/* Section 1: Hero */
.hero-section {
    padding: 60px 0 80px;
    background: #FFFFFF;
}

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

.hero-left {
    padding-right: 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #000;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    border: solid 2px #000;
}


.hero-title {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #1A1A1A;
}

.hero-title .label {
    font-size: 28px;
}

.hero-title .highlight {
    color: #e63976;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 23px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #00a5e3 0%, #00a5e3 100%);
    color: #FFFFFF;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 165, 227, 0.3);
    margin-bottom: 20px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 165, 227, 0.4);
}

.cta-button::after {
    content: '→';
    margin-left: 10px;
    font-size: 18px;
}

.disclaimer {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
}

.hero-right {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, rgba(230, 57, 118, 0.1) 0%, rgba(0, 165, 227, 0.1) 100%);
    padding: 20px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

/* Section 2: Problem */
.problem-section {
    padding: 60px 0;
    text-align: center;
    background: #F8F9FA;
}

.problem-section .section-label {
    margin-bottom: 20px;
}

.problem-section .section-title {
    margin-bottom: 30px;
}

.problem-cards {
    max-width: 900px;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problem-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: left;
}

.problem-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(230, 57, 118, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-icon svg {
    width: 24px;
    height: 24px;
    color: #e63976;
}

.problem-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    font-weight: 500;
}

.conclusion-box {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #00a5e3 0%, #00a5e3 100%);
    border-radius: 25px;
    padding: 50px 60px;
    position: relative;
    overflow: hidden;
}

.conclusion-box .highlight {
    color: #ffe100;
}
.conclusion-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(230, 57, 118, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.conclusion-content {
    position: relative;
    z-index: 1;
}

.conclusion-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    background: rgba(230, 57, 118, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.conclusion-icon svg {
    width: 30px;
    height: 30px;
    color: #e63976;
}

.conclusion-text {
    font-size: 20px;
    line-height: 1.8;
    color: #FFFFFF;
    font-weight: 500;
    text-align: center;
}

/* Section 3: Solution */
.solution-section {
    padding: 60px 0;
    text-align: center;
    background: #FFFFFF;
}

.solution-section .section-label {
    margin-bottom: 20px;
}

.solution-section .section-title {
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    font-weight: 500;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.feature-card {
    background: #F8F9FA;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon.blue svg {
    color: #00a5e3;
}

.feature-icon.teal svg {
    color: #00a5e3;
}

.feature-icon.purple svg {
    color: #e63976;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1A1A1A;
}

.feature-description {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.comparison-box {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #00a5e3 0%, #00a5e3 100%);
    border-radius: 25px;
    padding: 50px 60px;
    position: relative;
    overflow: hidden;
}

.comparison-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(0, 165, 227, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.comparison-content {
    position: relative;
    z-index: 1;
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.comparison-icon svg {
    width: 24px;
    height: 24px;
    color: #e63976;
}

.comparison-label {
    font-size: 14px;
    font-weight: 700;
    color: #e63976;
    letter-spacing: 1px;
}

.comparison-title {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.comparison-description {
    font-size: 15px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 40px;
}

.progress-bars {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.progress-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px 30px;
    backdrop-filter: blur(10px);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.progress-name {
    font-size: 15px;
    font-weight: 500;
    color: #E2E8F0;
}

.progress-time {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
}

.progress-bar-container {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    border-radius: 10px;
    transition: width 1s ease;
}

.progress-bar.gray {
    width: 23%;
    background: linear-gradient(90deg, #718096 0%, #4A5568 100%);
}

.progress-bar.pink {
    width: 100%;
    background: linear-gradient(90deg, #e63976 0%, #d4326a 100%);
}

/* Section 4: Message */
.message-section {
    padding: 60px 0;
    text-align: center;
    background: #F8F9FA;
}

.message-section .section-label {
    margin-bottom: 20px;
}

.message-section .section-title {
    margin-bottom: 30px;
}

.message-card {
    max-width: 900px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 25px;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e63976 0%, #d4326a 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.quote-icon svg {
    width: 28px;
    height: 28px;
    color: #FFFFFF;
}

.message-content {
    margin-bottom: 50px;
}

.message-paragraph {
    font-size: 17px;
    line-height: 2;
    color: #333;
    margin-bottom: 25px;
}

.message-paragraph:last-child {
    margin-bottom: 0;
}

.message-final {
    font-size: 17px;
    line-height: 2;
    color: #333;
    margin-top: 30px;
}

.message-final strong {
    font-weight: 700;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 25px;
    padding-top: 40px;
    border-top: 1px solid #E8E8E8;
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.profile-info {
    text-align: left;
}

.profile-company {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
}

.profile-name {
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.profile-name .title {
    font-weight: 400;
    margin-right: 8px;
}

.profile-credentials {
    font-size: 13px;
    line-height: 1.8;
    color: #666;
}

/* Section 5: Trial */
.trial-section {
    padding: 60px 0;
    text-align: center;
    background: #FFFFFF;
}

.trial-section .section-label {
    margin-bottom: 20px;
}

.trial-section .section-title {
    margin-bottom: 20px;
}

.reason-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.reason-card {
    background: #F8F9FA;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.reason-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.reason-icon svg {
    width: 40px;
    height: 40px;
    color: #e63976;
}

.reason-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #1A1A1A;
}

.reason-description {
    font-size: 15px;
    line-height: 1.9;
    color: #666;
}

.commitment-box {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #00a5e3 0%, #00a5e3 100%);
    border-radius: 25px;
    padding: 50px 60px;
    position: relative;
    overflow: hidden;
}

.commitment-box .highlight {
    color: #ffe100;
}
.commitment-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(230, 57, 118, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.commitment-content {
    position: relative;
    z-index: 1;
}

.commitment-text {
    font-size: 18px;
    line-height: 2;
    color: #FFFFFF;
    text-align: center;
}

/* Section 6: Pricing Trial */
.pricing-trial-section {
    padding: 60px 0;
    background: #F8F9FA;
}

.pricing-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(230, 57, 118, 0.05) 0%, rgba(0, 165, 227, 0.05) 100%);
    border-radius: 30px;
    padding: 60px;
}

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

.pricing-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 20px;
}

.pricing-title svg {
    width: 28px;
    height: 28px;
    color: #e63976;
}

.pricing-subtitle {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.price-table {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.price-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #F0F0F0;
}

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

.price-row.header {
    background: #F8F9FA;
    font-weight: 700;
    font-size: 14px;
    color: #666;
}

.price-row.total {
    background: rgba(230, 57, 118, 0.05);
    font-weight: 700;
    font-size: 18px;
}

.price-label {
    font-size: 16px;
    color: #333;
}

.price-regular {
    text-align: center;
    font-size: 18px;
    color: #999;
}

.price-special {
    text-align: center;
    font-size: 18px;
}

.price-amount {
    font-size: 24px;
    font-weight: 700;
    color: #e63976;
}

.price-badge {
    display: inline-block;
    background: #e63976;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    margin-left: 8px;
}

.price-tax {
    font-size: 13px;
    color: #666;
    margin-left: 5px;
}

.benefits-box {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 35px 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.benefits-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 20px;
}

.benefits-title svg {
    width: 24px;
    height: 24px;
    color: #e63976;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #333;
}

.benefit-check {
    width: 24px;
    height: 24px;
    background: rgba(0, 165, 227, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-check svg {
    width: 14px;
    height: 14px;
    color: #00a5e3;
}

.reference-box {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    padding: 25px 30px;
    border: 1px dashed rgba(0, 165, 227, 0.3);
}

.reference-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.reference-content {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 15px;
    color: #333;
}

.reference-item strong {
    font-weight: 700;
    color: #1A1A1A;
}

/* Section 7: Success Stories */
.stories-section {
    padding: 60px 0;
    text-align: center;
    background: #F8F9FA;
}

.stories-section .section-label {
    margin-bottom: 20px;
}

.stories-section .section-title {
    margin-bottom: 30px;
}

.story-cards {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.story-card {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 50px;
    align-items: center;
    text-align: left;
}

.story-card.reverse {
    grid-template-columns: 3fr 1fr;
}

.story-image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: #E8E8E8;
    aspect-ratio: 4 / 5;
}

.story-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #00a5e3;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.case-badge.purple {
    color: #e63976;
}

.case-badge.teal {
    color: #00a5e3;
}

.story-content {
    order: 2;
}

.story-card.reverse .story-content {
    order: 1;
}

.story-card.reverse .story-image-wrapper {
    order: 2;
}

.story-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.story-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    background: rgba(0, 165, 227, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}

.story-icon.teal {
    background: rgba(0, 165, 227, 0.1);
}

.story-icon.purple {
    background: rgba(230, 57, 118, 0.1);
}

.story-icon svg {
    width: 24px;
    height: 24px;
}

.story-icon.blue svg {
    color: #00a5e3;
}

.story-icon.teal svg {
    color: #00a5e3;
}

.story-icon.purple svg {
    color: #e63976;
}

.story-title-wrapper {
    flex: 1;
}

.story-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.story-meta {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.story-description {
    font-size: 15px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 25px;
}

.story-achievement {
    background: linear-gradient(135deg, rgba(230, 57, 118, 0.05) 0%, rgba(230, 57, 118, 0.1) 100%);
    border-left: 4px solid #e63976;
    padding: 18px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.story-achievement svg {
    width: 20px;
    height: 20px;
    color: #e63976;
    flex-shrink: 0;
}

.achievement-text {
    font-size: 14px;
    font-weight: 700;
    color: #e63976;
    line-height: 1.6;
}

/* Section 8: CTA */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0, 165, 227, 0.05) 0%, rgba(0, 165, 227, 0.1) 100%);
    text-align: center;
}

.cta-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #e63976;
    margin-bottom: 25px;
}

.cta-label svg {
    width: 20px;
    height: 20px;
}

.cta-section .section-title {
    font-size: 44px;
    margin-bottom: 20px;
}

/* Section 9: Testimonials */
.testimonials-section {
    padding: 60px 0;
    text-align: center;
    background: #FFFFFF;
}

.testimonials-section .section-label {
    margin-bottom: 20px;
}

.testimonials-section .section-title {
    margin-bottom: 30px;
}

.category-section {
    margin-bottom: 30px;
}

.category-section:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px;
    justify-content: flex-start;
}

.category-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon.student {
    background: rgba(0, 165, 227, 0.1);
}

.category-icon.parent {
    background: rgba(230, 57, 118, 0.1);
}

.category-icon svg {
    width: 24px;
    height: 24px;
}

.category-icon.student svg {
    color: #00a5e3;
}

.category-icon.parent svg {
    color: #e63976;
}

.category-title {
    font-size: 22px;
    font-weight: 700;
    color: #1A1A1A;
    text-align: left;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: #F8F9FA;
    border-radius: 20px;
    padding: 35px 30px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card.student {
    background: linear-gradient(135deg, rgba(0, 165, 227, 0.05) 0%, rgba(0, 165, 227, 0.1) 100%);
}

.testimonial-card.parent {
    background: linear-gradient(135deg, rgba(230, 57, 118, 0.05) 0%, rgba(230, 57, 118, 0.1) 100%);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-mark {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 40px;
    height: 40px;
    opacity: 0.15;
}

.quote-mark.student {
    color: #00a5e3;
}

.quote-mark.parent {
    color: #e63976;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.author-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-icon.student {
    background: rgba(0, 165, 227, 0.15);
}

.author-icon.parent {
    background: rgba(230, 57, 118, 0.15);
}

.author-icon svg {
    width: 20px;
    height: 20px;
}

.author-icon.student svg {
    color: #00a5e3;
}

.author-icon.parent svg {
    color: #e63976;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 15px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 3px;
}

.author-detail {
    font-size: 13px;
    color: #666;
}

/* Section 10: FAQ */
.faq-section {
    padding: 60px 0;
    text-align: center;
    background: #F8F9FA;
}

.faq-section .section-label {
    margin-bottom: 20px;
}

.faq-section .section-title {
    margin-bottom: 30px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.faq-question:hover {
    background: #FAFAFA;
}

.faq-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #e63976 0%, #d4326a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-icon svg {
    width: 18px;
    height: 18px;
    color: #FFFFFF;
}

.faq-question-text {
    flex: 1;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-toggle svg {
    width: 20px;
    height: 20px;
    color: #999;
}

.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: 1000px;
}

.faq-answer-content {
    padding: 0 30px 30px 80px;
    text-align: left;
}

.faq-answer-text {
    font-size: 15px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 20px;
}

.faq-answer-text:last-child {
    margin-bottom: 0;
}

.faq-answer-text strong {
    font-weight: 700;
    color: #1A1A1A;
}

.faq-list {
    margin-top: 15px;
    padding-left: 0;
    list-style: none;
}

.faq-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.faq-list li:before {
    content: '・';
    position: absolute;
    left: 0;
    color: #e63976;
    font-weight: 700;
}

.faq-highlight {
    color: #e63976;
    font-weight: 700;
}

/* Section 11: Requirements */
.requirements-section {
    padding: 60px 0;
    background: #FFFFFF;
}

.requirements-section .section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 30px;
}

.requirement-cards {
    max-width: 900px;
    margin: 0 auto 80px;
    background: #F8F9FA;
    border-radius: 25px;
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.requirement-item {
    display: flex;
    gap: 20px;
}

.requirement-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(230, 57, 118, 0.1) 0%, rgba(230, 57, 118, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.requirement-icon svg {
    width: 26px;
    height: 26px;
    color: #e63976;
}

.requirement-content {
    flex: 1;
}

.requirement-title {
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 10px;
}

.requirement-description {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.requirement-note {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.schedule-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.schedule-box {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.schedule-header {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 30px;
    text-align: center;
}

.lesson-schedule {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lesson-day {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.day-label {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    width: 65px;
    flex-shrink: 0;
    padding-top: 8px;
}

.time-slots {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.time-slot {
    background: linear-gradient(135deg, rgba(0, 165, 227, 0.1) 0%, rgba(0, 165, 227, 0.15) 100%);
    color: #00a5e3;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
}

.schedule-note {
    font-size: 13px;
    color: #666;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E8E8E8;
}

.business-hours {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #F8F9FA;
    border-radius: 12px;
}

.hours-day {
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.hours-time {
    font-size: 15px;
    font-weight: 600;
    color: #00a5e3;
}

.hours-note {
    font-size: 13px;
    color: #666;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E8E8E8;
}

/* Section 12: Pricing */
.pricing-section {
    padding: 60px 0;
    background: #F8F9FA;
}

.pricing-section .section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card {
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.price-card.blue {
    background: linear-gradient(135deg, rgba(0, 165, 227, 0.1) 0%, rgba(0, 165, 227, 0.15) 100%);
}

.price-card.pink {
    background: linear-gradient(135deg, rgba(230, 57, 118, 0.1) 0%, rgba(230, 57, 118, 0.15) 100%);
}

.price-card.purple {
    background: linear-gradient(135deg, rgba(0, 165, 227, 0.08) 0%, rgba(230, 57, 118, 0.08) 100%);
}

.price-icon-wrapper {
    width: 70px;
    height: 70px;
    background: #FFFFFF;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.price-icon {
    width: 35px;
    height: 35px;
}

.price-icon.blue {
    color: #00a5e3;
}

.price-icon.pink {
    color: #e63976;
}

.price-icon.purple {
    color: #00a5e3;
}

.price-label {
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 20px;
}

.price-amount-wrapper {
    margin-bottom: 15px;
}

.price-period {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    margin-right: 5px;
}

.price-amount {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    margin: 0 5px;
}

.price-amount.blue {
    color: #00a5e3;
}

.price-amount.pink {
    color: #e63976;
}

.price-amount.purple {
    color: #00a5e3;
}

.price-note {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

/* Section 13: Final CTA & Footer */
.final-cta-section {
    background: linear-gradient(135deg, #1A1F2E 0%, #2D3748 50%, #1A1F2E 100%);
    padding: 60px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(230, 57, 118, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta-content {
    position: relative;
    z-index: 1;
}

.final-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #e63976;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(230, 57, 118, 0.3);
}

.final-cta-badge svg {
    width: 18px;
    height: 18px;
}

.final-cta-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 25px;
    color: #FFFFFF;
}

.final-cta-subtitle {
    font-size: 17px;
    color: #B8C5D6;
    margin-bottom: 45px;
    font-weight: 500;
}

.final-cta-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #e63976 0%, #d4326a 100%);
    color: #FFFFFF;
    text-decoration: none;
    padding: 22px 50px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(230, 57, 118, 0.4);
    margin-bottom: 20px;
}

.final-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230, 57, 118, 0.5);
}

.final-cta-button::after {
    content: '→';
    margin-left: 12px;
    font-size: 20px;
}

.final-cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #94A3B8;
}

.final-cta-note svg {
    width: 18px;
    height: 18px;
}

.features-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 80px auto 0;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item {
    text-align: center;
}

.feature-number {
    font-size: 34px;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.feature-label {
    font-size: 14px;
    color: #94A3B8;
    font-weight: 500;
}

.footer {
    background: #0F1419;
    padding: 40px 0;
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    color: #64748B;
    margin-bottom: 8px;
}

.footer-trademark {
    font-size: 13px;
    color: #475569;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-cards .feature-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .story-card,
    .story-card.reverse {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .story-content,
    .story-card.reverse .story-content,
    .story-card.reverse .story-image-wrapper {
        order: initial;
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .schedule-wrapper {
        grid-template-columns: 1fr;
    }

    .price-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-cards .price-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .features-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero-section {
        padding: 40px 0 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-description {
        font-size: 14px;
    }

    .cta-button {
        padding: 16px 30px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 28px;
    }

    .problem-section,
    .solution-section,
    .message-section,
    .trial-section,
    .pricing-trial-section,
    .stories-section,
    .cta-section,
    .testimonials-section,
    .faq-section,
    .requirements-section,
    .pricing-section {
        padding: 60px 0;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .feature-cards .feature-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .reason-cards {
        grid-template-columns: 1fr;
    }

    .message-card {
        padding: 40px 30px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid .testimonial-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .price-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px 20px;
    }

    .price-row.header {
        display: none;
    }

    .price-label::before {
        content: attr(data-label);
        display: block;
        font-size: 12px;
        color: #999;
        margin-bottom: 5px;
    }

    .price-regular,
    .price-special {
        text-align: left;
    }

    .price-cards {
        grid-template-columns: 1fr;
    }

    .price-cards .price-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .final-cta-section {
        padding: 80px 0 60px;
    }

    .final-cta-title {
        font-size: 36px;
    }

    .final-cta-button {
        width: 100%;
        justify-content: center;
        padding: 18px 40px;
        font-size: 16px;
    }

    .hero-title .label {
    font-size: 25px;
}
.problem-text {
    font-size: 14px;
    line-height: 1.5;
}
.conclusion-box {
    padding: 30px 25px;
}
.conclusion-box br {
    display: none;
}
.feature-card {
    padding: 25px 30px;
}
.comparison-box {
    padding: 30px 25px;
}
.comparison-title {
    font-size: 26px;
    line-height: 1.3;
}
.comparison-description br {
    display: none;
}
.message-paragraph {
    font-size: 15px;
    line-height: 1.6;
}
.commitment-box {
    padding: 30px 25px;
}
.commitment-text br {
    display: none;
}
.commitment-text {
    line-height: 1.6;
}
.pricing-wrapper {
padding: 20px;
}
.cta-section .section-title {
    font-size: 32px;
    line-height: 1.4;
}
.faq-answer-text {
font-size: 14px;
    line-height: 1.5;
}
.faq-list li {
    font-size: 14px;
    line-height: 1.5;
}
.price-card {
    padding: 30px 25px;
}
.feature-number {
    font-size: 25px;
}

}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .logo {
        width: 100px;
    }

    .section-title {
        font-size: 24px;
    }

    .final-cta-title {
        font-size: 28px;
    }

    .features-bar {
        grid-template-columns: 1fr 1fr;
    }
}