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

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

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

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

/*---------------------------------
	header start
---------------------------------*/
.header{
	position: sticky;
	z-index: 200;
	top: 0;
	left: 0;
	width: 100%;
	background-color: var(--headerBgColor);
	color: var(--headerTextColor);
	transition: all 0.25s;
	box-shadow: 0 2px 2px rgba(0,0,0,0.3);
}

.headerContents{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	width: 100%;
	min-height: 5em; 
	padding: 1em 20rem 1.5em 5%;
	margin: 0 auto;
}

.headerContents_item{
	margin: 0;
}

@media(max-width: 1280px){
	.headerContents{
		padding: 1em 5% 1.5em;
	}
	.headerContents_item--right{
		display: none;
	}
}

.headerLogo{
	margin: 0;
	font-size: 125%;
	font-weight: var(--fontWeightBold);
}

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

.headerLogoLayout{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	width: 100%;
	margin: 0;
}

.headerLogoText{
	margin: 0;
}

.headerLogoText--sub{
	font-size: 87.5%;
}

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

.headerLogoText--small{
	font-size: calc(1rem * 12 * 1.25 * 1.5 / 26);
	font-weight: var(--fontWeightNormal);
}

.headerLogoText--mainLayout{
	font-size: 100%;
	color: inhetit;
}

.headerLogoText--mainLayout:before{
	content: "/";
	margin: 0 0.25em;
}

@media(max-width: 1024px){
	.headerLogoText--mainLayout{
		display: block;
	}
	.headerLogoText--mainLayout:before,
	.headerLogoText--small{
		display: none;
	}
}

@media(max-width: 600px){
	.headerLogoText--main{
		font-size: 125%;
	}
	.headerLogoText--small{
		font-size: calc(85vw / 26);
	}
}

.headerTexts--alignCenter{
	text-align: center;
}

.headerTexts p{
	margin-bottom: 0.5rem;
}

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

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

.headerImage{
	max-width: 100%;
}

.headerInfoWrapper{
	background-color: #FFF;
	position: absolute;
	top: 0;
	right: 0;
	padding: 2em 0 0;
	font-size: 87.5%;
	max-width: 20rem;
	transform-origin: top center;
}

.headerInfoWrapper:before{
	content: "";
	display: block;
	width: 100%;
	height: 2em;
	background-image: url("../../images/common/hook.svg");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
}

.headerInfoBorder{
	border: 1em solid #DEAF79;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.3);
}

.headerInfo{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 0.75em 0;
	box-shadow: inset 2px 2px 2px rgba(0,0,0,0.3);
	padding: 1em 1.5em;
}

.headerInfoText{
	margin: 0;
	line-height: 1.25;
}

.headerInfoTel{
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0 0.25em;
}

.headerInfoTel:before{
	content: "phone";
	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: 100%;
	line-height: 1;
}

.header_nav{
	color: var(--headerMenuTextColor);
}

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

.headerNav{
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
	width: 100%;
	padding: 0;
	margin: 0.75em 0 0;
}

.headerNavItem{
	position: relative;
	--activeColor: #FFB56E;
}

.headerNavItem--red{
	position: relative;
	--activeColor: #F794B5;
}

.headerNavItem--green{
	position: relative;
	--activeColor: #7DC318;
}

.headerNavItem:before{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	height: 100%;
	border-right: 1px solid #BFBFBF;
	transform: translateY(-50%);
}

.headerNavItem:last-of-type:after{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	height: 100%;
	border-right: 1px solid #BFBFBF;
	transform: translateY(-50%);
}

.headerNavItem_link,
.headerNavItem_link:hover{
	display: block;
	color: inherit;
	text-decoration: none;
	transition: color 0.25s;
}

.headerNavItem_link:hover{
	text-decoration: none;
	color: var(--activeColor);
}

.headerNavItem_text{
	margin: 0 1em;
	padding: 0 0.5em;
	font-size: 100%;
	font-weight: var(--fontWeightBold);
	text-align: center;
	border-top: 2px solid transparent;
	border-bottom: 2px solid transparent;
	transition: border 0.25s;
}

.headerNavItem--active .headerNavItem_text{
	border-bottom: 2px solid #BFBFBF;
}

.headerNavItem_link:hover .headerNavItem_text{
	border-bottom: 2px solid var(--activeColor);
}

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

/*---------------------------------
	drawerNav base start
---------------------------------*/
@media(max-width: 1024px){
	body.is-drawerNavActive{
		overflow-y: hidden; /* ナビゲーションアクティブ時スクロール制限 */
	}
}

/*---------------------------------
	drawerNav base end
---------------------------------*/

/*---------------------------------
	drawerNavObject start
---------------------------------*/
@media(min-width: 1025px){
	.drawerNavObject{
		display: none;
	}
}

/*---------------------------------
	drawerNavObject end
---------------------------------*/

/*---------------------------------
	drawerNavButton start
---------------------------------*/
.drawerNavButton{
	position: fixed;
	z-index: 500;
	top: 0.125em;
	right: 5%;
	cursor: pointer;
	font-size: 400%;
}

.drawerNavButton_inner{
	position: relative;
	width: 1em;
	height: 1em;
	color: var(--drawerNavButtonIconColor);
	background-color: var(--drawerNavButtonBgColor);
	border-radius: 50%;
	transition: all 0.25s;
	border: 2px solid var(--drawerNavButtonIconColor);
}

.drawerNavButton_inner:before{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 60%;
	line-height: 100%;
}

body:not(.is-drawerNavActive) .drawerNavButton_inner:before{
	content: "";
	width: 0.75em;
	height: 0.5em;
	border-top: 0.1em solid var(--drawerNavButtonIconColor);
	border-bottom: 0.1em solid var(--drawerNavButtonIconColor);
}

body.is-drawerNavActive .drawerNavButton_inner:before{
	content: "×";
	font-size: 80%;
}

/*---------------------------------
	drawerNavButton end
---------------------------------*/

/*---------------------------------
	drawerNavBody start
---------------------------------*/
.drawerNavBody{
	font-size: 1rem;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: var(--drawerNavBodyBgColor);
	color: var(--drawerNavBodyTextColor);
	visibility: hidden;
	opacity: 0;
	transform: scale(0.9);
	transition: all 0.25s;
	z-index: 450;
}

body.is-drawerNavActive .drawerNavBody{
	visibility: visible;
	opacity: 1;
	transform: scale(1);
}

.drawerNavBody_inner{
	height: 100%;
	padding-top: 5.5em;
	overflow-y: scroll;
}

.drawerNavBodySection{
	padding: 0 1.5em;
	margin-bottom: 2em;
}

.drawerNavBodySection:last-of-type{
	padding-bottom: 5em;
}

/*---------------------------------
	drawerNavBody end
---------------------------------*/

/*---------------------------------
	drawerNavOverlay start
---------------------------------*/
.drawerNavOverlay{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.25);
	cursor: pointer;
	visibility: hidden;
	opacity: 0;
	z-index: 425;
	transition: all 0.25s;
}

body.is-drawerNavActive .drawerNavOverlay{
	visibility: visible;
	opacity: 1;
}

/*---------------------------------
	drawerNavOverlay start
---------------------------------*/

/*---------------------------------
	drawerNavPageLinkList start
---------------------------------*/
.drawerNavPageLinkList{
	list-style: none;
	margin: 0;
	padding: 1em 0;
	font-size: 90%;
}

.drawerNavPageLinkListItem{
	border-bottom: 2px dotted var(--drawerNavBodyTextColor);
}

.drawerNavPageLinkListItem:first-of-type{
	border-top: 2px dotted var(--drawerNavBodyTextColor);
}

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

.drawerNavPageLinkListItem_inner{
	padding: 1em 1em;
	margin: 0;
	font-size: 125%;
	color: var(--drawerNavBodyTextColor);
	text-align: center;
}

.drawerNavPageLinkListItem--active .drawerNavPageLinkListItem_inner{
	background-color: rgba(0,0,0,0.1);
}

/*---------------------------------
	drawerNavPageLinkList end
---------------------------------*/

/*---------------------------------
	drawerNavTexts start
---------------------------------*/
.drawerNavTexts--alignCenter{
	text-align: center;
}

.drawerNavTexts p{
	margin-bottom: 0.5rem;
}

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

.drawerNavTexts_text--size150{
	font-size: 125%;
}

/*---------------------------------
	drawerNavPageLinkList end
---------------------------------*/

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

.subpageTitle_inner{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.25em;
	height: 10em;
	padding: 0 2em;
}

.subpageTitle_mainText{
	font-size: 200%;
	color: #333;
	margin: 0;
/*	filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.8));*/
}

.subpageTitle_subText{
	font-size: 112.5%;
	color: #333;
	margin: 0;
	font-weight: var(--fontWeightNormal);
}

.subpageTitleIcon{
	display: block;
	width: auto;
	height: 3em;
	object-fit: fill;
	position: absolute;
	bottom: 0;
	left: 5vw;
	animation: drive 3.5s ease-in-out;
}

@keyframes drive{
	0%{
		transform: translateX(95vw);
	}
	100%{
		transform: translateX(0);
	}
}

@media(max-width: 600px){
	.subpageTitle_inner{
		padding: 1em;
		width: 90%;
		text-align: center;
	}
	.subpageTitle_mainText{
		font-size: 150%;
	}
}

/*---------------------------------
	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: nowrap;
	gap: 3em 3em;
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 1em 0;
}

@media(max-width: 1024px){
	.footerContents{
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		gap: 3em 5em;
		width: 90%;
		margin: 0 auto;
	}
}

@media(max-width: 780px){
	.footerMain{
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
}

.footerContents_item{
	margin: 0;
}

.footerContents_item--left{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 2em 0;
}

@media(max-width: 1024px){
	.footerContents_item--left{
		order: 1;
	}
}

@media(max-width: 780px){
	.footerContents_item--left{
		width: 100%;
	}
}

.footerContents_item--mark{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 2em;
	width: 10vw;
	min-width: 12em;
}

@media(max-width: 1024px){
	.footerContents_item--mark{
		width: 100%;
		flex-direction: row-reverse;
		justify-content: center;
		order: 3;
	}
}

.footerLogo{
	width: max(60%,7em);
	margin: 0;
}

@media(max-width: 1024px){
	.footerLogo{
		width: 7em;
		margin: 0;
	}
}

.footerLogo img{
	display: block;
	width: 100%;
	margin: 0;
}

.footerInfo{
	display: block;
	width: 100%;
}

.footerInfoTitle{
	font-size: 125%;
	font-weight: var(--fontWeightBold);
	width: 100%;
	margin: 0 0 0.25em;
}

.footerInfoContact{
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	gap: 0 2.5em;
}

.footerInfoNum{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}

.footerInfoTel{
}

.footerInfoFax{
}

.standardButton.footerInfoButton{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 0.5em;
	min-width: 0;
	padding: 0.5em 1.5em;
	margin: 0;
	font-weight: var(--fontWeightNormal);
	border: 2px solid #333;
	background-color: #FFF;
	color: #333;
}

.standardButton.footerInfoButton:hover{
	background-color: #333;
	border: 2px solid #333;
	color: #FFF;
}

.standardButton.footerInfoButton:before{
	content: "mail";
	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-weight: var(--fontWeightNormal);
	line-height: 1;
	font-size: 125%;
}

.footerContents_item--right{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: flex-start;
	gap: 1em;
	flex-grow: 1;
}

.footerContents_item_inner{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 1em;
}

@media(max-width: 1024px){
	.footerContents_item--right{
		order: 2;
		flex-grow: 0;
	}
}

@media(max-width: 780px){
	.footerContents_item--right{
		align-items: flex-start;
		width: 100%;
	}
}

.footerAdd{
	font-size: 112.5%;
	flex-wrap: wrap;
	margin: 0;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 0 0.25em;
}

@media(max-width: 1024px) and (min-width: 601px){
	.footerAdd{
		flex-direction: column;
	}
}

.footerNav{
	gap: 0.5em 0;
}

.footerNavItem{
}

.footerNavLink{
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border 0.25s;
}

.footerNavLink:hover{
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid #333;
}

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

.footerCopy_text{
	margin: 0;
}

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

/*---------------------------------
	section start
---------------------------------*/
.section{
	padding: 8em 0 10em;
}

.shortPadding .section{
	padding: 4em 0 6em;
}

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

.section--gradationUp{
	background: linear-gradient(transparent 0,#F9FDF2 3em, #F9FDF2 100%);
}

.section--gradationDown{
	background: linear-gradient(#F9FDF2 0,#F9FDF2 calc(100% - 3em), transparent 100%);
}

.section--bgImage{
	background-image: url("../../images/common/bgImage.jpg");
	background-size: 100% auto;
	background-repeat: repeat;
	background-attachment: fixed;
}

.section--bgMap{
	background-image: url("../../images/common/bgMap.jpg");
	background-size: 100% auto;
	background-repeat: repeat;
	background-attachment: fixed;
}

.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
---------------------------------*/
