/*---------------------------------
	mainvisualSlider start
---------------------------------*/

.slider-wrapper{
	position: relative;
}

.mainvisualSliderItem_inner{
	position: relative;
	padding-top: 70vh;
	overflow: hidden;
}

.mainvisualSliderItem_img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mainvisualSliderItem_catch{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 20em;
	max-width: 90%;
	max-height: 100%;
	color: #FFF;
	text-align: center;
	font-size: 200%;
	font-weight: var(--fontWeightBold);
	z-index: 102;
}

.mainvisualSliderItem_catch img{
	display: block;
	width: 100%;
	filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.8));
}

/*---------------------------------
	mainvisualSlider end
---------------------------------*/

/*---------------------------------
	contentMap start
---------------------------------*/

.mapLink{
	width: 100%;
	margin: 0 auto;
}

.contentMap{
	--maxContent: min(90vw,960px);
	--mapGapY: calc(min(90vw,960px) * 0.7 * 0.3 * 0.8 * 0.9 / 500 * 565);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: var(--mapGapY) 0;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

@media(max-width: 1024px){
	.contentMap{
		--mapGapY: calc(80vw * 0.7 * 0.2 * 0.8 * 0.9 / 500 * 565);
	}
}

.contentMapItem{
	display: block;
	width: 100%;
	margin: 0 auto;
	position: relative;
}

.contentMapItemInner{
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	width: 70%;
	margin: 0 auto;
	position: relative;
}

@media(max-width: 600px){
	.contentMapItemInner{
		width: 90%;
	}
}

.contentMapItem:nth-of-type(even) .contentMapItemInner{
	justify-content: flex-end;
}

.contentMapItem:not(:first-of-type){
	margin-top: max(calc(-90vw * 0.2 / 4),calc(-960px * 0.2 / 4));
}

/*
.contentMapItem:nth-of-type(odd):before{
	content: "";
	width: calc(100% - 30%);
	height: min(calc(100% - (90vw * 0.3 / 4) + 1em),calc(100% - (960px * 0.3 * 0.9 / 4) + 1em));
	position: absolute;
	top: 50%;
	left: calc(30% / 2);
	clip-path: polygon(0 1em, 1em 0, 100% calc(100% - 1em), calc(100% - 1em) 100%);
	background-color: #DFDFDF;
}

.contentMapItem:nth-of-type(even):before{
	content: "";
	width: calc(100% - 30%);
	height: min(calc(100% - (90vw * 0.3 / 4) + 1em),calc(100% - (960px * 0.3 * 0.9 / 4) + 1em));
	position: absolute;
	top: 50%;
	left: calc(30% / 2);
	clip-path: polygon(100% 1em, calc(100% - 1em) 0, 0 calc(100% - 1em), 1em 100%);
	background-color: #DFDFDF;
}

.contentMapItem:last-of-type:before{
	display: none;
}

*/

.contentMapLink,
.contentMapLink:hover{
	display: block;
	width: 30%;
	position: relative;
	z-index: 2;
	color: var(--mainTextColor);
	text-decoration: none;
}

@media(max-width: 1024px){
	.contentMapLink,
	.contentMapLink:hover{
		width: 40%;
	}
}

.contentMapText{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	color: inherit;
	position: relative;
	margin: 0;
	font-weight: var(--fontWeightBold);
	font-size: 125%;
	z-index: 3;
	transition: background-color 0.25s, color 0.25s;
	border: 2px solid #333;
	background-color: #FFF;
	padding: 0.5em 0.75em;
	border-radius: 0.25em;
}

.mapLink--pc .contentMapLink:hover .contentMapText{
	color: #FFF;
	background-color: #333;
}

.contentMapText span{
}

.contentMapImageWrapper{
	width: 100%;
	margin: 0 auto 1em;
}

.contentMapImage{
	display: block;
	width: 80%;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	transform: scale(0.9);
	transition: transform 0.5s, opacity 0.5s;
}

.mapLink--pc .contentMapLink:hover .contentMapImage{
	transform: scale(0);
	opacity: 0;
	transition: transform 0, opacity 0;
}

.contentMapHoverImageItem{
	display: block;
	width: 100%;
	margin: 0;
	border: 3px solid var(--themeColor);
	backgrund-color:  var(--themeColor);
	border-radius: 50%;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%) scale(0);
	transfotm-origin: center:
	opacity: 0;
	z-index: 3;
	transition: transform 0.5s, opacity 0.5s;
}

.mapLink--pc .contentMapLink:hover .contentMapHoverImageItem{
	transform: translateX(-50%) scale(1.3);
	opacity: 1;
}

.contentMapHoverImageItem:before{
	content: "";
	display: block;
	padding-top: 100%;
}

.contentMapHoverImage{
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: covrer;
}

@media(max-width: 1024px){
	.contentMapLink--active .contentMapImage{
		transform: scale(0);
		opacity: 0;
		transition: transform 0, opacity 0;
	}
	.contentMapLink--active .contentMapHoverImageItem{
		transform: translateX(-50%) scale(1.3);
		opacity: 1;
	}
	.contentMapLink--active .contentMapText{
		color: #FFF;
		background-color: #333;
	}
}

@media(max-width: 600px){
	.contentMapLink,
	.contentMapLink:hover{
		width: 45%;
	}
	.contentMapItem:not(:first-of-type){
		margin-top: min(calc(-90vw * 0.3 / 5),calc(-960px * 0.3 / 5));
	}
	.contentMapItem:nth-of-type(odd):before,
	.contentMapItem:nth-of-type(even):before{
		height: min(calc(100% - (90vw * 0.3 / 5) + 1em),calc(100% - (960px * 0.3 / 5) + 1em));
	}
	.contentMapText{
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.contentMapImage,
	.contentMapLink:hover .contentMapImage,
	.contentMapLink:focus .contentMapImage{
		width: 70%;
		transform: scale(0.9);
	}
}

.mapRoad{
	width: 100%;
	margin: 0 auto;
	position: relative;
}

.mapRoad01{
	width: 60%;
	margin: 0;
	position: absolute;
	top: calc((((1.25em * 1.5) + (0.5em * 1.25 * 2) + (2px * 2)) * -1) - 1em - (var(--maxContent) * 0.8 * 0.3 * 0.8 * 0.9 / 500 * 565 / 2));
	left: 20%;
}

.mapRoad01 .mapRoadImage{
	display: block;
	width: 100%;
}

.mapRoad02{
	width: 62%;
	margin: 0;
	position: absolute;
	top: calc((((1.25em * 1.5) + (0.5em * 1.25 * 2) + (2px * 2)) * -1) - 1em - (var(--maxContent) * 0.8 * 0.3 * 0.8 * 0.9 / 500 * 565 / 4));
	left: 23%;
}

.mapRoad02 .mapRoadImage{
	display: block;
	width: 100%;
}

@media(max-width: 600px){
	.mapRoad02{
		top: calc((((1.25em * 1.5 * 2) + (0.5em * 1.25 * 2) + (2px * 2)) * -1) - 1em - (var(--maxContent) * 0.8 * 0.3 * 0.8 * 0.9 / 500 * 565 / 4));
	}
}

.mapRoad03{
	width: 66%;
	margin: 0;
	position: absolute;
	top: calc((((1.25em * 1.5) + (0.5em * 1.25 * 2) + (2px * 2)) * -1) - 1em - (var(--maxContent) * 0.8 * 0.3 * 0.8 * 0.9 / 500 * 565 / 4));
	left: 6%;
}

.mapRoad03 .mapRoadImage{
	display: block;
	width: 100%;
}

.mapRoad04{
	width: 78%;
	margin: 0;
	position: absolute;
	top: calc((((1.25em * 1.5) + (0.5em * 1.25 * 2) + (2px * 2)) * -1) - 1em - (var(--maxContent) * 0.8 * 0.3 * 0.8 * 0.9 / 500 * 565 / 100 * 65));
	right: 0;
	left: auto;
}

.mapRoad04 .mapRoadImage{
	display: block;
	width: 100%;
}

/*---------------------------------
	contentMap end
---------------------------------*/


/*---------------------------------
	messageLayout start
---------------------------------*/

.messageLayout{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 2em 3em;
	width: 100%;
	margin: 0;
}

.messagePhoto{
	width: calc((100% - 3em) * 0.3);
}

.messagePhoto img{
	display: block;
	width: 100%;
}

.messageText{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 0.5em;
	width: calc((100% - 3em) * 0.7);
	margin: 0;
}

.messageTextItem{
	display: block;
	width: 100%;
	margin: 0;
}

.messageTextItem--name{
	margin: 1rem 0 0;
	display: flex;
	justify-content: flex-end;
	font-size: 125%;
}

@media(max-width: 600px){
	.messageLayout{
		flex-direction: column;
		align-items: center;
	}
	.messagePhoto{
		width: 60%;
	}
	.messageText{
		width: 100%;
	}
}

/*---------------------------------
	messageLayout end
---------------------------------*/

/*---------------------------------
	tickerSlider end
---------------------------------*/

.tickerSlider{
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: flex-start;
	gap: 0;
	width: 100%;
	margin: 0;
	overflow: hidden;
}

.tickerSlider .swiper-wrapper{
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: flex-start;
	gap: 0;
	width: 100%;
}

.tickerSlider .swiper-wrapper{
	transition-timing-function: linear;
}

.tickerSlideItem.swiper-slide{
	width: max(calc(100% / 6),240px);
	position: relative;
}

.tickerSlideItem.swiper-slide:before{
	content: "";
	display: block;
	padding-top: 75%;
}

.tickerSlideImage{
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	z-index: 1;
}

.tickerSlideImage.swiper-slide:before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: #FFF;
	opacity: 0.2;
	z-index: 2;
}

/*---------------------------------
	tickerSlider end
---------------------------------*/

/*---------------------------------
	achievementLayout end
---------------------------------*/

.achievementLayout{
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
	gap: 5em;
	background-color: #FFF;
/*	padding: 2em 3em;*/
}

.achievementMain{
	width: 100%;
}

.achievementColumn{
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: space-between;
	gap: 0 5em;
}

.achievementItem{
	flex-grow: 1;
	flex-shrink: 1;
}

.achievementImage{
	display: block;
	width: 100%;
}

@media(max-width: 600px){
	.achievementLayout{
		gap: 2em;
/*		padding: 1em;*/
	}
	.achievementColumn{
		gap: 0 1em;
	}
}

/*---------------------------------
	achievementLayout end
---------------------------------*/


/*---------------------------------
	faq start
---------------------------------*/

.faq{
	display: flex;
	flex-direction: column;
	gap: 3em;
}

.faqItem{
	padding: 1em;
	background-color: #FFF;
	border: 1px solid #BFBFBF;
	border-radius: 0.5em;
	width: 100%;
}

.faqItem_qaInner{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: nowrap;
}

.faqItem_q{
	cursor: pointer;
}

.faqItem_a{
	border-top: 1px solid #BFBFBF;
	display: none;
}

.faqItem_qaIcon{
	flex-grow: 0;
	flex-shrink: 0;
	font-size: 150%;
	width: 1.5em;
	padding: 0.4em 0.25em;
	text-align: center;
	margin-right: 0.5em;
	font-weight: bold;
}

.faqItem_qTitle{
	flex-grow: 1;
	flex-shrink: 1;
	font-size: 100%;
	padding: 1em;
	margin: 0;
}

.faqItem_aContent{
	flex-grow: 0;
	flex-shrink: 0;
	width: calc(100% - (1.5em * 1.5) - (1.5em * 0.5) );
	font-size: 100%;
	padding: 1em;
	margin: 0;
}

.faqItem_qText{
	font-weight: bold;
}

.faqItem_qArrow{
	flex-grow: 0;
	flex-shrink: 0;
	font-size: 150%;
	width: 1.5em;
	align-self: stretch;
	padding: 0.4em 0.25em;
	position: relative;
}

.faqItem_qArrow:before{
	content: "down";
	font-family: 'LigatureSymbols';
	-webkit-text-rendering: optimizeLegibility;
	-moz-text-rendering: optimizeLegibility;
	-ms-text-rendering: optimizeLegibility;
	-o-text-rendering: optimizeLegibility;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-ms-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
	font-smoothing: antialiased;
	-webkit-font-feature-settings: "liga" 1, "dlig" 1;
	-moz-font-feature-settings: "liga=1, dlig=1";
	-ms-font-feature-settings: "liga" 1, "dlig" 1;
	-o-font-feature-settings: "liga" 1, "dlig" 1;
	font-feature-settings: "liga" 1, "dlig" 1;
	position: absolute;
	top: 0.4em;
	left: 50%;
	transform: translateX(-50%);
	transition: transform 0.5s;
	color: var(--themeColor);
}

.faqItem_q.active .faqItem_qArrow:before{
	transform: translateX(-50%) rotate(180deg);
}

@media(max-width: 750px){
	.faqItem{
		font-size: 85%;
	}
	
	.faqItem_qaIcon{
		margin-right: 0.25em;
	}
	
	.faqItem_qTitle,
	.faqItem_aContent{
		padding: 1em 0.25em;
	}
}

.faqItem_aText{
	margin-bottom: 1.5em;
}
/*---------------------------------
	faq end
---------------------------------*/
