@charset "UTF-8";

/*=================================================================
*==================================================================
page style setting
==================================================================*
==================================================================*/
/* ===============================================
sec_mv
=============================================== */
.sec_mv {
	background-color: #f2f5fc;
}

.sec_mv .inner_sec {
	position: relative;
	width: 1000px;
	margin: 0 auto;
}

/* -----------------------------------------------
about_range
----------------------------------------------- */
/* -----------------------------------------------
ttl_mass
*/
.sec_mv .about_range .ttl_mass {
	padding: 130px 0 300px 0;
}

.sec_mv .about_range .ttl_mass .sub {
	display: block;
	margin: 0 0 5px 0;
	font-size: 20px;
}

.sec_mv .about_range .ttl_mass .main {
	display: block;
	color: #055bb0;
	font-size: 42px;
}

/* -----------------------------------------------
view_mass
*/
.sec_mv .about_range .view_mass {
	position: absolute;
	top: 0;
	right: -100px;
}


/* ===============================================
sec_form
----------------------------------------------- */
.sec_form {
	margin: -250px 0 0 0;
	background-color: #ffffff;
	-webkit-clip-path: polygon(0 0,100% 180px,100% 100%,0% 100%);
	clip-path: polygon(0 0,100% 180px,100% 100%,0% 100%);
}

.sec_form .inner_sec {
	position: relative;
	width: 1000px;
	margin: 0 auto;
	padding: 140px 0 160px 0;
}

/* -----------------------------------------------
bt_range
----------------------------------------------- */
.sec_form .bt_range {
	padding: 10px 0 10px 0;
}

.sec_form .bt_range ul {
	/* flex */
	display: -webkit-flex;
	display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sec_form .bt_range li {
	width: 350px;
	height: 85px;
	margin: 0 0 0 15px;
}

.sec_form .bt_range li:first-child {
	margin: 0 0 0 0;
}

.sec_form .bt_range li a {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 2px 2px 2px 2px;
	border: none;
	border-radius: 55px;
	background-color: #faaf3a;
	box-shadow: 0 5px 0 #f79a30;
	color: #ffffff;
	font-size: 28px;
	font-weight: 600;
	line-height: 1.1;
	text-align: center;
	cursor: pointer;
	/* box set */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	/* flex */
	display: -webkit-flex;
	display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.sec_form .bt_range li.back a {
	border: 2px solid #055bb0;
	background-color: #ffffff;
	box-shadow: 0 5px 0 #055bb0;
	color: #055bb0;
}

.sec_form .bt_range li a:before {
	display: inline-block;
	content: "";
	position: absolute;
	top: 50%;
	right: 30px;
	width: 16px;
	height: 16px;
	margin: -2px 0 0 0;
	border-top: 3px solid #ffffff;
	border-right: 3px solid #ffffff;
	-webkit-transform: rotate(45deg) translateY(-50%);
	transform: rotate(45deg) translateY(-50%);
}

.sec_form .bt_range li a:hover {
	opacity: 0.7;
}

