/*---------------------------------
	body start
---------------------------------*/
body{
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

body > *{
	flex-grow: 0;
	flex-shrink: 0;
}

body > main{
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}


@media(max-width: 960px){
	body.is-drawerNavActive{
		overflow-y: hidden;
	}
}

body > main > section{
	flex-grow: 1;
}

/*---------------------------------
	body end
---------------------------------*/

/*---------------------------------
	header start
---------------------------------*/
.header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #000;
	background-color: #FFF;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
	z-index: 200;
	transition: all 0.25s;
}

@media(max-width: 1100px) and (min-width: 961px){
	.header{
		font-size: 85%;
	}
}

@media(max-width: 540px){
	.header{
		font-size: 80%;
	}
}

body:not(.is-drawerNavActive) .header--aboveSlider:not(.is-active){
	background-color: transparent;
	color: #FFF;
	text-shadow: 1px 1px 0.125em #000, 1px 1px 0.125em #000;
	box-shadow: none;	
}

@media(max-width: 750px){
	body:not(.is-drawerNavActive) .header--aboveSlider:not(.is-active){
		text-shadow: 
			1px 1px 0.25em #000,
			1px 1px 0.25em #000,
			1px 1px 0.25em #000
			;
	}
}

body:not(.is-drawerNavActive) .header--aboveSlider:not(.is-active):hover{
	background-color: #FFF;
	color: var(--mainTextColor);
	text-shadow: none;
	box-shadow: none;
}

body{
	margin-top: 80px;
}

@media(max-width: 1100px) and (min-width: 961px){
	body{
		margin-top: calc(80px * 0.85);
	}
}

@media(max-width: 540px){
	body{
		margin-top: calc(80px * 0.8);
	}
}

.header_inner{
	width: 90%;
	height: 100%;
	margin: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.headerLogo{
	font-size: 200%;
	font-weight: normal;
	margin: 0;
	padding: 0.5em 0 0.75em;
}

@media(max-width: 540px){
	.headerLogo{
		font-size: 150%;
	}
}

.headerLogo_link,
.headerLogo_link:hover{
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	gap: 0.5em;
	color: inherit;
	text-decoration: none;
}

.headerLogoImage{
	display: block;
	margin: 0;
}

.headerLogoImage img{
	display: block;
	height: 1.5em;
	margin: 0;
}

.headerLogoText{
	display: block;
	margin: 0;
}

.headerNavList{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: stretch;
	align-self: stretch;
	justify-content: space-between;
	flex-wrap: nowrap;
	gap: 2em;
}

@media(max-width: 1180px){
	.headerNavList{
		gap: 1em;
	}
}

.headerNavListItem{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 112.5%;
}

.headerNavListItem_link,
.headerNavListItem_link:hover{
	color: inherit;
	text-decoration: none;
}

.headerNavListItem_link{
	padding: 0.25em  0;
	border-top: 2px solid transparent;
	border-bottom: 2px solid transparent;
	transition: border 0.25s;
}

.headerNavListItem_link:hover,
.headerNavListItem--active .headerNavListItem_link{
	border-bottom: 2px solid var(--themeColor);
}

@media(max-width: 960px){
	.headerNavList{
		display: none;
	}
}

.headerNavSubMenu{
	width: 100svw;
	transform: translate(0,0);
	background-color: #EFEFEF;
	position: absolute;
	bottom: 1px;
	left: 0;
	padding: calc(2em + 1px) 5svw 2em;
	transition: transform 1s, opacity 0.5s;
	transform-origin: 0 0;
	opacity: 0;
	pointer-events: none;
}

.header--aboveSlider:not(.is-active) .headerNavSubMenu{
	background-color: rgba(255,255,255,0.8);
}

.headerNavSublist{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 1.5em 3em;
	width: 100%;
	list-style: none;
	
	&.headerNavSublist--lang{
		justify-content: flex-end;
	}
}

.headerNavSubLink{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	color: inherit;
	padding: 0 0 0.25em;
	border-bottom: 2px solid transparent;
	text-decoration: none;
	transition: border 0.25s;
}

.headerNavSubLink:hover,
.headerNavSubLink--active{
	color: inherit;
	border-bottom: 2px solid var(--themeColor);
	text-decoration: none;
	cursor: pointer;
}

.headerNavSubLink--facility{
	font-size: 75%;
}

.headerNavSublistWrapper:hover .headerNavSubMenu{
	transform: translate(0,100%);
	opacity: 1;
	pointer-events: auto;
}

.headerButtons{
	align-self: stretch;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: nowrap;
}

@media(min-width: 961px){
	.headerButtons{
		display: none;
	}
}

.headerButtonsItem{
	display: flex;
	width: 5em;
	height: 5em;
	align-items: center;
	justify-content: center;
}

.headerButtonsNav{
	cursor: pointer;
}

.headerButtonsNav_text{
	line-height: 150%;
	font-size: 125%;
	margin: 1em;
}

.headerButtonsNav_icon{
	font-size: 200%;
	width: 1.5em;
	height: 1.5em;
	position: relative;
}

.headerButtonsNav_iconOpen{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 1.5em;
	height: 0.75em;
	border-top: 3px solid #000;
	border-bottom: 3px solid #000;
	transition: all 0.5s;
}

.headerButtonsNav_iconOpen:before{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 3px;
	background-color: #000;
}

body.is-drawerNavActive .headerButtonsNav_iconOpen{
	visibility: hidden;
	opacity: 0;
}

.headerButtonsNav_iconClose{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	transition: all 0.5s;
}

body:not(.is-drawerNavActive) .headerButtonsNav_iconClose{
	visibility: hidden;
	opacity: 0;
}

.headerButtonsNav_iconClose:before,
.headerButtonsNav_iconClose:after{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 1.5em;
	height: 3px;
	background-color: #000;
}

.headerButtonsNav_iconClose:before{
	transform: translate(-50%,-50%) rotate(45deg);
}

.headerButtonsNav_iconClose:after{
	transform: translate(-50%,-50%) rotate(-45deg);
}

/*---------------------------------
	header end
---------------------------------*/

/*---------------------------------
	nav start
---------------------------------*/
.navMain{
	display: none;
	position: fixed;
	z-index: 150;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	visibility: hidden;
	opacity: 0;
	overflow-y: scroll;
	overflow-x: hidden;
	background: rgba(0,0,0,0.75);
	color: #FFF;
	padding: 80px 0 0;
	transition: all 0.25s ease;
}

@media(max-width: 960px){
	.navMain{
		display: block;
	}
}

.is-drawerNavActive .navMain{
	visibility: visible;
	opacity: 1;
	transition: all 0.5s ease;
}

.navMain_inner{
	max-width: 1180px;
	width: 90%;
	margin: 0 auto;
	padding: 100px 0;
}

.navMainInfo{
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 0 100px;
}

.navMainInfo_tel{
	text-align: center;
}

.navMainInfo_telNo{
	font-size: 200%;
}

.navMainInfo_telNo,
.navMainInfo_telNo a{
	color: inherit;
}

.navMainLinklist{
	margin: 0 0 4em;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	font-size: 150%;
}

.navMainLinklist_item{
	flex-grow: 0;
	flex-shrink: 0;
	width: calc(100% / 3 - 2em);
	margin: 0 0 1em;
}

@media(max-width: 1150px){
	.navMainLinklist_item{
		width: calc(100% / 2 - 2em);
	}
}

@media(max-width: 750px){
	.navMainLinklist_item{
		width: 100%;
	}
}

.navMainLinklist_link,
.navMainLinklist_link:hover{
	color: inherit;
	text-decoration: none;
}

.navMainLinklist_link{
	display: block;
	padding: 0.5em 0 0.5em 0.5em;
	border-bottom: 2px solid #FFF;
}

.navMainSublinklist{
	margin: 0 0 4em;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 1em;
}

.navMainSublinklist_item{
	width: 100%;
}

.navMainSublinklist_link,
.navMainSublinklist_link:hover{
	color: inherit;
	display: block;
	width: 100%;
	color: #333;
	background-color: #FFF;
	padding: 1em;
}

.navMainSublinklist_link:hover{
	cursor: pointer;
	text-decoration: underline;
}

@media(max-width: 750px){
	.navMain{
		font-size: 0.7em;
	}
	
	.navMain_inner{
		padding: 2.5em 0;
	}
	
	.navMainInfo{
		margin: 0 0 2.5em;
	}
	
	.navMainLinklist{
		margin: 0 0 1em;
	}
	
	.navMainLinklist_item{
		margin: 0 0 0.5em;
	}
	
	.navMainLinklist_link{
		padding: 0.25em 0 0.25em 0.25em;
	}
	
	.nav-sublinklist{
		font-size: 100%;
	}
}


/*---------------------------------
	nav end
---------------------------------*/

/*---------------------------------
	footer start
---------------------------------*/
.footer{
	background-color: #BFBFBF;
	color: #FFF;
}

@media(max-width: 750px){
	.footer{
		font-size: 80%;
	}
}

.footer_inner{
	max-width: 1180px;
	width: 90%;
	margin: 3.5em auto 2.5em;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 0 3em;
}

.footer_logo{
	flex-grow: 0;
	flex-shrink: 0;
	font-size: 150%;
	font-weight: normal;
}

.footer_info{
	flex-grow: 0;
	flex-shrink: 0;
}

.footer_info a{
	color: inherit;
}

.footer_button{
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0 max(calc(3em / 2),calc(29px / 2));
	flex-grow: 1;
	flex-shrink: 0;
}

.footer_contact{
	display: block;
	font-size: inherit;
	padding: 0.75em 2em;
	color: #FFF;
	border: 2px solid #FFF;
	text-align: center;
	background-color: transparent;
	transition: all 0.25s;
}

.footer_contact:hover{
	color: #333;
	background-color: #FFF;
	text-decoration: none;
}

.footer_insta{
	display: block;
	font-size: inherit;
	padding: 0;
	transition: all 0.25s;
}

.footer_insta img{
	display: block;
	width: auto;
	height: max(3em,29px);
	transition: opacity 0.25s;
}

.footer_insta:hover img{
	opacity: 0.8;
}

.footerLinklist{
	flex-grow: 0;
	flex-shrink: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.footerLinklistItem{
	margin: 0.25em 2em 0.25em 0;
}

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

.footer_copy{
	text-align: center;
	margin: 0;
	padding: 0.75em 1em;
}

/*---------------------------------
	footer end
---------------------------------*/

/*---------------------------------
	section start
---------------------------------*/
.section{
	padding: 4em 0 6em;
	background-color: #FFF;
	position: relative;
}

.section:nth-of-type(even){
	background-color: #FAFAFA;
}

.section:nth-of-type(odd):not(:last-child):before{
	content: "";
	display: block;
	width: 50%;
	height: 1em;
	background-color: #FAFAFA;
	clip-path: polygon(100% 0, 100% 100%, 0 100%);
	position: absolute;
	right: 0;
	bottom: 0;
}

.section:nth-of-type(odd):not(:first-child):after{
	content: "";
	display: block;
	width: 50%;
	height: 1em;
	background-color: #FAFAFA;
	clip-path: polygon(0 0, 100% 0, 100% 100%);
	position: absolute;
	top: 0;
	right: 0;
}

.section:nth-of-type(even):before{
	content: "";
	display: block;
	width: 50%;
	height: 1em;
	background-color: #FFF;
	clip-path: polygon(0 0, 100% 0, 0 100%);
	position: absolute;
	top: 0;
	left: 0;
}

.section:nth-of-type(even):not(:last-child):after{
	content: "";
	display: block;
	width: 50%;
	height: 1em;
	background-color: #FFF;
	clip-path: polygon(0 100%, 100% 100%, 0 0);
	position: absolute;
	bottom: 0;
	left: 0;
}

.section_inner{
	max-width: 900px;
	width: 90%;
	margin: 0 auto;
}

.section_inner900{
	max-width: 900px;
}

@media(max-width: 750px){
	.section{
		padding: 50px 0 50px;
	}
}

/*---------------------------------
	section end
---------------------------------*/