@charset "utf-8";
/* ===============================
common
================================== */
html{
    font-size: 62.5%;
}
body{
    background-color: rgba(56, 78, 54, 1);
    color: rgba(255, 255, 255, 1);
    font-family: "Noto Sans JP","Kiwi Maru",sans-serif;
    font-style: normal;
    line-height: 1.5;
}
img{
    max-width: 100%;
    height: auto;
}
.btn{
    display: flex;
    width: 225px;
    height: 60px;
    padding: 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 40px auto 0;
    background-color: #D8B55A;
    color:#fdfdfd;
    text-align: center;
    font-family: "Kiwi Maru";
    font-size: 2rem;
    font-weight: 700;
    border-radius: 15px;
}
.btn:hover{
    background-color: #fdfdfd;
    color: #D8B55A;
    transition: 0.4s;
}
.btn::after{
    content: "▶︎";
    transition: 0.4s;
}
.topics{
    text-align: center;
    font-family: "Kiwi Maru";
    font-size: 2rem;
    font-weight: 700;
    letter-spacing:0.15em;
}
.topicsBox{
    padding: 15px 4px;
    border-bottom: 1px solid #fdfdfd;
    width: 159px;
    margin: 0 auto 100px;
}
@media screen and (min-width: 768px){
    .btn{
        width: 320px;
        height: 70px;
        margin: 100px auto 0;
        font-size: 2.3rem;
    }
    .topicsBox {
        width: 208px;
        margin: 0 auto 100px;
    }
    .topics{
        font-size: 2.5rem;
    }
}
@media screen and (min-width: 961px){
    .btn{
        font-size: 2.5rem;
    }
}
/* ===============================
header
================================== */
.header{
    background-color:rgba(216, 181, 90, 1) ;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1%, transparent 40%);
    background-size: 5px 5px; 
    height: 68px;
}
.headerNav{
    width: 100vw;
    height: 100vh;
    background-color:rgba(56, 78, 54, 1) ;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1%, transparent 40%);
    background-size: 5px 5px; 
    position: fixed;
    left: 0;
    top: 0;
    transform: translate(-100%);
    transition: 0.4s;
    z-index: 100;
}
.headerNav__list{
    margin-top: 114px;
    display: flex;
    flex-direction: column;
}
.headerNav__item{
    display: inline-block;
    margin-top: 44px;
    color: #FFF;
    font-family: "Kiwi Maru";
    font-size: 2rem;
    font-weight: 700;
    transition: 0.4s;
}
.headerNav__item:hover{
    opacity: 0.5;
}
.headerNav__item::before{
    content: "";
    width: 52.5px;
    height: 1px;
    background-color: #fdfdfd;
    display: inline-block;
    margin-right: 16px;
}
.headerNav__item a{
    vertical-align: -6px;
}
/* hamburger menu */
.hamburger__line{
    width: 50px;
    height: 1px;
    background-color: #fdfdfd;
    margin-top: 10px;
    transition: 0.4s;
}
.hamburger{
    position: fixed;
    top: 74px;
    right: 15px;
    z-index: 150;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
.headerNav.active{
    transform: translate(0);
}
.hamburger.active .hamburger__line:nth-child(1){
    transform: translateY(10px) rotate(45deg);
}
.hamburger.active .hamburger__line:nth-child(2){
    opacity: 0;
}
.hamburger.active .hamburger__line:nth-child(3){
    transform: translateY(-10px) rotate(-45deg);
}
.logo{
    width: 130px;
    height: 20px;
}
/* pc header */
@media screen and (min-width: 961px){
    .header{
        display: flex;
        justify-content: space-between;
        padding: 0 30px;
    }
    .logo{
        width: 200px;
    }
    .logo:hover{
        opacity: 0.5;
        transition: 0.4s;
    }
    .hamburger{
        display: none;
    }
    .headerNav {
        width: auto;
        height: auto;
        background-color:transparent;
        position: static;
        transform: translate(0);
    }
    .headerNav__list {
        margin-top:0;
        flex-direction:row;
        gap: 0 45px;
    }
    .headerNav__item {
        margin-top:0;
        font-size: 1.4rem;
        position: relative;
    }
    .headerNav__item a:hover{
        color: #fdfdfd;
    }
    .headerNav__item a::before{
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 0;
        height: 1px;
        background-color:#fdfdfd;
        transition: 0.4s;
    }
    .headerNav__item a:hover::before{
        width: 100%;
    }
    .headerNav__item::before{
        display: none;
    }
    .headerNav__item a {
        vertical-align: -20px;
    }
}/* pc */


/* ===============================
footer
================================== */
.footer{
    padding: 60px 5.3%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1%, transparent 40%);
    background-size: 5px 5px; 
}

.sns{
    color: #fdfdfd;
    text-align: center;
    font-family: "Kiwi Maru";
    font-size: 2rem;
    font-weight: 700;
}
.sns__box{
    display: flex;
    gap: 0 20px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}
.youtube{
    width: 40px;
    height: 29px;
    display: inline-block;
    transition-duration: .4s;
}
.youtube:hover{
    transform: scale(1.1);
}
.insta{
    width: 34px;
    height: 34px;
    display: inline-block;
    transition-duration: .4s;
}
.insta:hover{
    transform: scale(1.1);
}
.ticktock{
    width: 35px;
    height: 35px;
    display: inline-block;
    transition-duration: .4s;
}
.ticktock:hover{
    transform: scale(1.1);
}
.x{
    width: 27px;
    height: 28px;
    display: inline-block;
    transition-duration: .4s;
}
.x:hover{
    transform: scale(1.1);
}
.footerNav__item a {
    display: inline-block;
    transition: 0.4s;
    color: #fdfdfd;
    font-family: "Kiwi Maru";
    font-size: 1.1rem;
    margin-top: 15px;
    position: relative;
}
.footerNav__item a:hover{
    color: #fdfdfd;
}
.footerNav__item a::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background-color:#fdfdfd;
    transition: 0.4s;
}
.footerNav__item a:hover::before{
    width: 100%;
}
.footerrNav__list{
    margin-top: 72px;
}
.copy{
    text-align: center;
    font-size: 0.9rem;
    display: block;
    margin: 39px auto 0;
}
#page-top{
    position: fixed;
    bottom :20px;
    right: 20px;
    font-size: 1.4rem;
    line-height: 1;
    z-index: 100;
}
#page-top a{
    background-color:#D8B55A;
    color: #fdfdfd;
    width: 63px;
    padding: 24px 5px;
    text-align: center;
    display: block;
    border-radius: 90px;
    opacity: 0.9;
    transition: 0.4s ease;
    font-family: "Kiwi Maru";
}
#page-top a:hover{
    opacity: 0.5;
}
/* footer tab */
@media screen and (min-width: 768px){
    .footer{
        padding: 85px 5.3%;
    }
    .sns{
        font-size: 2.5rem;
    }
    .sns__box {
        gap: 0 50px;
    }
    .youtube {
        width: 55px;
        height: 39px;
    }
    .insta {
        width: 44px;
        height: 44px;
    }
    .ticktock {
        width: 48px;
        height: 48px;
    }
    .x {
        width: 38px;
        height: 39px;
    }
    .btn--contact{
        margin: 40px auto 0;
    }
    .footerrNav__list{
        margin: 72px 0 0 100px;
    }  
    .footerNav__item a{
        font-size: 1.4rem;
    }
    #page-top a {
        width: 80px;
        padding: 32px 5px;
    } 
}/* tab */
/* pc footer */
@media screen and (min-width: 961px){
    .footer{
        padding: 100px 5.3%;
    }
    .sns{
        font-size: 2.8rem;
    }
    .footerNav__item a{
        font-size: 1.6rem;
    }
    #page-top a {
        width: 135px;
        padding: 60px 5px;
        font-size: 1.8rem;
    } 
}
/* pc */
