@charset "UTF-8";
/*-----------------------------------------------
__common
-----------------------------------------------*/

.container {
	position: relative;
}

header {
	position: absolute;
	z-index: 999;
	top: 0;
	right: 0;
	left: 0;
	margin: 0 auto;
	width: 100%;
}

header .inner_header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1100px;
	margin: 0 auto;
	padding: 15px;
	transition: all ease .33s;
}

header.pl-fixed {
	position: fixed;
	top: 0px;
	z-index: 999;
	background: #003366;
	transition: all ease .33s;
}

header.room_header {
	position: relative;
	top: 0px;
	z-index: 999;
	background: #003366;
	transition: all ease .33s;
}

.scroll {
	position: absolute;
	bottom: 10px;
	color: #fff;
	z-index: 998;
	text-align: center;
	margin: 0 auto;
	left: 0;
	right: 0;
	letter-spacing: 2px;
	width: 60px;
}

.scroll i {
	animation: scroll 1.5s ease-in-out infinite;
}

@keyframes scroll {
	0% {
		transform: translateY(-5px);
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		transform: translateY(5px);
		opacity: 0;
	}
}

main {
	width: 100%;
	height: auto;
	background-image: url(../images/common/bg01.png);
}

#entrance main {
	height: 100vh;
}

footer {
	position: relative;
	z-index: 999;
	right: 0;
	left: 0;
	bottom: 0;
	margin: 0 auto;
	background: #003366;
	padding: 10px 0;
}

#entrance footer {
	background: transparent;
	position: absolute;
}

.f_copy {
	margin: 0 auto;
	text-align: center;
	font-size: 0.8em;
	font-weight: 400;
	color: #fff;
}

.content_box {
	z-index: 1000;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 300px;
	height: auto;
}

#entrance .content_box {
	z-index: 1000;
	position: absolute;
	top: 45%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 300px;
	height: 300px;
	background: #fff;
	border-radius: 25px;
	box-shadow: 0 5px 25px -2px #ffffffab;
}

.content_box.cb_jp, .content_box.cb_en {
	display: none;
	background: none;
	box-shadow: none;
	z-index: 999;
	width: 50%;
}

#entrance .content_box.cb_jp, #entrance .content_box.cb_en {
	display: none;
	background: none;
	box-shadow: none;
	z-index: 999;
	width: 50%;
}

#entrance .content_box .txt_box {
	color: #fff;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
	user-select: none;
}

#entrance .content_box .txt_box h2 {
	font-size: 2.5em;
	font-weight: 500;
	margin: 0 auto 25px;
}

#entrance .content_box .txt_box p {
	font-size: 1.2em;
	font-weight: 500;
	letter-spacing: 1.1px;
	margin: 0 auto 30px;
}

#entrance .content_box.cb_en .txt_box p {
	letter-spacing: 0;
}

#entrance .content_box .txt_box p span {
	font-size: 1.2em;
	margin: 0 10px;
}

#entrance .content_box .txt_box dt {
	margin: 0 0 6px;
}

#entrance .content_box .txt_box dt span {
	font-size: 1.3em;
	margin: 0 6px;
}

#entrance .content_box .txt_box a {
	color: #fff;
	display: block;
	width: 170px;
	height: auto;
	margin: 45px auto 0;
	padding: 10px;
	border: 1px solid #fff;
	box-sizing: border-box;
	border-radius: 5px;
	transition: all ease .33s;
}

#entrance .content_box .txt_box a.a_map {
	color: #fff;
	display: inline-block;
	width: 65px;
	height: auto;
	margin: 0 15px;
	padding: 0;
	border: 1px solid #fff;
	box-sizing: border-box;
	border-radius: 0;
	transition: all ease .33s;
	font-size: 0.9em;
}

#entrance .content_box .txt_box a:hover {
	box-shadow: 0 0 23px -2px rgba(255, 255, 255, 0.3);
}

.hida_box {
	position: absolute;
	top: -80px;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
}

#entrance .hida_box {
	top: -70px;
}

.hida_box p {
	color: #fff;
	font-size: 1.5em;
	line-height: 1.2;
	user-select: none;
}

#entrance .hida_box p {
	font-size: 1.3em;
}

h1.logo {
	z-index: 999;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 200px;
}

#entrance h1.logo {
	width: 200px;
}

#entrance .lang_box {
	position: absolute;
	bottom: -50px;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
	display: flex;
	justify-content: space-around;
}

#entrance .lang_box a {
	color: #fff;
	font-size: 1.15em;
	cursor: pointer;
	transition: all ease .33s;
}

#entrance .lang_box a:hover {
	opacity: .6;
}

#entrance .map_box {
	position: relative;
	margin: 30px auto 0;
	width: 40%;
	max-width: 380px;
	min-width: 300px;
}

.cover {
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(33, 31, 27, 0.65);
	z-index: 998;
}

#entrance .cover {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(33, 31, 27, 0.65);
	z-index: 998;
}

.wrap {
	padding: 16px;
}

@keyframes zoomUp {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.2);
	}
}

.swiper-container .swiper-slide-active .slide-img, .swiper-container .swiper-slide-duplicate-active .slide-img, .swiper-container .swiper-slide-prev .slide-img {
	animation: zoomUp 15s linear 0s 1 normal both;
}

.swiper-container .slide-img img, .swiper-container2 .slide-img img {
	display: block;
	width: 100%;
	height: 100vh;
	object-fit: cover;
	object-position: center;
	user-select: none;
}

/*--------------------------------------------------------
__下層ページ
---------------------------------------------------------*/

h2 {
	text-align: center;
	font-size: 2em;
	line-height: 1.3;
	margin: 0 0 35px;
}

h2 span {
	display: block;
	font-size: 0.7em;
	margin: 7px 0 0 5px;
	color: #2570cc;
}

h2.room_name {
	text-align: left;
	margin: 0 0 15px;
	padding: 0 0 0 15px;
	width: 100%;
}

h2.room_name span {
	margin: 0px 0 2px 0px;
}

.wrapper_top {
	width: 100%;
	height: 100vh;
	position: relative;
}

nav ul li a {
	color: #fff;
	transition: all ease .33s;
}

nav ul li a:hover {
	opacity: 0.6;
}

nav.nav_h {
	width: 65%;
	max-width: 800px;
	margin: 0 0 0 auto;
}

.logo_box {
	flex-basis: 135px;
	margin: 0;
}

.logo_box a {
	transition: all ease .33s;
}

.logo_box a:hover {
	opacity: 0.6;
}

nav.nav_f {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}

#en nav.nav_f {
	max-width: 800px;
}

nav.nav_h ul {
	margin: 0;
	display: flex;
	justify-content: space-between;
}

nav.nav_f ul {
	margin: 25px auto 40px;
	display: flex;
	justify-content: space-between;
	font-size: 1.3em;
}

.inner_wrapper {
	position: relative;
	max-width: 1100px;
	margin: 0 auto;
	padding: 70px 0px;
	width: 95%;
	height: auto;
}

.square_box {
	background: rgba(255, 255, 255, 0.85);
	position: absolute;
	top: 65px;
	left: 0px;
	padding: 30px;
	z-index: 99;
	width: 50%;
	height: auto;
	max-width: 550px;
	border-radius: 3px;
}

.square_box h2 {
	text-align: left;
	padding: 0 0 14px;
	border-bottom: 3px solid #2570cc;
	display: inline-block;
	margin: 0 0 20px;
}

.inner_bg {
	position: relative;
	width: 85%;
	height: 450px;
	margin: 110px auto 70px;
	overflow: hidden;
	background-image: url(../images/common/about01.jpg);
	background-position: center;
}

.inner_bg.sow_bg {
	background-image: url(../images/common/sow_bg.jpg);
}

img.about_ilst {
	position: absolute;
	right: 40px;
	bottom: 80px;
	z-index: 99;
	display: block;
	width: 200px;
}

.bg_01 {
	background: #fff;
}

.bg_02 {
	background: #ebf1f7;
}

.bg_03 {
	background-image: url(../images/common/bg02.gif);
}

.bg_03 h2 {
	color: #fff;
}

.bg_03 h2 span {
	color: #78b5ff;
}

.flex_box {
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.flex_box dl {
	flex-basis: 31%;
	max-width: 31%;
	margin: 0;
	background: #fff;
	padding: 20px;
	box-sizing: border-box;
	box-shadow: 0 10px 12px -12px rgb(0 51 102 / 40%);
}

.flex_box dl dt {
	border-bottom: 1px solid #c7d3e0;
	color: #204d79;
	margin: 0;
	padding: 0 0 7px;
	font-size: 1.3em;
	font-weight: 600;
	text-align: center;
}

.flex_box dl dt i {
	color: #204d79;
}

.flex_box dl dd {
	padding: 15px;
}

.flex_box ol li {
	list-style-position: inside;
	list-style-type: circle;
}

h3 {
	font-size: 1.6em;
}

ul.ul_room {
	margin: 40px auto;
}

ul.ul_room li {
	margin: 0 0 40px;
	background: #fff;
	padding: 15px;
	box-sizing: border-box;
}

ul.ul_room li>dl {
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
}

ul.ul_room li>dl dt {
	flex-basis: 30%;
	margin: 0 25px 0 0;
	position: relative;
	max-height: 190px;
}

ul.ul_room li>dl dt i {
	position: absolute;
	color: #fff;
	bottom: 10px;
	right: 10px;
	font-size: 1.4em;
	pointer-events: none;
	text-shadow: 0 0 2px rgb(0 0 0 / 65%);
}

ul.ul_room li>dl dt>a {
	transition: all ease .33s;
}

ul.ul_room li>dl dt>a:hover {
	opacity: 0.7;
}

ul.ul_room li>dl>dd {
	flex-basis: 70%;
}

ul.ul_room li>dl>dd>p {
	font-size: 1.1em;
	padding: 0 0 0 5px;
}

ul.ul_room li>dl dd h4 {
	font-size: 1.6em;
	margin: 0px 5px 5px;
}

ul.ul_room li>dl dd h4 span {
	display: block;
	font-size: 0.7em;
	margin: 0 0 3px 2px;
	color: #2570cc;
}

ul.ul_room li>dl dd table {
	width: 100%;
	text-align: center;
	margin: 0;
}

dl.dl_faci {
	margin: 10px 0 0;
	padding: 0 0 7px;
	font-size: 0.9em;
}

dl.dl_faci dt {
	font-size: 1.6em;
	margin: 0 0 12px;
	color: #204d79;
}

dl.dl_faci dt i {
	color: #204d79;
}

dl.dl_faci dd {
	margin: 0 0 5px;
	font-size: 1.1em;
}

dl.dl_faci dd p {
	border-bottom: 1px solid #ececec;
	padding: 2px 10px 0px 5px;
	margin: 0 10px 0 0;
	display: inline-block;
}

dl.dl_faci dd span {
	padding: 2px 5px;
	margin: 0 10px 0 0;
	display: inline-block;
	color: #527eab;
}

.room_cell .room_note {
	margin: 10px 0 0;
	padding: 0 10px;
}

.room_cell .room_note p {
	font-size: 0.9em;
	margin: 0;
}

.bg_03 .room_note {
	background: #fff;
	padding: 15px;
	box-shadow: 0 10px 17px -14px rgb(0 0 0 / 40%);
}

.room_note p {
	margin: 0 0 5px;
	font-size: 1.2em;
}

em.red {
	color: #dc2525;
}

.wrap_tbl {
	padding: 15px;
	box-sizing: border-box;
}

ul.ul_room dl dd table td {
	border: 1px solid #ddd;
	padding: 2px 0;
	width: 35%;
}

ul.ul_room dl dd table td:first-child {
	width: 30%;
}

ul.ul_room li {
	margin: 0 0 40px;
	background: #fff;
	padding: 15px;
	box-sizing: border-box;
	box-shadow: 0 10px 17px -14px rgb(0 0 0 / 40%);
}

.swiper-container2 {
	height: auto;
	max-height: 300px;
}

.pickup_box {
	width: 100%;
	position: relative;
}

.pickup_box ul li {
	box-sizing: border-box;
	background: #fff;
	transition: all ease .33s;
}

.pickup_box ul li:hover {
	opacity: 0.7;
}

.pickup_box ul li b {
	position: absolute;
	color: #fff;
	z-index: 999;
	display: inline-block;
	bottom: 0;
	right: 0;
	padding: 5px 5px 5px 10px;
	background: rgb(0 0 0 / 30%);
	font-weight: 500;
}

.map_box {
	width: 100%;
	height: auto;
}

.map_box iframe {
	width: 100%;
	height: 450px;
	vertical-align: bottom;
}

.map_box h2 {
	padding: 70px 0 0;
}

.address_box {
	max-width: 350px;
	margin: 0 auto 35px;
	text-align: center;
}

.address_box h4 {
	font-size: 1.5em;
	margin: 0 0 5px;
}

.address_box h4 span {
	font-size: 0.7em;
}

.resv_box {
	position: relative;
	margin: 45px auto;
}

.resv_box>a {
	padding: 15px;
	border: #225282 1px solid;
	background: #fff;
	color: #225282;
	font-size: 1.4em;
	display: block;
	width: 320px;
	text-align: center;
	margin: 0 auto;
	box-sizing: border-box;
	box-shadow: 0 10px 17px -14px rgb(0 0 0 / 40%);
	transition: all ease .33s;
}

.resv_box>a:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 10px -8px rgb(0 0 0 / 40%);
}

p.p_tel {
	padding: 10px;
	color: #225282;
	font-size: 1.8em;
	display: block;
	width: 500px;
	text-align: center;
	margin: 0 auto;
	box-sizing: border-box;
	transition: all ease .33s;
	letter-spacing: 2px;
}

p.p_tel i {
	margin: 0 5px 0 0;
}

p.p_tel_note {
	padding: 5px;
	color: #225282;
	display: block;
	width: 100%;
	text-align: center;
	margin: 0 auto 25px;
	box-sizing: border-box;
	transition: all ease .33s;
	letter-spacing: 2px;
}

.resv_note p img {
	max-width: 510px;
	margin: 0;
	display: block;
}

#rules .room_note {
	margin: 30px auto 0;
	padding: 0 20px;
}

.company_note {
	width: 90%;
	margin: 0 auto;
	padding: 20px;
	max-width: 850px;
	box-sizing: border-box;
}

.company_note p em {
	font-size: 1.2em;
	color: #116949;
	font-weight: 600;
}

p.logo_quad {
	width: 100%;
	max-width: 120px;
	margin: 0 auto 20px;
	text-align: center;
}

.find_box {
	display: flex;
	margin: 0 auto;
	width: 80%;
	max-width: 800px;
	padding: 20px;
	justify-content: space-between;
}

.find_box p {
	flex-basis: 48%;
	box-shadow: 0 10px 15px -9px rgb(0 0 0 / 40%);
}

.find_box p img {
	border-radius: 5px;
}

/*-------------------------------------
lower
--------------------------------------*/

#lower .wrapper_top {
	height: 300px;
}

#lower .wrapper_top.room_top {
	height: auto;
}

#lower .cover {
	height: 100%;
}

.lower_top_img {
	width: 100%;
	height: 100%;
	position: relative;
}

#lower .wrapper_top h2 {
	text-align: center;
	font-size: 2em;
	line-height: 1.3;
	margin: 0 auto;
	position: absolute;
	left: 0;
	right: 0;
	z-index: 999;
	top: 57%;
	transform: translateY(-50%);
	color: #fff;
}

#lower .wrapper_top h2 span {
	display: block;
	font-size: 0.7em;
	margin: 7px 0 0 5px;
	color: #b4d6ff;
}

#en .resv_box>a {
	width: 410px;
}

/*-------------------------------------
Reservation
--------------------------------------*/

.resv_note {
	width: 80%;
	height: auto;
	max-width: 800px;
	margin: 0 auto 70px;
	padding: 15px;
	/*
    background: #fff;
    box-shadow: 0 10px 17px -14px rgb(0 0 0 / 40%); */
}

.resv_note p {
	margin: 0 0 5px;
	font-size: 1.1em;
}

.resv_note h3 {
	font-size: 1.5em;
	margin: 0 0 10px;
	border-bottom: 1px solid #75ade4;
	padding: 0 10px 0 5px;
	display: inline-block;
}

.resv_form {
	width: 80%;
	height: auto;
	margin: 0 auto 120px;
	max-width: 800px;
	background: #fff;
	padding: 30px;
	box-sizing: border-box;
	box-shadow: 0 10px 17px -14px rgb(0 0 0 / 40%);
}

.tb_contact {
	width: 100%;
	margin: 0 auto;
}

.tb_contact th, .tb_contact td {
	padding: 10px 10px 20px;
}

.tb_contact th {
	text-align: right;
	width: 30%;
}

.tb_contact td {
	width: 70%;
}

span.must {
	color: #e43c3c;
	vertical-align: middle;
	margin: 0 5px 0 0;
}

dl.dl_number {
	border: 1px solid #ddd;
	padding: 15px;
}

dl.dl_number dt {
	margin: 0 0 20px;
}

dl.dl_number dd {
	margin: 0 0 10px;
}

dl.dl_number dd:last-child {
	margin: 0;
}

dl.dl_number span {
	display: inline-block;
	width: 130px;
}

input[type="checkbox"], input[type="radio"] {
	display: none;
}

input[type="text"], input[type="time"], input[type="tel"], input[type="email"], textarea {
	border: 1px solid #ddd;
	width: 100%;
	height: auto;
	padding: 2px 10px;
	box-sizing: border-box;
	background: #fff;
	margin-bottom: 0px;
}

textarea {
	min-height: 200px;
	max-height: 600px;
	resize: vertical;
}

input[type="number"] {
	width: 35px;
	border: 1px solid #ddd;
	height: auto;
	padding: 2px 3px;
	text-align: center;
	margin: 0 10px;
	box-sizing: border-box;
}

dl.dl_number dd label {
	cursor: pointer;
	transition: all ease .33s;
	margin: 0;
	user-select: none;
	display: flex;
	align-items: center;
}

dl.dl_number dd label>span {
	display: inline-block;
	margin: 0 15px 0 0;
	position: relative;
	width: 10px;
	height: 10px;
	padding: 3px;
	border: 1px solid #666;
	vertical-align: bottom;
	min-width: 10px;
	transition: all ease .33s;
}

dl.dl_number.rdo dd label span {
	border-radius: 50px;
	min-width: 10px;
}

dl.dl_number dd label input[type=checkbox]:checked~span i {
	opacity: 1;
	transform: translateY(-50%) scale(1.0);
}

dl.dl_number dd label input[type=radio]:checked~span span {
	opacity: 1;
	transform: translateY(-50%);
}

dl.dl_number dd label:hover>span {
	border: 1px solid #66a6dc;
}

dl.dl_number dd label>em {
	transition: all ease .33s;
}

dl.dl_number dd label:hover>em {
	color: #66a6dc;
}

/*---checkbox---*/

dl.dl_number dd label span i {
	opacity: 0;
	position: absolute;
	transition: all ease .2s;
	color: #66a6dc;
	font-size: 0.9em;
	top: 50%;
	transform: translateY(-70%) scale(2.0);
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
}

/*---radio---*/

dl.dl_number.rdo dd label span span {
	display: block;
	width: 10px;
	height: 10px;
	background: #66a6dc;
	box-sizing: border-box;
	margin: 0 auto;
	position: absolute;
	top: 50%;
	transition: all ease .33s;
	transform: translateY(50%);
	opacity: 0;
	left: 0;
	right: 0;
}

b.b_when {
	margin: 0 0 0 25px;
	display: flex;
	align-items: center;
	transition: all ease .33s;
}

b.b_when em {
	font-weight: 500;
	margin: 0 10px 0 0;
	min-width: 50px;
}

b.b_when i {
	margin: 0 5px 0 0;
	color: #a0a0a0;
}

p.nin {
	text-align: center;
	margin: 0 auto;
}

input#submit {
	width: 100%;
	margin: 25px auto 0;
	cursor: pointer;
	padding: 10px;
	font-size: 1.3em;
	background: #fff;
	border: 1px solid #225282;
	color: #225282;
	box-shadow: 0 10px 12px -10px rgb(0 0 0 / 30%);
	transition: all ease .33s;
	box-sizing: border-box;
}

input#submit:hover {
	background: #225282;
	color: #fff;
	transform: translateY(-3px);
}

#en dl.dl_number dd>span {
	width: 220px;
}

/*-------------------------------------
Access
--------------------------------------*/

.resv_note h4 {
	font-size: 1.2em;
	margin: 10px 0 2px;
}

#lower .address_box {
	margin: 0 auto;
	padding: 50px 0 75px;
}

.f_copy>a {
	max-width: 150px;
	display: block;
	margin: 35px auto 20px;
	transition: all ease .33s;
}

.f_copy>a:hover {
	opacity: 0.6;
}

#page_top {
	position: fixed;
	bottom: 30px;
	right: 13px;
	z-index: 1000;
	background: rgb(86 86 86 / 60%);
	padding: 4px 10px;
	transition: all ease .33s;
	cursor: pointer;
}

#page_top a {
	color: #fff;
	text-align: center;
	text-decoration: none;
}

#page_top a i {
	display: block;
	width: 100%;
	margin: 0 auto;
}

#page_top:hover {
	opacity: .6;
}

/*---------------------------
isInView
----------------------------*/

.fadeIn {
	opacity: 0;
	transition: all ease 1s;
}

.fadeIn.is-show {
	opacity: 1;
}

.fadeIn_up {
	opacity: 0;
	transform: translate(0%, 12%);
	transition: all ease 1s;
}

.fadeIn_up.is-show {
	transform: translate(0, 0);
	opacity: 1;
}

nav.NavMenu {
	display: none;
}

.Toggle {
	display: none;
}

@media all and (-ms-high-contrast: none) {
	.pickup_box {
		display: none;
	}
}

/*--------------------------------
20200817追加
--------------------------------*/

.news_box {
	display: block;
	position: absolute;
	bottom: 105px;
	z-index: 999;
	border: 1px solid #fff;
	padding: 20px 30px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 100%;
	max-width: 570px;
	border-radius: 6px;
}

.news_box p {
	color: #fff;
}

.news_box p span {
	font-size: 1.4em;
	margin: 0 0 7px;
	display: block;
}

a.a_pdf {
	padding: 10px;
	background: #ec4f21;
	color: #fff;
	margin: 10px auto 0;
	display: block;
	width: 80%;
	max-width: 265px;
	text-align: center;
	transition: all ease .33s;
}

a.a_pdf:hover {
	background: #b72f07;
}

dl.dl_pay {
	flex-basis: 100%;
	max-width: 100%;
	margin: 20px 0 0;
}

dd.dd_pay>div>p {
	position: relative;
	padding: 0 0 0 16px;
	border-bottom: 1px solid #c7d3e0;
	margin: 0 0 10px;
}

dd.dd_pay>div>p::before {
	position: absolute;
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: #2570cc;
}

.flex_box dl dd.dd_pay {
	width: 80%;
	margin: 0;
	padding: 15px;
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
}

dd.dd_coupon {
	text-align: center;
}

p.p_tel_cat {
	padding: 5px;
	display: block;
	width: 100%;
	text-align: center;
	margin: 30px auto 10px;
	box-sizing: border-box;
	transition: all ease .33s;
	letter-spacing: 2px;
	font-size: 1.2em;
	max-width: 300px;
}

a.pp_link {
	color: #e4633c;
	transition: all ease .33s;
}

a.pp_link:hover {
	opacity: 0.6;
}

.ver_pp p.sub_note {
	margin: 0 0 50px;
}

.resv_note.ver_pp h3 {
	margin: 0 0 15px;
}

.resv_note.ver_pp p {
	margin: 0 0 30px;
}

ol.ol_terms {
	margin: 10px 0;
	padding: 0 0 0 30px;
}

ol.ol_terms li {
	list-style: square;
}

dd.dd_coupon {
	display: flex;
	justify-content: space-between;
	margin: 30px 0 0;
	padding: 30px 15px 0 !important;
	border-top: 1px dashed #c7d3e0;
	align-items: center;
}

.coupon_link {
	flex-basis: 30%;
	max-width: 30%;
}

.coupon_note {
	flex-basis: 67%;
	max-width: 67%;
}

.coupon_note dl {
	flex-basis: 100%;
	max-width: 100%;
	margin: 0;
	background: #fff;
	padding: 0px;
	box-sizing: border-box;
	box-shadow: none;
}

.coupon_note dl dt {
	border-bottom: none;
	color: #204d79;
	margin: 15px 0 0;
	padding: 0 15px;
	font-size: 1.1em;
	text-align: left;
}

.coupon_note dl dt:first-child {
	margin: 0;
}

.coupon_note dl dd {
	padding: 5px 10px;
	text-align: left;
}

.asan {
	color: #f24949;
}

.bsan {
	color: #4973f2;
}

.fa-user {
	color: #204d79;
}

.coupon_note table {
	width: 100%;
	margin: 0;
}

.coupon_note table th {
	border: 1px solid #ddd;
	padding: 3px 5px;
	text-align: center;
	width: 300px;
}

.coupon_note table td {
	border: 1px solid #ddd;
	padding: 3px 5px;
	text-align: center;
}

a.a_coupon {
	display: inline-block;
	color: #fff;
	background: #2570cc;
	text-align: center;
	margin: 10px 0 0 10px;
	border-radius: 3px;
	padding: 2px 10px;
	transition: all ease .33s;
}

a.a_coupon:hover {
	opacity: 0.6;
}

.flex_note {
	display: flex;
	justify-content: space-between;
}

.flex_note_div {
	flex-basis: 48%;
	max-width: 48%;
}

.flex_note_div table {
	width: 100%;
	text-align: center;
	margin: 15px 0;
	background: #fff;
}

.flex_note_div span {
	font-size: 0.9rem;
	display: inline-block;
	margin: 0 0 0 15px;
	color: #969494;
	font-weight: 500;
}

.flex_note_div table td {
	border: 1px solid #ddd;
	padding: 2px 0;
}

ul.ul_room li h5 {
	margin: 10px 5px 5px;
	font-size: 1.1em;
}

span.tax_note {
	font-size: 0.7rem;
	display: inline-block;
	margin: 0 0 0 15px;
	color: #969494;
	font-weight: 500;
}

b.room_num {
	font-size: 1em;
	margin: 0 10px 0 0;
	display: inline-block;
	padding: 1px 10px;
	border: 1px solid #527eab;
	color: #527eab;
	border-radius: 5px;
}

.goto_banner.bn_small {
	display: block;
}

.goto_banner.bn_wide {
	display: none;
}

/*-------------------------------------
2020-09-24 mao
-------------------------------------*/

.room_img_flex {
	display: flex;
	margin: 0 auto;
	background: #fff;
	padding: 15px 15px 30px;
	border-bottom: 1px solid #e2e2e2;
}

.room-img-box {
	flex-basis: 55%;
	max-width: 55%;
	height: auto;
	max-height: 400px;
	margin: 0;
	position: relative;
	background: #fff;
	overflow: hidden;
}

.room-img-box i {
	position: absolute;
	color: #fff;
	bottom: 10px;
	right: 10px;
	font-size: 1.4em;
	pointer-events: none;
	text-shadow: 0 0 2px rgb(0 0 0 / 65%);
}

.flex-room-info {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto;
	width: 100%;
	box-sizing: border-box;
	padding: 25px 20px;
	background: #fff;
}

.room-plan-box {
	flex-basis: 100%;
	margin: 0 0 40px;
}

.room-info-box {
	flex-basis: 100%;
}

.flex-room-info h5 {
	font-size: 1.3em;
	margin: 0 0 15px;
}

.room-plan-box table {
	width: 100%;
	text-align: center;
	margin: 0;
	font-size: 0.9em;
}

.room-plan-box table td {
	border: 1px solid #ddd;
	padding: 2px 0;
	width: 25%;
}

.room-plan-box table td:first-child {
	width: 20%;
	color: inherit;
}

.calendar-box {
	flex-basis: 45%;
	max-width: 45%;
	margin: 0 0 0 15px;
	box-sizing: border-box;
	background: #fff;
}

.calendar-box h5 {
	font-size: 1.3em;
	margin: 0 0 15px;
}

.goto_banner {
	flex-basis: auto;
	margin: 0;
}

.goto_banner img {
	transition: all ease .33s;
}

.goto_banner a:hover img {
	opacity: 0.6;
}

.goto_desc {
	margin: 0;
	flex-basis: 70%;
}

/*-------------------------------------
2020-09-25 mao
-------------------------------------*/

.calendar-base {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	min-height: 0;
	box-sizing: border-box;
	margin: 0px auto;
	background-color: #fff;
	border-top: 1px solid #e0e0e0;
	border-left: 1px solid #e0e0e0;
}

.calendar_selector {
	text-align: center;
	font-size: 1.5em;
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 300px;
	margin: 0 auto 20px;
	font-weight: 600;
	user-select: none;
	align-items: center;
}

.calendar_selector a {
	transition: all ease .33s;
}

.calendar_selector>a:hover {
	color: #69adf1;
}

.weekly_head {
	display: flex;
}

.head-weekday {
	border-right: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
	flex-basis: 100%;
	margin: 0;
	text-align: center;
	padding: 0px;
	overflow: hidden;
	font-weight: 600;
	user-select: none;
}

.head-weekday.sun {
	color: #e83838;
}

.head-weekday.sat {
	color: #387ee8;
}

.weekly_week {
	display: flex;
	flex-basis: 100%;
}

.weekly_day {
	border-right: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
	flex-basis: 100%;
	margin: 0;
}

.weekly_day.past, .weekly_day.future {
	background: #f7f7f7;
}

.day_label span {
	width: 23px;
	height: 23px;
	line-height: 23px;
	margin: 0 auto;
	text-align: center;
	display: inline-block;
	box-sizing: border-box;
	user-select: none;
}

.weekly_day.today .day_label span {
	background: #69adf1;
	color: #fff;
	border-radius: 100px;
	font-weight: 600;
}

.day_label {
	text-align: center;
	padding: 3px 0;
}

.weekly_day.past .day_label {
	color: #ddd;
}

.day_event {
	text-align: center;
	padding: 0px;
	font-size: 1.1em;
	color: #69adf1;
}

.weekly_day.past .day_event {
	color: #ddd;
}

.today_btn {
	margin: 0 0 0 20px;
}

.day_event.status-99 a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	box-sizing: border-box;
	z-index: 99;
}

.day_event.status-99 i {
	color: #69adf1;
}

.day_event.status-99 i:hover {
	opacity: 0.6;
}

.today_btn a {
	font-size: 1rem;
	border: 1px solid #ddd;
	padding: 5px 15px;
	border-radius: 3px;
	transition: all ease .33s;
	color: #969696;
	font-weight: 500;
	user-select: none;
}

.day_event.res_day {
	cursor: not-allowed;
}

.today_btn a:hover {
	border: 1px solid #69adf1;
	background: #69adf1;
	color: #fff;
}

.day_event.res_day i {
	color: #f5816f;
}

.day_event.res_day b {
	color: #f5cc6f;
	font-size: 1.3em;
	display: block;
	width: auto;
	line-height: 18px;
	margin: 0 auto;
	user-select: none;
}

.no_prev {
	color: #ddd;
	user-select: none;
}

label.submit_btn {
	cursor: pointer;
}

label.submit_btn input {
	display: none;
}

span.span_input {
	border: 1px solid #ddd;
	width: 100%;
	height: auto;
	padding: 5px 10px;
	box-sizing: border-box;
	background: rgb(232, 240, 254);
	display: block;
}

/*-----------------------------
2020-09-28 mao ツールチップ
-------------------------------*/

.c-tooltip {
	position: relative;
}

.c-tooltip::before, .c-tooltip::after {
	opacity: 0;
	position: absolute;
	transition: all ease-in-out .33s;
	visibility: hidden;
	z-index: 11;
}

.c-tooltip::before {
	border-style: solid;
	border-width: 7px 5px 0px 5px;
	content: "";
	height: 0;
	left: 0;
	right: 0;
	top: -5px;
	width: 0;
	margin: 0 auto;
}

.c-tooltip.status-0::before {
	border-color: #f5cc6f transparent transparent transparent;
}

.c-tooltip.status-1::before {
	border-color: #f5816f transparent transparent transparent;
}

.c-tooltip.status-99::before {
	border-color: #69adf1 transparent transparent transparent;
}

.c-tooltip::after {
	font-family: "Yu Gothic", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	border-radius: 3px;
	content: attr(data-tooltip);
	display: block;
	left: 0;
	right: 0;
	margin: 0 auto;
	padding: 0;
	top: -26px;
	white-space: nowrap;
	width: 100%;
	box-sizing: border-box;
	max-width: 80px;
	font-size: 0.9rem;
	background: #ffffff;
	font-weight: 600;
}

.c-tooltip.status-0::after {
	border: 1px solid #f5cc6f;
	color: #f6b625;
}

.c-tooltip.status-1::after {
	border: 1px solid #f5816f;
	color: #f5816f;
}

.c-tooltip.status-99::after {
	border: 1px solid #69adf1;
	color: #69adf1;
}

.c-tooltip:hover::before, .c-tooltip:hover::after {
	opacity: 1;
	visibility: visible;
}

/*-------------------------------------
トップページ改修 20200930 mao
---------------------------------------*/

ul.ul_room {
	margin: 50px auto;
	display: flex;
	flex-wrap: wrap;
}

ul.ul_room li {
	margin: 0;
	padding: 10px;
	box-sizing: border-box;
	flex-basis: 33.333%;
	border-radius: 3px;
	background: transparent;
	box-shadow: none;
	transition: all ease .33s;
	user-select: none;
}

ul.ul_room li>dl {
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
	flex-wrap: wrap;
	background: #fff;
	padding: 0;
	box-shadow: 0 10px 17px -14px rgb(0 0 0 / 40%);
	transition: all ease .33s;
}

ul.ul_room li>dl dt {
	flex-basis: 100%;
	margin: 0;
	position: relative;
	max-height: 190px;
}

ul.ul_room li>dl dt img {
	transition: all ease .33s;
	filter: brightness(0.7);
}

span.span_num {
	position: absolute;
	top: 10px;
	left: 25px;
	display: block;
	text-align: center;
	color: #fff;
	font-size: 1.5em;
	transition: all ease .33s;
	text-shadow: 0 2px 5px rgb(0 0 0 / 70%);
}

ul.ul_room li:hover dl {
	box-shadow: 0 10px 12px -8px rgb(0 0 0 / 40%);
}

ul.ul_room li:hover dl img {
	filter: brightness(1);
}

ul.ul_room li>dl>dd {
	flex-basis: 100%;
	min-height: 275px;
}

ul.ul_room li>dl dd h4 {
	font-size: 1.6em;
	margin: 10px auto 10px;
	text-align: center;
}

ul.ul_room li>dl dd h4 span {
	display: block;
	font-size: 0.7em;
	margin: 0 0 -5px;
	color: #2570cc;
}

ul.ul_room li h5 {
	margin: 0 auto 5px;
	font-size: 1em;
	text-align: center;
}

ul.ul_room li>dl dd table {
	width: 95%;
	text-align: center;
	margin: 0 auto;
	font-size: 0.8em;
}

ul.ul_room dl dd table td:first-child {
	width: 35%;
}

ul.ul_room dl dd table td {
	width: 25%;
}

a.res_link {
	display: block;
	width: 100px;
	text-align: center;
	padding: 5px 10px;
	font-size: 1.1em;
	border-radius: 3px;
	background: #2470cc;
	color: #fff;
	transition: all ease .33s;
	margin: 15px auto 0;
	box-sizing: border-box;
	position: absolute;
	bottom: 30px;
	margin: 0 auto;
	left: 0;
	right: 0;
}

a.res_link:hover {
	background: #003366;
}

.link-no-resv {
	background: #9e9e9e !important;
	pointer-events: none;
	user-select: none;
}

#en .link-no-resv {
	width: 130px !important;
}

/*--------------------------------
20201001追加 / トップページ改修
--------------------------------*/

.top_news_wrap {
	padding: 25px;
	border-radius: 3px;
	background: #fff;
	box-sizing: border-box;
	width: 100%;
	height: auto;
	max-height: 280px;
	margin: 0 auto;
	overflow-y: auto;
}

dl.news_list {
	border-bottom: 1px solid #ddd;
	padding: 0 0 15px;
	margin: 0 0 15px;
}

dl.news_list dt {
	font-size: 1.2em;
	font-weight: 600;
	margin: 0 0 10px;
}

dl.news_list dt i {
	color: #eaba7f;
	margin: 0 3px 0 0;
}

dl.news_list dd p {
	margin: 0 0 5px;
}

dl.news_list dd{
	margin: 0 0 3px 20px;
	list-style: decimal;
}

a.a_coupon {
	display: inline-block;
	color: #ec4f21;
	background: transparent;
	text-align: center;
	margin: 0 10px;
	border-radius: 0;
	padding: 0;
	transition: all ease .33s;
	border-bottom: 1px solid #ec4f21;
}

.tag_box {
	width: 80%;
	margin: 30px auto 35px;
	display: flex;
	justify-content: center;
}

p.p_tag {
	text-align: center;
	margin: 0 5px;
	display: block;
	width: 90px;
	height: 25px;
	line-height: 25px;
	font-weight: 500;
	position: relative;
	font-size: 1em;
}

p.p_tag.sh_tw {
	background: #1da1f2;
	border: #1da1f2;
}

p.p_tag.sh_fb {
	background: #3b5998;
	border: #3b5998;
}

p.p_tag.sh_ln {
	background: #01be00;
	border: #01be00;
}

p.p_tag a {
	color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

p.p_tag a i {
	margin: 0 5px 0 0;
}

dd.dd_coupon {
	border-top: none;
	flex-wrap: wrap;
	padding: 15px !important;
	margin: 0;
}

.coupon_link {
	flex-basis: 100%;
	max-width: 100%;
	margin: 20px auto 40px;
	padding: 0 0 20px;
	display: flex;
	justify-content: center;
	border-bottom: 1px dashed #ddd;
}

.coupon_link_flex {
	flex-basis: 35%;
	max-width: 35%;
	text-align: left;
}

.coupon_note {
	flex-basis: 100%;
	max-width: 100%;
	display: flex;
	justify-content: space-between;
}

.coupon_goto {
	flex-basis: 100%;
	max-width: 100%;
	margin: 10px auto 0;
}

.coupon_goto p {
	text-align: left;
	padding: 0 0 0 10px;
}

a.a_pdf {
	padding: 10px;
	background: #ec4f21;
	color: #fff;
	margin: 10px 0;
	display: block;
	width: 80%;
	max-width: 265px;
	text-align: center;
	transition: all ease .33s;
}

.coupon_note dl {
	flex-basis: 48%;
	max-width: 48%;
	margin: 0;
	background: #fff;
	padding: 0px;
	box-sizing: border-box;
	box-shadow: none;
}

.coupon_note dl dt {
	font-size: 1.3em;
	padding: 0;
}

.coupon_note dl dt b {
	color: #fff;
	padding: 7px 15px;
	margin: 0 5px 0 10px;
	border-radius: 35px;
	letter-spacing: 2px;
}

.coupon_note dl dt b.shkhk {
	background: #f58665;
}

.coupon_note dl dt b.wrbk {
	background: #f56464;
}

.coupon_note table {
	width: 100%;
	margin: 0 0 15px;
	font-size: 0.9em;
}

.coupon_note table th {
	border: 1px solid #ddd;
	padding: 3px 5px;
	text-align: center;
	width: auto;
}

/*---------------------------------
ツアー
----------------------------------*/

#tours h3 {
	color: #ff9355;
	font-size: 1.5em;
	margin: 0 0 10px;
}

.tours_inner ul {
	display: flex;
	justify-content: space-between;
	margin: 0 auto 15px;
}

.tours_inner ul li {
	flex-basis: 31%;
	max-width: 31%;
}

.tours_inner p {
	font-size: 1.2em;
}

.tours_bn {
	margin: 15px auto 30px;
	position: relative;
}

.tours_bn img {
	transition: all ease .33s;
}

.tours_bn a:hover img {
	opacity: 0.7;
}

.tours_bn span {
	position: absolute;
	display: block;
	bottom: 10px;
	right: 20px;
	color: #fff;
	font-size: 1.3em;
}

dl.dl_tours {
	margin: 20px 0;
}

dl.dl_tours dt {
	margin: 0 0 10px;
}

dl.dl_tours dd {
	margin: 0 0 30px;
	display: flex;
	justify-content: space-between;
}

dl.dl_tours dt h4 {
	font-size: 1.2em;
	margin: 10px 0 2px;
	display: inline-block;
	border-left: 5px solid #013e75;
	padding: 0px 10px;
	color: #013e75;
	letter-spacing: 2px;
}

dl.dl_tours dd p.p_tours_img {
	flex-basis: 30%;
	margin: 0 0 0 20px;
}

dl.dl_tours dd ol li {
	list-style-type: upper-alpha;
	margin: 0 0 3px 20px;
	font-size: 1.1em;
}

dl.dl_tours dd ol.ol_circle li{
	list-style-type: circle;
}

ol.ol_circle li{
	list-style-type: circle;
	margin: 0 0 3px 20px;
}

dl.dl_tours dd {
	list-style: decimal;
}

ul.ul_tours_img {
	display: flex;
	justify-content: space-between;
	width: 100%;
	height:auto;
	margin: 10px 0;
}

ul.ul_tours_img2 {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: 10px 0;
}

ul.ul_tours_img li {
	flex-basis: 100%;
	max-width: 100%;
}

.div_qr {
	width: 75px;
	margin: 20px auto;
}

.price-info {
	border: 1px solid #ddd;
	padding: 15px;
	font-size: 1.3em;
	letter-spacing: 1px;
}

.price-info b {
	font-size: 0.7em;
	display: inline-block;
	margin: 0 0 0 10px;
	font-weight: 500;
}

.weekly_day.h_season {
	background: #fff4f4;
}

.weekly_day.h_season .day_event i {
	color: #f36b6b;
}

.calendar_mark_desc {
	margin: 10px auto 0;
}

.calendar_mark_desc ul {
	display: flex;
	flex-wrap: wrap;
}

.calendar_mark_desc ul li {
	flex-basis: auto;
	max-width: 130px;
	margin: 0 20px 0 0;
}

li.mark_ok span {
	color: #69b0f4;
}

li.mark_pre span {
	color: #f6b625;
}

li.mark_full span {
	color: #f5816f;
}

li.mark_hs span {
	display: inline-block;
	width: 13px;
	height: 13px;
	background: #fff4f4;
	border: 1px solid #f66b6b;
	vertical-align: text-bottom;
}

select.select_adult, select.select_child {
	width: 45px;
	border: 1px solid #ddd;
	height: auto;
	padding: 5px;
	text-align: center;
	margin: 0;
	box-sizing: border-box;
	font-size: inherit;
	font-family: inherit;
	color: inherit;
}

.night-info {
	border: 1px solid #ddd;
	padding: 5px 10px;
	font-size: 1em;
	letter-spacing: 1px;
}

#arrival_time {
	border: 1px solid #ddd;
	width: 100%;
	height: auto;
	padding: 7px 10px;
	box-sizing: border-box;
	background: #fff;
	font-size: inherit;
	color: inherit;
	font-family: inherit;
	cursor: pointer;
}

span.hs_note {
	display: inline-block;
	font-size: 0.6em;
	color: #ec5e5e;
	margin: 0 0 0 10px;
	width: auto;
}

.tr_discount.campaign {
	user-select: none;
}

/*---------------------------------
20201009 追加
-----------------------------------*/

table.tb_cp td {
	border: 1px solid #ddd;
	padding: 2px 0;
	color: #bbb;
}

table.tb_cp td.td_cp {
	background: #fffb7c;
	font-weight: 600;
	color: initial !important;
}

.campaign_box {
	flex-basis: 100%;
	max-width: 100%;
	padding: 0 0 20px;
	display: flex;
}

.campaign_flex {
	flex-basis: 40%;
	max-width: 40%;
	box-sizing: border-box;
}

.campaign_flex2 {
	flex-basis: 60%;
	max-width: 60%;
	text-align: left;
	box-sizing: border-box;
	padding: 20px;
	border-left: 1px dashed #ddd;
}

.campaign_flex2 div {
	margin-top: 20px;
	border-top: 1px solid #ddd;
	padding: 20px 0;
}

.campaign_flex2 h4 {
	font-size: 1.3em;
	margin: 0 0 10px 0px;
}

.ls_ttl {
	font-size: 1.1em;
	color: #f95c5c;
}

.ls_none {
	list-style: none !important;
	margin: 3px 0 15px 20px;
}

/*-------------------------------------
トップページ改修 20201012 mao
---------------------------------------*/

ul.ul_room li {
	margin: 0;
	padding: 10px;
	box-sizing: border-box;
	flex-basis: 100%;
	border-radius: 3px;
	background: transparent;
	box-shadow: none;
	transition: all ease .33s;
	user-select: none;
}

ul.ul_room li>dl dt {
	flex-basis: 30%;
	margin: 0;
	position: relative;
	max-height: none;
}

ul.ul_room li>dl>dd {
	flex-basis: 70%;
	min-height: 0px;
	padding: 15px;
	box-sizing: border-box;
	position: relative;
}

ul.ul_room li>dl dd h4 {
	font-size: 1.8em;
	margin: 0px auto 15px 15px;
	text-align: left;
}

ul.ul_room li>dl dd table {
	width: 100%;
	text-align: center;
	margin: 0 auto;
	font-size: 0.9em;
}

ul.ul_room li h5 {
	margin: 0 auto 5px;
	font-size: 1em;
	text-align: left;
	padding: 0 0 0 5px;
}

a.res_link {
	display: block;
	width: 100px;
	text-align: center;
	padding: 5px 10px;
	font-size: 1.1em;
	border-radius: 2px;
	background: #2470cc;
	color: #fff;
	transition: all ease .33s;
	box-sizing: border-box;
	position: relative;
	bottom: 0;
	margin: 15px 0 0 auto;
	left: 0;
	right: 0;
}

ul.ul_room dl dd table td:first-child {
	width: 25%;
	color: inherit;
}

ul.ul_room dl dd table td {
	width: 25%;
}

/*-------------------------------------
予約フォーム改修 20201014
---------------------------------------*/

dl.dl_name {
	display: flex;
}

dl.dl_name dd {
	margin: 0 10px 0 0;
	flex-basis: 100%;
}

/*-------------------------------------
roomページ改修 20201109
---------------------------------------*/

.swiper-container.room_swp .swiper-slide-active .slide-img, .swiper-container.room_swp .swiper-slide-duplicate-active .slide-img, .swiper-container.room_swp .swiper-slide-prev .slide-img {
	animation: none;
}

.swiper-container.room_swp .slide-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	user-select: none;
}

.swiper-button-prev.swiper-custom-button, .swiper-button-next.swiper-custom-button {
	z-index: 999;
	color: #fff;
	height: 100%;
	top: 0;
	margin: 0;
	width: 10%;
	max-width: 70px;
}

.swiper-button-prev.swiper-custom-button {
	left: 0;
}

.swiper-button-next.swiper-custom-button {
	right: 0;
}

.swiper-button-prev.swiper-custom-button:focus, .swiper-button-next.swiper-custom-button:focus {
	outline: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
	font-size: 30px;
	text-shadow: 0 2px 5px rgb(0 0 0 / 70%);
}

.swiper-button-next.swiper-custom-button.swiper-button-disabled, .swiper-button-prev.swiper-custom-button.swiper-button-disabled {
	pointer-events: visible;
}

.swiper-pagination-bullet {
	width: 20px;
	height: 20px;
	text-align: center;
	line-height: 20px;
	font-size: 12px;
	color: #000;
	background: #fff;
	margin: 0px 4px;
	opacity: 0.6;
}

.swiper-pagination-bullet:focus {
	outline: none;
}

.swiper-pagination {
	bottom: 10px;
	width: 100%;
}

.swiper-pagination-bullet-active {
	color: #fff;
	background: #003366;
	opacity: 1;
}

.lightbox .lb-image {
	user-select: none;
}

/*-------------------------------------
予約フォーム改修 mai 20210311
---------------------------------------*/

.price-origin {
	text-decoration: line-through;
	display: block;
	padding: 0 6px;
	font-size: 0.8em;
}

.campaign_notice {
	width: 100%;
	height: auto;
	border: 1px solid #ffb1b1;
	padding: 5px 10px;
	margin: 0 0 5px;
	box-sizing: border-box;
	border-radius: 5px;
}

.campaign_notice>p {
	font-weight: 600;
	color: #dc2525;
}

.price-campaign {
	color: #dc2525;
}

.price-original {
	text-decoration: line-through;
	padding: 0 6px;
}

/*-- 2021.03.29---------------------------*/

.weekly_day.tel .day_event {
	color: #6adec9;
}

.calendar_mark_desc ul li.mark_tel {
	max-width: none;
	flex-basis: 100%;
}

li.mark_tel span {
	color: #6adec9;
}

/*-- 2021.04.22---------------------------*/

.price-flex {
	font-size: 0.7em;
}

.price-flex dl {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 0 5px;
}

.price-flex dl dt {
	flex-basis: 50%;
	max-width: 50%;
}

.price-flex dl dd {
	flex-basis: 50%;
	max-width: 50%;
	text-align: right;
}

.price-flex dl.dl_cp dd, .price-flex dl.dl_chain dd {
	color: #e33c3c;
}

.price-flex._ttl {
	border-top: 1px solid #ddd;
	margin: 10px 0 0;
	padding: 10px 0 0;
}

.price-flex._ttl dl dt {
	font-size: 1.3em;
}

.price-flex._ttl dl dd {
	font-size: 1.5em;
	color: #e33c3c;
}

ul.rate_table_note {
	padding: 10px 5px;
}

ul.rate_table_note>li {
	padding: 0 0 5px;
	font-size: 0.9em;
}

a.chain_table_btn {
	line-height: 1;
	padding: 5px 10px;
	border: 1px solid #f35734;
	box-sizing: border-box;
	border-radius: 3px;
	color: #f35734;
	font-weight: 600;
}

a.bf_link {
	margin: 0 0 0 15px;
	box-sizing: border-box;
	padding: 3px 5px;
	border: 1px solid #fb8242;
	color: #fb8242;
	border-radius: 3px;
	transition: all ease .33s;
}

a.bf_link:hover {
	opacity: 0.6;
}

span.bf_night {
	width: auto !important;
	display: inline;
	max-width: 20px;
}

.is_break_fast {
	display: inline-block;
	margin: 0 0 0 10px;
}

.btnspinner {
	user-select: none;
	vertical-align: middle;
}

.spinner_area input[type="button"] {
	cursor: pointer;
	padding: 0 8px;
	font-weight: 600;
	background: #ddd;
}

#breakfast_count, #adult, #select_child {
	padding: 0;
	border: 1px solid #ccc;
	border-radius: 0;
	font-size: 1em;
	width: auto;
	vertical-align: middle;
	line-height: 1;
	width: auto;
	max-width: 45px;
	text-align: center;
}

.form_content_box {
	border: 1px solid #ddd;
	padding: 15px;
	display: flex;
	flex-wrap: wrap;
}

.flx-100 {
	flex-basis: 100%;
	max-width: 100%;
}

.spinner_area {
	padding: 0 0 15px;
	display: flex;
	align-items: center;
}

.spinner_area:last-child {
	padding: 0;
}

.spinner_area>div {
	padding: 0 20px;
}

p.bf_price {
	display: flex;
	align-items: center;
	padding: 15px 10px;
}

p.bf_price>i {
	padding: 0 10px;
	color: #fb8242;
}

p.bf_price>em {
	text-decoration-line: line-through;
}

.res_history_box {
	padding: 10px;
	text-align: center;
}

.res_history_box a {
	color: #2470cc;
	background: #fff;
	border: 1px solid #2470cc;
	padding: 15px 20px;
	transition: all ease .33s;
	box-sizing: border-box;
	border-radius: 3px;
	font-size: 1.3em;
}

.res_history_box a:hover {
	color: #ffffff;
	background: #2470cc;
}

ul.ul_res_history>li {
	border-bottom: 1px dashed #ddd;
	padding: 0 10px 10px;
	margin: 0 0 10px;
	font-size: 1.1em;
}

ul.ul_res_history>li:first-child {
	border-bottom: 1px solid #ddd;
}

span.rh_date {
	letter-spacing: 1px;
	font-weight: 600;
	padding: 0 0 0 3px;
	display: block;
}

span.rh_date>i {
	padding: 0 10px;
	color: #2470cc;
}

span.rh_room {
	text-align: center;
	border: 1px solid #2470cc;
	color: #2470cc;
	padding: 5px 10px;
	margin: 0 10px 0 0;
	border-radius: 200px;
	display: inline-block;
	line-height: 1;
	box-sizing: border-box;
}

span.rh_payment {
	display: block;
	text-align: right;
	font-size: 1.1em;
	color: #41566b;
}

ul.ul_res_history>li dl {
	margin: 0 0 8px;
}

dl.dl_flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 !important;
}

._history {
	max-width: 600px;
}

._history a.res_link {
	margin: 0 auto;
}

ul.ul_res_history {
	width: 100%;
	margin: 0 auto 25px;
}

/*------------------------------*/

.tours_bn._shisetsu_cp {
	max-width: 570px;
	margin: 0 auto;
}

.shisetu_cp_desc {
	max-width: 570px;
	text-align: center;
	margin: 0 auto;
	padding: 15px 0 0;
}

nav.nav_h ul li i, nav.nav_f ul li i {
	font-size: 1.3em;
}

/*--- 20210719---------------------------*/

.square_box h3 {
	margin: 0 0 10px;
	font-size: 1.4em;
}

ul.ul_fac_glry {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	box-sizing: border-box;
	padding: 10px;
	margin: 0 0 20px;
}

ul.ul_fac_glry>li {
	flex-basis: 25%;
	max-width: 25%;
	margin: 0;
	text-align: right;
	padding: 15px;
	box-sizing: border-box;
	position: relative;
}

ul.ul_fac_glry>li a {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

ul.ul_fac_glry>li a:hover~img {
	opacity: 0.6;
}

ul.ul_fac_glry>li>b {
	position: absolute;
	bottom: 0;
	right: 0;
	color: #fff;
	background: rgb(0 51 102 / 80%);
	padding: 3px 15px;
	border-radius: 3px;
	text-align: center;
}

ul.ul_fac_glry>li img {
	border-radius: 3px;
	box-shadow: 0 10px 17px -14px rgb(0 0 0 / 40%);
	transition: all ease .33s;
}

dl.dl_faci {
	margin: 0 0 20px;
	padding: 15px;
	width: 95%;
	box-sizing: border-box;
	margin: 0 auto;
}

dl.dl_faci h4 {
	padding: 10px 0 3px;
	color: #204d79;
	border-bottom: 1px dashed #ddd;
	margin: 0 0 5px;
	font-size: 1.1em;
}

ul.access-desc.__flex {
	display: flex;
	justify-content: space-between;
}

ul.access-desc {
	width: 80%;
	height: auto;
	max-width: 600px;
	margin: 0 auto;
	padding: 15px;
}

li.fb-40 {
	flex-basis: 40%;
	max-width: 40%;
}

li.fb-55 {
	flex-basis: 55%;
	max-width: 55%;
}

section.sec-access-desc {
	padding: 70px 0 0;
	position: relative;
	max-width: 1080px;
	margin: 0 auto;
	width: 95%;
	height: auto;
}

section.sec-access-desc:last-of-type {
	padding: 70px 0;
}

section.sec-access-desc h3 {
	border-bottom: 1px solid;
	padding: 25px 0 5px;
	margin: 0 0 25px;
}

ul.access-desc li>img {
	border-radius: 5px;
}

p.acs-p {
	font-size: 1.1em;
	margin: 0 0 10px;
}

ul.ul-flex-root {
	display: flex;
	justify-content: space-between;
	padding: 0 0 50px;
	width: 95%;
	margin: 0 auto;
	font-weight: 600;
}

ul.ul-flex-root>li {
	flex-basis: 100%;
	max-width: 100%;
}

li.acs-line-box>span {
	display: block;
	width: 100%;
	height: 5px;
	background: #949494;
}

li.acs-line-box.__train>span {
	display: block;
	width: 100%;
	height: 5px;
	background: #eaeaea;
	position: relative;
	overflow: hidden;
}

li.acs-line-box.__train>span::before {
	content: "";
	width: 100%;
	display: block;
	border-bottom: 10px dashed #949494;
	position: absolute;
	bottom: -5px;
	left: 0;
}

li.acs-station {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 150px !important;
	position: relative;
}

li.acs-station.__start>span {
	display: block;
	text-align: center;
	line-height: 1;
	color: #fff;
	width: 100%;
	background: #003366;
	padding: 15px 0;
	box-sizing: border-box;
	border-radius: 3px;
}

li.acs-station.__center>span {
	display: block;
	text-align: center;
	line-height: 1;
	border: 2px solid #949494;
	width: 100%;
	background: #fff;
	padding: 15px 0;
	box-sizing: border-box;
	border-radius: 200px;
}

li.acs-line-box>p {
	text-align: center;
	padding: 5px;
}

li.acs-station>p {
	position: absolute;
	bottom: -12px;
	font-size: 0.9em;
}

/*---20230509追加（maeda)---*/
/*ダウンロード*/
/*リーフレット再修正20230601（前田）*/
.leaflet{
	display:flex;
	width:100%;
}

.leaflet1{
	display:block;
	width:50%;
}

.leaflet1 h3{
	text-align: center;
}

.leaflet1 img{
	width:80%;
	max-height:280px;
	margin-left:10%;
	margin-right:10%;
	margin-bottom:5%;
	border-radius: 10px;
	align-items: center;
	object-fit : cover;
	}

.leaflet2{
	display:block;
	width:50%;
}

.leaflet2 h3{
	text-align: center;
}

.leaflet2 img{
	width:80%;
	max-height:280px;
	margin-left:10%;
	margin-right:10%;
	margin-bottom:5%;
	border-radius: 10px;
	align-items: center;
	object-fit : cover;
	}

	.leaflet1>a {
		position: absolute;
		display: inline-block;
		top: 55%;
		left: -50%;
		right: 0;
		margin: 0 auto;
		transition: all ease .33s;
		z-index: 1;
		max-width: 350px;
		background: rgb(0 51 102 / 80%);
		text-align: center;
		line-height: 1;
		padding: 15px;
		border-radius: 3px;
		color: #fff;
		font-size: 1.5em;
		box-sizing: border-box;
		box-shadow: 0 10px 17px -14px rgb(0 0 0 / 40%);
	}
	
	.leaflet1>a>i {
		margin: 0 10px 0 0;
	}
	
	.leaflet1>a:hover {
		background: rgb(0 0 0 / 80%);
	}

	.leaflet2>a {
		position: absolute;
		display: inline-block;
		top: 55%;
		left: 50%;
		right: 0;
		margin: 0 auto;
		transition: all ease .33s;
		z-index: 1;
		max-width: 350px;
		background: rgb(0 51 102 / 80%);
		text-align: center;
		line-height: 1;
		padding: 15px;
		border-radius: 3px;
		color: #fff;
		font-size: 1.5em;
		box-sizing: border-box;
		box-shadow: 0 10px 17px -14px rgb(0 0 0 / 40%);
	}
	
	.leaflet2>a>i {
		margin: 0 10px 0 0;
	}
	
	.leaflet2>a:hover {
		background: rgb(0 0 0 / 80%);
	}

	@media screen and (max-width:1040px){
		.leaflet1{
			display:block;
			width:50%;
		}
		
		.leaflet1 h3{
			text-align: center;
		}

		.leaflet1 img{
			width:80%;
			max-height:230px;
			margin-left:10%;
			margin-right:10%;
			margin-bottom:5%;
			border-radius: 10px;
			align-items: center;
			object-fit : cover;
			}
		
		.leaflet2{
			display:block;
			width:50%;
		}
		
		.leaflet2 h3{
			text-align: center;
		}
		
		.leaflet2 img{
			width:80%;
			max-height:230px;
			margin-left:10%;
			margin-right:10%;
			margin-bottom:5%;
			border-radius: 10px;
			align-items: center;
			object-fit : cover;
			}
		
			.leaflet1>a {
				position: absolute;
				display: inline-block;
				top: 53%;
				left: -50%;
				right: 0;
				margin: 0 auto;
				transition: all ease .33s;
				z-index: 1;
				max-width: 200px;
				background: rgb(0 51 102 / 80%);
				text-align: center;
				line-height: 1;
				padding: 15px;
				border-radius: 3px;
				color: #fff;
				font-size: 1.5em;
				box-sizing: border-box;
				box-shadow: 0 10px 17px -14px rgb(0 0 0 / 40%);
			}
			
			.leaflet1>a>i {
				margin: 0 10px 0 0;
			}
			
			.leaflet1>a:hover {
				background: rgb(0 0 0 / 80%);
			}
		
			.leaflet2>a {
				position: absolute;
				display: inline-block;
				top: 53%;
				left: 50%;
				right: 0;
				margin: 0 auto;
				transition: all ease .33s;
				z-index: 1;
				max-width: 200px;
				background: rgb(0 51 102 / 80%);
				text-align: center;
				line-height: 1;
				padding: 15px;
				border-radius: 3px;
				color: #fff;
				font-size: 1.5em;
				box-sizing: border-box;
				box-shadow: 0 10px 17px -14px rgb(0 0 0 / 40%);
			}
			
			.leaflet2>a>i {
				margin: 0 10px 0 0;
			}
			
			.leaflet2>a:hover {
				background: rgb(0 0 0 / 80%);
			}	
	}
	
	@media screen and (max-width:850px){
		.leaflet1{
			display:block;
			width:50%;
		}
		
		.leaflet1 h3{
			text-align: center;
		}

		.leaflet1 img{
			width:80%;
			max-height:180px;
			margin-left:10%;
			margin-right:10%;
			margin-bottom:5%;
			border-radius: 10px;
			align-items: center;
			object-fit : cover;
			}
		
		.leaflet2{
			display:block;
			width:50%;
		}
		
		.leaflet2 h3{
			text-align: center;
		}
		
		.leaflet2 img{
			width:80%;
			max-height:180px;
			margin-left:10%;
			margin-right:10%;
			margin-bottom:5%;
			border-radius: 10px;
			align-items: center;
			object-fit : cover;
			}
		
			.leaflet1>a {
				position: absolute;
				display: inline-block;
				top: 53%;
				left: -50%;
				right: 0;
				margin: 0 auto;
				transition: all ease .33s;
				z-index: 1;
				max-width: 180px;
				background: rgb(0 51 102 / 80%);
				text-align: center;
				line-height: 1;
				padding: 15px;
				border-radius: 3px;
				color: #fff;
				font-size: 1.5em;
				box-sizing: border-box;
				box-shadow: 0 10px 17px -14px rgb(0 0 0 / 40%);
			}
			
			.leaflet1>a>i {
				margin: 0 10px 0 0;
			}
			
			.leaflet1>a:hover {
				background: rgb(0 0 0 / 80%);
			}
		
			.leaflet2>a {
				position: absolute;
				display: inline-block;
				top: 53%;
				left: 50%;
				right: 0;
				margin: 0 auto;
				transition: all ease .33s;
				z-index: 1;
				max-width: 180px;
				background: rgb(0 51 102 / 80%);
				text-align: center;
				line-height: 1;
				padding: 15px;
				border-radius: 3px;
				color: #fff;
				font-size: 1.5em;
				box-sizing: border-box;
				box-shadow: 0 10px 17px -14px rgb(0 0 0 / 40%);
			}
			
			.leaflet2>a>i {
				margin: 0 10px 0 0;
			}
			
			.leaflet2>a:hover {
				background: rgb(0 0 0 / 80%);
			}	
	}
	@media screen and (max-width:600px){
		.leaflet{
			display:block;
			width:100%;
		}
		
		.leaflet1{
			display:block;
			width:100%;
		}
		
		.leaflet1 h3{
			text-align: center;
		}
		
		.leaflet1 img{
			width:80%;
			max-height:150px;
			margin-left:10%;
			margin-right:10%;
			margin-bottom:5%;
			border-radius: 10px;
			align-items: center;
			object-fit : cover;
			}
		
		.leaflet2{
			display:block;
			width:100%;
		}
		
		.leaflet2 h3{
			text-align: center;
		}
		
		.leaflet2 img{
			width:80%;
			max-height:150px;
			margin-left:10%;
			margin-right:10%;
			margin-bottom:5%;
			border-radius: 10px;
			align-items: center;
			object-fit : cover;
			}
		
			.leaflet1>a {
				position: absolute;
				display: inline-block;
				top: 37%;
				left: 0%;
				right: 0;
				margin: 0 auto;
				transition: all ease .33s;
				z-index: 1;
				max-width: 200px;
				background: rgb(0 51 102 / 80%);
				text-align: center;
				line-height: 1;
				padding: 15px;
				border-radius: 3px;
				color: #fff;
				font-size: 1.5em;
				box-sizing: border-box;
				box-shadow: 0 10px 17px -14px rgb(0 0 0 / 40%);
			}
			
			.leaflet1>a>i {
				margin: 0 10px 0 0;
			}
			
			.leaflet1>a:hover {
				background: rgb(0 0 0 / 80%);
			}
		
			.leaflet2>a {
				position: absolute;
				display: inline-block;
				top: 68%;
				left: 0%;
				right: 0;
				margin: 0 auto;
				transition: all ease .33s;
				z-index: 1;
				max-width: 200px;
				background: rgb(0 51 102 / 80%);
				text-align: center;
				line-height: 1;
				padding: 15px;
				border-radius: 3px;
				color: #fff;
				font-size: 1.5em;
				box-sizing: border-box;
				box-shadow: 0 10px 17px -14px rgb(0 0 0 / 40%);
			}
			
			.leaflet2>a>i {
				margin: 0 10px 0 0;
			}
			
			.leaflet2>a:hover {
				background: rgb(0 0 0 / 80%);
			}	
	}

/*20230511_改修依頼箇所（maeda）*/
ul.banner{
	display: flex;
	width:100%;
	margin:0px;
	height:auto;
}

ul.banner li{
	display: flex;
	width:100%;
	height:auto;
	position:relative;
}

ul.banner li img{
	width:100%;
	height:auto;
	margin-top:5px;
	margin-left:5px;
	border-radius: 10px;
}

/*202504_ぺージ改修*/
ul.banner {
	column-gap: 20px;
}

ul.banner li {
	width: auto;
}


/* 予約フォーム改修 2021-11-01 */

.fs-08 {
	font-size: 0.8rem !important;
}

.p-rental {
	text-align: right;
	font-size: 0.9rem !important;
	padding: 0.5rem 0 0 0 !important;
	color: #9e9e9e;
}

.about_ilst.sow_logo {
	width: 250px;
}

.sow-link-box {
	display: flex;
	justify-content: flex-end;
	padding: 1rem 0 0 0;
	margin: 2rem 0 0 0;
}

.btn-sow-link {
	display: inline-flex;
	padding: 0.5rem 0.8rem;
	background: #2470cc;
	color: #fff;
	border-radius: 0.25rem;
}

/*20230517 maeda*/
.tour_tokuten{
	display:flex;
	width:100%;
}

.ul_tours_img{
	display: flex;
	align-items:flex-end;
}

.ul_tours_img li{
	margin-left: 15px;
	margin-right: 15px;
	text-align: justify-all;
    text-justify:justify-all;
}

.ul_tours_img li img{
	width:auto;
	height:250px;
	max-width: 100%;
	max-height: 100%;
	align-items:center;
	display: block;
    margin: 0 auto;
}

.ul_tours_img p {
	font-size: 1.0em !important;
}

@media screen and (max-width:980px){
	.tour_tokuten{
		display:flex;
		width:100%;
	}
	
	.ul_tours_img{
		display: flex;
		align-items:flex-end;
	}
	
	.ul_tours_img li{
		margin-left: 15px;
		margin-right: 15px;
		text-align: justify-all;
		text-justify:justify-all;
	}
	
	.ul_tours_img li img{
		width:auto;
		height:180px;
		max-width: 100%;
		max-height: 100%;
		align-items:center;
		display: block;
		margin: 0 auto;
	}
	
	.ul_tours_img p {
		font-size: 1.0em !important;
	}
}

@media screen and (max-width:600px){
	.tour_tokuten{
		display:flex;
		flex-direction: column;
		width:100%;
	}

	.ul_tours_img{
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		width:100%;
	}

	ul.ul_tours_img li {
		display:block;
		margin:3% auto;
		flex-basis: 100%;
		width: 100%;
	}

	.ul_tours_img li img{
		width:auto;
		height:250px;
		max-width: 100%;
		max-height: 100%;
		align-items:center;
		display: block;
		margin: 0 auto;
	}
}


/*20230526 朝食ページ追加（maeda)*/
dl.dl_breakfast {
	margin: 20px 0;
}

dl.dl_breakfast dt {
	margin: 0 0 10px;
}

dl.dl_breakfast dd {
	margin: 0 0 30px;
	display: flex;
	justify-content: space-between;
}

dl.dl_breakfast dt h4 {
	font-size: 1.2em;
	margin: 10px 0 2px;
	display: inline-block;
	border-left: 5px solid #013e75;
	padding: 0px 10px;
	color: #013e75;
	letter-spacing: 2px;
}

dl.dl_breakfast dd div {
	flex-basis: 100%;
}

dl.dl_breakfast dd p.p_tours_img {
	flex-basis: 30%;
	margin: 0 0 0 20px;
}

dl.dl_breakfast dd div {
	flex-basis: 100%;
}

dl.dl_breakfast dd ol li {
	list-style-type: upper-alpha;
	margin: 0 0 3px 20px;
	font-size: 1.1em;
}

dl.dl_breakfast dd ol.ol_circle li{
	list-style-type: circle;
}

dl.dl_breakfast dd {
	list-style: decimal;
}

/*20230529 人力車ページ追加（maeda)*/
dl.dl_tours{
	width: 100%;
}

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

.jinrikisya1{
	display:flex;
}

.jinrikisya1-1{
	width:100%;
	display:block
}

.jinrikisya1-1 img{
	width:100%;
	margin-right:5px;
}

.jinrikisya1-2{
	width:100%;
}

.jinrikisya1-2 video{
	width:100%;
	height:100%;
	padding-top: 0px;
	padding-bottom: 0px;
	margin-top:0px;
	margin-bottom:0px;
	border:1px solid black;
	object-fit: cover;
}

.jinrikisya2{
	margin-top: 5px;
	display: flex;
	width:100%;
}

.jinrikisya2 img{
	width:50%;
	height:250px;
}

@media screen and (max-width:600px){
	.jinrikisya{
		display:block;
		width:100%;
	}
	
	.jinrikisya1{
		display:block;
	}
	
	.jinrikisya1-1{
		width:100%;
		display:block
	}
	
	.jinrikisya1-1 img{
		width:100%;
		margin-bottom:5px;
	}
	
	.jinrikisya1-2{
		width:100%;
	}
	
	.jinrikisya1-2 video{
		width:100%;
		height:100%;
		padding-top: 0px;
		padding-bottom: 0px;
		margin-top:0px;
		margin-bottom:5px;
		border:1px solid black;
		object-fit: cover;
	}
	
	.jinrikisya2{
		margin-top: 5px;
		display: flex;
		width:100%;
	}
	
	.jinrikisya2 img{
		width:50%;
		height:150px;
		object-fit : cover;
	}
}

/*ヘッダー編集20230531（maeda)*/
.title span{
	text-align:center;
}

/*色修正20230609（maeda)*/
span.red{
	color:red;
	font-weight:600;
}


/*案内ページ追加20231129（shimura)*/
/* info_note */
.info_note h3 {
	border-bottom:none;
}

/* dl_information */
dl.dl_information {
	margin: 20px 0;
}

dl.dl_information dt {
	margin: 0 0 10px;
}

dl.dl_information dd {
	margin: 0 0 30px;
	display: flex;
	justify-content: space-between;
}

dl.dl_information h3 {
		font-size: 1.5em;
		margin: 0 0 10px;
		border-bottom: 1px solid #75ade4;
		padding: 0 10px 0 5px;
		display: inline-block;
}

dl.dl_information dt h4 {
	font-size: 1.2em;
	margin: 10px 0 2px;
	display: inline-block;
	border-left: 5px solid #013e75;
	padding: 0px 10px;
	color: #013e75;
	letter-spacing: 2px;
}

dl.dl_information p {
	font-size: 1em;
}

dl.dl_information dd ol li {
	list-style-type: upper-alpha;
	margin: 0 0 3px 20px;
	font-size: 1em;
}

dl.dl_information dd ol.ol_circle li{
	list-style-type: circle;
}

dl.dl_information dd {
	list-style: decimal;
}

/*memu_nav*/
.memu_nav {
	display: none;
}

.main_menu {
	display: none;
}

/* info_movie */
.info_movie1 {
    display: flex;
	margin-bottom: 20px;
}

.info_movie1-1,
.info_movie1-2 {
    width: 50%;
	background-color: #fff;
}

.info_movie1-2 {
    margin-right: 5px;
}

.info_movie1-1 img {
    width: 100%;
    /*height: 100%;*/
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    /*object-fit: cover;*/
}

.info_movie1-2 {
    margin-left: 20px; 
    margin-right: 10px;
}

.info_movie1-2 {
    width: 95%;
    margin-left: 0; 
    margin-right: 0;
    background-color: #fff; 
    padding: 10px; 
}

.info_movie1-2 h4 {
    margin-bottom: 10px;
}

/*info_img*/ 
.info_img1 {
    display: flex;
	margin-bottom: 20px;
}

.info_img1-1,
.info_img1-2 {
    width: 50%;
	background-color: #fff;
}

.info_img1-2 img {
    width: 100%;
    /*height: 100%;*/
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    /*object-fit: cover;*/
}

.info_img1-1 {
    margin-left: 20px; 
    margin-right: 10px; 
}

.info_img1-1 {
    width: 95%;
    margin-left: 0; 
    margin-right: 0;
    background-color: #fff; 
    padding: 10px; 
}

.info_img1-1 h4 {
    margin-bottom: 10px;
}

/*section*/
section:before {
    content: "";
    display: block;
    height: 100px; 
    margin-top: -100px;
    visibility: hidden;
}

/*Web_box*/
.Web_box {
	position: relative;
	margin: 45px auto;
}

.web_box>a {
	padding: 15px;
	border: #225282 1px solid;
	background: #fff;
	color: #225282;
	font-size: 1.4em;
	display: block;
	width: 320px;
	text-align: center;
	margin: 0 auto;
	box-sizing: border-box;
	box-shadow: 0 10px 17px -14px rgb(0 0 0 / 40%);
	transition: all ease .33s;
}

.web_box>a:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 10px -8px rgb(0 0 0 / 40%);
}

.btn_blue {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 150px;
	padding: 1rem 4rem;
	font-weight: bold;
	border: 2px solid #225282;
	background: #225282;
	color: #fff;
	transition: 0.5s;
}
.btn_blue:hover {
	color: #225282;
	background: #fff;
}

@media screen and (max-width:600px){
dl.dl_information {
	overflow-x : hidden;
}

/*レスポンシブ用メインメニュー*/
.main_menu {
	display: block;
	margin: auto;
    margin-bottom: 30px;
    border: 2px solid #225282;
    border-radius: 3px;
}

.dropdown_menu {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 10px 30px;
    background-color: #225282;
    color: #fff;
    font-weight: 600;
    font-size: 1.3em;
}

.dropdown_menu label::after {
    margin-left: 7px;
    font-weight: 500;
    font-size: .7em;
    color: #fff;
    content: "[OPEN]";
    cursor: pointer;
}

.dropdown_menu:has(:checked) label::after {
    content: "[CLOSE]";
}

.dropdown_menu input {
    display: none;
}

.dropdown_list {
    list-style-type: disc;
    margin: 0;
    overflow: hidden;
}

.main_menu > .dropdown_list  {
    height: 0;
}

.main_menu:has(:checked) > .dropdown_list  {
    height: auto;
    padding: 1.1em 1.1em 1.1em 1.1em;
}

.dropdown_list {
	font-size: 1.3em;
    margin-top: 5px;
    padding-left: 1.1em;
}

.dropdown_list li {
    padding: 5px 0;
    font-weight: 600;
	border-bottom: 1px solid #75ade4;
}

.dropdown_list a {
    color: #333;
    text-decoration: none;
}

/*ここまで*/


/* info_movie */
.info_movie1 {
	display:flex;
	flex-direction: column;
}

.info_movie1-1 img{
	width: 95%;
}
		
.info_movie1-1 {
	width: calc(100% + 20px); 
}
	
/*info_img*/
.info_img1 {
	display:flex;
	flex-direction: column;
}

.info_img1-2 img{
	width: 95%;
}

.info_img1-2 {
	width: calc(100% + 20px); 
}

}
