@charset "utf-8";

/**************************************************************************************

--------------------------------------------------------------------------------------
レイアウト
***************************************************************************************/

.wrap1280,
.wrap1280N {
    max-width: 1310px;
	width: 100%;
    margin: 0 auto;
	padding: 0 15px;
    position: relative;
}
.wrap1200,
.wrap1200N {
    max-width: 1230px;
	width: 100%;
    margin: 0 auto;
	padding: 0 15px;
    position: relative;
}
.wrap1600N {
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
	position: relative;
}
.wrap {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	position: relative;
}
@media only screen and (max-width:640px) {
	.wrap1280N,
	.wrap1200N {
		padding-left: 0;
		padding-right: 0;
	}
}

/**************************************************************************************

--------------------------------------------------------------------------------------
ヘッダー
***************************************************************************************/

header {
	background-color: #fff;
	padding-bottom: 15px;
}
header ul {
	display: flex;
	justify-content: space-between;
	padding-top: 15px;
}
header ul li {
}
header ul.btn1 li {
	width: calc((100% - 30px) / 3);
}
header ul.btn2 li {
	width: calc((100% - 15px) / 2);
}
header ul li a {
	padding:15px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	font-weight: 700;	
	line-height: 1.4;
	text-align: center;
	font-size: 20px;
	background-color: #fff;
	border-width: 2px;
	border-style: solid;
	border-color: #ed1e36;
	color: #ed1e36;
	position: relative;
}
header ul.btn1 li:nth-of-type(2) a {border-color: #ed1e36; color: #ed1e36;}
header ul.btn1 li:nth-of-type(3) a,
header ul.btn2 li:nth-of-type(2) a {border-color: #82c925; color: #82c925;}

header ul li a::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	background: url(/img/common/ic_arrow_red.svg) center / cover no-repeat;
	width: 10px;
	height: 16px;
}
header ul.btn1 li:nth-of-type(2) a::after {background-image: url(/img/common/ic_arrow_red.svg)}
header ul.btn1 li:nth-of-type(3) a::after,
header ul.btn2 li:nth-of-type(2) a::after {background-image: url(/img/common/ic_arrow_green_light.svg)}


header ul li a:hover {
	opacity: 1;
	color: #fff!important;
	background-color: #ed1e36;
}
header ul.btn1 li:nth-of-type(2) a:hover {background-color: #ed1e36;}
header ul.btn1 li:nth-of-type(3) a:hover,
header ul.btn2 li:nth-of-type(2) a:hover {background-color: #82c925;}

header ul li a:hover::after {
	background-image: url(/img/common/ic_arrow_white.svg)!important;
}

@media only screen and (max-width:640px) {
	header ul {
		display: block;
	}
	header ul li {
		width: 100%!important;
	}
	header ul li + li {
		margin-top: 10px;
	}
	header ul li a {
		font-size: 16px;
		padding: 10px;
	}
	header ul li a::after {
		width: 7px;
		height: 11px;
		right: 6px;
	}
}

/**************************************************************************************

--------------------------------------------------------------------------------------
メイン部分
***************************************************************************************/

#main {
	display:block;	
}
#main .space {
	padding: 20px;
}
#main .space1 {
	padding: 40px 0;
}
#main .space2 {
	padding: 50px 0;
}
@media only screen and (max-width:640px) {
	#main .space1 {
		padding: 15px 0;
	}
	#main .space2 {
		padding: 20px 0;
	}
}

/**************************************************************************************

--------------------------------------------------------------------------------------
フッター
***************************************************************************************/

footer {
	background-color: #fff;
	padding: 15px;
	border-top: 1px solid #ccc;
}

/* コピーライト
========================================== */

footer p.copyright {
	text-align: center;
}
footer p.copyright small {
	font-size: 12px;
	letter-spacing: -0.01em;
}
@media only screen and (max-width:640px) {
	footer p.copyright small {
		font-size: 8px;
	}
}