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

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;
	color: var(--headerTextColor);
	background-color: var(--headerBgColor);
	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%;
	}
}

.header--aboveSlider{
	background-color: #FFF;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.headerActive .header{
	background-color: #FFF;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

body:not(.is-drawerNavActive) .header--aboveSlider:not(.is-abobeSliderActive){
	position: fixed;
	background-color: transparent;
	color: #FFF;
	box-shadow: none;
}

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

.headerLogo{
	font-size: 200%;
	font-weight: normal;
	max-width: 90%;
	margin: 0 0.5em 0 0;
	padding: 0.375em 0;
	width:325px;
}

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

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

.headerLogo_image{
	display: block;
	max-width: 100%;
	height: 2em;
	object-fit: contain;
}

@media(600px > width){
	.headerLogo_image{
		height: auto;
		width: 350px;
		max-width: 95%;
	}
}

.headerNavList{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	gap: 0 1em;
	font-size: 85%;
}

body:not(.is-drawerNavActive) .header--aboveSlider:not(.is-abobeSliderActive) .headerNavList{
	filter: drop-shadow(1px 1px 1px rgba(51,51,51,0.8));
}

.headerNavListItem{
	margin: 0em;
}

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

.headerNavListItem_link{
	padding: 0.25em  0;
}

.headerNavListItem_link:hover,
.headerNavListItem--active .headerNavListItem_link{
	border-bottom: 2px solid #FFF;
}

.header--aboveSlider.is-abobeSliderActive .headerNavListItem_link,
.headerActive .headerNavListItem_link{
	color: var(--mainTextColor);
}

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


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

.subNav{
	position: relative;
}

.subNav .headerNavListItem_link{
	cursor: pointer;
}

.subNav .headerNavListItem_link:hover{
	border-bottom: 2px solid transparent;
}

.subNavList{
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	gap: 0.25em;
	position: absolute;
	top: calc(100% - 1em);
	left: 50%;
	list-style: none;
	padding: 0.5em 1.5em;
	margin: 0;
	background-color: #FFF;
	border: 1px solid var(--headerBgColor);
	box-shadow: rgba(0,0,0,0.1) 2px 2px 5px;
	transform: translate(-50%,2em);
	opacity: 0;
	transition: transform 0.25s, opacity 0.25s;
	pointer-events: none;
}

.subNav:hover .subNavList{
	pointer-events: auto;
	transform: translate(-50%,1em);
	opacity: 1;
}

.subNavItem, .subNavItem a, .subNavItem a:hover{
	width: 100%;
	text-align: center;
	color: var(--mainTextColor);
	white-space: nowrap;
	text-decoration: none;
	padding: 0.5em 0.5em;
	transition: opacity 0.25s;
}

.subNavItem a:hover{
	opacity: 0.7;
}

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

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

.header--aboveSlider.is-abobeSliderActive .headerButtonsNav_iconOpen,
.headerActive .headerButtonsNav_iconOpen{
	border-top: 3px solid var(--themeColor);
	border-bottom: 3px solid var(--themeColor);
}

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

.is-drawerNavActive .header{
	background-color: #FFF;
}

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

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

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

/*---------------------------------
	drawerNav start
---------------------------------*/
body.is-drawerNavActive{
	overflow-y: hidden;
}

.drawerNavMain{
	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: var(--drawerNavBodyBgColor);
	color: var(--drawerNavBodyTextColor);
	padding: 7.75rem 0 0;
	transition: all 0.25s ease;
}

@media(max-width: 1024px){
	.drawerNavMain{
		display: block;
	}
}

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

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

.drawerNavMainInfo{
	text-align: center;
	margin: 0 0 100px;
}

.drawerNavMainInfo_telNo{
	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% / 2 - 2em);
	margin: 0 0 1em;
}

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

@media(max-width: 600px){
	.drawerNavMain{
		font-size: 0.7em;
	}
	
	.drawerNavMain_inner{
		padding: 2.5em 0;
	}
	
	.drawerNavMainInfo{
		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
---------------------------------*/

/*---------------------------------
	mainvisual start
---------------------------------*/
.mainvisual{
	position: relative;
	width: 100%;
	height: 95vh;
	z-index: -1;
	overflow: hidden;
}

@media(min-width: 1367px){
	.mainvisual{
		height: 100vh;
	}
}

.mainvisual_bg{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.mainvisual_bg .swiper{
	height: 100%;
}

.mainvisual_bg .swiper-fade .swiper-slide{
	transition-property: opacity !important;
}

.mainvisualSlideImage{
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: 7s 1s ease-out;
}

.mainvisualSlideImage--top{
	object-position: top center;
}

.mainvisualSlideImage--bottom{
	object-position: bottom center;
}

@keyframes mainvisualSliderZoomup{
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.1);
	}
}

.mainvisual_bg .swiper-slide[class*=-active] .mainvisualSlideImage{
	animation: mainvisualSliderZoomup 15s linear 0s 1 normal both;
}

.mainvisual_catch{
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 20;
	transform: translate(-50%,-50%);
	padding: 1em 1.25em;
	color: #333;
	font-size: 200%;
	font-weight: bold;
	background: rgba(255,255,255,0.5);
}

@media(1024px >= width){
	.mainvisual_catch{
		width:675px;
		max-width: 90%;
		text-align:center;
	}
}

@media(600px >= width){
	.mainvisual_catch{
		font-size:150%;
	}
}

.mainvisual_logoImage{
	width: auto;
	margin: 0;
}

.mainvisualCover{
	display: block;
	width: calc(100% + 2px);
	height: auto;
	margin: 0;
	position: absolute;
	bottom: -1px;
	left: -1px;
	z-index: 100;
	overflow: visible;
}

/*---------------------------------
	mainvisual end
---------------------------------*/


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


.subpageTitle_inner{
	width: 90%;
	padding:3em 0 0.25em;
}

@media(600px >= width){
	.subpageTitle_inner{
		padding:1.5em 0 0.25em;
	}
}


.subpageTitle_mainText{
	font-size: 200%;
	color: var(--strongTextColor);
	margin: 0;
}

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

.subpageTitleArc{
	display: block;
	width: calc(100% + 2px);
	height: auto;
	margin: 0 auto -1px -1px;
	overflow: visible;
}

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

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

.footerInner{
	padding: 1em 0 0;
}

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

@media(max-width: 1024px){
	.footerContents{
		flex-direction: column;
	}
}

.footerContents_item{
	margin: 0;
}

.footerContents_item--left{
	flex-grow: 0;
	flex-shrink: 0;
	width: calc((100% - 5em) * 0.45);
}

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

.footerMain{
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 2em;
}

.footerMainItem{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	width: 100%;
	max-width: 350px;
}

@media(600px > width){
	.footerMainItem{

		max-width: 90%;
	}
}

.footerLogo{
	display: block;
	margin: 0 auto;
}

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

.footerAddress{
	display: block;
	width: 100%;
	margin: 0 auto 0.25em;
}

.footerTel{
	display: block;
	width: 100%;
	margin: 0 auto;
	font-size: 150%;
}

@media(max-width: 600px){
	.footerTel{
		font-size: 100%;
	}
}

.footerMail{
	display: block;
	width: 100%;
	margin: 0.25em auto 0;
	color: inherit;
}

.footerMail *,
.footerMail *:hover{
	color: inherit;
}

.footerContents_item--right{
	display: flex;
	flex-direction: column;
	align-items: stretch;
	align-self: stretch;
	flex-grow: 1;
	flex-shrink: 1;
}

@media(max-width: 1024px){
	.footerContents_item--right{
		width: 100%;
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 0.5em 1.5em;
	}
}

.footerNavList{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 0.5em 1.5em;
	margin: 2em 0 1em;
	padding: 0;
	list-style: none;
}

@media(max-width: 1024px){
	.footerNavList{
		margin-top: 0;
	}
}

.footerNavListItem{
	display: flex;
	flex-wrap: nowrap;
	align-items: baseline;
	gap: 0.25em;
}

.footerNavListItem:before{
	content: "right";
	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;
}

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

.footerSNS{
	--iconSize: 29px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-end;
	gap: var(--iconSize);
}

.footerSNSLink{
	display: block;
}

.footerSNSIcon{
	display: block;
	width: var(--iconSize);
}

.footerCopy{
	width: 100%;
	margin: 0 auto;
	padding: 1em 0;
	text-align: center;
    background-color: #ff9900;
}

.footerCopy_text{
	margin: 0;
}

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

/*---------------------------------
	section start
---------------------------------*/
.section{
	padding: 4em 0 6em;
	background-color: var(--mainBgColor);
}

.section--color{
	background-color: var(--subBgColor);
}

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

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

.section_inner--full{
	width: 100%;
}

.section_inner--mw800{
	max-width: 800px;
}

.section_inner--mw900{
	max-width: 900px;
}

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

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

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

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