@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700&family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700&display=swap');

*:focus {
  outline: none;
}

#lp_wrap{
    width: 100%;
	text-align: center;
	margin: 0% auto 0;
    color: #000000;
    display: block;
    padding: 5% 0 0;
    letter-spacing: 1px;
    font-weight: 400;
    background: #bfbfbf;
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-animation: fadein 1.2s forwards ease;
    animation: fadein 1.2s forwards ease;
}
@keyframes fadein {
		  0% {
			  opacity: 0;
		  }
		  100% {
			  opacity: 1;
			  transform: translate(0);
		  }
}
#lp_wrap img{
    width: 100%;
    vertical-align: bottom;
}
#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;
}
#lp_wrap .lp_box{
    max-width: 1000px;
    width: 100%;
    text-align: center;
    display: inline-block;
    margin: 0 auto 3%;
    position: relative;
}
#lp_wrap .lp_box .title{
    width: 50%;
    text-align: center;
    margin: 0 auto;
}
#lp_wrap .lp_box .lead{
    font-size: 24px;
    text-align: center;
    color: #f5fe79;
    margin: 3% auto 5%;
    font-weight: 500;
    letter-spacing: 2px;
    
}
#lp_wrap .lp_box ul{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    grid-column-gap: 3%;
}  
#lp_wrap .lp_box ul li{
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    margin:0%;
    opacity: 0;
    animation: fadeIn 1.2s forwards;
}
#lp_wrap .lp_box ul li:nth-child(1) {
  animation-delay: .2s;
}

#lp_wrap .lp_box ul li:nth-child(2) {
  animation-delay: .6s;
}

#lp_wrap .lp_box ul li:nth-child(3) {
  animation-delay: 1s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#lp_wrap .lp_box p{
    color: #FFFFFF;
    font-size: 15px;
    text-align: center;
    line-height: 1.7em;
    margin: 4% auto;
}
#lp_wrap .bar{
    width: 100%;
    background: #222222;
    color: #FFFFFF;
    font-size: 15px;
    text-align: center;
    padding: 0.5% 0;
    position: relative;
    margin: 0 auto;
    line-height: 1em;
    font-weight: 300;
    
    
}


/**************ボタン****************/

.btn_01 a {
    background: #313131;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width:55%;
    padding: 2.5% 2%;
    margin: 10% auto 0%;
    color: #FFFFFF;
    transition: 0.3s ease-in-out;
    font-weight: 400;
    font-size: 15px;
    float:none;
    font-family: 'Frank Ruhl Libre', serif;
    border: #313131 1px solid;
    border-radius: 100vh;
    
}
.btn_01 a:hover {
    background: #FFFFFF;
    border: #313131 1px solid;
    color: #313131;
}
.btn_01 a:after {
    content: '';
    width: 5px;
    height: 5px;
    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;
}
.btn_01 a:hover:after {
    border-color: #313131;
}






.pc{
    display:block;
}
.sp {
	display:none;
}
.clear{
    clear: both;
}
.Left{
    float: left;
}
.Right{
    float: right;
}
.small{
    font-size: 60%;
}
.mT5{
    margin-top: 5%;
}
.mT10{
    margin-top: 10%;
}
.mT20{
    margin-top: 20%;
}




/**********************************************
　　　　　　　　　　　　SP
**********************************************/

@media only screen and (max-width:768px){
	#lp_wrap {
		width: 100%;
        padding: 10% 0 0;
	}
    #lp_wrap .lp_box .title{
        width: 80%;
        
    }
    #lp_wrap .lp_box .lead{
        font-size: 16px;
        margin-bottom: 8%;
    }
    #lp_wrap .lp_box ul{
        grid-column-gap: 0%;
    }
    #lp_wrap .lp_box p{
        width: 92%;
        text-align: left;
        font-size: 11px;
        float: left;
        margin-left: 4%;
        display: inline-block;
    }
    #lp_wrap .bar{
        font-size: 13px;
        font-weight: 300;
        padding: 3% 0;
        margin: 0% auto 0;
    }
    
    .btn_01 a{
        width: 90%;
        padding: 3% 2%;
    }
    
    
    .pc {
		display:none;
	}
	.sp {
		display:block;
		width: 100%;
	}
    .Left{
        float: none;
    }
    .Right{
        float: none;
    }
}