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

body {
    font-family: 'Hiragino Sans', 'Yu Gothic UI', 'Meiryo', Arial, sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
}

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

.hero {
    background: url('../images/説明２.jpg') center center / cover no-repeat;
    color: white;
    padding: 100px 0;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

/* フローティングパーティクル */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: heroParticles 20s linear infinite;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

@keyframes heroParticles {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0.3;
    }
}

/* フローティングアイコン */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    animation: heroFloating 6s ease-in-out infinite;
    opacity: 0.8;
}

.floating-icon i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

@keyframes heroFloating {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-20px) rotate(2deg);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-10px) rotate(-1deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-15px) rotate(1deg);
        opacity: 0.9;
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-text {
    text-align: center;
}

.service-name {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    animation: heroTitleGlow 3s ease-in-out infinite alternate;
}

@keyframes heroTitleGlow {
    0% {
        text-shadow: 0 0 20px rgba(255,255,255,0.5), 0 0 30px rgba(102, 126, 234, 0.3);
    }
    100% {
        text-shadow: 0 0 30px rgba(255,255,255,0.8), 0 0 40px rgba(102, 126, 234, 0.5);
    }
}

.subtitle {
    font-size: 1.8rem;
    display: block;
    margin-top: 10px;
}

.catchcopy {
    font-size: 2.2rem;
    font-weight: normal;
    margin-bottom: 20px;
    color: #f0f7ff;
    animation: heroSlideIn 1.5s ease-out;
}

@keyframes heroSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.subcopy {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #e0e9ff;
    animation: heroSlideIn 1.8s ease-out;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroSlideIn 2.2s ease-out;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #ff6b6b;
    color: white;
    border: 2px solid #ff6b6b;
    animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
    }
}

.btn-primary:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #667eea;
    transform: translateY(-2px);
}

section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.problems {
    background-color: #f8f9fa;
}

.problem-image {
    text-align: center;
    margin-bottom: 40px;
}

.problem-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

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

.problem-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #ff6b6b;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.problem-icon {
    flex-shrink: 0;
    margin-top: 5px;
}

.problem-icon i {
    font-size: 2rem;
    color: #ff6b6b;
}

.problem-item p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.solution-arrow {
    text-align: center;
    margin-top: 40px;
}

.arrow-text {
    font-size: 1.4rem;
    font-weight: bold;
    color: #ff6b6b;
    background: white;
    padding: 20px 40px;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
}

.strength-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.strength-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.strength-item:hover {
    transform: translateY(-5px);
}

.strength-icon {
    margin-bottom: 20px;
}

.strength-icon i {
    font-size: 3rem;
    color: #667eea;
}

.strength-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #667eea;
}

.service-image {
    text-align: center;
    margin-bottom: 40px;
}

.service-image img {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-content {
    background-color: #f8f9fa;
}

.service-highlight {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.service-highlight h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.service-highlight p {
    font-size: 1.1rem;
    margin: 0;
}

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

.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card-icon {
    margin-bottom: 20px;
}

.service-card-icon i {
    font-size: 2.5rem;
    color: #667eea;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.service-details {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid #f0f0f0;
}

.service-price, .service-period {
    margin: 5px 0;
    font-weight: bold;
    color: #667eea;
}

.service-highlight-box {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #667eea;
}

.service-highlight-box p {
    margin: 5px 0;
    font-size: 0.9rem;
    text-align: left;
}

.featured-service {
    border: 3px solid #667eea;
    background: linear-gradient(135deg, #f8f9ff, #ffffff);
}

.service-package {
    margin-top: 40px;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid #ff6b6b;
}

.package-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.package-pricing, .package-timeline {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.price-main {
    font-size: 2rem;
    font-weight: bold;
    color: #ff6b6b;
    margin: 10px 0;
}

.recommended-for h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 1.4rem;
}

.recommendation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.recommendation-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f0f7ff;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.recommendation-item i {
    font-size: 1.5rem;
    color: #667eea;
    flex-shrink: 0;
}

.recommendation-item p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

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

.benefit-item {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-icon i {
    font-size: 3rem;
    color: white;
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.benefit-example {
    font-size: 0.9rem;
    margin-top: 10px;
    color: #e0e9ff;
}

.benefit-image {
    text-align: center;
    margin-bottom: 40px;
}

.benefit-image img {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.pricing {
    background-color: #f8f9fa;
}

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

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-icon {
    margin-bottom: 20px;
}

.pricing-icon i {
    font-size: 2.5rem;
    color: #667eea;
}

.pricing-card.recommended .pricing-icon i {
    color: #ff6b6b;
}

.pricing-card.recommended {
    border: 3px solid #ff6b6b;
    transform: scale(1.05);
}

.pricing-card.recommended::before {
    content: "おすすめ";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b6b;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 15px;
}

.pricing-note {
    text-align: center;
}

.pricing-note p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff6b6b;
    background: white;
    padding: 20px 40px;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
}

/* リッチなフローデザイン */
.flow-intro {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.2rem;
    color: #666;
}

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

.flow-step-rich {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.flow-step-rich:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.flow-step-rich.final-step {
    border: 3px solid #ff6b6b;
    background: linear-gradient(135deg, #fff5f5, #ffffff);
}

.step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.step-icon i {
    font-size: 2rem;
    color: white;
}

.step-number {
    background: #f8f9fa;
    color: #667eea;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    border: 2px solid #667eea;
}

.final-step .step-icon {
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.final-step .step-number {
    background: #ff6b6b;
    color: white;
    border: 2px solid #ff6b6b;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.step-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.step-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    font-size: 0.9rem;
}

.detail-item i {
    font-size: 1rem;
}

.step-highlight {
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 15px;
    text-align: center;
}

.flow-connector {
    width: 3px;
    height: 40px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.flow-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9ff, #ffffff);
    border-radius: 15px;
    border: 2px solid #667eea;
}

.flow-cta h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.flow-cta p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
    gap: 10px;
}

.testimonials {
    background-color: #f8f9fa;
}

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

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    font-size: 1.1rem;
    font-style: italic;
    position: relative;
}

.testimonial-card::before {
    content: """;
    font-size: 3rem;
    color: #667eea;
    position: absolute;
    top: 10px;
    left: 20px;
}

.contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.contact h2 {
    color: white;
}

.company-info {
    margin-bottom: 40px;
}

.company-info p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.contact-note {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-note p {
    color: rgba(255, 255, 255, 0.9);
    margin: 5px 0;
    font-size: 1rem;
}

/* Q&Aセクション */
.faq {
    background-color: #f8f9fa;
}

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

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

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

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

.faq-question:hover {
    background-color: #f8f9ff;
}

.faq-question.active {
    background-color: #667eea;
    color: white;
}

.faq-question i.fas.fa-question-circle {
    font-size: 1.5rem;
    color: #667eea;
    flex-shrink: 0;
}

.faq-question.active i.fas.fa-question-circle {
    color: white;
}

.faq-question h3 {
    flex: 1;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
}

.faq-toggle {
    font-size: 1rem;
    transition: transform 0.3s ease;
    color: #667eea;
    flex-shrink: 0;
}

.faq-question.active .faq-toggle {
    transform: rotate(180deg);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f8f9ff;
}

.faq-answer.active {
    max-height: 200px;
    padding: 20px 30px 25px;
}

.faq-answer p {
    margin: 0;
    color: #333;
    line-height: 1.7;
    font-size: 1rem;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-cta h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.faq-cta p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 40px 0;
}

/* 固定CTAボタン */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.floating-cta.show {
    opacity: 1;
    transform: translateY(0);
    animation: floatUpDown 3s ease-in-out infinite;
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 1rem;
    min-width: 140px;
    justify-content: center;
}

.floating-cta-btn:hover {
    background: linear-gradient(135deg, #ff5252, #ff4444);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
    color: white;
}

.floating-cta.show:hover {
    animation-play-state: paused;
}

.floating-cta-btn i {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.floating-cta-text {
    white-space: nowrap;
}

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

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

/* タブレット用スタイル */
@media (max-width: 1024px) {
    .hero {
        min-height: 500px;
        padding: 80px 0;
    }
    
    .floating-icon i {
        font-size: 2rem;
    }
    
    .service-name {
        font-size: 2.5rem;
    }
    
    .catchcopy {
        font-size: 2rem;
    }
    
    .subcopy {
        font-size: 1.2rem;
    }
    
    .strength-grid,
    .service-grid,
    .benefit-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* スマートフォン用スタイル */
@media (max-width: 768px) {
    /* 固定CTAボタンのモバイル調整 */
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-cta-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-width: 120px;
    }
    
    .floating-cta-btn i {
        font-size: 1rem;
    }
    
    /* サービスパッケージのモバイル調整 */
    .package-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .recommendation-grid {
        grid-template-columns: 1fr;
    }
    
    /* フローステップのモバイル調整 */
    .flow-step-rich {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }
    
    .step-visual {
        min-width: auto;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 1.5rem;
    }
    
    .step-details {
        justify-content: center;
        gap: 15px;
    }
    
    .flow-cta {
        padding: 25px 15px;
    }
    
    /* お問い合わせセクションのモバイル調整 */
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    /* Q&Aセクションのモバイル調整 */
    .faq-question {
        padding: 20px 20px;
        gap: 15px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer.active {
        padding: 15px 20px 20px;
        max-height: 250px;
    }
    
    .faq-cta {
        padding: 30px 20px;
    }
    
    /* モバイル用フローティングアイコン調整 */
    .floating-icon {
        display: none;
    }
    
    .hero {
        min-height: 450px;
        padding: 60px 0;
        background-position: center top;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .service-name {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .subtitle {
        font-size: 1.2rem;
        margin-top: 8px;
    }
    
    .catchcopy {
        font-size: 1.6rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .subcopy {
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.5;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    section h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .problem-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .problem-icon i {
        font-size: 1.5rem;
    }
    
    .strength-grid,
    .service-grid,
    .benefit-list,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .strength-item,
    .service-card,
    .benefit-item,
    .pricing-card {
        padding: 25px 15px;
    }
    
    .pricing-card.recommended {
        transform: none;
        margin: 10px 0;
    }
    
    .flow-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-image img,
    .service-image img,
    .benefit-image img {
        max-width: 100%;
    }
}

/* 小さなスマートフォン用 */
@media (max-width: 480px) {
    /* 固定CTAボタンの小さなスマホ調整 */
    .floating-cta {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-cta-btn {
        padding: 10px 15px;
        font-size: 0.8rem;
        min-width: 100px;
        gap: 8px;
    }
    .hero {
        min-height: 400px;
        padding: 40px 0;
    }
    
    .service-name {
        font-size: 1.6rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .catchcopy {
        font-size: 1.4rem;
    }
    
    .subcopy {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
    
    .strength-icon i,
    .benefit-icon i {
        font-size: 2rem;
    }
    
    .service-card-icon i,
    .pricing-icon i {
        font-size: 2rem;
    }
    
    .problem-item,
    .strength-item,
    .service-card,
    .benefit-item,
    .pricing-card {
        padding: 20px 10px;
    }
}