@charset "utf-8";
.pc_none {
	display: none!important;
}
.sp_none {
	display: block!important;
}
@media screen and (max-width: 767px) {
	.pc_none {
		display: block!important;
	}
	.sp_none {
		display: none!important;
	}
}
body {
	font-family: 'Noto Sans JP', '游ゴシック', 'Yu Gothic', 'Meiryo', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	background-color: #FFFFFF;
	color: #333333;
	font-feature-settings: "palt";
	letter-spacing: 0.5px;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
a {
	text-decoration: none;
	color: #333333;
}
header {
	background: #01c200;
}
header .inner {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 60px;
}
header .inner img {
	width: 85px;
}
footer {
	background: #f3f4f5;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 140px;
}
footer p {
	margin: 0;
	font-size: 11px;
}
#mv {
}
#mv h1 {
	width: 100%;
	max-width: 1680px;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	header .inner {
		height: 42px;
	}
	header .inner img {
		width: 62px;
	}
	#mv {
	}
	#mv h1 {
		width: 100%;
		max-width: 460px;
	}
}
main {
	width: 100%;
	max-width: 1680px;
	margin: 0 auto;
}
main .inner {
	width: 100%;
	max-width: 1040px;
	margin: 0 auto;
	padding: 60px 20px 80px;
}
main .lead {
	margin-bottom: 0;
	font-size: 16px;
	line-height: 2.5;
	letter-spacing: 2px;
	text-align: center;
}
main p small {
	font-size: 12px;
}
main .main {
	background: #F5F9FA;
}
main .main .inner {
	padding: 60px 20px 120px;
}
main .select_box {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 60px;
}
main .select_wrap {
	width: 320px;
}
main .select_wrap label {
	display: inline-block;
	margin-bottom: 4px;
	font-size: 14px;
}
main .select_wrap select {
	appearance: none;
	padding: 10px 10px 10px 50px;
	width: 100%;
	font-size: 16px;
	border: 1px solid #E8E6E1;
	border-radius: 4px;
	cursor: pointer;
}
main .select_wrap select:focus {
	outline: none;
	border: 1px solid #49A9CC;
}
main .icon_wrap {
	position: relative;
}
main .select_wrap .icon {
	position: absolute;
	top: 50%;
	left: 12px;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
}
main .select_wrap .icon svg path {
	fill: #BEC5CB;
}
#csv_list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 60px 30px;
	margin: 0;
	padding: 0;
}
#csv_list img {
	object-fit: cover;
	aspect-ratio: 3/2;
}
#csv_list .csv_item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: calc((100% - 60px) / 3);
	background-color: #ffffff;
}
#csv_list .csv_item .content_top {
	position: relative;
}
#csv_list .csv_item .content_bottom {
	padding-bottom: 20px;
}
#csv_list .csv_item .img {
	margin-bottom: 18px;
}
#csv_list .csv_item .area {
	position: absolute;
	top: 8px;
	left: 8px;
	background: #158CE3;
	border: 1px solid #fff;
	display: inline-block;
	padding: 0 12px;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	line-height: 26px;
	text-align: center;
	border-radius: 24px;
}
#csv_list .csv_item .title {
	margin-bottom: 16px;
	padding: 0 20px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
}
#csv_list .csv_item .merit {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 0;
	margin-bottom: 20px;
	padding: 0 26px;
}
#csv_list .csv_item .merit li {
	position: relative;
	display: flex;
	align-items: center;
	gap: 5px;
	width: 100%;;
	font-size: 12px;
	font-weight: 700;
	opacity: 0.3;
}
#csv_list .csv_item .merit li::before {
	content: '';
	display: block;
	width: 20px;
	height: 14px;
}
#csv_list .csv_item .merit li.view::before {
	background: url("../img/icon_view.png") no-repeat center center / contain;
}
#csv_list .csv_item .merit li.bathing::before {
	background: url("../img/icon_bathing.png") no-repeat center center / contain;
}
#csv_list .csv_item .merit li.fishing::before {
	background: url("../img/icon_fishing.png") no-repeat center center / contain;
}
#csv_list .csv_item .merit li.active {
	opacity: 1;
}
#csv_list .csv_item .link {
	padding: 0 20px;
}
#csv_list .csv_item .link a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 46px;
	background: #158CE3;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	border-radius: 6px;
	transition: all 0.2s;
}
#csv_list .csv_item .link a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 14px;
	transform: translateY(-50%) rotate(45deg);
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
	display: inline-block;
	width: 7px;
	height: 7px;
}
#csv_list .csv_item .link a:hover {
	box-shadow: 0 2px 14px rgba(0,0,0,.2);
	filter: brightness(1.10);
}
@media screen and (max-width: 767px) {
	main {
	}
	main .inner {
		max-width: 460px;
		padding: 40px 20px 50px;
	}
	main .lead {
		font-size: 14px;
		line-height: 2;
		text-align: justify;
	}
	main .main .inner {
		padding: 40px 25px 80px;
	}
	main .select_box {
		flex-direction: column;
		align-items: center;
		margin-bottom: 40px;
	}
	main .select_wrap {
		width: 280px;
	}
	main .select_wrap select {
		font-size: 14px;
	}
	#csv_list {
		gap: 30px;
	}
	#csv_list .csv_item {
		width: 100%;
	}
}