@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;900&display=swap');


body {
	min-width: auto;
}

.box-border-blue {
	border: 1px solid #0082C1;
	padding: 1.6em;
}

.bg-blue {
	background-color: #eff3f9;
}

.color-blue {
	color: #0082C1;
}

main p {
	text-align: justify;
}

main .container {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

main .top-page .container {
	max-width: 1140px;
	margin-left: auto;
	margin-right: auto;
}


@media (min-width: 576px) {
	.box-border-blue {
		padding: 2em;
	}
}

@media (min-width: 992px) {
	.box-border-blue {
		padding: 2.4em;
	}
}	


/*/////////// メインビジュアル ///////////*/
.mv {
	border-bottom: 1px solid #0082C1;
	padding-bottom: 15px;
}

.mv h1 {
	font-size: 1.7rem;
	text-align: center;
	color: #0082C1;
}

.mv h2 {
	font-size: 1.4rem;
	font-weight: 400;
	text-align: center;
	color: #0082C1;
	line-height: 1.6em;
}

.mv h2 span {
	background-color: #0082C1;
	color: #fff;
	padding: 0.3rem 0.3rem 0.5rem;
	display: block;
	width: 8em;
	margin: 1.0em auto 0;
	font-size: 1.2rem;
}

.mv hr {
	border-bottom: 2px solid #0082C1;
	opacity: 1;
	background-color: #fff;
	width: 50px;
	display: block;
	margin: 1.2em auto;
}


@media (min-width: 576px) {
	.mv {
		padding-bottom: 20px;
	}

	.mv h1 {
		font-size: 1.8em;
	}

	.mv h2 {
		font-size: 1.4em;
	}

	.mv h2 span {
		margin: 1.0em auto 0;
	}

	.mv hr {
		margin: 1.4em auto;
	}
}


@media (min-width: 768px) {
	.mv {
		padding-bottom: 20px;
	}
	
	.mv h1 {
		font-size: 2em;
	}

	.mv h2 {
		font-size: 1.5em;
	}	
}

@media (min-width: 1200px) {
	.mv {
		padding-bottom: 30px;
	}
}


/*/////////// ページTOP見出し ///////////*/
main .page-heading {
	color: #222;
	font-size: 1.4em;
	text-align: center;
	margin-bottom: 0.8em;
}


@media (min-width: 576px) {
	main .page-heading {
		font-size: 1.5em;
		margin-bottom: 1.2em;
	}
}

@media (min-width: 768px) {
	main .page-heading {
		font-size: 1.6em;
	}
}


/*/////////// アノア告知 ///////////*/
main .anoa-box {
	padding: 1.6em 0 0.8em;
}

main .anoa-box .container {
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}

main .anoa-box h1 {
	font-size: 1.35em;
	font-weight: bold;
	line-height: 1.6em;
	margin-bottom: 0.8em;
}

main .anoa-box h1 span {
	font-size: 1.1em;
	font-weight: bold;
	line-height: 1.6em;
	color: #0082C1;
}


@media (min-width: 576px) {
	main .anoa-box {
		padding: 2em 0 1em;
	}

	main .anoa-box h1 {
		font-size: 1.25em;
		margin-bottom: 1em;
	}
}

@media (min-width: 768px) {
	main .anoa-box {
		padding: 2.4em 0 1em;
	}
	
	main .anoa-box h1 {
		font-size: 1.5em;
	}	
}

@media (min-width: 992px) {
	main .anoa-box {
		padding: 2.6em 0 1em;
	}
	
	main .anoa-box h1 {
		font-size: 1.5em;
	}	
}


/*/////////// ページ遷移 ///////////*/
main .page {
	text-align: center;
}

main .page a, main .page span {
	border: 1px solid #222;
	padding: 0.5rem 0.75rem;
	display: inline-block;
	margin-left: 0.3rem;
	margin-right: 0.3rem;
	font-size: 0.9rem;
}

main .page a {
	color: #222;
}

main .page a:hover {
	background-color: #3961ac;
	border: 1px solid #3961ac;
	color: #fff;
	transition-duration: 0.3s;	
}

main .page span {
	color: #ccc;
	border: 1px solid #ccc;
}


@media (min-width: 576px) {
	main .page a, main .page span {
		padding: 0.7em 2em;
		margin-left: 0.5em;
		margin-right: 0.5em;
	}
}


/*/////////// TOPページ ///////////*/
.top-page .col-12 {
	margin-bottom: 35px;
}

.top-page .col-12:nth-last-child(-n+2) {
	margin-bottom: 0;
}

.top-page a {
	color: #3f3f3f;
}

.top-page h3 {
	font-size: 1.25em;
	line-height: 1.5em;
	text-align: center;
	color: #222;
}

.top-page a {
	color: #222;
}

.top-page .link {
	color: #3a3a3a;
	transition-duration: 0.3s;
	font-size: 1.1rem;
	text-align: center;
	border: 1px solid #ababab;
	padding: 12px 5px;
}

.top-page .link:hover {
	color: #54dfff;
}

.top-page .img_wrap{
	overflow: hidden;
	cursor: pointer;
	width: 100%;
}

.top-page .img_wrap img{
	display: block;
	transition-duration: 0.5s;
}

.top-page .img_wrap img:hover{
	transform: scale(1.2);
	transition-duration: 0.5s;
}

.top-page p {
	word-break: break-all;
}


@media (min-width: 576px) {
	.top-page .col-12 {
		margin-bottom: 45px;
	}

	.top-page .col-12:nth-last-child(-n+3) {
		margin-bottom: 0;
	}

	.top-page .textwrap-sm-150 {
		height: 150px !important;
	}
	
	.top-page .textwrap-sm-155 {
		height: 155px !important;
	}	

	.top-page .textwrap-sm-160 {
		height: 160px !important;
	}
	
	.top-page .textwrap-sm-165 {
		height: 165px !important;
	}	
	
	.top-page .textwrap-sm-170 {
		height: 170px !important;
	}
	
	.top-page .textwrap-sm-175 {
		height: 175px !important;
	}
	
	.top-page .textwrap-sm-180 {
		height: 180px !important;
	}
	
	.top-page .textwrap-sm-185 {
		height: 185px !important;
	}	
	
	.top-page .textwrap-sm-190 {
		height: 190px !important;
	}
	
	.top-page .textwrap-sm-195 {
		height: 195px !important;
	}	
	
	.top-page .textwrap-sm-200 {
		height: 200px !important;
	}
	
	.top-page .textwrap-sm-205 {
		height: 205px !important;
	}
	
	.top-page .textwrap-sm-210 {
		height: 210px !important;
	}
	
	.top-page .textwrap-sm-215 {
		height: 215px !important;
	}
	
	.top-page .textwrap-sm-220 {
		height: 220px !important;
	}
	
	.top-page .textwrap-sm-225 {
		height: 225px !important;
	}
	
	.top-page .textwrap-sm-230 {
		height: 230px !important;
	}
	
	.top-page .textwrap-sm-235 {
		height: 235px !important;
	}
	
	.top-page .textwrap-sm-240 {
		height: 240px !important;
	}
	
	.top-page .textwrap-sm-245 {
		height: 245px !important;
	}
	
	.top-page .textwrap-sm-250 {
		height: 250px !important;
	}	
}


@media (min-width: 768px) {
	.top-page .col-12 {
		margin-bottom: 55px;
	}
	
	.top-page .col-12:nth-last-child(-n+4) {
		margin-bottom: 0;
	}
	
	.top-page .textwrap-md-150 {
		height: 150px !important;
	}
	
	.top-page .textwrap-md-155 {
		height: 155px !important;
	}	

	.top-page .textwrap-md-160 {
		height: 160px !important;
	}
	
	.top-page .textwrap-md-165 {
		height: 165px !important;
	}	
	
	.top-page .textwrap-md-170 {
		height: 170px !important;
	}
	
	.top-page .textwrap-md-175 {
		height: 175px !important;
	}
	
	.top-page .textwrap-md-180 {
		height: 180px !important;
	}
	
	.top-page .textwrap-md-185 {
		height: 185px !important;
	}	
	
	.top-page .textwrap-md-190 {
		height: 190px !important;
	}
	
	.top-page .textwrap-md-195 {
		height: 195px !important;
	}	
	
	.top-page .textwrap-sm-200 {
		height: 200px !important;
	}
	
	.top-page .textwrap-md-205 {
		height: 205px !important;
	}
	
	.top-page .textwrap-md-210 {
		height: 210px !important;
	}
	
	.top-page .textwrap-md-215 {
		height: 215px !important;
	}
	
	.top-page .textwrap-md-220 {
		height: 220px !important;
	}
	
	.top-page .textwrap-md-225 {
		height: 225px !important;
	}
	
	.top-page .textwrap-md-230 {
		height: 230px !important;
	}
	
	.top-page .textwrap-md-235 {
		height: 235px !important;
	}
	
	.top-page .textwrap-md-240 {
		height: 240px !important;
	}
	
	.top-page .textwrap-md-245 {
		height: 245px !important;
	}
	
	.top-page .textwrap-md-250 {
		height: 250px !important;
	}	
}

@media (min-width: 992px) {
	.top-page .link {
		width: 12em;
		margin: 0 auto;
	}
	
	.top-page .col-12 {
		margin-bottom: 60px;
	}	
	
	.top-page .textwrap-lg-150 {
		height: 150px !important;
	}
	
	.top-page .textwrap-lg-155 {
		height: 155px !important;
	}	

	.top-page .textwrap-lg-160 {
		height: 160px !important;
	}
	
	.top-page .textwrap-lg-165 {
		height: 165px !important;
	}	
	
	.top-page .textwrap-lg-170 {
		height: 170px !important;
	}
	
	.top-page .textwrap-lg-175 {
		height: 175px !important;
	}
	
	.top-page .textwrap-lg-180 {
		height: 180px !important;
	}
	
	.top-page .textwrap-lg-185 {
		height: 185px !important;
	}	
	
	.top-page .textwrap-lg-190 {
		height: 190px !important;
	}
	
	.top-page .textwrap-lg-195 {
		height: 195px !important;
	}	
	
	.top-page .textwrap-lg-200 {
		height: 200px !important;
	}
	
	.top-page .textwrap-lg-205 {
		height: 205px !important;
	}
	
	.top-page .textwrap-lg-210 {
		height: 210px !important;
	}
	
	.top-page .textwrap-lg-215 {
		height: 215px !important;
	}
	
	.top-page .textwrap-lg-220 {
		height: 220px !important;
	}
	
	.top-page .textwrap-lg-225 {
		height: 225px !important;
	}
	
	.top-page .textwrap-lg-230 {
		height: 230px !important;
	}
	
	.top-page .textwrap-lg-235 {
		height: 235px !important;
	}
	
	.top-page .textwrap-lg-240 {
		height: 240px !important;
	}
	
	.top-page .textwrap-lg-245 {
		height: 245px !important;
	}
	
	.top-page .textwrap-lg-250 {
		height: 250px !important;
	}	
}

@media (min-width: 1200px) {	
	.top-page .textwrap-xl-150 {
		height: 150px !important;
	}
	
	.top-page .textwrap-xl-155 {
		height: 155px !important;
	}	

	.top-page .textwrap-xl-160 {
		height: 160px !important;
	}
	
	.top-page .textwrap-xl-165 {
		height: 165px !important;
	}	
	
	.top-page .textwrap-xl-170 {
		height: 170px !important;
	}
	
	.top-page .textwrap-xl-175 {
		height: 175px !important;
	}
	
	.top-page .textwrap-xl-180 {
		height: 180px !important;
	}
	
	.top-page .textwrap-xl-185 {
		height: 185px !important;
	}	
	
	.top-page .textwrap-xl-190 {
		height: 190px !important;
	}
	
	.top-page .textwrap-xl-195 {
		height: 195px !important;
	}	
	
	.top-page .textwrap-xl-200 {
		height: 200px !important;
	}
	
	.top-page .textwrap-xl-205 {
		height: 205px !important;
	}
	
	.top-page .textwrap-xl-210 {
		height: 210px !important;
	}
	
	.top-page .textwrap-xl-215 {
		height: 215px !important;
	}
	
	.top-page .textwrap-xl-220 {
		height: 220px !important;
	}
	
	.top-page .textwrap-xl-225 {
		height: 225px !important;
	}
	
	.top-page .textwrap-xl-230 {
		height: 230px !important;
	}
	
	.top-page .textwrap-xl-235 {
		height: 235px !important;
	}
	
	.top-page .textwrap-xl-240 {
		height: 240px !important;
	}
	
	.top-page .textwrap-xl-245 {
		height: 245px !important;
	}
	
	.top-page .textwrap-xl-250 {
		height: 250px !important;
	}	
}
	
/*/////////// リンクボタン ///////////*/
main .info a {
	color: #222;
}

main .info a:hover {
	color: #28baee;
}

main .info .btn {
	text-align: center;
	width: 100%;
	height: auto;
}

main .info .btn a {
	background-color: #8cc63f;
	color: #fff;
	text-align: center;
	display: block;
	padding: 1.2rem 0 1.4rem !important;
	height: auto;
}

main .info .btn a:hover {
	opacity: 0.6;
	transition-duration: 0.3s;
	background-color: #28baee;
}


@media (min-width: 576px) {
	main .info .btn {
		width: 360px !important;
	}
}