@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: auto;
	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;
}

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: #f30000;
}

.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; */
	border-bottom: 1px solid #ddd;
	padding: 15px;
	display: flex;
}

dl.dl_number.no_border {
	border-bottom: none;
}

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

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

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;
}

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 5px 0 0;
	position: relative;
	width: 18px;
	height: 18px;
	padding: 0;
	border: 1px solid #666;
	vertical-align: bottom;
	min-width: 10px;
	transition: all ease .33s;
	box-sizing: border-box;
	border-radius: 50px;
}

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

dl.dl_number dd label input[type=radio]: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>em {
	transition: all ease .33s;
	line-height: 1;
}

dl.dl_number dd label:hover>em {
	opacity: 0.6;
}

/*---checkbox---*/

dl.dl_number dd label span i {
	opacity: 0;
	position: absolute;
	transition: all ease .2s;
	color: #03a9f4;
	font-size: 0.9em;
	top: 50%;
	transform: translateY(-50%) 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: #03a9f4;
	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;
}

#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;
}

@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 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: 0;
	overflow: hidden;
	font-weight: 600;
	user-select: none;
	font-size: 1.2em;
}

.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 {
	text-align: center;
}

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

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

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

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

.day_event.status-99 i {
	transition: all ease .33s;
	;
}

.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;
	font-size: 1.1em;
}

.day_event.status-99 a:hover~i {
	opacity: 0.5;
}

.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%;
}

ul.ul_room dl dd table td:last-child {
	width: 40%;
}

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;
}

/*--------------------------------
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;
}

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 div {
	flex-basis: 100%;
}

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 ol.ol_num li {
	list-style: decimal;
}

ul.ul_tours_img {
	display: flex;
	justify-content: space-between;
	width: 85%;
	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: 48%;
	max-width: 48%;
}

.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;
}

.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;
	-webkit-appearance: menulist;
}

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;
}

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

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

/*
main#top_cal {
  height: calc(100vh - 38px);
} */

.logo_box {
	flex-basis: 170px;
}

header {
	background: #dd9933;
	position: relative;
}

footer {
	background: #dd9933;
	box-sizing: border-box;
	max-height: 38px;
}

.calendar-box {
	flex-basis: 100%;
	max-width: 100%;
	margin: 0;
	padding: 15px;
	border-radius: 5px;
	box-shadow: 0 2px 1px -1px rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 1px 3px 0 rgba(0, 0, 0, .12) !important;
}

header .inner_header {
	max-width: 1200px;
	justify-content: center;
	max-height: 60px;
	box-sizing: border-box;
}

.inner_wrapper {
	max-width: 1200px;
	padding: 25px 0px;
	width: 100%;
}

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

.head-weekday {
	border-bottom: none;
}

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

.weekly_day.t_frame {
	text-align: center;
}

.weekly_day {
	padding: 20px 0;
	font-size: 1.3em;
}

.calendar_mark_desc {
	margin: 0;
	padding: 5px 5px 10px;
	font-size: 1.1em;
	display: flex;
}

.calendar_selector {
	text-align: center;
	font-size: 1.3em;
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0 5px 10px;
	font-weight: 600;
	user-select: none;
	align-items: center;
	box-sizing: border-box;
}

.calendar_mark_desc ul {
	display: flex;
	margin: 0 0 0 40px;
}

.head-weekday2.today .day_label span::after {
	background: #c8f7ff;
	content: "";
	display: block;
	width: 25px;
	height: 25px;
	border-radius: 100px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
	mix-blend-mode: darken;
}

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

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

dl.dl_number dd label span::after {
	content: "";
	opacity: 0;
	position: absolute;
	transition: all ease .2s;
	background: #e87777;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
	display: block;
	width: 10px;
	height: 10px;
	box-sizing: border-box;
	border-radius: 50px;
}

input[type="text"], input[type="time"], input[type="tel"], input[type="email"], textarea {
	background: #fff;
	border: 1px solid #666;
	width: 100%;
	height: auto;
	padding: 5px 10px;
	box-sizing: border-box;
	background: rgb(255 255 255);
	display: block;
}

input#submit.is-active:hover {
	background: #dd9933;
	color: #fff;
	transform: translateY(-3px);
}

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

input#submit.is-active {
	opacity: 1;
	cursor: pointer;
}

.resv_form {
	width: 80%;
	height: auto;
	margin: 0 auto 120px;
	max-width: 800px;
	background: #fff;
	box-sizing: border-box;
	padding: 20px;
	border-radius: 5px;
	box-shadow: 0 2px 1px -1px rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 1px 3px 0 rgba(0, 0, 0, .12) !important;
}

dl.dl_number dd label>span.span_check {
	border-radius: 3px;
}

dl.dl_number.dl_agrmnt {
	flex-wrap: wrap;
}

dl.dl_number.dl_agrmnt dd {
	flex-basis: 100%;
	margin: 0;
}

dl.dl_number.dl_agrmnt dd a {
	display: block;
	background: #ff7043;
	width: 100%;
	box-sizing: border-box;
	padding: 10px 15px;
	text-align: center;
	border-radius: 3px;
	color: #fff;
	font-weight: 500;
	letter-spacing: 2px;
	transition: all ease .33s;
	margin: 0 auto 10px;
	box-shadow: 0 2px 1px -1px rgb(0 0 0 / 20%), 0 1px 1px 0 rgb(0 0 0 / 14%), 0 1px 3px 0 rgb(0 0 0 / 12%) !important;
}

dl.dl_number.dl_agrmnt dd a:hover {
	opacity: 0.6;
}

.day_event span {
	font-size: 0.6em;
	display: block;
	text-align: center;
	position: absolute;
	bottom: -17px;
	left: 0;
	right: 0;
	margin: 0 auto;
	color: #f5816f;
}

h2 {
	margin: 0 auto 35px;
	max-width: 800px;
}

h2 span {
	display: block;
	font-size: 0.7em;
	margin: 30px 0 0;
	color: #e53935;
}

.tb_contact.send_res th {
	width: 40%;
}

.tb_contact.send_res td {
	width: 60%;
}

.tb_contact.send_res th>span, .tb_contact.send_res td>span {
	display: block;
	padding: 0 0 5px 5px;
}

.tb_contact.send_res td>span {
	border-bottom: 1px solid #ddd;
}

.submit_flex {
	display: flex;
	justify-content: center;
	padding: 30px 0;
}

.submit_col {
	flex: 0 0 38%;
	text-align: center;
}

.submit_col a {
	border-radius: 3px;
}

.submit_col input, .submit_col a {
	width: 70%;
	margin: 25px auto 0;
	cursor: pointer;
	padding: 10px;
	font-size: 1.1em;
	background: #fff;
	border: 1px solid #dd9933;
	color: #dd9933;
	box-shadow: 0 10px 12px -10px rgb(0 0 0 / 30%);
	transition: all ease .33s;
	box-sizing: border-box;
	display: block;
	text-decoration: none;
}

.submit_col input:hover, .submit_col a:hover {
	background: #dd9933;
	color: #fff;
	transform: translateY(-3px);
}

ul.ul_error {
	text-align: center;
}

ul.ul_error li {
	padding: 10px;
	font-size: 1.2em;
}

ul.ul_error li em {
	color: #ff5439;
	font-weight: 600;
}

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

ul.ul_error li input:hover {
	background: #dd9933;
	color: #fff;
	transform: translateY(-3px);
}

ul.ul_result {
	font-size: 1.2em;
}

ul.ul_result p {
	padding: 0 0 20px;
}

ul.ul_result p.tel em {
	margin: 0 10px 0 0;
}

ul.ul_result p.tel {
	border: 1px solid #ddd;
	padding: 10px;
	width: 50%;
	margin: 20px auto;
	text-align: center;
	max-width: 200px;
	border-radius: 3px;
}

dl.dl_number.member_type {
	flex-wrap: wrap;
}

dl.dl_number.member_type dd {
	flex-basis: 100%;
	padding: 0 0 10px;
}

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

.error_msg_box {
	font-size: 1.2em;
	color: #e22121;
	text-align: center;
	padding: 0 0 20px;
}

.error_msg_box a {
	display: block;
	padding: 15px;
	background: #dd9933;
	color: #fff;
	width: 50%;
	margin: 35px auto 15px;
	max-width: 190px;
	box-sizing: border-box;
	font-weight: 600;
	border-radius: 5px;
	transition: all ease .33s;
}

.error_msg_box a:hover {
	opacity: 0.7;
}

h2 span br {
	display: none;
}

ul.list li {
	list-style-type: circle;
	margin: 0 0 0 25px;
}

a.back_btn {
	display: block;
	background: #f5816f;
	text-align: center;
	padding: 5px 10px;
	max-width: 190px;
	border-radius: 3px;
	margin: 10px 0 0;
	color: #fff;
	transition: all ease .33s;
}

a.back_btn:hover {
	opacity: 0.6;
}

p.form_desc {
	width: 75%;
	height: auto;
	margin: 0 auto;
	padding: 0 0 30px;
	max-width: 800px;
	font-size: 1.1em;
	font-weight: 600;
}

.wizard>.content>.body input[type="checkbox"] {
	display: none;
}

.step00 {
	display: none;
}

.step02 {
	display: none;
}

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

.ckbox_flex label input[type="checkbox"] {
	display: none;
}

.ckbox_flex label span {
	width: 17px;
	height: 17px;
	padding: 0;
	border: 1px solid #ef683f;
	display: block;
	margin: 0 7px 0 0;
	position: relative;
	box-sizing: border-box;
}

.ckbox_flex label span i {
	opacity: 0;
	position: absolute;
	transition: all ease .33s;
	color: #ef683f;
	font-size: 0.9em;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0 auto;
	padding: 0 0 0 1px;
	transform: translateY(-50%);
}

.ckbox_flex label input[type="checkbox"]:checked~span i {
	opacity: 1;
}

.wizard.vertical>.content {
	min-height: 400px;
	overflow-y: auto;
}

ul.confirm_ul>li {
	background: #fff;
	padding: 7px 15px;
	margin: 0 0 10px;
	border-radius: 5px;
}

.ckbox_flex {
	display: flex;
	justify-content: flex-end;
}

.wizard.vertical>.steps {
	display: none;
}

.wizard.vertical>.content {
	width: 95%;
}

ul.confirm_ul>li h4.cfm_text a {
	color: #2276f3;
	transition: all ease .33s;
	margin: 0 5px 0 0;
	border-bottom: 1px solid;
}

ul.confirm_ul>li h4.cfm_text a:hover {
	opacity: 0.6;
}

ul.confirm_ul>li h4.cfm_text a>i {
	font-size: 0.8em;
	vertical-align: super;
}

h4.cfm_text {
	padding: 0 0 10px;
}

span.number {
	display: none;
}

p.form_desc a {
	color: #2276f3;
	transition: all ease .33s;
	margin: 0 5px 0 0;
	border-bottom: 1px solid;
}

p.form_desc a>i {
	font-size: 0.5em;
	vertical-align: super;
}

p.form_desc a:hover {
	opacity: 0.6;
}

/*---festival -----------------*/

td.td_note {
	padding: 0 20px 0;
	vertical-align: baseline;
	font-size: 0.9em;
	color: #ff7043;
}

select.select_box {
	border: 1px solid #ddd;
	width: 100%;
	height: auto;
	padding: 5px;
	box-sizing: border-box;
	background: #fff;
	font-size: inherit;
	color: inherit;
	font-family: inherit;
	cursor: pointer;
	-webkit-appearance: menulist;
}

input::placeholder {
	color: #c3c3c3;
}

.ul_result li h3 {
	text-align: center;
	padding: 20px 0 30px;
	font-size: 1.4em;
	color: #ff5312;
	margin: 0 auto;
}

h2 {
	margin: 0 auto;
	padding: 35px 0;
}

.note_box {
	width: 80%;
	height: auto;
	margin: 0 auto;
	max-width: 800px;
	box-sizing: border-box;
	padding: 20px 0;
	font-size: 1em;
	text-align: center;
}

ul.note_box h4 {
	padding: 15px 0;
	font-size: 1.3em;
	color: #e53935;
}

h2 span {
	padding: 35px 0;
}

/*---covid19 -----------------*/

.resv_form.form_wide {
	width: 100%;
	max-width: 1200px;
}

.hide {
	display: none;
}

ul.ul_submit_flex {
	display: flex;
	width: 100%;
	max-width: 100%;
	justify-content: space-between;
	align-items: center;
}

ul.ul_submit_flex li {
	flex-basis: 48%;
	max-width: 48%;
	padding: 15px;
	box-sizing: border-box;
}

ul.ul_submit_flex li dl dt {
	text-align: center;
	font-size: 1.4em;
	font-weight: 600;
	padding: 0 0 15px;
}

ul.ul_submit_flex li dl dd {
	text-align: center;
	padding: 10px 0;
	font-size: 1.2em;
}

label.lbl_btn {
	background: #ed6663;
	padding: 7px 20px;
	border-radius: 3px;
	color: #fff;
	cursor: pointer;
	font-weight: 500;
	transition: all ease .33s;
}

table.time_table {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	margin: 0 0 25px;
	user-select: none;
}

table.time_table th {
	border: 1px solid #bbb;
	padding: 10px 6px;
	box-sizing: border-box;
	text-align: center;
	line-height: 1;
}

table.time_table td {
	border: 1px solid #bbb;
	padding: 10px 6px;
	box-sizing: border-box;
	text-align: center;
	line-height: 1;
}

.no_date {
	background: #ddd;
}

.date_type01 {
	background: #fff8de;
}

.date_type02 {
	background: #ebfaff;
}

.resv_form h3 {
	padding: 0 0 15px;
	text-align: center;
	color: #f44336;
}

span.no_residue {
	color: #d45353;
}

label.res_submit_btn {
	cursor: pointer;
	user-select: none;
	transition: all ease .33s;
	width: 100%;
	display: block;
}

label.res_submit_btn:hover {
	color: #ff734a;
}

label#submit {
	display: block;
	width: 100%;
	margin: 25px auto 0;
	cursor: not-allowed;
	padding: 10px;
	font-size: 1.3em;
	background: #fff;
	border: 1px solid #dd9933;
	color: #dd9933;
	box-shadow: 0 2px 1px -1px rgb(0 0 0 / 20%), 0 1px 1px 0 rgb(0 0 0 / 14%), 0 1px 3px 0 rgb(0 0 0 / 12%) !important;
	transition: all ease .33s;
	box-sizing: border-box;
	opacity: 0.2;
	text-align: center;
	pointer-events: none;
	user-select: none;
	border-radius: 5px;
}

label#submit.is-active:hover {
	background: #dd9933;
	color: #fff;
}

label#submit.is-active {
	opacity: 1;
	cursor: pointer;
	pointer-events: visible;
}

.next_resv_box {
	display: flex;
	justify-content: center;
	width: 100%;
	flex-wrap: wrap;
	max-width: 100%;
	padding: 50px 0;
	text-align: center;
}

label.next_resv {
	background: #ed6663;
	padding: 7px 20px;
	border-radius: 3px;
	color: #fff;
	cursor: pointer;
	font-weight: 500;
	transition: all ease .33s;
	flex-basis: 100%;
	max-width: 100%;
	margin: 0 0 10px;
}

.next_resv_box p {
	padding: 0 0 10px;
	font-size: 0.9em;
	color: #ed6663;
}

.inner_wrapper.vh100 {
	height: calc(100vh - 98px);
	box-sizing: border-box;
}

h2 span {
	padding: 0;
}

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

.tb_contact.send_res th, .tb_contact.send_res td {
	padding: 0px 10px 15px;
}

ul.submit_flex {
	padding: 0;
}

h4.h4_next_resv {
	text-align: center;
	color: #fff;
	background: #ed6663;
	line-height: 1;
	padding: 15px 0px;
	box-sizing: border-box;
	border-radius: 3px 3px 0 0;
	font-size: 1.2em;
	user-select: none;
}

ul.note_box>li {
	margin: 0 0 10px;
}

.link_btn {
	display: block;
	background: #f44336;
	color: #fff;
	text-align: center;
	margin: 0 auto;
	line-height: 1;
	padding: 10px 20px;
	width: 100%;
	border-radius: 3px;
	box-sizing: border-box;
	font-weight: 600;
	transition: all ease .33s;
}

.link_btn:hover {
	opacity: 0.6;
}

ul.btn_flex {
	display: flex;
	justify-content: space-between;
	max-width: 600px;
	margin: 0 auto;
	padding: 20px 0;
}

ul.btn_flex li {
	flex-basis: 48%;
	max-width: 48%;
}

.resv_form h4 {
	font-size: 1.3em;
	padding: 5px 5px;
	background: #dd9933;
	color: #fff;
	margin: 0 0 10px;
	border-radius: 3px;
}

section.sec_dl {
	padding: 0 0 20px;
}

ul.download_list>li {
	padding: 3px;
	margin: 0 0 5px;
}

ul.download_list>li a {
	transition: all ease .33s;
}

ul.download_list>li a:hover {
	opacity: 0.6;
}

h6.h6_caution {
	font-size: 1.3em;
	color: #f44336;
	padding: 30px 0 0;
}

h6.h6_caution>em {
	border-bottom: 1px dashed;
	padding: 0 0 5px;
}

h6.h6_caution>span {
	display: block;
	font-size: 0.8em;
	padding: 25px 0 0;
	color: #3d3d3d;
}

h6.h6_caution>br {
	display: none;
}

label.the_check_box {
	cursor: pointer;
	transition: all ease .33s;
	margin: 0;
	user-select: none;
	display: inline-block;
	align-items: center;
}

label.the_check_box input {
	display: none;
}

label.the_check_box>span {
	display: inline-block;
	margin: 0 5px 0 0;
	position: relative;
	width: 18px;
	height: 18px;
	padding: 0;
	border: 1px solid #666;
	vertical-align: bottom;
	min-width: 10px;
	transition: all ease .33s;
	box-sizing: border-box;
	border-radius: 0px;
	background: #fff;
}

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

label.the_check_box input:checked~span i {
	opacity: 1;
	transform: translateY(-50%) scale(1.0);
}

label.the_check_box.radio_mode span {
	border-radius: 100px;
}

label.the_check_box.radio_mode span>i.radio_circle {
	width: 10px;
	height: 10px;
	background: #03a9f4;
	border-radius: 100px;
}

label.the_check_box b {
	display: inline;
	line-height: 1;
	vertical-align: middle;
	font-weight: normal;
}

section.sec_check_box {
	padding: 10px 0 0;
}

a.btn_map_link {
	background: #03a9f4;
	color: #fff;
	line-height: 1;
	box-sizing: border-box;
	display: inline-block;
	border-radius: 3px;
	padding: 3px 8px;
	margin: 0 0 0 5px;
	transition: all ease .33s;
}

a.btn_map_link:hover {
	opacity: 0.6;
}

p.p_caution {
	color: #f44336;
	font-weight: 600;
}

p.p_scroll_caution {
	display: none;
}

/* ---- sakahogi -----*/

h2 span {
	margin: 10px 0 0;
}

main {
	background-image: none;
	background: #efecdd;
}

.c-modal {
	height: auto;
	position: relative;
	width: 100%;
	margin: 0 auto 30px;
}

.c-modal_content {
	width: 100%;
	max-width: 800px;
	background: #fff;
	margin: 0 auto;
	border-radius: 5px;
	box-shadow: 0 2px 1px -1px rgb(0 0 0 / 20%), 0 1px 1px 0 rgb(0 0 0 / 14%), 0 1px 3px 0 rgb(0 0 0 / 12%) !important;
}

.c-modal_content_inner {
	position: relative;
	padding: 15px;
	margin: 0 auto;
	border: none;
}

.c-modal_content_inner.left_flex_wrap>dl:last-child {
	border-bottom: none;
	margin: 0;
}

label.confirm_btn {
	line-height: 1;
	background: #f44336;
	border-radius: 4px;
	box-sizing: border-box;
	display: block;
	margin: 0 auto;
	max-width: 250px;
	text-align: center;
	color: #fff;
	padding: 10px;
	font-size: 1.2em;
	font-weight: 600;
	cursor: pointer;
	transition: all ease .33s;
}

label.confirm_btn:hover {
	opacity: 0.6;
}

#modal h3 {
	text-align: center;
	color: #e53935;
	width: 100%;
	margin: 0 auto;
	border-bottom: dashed 1px;
	padding: 0 0 5px;
}

#modal ul.note_box {
	width: 100%;
}

ul.age_list {
	width: 100%;
	max-width: 600px;
	margin: 0 auto 20px;
	border: 1px solid #ddd;
	padding: 20px 30px;
	box-sizing: border-box;
	border-radius: 5px;
}

ul.age_list>li>dl {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

p.p_caution {
	color: #f44336;
	font-weight: 600;
}

h6.h6_caution {
	font-size: 1.3em;
	color: #f44336;
	padding: 0 0 15px;
}

dl.dl_started {
	font-weight: 600;
}

ul.age_list>li>dl.dl_started i {
	display: inline-block;
	margin: 0 5px 0 0;
}

ul.age_list>li>dl i {
	display: none;
}

.star_icon {
	color: #ffc863;
}

ul.age_list li>p {
	padding: 0 0 10px;
	text-align: right;
}

ul.birthday_flex {
	display: flex;
	align-items: center;
}

ul.birthday_flex li {
	display: flex;
	align-items: center;
	margin: 0 15px 0 0;
}

ul.birthday_flex li>span {
	display: inline-block;
	padding: 0 0 0 5px;
}

.venue_list {
	padding: 5px 10px;
	border: 1px solid #ddd;
	border-radius: 3px;
}

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

.venue_list dl:last-child {
	border-bottom: none;
	margin: 0;
}

.expect_list {
	padding: 5px 10px;
	border: 1px solid #ddd;
	border-radius: 3px;
}

ul.check_flex {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

ul.check_flex>li {
	flex-basis: 25%;
	max-width: 25%;
	margin: 0 0 10px;
}

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

ul.check_week_flex {
	display: flex;
	align-items: center;
}

ul.check_week_flex>li {
	margin: 0 12px 0 0;
}

p.p_bold {
	font-weight: 500;
	padding: 2px 16px 2px;
	position: relative;
}

.tb_contact td.td_note {
	padding: 0px 10px 5px;
}

p.p_bold::before {
	content: "";
	display: block;
	width: 10px;
	height: 2px;
	background: #ffc14f;
	margin: 0 5px 0 0;
	vertical-align: middle;
	border-radius: 100px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}

ul.radio_flex {
	display: flex;
	align-items: center;
}

ul.radio_flex>li {
	margin: 0 10px 0 0;
}

dl.dl_number.dl_agrmnt {
	padding: 0;
}

.tb_contact.send_res td>span {
	overflow-wrap: anywhere;
}

.container.no_ie {
	display: none;
}

a.error400_link {
	color: #ff9800;
	font-weight: 600;
	border-bottom: 1px solid;
}

ul.lang_flex {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 0 auto;
	max-width: none;
	flex-wrap: wrap;
	padding: 30px;
	box-sizing: border-box;
}

ul.lang_flex>li {
	flex-basis: 100%;
	max-width: 100%;
	margin: 0 0 15px;
	padding: 0 0 15px;
	border-bottom: 1px dashed #ddd;
}

ul.lang_flex>li:last-child {
	margin: 0;
	padding: 0;
	border-bottom: none;
}

.form_type02 .lang_flex h2 {
	font-size: 1.7em;
}

.form_type02 .note_box h4.no_stt {
	padding: 0;
}

/*----EN ----*/

ul.radio_flex.__ft02 {
	flex-wrap: wrap;
}

ul.check_flex.__ft02 {
	justify-content: flex-start;
}

ul.check_flex.__ft02>li {
	flex-basis: auto;
	max-width: none;
	margin: 0 10px 10px 0;
}

h2 span.br_on br {
	display: inline;
}

.btnspinner {
	user-select: none;
	vertical-align: middle;
	cursor: pointer;
	padding: 0;
	font-weight: 600;
	font-size: 1.3em;
	line-height: 1;
	color: #ffbf60;
	transition: all ease .33s;
}

.btnspinner:hover {
	opacity: 0.6;
}

.spinner_area {
	display: flex;
	align-items: center;
}

#counter {
	padding: 0 10px;
	border: 1px solid #666;
	border-radius: 0;
	font-size: 1em;
	width: auto;
	vertical-align: middle;
	line-height: 1;
	width: auto;
	max-width: 45px;
	text-align: center;
	margin: 0 10px;
}

input, textarea {
	border-radius: 3px !important;
}
