/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基本設定 */
html {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    transform: translate3d(0, 0, 0);
    -webkit-overflow-scrolling: touch;
}

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

/* ナビゲーション */
.nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    min-width: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateZ(0);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-img {
    height: 70px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    margin-top: 10px;
}

.logo h1 {
    font-size: 28px;
    color: #2E7D32;
    font-weight: bold;
}

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

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

.nav-menu a:hover {
    color: #2E7D32;
}

.cta-button {
    background: #2E7D32 !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    transition: background 0.3s ease !important;
}

.cta-button:hover {
    background: #1B5E20 !important;
}

/* 購入ボタン */
.purchase-button {
    display: flex;
    align-items: center;
    background: #FF6B35;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: line-through;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
    height: 44px;
    box-sizing: border-box;
}

.purchase-button:hover {
    background: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.mobile-only {
    display: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* お問合せボタン */
.contact-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #2e7e33;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(46, 126, 51, 0.3);
    height: 44px;
    box-sizing: border-box;
}

.contact-button:hover {
    background: #1a5e20;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 126, 51, 0.4);
}

/* 料金ボタン（旧電話ボタン） */
.phone-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #2e7e33;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(46, 126, 51, 0.3);
    height: 44px;
    box-sizing: border-box;
}

.phone-button:hover {
    background: #1a5e20;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 126, 51, 0.4);
}

.phone-icon {
    font-size: 16px;
}

.phone-text {
    font-size: 14px;
}

/* ヒーローセクション */
.hero {
    background: linear-gradient(135deg, rgba(232, 245, 232, 0.7) 0%, rgba(241, 248, 233, 0.7) 100%);
    padding: 80px 0 80px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
}

/* .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(232, 245, 232, 0.5) 0%, rgba(241, 248, 233, 0.5) 100%);
    z-index: 1;
} */

.hero-container {
    position: relative;
    /* z-index: 2; */
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    line-height: 1.3;
    color: #2E7D32;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #df5d2b;
    color: white;
    box-shadow: 0 4px 15px rgba(223, 93, 43, 0.3);
}

.btn-primary:hover {
    background: #c54924;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(223, 93, 43, 0.4);
}

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

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

.btn-full {
    width: 100%;
}

/* ヒーロー画像 */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.hero-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


/* LINEテキストの強調スタイル */
.line-highlight {
    color: #00B900;  /* LINE公式カラー */
    font-weight: 900;
    font-size: 1.1em;
    display: inline-block;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 185, 0, 0.2);
    animation: pulse-line 2s ease-in-out infinite;
}

/* 改行防止スタイル */
.no-break {
    white-space: nowrap;
}

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

/* 認定バッジのスタイル - アイキャッチ画像の右上にオーバーレイ */
.kounin-badges {
    position: absolute;
    top: -30px;
    right: -10px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 5px;
    flex-wrap: nowrap;
    z-index: 10;
    overflow: visible;
}

.kounin-badge {
    height: 85px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.kounin-badge:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* セクション共通スタイル */
section {
    padding: 80px 0;
}

/* 悩みセクション */
.problems-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}


.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.problem-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

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

.problem-icon {
    font-size: 60px;
    margin-bottom: 0px;
    display: block;
}

.problem-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

/* 課題画像専用カード */
.kadai-image-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.kadai-flow-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.kadai-left, .kadai-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.kadai-arrow {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

.arrow-symbol {
    font-size: 3rem;
    color: #4CAF50;
    font-weight: bold;
}

.kadai-text {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.success-text {
    color: #4CAF50;
    font-weight: bold;
}

.kadai-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 300px;
}

.kadai-image {
    max-width: 90%;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* スマホ対応 - 課題画像 */
@media (max-width: 768px) {
    .kadai-image-container {
        max-width: 200px;
    }
    
    .kadai-image {
        max-height: 150px;
    }
}

@media (max-width: 480px) {
    .kadai-image-container {
        max-width: 150px;
    }
    
    .kadai-image {
        max-height: 120px;
    }
}

/* インターネット関連画像のスタイル */
.problem-image-large {
    width: auto;
    height: 250px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.solution-image {
    margin: 15px 0;
    text-align: center;
}

.interneto-image {
    max-width: 100%;
    width: auto;
    height: 250px;
    object-fit: contain;
}

/* モバイル対応 - インターネット画像 */
@media (max-width: 768px) {
    .problem-image-large {
        height: 250px;
    }
    
    .interneto-image {
        height: 250px;
    }
}

.problem-title {
    color: #333;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.4;
}

.solution {
    margin-top: 25px;
}

.solution-arrow {
    font-size: 24px;
    color: #df5d2b;
    margin: 15px 0;
    font-weight: bold;
}

.solution-content {
    background: linear-gradient(135deg, #fff5f3 0%, #ffe8e1 100%);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #df5d2b;
}

.solution-label {
    display: inline-block;
    background: #df5d2b;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
}

.solution-content p {
    margin: 10px 0 0 0;
    color: #333;
    font-weight: 500;
    line-height: 1.6;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
        padding: 0;
        margin: 40px 0 0 0;
        width: 100%;
        overflow: hidden;
    }
    
    .problem-card {
        padding: 20px 20px;
    }
    
    .kadai-flow-card {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 1rem;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .kadai-left, .kadai-right {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .kadai-image-container {
        max-width: 200px;
        width: 100%;
    }
    
    .kadai-arrow {
        transform: rotate(90deg);
        padding: 0.5rem 0;
        align-self: center;
    }
    
    .arrow-symbol {
        font-size: 2rem;
    }
    
    .kadai-text {
        font-size: 0.85rem;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .problem-icon {
        font-size: 50px;
    }
    
    .problem-title {
        font-size: 18px;
    }
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #2E7D32;
    margin-bottom: 60px;
    font-weight: bold;
}

.section-title-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* PC用のここわとは画像 */
@media (min-width: 769px) {
    .service-section .section-title-img {
        content: url('images/cocowa_pc_toha.png');
    }
}

/* サービス説明セクション */
.service-section {
    background: #fff;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* PC表示ではモバイル用画像を非表示 */
.service-mobile-image {
    display: none;
}

.service-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-left .section-title {
    text-align: left;
    margin-bottom: 0;
}

.service-left .section-title .cocowatowa-image {
    max-width: 300px;
    height: auto;
}

.logo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.logo-header::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2E7D32, #4CAF50);
    border-radius: 2px;
}

.service-logo {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 2px;
}

.orange-text {
    color: #df5d2b;
}

.small-green {
    font-size: 24px;
    color: #4CAF50;
}

.service-content .service-text {
    text-align: left;
}

/* 利用者の声セクション */
.testimonials-section {
    background: white;
    padding: 80px 0;
}

.testimonials-container {
    margin-top: 40px;
}

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

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-image {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.user-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4CAF50;
}

.user-info {
    text-align: center;
    margin-bottom: 20px;
}

.user-name {
    font-weight: bold;
    color: #2E7D32;
    font-size: 16px;
    margin-bottom: 5px;
}

.user-location {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.testimonial-text {
    color: #333;
    line-height: 1.7;
    font-size: 14px;
    margin: 0;
}

/* カルーセルインジケーター（モバイル用） */
.carousel-indicators {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: #4CAF50;
}

/* モバイル対応 - 利用者の声 */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 0 20px;
        margin: 0 -20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }
    
    .testimonial-card {
        flex: 0 0 280px;
        scroll-snap-align: center;
        padding: 25px 20px;
    }
    
    .carousel-indicators {
        display: flex;
    }
    
    .user-photo {
        width: 100px;
        height: 100px;
    }
    
    .user-name {
        font-size: 15px;
    }
    
    .user-location {
        font-size: 13px;
    }
    
    .testimonial-text {
        font-size: 13px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        flex: 0 0 260px;
        padding: 20px 15px;
    }
    
    .user-photo {
        width: 80px;
        height: 80px;
    }
    
    .user-name {
        font-size: 18px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
}

/* 料金セクション */
.pricing-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.pricing-content {
    margin-top: 30px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
}

.pricing-card {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-plus {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #4CAF50;
    border-radius: 50%;
    margin: 0 auto;
}

.pricing-plus span {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.pricing-card h3 {
    font-size: 20px;
    color: #2E7D32;
    margin-bottom: 10px;
    font-weight: bold;
}

.price-with-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price {
    margin-bottom: 0;
}

.free-shipping-badge {
    margin-bottom: 0;
}

.free-shipping-badge p {
    background: #4CAF50;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 15px;
    margin: 0;
    display: inline-block;
    white-space: nowrap;
}

.price-amount {
    font-size: 36px;
    font-weight: bold;
    color: #df5d2b;
}

.price-unit {
    font-size: 20px;
    color: #333;
    margin-left: 5px;
}

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

.price-includes {
    text-align: left;
}

/* Promotional pricing styles */
.price-promotion {
    text-align: center;
    margin-bottom: 20px;
}

.original-price {
    margin-bottom: 10px;
}

.strikethrough {
    text-decoration: line-through;
    opacity: 0.6;
    color: #df5d2b;
}

.price-arrow-down {
    font-size: 18px;
    color: #df5d2b;
    margin: 5px 0;
    font-weight: bold;
}

.free-first-month {
    margin: 0;
    padding: 0;
}

.free-text {
    font-size: 39px;
    font-weight: bold;
    color: #e74c3c;
    background: linear-gradient(45deg, #e74c3c, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(231, 76, 60, 0.3);
}

.price-note {
    margin-top: 5px;
}

.price-note p {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.price-includes p {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.price-includes ul {
    list-style: none;
    padding: 0;
}

.price-includes li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.price-includes li::before {
    content: '✓';
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.pricing-cta {
    text-align: center;
    margin: 40px 0 30px 0;
}

.pricing-btn {
    font-size: 18px;
    padding: 15px 40px;
    border-radius: 30px;
    background: linear-gradient(135deg, #df5d2b, #ff7043);
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(223, 93, 43, 0.3);
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(223, 93, 43, 0.4);
    text-decoration: none;
    color: white;
}

/* 準備中表示 */
.purchase-coming-soon {
    text-align: center;
}

.purchase-disabled {
    display: inline-block;
    font-size: 18px;
    padding: 15px 40px;
    border-radius: 30px;
    background: linear-gradient(135deg, #df5d2b, #ff7043);
    color: white;
    font-weight: bold;
    text-decoration: line-through;
    margin-bottom: 15px;
    position: relative;
    box-shadow: 0 4px 15px rgba(223, 93, 43, 0.3);
}

.coming-soon-text {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin: 10px 0;
}

.coming-soon-note {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 10px 0;
}

.line-friend-btn {
    display: inline-block;
    background: #00C300;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 195, 0, 0.3);
}

.line-friend-btn:hover {
    background: #00A300;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 195, 0, 0.4);
    text-decoration: none;
    color: white;
}

.pricing-notes {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}


.pricing-disclaimer p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .pricing-section {
        padding: 40px 0;
    }
    
    .pricing-content {
        margin-top: 20px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .pricing-plus {
        width: 30px;
        height: 30px;
    }
    
    .pricing-plus span {
        font-size: 18px;
    }
    
    .pricing-card {
        padding: 15px 12px;
    }
    
    .pricing-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .price-with-badge {
        gap: 8px;
    }
    
    .price {
        margin-bottom: 0;
    }
    
    .price-amount {
        font-size: 28px;
    }
    
    .price-unit {
        font-size: 18px;
    }
    
    .price-tax {
        font-size: 12px;
    }
    
    .price-includes p {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .price-includes li {
        padding: 3px 0;
        padding-left: 18px;
        font-size: 14px;
    }
    
    .pricing-cta {
        margin: 30px 0 20px 0;
    }
    
    .pricing-btn {
        font-size: 16px;
        padding: 12px 30px;
    }
    
    .purchase-disabled {
        font-size: 16px;
        padding: 12px 30px;
    }
    
    .coming-soon-text {
        font-size: 18px;
        color: #000;
    }
    
    .coming-soon-note {
        font-size: 13px;
    }
    
    .line-friend-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .pricing-notes {
        padding-top: 15px;
    }
    
    
    .pricing-disclaimer p {
        font-size: 12px;
    }
}

.service-text h3 {
    font-size: 27px;
    color: #2E7D32;
    margin-bottom: 20px;
}

.service-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

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

.service-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

.product-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 特徴セクション */
.features-section {
    background: #F8F9FA;
}

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

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

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

.feature-icon {
    font-size: 80px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-icon img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
/* ここわの機能セクション専用のスタイル */
#functions .features-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}
#functions .feature-card {
    text-align: left;
}
#functions .feature-content h3 {
    margin-top: 0;
    margin-bottom: 20px;
}
#functions .feature-icon {
    width: 200px;
    height: auto;
    float: left;
    margin: -5px 30px 20px 0;
    flex-shrink: 0;
}
#functions .feature-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
/* PC表示: タイトルを上に、画像は左に回り込み */
@media (min-width: 769px) {
    #functions .feature-content h3 {
        margin-top: 0;
        margin-bottom: 15px;
        clear: none;
    }
    #functions .feature-icon {
        width: 200px;
        height: auto;
        float: left;
        margin: -5px 30px 20px 0;
    }
    #functions .kinkyu-icon,
    #functions .graph-icon {
        width: 200px;
        height: auto;
        float: left;
        margin: -5px 30px 20px 0;
    }
    #functions .kinkyu-icon img,
    #functions .graph-icon img,
    #functions .feature-icon img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}
/* モバイル用レスポンシブ */
@media (max-width: 768px) {
    #functions .feature-card {
        text-align: center;
    }
    #functions .feature-icon {
        float: none;
        margin: 20px auto;
        display: block;
    }
    #functions .kinkyu-icon,
    #functions .graph-icon {
        width: 100%;
        height: auto;
        float: none;
        margin: 20px 0;
    }
    #functions .kinkyu-icon img,
    #functions .graph-icon img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}

.line-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.product-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.easy-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.hours-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.family-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.price-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.feature-content {
    flex: 1;
}

.feature-card h3 {
    font-size: 20px;
    color: #2E7D32;
    margin-bottom: 10px;
    font-weight: bold;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 利用の流れセクション */
.flow-section {
    background: white;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2E7D32;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
    position: relative;
}

.step-number::after {
    content: '→';
    position: absolute;
    top: 50%;
    left: 70px;
    transform: translateY(-50%);
    font-size: 20px;
    color: #2E7D32;
}

.step:last-child .step-number::after {
    display: none;
}

.step h3 {
    font-size: 20px;
    color: #2E7D32;
    margin-bottom: 15px;
    font-weight: bold;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* 本体情報セクション */
.device-info-container {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 40px;
    overflow: hidden;
}

.device-info-toggle {
    padding: 20px 25px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.device-info-toggle:hover {
    background: #e9ecef;
}

.device-info-toggle h3 {
    margin: 0;
    color: #2E7D32;
    font-size: 18px;
    font-weight: bold;
}

.toggle-icon {
    font-size: 24px;
    color: #2E7D32;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.device-info-content {
    display: none;
    padding: 0;
    overflow: hidden;
}

.device-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.device-specs-table th,
.device-specs-table td {
    padding: 15px 25px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.device-specs-table th {
    background: #f8f9fa;
    font-weight: bold;
    color: #2E7D32;
    width: 30%;
}

.device-specs-table td {
    color: #333;
}

.device-specs-table tr:last-child th,
.device-specs-table tr:last-child td {
    border-bottom: none;
}

/* モバイル対応 - 本体情報 */
@media (max-width: 768px) {
    .device-info-toggle {
        padding: 15px 20px;
    }
    
    .device-info-toggle h3 {
        font-size: 16px;
    }
    
    .device-specs-table th,
    .device-specs-table td {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .device-specs-table th {
        width: 35%;
    }
}

/* よくある質問セクション */
.faq-section {
    background: white;
    padding: 80px 0;
}

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

.faq-item {
    background: white;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

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

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F8F9FA;
    border-bottom: 1px solid #E0E0E0;
}

.faq-question h3 {
    margin: 0;
    color: #2E7D32;
    font-size: 18px;
    font-weight: bold;
}

.faq-toggle {
    font-size: 24px;
    color: #2E7D32;
    font-weight: bold;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* お問い合わせセクション */
.contact-section {
    background: #F8F9FA;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-text h3 {
    font-size: 28px;
    color: #2E7D32;
    margin-bottom: 20px;
}

.contact-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.contact-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-contact {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.form-contact .icon {
    font-size: 24px;
}

.form-contact strong {
    color: #2E7D32;
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

.form-contact p {
    margin-bottom: 15px;
    color: #555;
}

.form-contact-button {
    display: inline-block;
    background-color: #df5d2b;
    color: white !important;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(223, 93, 43, 0.3);
}

.form-contact-button:hover {
    background-color: #c54924;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(223, 93, 43, 0.4);
}

.phone-contact {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.phone-contact .icon {
    font-size: 24px;
}

.phone-contact strong {
    color: #2E7D32;
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
}

.phone-contact a {
    color: #df5d2b;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.phone-contact a:hover {
    color: #c54924;
    text-decoration: underline;
}

/* フォーム */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2E7D32;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2E7D32;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* フッター */
.footer {
    background: #2E7D32;
    color: white;
    padding: 40px 0 20px;
}

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

.footer-logo h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #C8E6C9;
    line-height: 1.6;
}

.footer-contact h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-contact p {
    color: #C8E6C9;
    margin-bottom: 8px;
}

.footer-contact a {
    color: #C8E6C9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: white;
    text-decoration: underline;
}

.footer-company h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-company p {
    color: #C8E6C9;
    margin-bottom: 8px;
}

.footer-company a {
    color: #C8E6C9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-company a:hover {
    color: white;
    text-decoration: underline;
}

.footer-links h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-links p {
    color: #C8E6C9;
    margin-bottom: 8px;
}

.footer-links a {
    color: #C8E6C9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4CAF50;
    color: #C8E6C9;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 10px;
        height: 56px;
        justify-content: space-between;
        display: flex;
        align-items: center;
    }
    
    .nav-right {
        display: flex;
        align-items: center;
        gap: 3px;
    }
    
    .contact-button,
    .purchase-button {
        padding: 5px 8px;
        font-size: 13px;
        height: 30px;
        box-sizing: border-box;
        white-space: nowrap;
    }
    
    .phone-button {
        padding: 5px 8px;
        font-size: 13px;
        gap: 2px;
        height: 30px;
        box-sizing: border-box;
        white-space: nowrap;
    }
    
    .phone-icon {
        font-size: 11px;
    }
    
    .cta-button {
        margin-top: 10px;
        padding: 15px 30px !important;
    }
    
    .logo-img {
        height: 40px;
        max-width: 250px;
    }
    
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-container {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 0 10px;
        margin: 0;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-image {
        order: -1;
        margin: 0;
        width: 100%;
        max-width: none;
        overflow: hidden;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        position: relative;
        z-index: 1;
        padding: 0 20px;
    }
    
    /* SP表示時は画像を画面幅いっぱいに */
    .hero-img {
        width: 100% !important;
        max-width: none !important;
        height: auto;
        display: block;
        border-radius: 0 !important;
        box-shadow: none !important;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .service-content {
        display: block;
        position: relative;
        text-align: center;
    }
    
    .service-text {
        position: relative;
        z-index: 3;
    }
    
    .service-text h3 {
        text-align: center;
        margin-bottom: 20px;
        position: relative;
        z-index: 3;
    }
    
    .service-text h3 br {
        display: block;
    }
    
    /* モバイルでの画像表示 */
    .service-mobile-image {
        display: block;
        width: 180px;
        margin: 20px auto;
    }
    
    .service-mobile-image img {
        width: 100%;
        height: auto;
        border-radius: 15px;
    }
    
    .service-text p {
        text-align: left;
        padding-right: 0;
        position: relative;
        z-index: 2;
    }
    
    .service-image {
        display: none;
    }
    
    .product-img {
        max-width: 180px;
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-steps {
        grid-template-columns: 1fr;
    }
    
    .step {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        text-align: left;
    }
    
    .step-number {
        flex-shrink: 0;
        margin: 0;
    }
    
    .step-number::after {
        content: '↓';
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 10px;
    }
    
    .step-content {
        flex: 1;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-title-img {
        height: 120px;
    }
    
    .section-title {
        padding: 0;
        margin: 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 30px 0;
    }
    
    .service-section {
        padding: 0;
        margin: 0;
    }
    
    .mobile-fixed-cta {
        display: block;
    }
    
    body {
        padding-bottom: 0px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 8px;
    }
    
    .nav-right {
        gap: 2px;
    }
    
    .contact-button,
    .purchase-button {
        padding: 4px 6px;
        font-size: 12px;
    }
    
    .phone-button {
        padding: 4px 6px;
        font-size: 12px;
    }
    
    .hero-container {
        padding: 0 5px;
    }
    
    .hero {
        padding: 60px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-img {
        width: 100%;
        max-width: none;
        height: auto;
        border-radius: 0;
    }
    
    /* 課題カードのさらなる調整 */
    .kadai-flow-card {
        padding: 1rem 0.8rem;
        gap: 0.8rem;
        margin: 0;
    }
    
    .kadai-text {
        font-size: 0.8rem;
        padding: 0 0.5rem;
    }
    
    .kadai-image-container {
        max-width: 150px;
    }
    
    .arrow-symbol {
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}

/* スマートフォン用固定CTA */
.mobile-fixed-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
}

.mobile-cta-img {
    width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    display: block;
}

/* スマートフォン用オーバーレイCTA（下部固定型） */
.mobile-overlay {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2000;
    animation: overlaySlideUp 0.5s ease-out;
}

@media (min-width: 769px) {
    .mobile-overlay {
        display: none !important;
    }
}

.mobile-overlay-content {
    position: relative;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.mobile-overlay-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 2001;
    backdrop-filter: blur(5px);
}

.mobile-overlay-close:hover {
    background: rgba(245, 245, 245, 0.95);
    color: #333;
}

.mobile-overlay-img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes overlaySlideUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Safari用追加修正 */
@supports (-webkit-appearance: none) {
    body {
        -webkit-transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
    }
    
    .nav {
        -webkit-transform: translateZ(0);
        -webkit-backface-visibility: hidden;
    }
}

/* iOS Safari専用修正 */
@supports (-webkit-touch-callout: none) {
    html, body {
        -webkit-overflow-scrolling: auto;
        overflow-x: hidden !important;
        position: relative;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }
    
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .nav-container,
    .container,
    .hero-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
}

/* 問題・解決カードデザイン */
.problems-grid .problem-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e8e8e8;
    margin-bottom: 8px;
}

.card-content {
    padding: 0;
}

.problem-section {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 8px;
    text-align: left;
}

.problem-icon-wrapper {
    flex-shrink: 0;
}

.problem-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.problem-text-wrapper {
    flex: 1;
}

.problem-text {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.problem-detail {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.solution-arrow {
    text-align: center;
    margin: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 16px solid #ff6b35;
    margin: 0 auto;
}

.arrow-right {
    width: 0;
    height: 0;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 25px solid #ff6b35;
    margin: 0 auto;
}

.mobile-only {
    display: block;
}

.desktop-only {
    display: none;
}

.solution-section {
    text-align: center;
}

.solution-badge {
    display: inline-block;
    margin-bottom: 10px;
}

.badge-label {
    background: #ff6b35;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: bold;
}

.line-badge,
.visit-badge,
.net-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff8f5;
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid #ff6b35;
    margin-bottom: 15px;
}

.visit-emoji,
.net-emoji {
    font-size: 20px;
}

.solution-label-orange {
    color: #ff6b35;
    font-weight: 600;
    font-size: 14px;
}

.solution-text {
    font-size: 14px;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

/* PC表示時のレイアウト */
@media (min-width: 769px) {
    .problems-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .problems-grid .problem-card {
        max-width: 100%;
    }
    
    .card-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        gap: 15px;
    }
    
    .problem-section {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
    }
    
    .solution-section {
        flex: 1;
        text-align: center;
    }
    
    .solution-arrow {
        flex: 0 0 auto;
        margin: 0 10px;
    }
    
    .mobile-only {
        display: none;
    }
    
    .desktop-only {
        display: block;
    }
    
    .problem-icon {
        width: 80px;
        height: 80px;
    }
    
    .problem-text {
        font-size: 18px;
    }
    
    .problem-detail {
        font-size: 14px;
    }
    
    .solution-text {
        font-size: 15px;
    }
}

/* モバイル表示調整 */
@media (max-width: 768px) {
    .problems-grid {
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .problem-icon-mobile {
        width: 60px;
        height: 60px;
    }
    
    .card-content {
        padding: 0;
    }
    
    .problems-grid .problem-card {
        margin-bottom: 6px;
    }
    
    .problem-section {
        margin-bottom: 6px;
    }
    
    .solution-arrow {
        margin: 6px 0;
    }
}

/* スムーススクロール */
html {
    scroll-behavior: smooth;
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ヒーローセクションのアニメーション */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-up-delay {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.fade-in-up-delay-1 {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.fade-in-up-delay-2 {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

.feature-card,
.step,
.service-text,
.contact-text {
    animation: fadeInUp 0.6s ease-out;
}