@charset "utf-8";
/* @import url('https://fonts.googleapis.com/css?family=Open+Sans'); */

:root {
	--main-bg-color: #ffffff;
	--main-txt-color :#333333;
	--bs-white:#ffffff;
	--bs-gray: #808080;
	--bs-gray-dark: #565656;
	--bs-gray-light: #D2D2D2;

	--bs-primary: #B26022;
	--bs-primary-rgb: 178, 96, 34;
	--bs-primary-light: #D1A07A;
	--bs-primary-light-02: #F6ECE4;
	

	--bs-secondary: #F0DFD3;
	--bs-secondary-dark: #593011;
	
	--def-width: 94%;
	--def-max-width: 1080px;

	--def-font-family: 'Noto Serif JP', serif;
	--def-en-font-family: 'Montserrat', serif;

	--font-size--bs: 16px;
	--font-size--sm: 14px;
	--font-size--md: 20px;
	--font-size--lg: 24px;
	--font-size--xl: 36px;
	--font-size--xxl: 50px;

	--filter-box-shadow: drop-shadow(2px 2px 10px rgba(178,96,34,0.6));
	--filter-box-shadow-02: drop-shadow(0px 0px 3px rgba(0,0,0,0.2));
	--filter-box-shadow-03: drop-shadow(2px 2px 10px rgba(178,96,34,0.2));
}


/* XX-Large devices (larger desktops, 1400px and up) */
@media (max-width: 1400px) {
}
/* X-Large devices (large desktops, 1200px and up) */
@media (max-width: 1200px) {
}
/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
	:root {
		--font-size--bs: 16px;
		--font-size--sm: 14px;
		--font-size--md: 18px;
		--font-size--lg: 22px;
		--font-size--xl: 34px;
		--font-size--xxl: 46px;
	}
}
/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
	:root {
		--font-size--bs: 16px;
		--font-size--sm: 14px;
		--font-size--md: 18px;
		--font-size--lg: 20px;
		--font-size--xl: 28px;
		--font-size--xxl: 40px;
	}
}
/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
}
@media (max-width: 479px) {	
}

/* リスト要素をリセットする ---------------- */
dl,dt,dd,ol,ul,li	{
	list-style-position: outside;
	list-style-type: none;
}
/*box-sizingを全ブラウザに対応*/
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

/* floatの解除 ------------- */
.fbox{
	clear:both;
	_display: inline-block;
	min-height: 1%;
}
.fbox:after {
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
	content: ".";
	line-height: 0;
}



/* ===================================================================

	スタイルの設定

=================================================================== */
html {
	font-size: var(--font-size--bs);
	scroll-behavior: smooth;
}
body{
	color:var(--main-txt-color);
	line-height:1.6;
	margin:0;
	background:var(--main-bg-color);
	font-family: var(--def-font-family);
	font-weight: 500;
	letter-spacing: 0.08em;
	overflow-x: hidden;
}

#contents {
	box-sizing: border-box;
}
#contents * {
	box-sizing: border-box;
}
img {
	max-width: 100%;
	height: auto;
}



/* ---------------- 上書き ------------- */
strong {font-weight:700;}
p,li,dl,dt,dd {line-height:1.8;}
.red{	color:#F40027;}
.red2{	color:#DC0000;}
.blue{	color:blue;}
.blue{	color:blue;}
.txt-left {	text-align:left;}
.txt-right {	text-align:right;}

small {
	font-size: 80%;
}

.bg {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	background-color: rgba(51,51,51,0.7);
	display: none;
}

/* ===================================================================
	通常のリンク
=================================================================== */
a {
	transition: all .3s;
}
a:link {
	color: var(--main-txt-color);
	text-decoration: none;
}
a:visited {
	color: var(--main-txt-color);
	text-decoration:none;
}
a:hover {
	color: var(--bs-gray);
	text-decoration: none;
/*	opacity: 0.7;*/
}
a:active {
	color: var(--bs-gray);
	text-decoration:none;
}
/* メインエリアはリンクにアンダーライン */
/*#main a{
	text-decoration:underline;
}*/

/* ===================================================================
	#header
	ヘッダー
=================================================================== */
header {
	position: relative;
	width: 100%;
	z-index: 100;
}

/* パターン画像 */
header::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 430px;
	height: 256px;
	background: url(../img/header_cloud_left.png) no-repeat;
	background-size: contain;
}

header::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 140px;
	right: 0;
	width: 296px;
	height: 196px;
	background: url(../img/header_cloud_right.png) no-repeat;
	background-size: contain;
}

.header_inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
/*	max-width: 1440px;*/
	width: var(--def-width);
	margin: 0 auto;
	padding: 20px 0;
	z-index: 100;
	position: relative;
}

/* ヘッダーロゴ */
.h_logo {
}
.h_menu {
}
.h_info {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-bottom: 20px;
}
.h_info i {
	margin-right: 5px;
	font-size: var(--font-size--md);
}

/* 営業時間 */
.h_business_hours,
.h_tel_link a,
.h_contact_btn a {
	display: flex;
	align-items: center;
	line-height: 1.2;
}

.h_business_hours {
	font-weight: 600;
	letter-spacing: 0.08em;
}
.h_business_hours i {
	color: var(--bs-primary);
}

/* 電話 */
.h_tel_link a {
	margin: 0 20px 0 40px;
	color: var(--bs-primary);
	font-size: 28px;
	font-weight: 700;
}

/* 問い合わせボタン */
.h_contact_btn a {
	height: 40px;
	line-height: 40px;
	padding: 0 25px;
	background: var(--bs-primary);
	border: 1px solid var(--bs-primary);
	color: var(--bs-white);
	text-align: center;
	border-radius: 20px;
	font-weight: 700;
}
.h_contact_btn a:hover {
	background: var(--bs-white);
	color: var(--bs-primary);
}

/* gmenu */
.g_menu ul {
	display: flex;
	justify-content: space-between;
}
.g_menu ul li {
	margin-left: 25px;
}
.g_menu ul li:first-child {
	margin-left: 0;
}
.g_menu ul li a {
	display: block;
	color: var(--main-txt-color);
	text-align: center;
	font-weight: 600;
}
.g_menu ul li a:hover {
	color: var(--bs-primary);
}
.g_menu ul li a span {
	display: block;
	color: var(--bs-gray);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.08em;
}

.sp_menu_btn,
.sp_gnav {
	display: none;
}


/* ===================================================================
	#footer
	フッター
=================================================================== */

footer {
	background: url(../img/bg.png) repeat center top;
}

.f_inner {
	display: flex;
	justify-content: space-between;
	max-width: var(--def-max-width);
	width: var(--def-width);
	margin: 0 auto;
	padding: 40px 0 60px;
}

/* フッターロゴ */
.f_logo {
	margin-bottom: 32px;
}
.f_logo a:hover {
	opacity: 0.6;
}
.f_logo img {
	width: 200px;
}

.f_tel_link {
	margin-bottom: 10px;
}
.f_tel_link a,
.f_contact_btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	margin: 0 auto;
}
.f_tel_link a {
	color: var(--bs-primary);
	font-size: var(--font-size--lg);
	font-weight: 700;
}
.f_contact_btn a {
	min-width: 200px;
	height: 40px;
	line-height: 40px;
	padding: 0 2em;
	background: var(--bs-primary);
	border: 1px solid var(--bs-primary);
	color: var(--bs-white);
	font-weight: 700;
	text-align: center;
	border-radius: 20px;
}
.f_tel_link a i,
.f_contact_btn a i {
	margin-right: 5px;
}
.f_contact_btn a:hover {
	background: var(--bs-white);
	color: var(--bs-primary);
}



/* フッターメニュー */
.f_menu {
/*	padding-top: 20px;*/
}
.f_menu {
	display: flex;
	flex-wrap: wrap;
}
.f_menu_list {
	margin-right: 70px;
}
.f_menu_list:last-child {
    margin: 0;
}
.f_menu_list li {
	margin-bottom: 25px;
}
.f_menu_list li:last-of-type {
	margin-bottom: 0;
}
.f_menu_list li a {
	display: block;
	color: var(--main-txt-color);
	font-weight: 600;
}
.f_menu_list li a:hover {
	color: var(--bs-primary);
}
.f_menu_list li a span {
	display: block;
	margin-top: 3px;
	color: var(--bs-gray);
	font-size: var(--font-size--sm);
	font-weight: 400;
	letter-spacing: 0.08em;
}

/* フッター下部 */

.f_btm {
	background: var(--bs-primary);
}

.f_btm_inner {
	display: flex;
	align-items: center;justify-content: space-between;
	max-width: var(--def-max-width);
	width: var(--def-width);
	margin: 0 auto;
	padding: 17px 0;
	font-size: 12px;
	font-weight: 500;
}

address {	
	margin: 0;
	color: var(--bs-white);
	font-style: normal;
}

/* フッターリンク */

.f_btm_menu ul {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.f_btm_menu ul li a {
	margin-left: 20px;
	color: var(--bs-white);
}
.f_btm_menu ul li a:hover {
	opacity: 0.6;
}



/* XX-Large devices (larger desktops, 1400px and up) */
@media (max-width: 1400px) {

}
/* X-Large devices (large desktops, 1200px and up) */
@media (max-width: 1200px) {
	header::before {
		top: 0;
		left: 0;
		width: 430px;
		height: 256px;
	}
	header::after {
		top: 100px;
		right: 0;
		width: 296px;
		height: 196px;
	}

	.h_logo img {
		width: auto;
		height: 80px;
	}
	.h_menu {
		display: none;
	}
	.sp_menu_btn {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 60px;
		height: 60px;
		border-radius: 50%;
		
		font-family: var(--def-en-font-family);
		font-weight: 700;
		font-size: 11px;

		position: fixed;
		top: 20px;
		right: 3%;
		cursor: pointer;
	}
	.sp_menu_open {
		background: var(--bs-primary);
		color: var(--bs-white);
	}
	.sp_menu_close {
		background: var(--bs-primary-light-02);
		color: var(--bs-primary);
/*		display: none;*/
	}
	.sp_menu_btn_icon {
		margin-bottom: 2px;
	}
	.sp_gnav {
		display: none;
		width: 100%;
		height: 100%;
		padding: 3%;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 200;
		overflow-y: auto;

		background: var(--bs-primary);
		color: var(--bs-white);
	}
	
	.g_sp_menu li a,
	.g_sp_menu_sub li a {
		color: var(--bs-white);
	}

	.g_sp_menu li {
		margin: 1em 0;
	}
	.g_sp_menu li a {
		font-size: var(--font-size--md);
		font-weight: 600;
	}
	.g_sp_menu li a span {
		margin-left: 1.5em;
		font-size: var(--font-size--sm);
		font-weight: 500;
		color: var(--bs-primary-light-02);
		letter-spacing: 0.08em;
	}
	.g_sp_menu_sub {
		margin: 2em 0;
	}
	.g_sp_menu_sub li {
		margin-bottom: 0.2em;
	}
	.g_sp_menu_sub li a {
		font-size: var(--font-size--sm);
	}

	.sp_menu_contact {
		display: flex;
		justify-content: space-around;
		align-items: center;
	}
	.sp_menu_contact > div {
		width: 40%;
	}
	.sp_menu_contact .h_tel_link a {
		justify-content: center;
		align-items: center;
		width: fit-content;
		margin: 0 auto;
		font-size: 35px;
		color: var(--bs-white);
	}
	.sp_menu_contact .h_tel_link a i {
		margin-right: 0.2em;
		font-size: 26px;
	}
	.sp_menu_contact .h_contact_btn a {
		justify-content: center;
		height: 60px;
		line-height: 60px;
		border-radius: 30px;
		background: var(--bs-white);
		color: var(--bs-primary);
		font-size: var(--font-size--md);
	}
	.sp_menu_contact .h_contact_btn a i {
		margin-right: 0.5em;

	}
}
/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
	header::before {
		top: 0;
		left: 0;
		width: calc(430px * 0.8);
		height: calc(256px * 0.8);
	}
	header::after {
		top: 100px;
		right: 0;
		width: calc(296px * 0.8);
		height: calc(196px * 0.8);
	}
	.f_inner {
		display: block;
		/*padding: 20px 0;*/
	}
	.f_info {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin-bottom: 40px;
	}
	.f_logo {
		width: 100%;
		margin-bottom: 20px;
		text-align: center;
	}
	.f_tel_link,
	.f_contact_btn {
		margin: 0 10px;
	}
	.f_menu {
		width: fit-content;
		margin: 0 auto;
	}
	.f_menu_list {
		margin-right: 40px;
	}
	.f_menu_list:last-child {
		margin-right: 0;
	}
}
/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
	header::before {
		top: 0;
		left: 0;
		width: calc(430px * 0.6);
		height: calc(256px * 0.6);
	}
	header::after {
		top: 60px;
		right: 0;
		width: calc(296px * 0.6);
		height: calc(196px * 0.6);
	}
	.header_inner {
		padding: 15px 0;
	}
	.h_logo img {
		width: auto;
		height: 60px;
	}
	.sp_menu_btn {
		top: 15px;
	}

	.sp_menu_contact {
		display: block;
	}
	.sp_menu_contact > div {
		width: 100%;
		margin: 1em 0;
	}

	.f_inner {
		padding: 30px 0;
	}
	.f_info {
		margin-bottom: 0;
	}
	.f_logo img {
		width: 150px;
	}
	.f_tel_link,
	.f_contact_btn {
		width: 100%;
		margin: .3em 0;
	}
	.f_btm_inner {
		display: block;
		text-align: center;
	}
	.f_btm_menu {
		display: none;
	}
	.f_menu {
		display: none;
	}

}
/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {

}
@media (max-width: 479px) {	
}














/* ===================================================================
	共通CSS
=================================================================== */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

#main {
	padding: 0 0 1px;
	background: url(../img/bg.png) repeat center top;
}

.sp_br {
	display: none;
}


.bk_white {
	margin: 100px auto 180px;
	padding: 45px 0;
	position: relative;
	background: var(--bs-white);
}
.bk_white:last-child {
	margin-bottom: 80px;
}
.bk_white::before,
.bk_white::after {
	content: '';
	display: block;
	width: 100%;
	height: 50px;
	position: absolute;
}
.bk_white::before {
	top: -40px;
	background: url(../img/bk_wave_top.svg) repeat-x top center;
}
.bk_white::after {
	bottom: -40px;
	background: url(../img/bk_wave_btm.svg) repeat-x bottom center;
}

.bk_white_inner {
	max-width: var(--def-max-width);
	width: var(--def-width);
	margin: 0 auto;
}

/* 見出し */
.h_brown,
.h_white {
	position: relative;
	margin:  70px 0 50px;
	color: var(--main-txt-color);
	font-size: var(--font-size--xl);
	text-align: center;
	font-weight: 700;
	letter-spacing: 5px;
	z-index: 0;
}
.h_brown span,
.h_white span {
	display: block;
	margin-top: 5px;
	color: var(--bs-primary);
	font-size: var(--font-size--md);
	font-weight: 600;
	letter-spacing: 0.08em;
}
.h_brown::before,
.h_white::before {
	content: "";
	display: inline-block;
	position: absolute;
	margin: auto;
	top:-60px;
	left: 0;
	right: 0;
	width: 133px;
	height: 114px;
	z-index: -1;
}
.h_brown::before {
	background: url(../img/icon_hot_springs_brown.svg) no-repeat center;
	background-size: contain;
}
.h_white::before {
	background: url(../img/icon_hot_springs_white.svg) no-repeat center;
 	background-size: contain;
}





/* 写真ありメニュー */
.page_menu {
	max-width: var(--def-max-width);
	width: var(--def-width);
	margin: 0 auto;
}
.menu_link {
	display: flex;
	flex-wrap: wrap;
}
.menu_link li {
	width: 47%;
}
.menu_link li {
	margin: 0 6% 6% 0;
	background: var(--bs-white);
	border-radius: 20px;
}
.menu_link li:nth-child(even) {
	margin-right: 0;
}
.menu_link li a {
	display: block;
	border-radius: 20px;
	color: var(--main-txt-color);
}
.menu_link li a:hover {
	opacity: 0.6;
}
.menu_link li a .menu_img img {
	aspect-ratio: 5/3;
	width: 100%;
	object-fit: cover;
	object-position: top center;
	border-radius: 20px 20px 0 0;
}
.menu_link_inner {
	padding: 0 40px 40px;
}
.menu_link_icon {
	margin: -45px 0 5px 0;
	text-align: center;
}
.menu_link li .menu_title {
	color: var(--main-txt-color);
	font-size: var(--font-size--xl);
	line-height: 1.6;
	text-align: center;
	font-weight: 700;
	letter-spacing: 5px;
}
.menu_link li .menu_title span {
	display: block;
	color: var(--bs-primary);
	font-size: var(--font-size--md);
	font-weight: 600;
	letter-spacing: 0.08em;
}
.menu_link li p {
	margin-top: 25px;
}


.page_menu .menu_link li a .menu_img img {
	aspect-ratio: 5/2.2;
	object-position: center center;
}
.page_menu .menu_link_inner {
	padding: 0 20px 20px;
}
.page_menu .menu_link_icon {
	margin-bottom: 0;
}
.page_menu .menu_link li .menu_title {
	font-size: var(--font-size--lg);
}
.page_menu .menu_link li .menu_title span {
	font-size: var(--font-size--bs);
	font-weight: 500;
}




/* フッター　アクセス
=================================================================== */
.top_access {
	position: relative;
}
.top_access_inner {
	display: flex;
	justify-content: space-between;
	max-width: var(--def-max-width);
	width: var(--def-width);
	margin: 0 auto;
}
/*
.h_access {
	max-width: var(--def-max-width);
	width: var(--def-width);
	margin: -150px auto 30px;
	color: var(--main-txt-color);
	font-size: var(--font-size--xl);
	font-weight: 700;
	-ms-writing-mode: tb-lr;
	writing-mode: vertical-lr;
	line-height: 1.3;
	z-index: 10;
	position: relative;
}
.h_access span {
	display: block;
	margin-top: 5px;
	color: var(--bs-primary);
	font-size: var(--font-size--md);
	font-weight: 600;
	letter-spacing: 2px;
}*/
/* マップ ------------- */
.top_map {
	width: 62%;
/*	width: 60%;
	position: absolute;
	top: calc(50% + 110px);
	left: 0;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);*/
}
.top_map iframe {
	width: 100%;
	height: 500px;
}
.top_access_info_area {
	width: 32%;
	min-height: 500px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.top_access_info {
}
.top_access_info h3 {
	margin-bottom: 5px;
	color: var(--bs-primary);
	font-size: var(--font-size--lg);
	font-weight: 700;
	letter-spacing: 2px;
}
.top_access_info p {
	margin-bottom: 25px;
}
.top_access_info p:last-of-type {
	margin-bottom: 0;
}



/* フォーム -------------------- */
input,button,textarea,select {
	outline: none;
	font-size:var(--font-size--bs);
	font-family: var(--def-font-family);
	font-weight: 400;
}
.form_control {
	display: block;
	width: 100%;
	padding: 0.4em 0.5em;
	font-weight: 400;
	line-height: 1.5;
	color: var(--main-txt-color);
	background-color: var(--bs-white);
	background-clip: padding-box;
	border: 1px solid var(--bs-gray-light);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0.25em;
}

.form_select {
	position: relative;
	display: block;
	width: 100%;
	padding: 0.4em 2em 0.4em 0.5em;
	line-height: 1.5;
	background-color: var(--bs-white);
	background-image: url(../img/icon_select_arrow.svg);
	background-repeat: no-repeat;
	background-position: right 0.5em center;
	background-size: auto .7em;
	border: 1px solid var(--bs-gray-light);
	border-radius: 0.25em;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}



a.btn {
	display: block;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	max-width: 320px;
	height: 4rem;
	margin: 0 auto;
	background: var(--bs-primary);
	border: 1px solid var(--bs-primary);
	color: var(--bs-white);
	text-align: center;
	font-size: var(--font-size--md);
	font-weight: 700;
	border-radius: 2rem;
}
a.btn::after {
	content: '\f054';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 1rem;
	display: flex;
	align-items: center;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}
a.btn_back::after {
	content: '\f053';
	position: absolute;
	left: 1rem;
	right: inherit;
}
a.btn:hover {
	background: var(--bs-white);
	color: var(--bs-primary);
}
a.btn:hover::after,
a.btn_back:hover::after {
	color: var(--bs-primary);
}


/* XX-Large devices (larger desktops, 1400px and up) */
@media (max-width: 1400px) {
}
/* X-Large devices (large desktops, 1200px and up) */
@media (max-width: 1200px) {
}
/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
	.top_access_inner {
		display: block;
	}
	.top_map {
		width: 100%;
		margin-bottom: 40px;
		position: inherit;
		top: inherit;
		left: inherit;
		-webkit-transform: inherit;
		transform: inherit;
	}
	.top_map iframe {
		height: 350px;
	}
	.top_access_info_area {
		width: fit-content;
		min-height: inherit;
		margin: 0 auto;
	}

}
/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
	.menu_link li {
		width: 100%;
		max-width: 500px;
		margin: 0 auto 20px!important;
	}
	.menu_link_inner {
		padding: 0 20px 20px;
	}
	.menu_link_icon {
		margin: -40px 0 0;
	}
	.menu_link_icon img {
		width: 80px;
	}
	
}
/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
	.top_map iframe {
		height: 300px;
	}
}
@media (max-width: 479px) {	
}





/* ===================================================================
	第二階層共通CSS
=================================================================== */

/* ページタイトル ------------- */
.page_title_area {
	position: relative;
	z-index: 1;
}
.page_title_area .page_title {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	display: flex;
	align-items: center;
}
.page_title_area .page_title h1 {
	width: var(--def-width);
	max-width: var(--def-max-width);
	margin: 0 auto;
	font-size: var(--font-size--xxl);
	font-weight: 600;
	color: var(--bs-white);
	text-align: center;
	filter: var(--filter-box-shadow-02);
}
.page_title_area .page_title h1 .page_title_ja {
	display: block;
}
.page_title_area .page_title h1 .page_title_en {
	display: block;
	font-size: var(--font-size--md);
	font-weight: 500;
}
.page_title_bk_img {
	position: relative;
	overflow: hidden;
}
.page_title_bk_img:before {
	display: block;
	padding-top: 27%;
	content: "";
}
.page_title_bk_img img {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.page_title_bk_img::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	display: block;
	width: 100%;
	height: 100%;
	margin: auto;
	background: rgba(0,0,0,0.4);
	mix-blend-mode: multiply;
}


/* パンくず ------------- */
#breadcrumb {
	max-width: var(--def-max-width);
	width: var(--def-width);
	margin: 20px auto 40px;
	font-size: var(--font-size--sm);
}
#breadcrumb ul {
	display: flex;
	flex-wrap: wrap;
}
#breadcrumb ul li::after {
	content: ">";
	display: inline;
	margin: 0 0.2em;
	color: var(--bs-gray);
}
#breadcrumb ul li:last-child::after {
	display: none;
}
#breadcrumb ul li a {
	
}
#breadcrumb ul li a:hover {
	text-decoration: underline;
}

.page_content {
	margin-bottom: 200px;
}

/* ページのイントロ共通 */
.page_intro_wrap {
	max-width: var(--def-max-width);
	width: var(--def-width);
	margin: 0 auto 80px;
}
.page_intro_title {
	margin: 0 auto 40px;
	font-size: var(--font-size--xl);
	text-align: center;
}
.page_intro {
	text-align: center;
}

.page_base_content {
	max-width: var(--def-max-width);
	width: var(--def-width);
	margin: 100px auto;
}


.page_title_h3 {
	margin: 40px 0 5px;
	color: var(--bs-primary);
	font-size: var(--font-size--lg);
	font-weight: 700;
}



/* 施設の写真＋説明 */
.facility_list {
	display: flex;
	flex-wrap: wrap;
}
.facility_list li {
	width: 48%;
	margin: 0 4% 60px 0;
}
.facility_list li:nth-child(even) {
	margin-right: 0;
}
.facility_list li:nth-last-child(1),
.facility_list li:nth-last-child(2) {
	margin-bottom: 0;
}
.facility_list_img img {
	aspect-ratio: 520/280;
	width: 100%;
	object-fit: cover;
}
.facility_list li h3 {
	margin: 30px 0;
	font-size: var(--font-size--lg);
	font-weight: 700;
	letter-spacing: 4px;
}
.facility_list li h3 span {
	display: inline-block;
	margin-left: 1.5em;
	color: var(--bs-primary);
	font-size: var(--font-size--bs);
	font-weight: 600;
	letter-spacing: 2px;
}






/* XX-Large devices (larger desktops, 1400px and up) */
@media (max-width: 1400px) {
}
/* X-Large devices (large desktops, 1200px and up) */
@media (max-width: 1200px) {
}
/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
	
}
/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
	.page_title_area .page_title h1 {
		font-size: var(--font-size--lg);
	}
	.page_title_area .page_title h1 .page_title_en {
		font-size: var(--font-size--bs);
	}


	
	.page_intro_wrap {
		margin-bottom: 40px;
	}

	.facility_list {
		display: block;
	}
	.facility_list li {
		width: 100%;
		margin: 0 0 40px!important;
	}
	.facility_list li:last-of-type {
		margin-bottom: 0!important;
	}
	.facility_list li h3 {
		margin: 20px 0;
	}
	.facility_list li h3 span {
		display: block;
		margin: 0;
		font-size: var(--font-size--sm);
	}
	/*
	.facility_list li:nth-child(even) {
		margin-right: 0;
	}
	.facility_list li:nth-last-child(1),
	.facility_list li:nth-last-child(2) {
		margin-bottom: 0;
	}*/
}
/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
	
}
@media (max-width: 479px) {
	
}






/* ===================================================================
	トップ
	top
=================================================================== */

/* MV
=================================================================== */
.mv {
	position: relative;
}
/* パターン画像 */
.mv::before {
	content: "";
	display: inline-block;
	position: absolute;
	bottom: -20px;
	left: 0;
	width: 350px;
	height: 238px;
	background: url(../img/mv_cloud.png) no-repeat;
	background-size: contain;
	z-index: 100;
}

/* 公演情報 */
.mv_programs_link {
	position: absolute;
	right: 3%;
	bottom: -20px;
	filter: var(--filter-box-shadow);
}
.mv_programs_link a {
	display: block;
}
.mv_programs_title {
	text-align: center;
}
.mv_programs_img {
	position: relative;
	margin-top: -18px;
}
.mv_programs_img::before {
	content: "";
 	display: block;
	position: absolute;
	margin: auto;
	top: -2px;
	left: 0;
	right: 0;
	width: 306px;
	height: 286px;
 	background: url(../img/mv_programs_img_frame.svg) no-repeat center;
 	background-size: contain;
	z-index: 100;
}
/*
#filter {
	filter: var(--filter-box-shadow);
}*/


/* トップ メニュー
=================================================================== */
.top_menu {
	max-width: var(--def-max-width);
	width: var(--def-width);
	margin: 80px auto 60px;
}


/* スライダー ------------- */
.slider  img {
	width: 100%;
/*	object-fit: cover;
	aspect-ratio: 400/300;*/
}
.slick-slide {
	margin: 0 5px;
}

/* トップ 入館料金
=================================================================== */
.top_price {
}
.top_price_inner {
	width: var(--def-width);
	max-width: var(--def-max-width);
	margin: 0 auto 35px;
}
/* 料金表 ------------- */
.price_tbl {
	width: fit-content;
	margin: 0 auto 30px;
	border: solid 1px var(--bs-primary);
	font-size: var(--font-size--lg);
	text-align: center;
	font-weight: 700;
}
.price_tbl tr th, 
.price_tbl tr td {
	padding: 1em 1.5em;
	border-bottom: solid 1px var(--bs-primary);
}
.price_tbl tr th {
	width: 65%;
	background: var(--bs-secondary);
	color: var(--bs-primary);
	letter-spacing: 0.08em;
}
.price_tbl tr td {
	width: 35%;
	background: var(--bs-white);
}


.price_tbl_mini {
	width: fit-content;
	margin: 0 auto;
	font-size: var(--font-size--bs);
}
.price_tbl tr th, .price_tbl tr td {
	width: auto;
	padding: 0.7em 1em;
}
.per_piece {
	font-size: 90%;
	font-weight: 500;
}


.top_price_otoku {
	margin-bottom: 30px;
	text-align: center;
	font-size: var(--font-size--lg);
	font-weight: 700;
}


.news_wrap_event {
	margin: 0 auto 100px;
}

/* トップ　SNS
=================================================================== */
.top_sns {
	max-width: var(--def-max-width);
	width: var(--def-width);
	margin: 0 auto 180px;
	padding-top: 1px;
}
.top_sns_inner {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	
}
.top_ig,
.top_x {
	width: 47%;
	max-width: 500px;
}


/* XX-Large devices (larger desktops, 1400px and up) */
@media (max-width: 1400px) {
}
/* X-Large devices (large desktops, 1200px and up) */
@media (max-width: 1200px) {

}
/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
}
/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
	.mv::before {
		width: calc(350px * 0.6);
		height: calc(238px * 0.6);
	}

	.price_tbl tr th, 
	.price_tbl tr td {
		padding: .6em 1em;
	}


	.top_sns_inner {
		display: block;
	}
	.top_ig,
	.top_x {
		width: 100%;
		margin:  0 auto;
	}
}
/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
}
@media (max-width: 479px) {	
}









/* ===================================================================
	大衆演劇
=================================================================== */
/* 大衆演劇写真 ------------- */
.taishu_about_img_area {
	display: flex;
	flex-wrap: wrap;
	max-width: var(--def-max-width);
	width: var(--def-width);
	margin: 0 auto 100px;
}

.taishu_about_img {
	width: 48%;
	margin: 0 2% 2% 0;
}
.taishu_about_img:nth-of-type(2n) {
	margin-right: 0;
}
.taishu_about_img:nth-last-child(2) {
	margin-bottom: 0;
}
.taishu_about_img:nth-last-child(1) {
	margin-bottom: 0;
}

.about_theater_intro {
	text-align: center;
	font-size: var(--font-size--md);
}
.how_to_buy {
	display: flex;
	justify-content: space-between;
}
.how_to_buy > div {
	width: 48%;
}


/* XX-Large devices (larger desktops, 1400px and up) */
@media (max-width: 1400px) {
}
/* X-Large devices (large desktops, 1200px and up) */
@media (max-width: 1200px) {
}
/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
}
/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
	.how_to_buy {
		width: fit-content;
		margin:  0 auto;
		display: block;
	}
	.how_to_buy > div {
		width: auto;
	}
}
/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
}
@media (max-width: 479px) {	
}




/* ===================================================================
	施設紹介
=================================================================== */
#inside_map.bk_white {
	margin-bottom: 100px;
}
#facility .page_base_content {
	margin-top: 0;
}
.inside_map_img {
	text-align: center;
}

.facility_title {
	margin: 60px auto 40px;
	font-size: var(--font-size--xl);
	text-align: center;
	font-weight: 700;
	letter-spacing: 5px;
	z-index: 0;
}
.facility_title:first-child {
	margin-top: 0;
}
.facility_title .facility_title_en {
	display: block;
	margin-top: 5px;
	color: var(--bs-primary);
	font-size: var(--font-size--bs);
	font-weight: 600;
	letter-spacing: 0.08em;
}
.facility_title_icon {
	display: block;
	margin-bottom: 5px;
}
.facility_title_icon img {
	width: 60px;
}


/* ===================================================================
	食事・お店
=================================================================== */
.shop_img_list {
	width: 48%;
	margin: 0 2% 2% 0;
}
.shop_img:nth-of-type(2n) {
	margin-right: 0;
}
.shop_img:nth-last-child(2) {
	margin-bottom: 0;
}
.shop_img:nth-last-child(1) {
	margin-bottom: 0;
}

.restaurant_intro {
	text-align: center;
}


/* ===================================================================
	料金
=================================================================== */
.kaisuken_title {
	margin: 0 0 20px;
	font-size: var(--font-size--md);
	color: var(--bs-primary);
	text-align: center;
}


#tomonokai .page_base_content {
	max-width: 900px;
	padding: 40px 40px;
/*	background: url(../img/tomonokai_bk_top.svg) no-repeat top center,url(../img/tomonokai_bk_btm.svg) no-repeat bottom center,#fff;
	background-size: 100% auto,100% auto,auto;*/
	background: url(../img/tomonokai_bk_01.svg) no-repeat top left,url(../img/tomonokai_bk_02.svg) no-repeat top right,url(../img/tomonokai_bk_03.svg) no-repeat bottom left,url(../img/tomonokai_bk_04.svg) no-repeat bottom right,#fff;
	border-radius: 40px;
	filter: var(--filter-box-shadow-03);
}
#tomonokai h2 {
	font-size: var(--font-size--xl);
	text-align: center;
}
.tomonokai_intro {
	margin: 40px auto;
	text-align: center;
/*	font-size: var(--font-size--md);*/
}
.tomonokai_tokuten {
	width: fit-content;
	margin: 0 auto 40px;
}
.tomonokai_tokuten dl {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.tomonokai_tokuten dl dt {
	flex-shrink: 0;
	flex-grow: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100px;
	height: 90px;
	margin-right: 20px;
	background: url(../img/tomonokai_tokuten_bk.svg) no-repeat center center;
	background-size: cover;
	font-weight: 700;
	line-height: 1.2;
	color: var(--bs-white);
}
.tomonokai_tokuten dl dt .tokuten_num {
	font-size: 180%;
}
.tomonokai_tokuten dl dd {
	font-size: var(--font-size--lg);
	font-weight: 700;
	line-height: 1.4;
}
.tomonokai_tokuten dl dd small {
	font-size: 70%;	
}

.tomonokai_kaisuken {
	margin: 0 0 20px;
	font-size: var(--font-size--lg);
	color: var(--bs-primary);
	text-align: center;
}
.tbl_tomonokai_kaisuken strong {
	color: #E53215;
	font-weight: 700;
}
.tbl_tomonokai_kaisuken .per_piece {
	font-weight: 700;
	background:linear-gradient(transparent 65%,  rgba(229, 50, 21,0.2) 65%);
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (max-width: 1400px) {
}
/* X-Large devices (large desktops, 1200px and up) */
@media (max-width: 1200px) {
}
/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
}
/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
	#tomonokai .page_base_content {
		padding: 40px 20px;
	}
	.tomonokai_tokuten dl dt {
		width: 80px;
		height: 72px;
	}
	.tomonokai_tokuten dl dt .tokuten_num {
		font-size: 120%;
	}
}
/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
}
@media (max-width: 479px) {	
}




/* ===================================================================
　　アクセス
=================================================================== */
.access_address {
	margin-bottom: 20px;
	text-align: center;
	font-size: var(--font-size--md);
	font-weight: 500;
}
.access_map iframe {
	width: 100%;
	height: 400px;
}

.access_title_h3 {
	margin: 40px 0 20px;
	color: var(--bs-primary);
	font-size: var(--font-size--lg);
	font-weight: 700;
	text-align: center;
}
.access_title_h3_icon {
	display:block;
	margin-bottom: 10px;
}
.access_title_h3_icon img {
	width: 80px;
}
.access_pattern {
	display: flex;
	justify-content: space-between;
}
.access_pattern > div {
	width: 48%;
	max-width: 500px;
}
.access_pattern p {
	text-align: center;
}

.parking_kanbi {
	margin: 20px 0;
	border: 1px solid #E53215;
	font-size: var(--font-size--md);
	font-weight: 600;
	color: #E53215;
	text-align: center;
}
.parking_img img {
	border-radius: 20px;
}

.free_shuttle_bus_link {
	margin: 20px 0;
	text-align: center;
}
.free_shuttle_bus_link a {
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 5/2;
	padding: 40px 10px;
	font-size: var(--font-size--lg);
	font-weight: 700;
	color: var(--bs-white);
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}
.free_shuttle_bus_link a:hover {
	opacity: 0.7;
}
.free_shuttle_bus_link a span {
	position: relative;
	z-index: 10;
}
.free_shuttle_bus_link a::before,
.free_shuttle_bus_link a::after {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	margin: auto;
	background-color: rgba(0,0,0,.4);
	content: "";
}
.free_shuttle_bus_link a::before {
	z-index: 1;
	background: url(../img/access_link_bk.png) no-repeat center center;
	background-size: cover;
}
.free_shuttle_bus_link a::after {
	z-index: 2;
	background-color: rgba(0,0,0,.4);
	content: "";
}

#free_shuttle_bus .page_base_content {
	margin-top: 120px;
}
.free_shuttle_bus_intro {
	margin-bottom: 20px;
	font-size: var(--font-size--xl);
	font-weight: 600;
	color: var(--bs-primary);
	text-align: center;
}
.free_shuttle_bus_img {
	text-align: center;
}


/* XX-Large devices (larger desktops, 1400px and up) */
@media (max-width: 1400px) {
}
/* X-Large devices (large desktops, 1200px and up) */
@media (max-width: 1200px) {
}
/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
}
/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
	.access_pattern {
		display: block;
	}
	.access_pattern > div {
		width: auto;
		margin: 0 auto 40px;
	}
}
/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
	
}
@media (max-width: 479px) {
}


/* ===================================================================
　　お知らせ一覧
=================================================================== */
.news_content {
	max-width: var(--def-max-width);
	width: var(--def-width);
	margin: 0 auto 50px;
}
.news_list_wrap {
	max-width: var(--def-max-width);
	width: var(--def-width);
	margin: 0 auto;
}
.news_list {
	display: flex;
	flex-wrap: wrap;
}
.news_list li {
	width: 30%;
	margin-right: 5%;
	margin-bottom: 3%;
}
.news_list li a {
	display: block;
	color: var(--main-txt-color);
}
.news_list li:nth-of-type(3n){
	margin: 0;
}
.news_thumbnail {
	/*
	aspect-ratio: 98/65;
	object-position: center center;
	overflow: hidden;*/
}
.news_thumbnail img {
	aspect-ratio: 98/65;
	object-position: center center;
	object-fit: cover;
/*	aspect-ratio: 98/65;
	object-position: center center;*/
}
.news_list_title {
	margin-bottom: 5px;
	font-size: var(--font-size--md);
	font-weight: 700;
	line-height: 1.6;
}
.news_list_content {
	font-size: var(--font-size--sm);
	color: var(--bs-gray-dark);
}
.news_info_area {
	margin: 10px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: var(--font-size--sm);
}
.news_days {
	font-weight: 600;
	color: var(--bs-gray);
}
.date {
	color: var(--bs-secondary-dark);
	font-weight: 600;
	font-size: var(--font-size--sm)
}

.news_category span {
	display: inline-block;
	padding: 0.2em 0.4em;
	margin: 0 0.3em;
	background: var(--bs-primary-light);
	color: var(--bs-white);
	font-size: 12px;
	line-height: 1.2;
}
.news_category span:last-of-type {
	margin-right: 0;
}

.news_none {
	margin-bottom: 40px;
	text-align: center;
	font-size: var(--font-size--md);
	font-weight: 500;
}


/* ページャーまとめ */
.pager {
	margin-top: 60px;
}
.wp-pagenavi {
	display: flex;
	justify-content: center;
	align-items: center;
}
.wp-pagenavi a,
.wp-pagenavi span {
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;	
	width: 2.6em;
	height: 2.6em;
	padding: 0;
	margin: 5px;
	line-height: 2.6em;
	border-radius: 50%;
	border: 1px solid var(--bs-primary)!important;
	color: var(--bs-primary);
	text-align: center;
	font-size: var(--font-size--md);
	font-weight: 500;
}
.wp-pagenavi a:hover,
.wp-pagenavi span.current {
	background: var(--bs-primary);
	color: var(--bs-white);
}

.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.previouspostslink {
	border: none!important;
}
.wp-pagenavi a.nextpostslink:hover,
.wp-pagenavi a.previouspostslink:hover {
	background: none;
	color: var(--bs-primary-light);
}


/* XX-Large devices (larger desktops, 1400px and up) */
@media (max-width: 1400px) {
}
/* X-Large devices (large desktops, 1200px and up) */
@media (max-width: 1200px) {
}
/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
	.news_list li {
		width: 47.5%;
		margin: 0 5% 5% 0;
	}
	.news_list li:nth-of-type(3n) {
		margin-right: 5%;
	}
	.news_list li:nth-of-type(2n) {
		margin-right: 0;
	}
}
/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
}
/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
	
}
@media (max-width: 479px) {
	.news_list li {
		width: 100%;
		margin: 0 0 5%;
	}
	.news_list li:nth-of-type(3n) {
		margin-right: 0;
	}
}

/* ===================================================================
　　single　お知らせ詳細
=================================================================== */
.single_content {
	max-width: var(--def-max-width);
	width: var(--def-width);
	margin: 20px auto;
	display: flex;
	justify-content: space-between;
}
.single_main {
	width: 65%;
	max-width: calc(100% - 300px);
}
.single_main_inner {
	padding: 40px;
	background: rgba(255,255,255,0.8)
}
.single_side {
	width: 30%;
	max-width: 250px;
}
.single_title {
	padding-bottom: .5em;
	font-size: var(--font-size--lg);
	font-weight: 800;
	border-bottom: 1px solid var(--bs-primary);
}
.single_main_inner .news_info_area {
	margin: 20px 0;
}
.single_thumbnail {
	margin: 40px auto;
	text-align: center;
}

.single_side h2 {
	margin: 2em 0 0.8em;
	padding-bottom: 0.2em;
	font-size: var(--font-size--md);
	font-weight: 600;
	color: var(--bs-primary);
	border-bottom: 1px solid var(--bs-primary);
}
.single_side h2:first-of-type {
	margin-top: 0;
}
.side_category_list {
}
.single_btn_area {
	margin: 40px auto 0;
}
/* XX-Large devices (larger desktops, 1400px and up) */
@media (max-width: 1400px) {
}
/* X-Large devices (large desktops, 1200px and up) */
@media (max-width: 1200px) {
}
/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
	.single_content {
		display: block;
	}
	.single_main,
	.single_side {
		width: 100%;
		max-width: inherit
	}
	.single_side {
		margin-top: 60px;
	}
	.single_side h2 {
		margin-top: 1em;
	}
}
/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
}
/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
}
@media (max-width: 479px) {	
}








/* ===================================================================
	レスポンシブ対応用
=================================================================== */
/* XX-Large devices (larger desktops, 1400px and up) */
@media (max-width: 1400px) {
}
/* X-Large devices (large desktops, 1200px and up) */
@media (max-width: 1200px) {
}
/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
}
/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
}
/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
}
@media (max-width: 479px) {	
}
