@charset "utf-8";
/* CSS Document */
/* CSS Document */


/*#wrapper a:link { text-decoration: none; }
#wrapper a:visited { color: #000000; }
#wrapper a:hover { color: #000000; }
#wrapper a:active { color: #000000; }*/

#LP_wrapper{
    width:100%;
	text-align: center;
	margin: 5% auto 0;
    color: #000000;
    background: #fffaf0;
    padding: 5% 0;
    font-family: 'Noto Sans JP', sans-serif;
}
#LP_wrapper h1{
    font-size: 55px;
    margin: 0 auto;
    line-height: 1.2em;
    letter-spacing: 1px;
    text-align: center;
    font-weight: 400;
    font-family: 'Lora', serif;
    color: #414141;
}
#LP_wrapper h2{
    width: 100%;
    font-size: 15px;
    margin: 2% auto 5%;
    line-height: 1.2em;
    letter-spacing: 2px;
    text-align: center;
    display: block;
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
    border-bottom: #000000 1px solid;
    border-top: #000000 1px solid;
    padding: 2% 0%;
}
#LP_wrapper ul{
	padding: 0;
	overflow: hidden;
}
#LP_wrapper li{
	list-style: none;
}
#LP_wrapper a{
    text-decoration: none;
}

.lead_p{
	display: block;
    margin: 4% auto 0;
	font-size: 16px;
	line-height: 1.8em;
    letter-spacing: 1px;
	text-align: center;
    font-weight: 300;
}
.lead_s{
    display: none;
}

.lead_p span{
    font-size:20px;
    font-weight: bold;
}
.LP_box{
    max-width: 1000px;
    text-align: center;
    margin:5% auto 0%;
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.Style li{
    width: 33.3%;
    padding: 0% 3%;
    box-sizing: border-box;
    float: left;
    position: relative;
}





/**************ボタン****************/
/* 001 */
.button001 a {
    background-color: #f2c2c2;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 60%;
    padding: 3% 4%;
    color: #000000;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    margin: 5% auto;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}
.button001 a:hover {
    background:#1F1F1F;
    color: #FFF;
}
.button001 a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #000000;
    border-right: 3px solid #000000;
    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;
}


/* General button style (reset) */
.btn {
	border: none;
	font-family: inherit;
	font-size: 13px;
	color: inherit;
	background: none;
	cursor: pointer;
	display: inline-block;
	margin: 2% auto 8%;
	/* text-transform: uppercase;*/
	letter-spacing: 1px;
	font-weight: 700;
	outline: none;
	position: relative;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	text-align: center;
	
}

.btn:after {
	content: '';
	position: absolute;
	z-index: -1;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}




/* Button 1 */
.btn-1 {
    width: 80%;
	background-color: #ffffff;
    border: #f2c2c2 2px solid;
	color:#f2c2c2;
	font-size: 13px;
	text-align:center;
    padding: 2%;
    margin: 0 auto;
    display: block;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.btn-1:hover {
    background-color: #000000;
    border: #000000 2px solid;
    color: #FFFFFF;
	text-align: center;
    -webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}




.pc{
    display: flex;
}
.sp {
	display:none;
}
.clear{
    clear: both;
}
.Left{
    float: left;
}
.Right{
    float: right;
}
.small{
    font-size: 50%;
}

.bold{
    font-size: 120%;
    font-weight: bold;
}
.hr{
    width: 100%;
    border-bottom: #000000 1px dotted;
    margin: 0% auto 0;
    text-align: center;
}
.Mt_10{
    margin-top: 10%;
}
.Mt_15{
    margin-top: 15%;
}
.Mt_20{
    margin-top: 20%;
}
.Mt_30{
    margin-top: 30%;
}
.Mb_10{
    margin-bottom: 10%;
}





@media only screen and (max-width:750px){
	#LP_wrapper {
		width: 100%;
		text-align: center;
        margin: 0 auto;
        padding: 8% 0 10%;
        color: #000000;
	}
	#LP_wrapper h1{
        font-size: 30px;
        line-height: 1.7em;
	}
    #LP_wrapper h2{
        font-size: 12px;
        padding: 5% 0;
        margin-bottom: 8%;
    }
    
    .lead_p{
		display: none;
	}
    .lead_s{
		width: 94%;
		display: inline-block;
		text-align:center;
		margin: 0% auto 0%;
		line-height: 1.8em;
		font-size: 14px;
        letter-spacing: 1px;
        font-weight: 300;
	}
    
    .lead_s span{
        font-size: 130%;
        font-weight: bold;
    }
    .LP_box{
        width: 90%;
        margin:5% auto 2%;
    }
    .Style li{
        padding: 1%;
    }
    
    .button001 a{
        width: 80%;
        padding: 3.5% 4%;
        font-size: 12px;
    }
    .button001 a:after {
        border-top: 2px solid #000000;
        border-right: 2px solid #000000;
    }
    .btn-1{
        width: 84%;
    }
    
    
    
    .pc {
		display:none;
	}
	.sp {
		display:block;
		width: 100%;
	}

    
    .Mb_10{
        margin-bottom: 15%;
    }
	
}