:root {
    --main-color: #8E0000;
    --sub-color: #D00505;
}

* {
    font-weight: 500;
    font-style: normal;
    margin: 0;
    padding: 0;
    h1{
        font-size: 2em;
    }
    h2{
        font-size: 2.5em;
        font-weight: 600;
    }
    h3{
        font-size: 1.6em;
    }
    p{
        font-size: 1em;
    }
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    z-index: 999999999999;
    background-color: #fff;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* h1 {
        margin-left: 50px;
    } */

    nav {
        display: flex;
        list-style: none;
        align-items: center;

        li {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px 2vw;
            a{
                font-weight: bold;
            }
        }
    }
}
.top-logo-flex{
    display: flex;
    img{
        width: 60px;
        height: auto;
        margin-right: 10px;
        margin-left: 20px;
    }
    h1{
        font-size: 1.4em;
        place-content: center;
    }
}
.sp{

    h1{
        /* position: absolute; */
        top: 5px;
        z-index: 999;
    }

    nav {
        position: fixed;
        top: 24px;
        width: 100%;
        z-index: 10;
        background-color: #fff;
        justify-content: center;
    }
    ul {
        /*最初はナビゲーションボタンは非表示*/
        display: none;
        list-style:none;
        height: 100dvh;
        padding-top: 100px;
    }
    li a{
        padding: 8px;
        font-size: 16px;
        color: #464646;
        display: block;
        text-align: center;
        text-decoration: none;
    }

    .bg-sub-color, .bg-main-color{
        background-color: #fff;
    }
    .hamburger {
        position: absolute;
        top: 10px;
        right:32px;
        cursor: pointer;
        width: 22px;
        height: 24px;
        z-index: 10;
    }
    .hamburger span {
        /*3本の線を作る*/
        transition: all .3s;
        position: absolute;
        height: 2px;
        background-color: #333;
        width:100%;
        z-index: 10;
    }
    .hamburger span:nth-of-type(1) {
        /*上の線の位置*/
        top: 4px;
    }
    .hamburger span:nth-of-type(2) {
        /*真ん中の線の位置*/
        top: 12px;
    }
    .hamburger span:nth-of-type(3) {
        /*下の線の位置*/
        top: 20px;
    }
    .hamburger.open span:nth-of-type(1) {
        /*openのとき、上の線を右斜めにする*/
        top: 10px;
        transform: translateY(6px) rotate(-33deg);
    }
    .hamburger.open span:nth-of-type(2) {
        /*真ん中の線を消す*/
        opacity: 0;
    }
    .hamburger.open span:nth-of-type(3) {
        /*下の線を左斜めにする*/
        top: 22px;
        transform: translateY(-6px) rotate(33deg);
    }
}

main{
    width: 100vw;
}

.pc{
    display: flex;
}
.sp{
    display: none;
}
.top-header-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}



/*contact*/
.common-contact-container {
    width: 90%;
    margin: 0 auto;
    color: #fff;
    margin-top: 5vw;

    .common-contact-container-box {
        border: 1px solid #ea553a;
        background-color: #ea553a;
        padding: 5vw;
        margin-top: 5vw;
        .common-contact-text {
            text-align: center;

            h2 {
                font-weight: 900;
                font-size: 36px;
                margin: 0;
            }

            p {
                margin: 3vw 0;
            }
        }

        .common-contact-flex-box {
            display: flex;
            justify-content: space-evenly;
            text-align: center;

            a {
                margin: 0;
                align-content: center;
            }

            p:nth-child(2){
                margin: 5px 0;
            }

            .common-tel-text{
                align-content: center;
            }

            .common-tel-text::before {
                content: "0564-51-4099";
                font-size: 30px;
                margin-bottom: 5px;
                border-bottom: 1px solid #fff;
            }

            .common-mail-text::before {
                content: "メールでお問い合わせ";
                font-size: 28px;
                border-bottom: 1px solid #fff;
            }

            .common-contact-text::before {
                content: "お問い合わせフォーム";
                font-size: 28px;
                border-bottom: 1px solid #fff;
            }

            .common-tel-text::after {
                content: "受付時間/月〜金 9:00-16:00";
                font-size: 12px;
                display: block;
                margin-top: 5px;
            }
        }
    }
}


/*footer*/
footer {
    width: 100%;
    margin: 0 auto;
    background-color: #ea553a;
    padding: 30px 0;
    margin-top: 10vw;

    .footer-flex {
        width: 90%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;

        .footer-logo-box {
            width: 50%;
            color: #fff;
        }
        .footer-nav {
            display: flex;
            ul{
                align-content: center;
                padding-left: 2vw;
                li{
                    margin: 1vw 0;
                    a{
                        color: #fff;
                    }
                }
            }
        }
    }

    img {
        width: auto;
        height: 80px;
        object-fit: cover;
    }

    .footer-copy-right {
        text-align: center;
        color: #fff;
        font-size: 0.5em;
        margin-top: 3vw;
    }
}


/** オリジナルCSS */
.bg-main-color {
    background-color: var(--main-color);
}

.bg-sub-color {
    background-color: var(--sub-color);
}

.fc-fff {
    color: #fff;
}

.pc-contact{
    display: block;
}
.sp-contact{
    display: none;
}


@media screen and (max-width: 1032px) {
    .common-contact-container {
        margin-top: 10vw;
    }
    footer {
        .footer-flex {
            .footer-nav {
                ul {
                    li {
                        font-size: 1.2em;
                    }
                    li:nth-child(2){
                        margin: 1vw 0;
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 820px) {
    header {
/*
        h1 {
            margin-left: 10px;
        } */
        nav {
            li {
                padding: 10px 1.5vw;
                font-size: 1.5vw;
            }
        }
    }
    .top-logo-flex{
        display: flex;
        img{
            width: 30px;
            height: auto;
            margin-right: 5px;
            margin-left: 10px;
        }
    }
    footer {
        width: 100%;
        margin: 0 auto;
        background-color: #ea553a;
        padding: 30px 0;
        margin-top: 10vw;
        img {
            width: auto;
            height: 60px;
            object-fit: cover;
        }
    }

}

@media screen and (max-width: 768px) {
    * {
        h1{
            font-size: 1.5em;
        }
        h2{
            font-size: 1.8em;
            font-weight: 600;
        }
        h3{
            font-size: 1em;
        }
        p{
            font-size: 0.6em;
        }
    }
    footer {
        .footer-flex {
            .footer-logo-box{
                img{
                width: auto;
                height: 45px;
                }
            }
            .footer-nav {
                ul {
                    li {
                        font-size: 1em;
                    }
                    li:nth-child(2){
                        margin: 1vw 0;
                    }
                }
            }
        }
    }
    .common-contact-container {
        .common-contact-container-box {
            .common-contact-text {
                h2 {
                    font-size: 1.8em;
                }
            }
            .common-contact-flex-box {
                .common-tel-text::before {
                    content: "0564-51-4099";
                    font-size: 22px;
                }

                .common-mail-text::before {
                    content: "メールでお問い合わせ";
                    font-size: 22px;
                }

                .common-contact-text::before {
                    content: "お問い合わせフォーム";
                    font-size: 22px;
                }

                .common-tel-text::after {
                    content: "受付時間/月〜金 9:00-16:00";
                    font-size: 12px;
                    display: block;
                    margin-top: 1vw;
                }
                .common-mail-text::after, .common-contact-text::after {
                    content: "";
                }
            }
        }
    }
}

@media screen and (max-width: 430px) {
    * {
        h1{
            font-size: 1.5em;
        }
        h2{
            font-size: 1.2em;
            font-weight: 600;
        }
        h3{
            font-size: 1em;
        }
        p{
            font-size: 0.8em;
        }
    }
    .pc{
        display: none;
    }
    .sp{
        display: block;
        border: 1px solid #fff;
        padding: 10px 0;
    }
    header {
        h1 {
            font-size: 18px;
        }
        nav {

            li {

            }
        }
    }

    .common-contact-container{
        .common-contact-container-box{
            .common-contact-flex-box{
                display: block;
                .common-tel-text::before {
                    content: "0564-51-4099";
                    font-size:25px;
                }

                .common-mail-text::before {
                    content: "メールでお問い合わせ";
                    font-size: 25px;
                }

                .common-contact-text::before {
                    content: "お問い合わせフォーム";
                    font-size: 25px;
                }

                /* .common-tel-text::after {
                    content: "受付時間/土日 9:00-16:00";
                    font-size: 12px;
                    display: block;
                } */
            }
        }
    }


footer {
    padding: 20px 0;
    .footer-flex{
        .footer-logo-box{
            img{
            width: auto;
            height: 40px;
            }
        }
        .footer-nav {
            ul {
                li {
                    font-size: 0.7em;
                }
                li:nth-child(2){
                    margin: 1.5vw 0;
                }
            }
        }
    }
}
}

@media screen and (max-width: 440px) {
    .common-contact-container {
        & .common-contact-container-box {
            & .common-contact-text {
                h2 {
                    font-size: 1.2em;
                }
            }
        }
    }

    .common-contact-container {
        & .common-contact-container-box {
            & .common-contact-flex-box {
                .common-mail-text::before {
                    content: "メールでお問い合わせ";
                    font-size: 20px;
                }
            }
        }
    }

    .common-contact-container {
        & .common-contact-container-box {
            & .common-contact-flex-box {
                .common-contact-text::before {
                    content: "お問い合わせフォーム";
                    font-size: 20px;
                }
            }
        }
    }

    .common-contact-container {
        & .common-contact-container-box {
            & .common-contact-flex-box {
                .common-tel-text::before {
                    content: "0564-51-4099";
                    font-size: 20px;
                }
            }
        }
    }
    .pc-contact{
        display: none;
    }
    .sp-contact{
        display: none;
    }

    .common-contact-container {
        & .common-contact-container-box {
            & .common-contact-flex-box {
                .common-tel-text {
                    align-content: center;
                    margin: 2vw 0;
                }
            }
        }
    }
}
