/* =========================================
   Base
========================================= */
html {
	font-size: 62.5%;
}
:root {
	--header-band-height: 5px;
	--header-band-color: #6c3b1b;
	/* ヘッダー高さ */
	--header-total-height: 160px;
	--header-total-height-999: 100px;
	--header-total-height-768: 80px;
	--header-total-height-480: 60px;
	/* ヘッダーグラデーション高さ */
	--header-grad-height-pc: 160px;
	--header-grad-height-999: 100px;
	--header-grad-height-768: 80px;
	--header-grad-height-480: 60px;
	/* 実際に使う値 */
	--hero-header-offset: var(--header-total-height);
	--header-base-height: var(--header-total-height);
	--header-grad-height: var(--header-grad-height-pc);
}
@media only screen and (max-width: 999px) {
	:root {
		--hero-header-offset: var(--header-total-height-999);
		--header-base-height: var(--header-total-height-999);
		--header-grad-height: var(--header-grad-height-999);
	}
}
@media only screen and (max-width: 768px) {
	:root {
		--hero-header-offset: var(--header-total-height-768);
		--header-base-height: var(--header-total-height-768);
		--header-grad-height: var(--header-grad-height-768);
	}
}
@media only screen and (max-width: 480px) {
	:root {
		--hero-header-offset: var(--header-total-height-480);
		--header-base-height: var(--header-total-height-480);
		--header-grad-height: var(--header-grad-height-480);
	}
}
body {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	line-height: 1.5;
	color: #111;
	/* 全ページ共通の上帯 */
	border-top: var(--header-band-height) solid var(--header-band-color);
}
*, *::before, *::after {
	box-sizing: border-box;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
figure {
	margin: 0;
}
:where(ul, ol) {
	margin: 0;
	padding: 0;
	list-style: none;
}
:where(h1, h2, h3, h4, h5, h6, p, dl, dt, dd) {
	margin: 0;
	padding: 0;
}
button {
	font: inherit;
	color: inherit;
}
/* =========================================
   Header common - Grid version
========================================= */
.header_group {
	display: grid;
	grid-template-columns: minmax(280px, 420px) 1fr;
	grid-template-areas:
		"logo guide"
		"logo belt"
		"nav  nav";
	align-items: end;
	column-gap: 24px;
	row-gap: 0;
	position: relative;
	z-index: 30;
	padding: 18px 0 0 0;
	min-height: var(--header-total-height);
}
.header_group::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	width: 100vw;
	height: var(--header-grad-height);
	pointer-events: none;
	z-index: 0;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, #E8E3E0 calc(100% - 1px), #fff calc(100% - 1px), #fff 100%);
	transform: translateX(-50%);
}
.header_group > * {
	position: relative;
	z-index: 1;
}
.header_group h1, .site_logo {
	grid-area: logo;
	margin: 0;
	align-self: start;
}
.site_logo a, .header_group h1 a {
	display: block;
}
.site_logo img, .header_group h1 img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 400px;
}
.nav_guide {
	grid-area: guide;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
	align-self: start;
}
.guide_belt {
	grid-area: belt;
	width: 100%;
	align-self: start;
}
.guide_belt img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 370px;
	margin-left: auto;
}
/* 999px以下 */
@media only screen and (max-width: 999px) {
	.header_group {
		background: #fff;
		grid-template-columns: minmax(0, 1fr) auto;
		grid-template-areas:
			"logo guide"
			"belt guide"
			"nav  nav";
		align-items: center;
		column-gap: 16px;
		row-gap: 0;
		padding: 10px 16px 10px;
		padding-right: 76px; /* fixed hamburger 分 */
		min-height: var(--header-total-height-999);
	}
	.header_group::after {
		background: #fff;
	}
	.header_group h1, .site_logo {
		align-self: end;
	}
	.site_logo img, .header_group h1 img {
		max-width: 320px;
	}
	.nav_guide {
		height: 60px;
		justify-content: flex-end;
		gap: 8px;
		align-self: start;
	}
	.header_group .nav_guide .guide_agent, .header_group .nav_guide .guide_access {
		height: 50px;
		align-self: start;
	}
	.guide_belt {
		width: 100%;
		margin: 0;
	}
	.guide_belt img {
		display: block;
		width: 100%;
		max-width: 320px;
		height: auto;
		margin: 0;
	}
}
/* 768px以下 */
@media only screen and (max-width: 768px) {
	.header_group {
		padding: 10px 76px 10px 12px;
		min-height: var(--header-total-height-768);
	}
	.site_logo img, .header_group h1 img {
		max-width: 240px;
	}
	.guide_belt img {
		max-width: 240px;
	}
	.header_group .nav_guide .guide_agent, .header_group .nav_guide .guide_access {
		width: 84px;
		height: 100%;
	}
	.header_group .nav_guide .guide_agent a, .header_group .nav_guide .guide_access a {
		flex-direction: column;
		row-gap: 0.25em;
		font-size: 1.2rem;
		border: 1px solid #ccc;
	}
	.header_group .nav_guide .guide_agent a::before, .header_group .nav_guide .guide_access a::before {
		width: 2.4rem;
		height: 2.4rem;
	}
}
/* 480px以下 */
@media only screen and (max-width: 480px) {
	.header_group {
		padding: 0 60px 0 12px;
		min-height: var(--header-total-height-480);
	}
	.header_group h1, .site_logo {
		padding: 5px 0 0;
	}
	.site_logo img, .header_group h1 img {
		max-width: 200px;
	}
	.guide_belt {
		padding: 0 0 5px;
	}
	.guide_belt img {
		max-width: 200px;
	}
	.header_group .nav_guide {
		gap: 0;
	}
	.header_group .nav_guide .guide_agent, .header_group .nav_guide .guide_access {
		width: 64px;
		height: 100%;
	}
	.header_group .nav_guide .guide_agent a, .header_group .nav_guide .guide_access a {
		font-size: 1.0rem;
		border: none;
		border-left: 1px solid #ccc;
	}
}
/* =========================================
   Global navigation
========================================= */
.hamburger {
	display: none;
}
.header_group nav.nav_global {
	grid-area: nav;
	width: 100%;
}
.nav_global__list {
	width: 100%;
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
	background: transparent;
}
.nav_global__list > li {
	position: relative;
	flex: 1 1 0;
	min-width: 0;
}
.nav_global__list > li::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 1px;
	background: linear-gradient(to bottom, #fff, #ccc);
}
.nav_global__list > li:last-child::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 1px;
	background: linear-gradient(to bottom, #fff, #ccc);
}
.nav_global__list > li > a, .nav_global__parent > a {
	width: 100%;
	min-height: 7.6rem;
	color: #3f1f00;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0.25em;
	padding: 0 0.4em;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	position: relative;
	transition: 0.3s;
}
.nav_global__list > li > a:hover, .nav_global__list > li.onview > a, .nav_global__parent > a:hover, .nav_global__list > li.onview .nav_global__parent > a {
	color: #d70c19;
}
.nav_global__list > li > a:hover::after, .nav_global__list > li.onview > a::after, .nav_global__parent > a:hover::after, .nav_global__list > li.onview .nav_global__parent > a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 4px;
	background: #d70c19;
}
.nav_global__list a .en {
	color: #d70c19;
	font-size: 1rem;
	font-weight: 400;
}
.nav_global__parent {
	position: relative;
}
.nav_toggle {
	display: none;
}
.nav_child {
	display: none;
}
@media only screen and (min-width: 1000px) {
	.nav_global__list {
		width: 100%;
		display: flex;
		justify-content: stretch;
		align-items: stretch;
	}
	.nav_global__list > li {
		position: relative;
		flex: 1 1 auto;
		min-width: 0;
	}
	.nav_global__list > li > a, .nav_global__parent > a {
		padding: 0 0.8em;
	}
}
/* =========================
   999px以下
========================= */
@media only screen and (max-width: 999px) {
	.hamburger {
		position: fixed;
		top: var(--header-band-height);
		right: 0;
		width: 60px;
		height: 60px;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0;
		border: 0;
		background: #ffcc00;
		color: #000;
		cursor: pointer;
		z-index: 50;
	}
	.header_group nav.nav_global {
		height: calc(100vh - 68px);
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		margin-top: 0;
		padding-top: calc(var(--header-base-height) + var(--header-band-height));
		background: #3d1800;
		color: #fff;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		z-index: -1;
		display: none;
		padding-bottom: 2rem;
	}
	.header_group nav.nav_global.is-open {
		display: block;
	}
	.nav_global__list {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		min-height: 100%;
	}
	.nav_global__list > li {
		border-top: 1px solid #8c664d;
		flex: 0 0 auto;
	}
	.nav_global__list > li:last-child {
		border-bottom: 1px solid #8c664d;
	}
	.nav_global__list > li::before, .nav_global__list > li::after {
		display: none;
	}
	.nav_global__list > li > a, .nav_global__parent > a {
		min-height: auto;
		color: #fff;
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		flex-wrap: wrap;
		gap: 0.3em;
		padding: 0.75em 1em;
		font-size: 1.5rem;
		font-weight: 500;
		text-align: left;
	}
	.nav_global__list > li > a:hover, .nav_global__parent > a:hover, .nav_global__list > li.onview > a, .nav_global__list > li.onview .nav_global__parent > a {
		color: #ecca1d;
	}
	.nav_global__list > li > a:hover::after, .nav_global__parent > a:hover::after, .nav_global__list > li.onview > a::after, .nav_global__list > li.onview .nav_global__parent > a::after {
		content: none;
	}
	.nav_global__list a .en {
		color: #fff;
		font-size: 0.85em;
	}
	.nav_global__list a br {
		display: none;
	}
	.nav_global__parent {
		display: flex;
		align-items: stretch;
	}
	.nav_global__parent > a {
		flex: 1 1 auto;
		padding-right: 0.5em;
	}
	.nav_toggle {
		display: flex;
		justify-content: center;
		align-items: center;
		flex: 0 0 4.4rem;
		border: 0;
		background: transparent;
		color: #fff;
		cursor: pointer;
		position: relative;
	}
	.nav_toggle::before {
		content: "＋";
		display: flex;
		justify-content: center;
		align-items: center;
		width: 1.4em;
		height: 1.4em;
		background: #fff;
		color: #000;
		border-radius: 0.25em;
		font-size: 1.4rem;
		font-weight: 700;
		line-height: 1;
	}
	.nav_global__list > li.is-open .nav_toggle::before {
		content: "ー";
	}
	.nav_child {
		display: none;
		flex-direction: column;
	}
	/*.nav_global__list > li.is-open > .nav_child {
		display: flex;
	}*/
	.nav_child > li {
		border-top: 1px solid #8c664d;
	}
	.nav_child a {
		display: flex;
		padding: 0.55em 1em 0.55em 1.75em;
		color: #fff;
		font-size: 1.4rem;
		font-weight: 400;
		line-height: 1.6;
		text-decoration: none;
	}
}
@media only screen and (max-width: 480px) {
	.header_group nav.nav_global {
		height: calc(100vh - 14.75vw);
		padding-top: calc(var(--header-base-height) + var(--header-band-height));
	}
}
/* =========================================
   Legacy business info / footer migration
   for removing index.css
========================================= */
/* 営業インフォメーション */
/* -----------------------------------------
   bizInfo
----------------------------------------- */
.bizInfo {
	width: 100%;
	margin-top: 4rem;
	background: #fff;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.18);
}
.bizInfo .bizTitle {
	margin: 0;
	padding: 1.2rem 1.6rem;
	background: #462009;
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
}
.bizInfo dl {
	padding: 1.6rem;
	width: 100%;
}.bizInfo dt {
	display: inline-block;
	position: relative;
	float: left;
	padding: 1rem 0 0.7rem 0;
	font-weight: 700;
	z-index: 1;
	color: #482914;
	font-size: 1.5rem;
	line-height: 1.7;
}

.bizInfo dd {
	border-bottom: 1px dashed #cccccc;
	margin: 0;
	padding: 1rem 0 0.7rem 10.5em;
	font-size: 1.5rem;
	line-height: 1.7;
	color: #482914;
}

@media only screen and (max-width: 768px) {
	.bizInfo dt {
		float: none;
		display: block;
		padding: 1rem 0 0.4rem;
		font-size: 1.4rem;
		line-height: 1.6;
	}

	.bizInfo dd {
		padding: 0 0 1rem;
		font-size: 1.4rem;
		line-height: 1.8;
	}

	.bizInfo dl {
		width: calc(100% - 20px);
	}
}
.bizInfo dd strong {
	font-weight: 700;
}
.bizInfo .comment, .bizInfo span.comment {
	display: block;
	margin-top: 1.2rem;
	font-size: 1.4rem;
	line-height: 1.8;
}
.bizInfo .comment_line {
	padding-top: 1.2rem;
	border-top: 1px solid #e4ddd5;
}
.tel01 {
	font-weight: 700;
}
.tx_indent01 {
	padding-left: 1em;
	text-indent: -1em;
}
/* -----------------------------------------
   bizInfo2
----------------------------------------- */
.bizInfo2 {
	margin: 4rem 0 0;
	max-width: 100%;
	padding: 0;
	background: #fff;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.18);
}
.bizInfo2 > p:first-child {
	margin: 0;
	padding: 1.2rem 1.6rem;
	background: #462009;
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
}
.bizInfo2_inner {
	padding: 2rem;
}
.bizInfo2 .left {
	margin: 0;
	font-size: 1.5rem;
	line-height: 1.8;
}
.txt_red {
	color: #d70c19;
	font-weight: 700;
}
.bixinfo_image_col2 {
	display: flex;
	flex-wrap: wrap;
	column-gap: 1em;
	row-gap: 1em;
}
.bixinfo_image_col2 > div {
	width: calc((100% - 1em) / 2);
}
.bixinfo_image_col2 > div img {
	display: block;
	width: 100%;
	height: auto;
}
@media (max-width: 480px) {
	.bixinfo_image_col2 {
		flex-direction: column;
	}
	.bixinfo_image_col2 > div {
		width: 100%;
	}
}
/* page top */
#pageTop {
	position: fixed;
	right: 20px;
	bottom: 20px;
	font-size: 77%;
	z-index: 10;
}
#pageTop a {
	display: block;
	width: 100px;
	padding: 20px 0;
	background: #666;
	color: #fff;
	text-align: center;
	text-decoration: none;
	border-radius: 5px;
	opacity: 0.8;
}
#pageTop a:hover {
	background: #999;
	text-decoration: none;
}
/* footer */
#footer {
	clear: both;
	background-image: url("../../css/img/img_footer_bg.png");
	background-repeat: repeat;
	margin: 0 auto;
	padding-bottom: 50px;
	color: #fff;
	text-align: center;
}
#footer .inner {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	overflow: hidden;
}
#footer .footerNavBg {
	width: 100%;
	background: #333;
	display: flex;
	justify-content: center;
}
#footer ul.footerNav {
	width: min(100%, 1000px);
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	padding: 15px 0 10px;
}
#footer ul.footerNav li {
	width: 20%;
	margin-bottom: 10px;
	font-size: 1.4rem;
}
#footer ul.footerNav li a {
	position: relative;
	color: #ffcc00;
	text-decoration: none;
}
#footer ul.footerNav li a::before {
	position: absolute;
	content: "\0BB";
	top: -0.2em;
	left: -0.5em;
	font-size: 1.6rem;
	transition: 0.3s ease-in-out;
}
#footer ul.footerNav li a:hover {
	color: #fff;
}
.accordion_footer {
	display: none;
}
/* SP footer */
@media only screen and (max-width: 768px) {
	#footer ul.footerNav {
		display: none;
	}
	.accordion_footer {
		display: block;
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
		background: #333;
		text-align: left;
	}
	.accordion_footer a {
		display: block;
		color: #ffcc00;
		text-decoration: none;
	}
	.accordion_footer .link {
		position: relative;
		display: block;
		padding: 15px;
		cursor: pointer;
		font-size: 14px;
		font-weight: 700;
		color: #ffcc00;
		border-bottom: 1px solid #666;
		transition: all 0.4s ease;
	}
	.accordion_footer li:last-child .link {
		border-bottom: 0;
	}
	.accordion_footer li i {
		position: absolute;
		top: 16px;
		left: 2px;
		font-size: 1.8rem;
		color: #666;
		transition: all 0.4s ease;
	}
	.accordion_footer li i.fa-chevron-down {
		right: 12px;
		left: auto;
		font-size: 1.6rem;
	}
	.accordion_footer li.open .link, .accordion_footer li.open i {
		color: #ffcc00;
	}
	.accordion_footer li.open i.fa-chevron-down {
		transform: rotate(180deg);
	}
	.accordion_footer li.default .submenu {
		display: block;
	}
	.accordion_footer .submenu {
		display: none;
		background: #555;
		font-size: 14px;
	}
	.accordion_footer .submenu li {
		border-bottom: 1px solid #333;
	}
	.accordion_footer .submenu a {
		display: block;
		padding: 12px 12px 12px 42px;
		color: #fff;
		text-decoration: none;
		transition: all 0.25s ease;
	}
	.accordion_footer .submenu a:hover {
		background: #ffcc00;
		color: #3d1800;
	}
}
/* responsive */
@media only screen and (max-width: 999px) {
	.bizInfo, .bizInfo2 {
		width: 100%;
		max-width: none;
	}
	#footer ul.footerNav {
		padding: 15px 10px 10px;
	}
}
@media only screen and (max-width: 640px) {
	#footer {
		padding-bottom: 80px;
	}
	#pageTop {
		bottom: 70px;
	}
	#footer ul.footerNav li {
		font-size: 1.2rem;
		padding: 0 1rem;
	}
}
@media only screen and (max-width: 480px) {
	.bizInfo dd span.br::before, span.br::before {
		content: "\A";
		white-space: pre;
	}
	#footer {
		padding-bottom: 80px;
	}
	.bixinfo_image_col2 > div {
		width: 100%;
	}
}
/* =========================================
   Facility information cards
   migration from index.css
========================================= */
.indexColumn {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 78rem;
	margin: 0;
}
.indexColumn .grid {
	width: 32%;
	background: #fff;
	margin-bottom: 2rem;
	box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
}
.indexColumn .grid h2 {
	clear: both;
	margin: 0;
	padding: 0.5em 0.5em 0.65em 0;
	padding-left: 1.75em;
	background: #462009;
	color: #ffcc00;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.25;
	text-indent: -1.75em;
}
.indexColumn .grid h2::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f024";
	font-size: 1em;
	margin: 0 0.25em 0 0.5em;
}
.indexColumn .grid h2.ex {
	background: #ffcc00;
	color: #6c2d00;
}
.indexColumn .grid h3 {
	clear: both;
	margin: 0.5rem 0.3rem 0.7rem;
	color: #d70c19;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: -0.04em;
}
.indexColumn .grid .box {
	padding: 0.5rem 0.5rem 1.5rem;
	color: #000;
}
.indexColumn .grid .box p {
	margin: 0;
	font-size: 1.4rem;
	text-align: left;
	line-height: 1.7;
}
.indexColumn .grid .box p span {
	color: #d70c19;
}
.indexColumn .grid .box img {
	max-width: 100%;
	height: auto;
}
.indexColumn figure {
	width: 100%;
	height: 100%;
	overflow: hidden;
	margin: 0;
}
.indexColumn figure img {
	transition: transform 0.25s linear;
}
.indexColumn figure img:hover {
	transform: scale(1.05);
}
/* responsive */
@media only screen and (max-width: 999px) {
	.indexColumn {
		width: 100%;
	}
	.indexColumn h2 {
		margin: 0 0 0.5rem 0;
		padding: 1.6rem 0 1.6rem 6.5rem;
	}
	.indexColumn h2 br {
		display: none;
	}
	.indexColumn h3 {
		display: inline;
	}
	.indexColumn .grid.last {
		margin-right: 0;
	}
	.indexColumn .grid img {
		float: left;
		max-width: 15rem;
		margin-right: 0.5rem;
		margin-bottom: 1rem;
	}
	.indexColumn .grid .box p {
		margin-top: 0.5rem;
	}
}
@media only screen and (max-width: 768px) {
	.indexColumn .grid {
		width: 49%;
	}
	.indexColumn .grid h3 {
		font-size: 1.4rem;
	}
	.indexColumn .grid img {
		max-width: 13rem;
	}
	.indexColumn .grid .box p {
		font-size: 1.2rem;
	}
}
@media only screen and (max-width: 640px) {
	.indexColumn figure {
		text-align: center;
	}
	.indexColumn .grid img {
		float: none;
		max-width: 100%;
		margin: 0 auto;
	}
}
@media only screen and (max-width: 480px) {
	.indexColumn .grid h2 {
		padding-left: 0.5em;
		text-indent: 0;
		letter-spacing: -0.05rem;
	}
	.indexColumn .grid h2::before {
		content: none;
	}
}