/*---------------------------------
	body start
---------------------------------*/
body{
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	background-color: var(--mainBgColor);
}

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: center;
	align-items: center;
	background-color: var(--headerBgColor);
	z-index: 200;
	box-shadow: 1px 1px 3px rgba(0,0,0,0.25);
	color: var(--headerTextColor);
}

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

.header_inner{
	max-width: 1180px;
	width: 90%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

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

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

.headerLogo_image{
	display: block;
	height: 1.5em;
	object-fit: contain;
}

.headerNavbutton{
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: nowrap;
	cursor: pointer;
}

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

.headerNavbuttonIcon{
	font-size: 250%;
	width: 1em;
	height: 1em;
	position: relative;
}

.headerNavbuttonIcon_open{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 1em;
	height: 0.75em;
	border-top: 3px solid var(--headerTextColor);
	border-bottom: 3px solid var(--headerTextColor);
	transition: all 0.5s;
}

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

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

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

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

.headerNavbuttonIcon_close:before,
.headerNavbuttonIcon_close:after{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 1em;
	height: 3px;
	background-color: var(--headerTextColor);
}

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

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

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

/*---------------------------------
	drawerNav start
---------------------------------*/

.drawerNavMain{
	display: block;
	position: fixed;
	z-index: 100;
	top: 0;
	right: 0;
	z-index: 150;
	width: 100%;
	height: 100%;
	visibility: hidden;
	opacity: 0;
	overflow-y: scroll;
	overflow-x: hidden;
	background: var(--headerMenuBgColor);
	padding: 6em 0 0;
	color: var(--headerMenuTextColor);
	transform: translate(0, 10px);
	transition: all 0.25s ease;
}

@media(max-width: 600px){
	.drawerNavMain{
		padding-top: 10em;
	}
}

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

.is-drawerNavActive .drawerNavMain{
	visibility: visible;
	opacity: 1;
	transform: translate(0, 0);
	transition: all 0.5s ease;
}

.drawerNavMain_inner{
	max-width: 1180px;
	width: 90%;
	margin: 0 auto;
	padding: 5em 0;
}

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

.drawerNavInfoTel_no{
	font-size: 200%;
}

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

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

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

@media(max-width: 750px){
	.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 #CCC;
}

.drawerNavLinklist_item--active .drawerNavLinklist_link{
	border-bottom: 2px solid #0000cd;
}

@media(max-width: 750px){
	.drawerNavMain{
		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 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);
}

.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: 0;
	background-color: var(--footerBgColor);
}

.footerContents{
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
	width: 90%;
	max-width: 1250px;
	margin: 0 auto;
	padding: 2em 0 1em;
	border-top: 1px solid #FFF;
}

.footerContents_item{
	margin: 0;
}

.footerContents_item--center{
	width: 40em;
	max-width: 100%;
}

.footerLogo_image{
	max-width: 100%;
}

.footerTexts--size150{
	font-size: 150%;
}

.footerTexts p{
	margin-bottom: 0.5em;
}

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

.footerImage{
	display: block;
	height: 2em;
	margin: 0 auto;
	object-fit: contain;
	object-position: center center;
}

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

.footerCopy_text{
	margin: 0;
	text-align: center;
}

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

/*---------------------------------
	section start
---------------------------------*/

.section{
	padding: 10em 0;
	position: relative;
}

.section:first-of-type{
	padding: 4em 0 10em;
}

.section:last-of-type{
	padding: 10em 0 6em;
}

.section:not(:last-of-type){
	padding-bottom: calc(10em + 1px);
}

.section:not(:last-of-type):after{
	content: "";
	display: block;
	width: min(60%,20em);
	height: 1px;
	background-color: #FFF;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

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

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

.section_inner--mw750{
	max-width: 750px;
}

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

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

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

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