/*---------------------------------
	mainvisual start
---------------------------------*/
.mainvisual{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5em;
	width: 100%;
	padding: 2em 0;
}

.mainvisual_bg{
	align-self: flex-end;
	position: relative;
	width: min(90%,calc((100% - 1250px) / 2 + 1050px));
	height: clamp(200px, 30vw, 400px);
	overflow: hidden;
}

.mainvisual_bg .swiper-container{
	height: 100%;
}

.mainvisualSlideImage{
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@keyframes mainvisualSliderZoomup {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.2);
	}
}

.mainvisual_bg .swiper-slide-active .mainvisualSlideImage,
.mainvisual_bg .swiper-slide-duplicate-active .mainvisualSlideImage,
.mainvisual_bg .swiper-slide-prev .mainvisualSlideImage{
/*	animation: mainvisualSliderZoomup 20s linear 0s 1 normal both; */
}

.mainvisual_catch{
	position: relative;
	width: min(90%,1250px);
	padding-top: 2em;
}

.mainvisual_catch:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 3em;
	border-top: 3px solid var(--c-hex-accent);
}

.mainvisual_catchTexts p{
	font-size: min(225%,6.75vw);
	font-weight: bold;
	letter-spacing: var(--f-letterSpacing-catch);
	margin: 0;
	line-heght: 1.25;
}

@media(max-width: 600px){
	.mainvisual_catchTexts p{
		font-size: min(200%,6vw);
	}
}

/*---------------------------------
	mainvisual end
---------------------------------*/

/*---------------------------------
	photoTiles start
---------------------------------*/
.photoTiles{
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	flex-wrap: wrap;
}

@media(min-width: 1025px){
	.photoTiles_item{
		width: calc(100% / 3);
	}
}

@media(max-width: 1024px) and (min-width: 601px){
	.photoTiles_item{
		width: 100%;
	}
}

@media(max-width: 600px){
	.photoTiles_item{
		width: 100%;
	}
}


.photoTiles_link:hover{
	text-decoration: none;
}

.photoTiles_inner{
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 5em 2em;
	overflow: hidden;
}

.photoTiles_bg{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.25s;
	filter: brightness(0.7);
}

.photoTiles_link:hover .photoTiles_bg{
	transform: scale(1.1);
}

.photoTiles_title{
	position: relative;
	z-index: 20;
	font-size: 175%;
	color: #FFF;
	text-align: center;
	font-weight: bold;
	text-shadow: 1px 1px 3px #000;
}

.photoTiles_button{
	position: relative;
	z-index: 20;
	display: block;
	max-width: 100%;
	min-width: 13em;
	padding: 0.75em 1.5em;
	margin: 0;
	color: #FFF;
	text-align: center;
	font-weight: bold;
	font-size: 110%;
	text-decoration: none;
	background-color: var(--c-hex-accent);
	border:  2px solid var(--c-hex-accent);
	border-radius: 5px;
	outline: none !important;
	transition: background-color 0.25s, color 0.25s;
}

.photoTiles_link:hover .photoTiles_button{
	color: var(--c-hex-accent);
	text-decoration: none;
	background-color: #FFF;
}

/*---------------------------------
	photoTiles end
---------------------------------*/

/*---------------------------------
	topGmapBand start
---------------------------------*/
.topGmapBand{
	position: relative;
	width: 100%;
	padding-top: 400px;
}

.topGmapBand iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	
}

/*---------------------------------
	topGmapBand start
---------------------------------*/

/*---------------------------------
	points start
---------------------------------*/
.points_item{
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 3em 0 5em;
}

.points_item:nth-of-type(2n){
	background-color: var(--bg-hex-theme);
}

@media(min-width: 1025px){
	.points_photoLayout{
		position: absolute;
		top: 3em;
		right: 0;
		width: calc(((100vw - 1150px) / 2) + (1150px * 0.4) - 2em);
	}
	
	.points_item:nth-of-type(2n) .points_photoLayout{
		right: auto;
		left: 0;
	}
}

@media(max-width: 1024px){
	.points_photoLayout{
		width: 90%;
		max-width: 600px;
		margin-bottom: 3em;
	}
}

.points_photoWrapper{
	position: relative;
	width: 100%;
	padding-top: 420px;
}

@media(max-width: 1024px){
	.points_photoWrapper{
		padding-top: calc(100% / 5 * 3);
	}
}

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

@media(min-width: 1025px){
	.points_contentLayout{
		display: flex;
		align-items: flex-start;
		justify-content: flex-start;
		width: 90%;
		max-width: 1150px;
		min-height: 420px;
		margin: 0 auto;
	}

	.points_item:nth-of-type(2n) .points_contentLayout{
		justify-content: flex-end;
	}
	
	.points_contentInner{
		width: calc(60% - 2em);
	}
}

@media(max-width: 1024px){
	.points_contentLayout{
		width: 90%;
		margin: 0 auto;
	}
}

.pointsTitle{
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: nowrap;
	margin-bottom: 3em;
}

.pointsTitle_num{
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.5em;
	height: 1.5em;
	font-size: 250%;
	color: #FFF;
	background-color: var(--c-hex-accent);
	border-radius: 5px;
}

.pointsTitle_text{
	margin: 0.5em 0 0.5em 0.5em;
	font-size: 150%;
	font-weight: bold;
}

/*---------------------------------
	points end
---------------------------------*/

/*---------------------------------
	menuDetails start
---------------------------------*/
.menuDetails_item{
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 3em 0 5em;
}

.menuDetails_item:nth-of-type(2n){
	background-color: var(--bg-hex-theme);
}

@media(min-width: 1025px){
	.menuDetails_photoLayout{
		position: absolute;
		top: 3em;
		right: 0;
		width: calc(((100vw - 1150px) / 2) + (1150px * 0.4) - 2em);
	}
	
	.menuDetails_item:nth-of-type(2n) .menuDetails_photoLayout{
		right: auto;
		left: 0;
	}
}

@media(max-width: 1024px){
	.menuDetails_photoLayout{
		width: 90%;
		max-width: 600px;
		margin-bottom: 3em;
	}
}

.menuDetails_photoWrapper{
	position: relative;
	width: 100%;
	padding-top: 420px;
}

@media(max-width: 1024px){
	.menuDetails_photoWrapper{
		padding-top: calc(100% / 5 * 3);
	}
}

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

@media(min-width: 1025px){
	.menuDetails_contentLayout{
		display: flex;
		align-items: flex-start;
		justify-content: flex-start;
		width: 90%;
		max-width: 1150px;
		min-height: 420px;
		margin: 0 auto;
		padding-top: 2em;
	}

	.menuDetails_item:nth-of-type(2n) .menuDetails_contentLayout{
		justify-content: flex-end;
	}
	
	.menuDetails_contentInner{
		width: calc(60% - 2em);
	}
}

@media(max-width: 1024px){
	.menuDetails_contentLayout{
		width: 90%;
		margin: 0 auto;
	}
}

/*---------------------------------
	menuDetails end
---------------------------------*/

/*---------------------------------
	voices start
---------------------------------*/
.voices{
	padding: 2.5em 5%;
	background-color: var(--bg-hex-theme);
}

.voices_item{
	margin-bottom: 2em;
}
.voices_inner{
	height: 100%;
	padding: 1.5em;
	background-color: #FFF;
}

.voices_head{
	font-size: 150%;
}

/*---------------------------------
	voices end
---------------------------------*/

/*---------------------------------
	blog start
---------------------------------*/
.blogLayout{
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: space-between;
}

@media(max-width: 1024px){
	.blogLayout{
		flex-direction: column;
	}
}

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

@media(max-width: 1024px){
	.blogLayout_articles{
		width: 100%;
		margin-bottom: 5em;
	}
}

.blogLayout_sidebar{
	flex-grow: 0;
	flex-shrink: 0;
	width: 25%;
	margin-left: 10%;
}

@media(max-width: 1024px){
	.blogLayout_sidebar{
		width: 100%;
		margin-left: 0;
	}
}

.blogArticlesItem{
	padding: 0;
	margin-bottom: 3em;
	padding-bottom: 5em;
	border-bottom: 1px solid #CCC;
}

.blogArticlesItem_info{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: nowrap;
	margin-bottom: 2em;
}

.blogArticlesItem_cate{
	flex-grow: 0;
	flex-shrink: 1;
	min-width: 6em;
	margin-right: 0;
	font-size: 90%;
	text-align: center;
	color: #333;
	text-decoration: none;
}

.blogArticlesItem_cate a,
.blogArticlesItem_cate a:hover{
	display: block;
	padding: 0.125em 0.5em;
	color: inherit;
	text-decoration: inherit;
}

.blogArticlesItem_date{
	flex-grow: 0;
	flex-shrink: 1;
}

.blogArticlesItem_body{
	margin: 0 0 2em;
}

.blogArticlesItem_body img{
	max-width: 100%;
}

.blogArticlesItemTitle{
	margin-bottom: 0.75em;
	padding: 0 0 0.25em;
	font-size: 150%;
	color: #333;
	border-bottom: 2px solid #919090;
	display: block;
	width: 100%;
}

.blogArticlesItemTitle_link,
.blogArticlesItemTitle_link:hover{
	color: inherit;
}

.blogArticlesItemTitle_link{
	text-decoration: none;
}

.blogArticlesItemTitle_link:hover{
	text-decoration: underline;
}

.blogWidgets{
	display: flex;
}

@media(min-width: 1025px){
	.blogWidgets{
		flex-direction: column;
	}
}

@media(max-width: 1024px){
	.blogWidgets{
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
		flex-wrap: wrap;
	}
}

.blogWidgetsItem{
	margin-bottom: 2em;
}

@media(max-width: 1024px) and (min-width: 601px){
	.blogWidgetsItem{
		width: calc(100% / 2 - 1em);
	}
}

@media(max-width: 600px){
	.blogWidgetsItem{
		width: 100%;
	}
}

.blogWidgetsItem_content{
	padding: 0.5em;
}

.blogWidgetsItemListWrapper ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.blogWidgetsItemListWrapper li{
	position: relative;
	padding: 0.25em 0.25em 0.25em calc(0.25em + 1em);
}

.blogWidgetsItemListWrapper li:before{
	content: "●";
	position: absolute;
	top: 0.25em;
	left: 0;
	color: var(--c-hex-accent);
}

.blogWidgetsItemListWrapper li a,
.blogWidgetsItemListWrapper li a:hover{
	color: inherit;
}

.blogWidgetsItemTitle{
	padding: 0.25em 0.25em 0.5em;
	margin-bottom: 0.5em;
	font-size: 125%;
	font-weight: bold;
	border-bottom: 2px solid #919090;
}

.blogRssLinkWrapper{
	text-align: left;
}

.blogRssLinkWrapper img{
	display: inline-block;
	width: auto;
	margin: 0 0.1em 0 0;
}

.blogRssLinkWrapper a,
.blogRssLinkWrapper a:hover{
	color: inherit;
}

/*---------------------------------
	blog end
---------------------------------*/

/*---------------------------------
	searchBox start
---------------------------------*/
.searchBox{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
}

.searchBox_textBox{
	flex-grow: 1;
	flex-shrink: 1;
	width: 100%;
	margin-right: 0.5em;
	padding: 0.25em 0.5em;
	font-size: 90%;
	background: #FFF;
	border: 1px solid #CCC;
	outline: none;
}

.searchBox_textBox::placeholder{
	color: inherit;
	opacity: 0.35;
}

.searchBox_textBox:-ms-input-placeholder {
	color: rgba(0,0,0,0.35);
}

.searchBox_textBox::-ms-input-placeholder {
	color: rgba(0,0,0,0.35);
}

.searchBox_submitButton{
	width: 5em;
	padding: 0.25em 0.5em;
	color: #FFF;
	font-size: 90%;
	font-weight: normal;
	text-align: center;
	background-color: var(--c-hex-accent);
	border: 2px solid var(--c-hex-accent);
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	box-sizing: border-box;
	cursor: pointer;
	outline: none;
	transition: color 0.25s, background-color 0.25s;
}

.searchBox_submitButton,
.searchBox_submitButton:hover{
	color: #FFF;
}

.searchBox_submitButton:hover{
	color: var(--c-hex-accent);
	background-color: #FFF;
}

.searchBox_submitButton input::-webkit-search-decoration{
	display: none;
}

.searchBox_submitButton input::focus{
	outline-offset: -2px;
}

/*---------------------------------
	searchBox end
---------------------------------*/

/*---------------------------------
	pager start
---------------------------------*/
.pager{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
	padding: 0;
	margin: 0;
}

.pager > *{
	margin: 0 0.5em 0.5em;
	padding: 0.25em 0.5em;
	color: var(--c-hex-accent);
	text-align: center;
	background-color: #FFF;
	border: 2px solid var(--c-hex-accent);
	outline: none;
	transition: color 0.25s, background-color 0.25s;
}

.pager > a,
.pager > a:hover{
	color: var(--c-hex-accent);
	text-decoration: none;
}

.pager > a:hover,
.pager > span{
	color: #FFF;
	background-color: var(--c-hex-accent);
}

/*---------------------------------
	pager end
---------------------------------*/


/*---------------------------------
	newsPickup start
---------------------------------*/
.newsPickup_link,
.newsPickup_link:hover{
	color: inherit;
	text-decoration: none;
}

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

.newsPickup_image{
	position: relative;
	width: 100%;
	margin-bottom: 0.5em;
	padding-top: calc(100% / 4 * 3);
	overflow: hidden;
}

.newsPickup_image img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.25s;
}

.newsPickup_link:hover .newsPickup_image img{
	transform: scale(1.1);
}

.newsPickup_date{
	width: 4em;
	margin-bottom: 0.5em;
	padding: 0 0.5em;
	color: var(--c-hex-accent);
	font-size: 110%;
}

.newsPickup_cate{
	max-width: calc(100% - 5em);
	margin-bottom: 0.5em;
	padding: 0 0.5em;
	color: var(--c-hex-accent);
	font-size: 110%;
}

.newsPickup_title{
	width: 100%;
	padding: 0 0.5em;
	font-size: 110%;
}
/*---------------------------------
	newsPickup end
---------------------------------*/

/*---------------------------------
	basicTable--information start
---------------------------------*/
.basicTable--information th{
	width: 30%;
}

/*---------------------------------
	basicTable--information end
---------------------------------*/

/*---------------------------------
	profileHead start
---------------------------------*/
.profileHead{
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: nowrap;
	gap: 3em;
}

.profileHead_photo{
	width: clamp(8em, 25%, 15em);
	max-width: 158px;
	aspect-ratio: 3/4;
	border-radius: 10px;
	overflow: hidden;
}

.profileHead_photo img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.profileHead_content{
	padding-top: 1em;
}

.profileHead_name{
	font-size: 125%;
	font-weight: bold;
}

.profileHead_nameSub{
	font-size: 80%;
}

/*---------------------------------
	profileHead end
---------------------------------*/


/*---------------------------------
	flow start
---------------------------------*/

.flowBlockWrapper{
	display: block;
	width: 100%;
	margin: 0 auto 5rem;
}

.flowBlockWrapper:last-of-type{
	margin-bottom: 0;
}

.flowBlockTitle{
	display: flex;
	justify-content: center;
	margin: 0 auto 2rem;
}

.flowBlockTitleItem{
	display: block;
	padding: 0 0 calc(0.5em + 4px);
	position: relative;
}

.flowBlockTitleItem:after{
	content: "";
	display: block;
	width: 3em;
	border-bottom: 4px solid var(--themeColor_light);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.flowBlockTitle span{
	font-size: 125%;
}

.flowBlock{
	display: block;
	margin-inline: auto;
	max-width: 960px;
}

.flowBlockItem{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	margin: 0 auto 1.5em;
}

.flowBlockItem:last-of-type{
	margin-bottom: 0;
}

.flowBlockItem_left{
	width: 5em;
	position: relative;
	z-index: 2;
}

.flowBlockItem_no{
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #888;
	width: 100%;
	height: 5em;
}

.flowBlockItem_no--sub{
	color: #FFF;
	font-size: 112.5%;
	line-height: 1;
}

.flowBlockItem_no--main{
	color: #FFF;
	font-weight: var(--fontWeightBold);
	font-size: 175%;
	line-height: 1;
}

.flowBlockItem_arrow{
	display: block;
	width: 1.75em;
	margin: 0.5em auto 0;
}

.flowBlockItem_right{
	display: block;
	width: calc(100% - 5em - 1em);
	margin: 1em 0 0;
	padding: 1.25em 2em 1.5em 1em;
	position: relative;
	z-index: 1;
}

.flowBlockItem_right:before{
	content: "";
	display: block;
	width: calc(100% + 2em);
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	background-color:var(--bg-hex-theme);
}

.flowBlockItem_text{
	display: block;
	width: 100%;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.flowBlockItem_title{
	font-size: 112.5%;
	font-weight:var(--textsfont-weightBold);
	display: block;
	width: 100%;
	margin: 0 auto 0.5em;
}


@media(max-width: 750px){

	.flowBlock{
		width: 100%;
	}

	.flowBlockItem_left{
		width: 20%;
	}

	.flowBlockItem_no--sub{
		font-size: 100%;
	}

	.flowBlockItem_no--main{
		font-size: 150%;
	}

	.flowBlockItem_arrow{
		width: 1.75em;
		margin: 1em auto 0;
	}

	.flowBlockItem_right{
		width: 80%;
		padding: 1.25em 2em 1.5em 1.5em;
	}

	.flowBlockItem_right:before{
		width: calc(100% + 3.5em);
	}

}

/*---------------------------------
	flow end
---------------------------------*/

/*---------------------------------
	contactTel start
---------------------------------*/
.contactTel{
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding-left: 1em;
	gap: 2em 5em;
}

.contactTelLink[href]{
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 250%;
	color: inherit;
	text-align: center;
	line-height: 1;
}

.contactTelLink[href]:before{
	content: "phone";
	font-size: 125%;
	margin-right: 0.25em;
	font-family: 'LigatureSymbols' !important;
	-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;
	line-height: 1;
}

@media(max-width: 600px){
	.contactTelLink[href]{
		font-size: 200%;
	}
}

/*---------------------------------
	contactTel end
---------------------------------*/

