@charset "utf-8";

/******************************************************************
reset
******************************************************************/
h2, h3, h4, h5, h6 {
	margin: 0;
}
ul, ol {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
*,*::before,*::after {
	box-sizing: border-box;
}

/******************************************************************/

.fixArea {
	position: sticky;
	top: -20px;
	z-index: 1000;
	border-top: 1px solid #ccc;
	background-color: #fff;
	padding: 20px 20px 0;
}
.fixArea .inner {
	max-width: 1140px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.fixArea .inner .navigation li {
	margin: 20px 0;
}
@media screen and (max-width: 1000px) {
	.fixArea {
		top: -65px;
		padding: 0 10px;
	}
	.fixArea .inner {
		flex-direction: column-reverse;
		gap: 5px;
		padding: 20px 0 0;
	}
	.fixArea .inner .navigation li {
		margin: 10px 0;
	}
}

.navigation {
	display: flex;
	justify-content: space-between;
	width: 69.5%;
}
.navigation li {
	width: 31.6%;
}
.navigation a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	border: 2px solid #80af23;
	padding: 0 5px;
	text-align: center;
	color: #80af23;
	font-weight: bold;
	text-decoration: none;
	line-height: 1.2;
	transition: opacity 0.3s;
}
.navigation a:hover {
	opacity: 0.7;
}
.navigation a.current {
	position: relative;
	background-color: #80af23;
	color: #fff;
}
.navigation a.current::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -10px;
	border-top: 10px solid #80af23;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	width: 0;
	margin: 0 auto;
}
.navigation br {
	display: none;
}
@media screen and (max-width: 1000px) {
	.navigation {
		width: 100%;
	}
	.navigation a {
		height: 44px;
	}
}
@media screen and (max-width: 640px) {
	.navigation a {
		font-size: 13px;
	}
	.navigation br {
		display: inline;
	}
}
@media screen and (max-width: 350px) {
	.navigation a {
		font-size: 11px;
	}
}

.alignmentBtn {
	width: 24.6%;
	min-width: 250px;
	background-color: #c03;
	border-radius: 6px;
	padding: 0 10px;
	text-align: center;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	transition: opacity 0.3s;
}
.alignmentBtn:hover {
	opacity: 0.7;
}
.alignmentBtn span {
	display: inline-block;
	padding: 15px 25px 15px 30px;
	background: url(../img/mrk_01.png) no-repeat 0 50%, url(/common/img/icon_out1_white.png) no-repeat 100% 50%;
}
@media screen and (max-width: 1000px) {
	.alignmentBtn {
		width: 250px;
	}
}
@media screen and (max-width: 480px) {
	.alignmentBtn span {
		padding: 12px 25px 12px 30px;
		font-size: 14px;
	}
}

.pageArea {
	max-width: 1400px;
	margin: 0 auto;
	background-color: #80af23;
	padding: 0 20px 80px;
	overflow: hidden;
}
.pageArea a {
	transition: opacity 0.3s;
}
.pageArea a:hover {
	opacity: 0.7;
}
.pageArea img {
	vertical-align: top;
}
.pageArea strong {
	color: #c03;
	font-weight: bold;
}
@media screen and (max-width: 480px) {
	.pageArea {
		padding: 0 10px 50px;
	}
}

.mainarea {
	position: relative;
	margin: 0 -20px;
	background-color: #f7f7f7;
	padding: 60px 40px 10px;
	text-align: center;
}
.mainarea::before {
	content: '';
	position: absolute;
	top: 344px;
	left: 0;
	right: 0;
	height: 586px;
	background: url(../img/main_bg.jpg) no-repeat 50% 0;
}
.mainarea h1 {
	margin: 0;
}
@media screen and (max-width: 1000px) {
	.mainarea {
		padding: 6% 4% 1%;
	}
	.mainarea::before {
		top: 33vw;
		height: 60vw;
		background-size: 140% auto;
	}
}
@media screen and (max-width: 480px) {
	.mainarea {
		margin: 0 -10px;
	}
}

.sectionBox {
	position: relative;
	margin: 80px auto 0;
	max-width: 1140px;
	border-radius: 20px;
	background-color: #fff;
	padding: 55px 60px 60px;
	font-size: 18px;
}
@media screen and (max-width: 1000px) {
	.sectionBox {
		margin: 8% auto 0;
		padding: 6% 4%;
		font-size: 16px;
	}
}
@media screen and (max-width: 480px) {
	.sectionBox {
		border-radius: 15px;
		padding: 6% 5%;
	}
}

.sectionTitle {
	position: relative;
	margin: 0 -30px 40px;
	padding: 0 40px;
	text-align: center;
	font-size: 38px;
	font-weight: bold;
	line-height: 1.2;
}
.sectionTitle::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 24px;
	border-top: 5px dotted #000;
}
.sectionTitle > span {
	position: relative;
	display: inline-block;
	background-color: #fff;
	padding: 0 15px;
}
.sectionTitle strong {
	display: inline-block;
	font-size: 140%;
}
@media screen and (max-width: 1150px) {
	.sectionTitle::before {
		bottom: 45%;
	}
}
@media screen and (max-width: 1000px) {
	.sectionTitle {
		margin: 0 -1% 30px;
		padding: 0 30px;
		font-size: 28px;
	}
}
@media screen and (max-width: 600px) {
	.sectionTitle {
		margin: 0 -1% 20px;
		padding: 0 20px;
		font-size: 20px;
	}
	.sectionTitle::before {
		bottom: 48%;
		border-top-width: 3px;
	}
	.sectionTitle > span {
		padding: 0 10px;
	}
	.sectionTitle strong {
		font-size: 130%;
	}
}
@media screen and (max-width: 350px) {
	.sectionTitle {
		font-size: 18px;
	}
}

.centerTitle {
	margin: 50px 0 25px;
	text-align: center;
	font-size: 34px;
	font-weight: bold;
}
@media screen and (max-width: 1000px) {
	.centerTitle {
		margin: 40px 0 20px;
		font-size: 26px;
	}
}
@media screen and (max-width: 480px) {
	.centerTitle {
		margin: 20px 0 15px;
		font-size: 20px;
	}
}

.colorBtn {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 320px;
	max-width: 100%;
	height: 50px;
	border-radius: 6px;
	background-color: #004897;
	padding: 0 25px;
	text-align: center;
	color: #fff;
	font-size: 18px;
	text-decoration: none;
	line-height: 1.2;
}
.colorBtn.s_sizeL {
	width: 420px;
	height: 60px;
	font-size: 20px;
}
.colorBtn.s_sizeLL {
	width: 560px;
	height: 60px;
	font-size: 20px;
}
.colorBtn.s_red {
	background-color: #c03;
}
.colorBtn.s_green {
	background-color: #80af23;
}
.colorBtn.s_white {
	background-color: #fff;
	color: #80af23;
}
.colorBtn::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 10px;
	width: 9px;
	height: 9px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform-origin: top right;
	transform: rotate(45deg);
}
.colorBtn[target="_blank"] > span {
	display: inline-block;
	padding-right: 22px;
	background: url(/common/img/icon_out1_white.png) no-repeat 100% 45%;
}
.colorBtn.s_white::after {
	border-color: #80af23;
}
@media screen and (max-width: 480px) {
	.colorBtn {
		height: 40px;
		padding: 0 20px 0 10px;
		font-size: 15px;
	}
	.colorBtn.s_sizeL {
		height: 50px;
		font-size: 16px;
	}
	.colorBtn.s_sizeLL {
		height: 50px;
		font-size: 16px;
	}
}

.textLink {
	color: #c03;
	text-decoration: underline;
}
.textLink:hover {
	text-decoration: none;
}
.textLink[target="_blank"] {
	margin-right: 3px;
	padding-right: 17px;
	background: url(../img/icon_blank.png) no-repeat 100% 50%;
}

.noteList {
	margin-top: 15px;
	font-size: 14px;
}
.noteList .head {
	float: left;
	margin-right: 5px;
}
.noteList .text {
	overflow: hidden;
}
@media screen and (max-width: 700px) {
	.noteList {
		margin-top: 10px;
	}
	.noteList li {
		font-size: 12px;
	}
}
.footerLinkList {
	max-width: 1140px;
	margin: 40px auto 0;
	display: flex;
	justify-content: space-between;
}
.footerLinkList li {
	width: 48.2%;
}
.footerLinkList .colorBtn {
	width: 100%;
	font-weight: bold;
}
@media screen and (max-width: 800px) {
	.footerLinkList {
		margin: 30px auto 0;
		flex-direction: column;
		align-items: center;
		gap: 20px 0;
	}
	.footerLinkList li {
		width: 100%;
		max-width: 550px;
	}
}
