/* Hamburger Button and Offcanvas Custom Styles */

:root {
    /* number variables */
    --depth-025: 1px;

    /* responsive margins / paddings */
    --margin-sm: 16px;
    --margin-md: 32px;
}

.header {
    background-color: #fff;
    padding: 15px 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Anchor link scroll offset for fixed header */
#contactForm,
#contactTEL,
#service,
#area-map,
#pricing,
#faq {
    scroll-margin-top: 120px;
}
.header .logo {
    display: flex;
    align-items: center;
    /* gap: var(--margin-md); */
}
.header .logo a {
    display: flex;
    align-items: center;
    gap: var(--margin-md);
    min-height: auto !important;
}
.header .logo img {
    width: auto;
}
.header .logo .home-link img {
    max-height: 40px;
}
.header .logo .com-link img {
    max-height: 26px;
}
@media (min-width: 1200px) {
}
@media (max-width: 1199px) {
    .header .logo .home-link img {
        max-height: 36px;
    }
    .header .logo .com-link img {
        max-height: 20px;
    }
}
@media (max-width: 767.98px) {
    .header .logo {
        flex-direction: column;
        gap: 0;
    }
    .header .logo a {
        flex-direction: column;
        gap: var(--margin-sm);
    }
    .header .logo .home-link img {
        max-height: 30px;
    }
    .header .logo .com-link img {
        max-height: 16px;
    }
}

/* Desktop Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #007bff;
}

.contact-button {
    background-color: #007bff;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
    border: 2px solid #007bff;
    transition: all 0.3s;
}

.contact-button:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    font-size: 20px;
}

/* Hamburger Menu Button */
.hamburger-btn {
    background: linear-gradient(135deg, #005AA6 0%, #0074d9 100%);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 90, 166, 0.25);
    transition: all 0.3s ease;
}

.hamburger-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 90, 166, 0.35);
}

.hamburger-btn i {
    color: #fff;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.hamburger-btn:active {
    transform: translateY(0);
}

/* Offcanvas Customization */
.offcanvas {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    box-shadow: -4px 0 24px rgba(0, 90, 166, 0.12);
    width: 85% !important;
    max-width: 320px;
}

/* Prevent body scroll when offcanvas is open */
body.offcanvas-open {
    overflow: hidden;
}

/* Backup: prevent scroll with offcanvas visible */
.offcanvas.show ~ body,
body:has(.offcanvas.show) {
    overflow: hidden;
}

/* Offcanvas backdrop customization */
.offcanvas-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: auto !important;
}

.offcanvas-backdrop.show {
    opacity: 1;
}

.offcanvas-header {
    border-bottom: none;
    padding: 28px 30px;
    background: linear-gradient(135deg, #005AA6 0%, #0074d9 100%);
}

.offcanvas-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -0.5px;
}

.offcanvas-header .btn-close {
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 1;
}

.offcanvas-header .btn-close:focus {
    background-color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.offcanvas-body {
    padding: 0;
    background-color: #fff;
}

.offcanvas-nav {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

.offcanvas-nav a {
    padding: 14px 30px;
    text-decoration: none;
    color: #444;
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 1px solid #e8e8e8;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    letter-spacing: -0.3px;
}

.offcanvas-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #005AA6 0%, #0074d9 100%);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 2px 2px 0;
}

.offcanvas-nav a i {
    font-size: 11px;
    transition: transform 0.3s;
}

.offcanvas-nav a:hover {
    background-color: #f0f5fb;
    color: #005AA6;
    padding-left: 35px;
    border-bottom-color: #d0e0f0;
}

.offcanvas-nav a:hover::before {
    transform: scaleY(1);
}

.offcanvas-nav a:hover i {
    transform: translate(2px, -2px);
}

.offcanvas-nav .contact-button {
    margin: 20px 30px;
    text-align: center;
    border-bottom: none;
}

.offcanvas-social {
    display: flex;
    gap: 20px;
    padding: 30px 30px;
    border-top: 1px solid #e8e8e8;
    margin-top: auto;
    justify-content: center;
    background: linear-gradient(180deg, #f5f7fa 0%, #f0f3f7 100%);
}

.offcanvas-social a {
    font-size: 20px;
    color: #005AA6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 90, 166, 0.08);
}

.offcanvas-social a:hover {
    color: #fff;
    background: linear-gradient(135deg, #005AA6 0%, #0074d9 100%);
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 90, 166, 0.25);
}

/* Offcanvas Footer with Company Info */
.offcanvas-footer {
    padding: 30px 30px;
    border-top: 2px solid #e8e8e8;
    background: linear-gradient(180deg, #f5f7fa 0%, #eef1f6 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.offcanvas-company-logo {
    display: inline-block;
    text-decoration: none;
}

.offcanvas-company-logo img {
    max-height: 38px;
    width: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
}

.offcanvas-company-logo:hover img {
    transform: scale(1.08);
    filter: brightness(1);
}

.offcanvas-company-info {
    text-align: center;
}

.offcanvas-company-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    letter-spacing: -0.3px;
}

.offcanvas-company-info .company-name {
    font-weight: 700;
    color: #005AA6;
    font-size: 1rem;
}

.offcanvas-company-info .company-subtitle {
    font-size: 0.85rem;
    color: #999;
}

/* Mobile Styles */
@media (max-width: 991px) {
    .nav {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/* Desktop Styles */
@media (min-width: 992px) {
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.hamburger-btn img {
    max-width: 40px;
    max-height: 40px;
    width: auto;
    height: auto;
    display: block;
}

@media (max-width: 575.98px) {
    .hamburger-btn img {
        max-width: 28px;
        max-height: 28px;
    }
}

@media (max-width: 991.98px) {
    .hamburger-btn {
        display: inline-block;
        position: absolute;
        top: 18px;
        right: 18px;
        z-index: 1051;
    }

    .nav {
        display: none !important;
    }
}

.offcanvas .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.offcanvas .mobile-nav a {
    font-size: 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.offcanvas .mobile-nav a:hover {
    color: #005AA6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    line-height: 1.7;
    padding-top: 65px;
}

/* ヘッダー */
.header {
    background: #fff;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;

    /* Make it sticky */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;

    /* Smooth transition */
    transition: box-shadow 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #005AA6;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background: #005AA6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav a {
    color: #333;
    text-decoration: none;
    /* font-size: 32px; */
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #005AA6;
}

.social-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-links a {
    color: #333;
    font-size: 20px;
    text-decoration: none;
}

/* Hero セクション */
.hero {
    position: relative;
    /* height: 800px; */
    height: auto !important;
    /* background: var(--hero-bg-image); */
    background: url("../images/hero-bg-image@2x.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #005AA6;
}

.hero h1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 16px;

}

.hero .subtitle {
    font-size: 48px;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 32px;
}
.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: auto;
    width: auto;
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: 3px solid #fff;
}

.hero-cta .cta-button i {
    font-size: 1.2rem;
}

.hero-cta .cta-button span {
    font-size: 1.1rem;
    font-weight: 700;
    white-space: nowrap;
}

/* Phone button — filled blue */
.hero-cta .cta-tel {
    background: #005AA6;
    color: #fff;
}

.hero-cta .cta-tel:hover {
    background: #004080;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 90, 166, 0.4);
}

/* Form button — white with blue border */
.hero-cta .cta-form {
    background: #fff;
    color: #005AA6;
    border-color: #005AA6;
}

.hero-cta .cta-form:hover {
    background: #005AA6;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 90, 166, 0.4);
}

.cta-button:hover {
    background: #004080;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 90, 166, 0.4);
}

/* サービス紹介セクション */
.service-intro {
    background: #F8FAFB;
    padding: 80px;
    text-align: center;
    padding-bottom: 80px;
    /* added for only bottom spacing */
}

.service-intro h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0073D9;
    margin-bottom: 60px;
    font-size: xxx-large;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* .service-card {
     text-align: center;
 } */
.service-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Ensures cards are equal height */
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: #005AA6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 48px;
}

.service-card h3 {
    font-size: 32px;
    font-weight: 700;
    /* color: #005AA6; */
    color: #E55A2B;
    margin-bottom: 16px;
}

/* .service-card p {
     font-size: 32px;
     color: #000000;
     line-height: 1.4;
     font-weight: bold;
     text-align: left;
 } */
.service-card p {
    font-size: 24px;
    color: #000000;
    line-height: 1.4;
    font-weight: bold;
    text-align: left;

    /* Set minimum height based on longest text */
    min-height: 180px;

    /* Optional: Add ellipsis for overflow */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 料金表セクション */
.pricing-section {
    background: #fff;
    /* padding: 80px 40px; */
    /* padding: 40px; */
    text-align: center;
}

.pricing-section {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    /* margin-bottom: 8px; Enable this when the testimonial section is added */
}

.pricing-subtitle {
    /* font-size: 72px; */
    /* font-size:clamp(16px, 4vw, 72px); */
    font-size: clamp(16px, 4vw, 32px);
    font-weight: 700;
    color: #005AA6;
    /* margin-bottom: 12px; */
    margin-bottom: 4px;
}

.pricing-note {
    font-size: 14px;
    color: #666;
    margin-bottom: 60px;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 62px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* if you want to undo  */
/* .price-card {
     flex: 1;
     min-width: 280px;
     max-width: 340px;
     background: #fff;
     border: 2px solid #E8F2F9;
     border-radius: 12px;
     padding: 0px 32px;
     transition: all 0.3s;
 } */
/* from here this section */
/* UPDATE .pricing-grid */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    max-width: 1600px;
    /* Increased to accommodate 3 cards */
    margin: 0 auto;
    padding: 0 20px;
    /* DO NOT add flex-wrap here - let responsive handle it */
}

/* UPDATE .price-card */
.price-card {
    flex: 1 1 400px;
    /* Each card flexible at 400px base */
    /* max-width: 500px;  Maximum width per card */
    max-width: 560px;
    background: #fff;
    border: 2px solid #E8F2F9;
    border-radius: 50px;
    padding: 0px 24px;
    /* Increased padding */
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 4px 6px var(--depth-025) rgba(0, 0, 0, 0.25);
}

/* UPDATE .price-features li */
.price-features li {
    padding: 3px 0;
    font-size: 28px;
    color: #333;
    display: flex;
    align-items: center;
    white-space: nowrap;
    /* Keep text on one line on desktop */
}

.price-features li.plan-duration {
    color: #E55A2B
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
    flex-grow: 1;
    /* Add this - makes features area expand */
    /* Remove height and overflow properties */
}

/* here added later->=uppp */
.price-card:hover {
    border-color: #005AA6;
    box-shadow: 4px 4px 6px var(--depth-025) rgba(0, 0, 0, 0.25);
    transform: translateY(-4px);
}

.price-card.featured {
    border: 3px solid #005AA6;
    position: relative;
}

.badge {
    background: #FF6B35;
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    /* margin-bottom: 16px; */
}

.plan-name {
    font-size: 42px;
    color: #333333;
    /* margin-bottom: 16px; */
    text-align: center;

}

.price {
    font-size: 42px;
    font-weight: 700;
    color: #005AA6;
    margin-bottom: 24px;
}

.price span {
    font-size: 22px;
    font-weight: bold;
    color: #000000;
}

/* if you want to undo */
/* .price-features {
     list-style: none;
     text-align: left;
     margin-bottom: 32px;
     min-height: 150px;
     /* overflow: hidden; */
/* } */
*/ .price-features li {
    padding: 3px 0;
    /* font-size: 14px; */
    font-size: 28px;
    color: #333;
    display: flex;
    align-items: center;
}

.price-features li:before {
    content: '✓';
    color: #005AA6;
    font-weight: 700;
    margin-right: 8px;
}

.price-features ol,
ul {
    /* padding-left: 0px !important; */
}

.plan-button {
    display: block;
    width: 100%;
    /* padding: 14px; */
    border: 2px solid #005AA6;
    /* border-radius: 50px; */
    border-radius: 10px;
    background: #fff;
    color: #005AA6;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    margin-bottom: 30px;
}

.plan-button:hover {
    background: #005AA6;
    color: #fff;
}

.featured .plan-button {
    background: #005AA6;
    color: #fff;
}

.featured .plan-button:hover {
    background: #004080;
}

/* お客様の声セクション */
/* .testimonials {
     background: #005AA6;
     color: #fff;
     padding: 80px 40px;
     text-align: center;
 }

 .testimonials h2 {
     font-size: 28px;
     font-weight: 700;
     margin-bottom: 60px;
     line-height: 1.6;
 }

 .testimonial-grid {
     display: flex;
     justify-content: center;
     gap: 32px;
     max-width: 1200px;
     margin: 0 auto;
     flex-wrap: wrap;
 }

 .testimonial-card {
     flex: 1;
     min-width: 280px;
     max-width: 360px;
     background: white;
     backdrop-filter: blur(10px);
     padding: 32px;
     border-radius: 12px;
     text-align: left;
     background-color: #E8F2F9;
 }

 .testimonial-text {
     font-size: 14px;
     line-height: 1.8;
     margin-bottom: 16px;
     color: #333;
     text-align: block;
     font-weight: bold;
 }

 .testimonial-author {
     font-size: 13px;
     font-weight: 600;
     opacity: 0.9;
 } */
.review-section {
    display: flex;
    flex-direction: column;
    gap: 70px;
    font-weight: 700;
    letter-spacing: 0;
    text-align: center;
    background-color: #005aa6;
    padding: 130px 24px 116px 24px;
}

.review-title {
    color: #f8f8f8;
    font-size: 72px;
    font-family: 'Abel', sans-serif;
    line-height: normal;
    margin: 0;
}

.review-cards {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    justify-content: center;
    color: #333;
    font-size: 32px;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.312;
    flex-wrap: wrap;
}

.card-review {
    width: 100%;
    max-width: 470px;
    min-height: 300px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    flex-shrink: 0;
    background-color: #e8f2f9;
    padding: 8px 30px 8px 0;
    border-radius: 20px;
}

.card-line {
    width: 0;
    height: 272px;
    flex-shrink: 0;
    border-left: 5px solid #e55a2b;
    border-radius: 50%;
}

.card-content {
    margin-top: 37px;
    flex-grow: 1;
    text-align: left;
}

/* Tablet and below */
@media screen and (max-width: 1280px) {
    .review-section {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* Stack cards vertically */
@media screen and (max-width: 1568px) {
    .review-cards {
        flex-direction: column;
        align-items: center;
        gap: 37px;
    }
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .review-section {
        padding: 60px 16px;
        gap: 50px;
    }

    .review-title {
        font-size: 36px;
    }

    .review-cards {
        font-size: 20px;
    }

    .card-review {
        min-height: auto;
    }

    .card-line {
        height: auto;
        min-height: 180px;
    }

    .card-content {
        margin-top: 20px;
    }
}

/* Extra small mobile */
@media screen and (max-width: 480px) {
    body {
        padding-top: 0px !important;
    }

    .review-title {
        font-size: 28px;
    }

    .review-cards {
        font-size: 18px;
    }

    .card-review {
        padding: 8px 20px 8px 0;
        gap: 15px;
    }
}

/* FAQ セクション */
/* .faq-section {
     background: #F8FAFB;
     padding: 80px 40px;
 }

 .faq-section h2 {
     text-align: center;
     font-size: 32px;
     font-weight: 700;
     color: #333;
     margin-bottom: 60px;
 }

 .faq-list {
     max-width: 800px;
     margin: 0 auto;
 }

 .faq-item {
     background: #fff;
     border: 2px solid #E8F2F9;
     border-radius: 8px;
     padding: 20px 24px;
     margin-bottom: 16px;
     cursor: pointer;
     transition: all 0.3s;
     display: flex;
     align-items: center;
     gap: 16px;
 }

 .faq-item:hover {
     border-color: #005AA6;
     box-shadow: 0 4px 12px rgba(0, 90, 166, 0.08);
 }

 .faq-icon {
     width: 28px;
     height: 28px;
     background: #fff;
     /* border: 2px solid #005AA6; */
/* border-radius: 50%;
     display: flex; */
/* align-items: center;
     justify-content: center;
     color: #005AA6; */
/* font-weight: 700; */
/* flex-shrink: 0; */
/* }

 .faq-question {
     font-size: 15px;
     font-weight: 600;
     color: #333;
 }  */
/* FAQ Options */
html {
    font-size: 16px;
}

body {
    background-color: #f8fafb;
}

.bold2 {
    font-size: 34px;
    font-weight: 700;
}

.bold {
    color: #e55a2b;
    font-size: 34px;
    font-weight: 700;
}

/* Question Section */
.question {
    /* box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); Enable this when the testimonial section is added */
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
    font-size: 36px;
    font-family: 'Noto Sans JP';
    font-weight: 700;
    background-color: #f8fafb;
    padding: 20px 24px 20px 24px;
}

.question-title {
    font-size: 36px;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
    margin-bottom: 0;
    font-weight: bold;
    margin-bottom: 20px;
    padding: 20px 0px 0px;
}

.question-line {

    width: 150px;
    height: 5px;
    background-color: #005aa6;
    border-radius: 50px;
    display: block;
    margin: 0 auto 40px;
}

.question-line-wt {
    margin-top: 20px;
    margin-bottom: 78px;
    width: 150px;
    height: 5px;
    /* background-color: #f8fafb; */
    background-color: #005AA6;
    border-radius: 50px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.question-line-service {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 150px;
    height: 5px;
    background-color: #005aa6;
    border-radius: 50px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Container */
.faq-container {
    width: 100%;
    max-width: 1280px;
}

/* FAQ Button */
.faq-button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #ffffff;
    padding: 20px 36px;
    border: 2px solid #005aa6;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 0;
    text-align: left;
}

.faq-button:hover {
    background-color: #f8f8f8;
}

.faq-button:focus {
    outline: none;
    box-shadow: none;
}

/* Icon */
.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    position: relative;
    margin-right: 8px;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: #005aa6;
    border-radius: 2px;
}

.faq-icon::before {
    width: 20px;
    height: 2.5px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-icon::after {
    width: 2.5px;
    height: 20px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-button.active .faq-icon::after {
    opacity: 0;
    transform: translateX(-50%) rotate(90deg);
}

/* Button Text */
.faq-question-text {
    flex: 1;
    font-size: 28px;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

/* Answer Section */
.faq-answer {
    width: 100%;
    background-color: #e8f2f9;
    border-radius: 12px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease, padding 0.3s ease;
    padding: 0 53px;
}

.faq-answer.show {
    max-height: 500px;
    opacity: 1;
    /* margin-top: 20px; */
    padding: 20px 36px;
    border-radius: 12px;
}

.faq-answer-text {
    font-size: 1.35rem;
    font-weight: 400;
    color: #333;
    margin: 0;
    /* line-height: 1.4; */
}

.faq-answer-text>span {
    margin-top: -0.35rem;
}

/* Spacing between items */
.faq-item {
    margin-bottom: 2rem;
}

/* .faq-item:first-child {
      margin-bottom: 20px;
    } */

/* Responsive */
@media screen and (max-width: 768px) {
    .question {
        padding: 20px 16px 20px 16px;
    }

    .question-title {
        font-size: 24px;
    }

    .question-line {
        margin-bottom: 20px;
    }

    .faq-button {
        padding: 16px 24px;
    }

    .faq-question-text {
        font-size: 20px;
        font-weight: bold;
    }

    .faq-answer {
        padding: 0 24px;
    }

    .faq-answer.show {
        padding: 16px 24px;
    }

    .faq-answer-text {
        font-size: 1.1rem;
    }

    .bold,
    .bold2 {
        font-size: 28px;
    }
}

/* お問い合わせフォーム */
.contact-section {
    background: #fff;
    padding: 80px 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1.1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #005AA6;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: #005AA6;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background: #004080;
}

/* フッター */
.footer {
    background: #003D73;
    color: #fff;
    padding: 40px 60px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 100px;
}

.footer-left {
    flex: 0 0 auto;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    /* gap: 20px; */
    gap: 80px;
}

.footer-logo-icon {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#logo-footer {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
}

.footer-company-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 10px;
}

.footer-management {
    font-size: 14px;
    font-weight: 500;
    display: block;
    align-items: center;
    gap: 12px;
}

.footer-company-name {
    height: auto;
    width: 400px;
    max-width: 90vw;
}

.footer-copyright-text {
    font-size: 11px;
    opacity: 0.8;
    margin: 0;
    line-height: 1.5;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 100px;
    flex: 1;
    justify-content: flex-end;
    padding-top: 10px;
}

.footer-column {
    min-width: 140px;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 16px;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
    opacity: 0.95;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-column a i {
    font-size: 11px;
    transition: transform 0.3s;
}

.footer-column a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-column a:hover i {
    transform: translate(2px, -2px);
}

/* Tablet */
@media (max-width: 992px) {
    .footer {
        padding: 40px 40px;
    }

    .footer-content {
        gap: 60px;
    }

    .footer-logo-icon {
        width: 100px;
        height: 100px;
    }

    .logo-text {
        font-size: 12px;
        bottom: 6px;
    }

    .footer-links {
        gap: 60px;
    }

    .footer-management {
        flex-wrap: wrap;
    }

    .footer-company-name {
        /* height: 28px; */
    }
}

/* Mobile */
@media (max-width: 768px) {
    .footer {
        padding: 30px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-logo {
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
    }

    .footer-logo-icon {
        width: 80px;
        height: 80px;
    }

    .logo-text {
        font-size: 10px;
        bottom: 5px;
    }

    .footer-company-info {
        gap: 10px;
    }

    .footer-management {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        font-size: 12px;
    }

    .footer-company-name {
        /* height: 24px; */
    }

    .footer-copyright-text {
        font-size: 10px;
    }

    .footer-links {
        flex-direction: row;
        justify-content: space-between;
        gap: 30px;
        width: 100%;
    }

    .footer-column {
        min-width: auto;
        flex: 1;
    }

    .footer-column h3 {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .footer-column ul li {
        margin-bottom: 12px;
    }

    .footer-column a {
        font-size: 12px;
    }
}

/* Extra small mobile */
@media (max-width: 480px) {
    .footer-logo {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-logo-icon {
        width: 70px;
        height: 70px;
        align-self: center;
    }

    .logo-text {
        font-size: 9px;
    }

    .footer-links {
        flex-direction: row !important;
        gap: 30px;
    }

    .footer-column h3 {
        font-size: 13px;
    }

    .footer-column a {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 16px;
    }

    .nav {
        flex-direction: column;
        gap: 16px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero .subtitle {
        font-size: 20px;
    }

    .service-grid,
    .pricing-grid,
    .testimonial-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }
}

.faq-answer {
    /* margin-top: 10px; */
    padding: 10px;
    background-color: #E8F2F9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* font and background shadow */
/* General Styles for the Cover */
.cover-container {
    position: relative;
    width: 100%;
    /* min-height: 360px; It makes the banner big */
    background-color: transparent;
    /* padding-top: 95px; */
    padding-top: 30px;
    /* padding-bottom: 40px; */
}

.cover-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 100%; */
    /* background-image:
         linear-gradient(to bottom, rgba(0, 0, 50, 0.4), rgba(0, 0, 100, 0.6)); */
    /* Fade overlay */
    background-size: cover;
    background-position: center center;
    background-blend-mode: overlay;
    z-index: -1;
    /* filter: opacity(35%); */
}

.cover-background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #E8EDF9 20%, #004080 100%);
    z-index: 1;
    filter: opacity(35%);
}

.cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Section */
.cover-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center vertically */
    align-items: center;
    /* Center horizontally */
    text-align: center;
    height: 100%;
    /* padding: 0 0 40px 0; */
    /* Bottom padding */
}

/* .content-container {
  max-width: 432px;
  width: 100%;
  padding: 0;
}

/* Heading Styling with White Spray Effect */
.content-container {
    max-width: 90%;
    /* Changed from 432px */
    width: 100%;
    /* padding: 0 20px;
     transform: translateY(90px); */
    padding: 40px 20px 20px 20px;
}

.heading {
    /* font-family: 'Noto Sans Gujarati UI', sans-serif; */
    font-family: 'Abel', sans-serif;
    color: rgba(0, 0, 0, 1);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    position: relative;
    text-align: center;
    /* REMOVE: white-space: nowrap; */
    word-wrap: break-word;
    /* Add this */
}

.heading::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 80%);
    z-index: -1;
    filter: blur(10px);
    opacity: 0.7;
}

.heading {
    font-family: 'Noto Sans JP', sans-serif;
    color: rgba(0, 0, 0, 1);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    position: relative;
    text-align: center;
}

/* Default smaller size */
.heading {
    font-size: 36px;
    /* Smaller for first heading */
    margin-bottom: 10px;
}

/* Larger size for second heading */
.heading.large {
    font-size: 32px;
    /* Larger for second heading */
    color: #005AA6;
    text-align: center;
}

.contact-section {
    background: var(--bg-soft-2);
}

.contact-h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    text-align: center;
    margin-bottom: 20px;
}

.call-box {
    max-width: 680px;
    margin-inline: auto;
    padding: 18px 20px;
    border-radius: 12px;
    background: #F8FDFF;
    border: 2px solid #88B5DB;
    text-align: center;
}

.call-box-inner {
    line-height: 1.5;
}

.call-label {
    margin-right: 6px;
    display: inline-block;
    font-weight: 700;
    letter-spacing: .03em;
    color: var(--ink);
}

.call-number {
    font-size: 26px;
    font-weight: 800;
    color: var(--brand-blue);
    text-decoration: none;

}

.call-number:hover {
    text-decoration: underline;
}

.call-company {
    font-size: 14px;
    color: var(--ink);
}

.call-hours {
    font-size: 12px;
    color: #4b5563;
}

/* Map CSS */
/* ========================================
   AREA MAP BANNER SECTION
   ======================================== */

.area-map {
    /* background: #005AA6; */
    background:#E8F2F9;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}



/* Optional: Add subtle pattern overlay */
.area-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        #005AA6;
    pointer-events: none;
}

.area-map h2 {
    font-size: 36px;
    font-weight: 700;
    /* color: #ffffff; */
    color:#333333;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-family: 'Noto Sans JP', sans-serif;
}

.map-container {
    max-width: 2500px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.area-map-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    margin-left: 0;
    transform: none;
}

/* .area-map-image:hover {
    transform: scale(1.03);
} */

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* section header css */
.section-header {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 80%;
    margin: 0 auto 40px;
}

.section-header::before,
.section-header::after {
    content: '';
    flex: 1;
    height: 6px;
    background: linear-gradient(to bottom,
            #5BA3F5 0%,
            #4A90E2 50%,
            #7DB8F7 100%);
    box-shadow: 0 1px 2px rgba(74, 144, 226, 0.2);
    border-radius: 2px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #4A90E2;
    margin: 0;
    white-space: nowrap;
}

.pricing-intro {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 30px;

}

.pricing-subtitle-highlight {
    /* font-size: clamp(28px, 5vw, 60px); */
    /* font-size: clamp(28px, 5vw, 96px); */
    font-size: clamp(24px, 5vw, 42px);
    font-weight: 700;
    color: #E55A2B;
    /* margin-bottom: 12px; */
    font-family: 'Noto Sans Gujarati UI', sans-serif;
    font-weight: bold;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);

}

.section-header.price-top {
    color: #0073D9;
    font-weight: 800;
    font-size: xxx-large;
}

p {
    margin-bottom: 0;
}

.badge.invisible {
    visibility: hidden;
}

/* contact css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #f3f6f8;
    /* padding: 60px 20px; */
}

.container {
    max-width: 1000px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    padding: 20px 0px 0px;
}

.title-underline {
    width: 150px;
    height: 5px;
    background-color: #005aa6;
    border-radius: 50px;
    margin: 0 auto 40px;
}

.contact-box {
    background-color: white;
    border: 3px solid #005aa6;
    border-radius: 20px;
    /* padding: 40px; */
    padding: 2.5rem;
    margin-bottom: 60px;
}

.phone-number {
    font-size: 2.5rem;
    color: #005aa6;
    font-weight: 700;
    text-align: center;
    /* margin: 20px 0; */
}

.phone-number .tel-label {
    color: #333;
}

.company-info {
    text-align: center;
    font-size: 24px;
    color: #333333;
    font-weight: 700;
    /* margin: 15px 0; */
}

.form-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0;
    padding-top: 15px;
    white-space: nowrap;
}

.form-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
}

.form-row .form-label {
    flex-shrink: 0;
    min-width: 200px;
}

.form-row .form-control {
    flex: 1;
}

.required {
    color: #e55a2b;
    font-size: 0.9rem;
    margin-left: 5px;
}

.form-control,
.form-select {
    background-color: #e8f2f9;
    border: none;
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 1.1rem;
    color: #333;
}

.form-control::placeholder {
    color: rgba(153, 153, 153, 0.6);
}

textarea.form-control {
    min-height: 120px;
}

.form-check-input {
    width: 24px;
    height: 24px;
    border: 4px solid rgba(153, 153, 153, 0.6);
    background-color: #f8f8f8;
    margin-right: 10px;
}

.form-check-input:checked {
    background-color: #005aa6;
    border-color: #005aa6;
}

.form-check-label {
    font-size: 1.1rem;
    color: rgba(51, 51, 51, 0.75);
    font-weight: 500;
    margin-top: 2px;
}

.consultation-options .form-check {
    margin-bottom: 15px;
    margin-top: 15px;
}

.consultation-group {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 25px;
}

.consultation-group .form-label {
    flex-shrink: 0;
    min-width: 200px;
    padding-top: 15px;
}

.consultation-radios {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.radio-row .form-check {
    margin: 0;
}

.privacy-group {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
}

.privacy-group .form-label {
    flex-shrink: 0;
    min-width: 200px;
    padding-top: 0;
}

.privacy-group .form-check {
    margin: 0;
}

.btn-submit {
    background-color: #005aa6;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 20px;
    border: none;
    border-radius: 15px;
    width: 100%;
    margin-top: 30px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #004080;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .phone-number {
        font-size: 1.8rem;
    }

    .company-info {
        font-size: 1rem;
    }

    .contact-box {
        padding: 25px;
    }

    .form-label {
        font-size: 1rem;
    }

    .form-control {
        font-size: 1rem;
    }

    .btn-submit {
        font-size: 1.3rem;
    }

    .form-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .form-row .form-label {
        padding-top: 0;
        min-width: auto;
    }

    .form-row .form-control {
        width: 100%;
    }

    .message-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .consultation-group {
        flex-direction: column;
        gap: 15px;
    }

    .consultation-group .form-label {
        min-width: auto;
        padding-top: 0;
    }

    .radio-row {
        flex-direction: column;
        gap: 15px;
    }

    .privacy-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .privacy-group .form-label {
        min-width: auto;
    }
}

@media (max-width: 576px) {
    body {
        /* padding: 30px 15px; */
    }

    .section-title {
        font-size: 24px;
    }

    .phone-number {
        font-size: 1.5rem;
    }

    .contact-box {
        padding: 20px;
    }
}


.decoration-dotted {
    text-decoration-style: dotted !important;
}

.price-card {
    /* X-offset (right), Y-offset (bottom), blur, spread, color */
    box-shadow: 4px 4px 6px var(--depth-025) rgba(0, 0, 0, 0.25);
    height: 800px;
    /* height: 650px; */
}

.pricing-header {
    font-size: 36px;
    font-family: 'Noto Sans JP', sans-serif;
    color: #333333;
    font-weight: bold;
    margin-bottom: 20px;
    padding: 20px 0px 0px;

}

.plan-duration {
    color: #E55A2B;
    font-size: 18px;
}

.plan-duration-1 {
    font-size: 18px;
}

.pricing-section {
    background: linear-gradient(to right,
            #F8F8F8 0%,
            #E8F2F9 100%);
    /* padding-top: 50px; */
    padding-bottom: 50px;
}

span.highlight {
    color: black;
}

@media (max-width: 375px) {
    .form-check-label {
        font-size: 15px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .service-card p {
        font-size: 28px;
        min-height: 160px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .service-card p {
        font-size: 24px;
        min-height: 140px;
        -webkit-line-clamp: 5;
    }
}

@media (max-width: 480px) {
    .service-card p {
        font-size: 20px;
        min-height: 120px;
    }
}

#pricing,
#faq,
#contact,
#area-map,
#service {
    scroll-margin-top: 68px;
    /* match your header height */
}


/* n1 = -0.25rem */
.m-n1 {
    margin: -0.25rem !important;
}

.mt-n1 {
    margin-top: -0.25rem !important;
}

.me-n1 {
    margin-right: -0.25rem !important;
}

.mb-n1 {
    margin-bottom: -0.25rem !important;
}

.ms-n1 {
    margin-left: -0.25rem !important;
}

.mx-n1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
}

.my-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
}

/* n2 = -0.5rem */
.m-n2 {
    margin: -0.5rem !important;
}

.mt-n2 {
    margin-top: -0.5rem !important;
}

.me-n2 {
    margin-right: -0.5rem !important;
}

.mb-n2 {
    margin-bottom: -0.5rem !important;
}

.ms-n2 {
    margin-left: -0.5rem !important;
}

.mx-n2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
}

.my-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
}

/* n3 = -1rem */
.m-n3 {
    margin: -1rem !important;
}

.mt-n3 {
    margin-top: -1rem !important;
}

.me-n3 {
    margin-right: -1rem !important;
}

.mb-n3 {
    margin-bottom: -1rem !important;
}

.ms-n3 {
    margin-left: -1rem !important;
}

.mx-n3 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
}

.my-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
}

/* n4 = -1.5rem */
.m-n4 {
    margin: -1.5rem !important;
}

.mt-n4 {
    margin-top: -1.5rem !important;
}

.me-n4 {
    margin-right: -1.5rem !important;
}

.mb-n4 {
    margin-bottom: -1.5rem !important;
}

.ms-n4 {
    margin-left: -1.5rem !important;
}

.mx-n4 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
}

.my-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
}

/* n5 = -3rem */
.m-n5 {
    margin: -3rem !important;
}

.mt-n5 {
    margin-top: -3rem !important;
}

.me-n5 {
    margin-right: -3rem !important;
}

.mb-n5 {
    margin-bottom: -3rem !important;
}

.ms-n5 {
    margin-left: -3rem !important;
}

.mx-n5 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
}

.my-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
}

/* Contact Form 7 - Side by side layout fix */
.wpcf7-form>p {
    display: flex;
    align-items: center;
    /* gap: 30px; */
    /* margin-bottom: 25px; */
}

.wpcf7-form .form-label {
    flex-shrink: 0;
    min-width: 200px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0;
    padding-top: 0;
    white-space: nowrap;
    /* margin-bottom: 33px; */
}

@media screen and (max-width: 768px) {
    .wpcf7-form .form-label {
        font-size: 1.1rem;
    }
}

.wpcf7-form>p>span.wpcf7-form-control-wrap {
    flex: 1;
    width: 100%;
}

.wpcf7-form>p>span.wpcf7-form-control-wrap input,
.wpcf7-form>p>span.wpcf7-form-control-wrap textarea {
    width: 100%;
}

/* For consultation group */
.wpcf7-form .consultation-group {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 25px;
}

.wpcf7-form .consultation-group .form-label {
    flex-shrink: 0;
    min-width: 200px;
    padding-top: 15px;
    white-space: nowrap;
}

.wpcf7-form .consultation-radios {
    flex: 1;
    margin-top: 20px;
}

/* For privacy group */
.wpcf7-form .privacy-group {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
    align-items: end;
}

.wpcf7-form .privacy-group .form-label {
    flex-shrink: 0;
    min-width: 200px;
    padding-top: 0;
    white-space: nowrap;
}

.wpcf7-form .privacy-group .form-check {
    flex: 1;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .wpcf7-form>p {
        flex-direction: column;
        align-items: flex-start;
        /* gap: 10px; */
    }

    .wpcf7-form>p>label {
        padding-top: 0;
        min-width: auto;
        margin: 0px !important;
    }

    .wpcf7-form>p>span.wpcf7-form-control-wrap {
        width: 100%;
    }

    .wpcf7-form .consultation-group,
    .wpcf7-form .privacy-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .wpcf7-form .consultation-group .form-label,
    .wpcf7-form .privacy-group .form-label {
        min-width: auto;
        padding-top: 0;
    }
}

/* Consultation radios - separate each radio */
.wpcf7-form .consultation-radios .wpcf7-list-item {
    margin: 0 !important;
    display: inline-block;
}

.wpcf7-form .consultation-radios .wpcf7-list-item-label {
    margin-left: 8px;
}

/* Force Contact Form 7 radio list to display inline */
.wpcf7-form .consultation-radios .wpcf7-radio {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wpcf7-form .radio-row .wpcf7-radio {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.wpcf7-spinner {
    display: none !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .wpcf7-form>p {
        flex-direction: column;
        align-items: flex-start;
        /* gap: 10px; */
    }

    .wpcf7-form>p>label {
        padding-top: 0;
        min-width: auto;
        width: 100%;
    }

    .wpcf7-form>p>span.wpcf7-form-control-wrap {
        width: 100%;
    }

    .wpcf7-form>p>span.wpcf7-form-control-wrap input,
    .wpcf7-form>p>span.wpcf7-form-control-wrap textarea {
        width: 100%;
    }

    .wpcf7-form .consultation-group,
    .wpcf7-form .privacy-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .wpcf7-form .consultation-group .form-label,
    .wpcf7-form .privacy-group .form-label {
        min-width: auto;
        padding-top: 0;
        width: 100%;
    }

    .wpcf7-form .consultation-radios {
        width: 100%;
        margin-top: 0px;
    }

    .wpcf7-form .radio-row {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .wpcf7-form .radio-row .wpcf7-radio {
        flex-direction: column;
        gap: 15px;
    }

    .wpcf7-form .privacy-group .form-check {
        width: 100%;
    }
}

.price-red {
    color: rgb(255, 39, 39) !important;
    font-size: 42px !important;
    font-weight: 700 !important;
}

.price-month {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #000000 !important;
}

.price-tax {
    font-size: 22px !important;
    font-weight: normal;
    text-decoration: inherit;
    vertical-align: baseline;
    color: inherit !important;
}
/* google reCAPTCHA */
/* .grecaptcha-badge
 {
    bottom: 300px !important;
} */
   .scroll-to-top-btn {
        bottom: 100px !important;
        right: 10px;
        position: fixed;
        z-index: 999;
    }
    /* Area text block */
.area-text-block {
    max-width: 1000px;
    margin: 40px auto 0;
    text-align: center;
}

.area-text {
    font-size: 1.35rem;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin-bottom: 16px;
}

.area-text-highlight {
    font-size: 1.35rem;
    color: #005AA6;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: inherit;
}

.area-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
}

.area-list li {
    font-size: 1rem;
    font-weight: 700;
    color: #005AA6;
    padding: 6px 18px;
    border: 2px solid #005AA6;
    border-radius: 50px;
    background: #fff;
}

/* Responsive styles for area text block */
@media screen and (max-width: 768px) {
    .area-text,
    .area-text-highlight {
        font-size: 1.1rem;
    }
}