@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

body{
    padding: 0;
    margin: 0;
}
*:focus {
  outline: none;
}

#lp_wrap{
    width: 100%;
	text-align: center;
	margin: 0% auto;
    color: #000000;
    display: block;
    padding: 0;
    background: #eceef1;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-animation: fadein 1s forwards ease;
    animation: fadein 1s 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;
}
#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_head{    
    width: 100%;
    text-align: center;
    margin: 0 auto;

}
#lp_head .head{
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

#lp_head .head .visual{
    width: 100%;
    position: relative;
    z-index: 6;
}
#lp_head .head .visual .title{
    position: absolute;
    width: 35%;
    right: 7%;
    top: 43%;
    z-index: 8;
}
#lp_head .lead{
    font-size: 18px;
    text-align: center;
    display:inline-block;
    margin: 5% auto;
    line-height: 2.4em;
}
#lp_contents{
    max-width: 1000px;
    width: 100%;
    text-align: center;
    position:relative;
    margin: 0% auto 0%;
}
#lp_contents .lp_box{
    width: 100%;
    text-align: center;
    margin: 10% auto 5%;
    display: inline-block;
    position: relative;
    overflow: hidden;
}
#lp_contents .main_box{
    width: 100%;
    text-align: center;
    display: inline-block;
    position: relative;
    margin: 0 auto;
}
#lp_contents .main_box .main{
    width: 48%;
    margin: 0 auto;
}
#lp_contents .main_box .ttl_box{
    width: 48%;
    margin: 10% auto 0%;
    position: relative;
}
#lp_contents .main_box .ttl_box .ttl{
	width: 100%;
}
#lp_contents .main_box .ttl_box .ttl::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0%;
	right: 100%;
	background: #475971;
	height: 2px;
	opacity: 0;
	transition: 1.2s all 0s ease;
}
#lp_contents .main_box .ttl_box .ttl.ac::after{
	content: "";
	width: auto;
	position: absolute;
	bottom: 0;
	left: 0%;
	right: 0%;
	background: #475971;
	opacity: 1;
}
#lp_contents .main_box .ttl_box .ttl .inner{
    width: 100%;
    text-align: center;
    margin: 0 auto;
    display: inline-block;
}
#lp_contents .main_box .ttl_box .ttl .inner .item{
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    margin: 5% auto;
    line-height: 1.8em;
}

#lp_contents .main_box .detail_box{
    width: 48%;
    display: inline-block;
    margin: 4% auto 0;
    position: relative;
}
#lp_contents .main_box .detail_box p{
    font-size: 15px;
    text-align: center;
    line-height: 1.8em;
    margin: 0 auto 10%;
    display: inline-block;
    position: relative;
}

#lp_contents .col_box{
    width: 100%;
    text-align: center;
    display: inline-block;
    position: relative;
    margin: 5% auto;
    background: #FFFFFF;
    padding: 5% 0;
}
#lp_contents .col_box .ttl{
    width: 15%;
    text-align: center;
    margin: 0 auto;
}
#lp_contents .col_box .col{
    width: 90%;
    text-align: center;
    display: inline-block;
    margin: 3% auto 0;
}
#lp_contents .col_box .col ul{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
}
#lp_contents .col_box .col ul li{
    box-sizing: border-box;
}
#lp_contents .col_box .col2{
    width: 90%;
    text-align: center;
    display: inline-block;
    margin: 3% auto 0;
}
#lp_contents .col_box .col2 ul li{
    width: 33.3%;
    float: left;
}
#lp_contents .col_box .col2 ul li:nth-of-type(4){
    width: 33.3%;
    margin-left: 16.7%;
}


/* ============ ボタン ============ */

.button001 a {
    background: #333333;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    width: 58%;
    padding: 2.5% 2%;
    color: #FFFFFF;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    font-size: 13px;
    border-radius: 100vh;
    float: none;
    font-family: 'Inter', sans-serif;
}
.button001 a:hover {
    background: #475971;
    color: #FFF;
}
.button001 a:after {
    content: '';
    width: 4px;
    height: 4px;
    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;
}
.button001 a:hover:after {
    border-color: #FFF;
}

.footer{
    color: #FFFFFF;
    font-size: 14px;
    padding: 0.5% 0;
    text-align: center;
    margin: 0% auto 0;
    line-height: 1em;
    /*font-family: 'Inter', sans-serif;*/
    background-color: #475971;
    
}



.pc{
    display:block;
}
.sp {
	display:none;
}
.clear{
    clear: both;
}
.Left{
    float: left;
}
.Right{
    float: right;
}
.small{
    font-size: 50%;
}

.hr01 {
    width: 100%;
    text-align: center;
    border-bottom: #CDCDCD 1px solid;
    margin: 5% auto;
}



/**********************************************
　　　　　　　　　　　　SP
**********************************************/

@media only screen and (max-width:768px){
	#lp_wrap {
		width: 100%;
        padding: 0% 0 0%;
	}
    #lp_head{
        width: 100%;
    }
    #lp_head .head .visual .title{
        width: 80%;
        left: 10%;
    }
    #lp_head .lead{
        font-size: 14px;
        margin: 10% auto 5%;
    }
    #lp_contents .main_box .ttl_box{
        width: 100%;
    }


    #lp_contents .main_box .main{
        width: 90%;
        text-align: center;
        margin: 10% auto 5%;
    }
    #lp_contents .main_box .detail_box{
        width: 90%;
        text-align: center;
    }
    #lp_contents .main_box .detail_box p{
        font-size: 13px;
        letter-spacing: 0px;
    }
    
    #lp_contents .col_box{
        margin: 10% auto 5%;
        padding: 10% 0;
    }
    #lp_contents .col_box .ttl{
        width: 32%;
    }
    #lp_contents .col_box .col2 ul li:nth-of-type(4){
        width: 50%;
        margin-left: 0;
    }
    #lp_contents .col_box .col2 ul li:nth-of-type(5){
        width: 50%;
        margin-left: 0;
    }   
    
    .button001 a{
        width: 70%;
        float: none;
        text-align: center;
        font-size: 13px;
        padding: 3.5% 2%;
        letter-spacing: 0px;
    }
    .footer{
        font-size: 11px;
        padding: 2% 0;
    }
    .hr01{
        margin: 10% auto 5%;
    }
    .pc {
		display:none;
	}
	.sp {
		display:block;
		width: 100%;
	}
    .Left{
        float: none;
    }
    .Right{
        float: none;
    }
    .MT10{
        margin-top: 15%;
    }
}