@charset "UTF-8";
/*===============
 common
 ================ */
 :root{
    --primary-red: #950416;
    --primary-black: rgba(0, 0, 0, 0.86);
    --primary-white: #ffffff;
    --primary-blue: #C8E1E8;
    --contentWidth: 91.4%;
    --contentPadding: 4.2%;
}

html{
    font-size: 62.5%;
}

body{
    font-family: 
     "Zen Maru Gothic", "Zen Antique Soft", "Platypi", "Klee One",  "Playball", serif;
     font-style: normal;
     line-height: 1.5;
     color: var(--primary-black);
     background-image:url(../images/bg.png);
     background-repeat: repeat;
     background-position: top center;
}

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

.pagetop {
    height: 40px;
    width: 40px;
    position: fixed;
    right: 15px;
    bottom: 30px;
    background: #FFF;
    border: solid 2px #4D210E;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

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

.topic{
    color: var(--primary-red);
    text-align: center;
    font-family: "Zen Antique Soft";
    font-size: 3.2rem;
    letter-spacing: 0.64rem;
    line-height: 1;
}

.btn{
    display: block;
    width: 247px;
    height: 63px;
    flex-shrink: 0;
    border-radius: 15px;
    background-color: #E1F0F3;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    padding: 14px 63px 14px;
    color: var(--primary-red);
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    transition: 0.4s;
    margin: 0 auto;
}

.btn::after{
    content: '';
    display: inline-block;
    width: 10px;
    height: 16px;
    background-image: url(../images/logo-andmore.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no repeat;
    position: absolute;
    right: 36px;
    top: 50%;
    transform: translateY(-50%);
}

.btn:hover{
    background-color: var(--primary-white);
}

.pcBr{
    display: none;
}

.insta{
    text-decoration: underline;
}

.pcBr{
    display: none;
}

/*========== common pc 769px============== */

@media screen and (min-width:769px) {
    .topic{
        font-size: 8rem;
        letter-spacing: 1.6rem;
        line-height: 1.5;
    }

    .btn{
        width: 405px;
        height: 103px;
        font-size: 4.8rem;
    }

    .btn::after{
        content: '';
        display: inline-block;
        width: 15px;
        height: 24px;
        background-image: url(../images/logo-andmore.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no repeat;
        position: absolute;
        right: 36px;
        top: 50%;
        transform: translateY(-50%);
    }

    .pcBr{
        display: block;
    }

    .spBr{
        display: none;
    }

    .pagetop {
        width: 50px;
        height: 50px;
        right: 30px;
    }
}
/*========== common pc 769px============== */

/* ==============
fade In
================ */

.fadeIn{
    transform: translate(0,50px);
    opacity: 0;
    transition: 0.8s;
}

.fadeIn.animated{
    transform: translate(0,0);
    opacity: 1;
}

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

 .header{
    padding: 0 6.4%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
 }

 .header__topic,
 .nav__topic{
    width: 80px;
    height: 49px;
 }

 .header__topic a,
 .nav__topic a{
    display: flex;
    align-items: center;
 }

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

 .nav__header{
    padding:0 6.4%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
 }

 .nav__list{
    margin: 47px 0 0 32px;
 }

 .nav__item{
    color: var(--primary-red);
    font-family: "Zen Antique Soft";
    font-size: 2.4rem;
    line-height: 1;
    margin-top: 88px;
    display: flex;
    align-items: center;
 }

 .nav__item:first-of-type{
    margin-top: 0;
 }

 .nav__icon{
    width: 24px;
    height: 24px;
    margin-right: 24px;
 }

 /* .nav.active表示 */

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

 .header__btn{
    display: block;
    width: 20px;
    height: 13px;
 }

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

 @media screen and (min-width:769px) {
    .header{
        max-width: 1280px;
        height: 80px;
        margin: 0 auto;
        padding: 20px 60px;
    }
    .header__topic,
    .nav__topic{
        width: 120px;
    }

    .nav__header{
        display: none;
    }

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

     .nav__list{
        display: flex;
        align-items: center;
        margin: 0;
     }

     .nav__item{
        font-size: 2rem;
        line-height: 1.5;
        margin: 0 0 0 56px;
     }

     .nav__item img{
        display: none;
     }

     .header__btn{
        display: none;
     }
 }

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

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

.footer{
    background-color: var(--primary-white);
}

.footerNav__list{
    padding: 16px 16px 48px;
    display: block;
}

.footerNav__top{
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 250px;
}

.footerNav__bottom{
    display: flex;
    justify-content: space-evenly;
    margin: 48px auto 0;
}

.footerNav__item{
    color: var(--primary-red);
    font-family: Platypi;
    font-size: 1.6rem;
    font-weight: 700;
}

.footer__logo{
    display: none;
}

.copy{
    text-align: center;
    padding-bottom: 16px;
    color: var(--primary-black);
    font-family: "Zen Antique Soft";
    font-size: 1.4rem;
}

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

@media screen and (min-width:769px) {
    
    .footerNav__list{
        display: flex;
        gap: 96px;
        padding: 20px 219px 14px 220px;
        justify-content: center;
        align-items: center;
        align-self: stretch;
    }

    .footerNav__top, .footerNav__bottom{
        margin: 0;
        gap: 96px;
        max-width: 721px;
    }

    .footerNav__item{
        font-size: 2rem;
    }

    .footer__logo{
        display: block;
        width: 240px;
        height: 115px;
        margin: 16px auto 0;
    }

    .copy{
        padding: 16px 0;
        font-size: 1.8rem;
    }
}

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