/* =================================
   Reset & Base Styles
   ================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #4A4A4A;
    line-height: 1.9;
    background-color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* =================================
   Container & Layout
   ================================= */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .sp-only {
        display: inline;
    }
}

@media (min-width: 769px) {
    .sp-only {
        display: none;
    }
}

/* =================================
   Typography
   ================================= */
.section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    color: #4A4A4A;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8DD5E8, #A8E0F0);
    margin: 20px auto 0;
    border-radius: 2px;
}

.title-sub {
    font-size: 1.2rem;
    font-weight: 400;
    color: #8B8B8B;
    margin-left: 8px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 35px;
        letter-spacing: 0.02em;
        word-break: keep-all;
        overflow-wrap: normal;
    }
    
    .title-sub {
        font-size: 0.93rem;
        display: block;
        margin-left: 0;
        margin-top: 4px;
    }
}

/* =================================
   Buttons
   ================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: #6BC5DD;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(107, 197, 221, 0.3);
}

.btn-primary:hover {
    background-color: #5AB5D0;
    box-shadow: 0 6px 16px rgba(107, 197, 221, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #5AB5D0;
    border-color: #6BC5DD;
}

.btn-outline:hover {
    background-color: #6BC5DD;
    color: #FFFFFF;
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 16px 36px;
        font-size: 1rem;
    }
}

/* =================================
   Hero Section
   ================================= */
.hero {
    position: relative;
    background: linear-gradient(135deg, #F7F7F7 0%, #FFFFFF 100%);
    padding: 120px 0 100px;
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(141, 213, 232, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #4A4A4A;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-highlight {
    color: #5AB5D0;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #8B8B8B;
    margin-bottom: 50px;
    line-height: 2;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin-top: 40px;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .hero {
        padding: 70px 0 50px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.75;
        letter-spacing: 0.02em;
    }
    
    .hero-subtitle {
        font-size: 1.02rem;
        margin-bottom: 35px;
        line-height: 1.85;
        letter-spacing: 0.01em;
    }
}

/* =================================
   Concerns Section
   ================================= */
.concerns {
    background-color: #F7F7F7;
}

.concerns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.concern-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.concern-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.concern-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.concern-icon i {
    font-size: 1.5rem;
    color: #6BC5DD;
}

.concern-text {
    font-size: 1rem;
    line-height: 1.9;
    color: #4A4A4A;
}

.concerns-message {
    text-align: center;
    padding: 40px 20px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.concerns-message p {
    font-size: 1.2rem;
    color: #4A4A4A;
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.concerns-message .message-sub {
    font-size: 1rem;
    color: #8B8B8B;
    margin-bottom: 0;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 2;
}

.concerns-message strong {
    color: #5AB5D0;
    font-weight: 600;
}

@media (max-width: 768px) {
    .concerns-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .concern-item {
        padding: 18px;
    }
    
    .concern-text {
        font-size: 0.93rem;
        line-height: 1.75;
        letter-spacing: 0.01em;
    }
    
    .concerns-message {
        padding: 30px 20px;
        margin-top: 10px;
    }
    
    .concerns-message p {
        font-size: 1.03rem;
        line-height: 1.85;
        letter-spacing: 0.01em;
    }
    
    .concerns-message .message-sub {
        font-size: 0.93rem;
        line-height: 1.85;
        letter-spacing: 0.01em;
    }
}

/* =================================
   Features Section
   ================================= */
.features {
    background-color: #FFFFFF;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    padding: 40px 30px;
    background: #F7F7F7;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #8DD5E8;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.feature-icon i {
    font-size: 2.2rem;
    color: #6BC5DD;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4A4A4A;
    margin-bottom: 16px;
}

.feature-text {
    font-size: 0.95rem;
    color: #8B8B8B;
    line-height: 1.9;
}

.feature-text strong {
    color: #4A4A4A;
    font-weight: 600;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 22px;
    }
    
    .feature-title {
        font-size: 1.08rem;
        line-height: 1.65;
        letter-spacing: 0.01em;
    }
    
    .feature-text {
        font-size: 0.92rem;
        line-height: 1.85;
        letter-spacing: 0.01em;
    }
}

/* =================================
   Program Section (Timeline)
   ================================= */
.program {
    background-color: #F7F7F7;
}

.timeline {
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 45px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #8DD5E8, #A8E0F0);
}

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 50px;
    position: relative;
}

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

.timeline-marker {
    position: relative;
    flex-shrink: 0;
    z-index: 1;
}

.timeline-number {
    width: 90px;
    height: 90px;
    background: #6BC5DD;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(107, 197, 221, 0.3);
    text-align: center;
    line-height: 1.4;
}

.timeline-content {
    flex: 1;
    padding: 24px 32px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4A4A4A;
    margin-bottom: 16px;
}

.timeline-text {
    font-size: 1rem;
    color: #8B8B8B;
    line-height: 1.95;
    margin-bottom: 12px;
}

.timeline-text strong {
    color: #5AB5D0;
    font-weight: 600;
}

.timeline-list {
    list-style: none;
    margin: 16px 0;
}

.timeline-list li {
    font-size: 0.95rem;
    color: #8B8B8B;
    line-height: 1.95;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.timeline-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #6BC5DD;
    font-size: 0.8rem;
}

.timeline-list li strong {
    color: #4A4A4A;
    font-weight: 600;
}

.support-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.support-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #4A4A4A;
    margin-bottom: 24px;
    text-align: center;
}

.support-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.support-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: #4A4A4A;
    line-height: 1.8;
}

.support-list li i {
    color: #6BC5DD;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.support-item-content {
    display: inline-block;
}

.support-note {
    font-size: 0.88rem;
    color: #8B8B8B;
    font-weight: 400;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 38px;
    }
    
    .timeline {
        margin-bottom: 40px;
    }
    
    .timeline-item {
        gap: 20px;
        margin-bottom: 35px;
    }
    
    .timeline-number {
        width: 76px !important;
        height: 76px !important;
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        padding: 4px !important;
    }
    
    .timeline-content {
        padding: 18px 20px;
    }
    
    .timeline-title {
        font-size: 1.08rem;
        margin-bottom: 12px;
        line-height: 1.65;
        letter-spacing: 0.01em;
    }
    
    .timeline-text {
        font-size: 0.92rem;
        line-height: 1.85;
        letter-spacing: 0.01em;
    }
    
    .timeline-list li {
        font-size: 0.9rem;
        line-height: 1.85;
        letter-spacing: 0.01em;
    }
    
    .support-content {
        padding: 28px 20px;
    }
    
    .support-title {
        font-size: 1.18rem;
        letter-spacing: 0.01em;
    }
    
    .support-list {
        gap: 16px;
    }
    
    .support-list li {
        font-size: 0.92rem;
        line-height: 1.8;
        letter-spacing: 0.01em;
    }
    
    .support-note {
        font-size: 0.84rem;
    }
}

/* =================================
   Pricing Section
   ================================= */
.pricing {
    background-color: #FFFFFF;
}

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

.pricing-card {
    padding: 48px 40px;
    background: #F7F7F7;
    border-radius: 16px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.pricing-main {
    border-color: #8DD5E8;
    background: linear-gradient(135deg, #FFFFFF 0%, #F7F7F7 100%);
    box-shadow: 0 8px 24px rgba(141, 213, 232, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #6BC5DD;
    color: #FFFFFF;
    padding: 6px 24px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4A4A4A;
    margin-bottom: 24px;
}

.pricing-price {
    margin: 24px 0;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #5AB5D0;
    line-height: 1;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #5AB5D0;
    margin-left: 4px;
}

.price-tax {
    font-size: 0.9rem;
    color: #8B8B8B;
    margin-left: 8px;
    font-weight: 300 !important;
}

.pricing-note {
    font-size: 1rem;
    color: #8B8B8B;
    margin-bottom: 8px;
}

.pricing-note-info {
    font-size: 0.9rem;
    color: #5AB5D0;
    font-weight: 500;
    margin-bottom: 20px;
}

.pricing-note-small {
    font-size: 0.85rem;
    color: #8B8B8B;
    margin-top: 16px;
    line-height: 1.7;
}

.pricing-note-small:first-of-type {
    margin-top: 24px;
}

.pricing-note-spacing {
    margin-bottom: 24px;
}

.pricing-features {
    margin: 24px 0 32px;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #4A4A4A;
    margin-bottom: 12px;
}

.feature-item i {
    color: #6BC5DD;
    font-size: 1rem;
}

.pricing-options {
    display: flex;
    gap: 24px;
    margin: 24px 0;
    padding: 24px 0;
}

.pricing-option {
    flex: 1;
    text-align: center;
}

.option-label {
    font-size: 0.9rem;
    color: #8B8B8B;
    margin-bottom: 8px;
}

.option-duration {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4A4A4A;
    margin-bottom: 12px;
}

.option-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5AB5D0;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px;
}

.option-price .price-tax {
    font-size: 0.85rem;
    font-weight: 300 !important;
    color: #8B8B8B;
    margin-left: 4px;
}

.pricing-divider {
    width: 1px;
    background: #E0E0E0;
}

.pricing-message {
    text-align: center;
    font-size: 1.1rem;
    color: #8B8B8B;
    margin-top: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .pricing-card {
        padding: 35px 24px;
    }
    
    .pricing-title {
        font-size: 1.28rem;
        letter-spacing: 0.01em;
    }
    
    .price-amount {
        font-size: 2.3rem;
    }
    
    .price-tax {
        font-weight: 300 !important;
    }
    
    .pricing-note {
        font-size: 0.94rem;
        letter-spacing: 0.01em;
    }
    
    .pricing-note-info {
        font-size: 0.87rem;
        letter-spacing: 0.01em;
        line-height: 1.7;
    }
    
    .pricing-features {
        margin: 20px 0 28px;
    }
    
    .feature-item {
        font-size: 0.89rem;
        letter-spacing: 0.01em;
        line-height: 1.7;
    }
    
    .pricing-options {
        flex-direction: column;
        gap: 20px;
    }
    
    .pricing-divider {
        width: 100%;
        height: 1px;
    }
    
    .pricing-note-small {
        font-size: 0.82rem;
        line-height: 1.75;
        letter-spacing: 0.01em;
    }
    
    .pricing-message {
        font-size: 0.98rem;
        line-height: 1.85;
        letter-spacing: 0.01em;
    }
}

/* =================================
   Benefits Section
   ================================= */
.benefits {
    background-color: #F7F7F7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    padding: 36px 28px;
    background: #FFFFFF;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8DD5E8, #A8E0F0);
    border-radius: 50%;
}

.benefit-icon i {
    font-size: 2rem;
    color: #FFFFFF;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4A4A4A;
    margin-bottom: 12px;
}

.benefit-text {
    font-size: 0.95rem;
    color: #8B8B8B;
    line-height: 1.9;
}

.benefits-message {
    text-align: center;
    padding: 40px 20px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    max-width: 800px;
    margin: 0 auto;
}

.message-large {
    font-size: 1.4rem;
    color: #4A4A4A;
    line-height: 2;
}

.message-large strong {
    color: #5AB5D0;
    font-weight: 600;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-item {
        padding: 30px 24px;
    }
    
    .benefit-title {
        font-size: 1.04rem;
        line-height: 1.65;
        letter-spacing: 0.01em;
    }
    
    .benefit-text {
        font-size: 0.92rem;
        line-height: 1.85;
        letter-spacing: 0.01em;
    }
    
    .benefits-message {
        padding: 30px 20px;
    }
    
    .message-large {
        font-size: 1.08rem;
        line-height: 1.95;
        letter-spacing: 0.02em;
    }
}

/* =================================
   FAQ Section
   ================================= */
.faq {
    background-color: #FFFFFF;
}

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

.faq-item {
    margin-bottom: 16px;
    background: #F7F7F7;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #4A4A4A;
    text-align: left;
    transition: all 0.3s ease;
}

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

.faq-question i {
    flex-shrink: 0;
    color: #6BC5DD;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    padding: 0 28px 24px;
    font-size: 1rem;
    color: #8B8B8B;
    line-height: 1.95;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 18px 20px;
        font-size: 0.98rem;
        gap: 16px;
        line-height: 1.65;
        letter-spacing: 0.01em;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 0.92rem;
        line-height: 1.9;
        letter-spacing: 0.01em;
    }
}

/* =================================
   Profile Section
   ================================= */
.profile {
    background-color: #F7F7F7;
}

.profile-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 48px;
    align-items: center;
}

.profile-image {
    flex-shrink: 0;
    width: 280px;
}

.profile-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.profile-content {
    flex: 1;
    text-align: left;
}

.profile-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #4A4A4A;
    margin-bottom: 12px;
}

.profile-qualification {
    font-size: 1.1rem;
    color: #5AB5D0;
    font-weight: 600;
    margin-bottom: 32px;
}

.profile-text p {
    font-size: 1rem;
    color: #8B8B8B;
    line-height: 2;
    margin-bottom: 20px;
}

.profile-text strong {
    color: #4A4A4A;
    font-weight: 600;
}

.profile-note {
    font-size: 0.9rem;
    color: #8B8B8B;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #E0E0E0;
    line-height: 1.9;
}

@media (max-width: 768px) {
    .profile-card {
        padding: 30px 22px;
        flex-direction: column;
        gap: 28px;
    }
    
    .profile-image {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
    }
    
    .profile-content {
        text-align: center;
    }
    
    .profile-name {
        font-size: 1.58rem;
        letter-spacing: 0.02em;
    }
    
    .profile-qualification {
        font-size: 1.04rem;
    }
    
    .profile-text p {
        font-size: 0.92rem;
        line-height: 1.95;
        letter-spacing: 0.01em;
    }
    
    .profile-note {
        font-size: 0.84rem;
        line-height: 1.75;
        letter-spacing: 0.01em;
    }
}

/* =================================
   Contact CTA Section
   ================================= */
.contact-cta {
    background: linear-gradient(135deg, #8DD5E8, #A8E0F0);
    padding: 100px 0;
}

.cta-content {
    text-align: center;
    color: #FFFFFF;
}

.cta-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 16px;
    line-height: 2;
}

.cta-subtext {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 2;
}

.cta-subtext strong {
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.contact-cta .btn-primary {
    background-color: #FFFFFF;
    color: #5AB5D0;
}

.contact-cta .btn-primary:hover {
    background-color: #F7F7F7;
    transform: translateY(-4px);
}

@media (max-width: 768px) {
    .contact-cta {
        padding: 70px 0;
    }
    
    .cta-title {
        font-size: 1.75rem;
        margin-bottom: 20px;
        letter-spacing: 0.02em;
    }
    
    .cta-text {
        font-size: 1.03rem;
        margin-bottom: 14px;
        line-height: 1.85;
        letter-spacing: 0.01em;
    }
    
    .cta-subtext {
        font-size: 0.96rem;
        margin-bottom: 35px;
        line-height: 1.95;
        letter-spacing: 0.01em;
    }
}

/* =================================
   Footer
   ================================= */
.footer {
    background-color: #4A4A4A;
    padding: 40px 0;
    text-align: center;
}

.footer-text {
    font-size: 0.9rem;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.7;
}

.footer-link a {
    color: #8DD5E8;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-link a:hover {
    color: #A8E0F0;
    text-decoration: underline;
}

/* =================================
   Scroll Animations
   ================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

/* =================================
   Additional Text Wrapping Improvements
   ================================= */
p {
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
}

.hero-title,
.section-title,
.cta-title {
    word-break: keep-all;
    overflow-wrap: normal;
}

/* Max width for better readability on large screens */
.timeline-text,
.feature-text,
.benefit-text {
    max-width: 100%;
}

@media (max-width: 768px) {
    .hero-title {
        word-break: normal;
    }
    
    .pricing-note-small {
        line-height: 1.8;
    }
    
    /* モバイル用のタイムライン青い丸のスタイル強制 */
    .timeline-number {
        width: 76px !important;
        height: 76px !important;
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        padding: 4px !important;
        word-break: keep-all !important;
    }
}