@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* clearfix */	
.clearfix:after {content: "";display: block;clear: both;}
/* flex */	
.flex,.flexA,.flexB,.flexC {display: flex;flex-wrap: wrap;}
.flexA {justify-content: space-around;}
.flexB {justify-content: space-between;}
.flexC {justify-content: center;}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
    margin: 0 auto;
    max-width: 820px;
}
@media all and (max-width: 896px) {
    .content {
        margin: 0 66px 0 40px;
        max-width: inherit;
    }
}
/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
    margin-bottom: 34px;
    color: #FFF;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    text-align: center;
}
.headLine01 .en {
    margin-bottom: -8px;
    display: block;
    font-size: 6rem;
    font-weight: 500;
    letter-spacing: 0;
}
@media all and (max-width: 896px) {
    .headLine01 {
        margin-bottom: 12px;
        font-size: 1.4rem;
    }
    .headLine01 .en {
        margin-bottom: 32px;
        font-size: 3.8rem;
        font-weight: 400;
        letter-spacing: 0;
        line-height: 0.95;
    }
}
.fadeInUp {
    transition: transform .8s cubic-bezier(0, 0.55, 0.45, 1),opacity .8s ease,-webkit-transform .8s cubic-bezier(0, 0.55, 0.45, 1);
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
}
.fadeInUp.on {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}
.fadeInLeft {
    transition: clip-path 1s ease-out,transform 1s ease-out,-webkit-clip-path 1s ease-out;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
}
.fadeInLeft.on {
    -webkit-clip-path: inset(0 -1% 0 0);
    clip-path: inset(0 -1% 0 0);
}