@charset "UTF-8";

body {
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",
        "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

img {
    width: 100%;
    vertical-align: bottom;
}

.mainw {
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


/* header */
/* ============================================ */
.header {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    width: 100%;
    max-width: 548px;
    top: 0;
    z-index: 1;
}

.header_inr {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    width: 100%;
}

.header_logo {
    padding: 1.6vw 3vw 0;
    max-width: 19vw;
}

.header_contact {
    max-width: 36.7vw;
}

@media (min-width: 549px) {
    .header_contact img {
        width: 380px;
    }

    .header_contact {
        width: 380px;
    }
}

@media (min-width: 549px) {
    .header_logo {
        padding: 8px;
        max-width: 100px;
    }
}

/* ============================================ */
/* header ここまで */


/* footer */
/* ============================================ */

.footer {
    width: 100%;
    max-width: 548px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 100px;
}

.footer .footer_inr {
    padding: 70px 0 54px;
    color: #fff;
    background: #85d4b0;
}

.footer ul {
    list-style: none;
    display: flex;
    gap: 0 100px;
    justify-content: center;
    padding-bottom: 60px;
}

.footer .footer-navi_list {
    img {
        width: 4.4vw;
        max-width: 44px;
    }
}

.footer .footer-navi_list a {
    color: #fff;
}

@media screen and (max-width: 548px) {

    .footer {
        width: 100%;
        max-width: 548px;
        margin-left: auto;
        margin-right: auto;
        padding-bottom: (100/375)*100vw;
    }

    .footer .footer_inr {
        padding: 7vw 0 5.4vw;
        color: #fff;
        background: #85d4b0;
    }

    .footer ul {
        list-style: none;
        display: flex;
        gap: 0 10vw;
        justify-content: center;
        padding-bottom: 6vw;
    }

    .footer .footer-navi_list {
        img {
            width: 4.4vw;
            max-width: 44px;
        }
    }
}

.fixed_btn.fixed {
    display: block;
    opacity: 1;
    visibility: visible;
    transition: 0.3s ease-in-out;
}

.fixed_btn {
    display: none;
    opacity: 0;
    visibility: hidden;
    z-index: 100;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 548px;
}


/* ============================================ */
/* footer ここまで */