@charset "utf-8";

body{
    font-family: "Inter";
    color: #1e1e21;
    background-color: #f5f3ef;
}
h1{
    font-size: 192px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -10px;
}
h2{
    font-size: 96px;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: -2px;
}
h3{
    font-size: 64px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -2px;
}
h4{
    font-size: 48px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -1px;
}
h5{
    font-size: 32px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -1px;
}
p{
    font-size: 24px;
    line-height: 160%;
}

.inner{
    margin: 0 64px;
}
.sp{
    display: none;
}

/* header */
.menu-btn{
    position: fixed;
    top: 48px;
    right: 48px;
    width: 112px;
    height: 56px;
    text-align: center;
    line-height: 56px;
    color: #f5f3ef;
    background-color: #1e1e21;
    border-radius: 60px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
    z-index: 100;
    cursor: pointer;
}
.menu-btn.is-active{
    color: #1e1e21;
    background-color: #f5f3ef;
}

.menu-wrap{
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    color: #f5f3ef;
    background-color: #1e1e21;
    z-index: 10;
    transition: all 0.4s;
}
.menu-wrap.is-active{
    left: 0;
}

.menu-list{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.menu-list li{
    margin: 0;
    padding: 0;
    text-align: center;
}
.menu-item a{
    display: inline-block;
    color: #f5f3ef;
    font-size: 128px;
    font-weight: 600;
    letter-spacing: -4px;
    line-height: 100%;
    cursor: pointer;
    position: relative;
}
.menu-item a::before{
    position: absolute;
    top: 0;
    left: -70px;
    content: "";
    width: 70px;
    height: 70px;
    background: url(../img/arrow_white.png) center/cover no-repeat;
}
.menu-item a:hover{
    opacity: .7;
}

/* footer */
.footer{
    background-color: #1e1e21;
    text-align: center;
}
.footer-inner h1{
    color: #f5f3ef;
    padding-top: 157px;
    padding-bottom: 32px;
}
.footer-btn{
    background-color: #f5f3ef;
    border-radius: 70px;
    width: 138px;
    height: 62px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 0 auto 169px auto;
}
.footer-btn:hover{
    opacity: .7;
}
.footer-btn a{
    font-size: 20px;
    font-weight: 600;
}
.footer-menu-list{
    text-align: center;
    padding-bottom: 138px;
}
.footer-menu-list li{
    display: inline-block;
    margin-right: 48px;
}
.footer-menu-list li:last-child{
    margin-right: 0;
}
.footer-menu-item a{
    font-size: 24px;
    font-weight: 600;
    color: #f5f3ef;
    cursor: pointer;
}
.footer-menu-item a:hover{
    opacity: .7;
}

/* タブレット用レスポンシブ===================== */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    h1{
        font-size: 120px;
        letter-spacing: -4px;
    }
    h2{
        font-size: 72px;
        line-height: 120%;
        letter-spacing: -1px;
    }
    h3{
        font-size: 48px;
        letter-spacing: -1px;
    }
    h4{
        font-size: 36px;
    }
    h5{
        font-size: 28px;
    }
    .inner{
        margin: 0 40px;
    }
}

  
/* スマホ用レスポンシブ===================== */
@media screen and (max-width:768px){
    h1{
        font-size: 80px;
        letter-spacing: -4px;
    }
    h2{
        font-size: 48px;
        line-height: 120%;
        letter-spacing: -1px;
    }
    h3{
        font-size: 32px;
        letter-spacing: -1px;
    }
    h4{
        font-size: 22px;
    }
    h5{
        font-size: 24px;
    }
    p{
        font-size: 20px;
    }
    .inner{
        margin: 0 20px;
    }
    .sp{
        display: inline;
    }

    /* header */
    .menu-btn{
        top: 20px;
        right: 20px;
        width: 92px;
        height: 49px;
        line-height: 49px;
        font-size: 20px;
    }
    .menu-item a{
        font-size: 53px;
        letter-spacing: -1.6px;
    }
    .menu-item a::before{
        left: -29px;
        width: 29px;
        height: 29px;
    }

    /* footer */
    .footer-inner h1{
        font-size: 57.8px;
        letter-spacing: -3px;
        padding-top: 53px;
        padding-bottom: 17px;
    }
    .footer-btn{
        border-radius: 40px;
        width: 77.4px;
        height: 34.4px;
        margin: 0 auto 57px auto;
    }
    .footer-btn a{
        font-size: 11px;
    }
    .footer-menu-list{
        padding-bottom: 53px;
    }
    .footer-menu-list li{
        display: block;
        margin-right: 0;
        margin-bottom: 29px;
    }
    .footer-menu-item a{
        font-size: 20px;
    }
}
