/*---------------------------------
	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;
	z-index: 500;
	width: 100%;
	background-color: rgba(255,255,255,0.2);
	-webkit-backdrop-filter: contrast(100%) blur(50px);
	backdrop-filter: contrast(100%) blur(50px);
}

@media(min-width: 1025px){
	.header{
		font-size: min(100%,1vw);
	}
}

.header_inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	gap: 0 2em;
	width: 90%;
	padding: 0.5em 0;
	margin: 0 auto;
}

.headerLogo{
	margin: 0;
}

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

.headerLogo_inner{
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: nowrap;
}

.headerLogo_image{
	display: block;
	width: 26em;
}

.headerNav{
	flex-grow: 1;
	margin-left: auto;
}

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

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

.headerNav_item{
	position: relative;
}

.headerNav_item--active:before{
	content: "";
	position: absolute;
	bottom: calc(100% + 0.1em);
	left: 50%;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--c-hex-accent);
	transform: translateX(-50%);
}

.headerNav_link{
	font-weight: bold;
	color: inherit;
	transition: color 0.25s;
}

.headerNav_link:hover{
	color: var(--c-hex-accent);
	text-decoration: none;
}

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

@media(max-width: 1024px){
	.headerButtons{
		flex-grow: 1;
	}
}

.headerButton{
	display: block;
	max-width: 100%;
	padding: 0.25em 1em;
	color: #FFF;
	text-align: center;
	font-weight: normal;
	font-size: 90%;
	text-decoration: none;
	background-color: var(--c-hex-accent);
	border: 2px solid var(--c-hex-accent);
	border-radius: 5px;
	outline: none !important;
	transition: background-color 0.25s, color 0.25s;
}

.headerButton:hover{
	color: var(--c-hex-accent);
	text-decoration: none;
	background-color: #FFF;
}

@media(max-width: 600px){
	.headerButton--reserve{
		font-size: 2.75vw;
		white-space: nowrap;
	}
}

@media(min-width: 1024px){
	.headerDrawerNavButton{
		display: none;
	}
}

.headerDrawerNavButtonIcon{
	position: relative;
	width: 2.5em;
	height: 2.5em;
}

.headerDrawerNavButtonIcon_figure{
	position: absolute;
	margin: 0;
	transition: all 0.25s;
}

.headerDrawerNavButtonIcon_figure--01{
	top: 20%;
	left: 0;
	width: 100%;
	border-top: 2px solid var(--c-hex-accent);
	transform: translate(0,0);
}

.headerDrawerNavButtonIcon_figure--02{
	top: 50%;
	left: 0;
	width: 100%;
	border-top: 2px solid var(--c-hex-accent);
	transform: translate(0,-50%);
}

.headerDrawerNavButtonIcon_figure--03{
	bottom: 20%;
	left: 0;
	width: 100%;
	border-top: 2px solid var(--c-hex-accent);
	transform: translate(0,0);
}

.is-drawerNavActive .headerDrawerNavButtonIcon_figure--01{
	top: 50%;
	left: 50%;
	width: 100%;
	border-top: 2px solid var(--c-hex-accent);
	transform: translate(-50%,-50%) rotate(-45deg);
}

.is-drawerNavActive .headerDrawerNavButtonIcon_figure--02{
	opacity: 0;
}

.is-drawerNavActive .headerDrawerNavButtonIcon_figure--03{
	top: 50%;
	bottom: auto;
	left: 50%;
	width: 100%;
	border-top: 2px solid var(--c-hex-accent);
	transform: translate(-50%,-50%) rotate(45deg);
}

/*---------------------------------
	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: #FFF;
	transition: all 0.25s;
}

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

.drawerNavButton_inner:after{
	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-drawerNavActive) .drawerNavButton_inner:after{
	content: "";
	width: 0.75em;
	border-top: 0.1em solid #000;
}

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: #FAFAFA;
	color: #333;
	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 max(1em, 5%);;
	margin-bottom: 0.5em;
}

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

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

/*---------------------------------
	drawerNavMenu start
---------------------------------*/
.drawerNavMenu{
	margin: 0;
	padding: 1em 0;
	font-size: 80%;
}

.drawerNavMenuItem{
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.drawerNavMenuItem--active:before{
	content: "";
	position: absolute;
	top: calc(50% - 2px);
	right: 100%;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: var(--c-hex-accent);
}

.drawerNavMenuItem_link,
.drawerNavMenuItem_link:hover{
	flex-grow: 1;
	flex-shrink: 1;
	color: inherit;
	text-decoration: none;
	padding: 0.5em;
	margin: 0;
	font-size: 125%;
	font-weight: bold;
	color: inherit;
	text-align: left;
}

.drawerNavMenuItem_subButton{
	flex-grow: 0;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3em;
}

.drawerNavMenuItem_subButton:before{
	content: 'down';
	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;
	font-size: 150%;
	transition: transform 0.25s;
}

.drawerNavMenuItem_subButton.is-active:before{
	transform: rotate(180deg);
}

.drawerNavMenuSub{
	display: none;
	list-style: none;
	width: 100%;
	padding: 0 0 0.5em 1em;
}

.drawerNavMenuSubItem{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-start;
	border-bottom: 1px dotted #AAA;
}

.drawerNavMenuSubItem:last-of-type{
	border-bottom: none;
}

.drawerNavMenuSubItem_link,
.drawerNavMenuSubItem_link:hover{
	flex-grow: 1;
	flex-shrink: 1;
	color: inherit;
	text-decoration: none;
	padding: 0.5em 1em;
	margin: 0;
	font-size: 125%;
	color: #333;
	text-align: left;
}

.drawerNavMenuSubItem--active .drawerNavMenuSubItem_link{
	text-decoration: underline
}

.drawerNavMenuSubItem_subButton{
	flex-grow: 0;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3em;
}

.drawerNavMenuSubItem_subButton:before{
	content: 'down';
	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;
	font-size: 150%;
	transition: transform 0.25s;
}

.drawerNavMenuSubItem_subButton.is-active:before{
	transform: rotate(180deg);
}

/*---------------------------------
	drawerNavMenu end
---------------------------------*/

/*---------------------------------
	subpageTitle start
---------------------------------*/
.subpageTitle{
	position: relative;
	margin: 0;
}

.subpageTitle_text{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 30;
	width: 90%;
	min-height: 7.5em;
	margin: 0 auto;
	padding: 1em 0;
	text-align: center;
	font-weight: bold;
	letter-spacing: var(--f-letterSpacing-catch);
	font-size: clamp(200%, 5vw, 275%);
}

.subpageTitle_textSub{
	font-size: 50%;
	color: #666;
}

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

/*---------------------------------
	footer start
---------------------------------*/
.footerContact{
	padding: 5em 0 7em;
}

.footerContact_inner{
	width: 90%;
	max-width: 1250px;
	margin: 0 auto;
}

.footerContact_catch{
	font-size: min(11vw, 900%);
	color: #E0E0E0;
	letter-spacing: var(--f-letterSpacing-catch);
	font-weight: bold;
	line-height: 100%;
	margin-bottom: 3rem;
}

.footerNav{
	padding: 1em 0;
	background-color: #BBBBBB;
	font-weight: bold;
}

.footerNav_inner{
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1em 1.5em;
	width: calc(100% - 2em);
	margin: 0 auto;
}

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

.footerInfo{
	padding: 2em 0;
	background-color: #CCC;
}

.footerInfo_inner{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 90%;
	margin: 0 auto;
}

.footerLogo{
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: nowrap;
	margin: 0 0 1em;
	font-size: 125%;
}

.footerLogo_image{
	display: block;
}

.footerCopy{
	padding: 0.5em 0;
	background-color: #BBBBBB;
}

.footerCopy_text{
	width: 90%;
	margin: 0 auto;
	text-align: center;
	font-weight: bold;
}

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

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

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

.section--paddingNone{
	padding: 0;
}

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

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

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

.section--fullContent{
	padding: 0;
}

.section--bgMainLight{
	background-color: var(--bg-hex-theme);
}

.section--bgOffice{
	background: url("../../images/common/section/bgOffice.jpg");
	background-size: cover;
	background-attachment: fixed;
}

.section--bgOffice:before{
	content: "";
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0.8);
	backdrop-filter: blur(5px);
}

.section_inner{
	position: relative;
	z-index: 1;
	width: 90%;
	margin-right: auto;
	margin-left: auto;
}

.section_inner--mw600{
	max-width: 600px;
}

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

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

.section_inner--mw1000{
	max-width: 1000px;
}

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

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

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