/* Reset and Base Styles */
:root {
    --primary-color: #303ea7;
    --secondary-color: #1A2B49;
    --accent-color: #4C89FF;
    --background-light: #f8fafc;
    --text-color: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --max-width: 1200px;
    --header-height: 80px;
    --cta-gradient-start: #ff9966;
    --cta-gradient-end: #ff5e62;
    --gold-color: #FFD700;
    --success-color: #10b981;
}

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

body {
    font-family: "IBM Plex Sans JP", sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}



/* Common Styles */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.4;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

header {
    margin-top: 26px;
}

@media screen and (max-width:768px) {
    header {
        margin-top: 0px;
    }
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    padding: 0 2rem;
    position: relative;
}

.header-logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0;
}

.header-logo {
    width: 200px;
}

.header-subtitle {
    font-family: "Noto Serif JP", sans-serif;
    font-size: 0.82rem;
    color: var(--text-color);
    margin-top: 0.2rem;
    font-weight: 400;
    padding-left: 0.8rem;
}


.header-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:not(.contact-button)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-light);
    transition: width 0.3s ease;
    transform-origin: left;
}

.nav-link:not(.contact-button):hover::after {
    width: 100%;
}

.nav-link:not(.contact-button):hover {
    opacity: 0.7;
}

.contact-button {
    background: linear-gradient(0deg, var(--cta-gradient-end), var(--cta-gradient-start));
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 8px rgba(255, 94, 98, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 94, 98, 0.3);
    filter: brightness(1.05);
}

/* Hero Section */
.hero {
    height: 70vh;
    color: var(--white);
    position: relative;
    padding-top: var(--header-height);
    overflow: hidden;
    background-color: #000;
}

.hero-video {
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100% - var(--header-height));
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    justify-content: center;
    padding: 2rem;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    opacity: 0;
    animation: textSlideIn 0.8s ease-out forwards;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.h1main {
    font-size: 160%;
    font-family: "Noto Serif JP", sans-serif;
}

.h1sub {
    font-size: 2.2rem;
    color: var(--gold-color);
    font-weight: 500;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0;
    font-weight: 500;
    animation: textSlideIn 0.8s ease-out 0.3s forwards;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 51, 150, 0.3);
    z-index: 1;
}

/* Problem Section */
.problem-section {
    padding: 6rem 2rem;
    background-color: var(--background-light);
}

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

.problem-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffe6e6;
    border-radius: 50%;
}

.problem-icon img {
    width: 60%;
    height: auto;
}

.problem-item p {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Service Overview Section */
.service-overview {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-color);
}

.service-description p {
    margin-bottom: 1.5rem;
}

.service-image img {
    width: 80%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-impacts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.impact-item {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.impact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.impact-icon img {
    width: 70%;
    height: auto;
}

.impact-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Reasons Section */
.reasons-section {
    padding: 6rem 2rem;
    background-color: var(--background-light);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.reason-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.reason-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.3;
}

.reason-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    line-height: 1.4;
}

.reason-description p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Program Features Section */
.program-features {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    background-color: var(--background-light);
    border-radius: 12px;
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.feature-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.feature-icon img {
    width: 70%;
    height: auto;
}

.feature-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.4;
}

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

/* Pricing Section */
.pricing-section {
    padding: 6rem 2rem;
    background-color: var(--background-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 950px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.price {
    margin-bottom: 2rem;
}

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

.price-unit {
    font-size: 1rem;
    color: var(--text-light);
}

.plan-frequency {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    border: 2px solid var(--gold-color);
    border-radius: 30px;
    padding: 1rem;
    width: 70%;
    margin: 0 auto 1.5rem auto;
}

.plan-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.plan-features li {
    padding: 0.5rem 0;
    color: var(--text-color);
    position: relative;
    padding-left: 1.5rem;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}


.common-features {
    max-width: 800px;
    margin: 3rem auto 0;
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.common-features:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.common-features h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.common-features ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.common-features li {
    padding: 0.75rem 1.5rem;
    background-color: var(--background-light);
    border-radius: 30px;
    color: var(--text-color);
    font-weight: 500;
    border: 1px dashed var(--primary-color);
    position: relative;
}

.common-features-option {
    font-size: 0.8rem;
}


/* タブレット対応 (768px以下) */
@media (max-width: 768px) {
    .common-features ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .common-features li {
        width: 100%;
        max-width: 300px;
    }
}




/* Results Section */
.results-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.results-section .section-title {
    color: var(--white);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.result-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.result-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 1rem;
}

.result-label {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Testimonial Section */
.testimonial-section {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--background-light);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-content {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: -1rem;
    left: 2rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.testimonial-author strong {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.testimonial-author span {
    color: var(--text-light);
}

/* Flow Section */
.flow-section {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.flow-container {
    max-width: 700px;
    margin: 50px auto 0;
}

.flow-steps {
    position: relative;
}

.flow-step {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
}

.flow-step:last-child {
    margin-bottom: 3rem;
}

.flow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 40px;
    transform: translateX(-50%);
    width: 2px;
    height: 4rem;
    background-color: var(--primary-color);
    opacity: 0.3;
}

.step-number {
    flex: 0 0 80px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    height: fit-content;
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    margin-left: 2rem;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon img {
    width: 70%;
    height: auto;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.step-details {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

/* Application Section */
.application-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.application-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.application-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.application-highlight {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold-color);
    border: 1px solid var(--gold-color);
    width: 80%;
    text-align: center;
    margin: 0 auto;
    padding: 1rem 0;
}

.application-highlight strong {
    font-size: 2rem;
    font-weight: 700;
}

.application-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.application-note {
    font-size: 0.9rem !important;
    margin-top: 2rem !important;
    opacity: 0.8 !important;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--background-light);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

/* Final CTA Section */
.final-cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.final-cta-buttons {
    display: flex;
    gap: 3rem;
    max-width: 800px;
    margin: 2rem auto 0;
    justify-content: center;
}

.month-group {
    flex: 1;
}

.month-title {
    color: var(--gold-color);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--gold-color);
    padding-bottom: 0.5rem;
}

.month-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.month-buttons .cta-button {
    opacity: 1;
    animation: none;
    margin: 0;
    justify-self: stretch;
    justify-content: center;
    font-size: 1rem;
    padding: 1rem 1.5rem;
}

/* タブレット対応 (768px以下) */
@media (max-width: 768px) {
    .final-cta-buttons {
        flex-direction: column;
        gap: 2rem;
    }

    .month-buttons {
        grid-template-columns: 1fr;
    }
}

.final-cta-buttons .cta-button {
    opacity: 1;
    animation: none;
    margin: 0;
    justify-self: stretch;
    justify-content: center;
    font-size: 1rem;
    padding: 1rem 1.5rem;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 2rem;
}

.footer-service-logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-service-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.footer-logo {
    width: 200px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-info address {
    font-style: normal;
    color: var(--text-light);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.copyright {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

/* Button Styles */
.button-icon {
    width: 16px;
    height: 16px;
    margin-left: 8px;
    transition: transform 0.3s ease;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(0deg, var(--cta-gradient-end), var(--cta-gradient-start));
    color: var(--white);
    text-decoration: none;
    border-radius: 2rem;
    font-weight: bold;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    opacity: 0;
    animation: textSlideIn 0.8s ease-out 0.6s forwards;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 94, 98, 0.25);
    position: relative;
    overflow: hidden;
    gap: 0.5rem;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: all 0.75s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 94, 98, 0.3);
    filter: brightness(1.05);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover .button-icon {
    transform: translateX(4px);
}

/* Animations */
@keyframes textSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ScrollReveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Section Description */
.section-description {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* PC/SP Image Display */
.hero-video.pc-only {
    display: block;
}

.hero-video.sp-only {
    display: none;
}


/* CTA Button Animation Override */
.application-section .cta-button,
.final-cta-section .cta-button {
    opacity: 1;
    animation: none;
}



/* タブレット対応 (768px以下) */
@media (max-width: 768px) {

    /* Header */
    .header .container {
        padding: 0 1rem;
    }

    .header-nav {
        display: none;
    }

    .header-logo {
        width: 160px;
    }

    .header-subtitle {
        font-size: 0.7rem;
    }

    /* Hero */
    .hero {
        height: 60vh;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .h1sub {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 2rem;
    }

    /* Problem Section */
    .problem-section {
        padding: 4rem 1rem;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .problem-item {
        padding: 1.5rem;
    }

    /* Service Overview */
    .service-overview {
        padding: 4rem 1rem;
    }

    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-image {
        text-align: center;
    }

    .service-image img {
        width: 100%;
    }

    .service-impacts {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Reasons Section */
    .reasons-section {
        padding: 4rem 1rem;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reason-card {
        padding: 2rem;
    }

    /* Program Features */
    .program-features {
        padding: 4rem 1rem;
    }

    .feature-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .feature-card {
        padding: 2rem;
    }

    /* Pricing Section */
    .pricing-section {
        padding: 4rem 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    /* Results Section */
    .results-section {
        padding: 4rem 1rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .result-number {
        font-size: 2.5rem;
    }

    /* Testimonial */
    .testimonial-section {
        padding: 4rem 1rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-content {
        font-size: 1.1rem;
    }

    /* Flow Section */
    .flow-section {
        padding: 4rem 1rem;
    }

    .flow-step {
        flex-direction: column;
        margin-bottom: 3rem;
    }

    .flow-step:not(:last-child)::after {
        display: none;
    }

    .step-number {
        margin-bottom: 1rem;
        align-self: flex-start;
    }

    .step-content {
        margin-left: 0;
    }

    .step-header {
        flex-direction: column;
        text-align: center;
    }

    /* Application Section */
    .application-section {
        padding: 4rem 1rem;
    }

    .application-content h2 {
        font-size: 2rem;
    }

    .application-highlight {
        width: 100%;
    }

    /* FAQ Section */
    .faq-section {
        padding: 4rem 1rem;
    }

    /* Final CTA */
    .final-cta-section {
        padding: 4rem 1rem;
    }

    .final-cta-content h2 {
        font-size: 2rem;
    }

    .final-cta-buttons {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer {
        padding: 3rem 1rem 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

/* スマートフォン対応 (480px以下) */
@media (max-width: 480px) {

    /* Container */
    .container {
        padding: 0 1rem;
    }

    /* Hero */
    .hero {
        height: 60vh;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .h1main {
        font-size: 150%;
    }

    .h1sub {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    /* PC/SP Image Display */
    .hero-video.pc-only {
        display: none;
    }

    .hero-video.sp-only {
        display: block;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    /* CTA Buttons */
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Problem Section */
    .problem-icon {
        width: 60px;
        height: 60px;
    }

    /* Impact Items */
    .impact-icon {
        width: 60px;
        height: 60px;
    }

    /* Feature Header */
    .feature-icon {
        width: 60px;
        height: 60px;
    }

    /* Step Icon */
    .step-icon {
        width: 60px;
    }

    /* Pricing */
    .price-amount {
        font-size: 2.5rem;
    }

    /* Text Size Adjustments */
    .service-description {
        font-size: 1rem;
    }

    .feature-content p,
    .reason-description p,
    .step-details {
        font-size: 0.95rem;
    }

    /* Application */
    .application-content h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .application-content p {
        font-size: 1.1rem;
    }

    .application-highlight {
        font-size: 1.3rem;
    }

    .application-highlight strong {
        font-size: 1.8rem;
    }

    /* Final CTA */
    .final-cta-content h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .final-cta-content p {
        font-size: 1.1rem;
    }

    /* Section Padding */
    .problem-section,
    .service-overview,
    .reasons-section,
    .program-features,
    .pricing-section,
    .results-section,
    .testimonial-section,
    .flow-section,
    .application-section,
    .faq-section,
    .final-cta-section {
        padding: 3rem 1rem;
    }
}




.corporate_logo {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    padding: 20px 20px;


}

.corporate_logo img {
    height: 18px;
    width: auto;

}



.site_seal {
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.site_seal div.site_seal_left {
    padding: 40px 5px 40px 115px;
}

.site_seal div.site_seal_center {
    padding: 40px 5px 0px 5px;
}

.site_seal div.site_seal_right {
    padding: 40px 115px 40px 5px;
}

@media only screen and (max-width: 767px) {
    .site_seal {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .site_seal a {
        display: block !important;
    }

    .site_seal div.site_seal_left {
        padding: 40px 115px 5px;
    }

    .site_seal div.site_seal_right {
        padding: 5px 115px 40px;
    }
}

.footer_area_bg {
    background-color: #fff;

}



.cta-button.disabled {
    background: #9ca3af;
    color: #d1d5db;
    cursor: not-allowed;
    box-shadow: none;
    pointer-events: none;
}

.cta-button.disabled:hover {
    transform: none;
    box-shadow: none;
    filter: none;
}

.cta-button.disabled:hover::before {
    left: -100%;
}

.cta-button.disabled:hover .button-icon {
    transform: none;
}