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

body.is-drawerNavActive{
	overflow-y: hidden;
}

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

body > main{
	flex-grow: 1;
	width: 100%;
	overflow: hidden;
}

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

/*---------------------------------
	header start
---------------------------------*/
.header{
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: var(--headerBgColor);
	z-index: 200;
}

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

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

.headerLogo_link,
.headerLogo_link:hover{
	display: block;
	color: inherit;
}

.headerLogo_inner{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: var(--headerLogoBgColor);
	color: #FFF;
	padding: 0 0.25em;
	z-index: 201;
}

.headerLogo_text{
	margin: 0;
}

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

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

.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 #000;
}

.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(--headerButtonBgColor);
	color: var(--headerButtonTextColor);
	text-align: cetner;
	text-decoration: none;
	transition: opacity 0.25s;
}

.headerContactButton:hover{
	opacity: 0.5;
}

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

.headerContactButton_icon{
	margin-bottom: -0.25em;
}

.headerContactButton_icon:before{
	content: "mail";
	font-family: "Material Symbols Outlined";
	font-variation-settings:'FILL' 1,'wght' 400,'GRAD' 0,'opsz' 48;
	font-size: 200%;
	line-height: 100%;
	font-weight: 400;
}

.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 var(--headerTextColor);
	border-bottom: 3px solid var(--headerTextColor);
	transition: all 0.5s;
}

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

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: var(--headerTextColor);
}

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

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

/*---------------------------------
	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: var(--headerMenuBgColor);
	color: var(--headerMenuTextColor);
	padding: 7em 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 var(--headerMenuTextColor);
}

@media(max-width: 1024px){
	.drawerNav{
		font-size: 0.7em;
	}
	
	.drawerNav_inner{
		padding: 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 end
---------------------------------*/

/*---------------------------------
	subpageTitle start
---------------------------------*/
.subpageTitle{
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 1.5em 0;
	text-align: center;
	font-weight: var(--fontWeightBold);
	background-image: url("../../images/common/subpageTitle/bg.jpg");
	background-size: cover;
	background-position: center;
}

.subpageTitle_inner{
	width: 90%;
	max-width: 500px;
	padding: 1em 1em;
	background-color: rgba(255,255,255,0.8);
	min-height: 90px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

@media(width > 600px){
	.subpageTitle_inner{
		min-height: 123.75px;
	}
}

.subpageTitle_mainText{
	font-size: 200%;
	color: #000;
	margin: 0;
}

.subpageTitle_subText{
	font-size: 125%;
	color: #333;
	margin: 0;
}

/*---------------------------------
	subpageTitle end
---------------------------------*/

/*---------------------------------
	footer start
---------------------------------*/
.footer{
	color: var(--footerTextColor);
	font-size: 100%;
	padding: 1em 0 0;
	background-color: var(--footerBgColor);
}

.footerContents{
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 2em 1.5em;
	width: 90%;
	max-width: 1250px;
	margin: 0 auto;
	padding: 1em 0;
}

@media(min-width: 1025px){
	.footerContents{
		flex-wrap: nowrap;
	}
}

.footerContents_item--center{
	flex-grow: 1;
}

@media(min-width: 1025px){
	.footerContents_item--right{
		flex-shrink: 0;
		width: 20em;
	}
}

.footerImage{
	max-width: 100%;
}

.footerCopy{
	width: 90%;
	max-width: 1250px;
	margin: 0 auto;
	padding: 1em 0;
}

.footerCopy_text{
	margin: 0;
}

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

/*---------------------------------
	section start
---------------------------------*/
.section{
	padding: 4.5em 0 5.5em;
}

@media(max-width: 600px){
	.section{
		padding: 2.5em 0 5em;
	}
}

.section_inner{
	width: 90%;
	margin-right: auto;
	margin-left: auto;
}

.section_inner--mw960{
	max-width: 960px;
}

.section_inner--mw1200{
	max-width: 1200px;
}

.section_inner--mw1250{
	max-width: 1250px;
}

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