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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f5f5f5;
    --accent-color: #ff6b35;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --error-color: #f44336;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Noto Sans JP', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    padding-bottom: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow);
    z-index: 9999;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo h1 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.cta-nav {
    background: var(--accent-color);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-nav:hover {
    background: #ff5722;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hero {
    margin-top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('../images/IMG_2782_Original.jpg');
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.8) 0%, rgba(224, 224, 224, 0.8) 100%);
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: pulse 10s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-content {
    flex: 1;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0;
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-subtitle {
    display: block;
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-main-text {
    display: inline-block;
    white-space: nowrap;
}

.hero-title {
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-desc-line {
    display: inline;
}

/* PC表示時のみ改行位置を調整 */
@media (min-width: 769px) {
    .hero-desc-line:nth-child(1),
    .hero-desc-line:nth-child(2) {
        display: inline;
    }

    .hero-desc-line:nth-child(2)::after {
        content: "\A";
        white-space: pre;
    }

    .hero-desc-line:nth-child(3),
    .hero-desc-line:nth-child(4) {
        display: inline;
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: #ff5722;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--primary-color);
    color: white;
}

.btn-secondary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn-arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

.hero-cta-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    background: white;
    padding: 2rem 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

section {
    padding: 5rem 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 900;
    color: var(--primary-color);
}

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

.features {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: var(--secondary-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: var(--accent-color);
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-description {
    color: var(--text-light);
    line-height: 1.8;
}

.programs {
    background: var(--secondary-color);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.program-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.program-card.featured {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.program-title {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.program-badge {
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.program-features {
    list-style: none;
    margin-bottom: 2rem;
}

.program-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
    position: relative;
    padding-left: 1.5rem;
}

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

.program-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

.result-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.result-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-color);
}

.testimonials {
    background: white;
    overflow: hidden;
}

.testimonials-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 3rem auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonials-slider-container {
    overflow: hidden;
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
}

.testimonial-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 600px;
}

.slider-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow);
    z-index: 10;
}

.slider-btn:hover {
    background: #ff5722;
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--accent-color);
    width: 30px;
    border-radius: 6px;
}

.slider-dot:hover {
    background: var(--accent-color);
    opacity: 0.7;
}

.pricing {
    background: var(--secondary-color);
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.pricing-price {
    margin: 1.5rem 0;
}

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

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

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-color);
    position: relative;
    padding-left: 2rem;
}

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

.pricing-note {
    margin-top: 3rem;
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.pricing-note p {
    margin: 0.5rem 0;
    color: var(--text-color);
}

.highlight {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.booking {
    background: white;
    padding: 5rem 0;
}

.booking-cta-container {
    max-width: 700px;
    margin: 3rem auto;
    text-align: center;
}

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

.booking-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.booking-step p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
}

.booking-line-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
}

.line-icon {
    font-size: 1.5rem;
}

.booking-note-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.required {
    color: var(--error-color);
    font-size: 0.9rem;
    margin-left: 0.25rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

input.error,
select.error,
textarea.error {
    border-color: var(--error-color);
}

.error-message {
    display: none;
    color: var(--error-color);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.error-message.show {
    display: block;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0;
}

.link {
    color: var(--accent-color);
    text-decoration: underline;
}

.booking-benefits {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: var(--secondary-color);
    border-radius: 10px;
}

.booking-benefits h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.process-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.process-list li {
    margin: 1rem 0;
    color: var(--text-color);
    line-height: 1.8;
}

.booking-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: white;
    border-left: 4px solid var(--accent-color);
    color: var(--text-light);
}

.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
}

.footer-left h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-access-info {
    margin-top: 0;
}

.footer-access-info h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-access-info p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.footer-map {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-left: -8rem;
}

.footer-links-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

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

.footer-links li {
    margin: 0.5rem 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

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

.map-link {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.map-link:hover {
    background: var(--accent-color);
    color: white;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 400px;
}

.map-container iframe {
    display: block;
    border-radius: 10px;
    width: 100%;
    height: 300px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.modal-content p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    z-index: 9998;
    border-top: 1px solid var(--border-color);
}

.bottom-nav-title {
    flex: 0 0 auto;
    margin-right: 1rem;
}

.bottom-nav-title h1 {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    margin: 0;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-light);
    padding: 0.5rem;
    flex: 1;
    transition: all 0.3s ease;
    position: relative;
}

.bottom-nav-item:hover {
    color: var(--accent-color);
}

.bottom-nav-item svg {
    width: 24px;
    height: 24px;
    margin-bottom: 0.25rem;
}

.bottom-nav-item span {
    font-size: 0.75rem;
    font-weight: 500;
}

.bottom-nav-cta {
    background: var(--accent-color);
    color: white;
    border-radius: 10px;
    margin: 0.5rem;
    padding: 0.5rem 1rem;
    flex: 1.5;
}

.bottom-nav-cta:hover {
    background: #ff5722;
    color: white;
    transform: translateY(-2px);
}

.bottom-nav-cta svg {
    stroke: white;
}

@media (max-width: 768px) {
    .bottom-nav {
        padding: 0.25rem 0.5rem;
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .bottom-nav-title {
        flex: 0 0 auto;
        margin-right: 0.5rem;
        min-width: fit-content;
    }

    .bottom-nav-title h1 {
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .bottom-nav-item {
        min-width: 50px;
        padding: 0.4rem 0.3rem;
    }

    .bottom-nav-item svg {
        width: 20px;
        height: 20px;
        margin-bottom: 0.1rem;
    }

    .bottom-nav-item span {
        font-size: 0.55rem;
        white-space: nowrap;
    }

    .bottom-nav-cta {
        flex: 0 0 auto;
        min-width: 120px;
        padding: 0.4rem 0.5rem;
        margin: 0.25rem;
    }

    .bottom-nav-cta span {
        font-size: 0.5rem;
        line-height: 1.2;
        white-space: normal;
        text-align: center;
    }

    .hero {
        flex-direction: column;
        min-height: 100vh;
        margin-top: 0;
    }

    .hero-content {
        padding: 2rem 1rem;
        max-width: 100%;
        text-align: left;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: row;
        gap: 2rem;
        padding: 1.5rem;
        margin: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.75rem;
        padding: 0 1rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .programs-grid,
    .pricing-table {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card,
    .program-card,
    .pricing-card {
        margin: 0 1rem;
    }

    .testimonials-slider-wrapper {
        gap: 0.5rem;
        margin: 2rem 0.5rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .program-card.featured {
        transform: none;
        border-width: 2px;
    }

    .pricing-card.featured {
        transform: none;
        border-width: 2px;
    }

    .pricing-badge {
        font-size: 0.8rem;
    }

    .price-amount {
        font-size: 2rem;
    }

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

    .footer-section {
        padding: 0 1rem;
    }

    .footer-left {
        text-align: center;
    }

    .footer-map {
        order: 2;
    }

    .footer-links-section {
        order: 3;
    }

    .map-container {
        margin: 1rem auto;
        max-width: 100%;
    }

    .map-container iframe {
        height: 200px;
    }

    .social-links {
        justify-content: center;
    }

    .booking-form {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        border-radius: 10px;
    }

    .booking-benefits {
        margin: 2rem 1rem 0;
    }

    .modal-content {
        margin: 1rem;
        padding: 1.5rem;
    }

    .btn {
        font-size: 0.95rem;
        padding: 0.9rem 1.5rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    .header {
        padding: 0;
    }

    .nav {
        padding: 0.75rem 1rem;
    }

    .nav-logo h1 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-bottom: 70px;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
        padding: 0 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .hero-description {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .hero-stats {
        flex-direction: row;
        gap: 1.5rem;
        padding: 1rem;
        margin: 0.5rem;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .section-title {
        font-size: 1.35rem;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    section {
        padding: 2.5rem 0;
    }

    .container {
        padding: 0 10px;
    }

    .feature-card,
    .program-card,
    .pricing-card {
        padding: 1.25rem;
        margin: 0 0.25rem 1rem;
        border-radius: 8px;
    }

    .testimonials-slider-wrapper {
        gap: 0.25rem;
        margin: 1.5rem 0.25rem;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .testimonial-image {
        max-height: 400px;
    }

    .slider-dots {
        margin-top: 1rem;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .slider-dot.active {
        width: 24px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .feature-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .feature-description,
    .testimonial-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .program-title {
        font-size: 1.2rem;
    }

    .program-features li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }

    .pricing-title {
        font-size: 1.15rem;
    }

    .price-amount {
        font-size: 1.5rem;
    }

    .pricing-features li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }

    .booking-form {
        padding: 1.25rem 0.75rem;
        margin: 0 0.25rem;
        border-radius: 8px;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    select,
    textarea {
        font-size: 16px;
        padding: 0.75rem;
        border-radius: 4px;
    }

    label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .btn {
        width: 100%;
        padding: 0.9rem;
        font-size: 0.9rem;
        border-radius: 5px;
    }

    .btn-large {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .pricing-note {
        padding: 0.75rem;
        margin: 1.5rem 0.25rem 0;
        font-size: 0.85rem;
    }

    .highlight {
        display: inline;
        font-size: 1rem;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.25rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-section p {
        font-size: 0.85rem;
    }

    .map-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .map-container iframe {
        height: 180px;
    }

    .modal-content {
        width: 95%;
        padding: 1.25rem;
        margin: 0 2.5%;
    }

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

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

@media (max-width: 375px) {
    .bottom-nav {
        padding: 0.2rem 0.25rem;
    }

    .bottom-nav-title h1 {
        font-size: 0.7rem;
    }

    .bottom-nav-item {
        padding: 0.3rem 0.2rem;
        min-width: 45px;
    }

    .bottom-nav-item svg {
        width: 18px;
        height: 18px;
    }

    .bottom-nav-item span {
        font-size: 0.5rem;
    }

    .bottom-nav-cta {
        min-width: 100px;
        padding: 0.3rem 0.4rem;
    }

    .bottom-nav-cta span {
        font-size: 0.45rem;
    }

    .hero-title {
        font-size: 1.35rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .hero-stats {
        padding: 0.75rem;
        gap: 1rem;
    }

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

    .stat-label {
        font-size: 0.65rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

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

    .feature-card,
    .program-card,
    .testimonial-card,
    .pricing-card {
        padding: 1rem;
    }

    .program-title,
    .pricing-title {
        font-size: 1.1rem;
    }

    .price-amount {
        font-size: 1.35rem;
    }

    .booking-form {
        padding: 1rem 0.5rem;
    }

    .btn {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
}

/* タッチデバイス向けの調整 */
@media (hover: none) and (pointer: coarse) {
    .btn:active {
        transform: scale(0.98);
    }

    .feature-card:active,
    .program-card:active,
    .testimonial-card:active,
    .pricing-card:active {
        transform: scale(0.98);
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    select,
    textarea {
        font-size: 16px;
    }
}

/* 新セクションのスタイル */

/* キャンペーンセクション */
.campaign {
    background: linear-gradient(135deg, #8B8B8B 0%, #A8A8A8 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.campaign::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="100" opacity="0.03">💪</text></svg>');
    opacity: 0.3;
}

.campaign-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    letter-spacing: 0.05em;
    font-style: italic;
}

.campaign-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.campaign-card {
    background: transparent;
    text-align: center;
    position: relative;
}

.campaign-box {
    background: #1a2332;
    border: 3px solid #2c3e50;
    border-radius: 10px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.campaign-item-title {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.campaign-original {
    font-size: 2rem;
    color: white;
    font-weight: 700;
    text-decoration: line-through;
}

.campaign-tax {
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.campaign-result {
    position: relative;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.campaign-text {
    font-size: 2.5rem;
    color: white;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    border-bottom: 4px solid white;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.campaign-zero {
    font-size: 8rem;
    font-weight: 900;
    color: var(--accent-color);
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
    display: block;
    letter-spacing: -0.05em;
    line-height: 1;
    font-style: italic;
}

.campaign-note {
    font-size: 1rem;
    color: white;
    line-height: 1.6;
    margin: 0;
    padding: 1rem;
    text-align: center;
}

.campaign-card.campaign-featured .campaign-box {
    border-color: var(--accent-color);
    border-width: 4px;
}

/* 特典キャンペーン用の追加スタイル */
.campaign-benefits {
    background: linear-gradient(135deg, #8B8B8B 0%, #A8A8A8 100%);
}

.campaign-subtitle {
    text-align: center;
    font-size: 1.8rem;
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.campaign-benefit-title {
    font-size: 1.3rem;
    color: white;
    font-weight: 700;
    margin-top: 0.5rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.campaign-benefit-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.benefit-original {
    font-size: 1.3rem;
    color: white;
    text-decoration: line-through;
}

.benefit-arrow {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: bold;
}

.benefit-zero {
    font-size: 6rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
}

.campaign-warning {
    margin-top: 3rem;
    padding: 2.5rem;
    background: white;
    border-radius: 15px;
    text-align: center;
    border: 3px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.campaign-warning-text {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.campaign-warning-note {
    font-size: 1rem;
    color: var(--text-color);
    margin: 0;
}

/* 問題提起セクション */
.problems {
    background: var(--secondary-color);
    padding: 5rem 0;
}

.problems-content {
    margin: 3rem auto 2rem;
    max-width: 1000px;
}

.problems-visual {
    position: relative;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

.woman-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    background: var(--secondary-color);
    box-shadow: 0 0 40px rgba(245, 245, 245, 0.8);
    border: 10px solid var(--secondary-color);
}

.bubble {
    position: absolute;
    background: white;
    padding: 1.25rem 1.75rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    max-width: 280px;
    animation: float 3s ease-in-out infinite;
}

.bubble::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.bubble p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 500;
}

/* 吹き出しの配置 */
.bubble-1 {
    top: 5%;
    left: 5%;
    animation-delay: 0s;
}

.bubble-1::before {
    bottom: 20%;
    right: -10px;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
}

.bubble-2 {
    top: 15%;
    right: 5%;
    animation-delay: 0.5s;
}

.bubble-2::before {
    top: 30%;
    left: -10px;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}

.bubble-3 {
    bottom: 25%;
    left: 0%;
    animation-delay: 1s;
}

.bubble-3::before {
    top: 30%;
    right: -10px;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
}

.bubble-4 {
    bottom: 15%;
    right: 0%;
    animation-delay: 1.5s;
}

.bubble-4::before {
    top: 40%;
    left: -10px;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}

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

.problems-message {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.problems-message p {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    color: var(--text-color);
}

.problems-message strong {
    color: var(--accent-color);
}

/* 解決方法セクション */
.solution {
    background: white;
    padding: 5rem 0;
}

.solution-points {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solution-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
}

.solution-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.solution-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.solution-answer {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--accent-color);
    margin: 0;
}

.solution-result {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--secondary-color);
    border-radius: 10px;
}

.result-highlight {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.highlight-number {
    font-size: 1.8rem;
    color: var(--accent-color);
}

/* ベネフィットセクション */
.benefits {
    background: var(--secondary-color);
    padding: 5rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-item p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}

/* ターゲットセクション */
.target {
    background: white;
    padding: 5rem 0;
}

.target-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.target-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.target-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.target-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.target-item p {
    margin: 0;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* 特徴セクションの絵文字対応 */
.feature-emoji {
    font-size: 3rem;
}

/* プロフィールセクション */
.profile {
    background: var(--secondary-color);
    padding: 5rem 0;
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

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

.profile-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.profile-icon {
    font-size: 5rem;
}

.profile-name {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.profile-title {
    font-size: 1.1rem;
    color: var(--text-light);
}

.profile-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
}

.profile-intro,
.profile-experience {
    font-size: 1rem;
}

.profile-mission {
    font-size: 1.1rem;
}

/* メッセージセクション */
.message {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff5722 100%);
    color: white;
    padding: 5rem 0;
}

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

.message .section-title {
    color: white;
}

.message-heading {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.message-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 1.5rem 0;
}

.message-highlight {
    font-size: 1.3rem;
    margin-top: 2rem !important;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.message-cta {
    margin-top: 3rem;
}

.message-cta .btn {
    background: white;
    color: var(--accent-color);
}

.message-cta .btn:hover {
    background: var(--secondary-color);
}

/* お客様の声の結果表示 */
.testimonial-result {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 5px;
}

.result-icon {
    font-size: 1.5rem;
}

.result-text {
    font-weight: bold;
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* 体験セクション */
.experience {
    background: white;
    padding: 5rem 0;
}

.experience-content {
    max-width: 700px;
    margin: 3rem auto;
}

.experience-card {
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 3rem;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.experience-card.featured {
    border: 3px solid var(--accent-color);
}

.experience-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1rem;
}

.experience-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.experience-price {
    text-align: center;
    margin: 2rem 0;
}

.experience-price .price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
}

.experience-price .price-label {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-left: 0.5rem;
}

.experience-flow {
    margin: 2rem 0;
}

.experience-flow h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.flow-list {
    list-style: none;
}

.flow-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.flow-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.flow-text {
    color: var(--text-color);
    line-height: 1.6;
}

.experience-note {
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 5px;
    text-align: center;
}

.experience-note p {
    margin: 0.5rem 0;
    color: var(--text-color);
    font-size: 0.95rem;
}

/* 特典セクション */
.special-offer {
    background: var(--secondary-color);
    padding: 5rem 0;
}

.special-offer .limited {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.offer-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.offer-number {
    background: var(--accent-color);
    color: white;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.offer-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.offer-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.original-price {
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.arrow {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.special-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
}

.offer-description {
    color: var(--text-color);
    line-height: 1.6;
}

.offer-warning {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--accent-color);
}

.limited-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* FAQセクション */
.faq {
    background: white;
    padding: 5rem 0;
}

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

.faq-item {
    background: var(--secondary-color);
    margin-bottom: 1.5rem;
    border-radius: 10px;
    padding: 2rem;
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.faq-icon,
.faq-icon-answer {
    background: var(--accent-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0.5rem 0 0;
}

.faq-answer {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-left: 1rem;
}

.faq-answer p {
    margin: 0.5rem 0 0;
    color: var(--text-color);
    line-height: 1.8;
}

/* 料金シンプル表示 */
.pricing-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.pricing-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.price-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
}

.strikethrough {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.2rem;
}

/* 最終メッセージセクション */
.final-message {
    background: linear-gradient(135deg, var(--primary-color) 0%, #333 100%);
    color: white;
    padding: 5rem 0;
}

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

.final-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.final-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 1.5rem 0;
}

.final-highlight {
    font-size: 1.3rem;
    margin: 2rem 0 !important;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

/* 横向き表示の小型デバイス対応 */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    section {
        padding: 2rem 0;
    }
}

/* タブレット向けレスポンシブ（新セクション） */
@media (max-width: 768px) {
    .campaign {
        padding: 3rem 0;
    }

    .campaign-main-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .campaign-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1rem;
    }

    .campaign-text {
        font-size: 2rem;
    }

    .campaign-zero {
        font-size: 6rem;
    }

    .campaign-item-title {
        font-size: 1.5rem;
    }

    .campaign-original {
        font-size: 1.5rem;
    }

    .problems-visual {
        min-height: 500px;
        padding: 2rem 1rem;
    }

    .woman-image {
        max-width: 280px;
    }

    .bubble {
        max-width: 200px;
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }

    .bubble-1 {
        top: 3%;
        left: 2%;
    }

    .bubble-2 {
        top: 12%;
        right: 2%;
    }

    .bubble-3 {
        bottom: 22%;
        left: 2%;
    }

    .bubble-4 {
        bottom: 10%;
        right: 2%;
    }

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

    .benefit-item {
        margin: 0 1rem;
    }

    .solution-points {
        padding: 0 1rem;
    }

    .solution-result {
        margin: 2rem 1rem 0;
    }

    .target-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

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

    .profile-photo {
        width: 150px;
        height: 150px;
    }

    .profile-icon {
        font-size: 3.5rem;
    }

    .message {
        padding: 3rem 0;
    }

    .message-content,
    .final-content {
        padding: 0 1rem;
    }

    .message-heading,
    .final-title {
        font-size: 1.2rem;
    }

    .message-body p,
    .final-text p {
        font-size: 1rem;
    }

    .message-highlight,
    .final-highlight {
        font-size: 1.1rem;
        padding: 1.5rem;
    }

    .offer-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .offer-warning {
        margin: 2rem 1rem 0;
    }

    .faq-list {
        padding: 0 1rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-icon,
    .faq-icon-answer {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .pricing-simple {
        padding: 0 1rem;
    }

    .experience-content {
        padding: 0 1rem;
    }
}

/* スマートフォン向けレスポンシブ */
@media (max-width: 480px) {
    /* キャンペーンセクション */
    .campaign {
        padding: 2.5rem 0;
    }

    .campaign-main-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .campaign-grid {
        gap: 2rem;
        padding: 0 0.5rem;
    }

    .campaign-box {
        padding: 1.25rem 1.5rem;
    }

    .campaign-item-title {
        font-size: 1.3rem;
    }

    .campaign-original {
        font-size: 1.3rem;
    }

    .campaign-text {
        font-size: 1.8rem;
        border-bottom: 3px solid white;
    }

    .campaign-zero {
        font-size: 5rem;
    }

    .campaign-note {
        font-size: 0.9rem;
    }

    /* ヒーローセクション */
    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .hero-title {
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-desc-line {
        display: block;
        margin-bottom: 0.25rem;
    }

    .hero-cta-note {
        font-size: 0.8rem;
    }

    /* 問題提起セクション */
    .problems {
        padding: 3rem 0;
    }

    .problems-visual {
        min-height: 400px;
        padding: 1.5rem 0.5rem;
    }

    .woman-image {
        max-width: 220px;
    }

    .bubble {
        max-width: 160px;
        padding: 0.85rem 1rem;
        font-size: 0.8rem;
    }

    .bubble-1::before,
    .bubble-3::before {
        border-width: 8px 0 8px 8px;
    }

    .bubble-2::before,
    .bubble-4::before {
        border-width: 8px 8px 8px 0;
    }

    .bubble-1 {
        top: 2%;
        left: 1%;
    }

    .bubble-2 {
        top: 10%;
        right: 1%;
    }

    .bubble-3 {
        bottom: 20%;
        left: 1%;
    }

    .bubble-4 {
        bottom: 8%;
        right: 1%;
    }

    .problems-message {
        margin: 2rem 0.5rem 0;
        padding: 1.5rem;
    }

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

    /* 解決方法セクション */
    .solution {
        padding: 3rem 0;
    }

    .solution-points {
        padding: 0 0.5rem;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .solution-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }

    .solution-text h3 {
        font-size: 1rem;
    }

    .solution-answer {
        font-size: 1.1rem;
    }

    .solution-result {
        margin: 2rem 0.5rem 0;
        padding: 1.5rem;
    }

    .result-highlight {
        font-size: 1.1rem;
    }

    .highlight-number {
        font-size: 1.5rem;
    }

    /* ベネフィットセクション */
    .benefits {
        padding: 3rem 0;
    }

    .benefits-grid {
        gap: 0.75rem;
        margin-top: 2rem;
    }

    .benefit-item {
        padding: 1rem;
        margin: 0 0.5rem;
    }

    .benefit-icon {
        font-size: 1.2rem;
    }

    .benefit-item p {
        font-size: 0.9rem;
    }

    /* ターゲットセクション */
    .target {
        padding: 3rem 0;
    }

    .target-list {
        gap: 1rem;
        margin-top: 2rem;
        padding: 0 0.5rem;
    }

    .target-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .target-icon {
        font-size: 2rem;
    }

    .target-item p {
        font-size: 0.95rem;
    }

    /* 特徴セクション */
    .feature-emoji {
        font-size: 2.5rem;
    }

    .feature-title {
        font-size: 1.05rem;
    }

    .feature-description {
        font-size: 0.9rem;
    }

    /* プロフィールセクション */
    .profile {
        padding: 3rem 0;
    }

    .profile-photo {
        width: 120px;
        height: 120px;
    }

    .profile-icon {
        font-size: 3rem;
    }

    .profile-name {
        font-size: 1.5rem;
    }

    .profile-title {
        font-size: 0.95rem;
    }

    .profile-text {
        padding: 0 1rem;
    }

    .profile-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    /* メッセージセクション */
    .message {
        padding: 3rem 0;
    }

    .message-content {
        padding: 0 1rem;
    }

    .message-heading {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .message-body p {
        font-size: 0.95rem;
        margin: 1rem 0;
    }

    .message-highlight {
        font-size: 1rem;
        padding: 1.25rem;
        margin-top: 1.5rem !important;
    }

    .message-cta {
        margin-top: 2rem;
    }

    /* お客様の声 */
    .testimonial-result {
        padding: 0.5rem;
    }

    .result-icon {
        font-size: 1.2rem;
    }

    .result-text {
        font-size: 0.95rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    /* 体験セクション */
    .experience {
        padding: 3rem 0;
    }

    .experience-content {
        margin: 2rem 0.5rem;
    }

    .experience-card {
        padding: 2rem 1rem;
    }

    .experience-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
        top: -12px;
    }

    .experience-title {
        font-size: 1.3rem;
    }

    .experience-price .price-amount {
        font-size: 2.5rem;
    }

    .experience-price .price-label {
        font-size: 1rem;
    }

    .experience-flow h4 {
        font-size: 1.1rem;
    }

    .flow-list li {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .flow-icon {
        font-size: 1.2rem;
    }

    .flow-text {
        font-size: 0.9rem;
    }

    .experience-note {
        padding: 0.75rem;
    }

    .experience-note p {
        font-size: 0.85rem;
    }

    /* 特典セクション */
    .special-offer {
        padding: 3rem 0;
    }

    .special-offer .limited {
        font-size: 1.05rem;
    }

    .offer-grid {
        gap: 1.5rem;
        margin: 2rem 0;
        padding: 0 0.5rem;
    }

    .offer-card {
        padding: 1.5rem;
    }

    .offer-number {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .offer-title {
        font-size: 1.1rem;
    }

    .offer-price {
        gap: 0.5rem;
        margin: 1rem 0;
    }

    .original-price {
        font-size: 1.2rem;
    }

    .arrow {
        font-size: 1.2rem;
    }

    .special-price {
        font-size: 1.6rem;
    }

    .offer-description {
        font-size: 0.9rem;
    }

    .offer-warning {
        margin: 2rem 0.5rem 0;
        padding: 1.5rem;
    }

    .limited-text {
        font-size: 1.05rem;
    }

    .offer-warning p {
        font-size: 0.9rem;
    }

    /* FAQ */
    .faq {
        padding: 3rem 0;
    }

    .faq-list {
        margin: 2rem 0;
        padding: 0 0.5rem;
    }

    .faq-item {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }

    .faq-question {
        gap: 0.75rem;
    }

    .faq-icon,
    .faq-icon-answer {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .faq-answer {
        padding-left: 0.5rem;
        gap: 0.75rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    /* 料金 */
    .pricing {
        padding: 3rem 0;
    }

    .pricing-simple {
        gap: 1.5rem;
        margin: 2rem 0;
        padding: 0 0.5rem;
    }

    .pricing-item {
        padding: 1.5rem;
    }

    .pricing-item h3 {
        font-size: 1rem;
    }

    .price-value {
        font-size: 1.6rem;
    }

    .strikethrough {
        font-size: 1rem;
    }

    .pricing-note {
        padding: 1rem;
        margin: 0 0.5rem;
    }

    .pricing-note p {
        font-size: 0.85rem;
    }

    /* 最終メッセージ */
    .final-message {
        padding: 3rem 0;
    }

    .final-content {
        padding: 0 1rem;
    }

    .final-title {
        font-size: 1.15rem;
        margin-bottom: 1.5rem;
    }

    .final-text p {
        font-size: 0.95rem;
        margin: 1rem 0;
    }

    .final-highlight {
        font-size: 1rem;
        padding: 1.25rem;
        margin: 1.5rem 0 !important;
    }

    /* 予約フォーム */
    .booking {
        padding: 3rem 0;
    }

    .booking-cta-container {
        margin: 2rem 0.5rem;
        padding: 0 0.5rem;
    }

    .booking-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .booking-step p {
        font-size: 0.9rem;
    }

    .booking-line-btn {
        font-size: 1.05rem;
        padding: 1.25rem 1.5rem;
    }

    .line-icon {
        font-size: 1.3rem;
    }

    .booking-note-text {
        font-size: 0.85rem;
    }

    .booking-benefits {
        padding: 1.5rem;
        margin: 2rem 0.5rem 0;
    }

    .booking-benefits h3 {
        font-size: 1.2rem;
    }

    .process-list {
        padding-left: 1.25rem;
    }

    .process-list li {
        font-size: 0.9rem;
        margin: 0.75rem 0;
    }
}

/* 極小スマートフォン向け */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

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

    .problem-item,
    .benefit-item {
        padding: 0.85rem;
        margin: 0 0.25rem;
    }

    .solution-item {
        padding: 1.25rem;
    }

    .target-item {
        padding: 1.25rem;
    }

    .profile-photo {
        width: 100px;
        height: 100px;
    }

    .profile-name {
        font-size: 1.3rem;
    }

    .experience-card {
        padding: 1.5rem 0.85rem;
    }

    .offer-card {
        padding: 1.25rem;
    }

    .faq-item {
        padding: 1rem;
    }

    .btn-large {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
}