@charset "utf-8";

/*================
common
============================*/
html {
    font-size: 62.5%;
}

body {
    font-family: "Noto Sans JP",
        arial,
        sans-serif;
    font-style: normal;
    color: #2f2f2f;
    background-color: #ffffff;
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}






/*================
font
============================*/
.zen-kaku-gothic-antique-light {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.zen-kaku-gothic-antique-regular {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.zen-kaku-gothic-antique-medium {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.zen-kaku-gothic-antique-bold {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.zen-kaku-gothic-antique-black {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 900;
    font-style: normal;
}


.kiwi-maru-light {
    font-family: "Kiwi Maru", serif;
    font-weight: 300;
    font-style: normal;
}

.kiwi-maru-regular {
    font-family: "Kiwi Maru", serif;
    font-weight: 400;
    font-style: normal;
}

.kiwi-maru-medium {
    font-family: "Kiwi Maru", serif;
    font-weight: 500;
    font-style: normal;
}



/*================
header
============================*/
.header {
    padding: 24px 6.4% 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.header__topic,
.nav__topic {
    font-size: 2.4rem;
    font-weight: 700;
}

/*初期表示*/
.nav {
    background: #A5D8D7;
    width: 100%;
    height: 100vh;
    padding: 48px 6.4%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav__header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav__list {
    margin-top: 66px;
    color: #2D607C;

}

.nav__item {
    color: #2D607C;
    font-family: zen-kaku-gothic-antique;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    /* 18px */
    margin-top: 52px;
}



.nav.active {
    transform: translateX(0);

}

.header__btn {
    display: block;
    width: 18px;
    height: 11px;


}

.nav__item {
    position: relative;
}

.nav__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20vh;
    height: 1px;
    background-color: #2D607C;
    margin-left: -22vh;
}

/*.header pc*/
@media screen and (min-width: 769px) {
    .header {


        padding: 48px 20px 24px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        max-width: 950px;
        margin: 0 auto;

    }

    .header__btn {
        display: none;
    }

    .nav__btn {
        display: none;
    }

    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translate(0);
    }

    .nav__list {
        display: flex;
        margin-top: 0;

    }

    .nav__item {
        font-weight: 400;
        line-height: 1.3;
        margin-left: 32px;
        margin-top: 0;
        color: #59A9D8;
        font-family: "Zen Kaku Gothic Antique";
        font-size: 2.4rem;
        font-weight: 400;
    }

    .nav__item::before {
        display: none;
    }
}

/*================
.inquiry
============================*/

.inquiry {
    background-color: #D7EDEC;
    padding-top: 1px;
    padding-bottom: 16.8vw;

}

.inquiry__name {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2D607C;
    margin-top: 30px;
    font-family: "Zen Kaku Gothic Antique";
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 0.7em;
    text-align: center;
    position: relative;
    margin-bottom: 20px;
}

.inquiry__name::after {
    content: '';
    position: absolute;
    border-bottom: 8px dotted #ffffff;
    width: 50px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);

}

.inquiry__text {
    display: flex;
    padding: 10px 50px;
    color: #5e5a5a;

    font-family: "Zen Kaku Gothic Antique";
    font-size: 17px;
    font-weight: 400;
}

.inquiry__img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 15px;
}

.inquiry__img1 {
    padding: 0 10px;
}

.inquiry__img2 {
    padding: 0 10px;
}

/*inquiry pc*/
@media screen and (min-width: 769px) {
    .inquiry {
        padding-bottom: 122px;


    }

    .inquiry__box {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 950px;
        margin: 0 auto;

    }

    .inquiry__text {
        width: 65%;
    }


}

/*================
footer
============================*/
.content {
    padding: 0 0 6.1vw 0;
}

.footer {
    position: relative;
    background-color: #D7EDEC;

}

.footer.w {
    position: relative;
    background-color: #ffffff;

}

.footer_title {
    display: flex;
    padding: 0 50px;
    color: #2D607C;
    font-family: "Zen Kaku Gothic Antique";
    font-size: 14px;
    font-weight: 400;
    position: relative;
    z-index: 100;
}

.footer_copyright {
    display: flex;
    padding: 0 50px;
    color: #2D607C;
    font-family: "Zen Kaku Gothic Antique";
    font-size: 12px;
    font-weight: 400;
    position: relative;
    z-index: 100;
}

svg {
    height: 30.1vw;
    width: 100vw;
    position: absolute;
    bottom: 0;
    left: 0;
}




/*.footer pc*/
@media screen and (min-width: 769px) {


    svg {
        height: 200px;

    }

    .content {
        padding: 0 0 77px 0;
        max-width: 950px;
        margin: 0 auto;
    }

}