@charset "UTF-8";

/*=========================
common
=========================*/
ul {
    list-style: none;
}

:root{
    --primary-orange: #FAC569;
    --primary-orangeLow:#ffa200;
    --primary-lightorenge:#FFF8CF;
    --primary-whiteLow: #FFFEF5;
    --primary-blue: #46AEF7;
    --primary-black: #333333;
}

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body{
    font-family: "Noto Sans JP", serif;
    font-style: normal;
    color: var(--primary-black);
    line-height: 1.5;
    font-style: normal;
    background-color:var(--primary-lightorenge);
}

.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    box-shadow: 0 4px 6px rgb(0 0 0 / 10%);
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid var(--primary-whiteLow);
    border-right: 3px solid var(--primary-whiteLow);
    transform: translateY(20%) rotate(-45deg);
}

@media (hover: hover) and (pointer: fine) {
    .pagetop:hover, .pagetop:hover {
        background: #ffa200;
    }
}

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

.topic{
    color: var(--primary-black);
    text-align: center;
    font-family: "Zen Maru Gothic", serif;
    font-style: normal;
    color: #333;
    font-size: 2rem;
    font-weight: 500;
    line-height: normal;
    margin: 0 auto;
}


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

    .topic{
        font-size: 4rem;
        letter-spacing: 8.4px;
    }

}
/* pc 769px */

/*==========================
header
==========================*/

.header{
    background-color: var(--primary-lightorenge);
    height: 116px;
    display: flex;
    justify-content: center;
}

.header__topic,
.nav__topic{
    margin: 17px auto;
}

.logo_headerSP{
    width: 216px;
}

.logo_headerPC{
    display: none;
}



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

}

.nav__header{
    height: 116px;
    display: flex;
    justify-content: center;
    background-color: var(--primary-lightorenge);
}


.nav__headerSP{
    width: 216px;
}

.nav__list{
    display: flex;
    padding: 0px 4px;
    flex-direction: column;
    align-items: flex-end;
    gap: 29px;
    margin-right: 13%;
    margin-top: 62px;
}

.nav__item{
    color: var(--primary-black);
    font-family: "Zen Maru Gothic", serif;
    font-size: 2rem;
    font-weight: 500;
    font-size: 2rem;
    line-height: 3;

    display: flex;
}

.nav__btn{
    display: block;
    width: 55px;
    height: 55px;
    margin-top: 10px;
    margin-right: 10px;
}

/* .nav.active表示 */
.nav.active{
    transform: translateX(0);
}

.header__btn{
    display: block;
    width: 55px;
    height: 55px;
    margin-top: 10px;
    margin-right: 10px;
}

/* header pc */

@media screen and (min-width: 769px){
    .header{
        height: 116px;
        padding: 9px 5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header__topic{
        display: block;
        height: 83px;
        margin: 0;
        align-items: center;
    }

    .logo_headerPC{
        display: block;
        width: 216px;
    }

    .logo_headerSP{
        display: none;
    }

    .nav__header{
        display: none;
    }

    .nav{
        background: transparent;
        width: auto;
        height: auto;
        position: static;
        padding: 0;
        transform: translateX(0);
        margin-top: auto;

    }

    .nav__topic{
        display: none;
    }

    .nav__list{
        display: flex;
        align-items: center;
        max-width: 719px;
        height: 27px;
        padding: 0px 2px;
        justify-content: flex-end;
        gap: 22px;
        margin-right: 0;
        margin-top: auto;
        margin-bottom: 9px;
        flex-direction: row;
    }

    .nav__item{
        font-family: "Zen Maru Gothic";
        font-size: clamp(1rem, 2.5vw, 1.8rem); 
        font-weight: 500;
        letter-spacing: 2.2px;
        line-height: normal;

    }

    .nav__btn,
    .header__btn{
        display: none;
    }
}
/* pc 769px */

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

.footer{
    width: 100%;
    background-color: var(--primary-lightorenge);
    text-align: center;
}

.footerlogoPC{
    display: none;
}

.footerlogoSP{
    width: 212px;
    margin: 35px auto 0;
}

.footerNav{
    padding: 36px 10% 12px;
}
.footerNav__list{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 21px;
    flex-shrink: 0;

    color: var(--primary-black);
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 133%; /* 18.62px */
    letter-spacing: 1.54px;
}

.copy{
    margin: 0 auto 17px;
    color: var(--primary-black);
    font-size: 1.2rem;
    font-weight: 300;
}

/* pc */

@media screen and (min-width: 769px){


    .footerNav{
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        padding: 50px 7%;
    }

    .footerlogoPC{
        display: block;
        width: 332px;
    }

    .footerlogoSP{
        display: none;
    }

    .footerNav__list{
        font-size: 2rem;
        flex-direction: row;
    }

    .copy{
        font-size: 1.4rem;
    }
}