@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');


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


:root {
    --main-color: #EBF6F6;
    --secondary: #3071B9;
    --light-grey: #CBCBCB;
    --grey: #0000004D;
    --light-green: #00B2B3;
    --orange: #F97A26;
    --pink: #FF1C96;
    --white: #fff;
    --black: #000000;
    --text-color: #0F0F0F;

    --f-s-s: 16px;
    --f-s-m: 18px;
    --f-s-30: 30px;
    --f-s-34: 34px;
    --mc-width: 500px;
    --p-container: 50px 0px;
    --font-f: "Zen Kaku Gothic New", sans-serif;
}


html {
    margin-top: 0px !important;
}


body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    letter-spacing: normal;
    font-family: var(--font-f) !important;
    background-color: var(--white);
}


h1,
h2,
h3,
h4,
h5,
h6 {
    width: 100%;
    padding: 0;
    font-size: 22px;
}

p {
    font-size: var(--f-s-s);
}

a {
    text-decoration: none;
    font-size: var(--f-s-s);
}

figure {
    margin: 0;
}

img {
    height: 100%;
    width: 100%;
}

ul,
ol {
    list-style: none;
}

.grecaptcha-badge {
    opacity: 0;
}


/* container section */
.s-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

@media (max-width: 370px) {
    .s-container {
        padding: 0 7px;
    }
}

.th-highlight {
    color: var(--orange);
}

.cta-section {
    background-color: var(--black);
    color: var(--white);
    padding: 70px 0px;
}

.cta-container {
    max-width: 992px;
    margin: 0 auto;
    text-align: center;
}

.cta-heading {
    font-size: clamp(24px, 3vw, 40px);
    font-weight: bold;
    margin-bottom: 30px;
}

.cta-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.cta-option {
    text-align: center;
    width: 47%;

}

.cta-subtitle {
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 500;
    margin-bottom: 5px;

}

.cta-button {
    display: block;
    background-color: var(--orange);
    color: var(--white);
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 600;
    padding: 17px 24px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: var(--orange);
}

.cta-phone-box {
    display: block;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--orange);
    padding: 12px 24px;
    border-radius: 6px;
}

.cta-phone-number {
    font-size: clamp(30px, 2.5vw, 30px);
    font-weight: 800;
}

.cta-phone-icon {
    font-size: clamp(30px, 2.5vw, 30px);
    margin-right: 10px;
}

.cta-hours {
    font-size: 14px;
    color: var(--white);
    margin-top: 5px;
}


@media (max-width: 700px) {
    .cta-options {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        flex-direction: column;
        align-items: center;

    }

    .cta-option {
        text-align: center;
        width: 100%;

    }
}

@media (max-width: 330px) {
    .cta-button {
        font-size: clamp(18px, 2vw, 26px);
        font-weight: 600;
        padding: 14px 20px;
    }

    .cta-option {
        text-align: center;
        width: 100%;
        max-width: 280px;


    }
}

.cta-t-br-600 {
    display: none;
}

@media (max-width: 600px) {
    .cta-t-br-600 {
        display: block;
        line-height: 0;
    }

    .cta-heading {
        font-size: clamp(22px, 5vw, 40px);
        font-weight: bold;
        margin-bottom: 30px;
    }
}

.section-title-wrap {
    text-align: center;

}

.section-title .sth {
    color: #f57c00;
}


/* button items */
.email-button {
    background-color: var(--main-color);
    color: var(--white);
    box-shadow: 0px 4px 0px 0px #672D05;
}

.email-button:hover {
    transform: translateY(2px);
    box-shadow: none;
}

.line-button {
    background-color: #59C463;
    color: var(--white);
    box-shadow: 0px 4px 0px 0px #0C6A14;
}

.line-button:hover {
    background-color: var(--green);
    /* ensure --green is defined */
    transform: translateY(2px);
    box-shadow: none;
}


.no-br-600 {
    display: block;
}

@media (max-width: 600px) {
    .no-br-600 {
        display: none;
    }
}

.no-br-380 {
    display: none;
}

@media (max-width: 380px) {
    .no-br-380 {
        display: block;
    }
}