@charset "utf-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}


body {
  position: relative;
	line-height: 1.5;
	font-family: 'Noto Sans CJK JP' , 'Noto Sans JP', ヒラギノ角ゴ, W6, JIS2004, "メイリオ", sans-serif;
	font-weight: 500;
	font-weight: 400;
	font-size:15px;
}
h1,h2,h3,h4,h5{
	letter-spacing: 2px;
	font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
}
#wrapper{
	position: relative;
}
body *{
	box-sizing: border-box;
	color:var(--main-color);
}
ol, ul {
	list-style: none;
	padding-inline-start: 0px;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img{
	max-width: 100%;
	height: auto;
}
a{
	text-decoration: none;
	color:var(--main-color);
}
a:hover:not(.btn_hov){
	opacity: 0.8;
}

ul{
  padding-inline-start: 0px;
}
li{
  list-style:none;
}
dd {
    display: block;
    margin-inline-start: 0px;
}
ul,dl{
  margin-block-start: 0em;
  margin-block-end: 0em;
}
input,textarea{
	max-width: 100%;
}
/* reset end*/

/* common */
:root {
  --red: #C9151E;
	--red02: #C8171E;
  --pink: #EA646A;
  --orange:#ff662a;
  --thin-pink: #FFDEE0;
  --thin-yel:#FFF9D9;
  --gold:#D79F3C;
  --day01:#F47634;
  --day02:#D9692E;
  --eve01:#1DB7BE;
  --eve02:#16979D;
  --eve03:#1cb1b8;
  --nig01:#AD75CB;
  --nig02:#8C61A5;
  --yellow:#e49c1c;
}
section:nth-of-type(odd){
    background-color: #FBF7F5;
}
.bg_thin_yel{
  background:var(--thin-yel);
}
.bg_thin_pink{
  background:var(--thin-pink );
}
.inner_ct{
	padding: 100px 0;
}
.sec_inner{
	width:100%;
	max-width:1080px;
	margin:auto;
}
.sec_ttl{
	position: relative;
	text-align: center;
	max-width: 100%;
	color:#000;
	font-size: 36px;
	margin-bottom:40px;
}
.sec_ttl:after {
	position: absolute;
	content: '';
	left: calc(50% - 85px);
    right: 0;
    width: 170px;
    height: 5px;
    border-radius: 2px;
    background: #DC0900;
    bottom: -15px;
}

.flex{
	display:flex;
}
.grid{
	display:grid;
}
.sb{
	justify-content: space-between;
}
.sa{
	justify-content:space-around;
}
.flc{
	justify-content:center;
}
.bg_gray{
	background:#FAF7F5;
}
.f_bold{
  font-weight: bold;
}
.btn_01{
  max-width: 360px;
  width: 100%;
  margin: auto;
	border-radius: 20px;
	border:solid 1px var(--red);
	color: var(--red);
	padding:5px;
	font-size: 20px;
	position: relative;
	display: block;
	text-align:center;
}
.btn_01::after{
	position: absolute;
	content:"";
	width: 30px;
	height: 30px;
	right:8px;
	top:0;
	bottom:0;
	margin: auto;
	background: url(images/ico_arrow.webp);
	background-size: contain;
	background-repeat: no-repeat;
}
.txt_ttl{
	position: relative;
	font-size: 24px;
	font-weight: bold;
	padding-left:16px;
}
.txt_ttl:before{
	position: absolute;
	background: var(--red);
	width: 5px;
	height: 40px;
	left:0px;
	top:0;
	content:"";
}
.txt_intro{
  padding-left: 10px;
  font-size: 16px;
}
.pc_none{
  display: none;
}
.sp_none{
  display: block;
}
@media (max-width: 750px){
	.sec_inner{
		width:94%;
	}
	.inner_ct{
		padding: 60px 0;
	}
	.sec_ttl{
		margin: auto 0 auto;
		font-size: 22px;
	}
	.txt_ttl {
		font-size: 20px;
		padding-left: 15px;
	}
	.txt_ttl:before {
    width: 6px;
    height: 100%;
    left: 0px;
    top: 0;
    bottom: 0;
	}
  .pc_none{
    display: block;
  }
  .sp_none{
    display: none;
  }

}

/* common end */

/* header */
header{
	position: sticky;
  top: 0;
	background: #fff;
	 z-index: 5000;
}
.head_lang{
  padding:3px 0;
  background: #000;
  color: #fff;
  font-size: 14px;
	transition: .2s;
}
.head_lang.off{
	height: 0;
	visibility: hidden;
	transition: .2s;
}
.head_lang > .flex{
  justify-content: flex-end;
}
.head_lang > .flex p{
  margin-right:65px;
  position: relative;
}
.head_lang > .flex p span{
  position: absolute;
  left: -20px;
  top: 2px;
}
.head_lang a{
  display: block;
  padding:0 12px;
  border-right: #fff solid 1px;
}
.head_lang a:last-child{
  border-right: none;
}
.head_inner_pc{
  font-size: 16px;
  padding:10px 0;
	border-bottom: 1px solid var(--red);
}
.header_logo{
	display: flex;
	align-items: center;
}
.head_ctas{
  justify-content: flex-end;
  align-items: center;
  margin-bottom:5px;
}
.head_tel{
  position: relative;
  margin-right:40px;
}
.head_tel span{
  position: absolute;
  top: 1px;
  left: -20px;
}
.btn_head{
  max-width: 110px;
  width: 100%;
  border-radius: 10px;
  padding:4px 0;
  margin-right:30px;
  color:#fff;
  text-align: center;
  display: block;
  position: relative;
  padding-left: 10px;
  background: var(--red);
	border:solid 2px #EFEFED;
}
.btn_head:last-child{
  margin-right: 0;
  background: #FF6600;
	border:solid 2px #ECB956;
}
.btn_head span{
  left: 18px;
  position: absolute;
  top: 6px;
}
.head_inner_pc nav{
  padding:7px 0;
  color:var(--red);
  justify-content: flex-end;
}
.head_inner_pc nav a{
  display: block;
  padding-right:20px;
  position: relative;
  margin-right:30px;
}
.head_inner_pc nav a:last-child{
  margin-right:0px;

}

.head_inner_pc nav a::after{
  position: absolute;
  content:"";
  top:0;
  bottom:0;
  right:0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid var(--red);
}
.head_sp{
	display: none;
}
.head_sp_menu{
	display: none;
}
@media (max-width: 750px){
	header{
		position: sticky;
    top: 0;
		z-index: 5000;
	}
	.head_lang{
		visibility: hidden;
		height: 0;
		padding: 0;
		transition: .2s;
	}
	.head_lang.on{
		display: flex;
		visibility: visible;
		height: auto;
		transition: .2s;
		padding: 5px;
	}
	.head_lang.on > .flex p {
    display: none;
	}
	.head_inner_pc{
		display: none;
	}
	.head_sp{
		background: #fff;
		display: block;
		border-bottom: solid 2px var(--red);
		position: sticky;
		top: 0;
		z-index: 10000;
		width: 100%;
	}
	.head_sp > div{
		height: 60px;
	}
	.head_sp_right.flex{
		justify-content: flex-end;
	}
	.head_sp_left{
		width: 38%;
    display: flex;
    justify-content: center;
    align-items: center;
	}
	.head_sp_left img{
		width: 75%;
	}
	.head_sp_right{
		width: 62%;
		color: #fff;
	}
	.head_sp_right a{
		width:25%;
		display: flex;
    justify-content: center;
    text-align: center;
    align-items: flex-end;
		background: var(--red);
	  font-size: 11px;
		border-right: solid 1px #fff;
		padding:3px 0;
		position: relative;
	}
	.head_sp_right a:before{
		position: absolute;
		content:"";
		top:-14px;
		bottom:0;
		right:0;
		left:0;
		width: 20px;
		height: 20px;
		margin: auto;
	}
	.head_lang_sp:before{
		background: url(/images/shop/language/ico_lang.svg) no-repeat;
		background-size: contain;
	}
	.head_lang_sp.on:before{
		background: url(/images/shop/language/ico_lang_cross.webp) no-repeat;
		background-size: contain;
	}
	.head_visit_sp:before{
		background: url(/images/shop/language/ico_map.svg) no-repeat;
		background-size: contain;
	}
	.head_cta_sp:before{
		background: url(/images/shop/language/ico_calendar.svg) no-repeat;
		background-size: contain;
	}
	.head_sp_hmg_wrap{
		position: relative;
		width: 25%;
	}
	.hamburger{
	  width: 30px;
	  height: 20px;
	  position: relative;
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		bottom: 0;
		margin: auto;
	}
	.hamburger span{
	  position: absolute;
	  width: 100%;
	  height: 2px;
	  background-color: var(--red);
	}
	.hamburger span:first-of-type{/* ハンバーガーメニューの1番目の線 */
	  top: 0;
	}
	.hamburger span:nth-of-type(2){/* ハンバーガーメニューの2番目の線 */
	  top: 50%;
	}
	.hamburger span:last-of-type{/* ハンバーガーメニューの3番目の線 */
	  top: 100%;
	}
	.hamburger.on span:first-of-type{/* ハンバーガーメニューの1番目の線 */
	  top: 50%;
	  transform: rotate(45deg);
	}
	.hamburger.on span:nth-of-type(2){/* ハンバーガーメニューの2番目の線 */
	  opacity: 0;/* 透明にする */
	}
	.hamburger.on span:last-of-type{/* ハンバーガーメニューの3番目の線 */
	  top: 50%;
	  transform: rotate(-45deg);
	}
	.head_sp_menu{
		overflow: scroll;
		padding-top:100px;
		display: none;
		position: absolute;
		height: 100vh;
		width: 100vw;
		background: #fff;
		z-index: 5000;
		top:0;
	}
	.head_sp_menu nav{
		margin: 0px 0 55px auto;
		width: 80%;
		font-size: 20px;
		font-weight: bold;
	}
	.head_sp_menu nav a{
		display: block;
		position: relative;
		padding:30px 20px 25px;
		border-bottom:solid 2px var(--red);
	}
	.head_sp_menu nav a:after{
		position: absolute;
		content:"";
		top:0;
		bottom:0;
		right: 30px;
		margin: auto;
		width: 0;
	  height: 0;
	  border-left: 17px solid var(--red);
	  border-top: 13px solid transparent;
	  border-bottom: 13px solid transparent;
	}
	.head_sp_menu_fa{
		background: var(--red);
		width: 50%;
		padding:10px;
		margin: auto;
		margin-bottom:40px;
		display: block;
		text-align: center;
		color: #fff;
		border-radius: 10px;
		font-size: 16px;
		position: relative;
	}
	.head_sp_menu_fa::before {
		position: absolute;
		content:"";
		background: url(/images/shop/common/icon_qa_sp.png);
		background-repeat: no-repeat;
		background-size: 100%;
		width: 20px;
		height: 18px;
		top: 50%;
    left: 33%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	}
	.menu_haniton{
		padding-bottom:120px;
	}
	.menu_haniton img{
		margin: auto;
    display: block;
		width: 150px;
		height: 150px;
	}
}
/* header end */

/* mv */
.mv_slide{

}
.mv_slide img {
  height: auto;
  width: 100%;
  opacity: 0.4;
  transition: opacity 0.5s;
}

.mv_slide .slick-center img {
  opacity: 1;
}
@media (max-width: 750px){
	.mv_slide img {
	  opacity: 1;
	}

}
/* mv end */

/*パンくず関連*/
.breadcrumbs_wrap{
	position: relative;
  background: transparent;
  border-top: solid 3px var(--red);
      margin-top: -1px;
}
.breadcrumbs{
  list-style: none;
  max-width: 1025px;
  margin: auto;
  font-size: 14px;
	padding-top:5px;
  padding-bottom: 5px;
  border-bottom: solid 3px var(--red);
}
.breadcrumbs ul{
  display: flex;
}
.breadcrumbs li{
  position: relative;
  margin-right:20px;
}
.breadcrumbs li:after{
  position: absolute;
  content: ">";
  padding-left: 5px;
  font-size: 12px;
  padding-top: 1px;
	color:#000;
}
.breadcrumbs a{
	color: #FF6600;
}
.breadcrumbs li:last-child::after{
  content: none;
	color: #000;
}
.breadcrumbs li:last-child a{
  color:#000;
  pointer-events: none;
}
@media (max-width: 767px){
  .breadcrumbs_wrap{
    padding-left:3%;
  }
}
/*パンくず関連 end　*/

/* title */
#title{

}
.page_ttl span{
	display: block;
	line-height: 1;
	font-size: 20px;
}
.page_ttl{
	text-align: center;
	margin-top: 80px;
	margin-bottom: 40px;
}
.page_ttl h1{
	line-height: 1.2;
	font-size: 60px;
}
.page_ttl h1 span{
	font-size: 28px;
}
#title .txt_intro{
	text-align: center;
	margin-bottom: 80px;
}
@media (max-width: 750px){
	.page_ttl{
		margin-top: 60px;
	}
	.page_ttl h1 span{
    font-size: 26px;
	}
	.page_ttl h1 {
	    font-size: 36px;
	}
	#title .txt_intro {
    margin-bottom: 60px;
	}
}
/* title end */

/* about */
#about .sec_ttl{
  margin-bottom:0;
}
#about .about_box .txt_ttl{
	margin-bottom:50px;
}
.about_box.ab_01{
	grid-template-columns: 580px 360px;
	gap:20px;
}
.arr_btm:after{
	transform: rotate(90deg);
}
.about_box p{
  line-height: 1.9;
}
.about_box.ab_01 p{
  margin-bottom:30px;
}
.about_box.ab_02{
	grid-template-columns: 400px 1fr;
	gap:30px;
}
.about_box.ab_02 p{
  margin-bottom:65px;
}
.about_box.ab_02 .btn_01{
  margin-bottom:20px;
}
.about_box.ab_02 .btn_01:last-child{
  margin-bottom:0px;
}
@media (max-width: 750px){
	.about_box{
		padding:0 3% 0;
		margin: auto -3%;
		gap:0;
	}
	#about .about_box .txt_ttl {
    margin-bottom: 20px;
	}
	.about_box.ab_01 {
    grid-template-columns: 100%;
	}
	.about_box.ab_02 {
		grid-template-columns: 100%;
	}
	.about_box.ab_02 p {
		margin-bottom: 25px;
	}
	.about_box.ab_02 .btn_01:last-child {
	    margin-bottom: 10px;
	}
	.about_box_02_img{
		order:1;
	}
	.about_box_02_txt{
		order:2;
	}


}
/* about end */

/* price */
#price{
  padding-bottom:100px;
}
@media (max-width: 750px){
	#price{
	  padding-bottom:40px;
	}
	.price_tbl_box {
		margin-top: 20px;
	}
	.price_tbl_main td {
		width: 50%;
	}
}
/* price end */

/* room */
#shop .txt_intro{
  margin-bottom:20px;
}
.shop_wrap{
  gap: 60px 20px;
}

/* ルームギャラリー調整 */
.shop_wrap{
  flex-wrap: wrap;
}
.rg_box{
	width:48%;
}
.title_02 {
  font-size: 16px;
  padding: 10px;
  padding-left: 17px;
  border-top: 1px solid #cfcfcf;
  border-bottom: 1px solid #cfcfcf;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: center;
}
.title_02:before {
    position: absolute;
    background: var(--red);
    width: 8px;
    height: 100%;
    left: 0px;
    top: 0;
    content: "";
}
.rg_box .title_02 span {
	font-size: 12px;
}
.content01 .desc{
	margin-bottom:15px;
  font-size: 17px;
}
.slick-dotted .slick-arrow{
	display: none;
}
.o-bg{
  display: none;
}
.box_ct img {
  width:100%;
  margin-bottom:5px;
}
.room_ttl01{
  margin-bottom:5px;
}
.slider-room-nav {
  display: none;
}
.box_content_r {
    display: none;
    font-size: 16px;
    padding: 40px 30px 15px;
    border: solid 1px var(--red);
    border-radius: 0px 0px 10px 10px;
}
.room_ttl_des{
	margin-bottom: 5px;
	position: relative;
  font-weight: bold;
}
.room_ttl_des:before {
    position: absolute;
    background: var(--red);
    width: 3px;
    height: 17px;
    left: -9px;
    top: -2px;
    bottom: 0;
    margin: auto;
    content: "";
}
.m5r{
  display: none;
}

.area_ct .txt_ttl{
	margin-top: 60px;
}

.area_ttl{
	font-size: 20px;
	font-weight: bold;
	border-top: 1px solid #000;
	margin-top: 50px;
	margin-bottom: 30px;
	padding-top: 10px;
}

.shop_grid{
	display: grid;
	grid-template-columns: repeat(2,max-content);
	gap: 60px;
	place-content: center;
}

.shop_ct{
	max-width: 320px;
}

.shop_name{
	font-size: 20px;
	font-weight: bold;
	margin: 20px 0;
}

.shop_address{
	font-size: 12px;
	margin: 20px 0;
}

.shop_link{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 40px;
	font-size: 12px;
	font-weight: bold;
	border-radius: 20px;
	border: 1px solid #000;
	margin-bottom: 10px;
	position: relative;
}

.shop_link::after{
	position: absolute;
	content: '';
	right: 20px;
	width: 16px;
	height: 16px;
	z-index: 10;
	background: url(/images/language/arrow_right.svg) no-repeat;
	background-size: contain;
}

.shop_resv_link{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 40px;
	font-size: 12px;
	font-weight: bold;
	border-radius: 20px;
	color: #fff;
	background-color: #dc0900;
}

.shop_resv_link img{
	margin-right: 5px;
}

.shop_link_ct{
	display: grid;
	grid-template-columns: 1fr max-content;
	gap: 20px;
}

.shop_access_link{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 90px;
	height: 100%;
	background-color: #FBF7F5;
	border-radius: 10px;
	font-size: 12px;
}

.shop_access_link img{
	margin-bottom: 5px;
}

.shop_access_list{
	font-size: 10px;
}

@media (max-width: 750px){
	.shop_wrap .desc{
		font-size:15px;
	}
	.box_content_l{
		margin-bottom: 10px
	}
	.shop_grid{
		grid-template-columns: 1fr;
	}
	.shop_ct{
		width: 100%;
		max-width: none;
	}
	.shop_img{
		width: 100%;
	}
}

/* ルームギャラリー調整end */

.room_acc_cont ul{
  margin-bottom:20px;
}
.btn_res,
.btn_reserve {
  display: block;
	background: #FF6600;
	padding:10px;
	position: relative;
	color:#fff;
	font-size: 20px;
	text-align: center;
	border-radius: 10px;
  margin-top:20px;
}
.btn_res:after,
.btn_reserve:after{
  position: absolute;
	content:"";
  width: 0;
  height: 0;
  border-left: 15px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
	right:23px;
	top:0;
	bottom:0;
	margin: auto;
}
.btn_reserve_tel{
	display: none;
}
@media (max-width: 750px){
	#shop .sec_ttl{
		margin-bottom: 20px;
	}
	.shop_wrap > dl{
		width:100%;
	}
	.shop_wrap{
		flex-direction: column;
	}
  .rg_box{
  	width:100%;
  }
	.shop_wrap .txt_ttl {
    font-size: 20px;
    padding: 5px 10px;
	}
	.shop_wrap_intro{
		display: none;
	}
	.shop_wrap .title_02{
	  border-top:2px solid #cfcfcf;
	  border-bottom:2px solid #cfcfcf;
	}
}
/* room end */

/* howto */
.howto_iframe {
	text-align: center;
}
#howto p{
	margin-bottom:20px;
	padding-left:12px;
}
.howto_iframe iframe{
	max-width: 780px;
	width:100%;
	height: auto;
	margin: auto;
	aspect-ratio: 780 / 528;
}
#howto .txt_intro{
	text-align: center;
	margin-bottom: 60px;
}
@media (max-width: 750px){
	#howto .sec_ttl{
		margin-bottom:40px;
	}
	.howto_iframe iframe{
		width: 100%;
		max-height: 250px;
	}
}
/* howto end */

/* visit */
.map_iframe{
	text-align: center;
}
.map_iframe iframe{
  margin-bottom:20px;
		max-width: 900px;
		width:100%;
}
.map_iframe .btn_01{
  margin-bottom:60px;
}
.pay_wrap{
  max-width: 1080px;
  width: 100%;
  margin: auto;
}
.tbl_visit{
  width: 100%;
  font-size: 16px;
}
.tbl_last{
  margin-bottom:50px;
}
.tbl_visit.tbl_last th{
  border-top:none;
}
.tbl_visit th.th_normal{
  width: 200px;
}
.tbl_visit th.th_normal span{
  position: relative;
}
.tbl_visit th.th_normal span:before{
  position: absolute;
  content:"";
  width:19px;
  height: 19px;
  top: -3px;
  bottom: 0;
  left: 36px;
  margin: auto;
}
.th_access span:before{
  background: url(images/ico_map.webp) no-repeat;
  background-size:contain;
}
.th_time span:before{
  background: url(images/ico_time.webp) no-repeat;
  background-size:contain;
}
.th_tel span:before{
  background: url(images/ico_tel.webp) no-repeat;
  background-size:contain;
}
.tbl_visit td.td_normar{
  width: 800px;
  padding: 10px;
}
.tbl_visit th span{
  display: block;
  position: relative;
}
.tbl_visit th,.tbl_visit td{
  height: 60px;
  vertical-align: middle;
  border:solid 1px #ccc;
}
.pay_wrap{
	margin-top: 60px;
}
.pay_wrap .txt_ttl{
  font-size: 20px;
  margin-bottom:30px;
}
.pay_wrap .txt_ttl:before {
  height: 33px;
  top:-3px;
}
.td_pay td{
  padding:25px;
}
.td_cred{
	width: 49%;
}
.td_qr{
	width: 42%;
}
.td_pay p{
  border-bottom:solid 1px var(--red);
  width: fit-content;
  position: relative;
  margin-bottom:5px;
  padding-left:25px;
}
.td_pay p span{
  position: absolute;
  margin-right:5px;
  left:0;
}
.pay_images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(65px, 1fr));
  padding-left: 20px;
  flex-wrap: wrap;
  gap:15px 30px;
  margin-top: 10px;
}
.pay_images li{
  width: 60px;
  height: 60px;
}
.pay_ttl span{
	border-bottom: 2px solid #DC0900;
}
.tbl_visit td.td_qr .pay_images li {
    width: 65px;
    height: 52px;
}
.tbl_visit td.td_cred{
  border-right: none;
  width: 49%;
}
.tbl_visit td.td_qr{
  border-left: none;
}

.pay_images li img{
  object-position: center;
  height: 100%;
  object-fit: contain;
}
.visit_train{
  padding-left:20px;
}
.visit_train li{
  margin-bottom:30px;
}
ul.visit_train .btn_01 {
	margin-top: 10px;
	max-width: 100%;
   }
@media (max-width: 750px){
	#payment .sec_ttl{
		margin-bottom: 15px;
	}
	#payment iframe{
		max-height: 250px;
	}
	.map_iframe .btn_01 {
    margin-bottom: 40px;
	}
	.tbl_visit th.th_normal span:before {
    left: 0;
	}
	.tbl_visit th.th_normal {
    width: 30%;
	}
	.tbl_visit th span {
    padding-left: 25%;
	}
	.visit_train {
    padding-left: 5px;
	}
	.pay_pad > div {
		padding:20px;
	}
	.pay_images {
		padding-top: 5px;
    padding-left: 0px;
	}
	.td_pay td {
    padding: 0px;
	}
	.td_pay td > .flex{
	   flex-direction: column;
	}
	.td_cred{
		width: 100%;
		margin-bottom: 15px;
		padding-bottom: 5px;
    border-bottom: solid 1px #cfcfcf;
	}
	.td_qr{
		width: 100%;
	}
	.td_qr .pay_images li {
    width: 23%;
    height: 52px;
	}
}
/* visit end*/

/* footer */
footer{
  background: var(--red);
  color:#fff;
  padding:50px 0;
  text-align: center;
}
@media (max-width: 750px){
	footer{
		text-align: left;
	}
	footer > div.sec_inner{
		width: 80%;
		margin: auto;
		font-size: 20px;
	}

}
/* footer end*/
.stt-lang-select{
	display: none !important;

}

.shop_wrap .room_acc_btn{
	margin-top: 30px;
}

.pay_ct{
	display: grid;
	place-content: center;
	grid-template-columns: repeat(2,1fr);
	gap: 20px;
}

@media (max-width: 750px){
	.pay_ct{
		grid-template-columns: 1fr;
		gap: 0;
	}
	.pay_ct > div{
		padding: 20px;
	}
	.pay_ct > div:not(:last-of-type){
		border-bottom: solid 1px #cfcfcf;
	}
	.pay_ct .pay_images.qr_code li{
		width: 80px;
	}
}
