@charset "utf-8";

body{
    margin: 0;
    padding: 0;
}

#lp_wrap{
    width: 100%;
	text-align: center;
	margin: 0% auto 0;
    padding: 5% 0;
    color: #333;
    display: block;
    font-weight: 400;
    letter-spacing: .5px;
    line-height: 1.5em;
    overflow: hidden;
    font-family: 'Noto Sans JP', sans-serif;
    background: #917a69;
}
#lp_wrap img{
    width: 100%;
    vertical-align: bottom;
    line-height: 0;
}
#lp_wrap ul{
	padding: 0;
	overflow: hidden;
    margin: 0 auto;
}
#lp_wrap li{
	list-style: none;
}
#lp_wrap a{
    text-decoration: none;
}
#lp_wrap a:link{
    opacity: 1;
}
#lp_wrap a:hover{
    text-decoration: none;
}

.Inter{
    font-family: "Inter", serif;
}
.BeVietnam{
    font-family: "Be Vietnam Pro", sans-serif;
}
.NotoSans{
    font-family: "Noto Sans JP", sans-serif;
}
.ZenKakuGothicNew{
    font-family: zen-kaku-gothic-new, sans-serif;
}
.Helvetica{
    font-family: helvetica-lt-pro, sans-serif;
}
#lp_wrap .lp_box{
    max-width: 1200px;
    width: 100%;
    text-align: center;
    display: inline-block;
    margin: 0 auto;
}
#lp_wrap .inner{
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    column-gap: 2%;
}
#lp_wrap .main{
    width: 60%;
    text-align: center;
    margin: 0 auto;
    display: inline-block;
    position: relative;
}
#lp_wrap .title {
    width: 80%;
    position: absolute;
    place-self: center;
    inset: 0;
}
#lp_wrap .movie{
    width: 34%;
    text-align: center;
    margin: 0 auto;
    position: relative;
    display: block;
}

#lp_wrap video{
	width: 100%;
	height: auto;
}
#lp_wrap .point_video{
    display: block;
    width: 100%;
    text-align: center;
    margin: 0 auto 2%;
}

#lp_wrap .footer{
    width: 100%;
    background: #333333;
    color: #FFFFFF;
    font-size: 14px;
    text-align: center;
    margin: 0% auto 0;
    position: relative;
    display: inline-block;
    line-height: 1.2em;
    font-weight: 500;
    letter-spacing: 0px;
    padding: 1% 0;
}


/* ============ ボタン ============ */

.btn01 a {
    background: #222;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 10% auto 0;
    width: 50%;
    padding: 2.5% 0%;
    color: #FFFFFF;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    font-size: 15px;
    border-radius:2px;
    line-height: 1em;
    float: none;
    font-family: 'Inter', sans-serif;
}
.btn01 a:hover {
    background: #333333;
    color: #FFF;
}
.btn01 a:after {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 2px solid #FFFFFF;
    border-right: 2px solid #FFFFFF;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.btn01 a:hover:after {
    border-color: #FFF;
}



.pc{
    display:block;
}
.sp {
	display:none;
}
.clear{
    clear: both;
}
.Left{
    float: left;
}
.Right{
    float: right;
}
.small{
    font-size: 70%;
}



/**********************************************
　　　　　　　　　　　　SP
**********************************************/

@media only screen and (max-width:768px){
	#lp_wrap {
		width: 100%;
        padding: 0% 0 10%;
	}
    #lp_wrap .inner{
        flex-wrap: wrap;
    }
    
    
    #lp_wrap .main{
        width: 100%;
        margin: 0 auto 15%;
    }
    #lp_wrap .title{
        width: 90%;
    }
    #lp_wrap .movie{
        width: 85%;
    }
    .btn01 a{
        width: 90%;
        font-size: 13px;
        line-height: 2.5em;
    }
    
    .pc {
		display:none;
	}
	.sp {
		display:block;
		width: 100%;
	}
    .Left{
        float: none;
    }
    .Right{
        float: none;
    }
    
}

.fade-blur {
  opacity: 0;
  filter: blur(15px); /* 初期状態でぼかしておく */
  animation: blurIn 2s ease 0.3s forwards;
}

@keyframes blurIn {
  to {
    opacity: 1;
    filter: blur(0); /* ぼかしを解除する */
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 2s cubic-bezier(.33,1,.68,1) forwards;
}
.fade-in2 {
  opacity: 0;
  animation: fadeIn2 2s cubic-bezier(.33,1,.68,1) forwards;
}


.delay-0 { animation-delay: 0s; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 1s; }


@keyframes fadeIn {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeIn2 {
  to {
    opacity: 1;
  }
}





