@charset "utf-8";

/* =======================
common 
========================*/
:root {
    --primary-pink: #FF7EB6;
    --primary-gray: #393939;
    --primary-babypink: #FFECF4;
    --primary-lightpink: #FFACD0;
    --primary-background: #FFF6FA;
    --primary-number: #FFC8E0;
    --contentWidth: 91.4%;
    --contentPadding: 4.2%;
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        "Noto Sans JP",
        Arial,
        sans-serif;
    font-style: normal;
    color: #393939;
    background-color: #fff;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

.btn--contact {
    border-radius: 50px;
    background: #d49d55bb;
    color: #393939;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 20px 60px;
    width: 150px;
    display: block;
    margin: 0 auto;
    align-items: center;
}


.btn:hover {
    opacity: 0.5;
}

/* common pc */
@media screen and (min-width: 769px) {
    .section__topic {
        font-size: 3.6rem;
        line-height: 1;
    }
    .topic::after {
        margin: 32px auto 0;
    }

    .btn {
        width: 343px;
        height: 56px;
        font-size: 3rem;
    }

}/* pc 769px */


/* =======================
header
========================*/
.header {
    padding: 30px 0 0 4.2%;
    height: 64px;
    display: flex;
    align-items: center;  
    justify-content: space-between;
}

.header__topic,
.nav__topic {
    font-family: "Noto Sans JP";
    color: #393939;
    font-size: 2.3rem;
    line-height: 1.3;
    text-decoration: none;
}

.header__topic span,
.nav__topic span {
    font-size: 2.1rem;
    color: #393939;
    text-decoration: none;
    margin-left: 15px;
}

.header__topic a,
.nav__topic a {
    color: #393939;
    text-decoration: none;
    align-items: center;
} 

/* .navの初期表示 */
.nav {
    background: #FFF6FA;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav__header {
    padding-left: 4.2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__topic {
    font-family: "Noto Sans JP";
    color: #393939;
    font-size: 2.3rem;
    line-height: 1.3;
    text-decoration: none;
}

.nav__list {
    margin-top: 60px;
}

.nav__item {
    color: #393939;
    font-size: 2rem;
    font-weight: 700;
    margin-top: 48px;
    display: flex;
    align-items: center;
}


.nav__btnContact {
    color: #393939;
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
    background-color: #d49d55bb;
    border-radius: 20px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.nav__btnContact:hover {
    opacity: 0.5;
}

.nav__btnContact:last-of-type {
    display: none;
}

/* .nav.active表示 */
.nav.active {
    transform: translateX(0);
}

.header__btn {
    display: block;
    width: 64px;
    height: 64px;
}


/* headerPC */
@media screen and (min-width: 769px) {
    .header {
        max-width: 1280px;
        height: 100px;
        margin: 0 auto;
        padding: 0px 60px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    .header__topic {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 0;
        margin-left: 40px;
    }

    .header__topic span {
        font-size: 3rem;
        display: block;
        margin-left: 50px;
    }

    .nav__header {
        display: none;
    }

    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translateX(0);
    }

    .nav__list {
        margin-top: 0;
        display: flex;
        align-items: center;
    }

    .nav__item {
        margin: 0 0 0 40px;
        color: #393939;
        font-size: 2.4rem;
    }

    .before_topics_s {
        display: none;
    }

    .nav__item:nth-last-of-type(2) {
        display: none;
    }

   .nav__item:last-of-type {
        display: block;
    }

    .nav__btnContact:last-of-type {
        display: block;
    }

    .header__btn {
        display: none;
    }
}/* pc 769px */

/* =======================
footer
========================*/
.footerBorderSP {
    display: block;
    margin: 50px auto;
}

.footerBorder {
    display: none;
}

footer {
    background-color: #FFF6FA;
}

.menu__topic {
    font-family: "Noto Sans JP";
    color: #393939;
    font-size: 2.3rem;
    line-height: 1.3;
    text-decoration: none;
    margin-top: 50px;
    margin-left: 30px;
}

.menu__topic span {
    font-size: 2.1rem;
    color: #393939;
    text-decoration: none;
    margin-left: 15px;
}

.menu__topic a {
    color: #393939;
    text-decoration: none;
    align-items: center;
}

.menu__item {
    font-size: 16px;
    margin-top: 20px;
}

.menu__list {
    margin: 0 0 0 6.4%;
}

.reservePc {
    display: none;
}

.footerAll {
    display: flex;
    flex-direction: column-reverse;
}

.reserveSp {
    padding: 50px 6.4%;
    max-width: 400px;
    margin: 0 auto;
}

.copy {
    text-align: center;
    margin-top: 90px;
}

.before_topics_pc {
    display: none;
}

@media screen and (min-width: 769px) {
    .footerBorderSP {
        display: none;
    }

    .footerBorder {
        display: block;
        margin: 30px auto;
        max-width: 1270px;
        width: 80%;
        height: 4px;
    }


    .footerAll {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-top: 50px;
    }

    .topicsWrap {
        margin-top: 100px;
    }

   .menu__topic {
        font-size: 4.0rem;
        font-weight: 700;
        margin-top: 60px;
    }    

   .menu__topic span {
        font-size: 3.6rem;
        color: #393939;
        text-decoration: none;
        margin-left: 30px;   
    }

    .menu__item {
        font-size: 2.0rem;
        margin-left: 120px;
        font-weight: 400;
    }

    .menu__list {
        margin-left: 20px;
    }

    .LogoMenu {
        padding-left: 8%;
        padding-right: 2%;
    }

    .reserveWrap {
        margin-left: 2%;
        margin-right: 2%;
    }

    .before_topics_sp {
        display: none;
    }

    .before_topics_pc {
        display: block;
    }

    .copy {
        font-size: 2.4rem;
        text-align: center;
        margin-top: 90px;
    }
}/* pc 769px */