@charset "utf-8";
@import url("font.css");
@import url("reset.css");

/* ==================================================

    * intro
	
================================================== */
html:has(.intro),
body:has(.intro){
    overflow: hidden;
}
.wrap.intro{
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    background-repeat: no-repeat;
    background-position: center 0;
    background-image: url('../image/intro/bg_intro.jpg');
    background-size: cover;
}
.intro-contents{
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 50px;
}
.intro-logo{
    text-align: right;
}
.intro-tit{
    opacity: 0;
    animation: slide-up 0.5s linear forwards;
    text-align: center;
}
.intro-tit img{
    max-width: 100%;
}
.intro-contents p{
    opacity: 0;
    margin-top: -60px;
    animation: slide-up 0.5s 0.7s linear forwards;
}
.intro-contents p img{
    max-width: 100%;
}
.intro-contents .btn-wrap{
    margin-top: 30px;
    text-align: center;
}
.btn-comming{
    opacity: 0;
    display: inline-block;
    position: relative;
    padding: 28px 115px;
    margin: 0 auto;
    border-radius: 50px;
    background-position: center 0;
    background-image: url('../image/intro/bg_btn_comming.png');
    font-size: 4.5rem;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
    vertical-align: top;
    animation: slide-up 0.5s 0.7s linear forwards;
}
.intro-tit,
.intro-contents p,
.btn-comming{
    -webkit-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-perspective: 1000;
    -webkit-backface-visibility: hidden;
}
@keyframes slide-up{
    0%{
        opacity: 0;
        transform: translateY(10px);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}

@media screen and (max-width: 1300px){
    .intro-contents{
        padding-left: 5%;
        padding-right: 5%;
    }
}
@media screen and (max-width: 1024px){
    .intro-contents p{
        margin-top: -6.5%;
    }
}
@media screen and (max-width: 768px){
    .wrap.intro{
        background-image: url('../image/intro/bg_intro_m.jpg');
        background-color: #000000;
    }
    .intro-contents{
        padding-left: 35px;
        padding-right: 35px;
        padding-top: 50px;
    }
    .intro-contents p{
        margin-top: 15px;
    }

    .intro-contents .btn-wrap{
        margin-top: 25px;
    }
    .btn-comming{
        padding: 15px 50px;
        background-size: auto 100%;
        font-size: 25px;
    }
    .intro-logo{
        position: absolute;
        left: 0;
        bottom: 65px;
        width: 100%;
        text-align: center;
    }
    .intro-logo > img{
        width: 80px;
    }
}

/* animation */
#anicon{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}