/*---------------------------------
	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: sticky;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;;
	align-items: stretch;
	background-color: #FFF;
	z-index: 200;
}

.header_inner{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.headerLogo{
	position: relative;
	display: flex;
	font-size: 200%;
	font-weight: normal;
	margin: 0 0.5em 0 0;
	width: 7em;
	max-width: 70%;
	position: relative;
}

.headerLogo_link,
.headerLogo_link:hover{
	display: flex;
	width: 100%;
	color: inherit;
	text-decoration: none;
}

.headerLogo_inner{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	background-color: var(--mainColor01_hex);
	color: #FFF;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
	padding: 0.25em;
	z-index: 201;
}

.headerLogo_text{
	margin: 0;
}

.headerLogo_text--sub{
	display: block;
	margin: 0;
	font-size: 60%;
	line-height: 1.2;
}

.headerLogo_text--main{
	display: block;
	margin: 0;
	font-size: 100%;
	line-height: 1.2;
}

.headerNav{
	flex-grow: 1;
	padding: 1em 0;
	margin: 0 2em;
	align-self: center;
}

@media(max-width: 1024px){
	.headerNav{
		display: none;
	}
}


@media(max-width: 600px){

	.header{
		position: static;
	}

	.headerLogo{
		font-size: 175%;
	}

	.headerLogo_inner{
		padding: 0.3em 0.2em;
	}

}

.headerNavList{
	padding: 0;
	margin: 0 auto;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	max-width: 70em;
}

.headerNavListItem{
	margin: 0.25em 0.5em;
}

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

.headerNavListItem_link{
	transition: opacity 0.25s;
}

.headerNavListItem.headerNavListItem--active .headerNavListItem_link{
	border-bottom: 2px solid var(--mainColor01_hex);
	color: var(--mainColor01_hex);
}

.headerNavListItem_link:hover{
	opacity: 0.5;
}

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

.headerContactButton,
.headerContactButton:hover{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 5em;
	height: 100%;
	min-height: 5em;
	background-color: var(--mainColor01_hex);
	color: #FFF;
	text-align: center;
	text-decoration: none;
	transition: opacity 0.25s;
}

.headerContactButton:hover{
	opacity: 0.5;
}

@media(max-width: 600px){
	.headerContactButton{
		display: none;
	}
}

.headerContactButton_icon{
	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;
	font-size: 200%;
	line-height: 100%;
}

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

@media(min-width: 1025px){
	.headerDrawernavButton{
		display: none;
	}
}

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

.headerDrawernavButton_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;
}

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

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

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

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

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

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

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

@media(max-width: 600px){

	.headerDrawernavButton{
		width: 3em;
		height: 100%;
	}

	.headerDrawernavButton_iconOpen{
		width: calc(1.5em / 5 * 3);
	}

	.headerDrawernavButton_iconClose:before,
	.headerDrawernavButton_iconClose:after{
		width: calc(1.5em / 5 * 3);
	}

}


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

/*---------------------------------
	drawerNav start
---------------------------------*/
.drawerNav{
	display: block;
	position: fixed;
	z-index: 120;
	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: 12em 0 0;
	transform: translate(0, 10px);
	transition: all 0.25s ease;
}

@media(max-width: 1024px){
	.is-drawerNavActive .drawerNav{
		visibility: visible;
		opacity: 1;
		transform: translate(0, 0);
		transition: all 0.5s ease;
	}
}

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

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

.drawerNavTel{
	text-align: center;
}

.drawerNavTel_no{
	font-size: 200%;
}

.drawerNavLinklist{
	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%;
}

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

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

@media(max-width: 1024px){
	.drawerNavLinklist_item{
		width: 100%;
	}
}

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

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

.drawerNav_sublinklist{
	margin: 0 0 4em;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
	font-size: 75%;
}

.drawerNav_sublinklist-item{
	flex-grow: 0;
	flex-shrink: 0;
	margin: 0.5em 2em;
}

.drawerNav_sublinklist-link,
.drawerNav_sublinklist-link:hover{
	color: inherit;
}

@media(max-width: 1024px){

	.drawerNav{
		font-size: 0.7em;
	}
	
	.drawerNav_inner{
		padding: 2.5em 0;
	}
	
	
	.drawerNavInfo{
		margin: 0 0 2.5em;
	}
	
	.drawerNavLinklist{
		margin: 0 0 1em;
	}
	
	.drawerNavLinklist_item{
		margin: 0 0 0.5em;
	}
	
	.drawerNavLinklist_link{
		padding: 0.25em 0 0.25em 0.25em;
	}
	
	.drawerNav_sublinklist{
		font-size: 100%;
	}
}

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

/*---------------------------------
	footer start
---------------------------------*/
.footer{
	background-color: var(--mainColor01_hex);
	color: #FFF;
}

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

.footer_inner{
	max-width: 1180px;
	width: 90%;
	margin: 50px auto 25px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}

.footer_logo{
	flex-grow: 0;
	flex-shrink: 0;
	font-size: 200%;
	font-weight: normal;
	margin-right: 50px;
	margin-bottom: 25px;
	max-width: 100%;
}

.footer_info{
	flex-grow: 0;
	flex-shrink: 0;
	margin-bottom: 1em;
	margin-right: 5em;
	max-width: 100%;
}

.footer_contactWrapper{
	display: flex;
	align-items: center;
	font-size: inherit;
	margin: 0 0 2em 0;
}

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

.footer_contact:hover{
	color: var(--mainColor01_hex);
	background-color: #FFF;
	text-decoration: none;
}

.footer_instagram{
	display: block;
	margin: 0 0 0  calc(((1em * 1.5) + (0.75em * 2)) / 2);
	transition: opacity 0.5s;
}

.footer_instagram:hover{
	opacity: 0.7;
}

.footer_instagram img{
	display: block;
	height: calc((1em * 1.5) + (0.75em * 2));
}

.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:lasr-of-type{
	margin-right: 0;
}

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

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

@media(max-width: 1024px){

	.footer_info a{
		color: inherit;
		text-decoration: underline;
	}

}

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

/*---------------------------------
	section start
---------------------------------*/
.section{
	padding: 50px 0 100px;
	background-color: #FFF;
}

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

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

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

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