@charset "UTF-8";

/* =================
common
===================== */

:root {
    --primary-red: #9C3A35;
    --primary-brown: #F1E9DE;
    --primary-baige: #FFF9F0;
    --primary-white: #fff;
    --primary-black: #000000;
}

html {
    font-size: 62.5%;
}

body {
    margin: 0 auto;
    font-family: "Zen Old Mincho",
                "Lora";
    font-style: normal;
    color: var(--primary-black,#000);
    font-weight: 400;
    line-height: 1.5;
    min-width: 330px;
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

.section__topic {
    color: #9C3A35;
text-align: center;
font-family: Lora;
font-size: 3rem;
font-style: normal;
font-weight: 600;
line-height: 50px;
margin: 0 auto;
background-color: var(--primary-white);

}


.btn {
    
    color: var(--primary-red);
    text-align: center;
    font-family: Lora;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    display: block;
    width: 200px;
    height: 60px;
    margin: 0 auto;
    position: relative;
    transition: 0.4s;

}



.btn:hover {
    opacity: 0.5;
}

/* common pc */

@media screen and (min-width: 769px) {
    .section__topic {
        color: #9C3A35;
    text-align: center;
    font-size: 6rem;
    font-style: normal;
    font-weight: 600;
    line-height: 90px;
    margin: 0 auto;
    background-color: var(--primary-white);
    
    }

    .btn {
        height: 102px;
        width: 339px;
        font-size: 3rem;
        padding: 23px;
    }
}




/* =================
header
===================== */

.header__topic {
    width: 91px;
    height: auto;
}

.header {
    padding: 0 5.3% 0 6.4%;
    height: 61px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    z-index: 1;
}

.nav__header {
    display: flex;
    padding: 0 5.3% 0 6.4%;
    align-items: center;
    justify-content: space-between;
    height: 61px;
}
/* nav 初期表示 */

.nav {
    background: var(--primary-red);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav__list {
    margin-top: 80px;

}

.nav__item {
    color: var(--primary-white);
text-align: center;
font-family: Lora;
font-size: 2.4rem;
font-weight: 600;
line-height: 1;
margin-top: 48px;
position: relative;

}


.nav__item--link::after {
    content: '';
    display: inline-block; 
    width: 13px;
    height: 13px;
    background-image: url(../images/outsidelink.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 5px;
}

.header__btn {
    width: 30px;
    height: auto;
}

/* nav active */
.nav.active {
    transform: translateX(0);
}

/* header pc */



@media screen and (min-width: 769px) {
    .header {
        width: 100%;
        padding: 20px 30px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    } 
    
    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translateX(0);
    }

    .nav__list {
        display: flex;
        margin-top: 0;
        gap: 26px;
        
    }

    .nav__item {
        color: var(--primary-red);
        text-align: center;
        font-family: Lora;
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin-left: 20px;
        margin-top: 0;
        position: relative;
       

    }

    .nav__header {
        display: none;
    }

    .header__btn {
        display: none;
    }

    .nav__item--link::after {
        top: 28%;
        right: -36%;
        width: 10px;
        height: 10px;
        position: absolute;
        background-image: url(../images/link-red.svg);
    }

    .nav__item:nth-of-type(4) {
        margin-left: 20px;
    }
}

/* header pc */



  










 



/* =================
footer
===================== */

.footer {
    padding: 68px 0 32px 0;
    background: var(--primary-red);
}

.logo__footer {
    width: 150px;
    height: auto;
    display: block;
    margin: 45px auto;
}

.footer__item {
    color: #FFF;
    text-align: left;
    font-family: "Zen Old Mincho";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 14px;
    margin-left: 26px;
}

.footer__item:first-of-type {
    margin-top: 50px;
}

.SNS__footer {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-left: 25px;
    margin-top: 20px;
}

.copy {
    margin-left: 21px;
    margin-top: 30px;
    color: var(--primary-white);
}

.footer__item--shop {
    position: relative;
}

.footer__item--shop::after {
    position: absolute;
    background-image: url(../images/outsidelink.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 10px;
    height: 10px;
    content: '';
    display: inline-block;
    top: 10px;
    left: 37px;
}

.SNS__icon {
    width: 20px;
    height: 20px;
}

/* footer pc */

@media screen and (min-width: 769px){
    .footer {
        padding: 93px 26% 40PX 26%;
    }

    .footer__list {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 60px;
        margin-top: 60px;
    }

    .footer__item:first-of-type {
        margin-top: 17px;
    }

    .footer__item {
        font-size: 2rem;


    }

    .footer__item--shop::after {
        left: 49px;
        top: 13px;
    }

    .SNS__icon {
        width: 25px;
        height: 25px;
    }

    .SNS__footer {
        justify-content: center;
        margin-top: 50px;
    }

    .copy {
        font-size: 2rem;
        text-align: center;
        margin-top: 87px;
    }
    
}



