@charset "utf-8";
.u-spInline {
	display: none;
}
.mapContents {
	--color-main: #FF8383;
	--color-yellow: #FFFF27;
	--color-white: #fff;
	position: relative;
}
.mapContents_inner {
	max-width: 1270px;
	margin: 60px auto 0;
	box-sizing: content-box;
	padding-left: 20px;
	padding-right: 20px;
}
.mapTopNav {
	margin-top: 36px;
}
.mapTopNav_title {
	color: var(--color-main);
	border: 3px solid currentColor;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	font-weight: bold;
	padding: 19px 10px;
	margin-bottom: 38px;
}
.mapTopNav_list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}
.mapTopNav_list > li {
	width: 23.5%;
	margin-left: 2%;
}
.mapTopNav_list > li:nth-child(4n+1) {
	margin-left: 0;
}
.mapTopNav_list > li:nth-child(n+5) {
	margin-top: 33px;
}
.mapTopNav_list > li > a {
	text-decoration: none;
	color: inherit;
	display: block;
	padding: 11px 17px 18px;
	box-shadow: 0 0 9px rgba(0, 0, 0, 0.13);
	border-radius: 5px;
	height: 100%;
	box-sizing: border-box;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.333;
	transition-duration: .3s;
	transition-property: box-shadow;
}
.mapTopNav_fig {}
.mapTopNav_fig_inner {
	display: block;
	position: relative;
	overflow: hidden;
}
.mapTopNav_fig_inner > img {
	display: block;
	transition-duration: .3s;
	transition-property: transform;
	max-width: 100%;
	height: auto;
}
.mapTopNav_caption {
	margin-top: 17px;
	min-height: 48px;
}
.areaTitle {
	background-color: var(--color-main);
	color: var(--color-white);
	font-size: 22px;
	text-align: center;
	padding: 32px 10px 22px;
	font-weight: bold;
}
.areaTitle_sub {}
.areaTitle_title {
	font-size: 32px;
	color: var(--color-yellow);
}
.mapCanvas {
	position: relative;
	z-index: 0;
}
.mapCanvas_image {}
.mapCanvas-openLayers {
	height: 794px;
	position: relative;
}
.areaMap {}
.mapCanvas_image_text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.mapCanvas_image_text > img {
	display: block;
	max-width: 100%;
	height: auto;
}
.popup {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.50);
	font-size: 15px;
	line-height: 1.533;
	box-sizing: border-box;
	padding: 30px 20px;
	display: flex;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition-property: opacity, visibility;
	transition-duration: .5s;
}
.popup.isShow {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.popup_inner {
	max-width: 600px;
	margin: 0 auto;
	width: 100%;
}
.popup_box {
	background-color: var(--color-white);
	border-radius: 10px;
	box-shadow: 0 6px 8px rgba(0, 0, 0, 0.16);
	padding: 35px 20px;
	position: relative;
}
.popup_btn {
	display: block;
	width: 65px;
	height: 65px;
	background-color: rgba(0, 0, 0, 0.50);
	border-radius: 50%;
	color: var(--color-white);
	padding: 0;
	position: absolute;
	top: -20px;
	right: -20px;
	cursor: pointer;
	transition-duration: .3s;
	transition-property: background-color, color;
	z-index: 2;
}
.popup_btn::before {
	content: "";
	display: block;
	width: 26px;
	height: 4px;
	background-color: currentColor;
	border-radius: 2px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}
.popup_btn::after {
	content: "";
	display: block;
	width: 26px;
	height: 4px;
	background-color: currentColor;
	border-radius: 2px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}
.popup_box_inner {
	max-width: 460px;
	margin: 0 auto;
}
.popup_slide {
	margin-bottom: 19px;
	position: relative;
	font-size: 0;
}
.popup_slide_btn {
	display: block;
	padding: 0;
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: #c6c6c6;
	transition-duration: .3s;
	transition-property: background-color, color;
}
.popup_slide_btn-prev {
	left: -42px;
}
.popup_slide_btn_icon {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 7px;
	display: block;
	width: 37px;
	height: 37px;
}
.popup_slide_btn-next {
	right: -42px;
}
.popup_slide_item {}
.popup_image {}
.popup_image > img {
	display: block;
	max-width: 100%;
	height: auto;
}
.popup_title {
	font-size: 20px;
	line-height: 1.4;
	margin-bottom: 6px;
}
.popup_text {}
.popup_link {
	margin-top: 20px;
}
.popup_link > a {
	text-decoration: none;
	color: inherit;
	background-color: var(--color-main);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 25px;
	min-height: 50px;
	color: var(--color-white);
	font-size: 16px;
	font-weight: bold;
	border: 1px solid var(--color-main);
	box-sizing: border-box;
	transition-duration: .3s;
	transition-property: background-color, color;
}
.mapContents_hidden {
	width: 0;
	height: 0;
	visibility: hidden;
	position: absolute;
	pointer-events: none;
}
.popup_box_scroll {
	max-height: calc(100vh - 160px);
	overflow: auto;
	padding-bottom: 40px;
}
.popup_link_icon {
	display: block;
	width: 11px;
	height: 11px;
	fill: currentColor;
	margin-left: 12px;
}
.mapCanvas_marker {
	position: absolute;
	z-index: 10;
	bottom: 21.2%;
	left: 59.9%;
}
.mapCanvas_marker > a {
	display: flex;
	align-items: center;
}
.mapCanvas_marker_dot {
	width: 10px;
	height: 10px;
	display: block;
	font-size: 0;
	background-color: #38C732;
	border-radius: 50%;
	border: 5px solid rgba(255, 255, 255, 0);
	box-sizing: content-box;
	background-clip: content-box;
	transition-duration: .3s;
	transition-property: transform, background-color;
}
.mapCanvas_marker_text {
	display: block;
	font-size: 11px;
	font-weight: bold;
	font-family: sans-serif;
}
.mapCanvas_image_base {
	max-width: 100%;
	height: auto;
	display: block;
}
.mapCanvas_image_base-pc {}
.mapCanvas_image_base-sp {
	display: none;
}
.mapCanvas_markerWrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
}
.mapCanvas_markerWrap_inner {
	display: block;
	width: 1270px;
	height: 794px;
	position: relative;
	transform-origin: left top;
}
.mapCanvas_container {
	height: 794px;
}
.mapCanvas .leaflet-container {
	background-color: #cafea0;
}
.mapCanvas .leaflet-div-icon {
	background-color: rgba(255, 255, 255, 0);
	border: none;
}
.mapCanvas .leaflet-control-attribution {}
.mapCanvas .leaflet-control-attribution > a {
	display: block;
	position: relative;
	color: inherit;
	pointer-events: none;
}
.mapCanvas .leaflet-control-attribution > a > svg {
	width: 0;
	height: 0;
	position: absolute;
	top: 0;
	left: 0;
	visibility: hidden;
}
.mapCanvas_hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
}
.marker {
	position: relative;
	width: 10px;
	color: #38C732;
	font-family: "Yu Gothic", "YuGothic", "游ゴシック", "YuGothic Bold", sans-serif;
	font-weight: bold;
	line-height: 14px;
	cursor: pointer;
	transform-origin: center bottom;
	transition-duration: .3s;
	transition-property: transform;
}
.marker[data-zoom="2"] {
	transform: scale3d(2, 2, 1);
}
.marker[data-zoom="0.5"] {
	transform: scale3d(0.5, 0.5, 1);
}
.marker_text {
	position: absolute;
	top: -4px;
	font-size: 10px;
	font-weight: bold;
	white-space: nowrap;
	color: #333333;
	transition-duration: .3s;
	transition-property: background-color, color;
	padding-top: 5px;
	padding-bottom: 5px;
}
.marker_icon {}
.marker_icon > svg {
	display: block;
	fill: currentColor;
	width: 10px;
	height: 14px;
}
.marker-england {
	color: #9432C7;
}
.marker-netherlands {
	color: #2E3192;
}
.marker-france {
	color: #F43764;
}
.marker-belgium {
	color: #D82AB7;
}
.marker-germany {
	color: #FFC400;
}
.marker-luxembourg {
	color: #009245;
}
.marker-portugal {
	color: #C1A06F;
}
.marker-spain {
	color: #29ABE2;
}
.marker-czech {
	color: #F15A24;
}
.marker-slovakia {
	color: #9E0E5D;
}
.marker-slovenia {
	color: #17AA9B;
}
.marker-hungary {
	color: #ED1C24;
}
.marker-austria {
	color: #0071BC;
}
.marker-croatia {
	color: #BF8902;
}
.marker-bosnia_herzegovina {
	color: #255116;
}
.marker-italy {
	color: #38C732;
}
.marker-nordic {
	color: #003EA2;
}
.marker-switzerland {
	color: #B40C2E;
}
.marker_text-right {
	left: 100%;
	padding-left: 5px;
}
.marker_text-03 {
	margin-top: -16px;
	margin-right: 19px;
}
.marker_text-left {
	right: 100%;
	padding-right: 5px;
}
.marker_text-top {
	bottom: 100%;
	top: auto;
	margin-bottom: -4px;
	left: 50%;
	transform: translateX(-50%);
}
.marker_text-bottom {
	top: 100%;
	transform: translateX(-50%);
	left: 50%;
}
.marker_text-04 {
	margin-left: 18px;
	margin-top: -15px;
}
.marker_text-09 {
	margin-left: 34px;
	margin-top: -4px;
}
.marker_text-77 {
	margin-left: -18px;
	margin-top: -3px;
}
.marker_text-12 {}
.marker_text-14 {
	margin-top: -2px;
	margin-left: 30px;
}
.marker_text-24 {
	margin-bottom: -4px;
	margin-left: -13px;
}
.marker_text-24::after {
	content: "";
	width: 2px;
	background-color: currentColor;
	display: block;
	height: 10px;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	margin-top: -2px;
	opacity: 0;
}
.mapCanvas_container-pc {}
.mapCanvas_container-sp {
	height: 0;
	padding-bottom: 113.071%;
	/* padding-bottom: 100%; */
}
.mapCanvas_spBody {
	height: 869px;
	overflow: hidden;
	display: none;
}
.mapCanvas_spBody_inner {
	width: 768px;
	transform-origin: left top;
}
.marker_text-sp {
	font-size: 14px;
	padding-left: 7px;
}
.marker_icon-sp {}
.marker_icon-sp > svg {
	width: 14px;
	height: 18px;
}
.mapSect {
	margin-bottom: 78px;
}
.mapSect_title {
	font-size: 26px;
	font-family: "Yu Gothic", "YuGothic", "游ゴシック", "YuGothic Bold", sans-serif;
	font-weight: bold;
	margin-bottom: 13px;
}
.mapSect_note {
	font-size: 18px;
	font-family: "Yu Gothic", "YuGothic", "游ゴシック", "YuGothic Bold", sans-serif;
	font-weight: bold;
	color: var(--color-main);
	margin-bottom: 34px;
}
.routeBox {
	border: 2px solid #BEBEBE;
	border-radius: 5px;
	padding: 33px 49px;
	margin-top: 40px;
}
.routeBox_list {
	list-style: none;
	font-size: 16px;
	font-weight: bold;
	font-family: "Yu Gothic", "YuGothic", "游ゴシック", "YuGothic Bold", sans-serif;
	display: flex;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
	row-gap: 22px;
}
.routeBox_list > li {
	font-weight: inherit;
	width: 50%;
	display: flex;
	align-items: center;
	padding: 0 10px;
	box-sizing: border-box;
}
.routeBox_list_icon {
	width: 100px;
	display: block;
}
.routeBox_list_icon > img {
	display: block;
}
.routeBox_list_text {
	display: block;
	font-weight: inherit;
	width: calc(100% - 120px);
	margin-left: auto;
}
.routeBox_caution {
	font-size: 14px;
	text-indent: -1em;
	padding-left: 1em;
	margin-top: 23px;
}
.areaTitle_note {
	font-size: 16px;
	margin-top: 10px;
}
.mapCanvas_note {
	color: var(--color-main);
	text-align: right;
	font-size: 16px;
	margin-top: 13px;
}
.mapCourse {
	margin-bottom: 105px;
}
.mapCourse:last-child {
	margin-bottom: 0;
}
.mapCourse_areaTtl {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 45px;
}
.mapCourse_ttlImage {
	width: 181px;
	margin-right: 40px;
}
.mapCourse_ttlImage > img {
	display: block;
}
.mapCourse_title {
	font-size: 36px;
	font-weight: bold;
}
.mapCourseNav {
	margin-bottom: 173px;
}
.mapCourseNav_list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}
.mapCourseNav_list > li {
	width: 22.9%;
	margin-left: 2.8%;
}
.mapCourseNav_list > li:nth-child(4n+1) {
	margin-left: 0;
}
.mapCourseNav_list > li:nth-child(n+5) {
	margin-top: 16px;
}
.mapCourseNav_list > li > a {
	text-decoration: none;
	color: inherit;
	min-height: 93px;
	background-color: var(--color-main);
	border: 2px solid var(--color-main);
	color: var(--color-white);
	display: flex;
	align-items: center;
	border-radius: 5px;
	box-sizing: border-box;
	padding: 10px 18px;
	font-weight: bold;
	justify-content: flex-start;
	line-height: 1.17;
	position: relative;
	padding-right: 44px;
	transition-duration: .3s;
	transition-property: background-color, color;
	height: 100%;
}
.mapCourseNav_list > li > a:not([href]) {
	pointer-events: none;
}
.mapCourseNav_list > li > a[href]::after {
	content: "";
	display: block;
	position: absolute;
	width: 0;
	height: 0;
	border: 7px solid rgba(255, 255, 255, 0);
	border-top-color: currentColor;
	border-top-width: 12px;
	border-bottom-width: 0;
	right: 20px;
	transform: translateY(-50%);
	top: 50%;
}
.mapCourse_contents {}
.mapCourse_headline {
	font-size: 26px;
	font-weight: bold;
	display: flex;
	align-items: center;
	margin-bottom: 28px;
}
.mapCourse_headline_img {
	display: block;
	width: 60px;
	margin-right: 5px;
	font-size: inherit;
	font-weight: inherit;
}
.mapCourse_headline_img > img {
	display: block;
}
.mapCourse_headline_main {
	display: block;
	margin-left: 15px;
}
.mapCourse_message {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 37px;
}
.mapCourse_list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}
.mapCourse_list > li {
	width: 23.5%;
	margin-left: 2%;
}
.mapCourse_list > li:nth-child(4n+1) {
	margin-left: 0;
}
.mapCourse_list > li:nth-child(n+5) {
	margin-top: 33px;
}
.mapCourse_list > li > a {}
.mapCourse_fig {}
.mapCourse_fig_img {
	display: block;
	overflow: hidden;
}
.mapCourse_fig_img > img {
	display: block;
	max-width: 100%;
	height: auto;
	transition-duration: .3s;
	transition-property: opacity;
}
.mapCourse_fig > figcaption {
	font-size: 18px;
	font-weight: bold;
	margin-top: 23px;
}
.mapCourse_link {
	max-width: 686px;
	margin: 77px auto 0;
}
.mapCourse_link > a {
	text-decoration: none;
	color: inherit;
	display: flex;
	min-height: 80px;
	border: 3px solid var(--color-main);
	color: var(--color-main);
	border-radius: 80px;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 10px 75px;
	font-weight: bold;
	font-size: 18px;
	position: relative;
	transition-duration: .3s;
	transition-property: background-color, color;
	text-align: center;
}
.mapCourse_link_icon {
	width: 40px;
	height: 40px;
	background-color: var(--color-main);
	border-radius: 50%;
	color: var(--color-white);
	position: absolute;
	top: 50%;
	left: 24px;
	transform: translateY(-50%);
	transition-duration: .3s;
	transition-property: background-color, color;
}
.mapCourse_link_icon::before {
	content: "";
	display: block;
	width: 10px;
	height: 2px;
	background-color: currentColor;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	margin-top: -3px;
	border-radius: 1px;
}
.mapCourse_link_icon::after {
	content: "";
	display: block;
	width: 10px;
	height: 2px;
	background-color: currentColor;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
	margin-top: 3px;
	border-radius: 1px;
}
.mapCourse_message-mt {
	margin-top: 55px;
}
.popup_caption {
	font-size: 14px;
	color: var(--color-white);
	position: absolute;
	z-index: 10;
	width: 100%;
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
	line-height: 1.4;
	background-color: rgba(0, 0, 0, 0.50);
	padding: 10px;
	text-align: right;
	letter-spacing: 0.1em;
	box-sizing: border-box;
}
.mapCanvas_container-large {
	height: 1165px;
}
@media screen and (min-width:1000px) and (hover:hover) {
	.mapCourse_list > li > a:hover {}
	a:hover .mapCourse_fig_img > img {
		opacity: .5;
	}
	.marker:hover .marker_text {
		color: inherit;
	}
	.mapCourseNav_list > li > a:hover {
		background-color: var(--color-white);
		color: var(--color-main);
	}
	.mapCourse_link > a:hover {
		background-color: var(--color-main);
		color: var(--color-white);
	}
	a:hover .mapCourse_link_icon {
		color: var(--color-main);
		background-color: var(--color-white);
	}
	.popup_btn:hover {
		background-color: rgba(0, 0, 0, 0.70);
	}
	.popup_slide_btn:hover {
		color: var(--color-main);
	}
	.popup_link > a:hover {
		color: var(--color-main);
		background-color: var(--color-white);
	}
	a:hover .mapCanvas_marker_dot {
		transform: scale(1.2);
		background-color: var(--color-white);
	}
	a:hover .mapTopNav_fig_inner > img {
		transform: scale(1.03);
	}
	.mapTopNav_list > li > a:hover {
		box-shadow: 0 0 9px rgba(0, 0, 0, 0.3);
	}
}
@media screen and (max-width:768px) {
	.u-spInline {
		display: inline;
	}
	.mapContents {}
	.mapContents_inner {
		padding-left: 14px;
		padding-right: 14px;
		margin-top: 47px;
	}
	.mapTopNav {
		margin-top: 18px;
	}
	.mapTopNav_title {
		font-size: 18px;
		padding: 14px 10px;
		margin-bottom: 16px;
		text-align: center;
	}
	.mapTopNav_list {
		margin-left: -8px;
		margin-right: -8px;
	}
	.mapTopNav_list > li {
		width: 50%;
		box-sizing: border-box;
		padding: 8px;
		margin: 0;
	}
	.mapTopNav_list > li:nth-child(3n+1) {}
	.mapTopNav_list > li:nth-child(n+4) {
		margin: 0;
	}
	.mapTopNav_list > li > a {
		font-size: 14px;
		padding: 8px 8px 13px;
	}
	.mapTopNav_fig {}
	.mapTopNav_fig_inner {}
	.mapTopNav_fig_inner > img {}
	.mapTopNav_caption {}
	.areaTitle {
		font-size: 18px;
		padding: 20px 10px 20px;
	}
	.areaTitle_sub {}
	.areaTitle_title {
		font-size: 24px;
	}
	.mapCanvas {}
	.mapCanvas_image {}
	.mapCanvas-openLayers {}
	.areaMap {}
	.popup {
		font-size: 13px;
	}
	.popup.isShow {}
	.popup_inner {}
	.popup_box {
		padding: 20px 0 20px;
	}
	.popup_btn {
		width: 45px;
		height: 45px;
		top: -20px;
		right: -10px;
	}
	.popup_btn::before {
		width: 20px;
	}
	.popup_btn::after {
		width: 20px;
	}
	.popup_box_inner {}
	.popup_slide {
		width: auto;
		margin: 0 auto 15px;
		height: 161px;
		padding: 0 20px;
		margin-left: -20px;
		margin-right: -20px;
		text-align: center;
	}
	.popup_slide_btn {}
	.popup_slide_btn-prev {
		left: 0;
	}
	.popup_slide_btn_icon {
		width: 26px;
		height: 26px;
	}
	.popup_slide_btn-next {
		right: 0;
	}
	.popup_slide_item {}
	.popup_image {
		max-width: 240px;
		margin: 0 auto;
	}
	.popup_image > img {}
	.popup_title {
		font-size: 17px;
	}
	.popup_text {}
	.popup_link {
		margin-top: 20px;
	}
	.popup_link > a {
		min-height: 40px;
		font-size: 14px;
	}
	.mapContents_hidden {}
	.popup_box_scroll {
		padding-left: 30px;
		padding-right: 30px;
		padding-bottom: 20px;
	}
	.popup_link_icon {
		margin-left: 9px;
		width: 10px;
		height: 10px;
	}
	.mapCanvas_marker {
		bottom: 25.7%;
		left: 60.6%;
		transform: scale(0.6);
	}
	.mapCanvas_marker_dot {}
	.mapCanvas_image_base {}
	.mapCanvas_image_base-pc {
		display: none;
	}
	.mapCanvas_image_base-sp {
		display: block;
	}
	.mapCanvas_image_text {
		height: auto;
		top: 30.4%;
		left: 1.8%;
	}
	.mapCanvas_image_text > img {}
	.mapCanvas_marker_text {}
	.mapCanvas_markerWrap {}
	.mapCanvas_markerWrap_inner {
		width: 768px;
		height: 868px;
	}
	.mapCanvas_container-pc {
		display: none;
	}
	.mapCanvas_container-sp {}
	.mapCanvas_spBody {
		display: block;
	}
	.mapCanvas_spBody_inner {}
	.marker_text-sp {}
	.marker_icon-sp {}
	.marker_icon-sp > svg {}
	.mapSect {}
	.mapSect_title {
		font-size: 21px;
		text-align: center;
	}
	.mapSect_note {
		font-size: 16px;
		line-height: 1.5;
		text-align: center;
		margin-bottom: 20px;
	}
	.routeBox {
		padding: 20px 20px;
	}
	.routeBox_list {
		display: block;
		margin: 0;
		font-size: 14px;
		line-height: 1.428571429;
	}
	.routeBox_list > li {
		width: auto;
		padding: 0;
		margin-bottom: 11px;
	}
	.routeBox_list_icon {
		width: 80px;
	}
	.routeBox_list_icon > img {
		width: 100%;
		height: auto;
	}
	.routeBox_list_text {
		width: calc(100% - 100px);
	}
	.routeBox_caution {
		margin-top: 18px;
	}
	.areaTitle_note {
		font-size: 14px;
		margin-top: 5px;
	}
	.mapCanvas_note {
		text-align: center;
		font-size: 14px;
		margin-top: 10px;
	}
	.mapCourse {
		margin-bottom: 65px;
	}
	.mapCourse:last-child {}
	.mapCourse_areaTtl {
		display: block;
		margin-bottom: 30px;
	}
	.mapCourse_ttlImage {
		max-width: 120px;
		width: auto;
		margin: 0 auto 10px;
	}
	.mapCourse_ttlImage > img {
		max-width: 100%;
		height: auto;
	}
	.mapCourse_title {
		font-size: 22px;
		text-align: center;
	}
	.mapCourseNav {
		margin-bottom: 75px;
	}
	.mapCourseNav_list {}
	.mapCourseNav_list > li {
		width: 48.5%;
		margin-left: 3%;
	}
	.mapCourseNav_list > li:nth-child(4n+1) {
		margin-left: 3%;
	}
	.mapCourseNav_list > li:nth-child(2n+1) {
		margin-left: 0;
	}
	.mapCourseNav_list > li:nth-child(n+3) {
		margin-top: 3%;
	}
	.mapCourseNav_list > li > a {
		padding: 10px 13px;
		padding-right: 33px;
		min-height: 80px;
	}
	.mapCourseNav_list > li > a:not([href]) {}
	.mapCourseNav_list > li > a::after {
		right: 10px;
	}
	.mapCourse_contents {}
	.mapCourse_headline {
		font-size: 21px;
		margin-bottom: 20px;
	}
	.mapCourse_headline_img {
		width: 45px;
		min-width: 45px;
	}
	.mapCourse_headline_img > img {
		max-width: 100%;
		height: auto;
	}
	.mapCourse_headline_main {
		margin-left: 10px;
	}
	.mapCourse_message {
		font-size: 18px;
		margin-bottom: 26px;
	}
	.mapCourse_message-mt {
		margin-top: 35px;
	}
	.mapCourse_list {
		max-width: 625px;
		margin: 0 auto;
	}
	.mapCourse_list > li {
		width: 48%;
		margin-left: 4%;
	}
	.mapCourse_list > li:nth-child(4n+1) {
		margin-left: 0;
	}
	.mapCourse_list > li:nth-child(2n+1) {
		margin-left: 0;
	}
	.mapCourse_list > li:nth-child(n+3) {
		margin-top: 20px;
	}
	.mapCourse_list > li > a {}
	.mapCourse_fig {}
	.mapCourse_fig_img > img {}
	.mapCourse_fig > figcaption {
		font-size: 16px;
		margin-top: 10px;
	}
	.mapCourse_link {
		max-width: none;
		margin-top: 40px;
	}
	.mapCourse_link > a {
		padding: 10px 62px;
		font-size: 16px;
	}
	.mapCourse_link_icon {
		width: 30px;
		height: 30px;
		left: 20px;
	}
	.mapCourse_link_icon::before {}
	.mapCourse_link_icon::after {}
	.popup_caption {
		font-size: 10px;
		width: 240px;
		padding: 5px;
		bottom: 1px;
	}
}
@media screen and (max-width:375px) {
	.popup_link > a {
		font-size: 12px;
	}
	.popup_box_scroll {
		padding-left: 20px;
		padding-right: 20px;
	}
	.popup_link_icon {
		margin-left: 7px;
		width: 9px;
		height: 9px;
	}
}
