/*---------------------------------
	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;
	z-index: 200;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #FFF;
	color: #000;
	transition: all 0.25s;
}

body.is-notTop .header{
	box-shadow: 2px 2px 3px rgba(0,0,0,0.5);
}

.header--overlapMainvisual{
	position: fixed;
}

body:not(.is-notTop) .header--overlapMainvisual{
	background-color: transparent;
	color: #FFF;
	box-shadow: none;
	filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.5));
}

@media(max-width: 1250px) and (min-width: 1025px){
	.header{
		font-size: 85%;
	}
}

.header_inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	height: 5em;
	padding: 0 0 0 3em;
}

@media(max-width: 1024px){
	.header_inner{
		width: 90%;
		padding: 1em 0;
		margin: 0 auto;
	}
}

.header_logo{
	flex-grow: 0;
	flex-shrink: 0;
}

.headerLogo{
	margin: 0;
	font-size: 125%;
}

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

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

.headerLogo_inner{
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.25em 0.5em;
}

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

.headerLogo_imageWrapper{
	position: relative;
}

.headerLogo_image{
	width: auto;
	height: 1.5em;
	object-fit: fill;
}

body:not(.is-notTop) .headerLogo_image--overlapMainvisualDown{
	visibility: hidden;
	opacity: 0;
}

.headerLogo_text{
	margin: 0;
	font-weight: var(--fontWeightBold);
}

@media(max-width: 600px){
	.headerLogo_text{
		font-size: 87.5%;
		line-height: 1;
	}
}

.headerLogo_text--en{
	font-size: 60%;
	text-align: right;
}

.header_nav{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	align-self: stretch;
	gap: 0 2em;
	flex-grow: 0;
	flex-shrink: 1;
	width: 1050px;
}

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

.headerNav{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 2em;
	flex-wrap: wrap;
}

.headerNavItem{
	position: relative;
	margin: 0;
}

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

.headerNavItem_link:hover{
	text-decoration: underline
}

.headerNavItem--active .headerNavItem_link{
	text-decoration: underline;
}

.headerNavItem_title{
	margin: 0;
	text-align: center;
	font-size: 90%;
}

.headerNavItemDropdown{
	position: absolute;
	top: calc(100% + 0.5em);
	left: 50%;
	width: max-content;
	min-width: 10em;
	background-color: var(--themeColor);
	border: 1px solid var(--themeColor);
	visibility: hidden;
	opacity: 0;
	transform: translate(-50%,-0.5em);
	transition: all 0.25s;
}

.headerNavItem:hover .headerNavItemDropdown{
	visibility: visible;
	opacity: 1;
	transform: translate(-50%,0);
}

.headerNavItemDropdown_link{
	display: block;
	padding: 0.75em 1em;
	text-align: center;
	color: var(--mainTextColor);
	text-decoration: none;
	transition: all 0.25s;
}

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

.headerNavItemDropdown_link--active{
	text-decoration: underline;
}

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

/*---------------------------------
	langSelector start
---------------------------------*/

.langSelector{
	display: flex;
	align-items: stretch;
	align-self: stretch;
	position: relative;
}

@media(max-width: 960px){
	.langSelector{
		display: none;
	}
}

.langSelectorTitle{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0;
	margin: 0;
	padding: 0.25em 1.25em 0.5em;
	background-color: var(--themeColor);
	color: var(--mainTextColor);
	cursor: pointer;
	transition: all 0.25s;
}

body:not(.is-notTop) .header--overlapMainvisual .langSelectorTitle:not(.open){
	background-color: transparent;
	color: #FFF;
}

.langSelectorTitleItem{
	display: block;
	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: 325%;
	line-height: 1;
}

.langSelectorTextItem{
	font-size: 87.5%;
}

.langListWrapper{
	position: absolute;
	top: 100%;
	left: 0;
	display: none;
	width: 100%;
	margin: 0;
	padding: 0;
	background-color: #FFF;
	border-top: 2px solid #FFF;
}

.langList{
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	list-style: none;
	border: 2px solid var(--themeColor);
	border-top: none;
}

.langListItem{
	display: block;
	margin: 0;
}

.langListLink{
	display: block;
	padding: 0.5em;
	transition: background-color 0.25s;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	text-align: center;
	font-size: 90%;
	color: var(--mainTextColor);
}

.active .langListLink{
	background-color: var(--themeColor);
	cursor: default;
	pointer-events: none;
}

.langListLink:hover{
	color: inherit;
	background-color: var(--themeColor);
	text-decoration: none;
}

.langListItem--JA{
	order: 2;
}

.langListItem--EN{
	order: 3;
}

.langListItem.active{
	order: 1;
}

/*---------------------------------
	langSelector 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(--mainTextColor);
	transition: all 0.25s;
}

.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 #000;
	border-bottom: 0.1em solid #000;
}

body:not(.is-notTop):not(.is-drawerNavActive) .drawerNavButton--overlapMainvisual .drawerNavButton_inner:before{
	filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.5));
	border-color: #FFF;
}

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(--themeColor);
	color: var(--mainTextColor);
	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: 2.5em;
	overflow-y: scroll;
}

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

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

.drawerNavTelLink[href]{
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 175%;
	color: #404040;
}

.drawerNavTelLink:before{
	content: "phone";
	color: #df99b6;
	font-size: 150%;
	margin-right: 0.25em;
	font-family: 'LigatureSymbols' !important;
	-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;
}

/*---------------------------------
	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: 1px solid var(--mainTextColor);
}

.drawerNavPageLinkListItem:first-of-type{
	border-top: 1px solid var(--mainTextColor);
}

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

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

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

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

/*---------------------------------
	subpageTitle start
---------------------------------*/
.subpageTitle{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 12.5em;
	overflow: hidden;
}

.subpageTitle_title{
	position: relative;
	z-index: 120;
	width: 90%;
	max-width: 1150px;
	margin: 0 auto;
	padding: 1em 0;
	color: #FFF;
	text-align: left;
}

.subpageTitle_titleEn{
	font-size: 250%;
}

.subpageTitle_titleJa{
	font-size: 100%;
}

.subpageTitle_bgTextWrapper{
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	z-index: 110;
	transform: translate(0,-50%);
	user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-drag: none;
	-khtml-user-drag: none;
}

.subpageTitle_bgText{
	width: 90%;
	max-width: 1150px;
	margin: 0 auto;
	font-size: 500%;
	line-height: 100%;
	color: #555;
	text-align: right;
	opacity: 0.075;
	font-weight: var(--fontWeightBold);
}

@media(max-width: 600px){
	.subpageTitle{
		min-height: 0;
	}
	.subpageTitle_title{
		padding: 2em 0;
	}
	.subpageTitle_titleEn{
		font-size: 175%;
	}
	.subpageTitle_titleJa{
		font-size: 100%;
	}
	.subpageTitle_bgText{
		font-size: 200%;
		opacity: 0.15;
	}
}

.subpageTitle_bgOverlay{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 105;
	width: 100%;
	height: 100%;
	margin: 0;
/*
	background-color: rgba(0,0,0,0.5);
*/
}

.subpageTitle_bgImage{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background-color: #CCC;
}

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

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

.footer--fixedBarMargin{
	padding-bottom: 6em;
}

@media(max-width: 1024px){
	.footer--fixedBarMargin{
		padding-bottom: 8em;
	}
}

@media(max-width: 600px){
	.footer--fixedBarMargin{
		padding-bottom: calc(3vw * 8);
	}
}

.footerNav{
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: center;
	gap: 2em 5em;
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
}

.footerNavBlock{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 0.5em;
	list-style: none;
	margin: 0;
	padding: 0;
}

@media(max-width: 1024px){
	.footerNav{
		--cols: 3;
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 2em 1em;
		width: 80%;
	}
	.footerNavBlock{
		width: calc((100% - (1em * (var(--cols) - 1))) / var(--cols));
	}
}

@media(max-width: 600px){
	.footerNav{
		--cols: 2;
	}
}

.footerNavItem{
	display: block;
	margin: 0;
	padding: 0 0 0 0.75em;
	font-size: 90%;
}

.footerNavItem--main{
	font-weight: var(--fontWeightBold);
	padding: 0;
}

.footerNavLink,
.footerNavLink:hover{
	color: inherit;
	text-decoration: none;
	transition: opacity 0.5s;
}

.footerNavLink:hover{
	opacity: 0.8;
}

.footerInfo{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1em 0;
	width: 90%;
	margin: 3em auto 1em;
}

.footerInfoInner{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1em 2em;
}

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

.footerLogo{
	display: block;
}

.footerLogo img{
	display: block;
	width: auto;
	height: 4.5em;
	object-fit: fill;
}

.footerInfoText{
	display: block;
	margin: 0;
	font-size: 90%;
}

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

.footerInfoAddr{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 0 0.75em;
	margin: 0;
}

.footerInfoNum{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 0 1em;
	margin: 0;
}

.footerInfoLink{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	font-size: 90%;
	margin: 0;
	padding: 0;
}

.footerInfoLink a,
.footerInfoLink a:hover{
	color: inherit;
	text-decoration: none;
	transition: opacity 0.5s;
}

.footerInfoLink a:hover{
	opacity: 0.8;
}

.footerCopy{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 90%;
	padding: 1em 0;
	margin: 0 auto;
}

.footerCopy_text{
	margin: 0;
}

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

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

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

.section--paddingNone{
	padding-bottom: 0;
}

.section--paddingWide{
	padding: 10em 0;
}

.section--paddingBottomWide{
	padding-bottom; 10em;
}

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

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

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

.section_inner--mw1050{
	max-width: 1050px;
}

.section_inner--mw1150{
	max-width: 1150px;
}

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

.section--bgMainColor{
	color: #FFF;
	background-color: #1F4E79;
}

.sectionImageBand{
	position: relative;
	width: 100%;
	height: 25em;
	margin: 3em 0 0;
}

.sectionImageBand_image{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sectionImageBand_map{
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.section--bg{
	position: relative;
	overflow: hidden;
	z-index: 1;
	clip-path: inset(0);
	--mainTextColor: #FFF;
	min-height: 55vh;
}

.section--bg .section_inner{
	position: relative;
	z-index: 3;
}

.section--bg .sectionLogo{
	display: block;
	width: 100%;
	position: absolute;
	top: 2em;
	left: 2vw;
	z-index: 2;
}

.section--bg .sectionLogo img{
	display: block;
	width: 100%;
	height: 2.5em;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: contain;
	object-position: top left;
}

@media(max-width: 1024px){
	.section--bg .sectionLogo img{
		opacity: 0.6;
	}
}

@media(max-width: 600px){
	.section--bg .sectionLogo img{
		height: 2em;
	}
}

.section--bg .sectionBackground{
	display: block;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
}

.section--bg .sectionBackground img{
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center;
}

.section--color{
	background-color: #F2F9FA;
}

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

/*---------------------------------
	fixedBar start
---------------------------------*/
.fixedBar{
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 300;
	width: 100%;
	background-color: rgba(0,0,0,0.8);
	color: #FFF;
}

.fixedBar--overlapMainvisual{
	visibility: hidden;
	opacity: 0;
	transition: visibility 0.5s, opacity 0.5s;
}

body.is-notTop .fixedBar--overlapMainvisual{
	visibility: visible;
	opacity: 1;
}

@media(max-width: 600px){
	.fixedBar{
		font-size: 3vw;
	}
}

.fixedBar_inner{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	margin: 0 auto;
	padding: 1em 0;
	width: 90%;
	max-width: 1150px;
}

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

@media(min-width: 1025px){
	.fixedBarTexts{
		margin: 0 1em 0 0;
	}
}

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

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

.fixedBarButtons{
	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-wrap: nowrap;
	margin: 0;
}

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

.fixedBarButtonsItem{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1em 2em;
	color: #FFF;
	font-weight: var(--fontWeightBold);
	text-align: center;
	text-decoration: none;
	background-color: #666;
	border: 2px solid #666;
	border-radius: 0.5em;
	outline: none;
	transition: color 0.25s, background-color 0.25s;
}

@media(min-width: 1025px){
	.fixedBarButtonsItem{
		margin: 0 0.5em;
	}
}

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

.fixedBarButtonsItem--contact{
	background-color: #FF9E42;
	border: 2px solid #FF9E42;
}

.fixedBarButtonsItem--contact:hover{
	color: #FF9E42;
	text-decoration: none;
	background-color: #FFF;
	outline: none;
}

.fixedBarButtonsItem_text{
	margin: 0;
}

.fixedBarButtonsItem_text--sub{
	font-size: 70%;
}

/*---------------------------------
	fixedBar end
---------------------------------*/

/*---------------------------------
	navLang start
---------------------------------*/

.navLang{
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: flex-start;
	gap: 0.5em 1em;
	width: 100%;
	margin: 1em auto 0;
	padding: 0 1em;
	list-style: none;
}

.navLangItem{
	display: flex;
	align-items: stretch;
	width: calc((100% - 1em) / 2);
}

.navLangItem--JA{
	order: 2;
}

.navLangItem--EN{
	order: 3;
}

.navLangItem.active{
	order: 1;
}

.navLangLink,
a:not([href]):not([tabindex]).navLangLink{
	display: block;
	width: 100%;
	border: 1px solid #FFF;
	color: var(--mainTextColor);
	background-color: #FFF;
	padding: 0.25em 0.5em;
	transition: color 0.25s, background-color 0.25s;
	text-decoration: none;
	text-align: center;
}

.navLangLink:hover,
a:not([href]):not([tabindex]).navLangLink:hover,
.navLangItem.active .navLangLink,
.navLangItem.active a:not([href]):not([tabindex]).navLangLink{
	color: #FFF;
	background-color: var(--themeColor);
	text-decoration: none;
}

.navLangItem.active .navLangLink,
.navLangItem.active a:not([href]):not([tabindex]).navLangLink{
	cursor: default;
	pointer-events: none;
}

/*---------------------------------
	navLang end
---------------------------------*/