@charset "UTF-8";

@-webkit-keyframes zoom {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	to {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
}
@keyframes zoom {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	to {
		-webkit-transform: scale(1.15);
		transform: scale(1.15);
	}
}

#header {
	background: rgba(0, 0, 0, .45);
	transition: top 1s cubic-bezier(1, 0, 0, 1) .2s, background .3s ease-out;
}
#header.is_fixed {
	background: #000;
}
#gnavi {
	background: rgba(45, 37, 25, .45);
}
#header.is_fixed #gnavi {
	background: #2b2519;
	transition: background .3s ease-out;
}

#header + * {
	margin-top: 0 !important;
}
#mainvisual {
	position: relative;
	height: 66.26vw;
}
#slider {
	position: relative;
}
#slider::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	transition: all 1s cubic-bezier(1, 0, 0, 1) .2s;
	z-index: 1;
}
.scrollin #slider::before {
	left: 100%;
	width: 0;
}
#mainvisual img {
	width: 100%;
	height: 66.26vw;
	object-fit: cover;
	-webkit-animation: zoom 26.54s linear 0s infinite normal none;
	animation: zoom 26.54s linear 0s infinite normal none;
}
.mv_news {
	position: absolute;
	bottom: 50px;
	right: 0;
	left: 0;
	width: 1100px;
	margin: auto;
	padding: 8px 0;
	background: #fff;
	border-radius: 4px;
}
.mv_news > * {
	display: inline-block;
	font-size: 1.3rem;
	line-height: 2;
}
.mv_news_ttl {
	padding: 0 25px;
	border-right: 1px solid #a0a0a0;
	font-family: 'Inter', sans-serif;
	font-size: 1.5rem;
	font-weight: 400;
	font-style: normal;
}
.mv_news_topic {
	padding-left: 20px;
}
.mv_news_topic span {
	margin-right: 25px;
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.04em;
}
.mv_news_more {
	position: absolute;
	top: 50%;
	right: 45px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: opacity .3s ease;
}
.mv_news_more:hover {
	opacity: .5;
}
.mv_news_more::before,
.mv_news_more::after {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.mv_news_more::after {
	top: -6px;
	right: -20px;
	width: 8px;
	height: 8px;
	border-top: 1px solid #333;
	border-right: 1px solid #333;
	-webkit-transform: scaleX(0.7) rotate(135deg);
	transform: scaleX(0.7) rotate(135deg);
}

.index_banner {
	position: fixed;
	width: 470px;
	right: 20px;
	bottom: 20px;
	z-index: 9998;
}
.index_banner.is-hidden {
	visibility: hidden;
	opacity: 0;
	transition : .2s ease-out;
}
.index_banner .banner_bg {
	background-color: #EFF1F5;
}
.index_banner .grid_container {
	padding: 20px;
	display: grid;
	gap: 0px 15px;
	grid-template-columns: 1fr 2fr;
}
.index_banner .grid_container .banner_img {
	grid-column: 1;
	grid-row: 1 / 4;
}
.index_banner .grid_container .banner_text_l p{
	font-size: 1.45rem;
	line-height: 1.6;
	font-weight: bold;
}
.index_banner .grid_container .banner_text_m p{
	font-size: 1.2rem;
	line-height: 1.5;
}
.index_banner .banner_btn{
	background-color: #000;
	font-size: 1.4rem;
	padding: 10px 0;
	position: relative;
	display: block;
	border: 1px solid #000;
	box-sizing: border-box;
	transition: all .5s ease;
}
.index_banner .banner_btn p {
	color: #fff;
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	width: 100%;
	text-align: center;
}
.index_banner .banner_btn::before {
	content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 0;
    height: 100%;
    transition: all .5s ease;
}
.index_banner .btn_close {
	position: absolute;
	top: -20px;
	right: -10px;
	width: 36px;
	height: 36px;
	background-color: #000;
	color: #fff;
	border-radius: 50%;
	border: none;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
	z-index: 99999;
}
.index_banner.hidden {
	opacity: 0;
    visibility: hidden;
}
.section {
	margin-top: 150px;
}
.reserve_wrap {
	text-align: center;
}
#reservation {
	margin-top: 60px;
}
#reservation .table_block {
	margin: 0 25px;
}
#reservation table {
	width: 340px;
	margin: 0 auto;
}
#calendar th {
	font-size: 1.1rem;
	font-weight: 200;
}
#calendar td {
	font-size: 1.3rem;
}
#calendar th, #calendar td {
	padding: 8px 0;
	border-bottom: 1px solid #b2b2b2;
	line-height: 1.6;
	text-align: center;
}
#calendar tr:last-child td {
	border-bottom: none;
}
#calendar a {
	transition: color .5s ease-out;
}
#calendar a:hover {
	color: #f88693;
}

#about {
	text-align: center;
}
#about h2 {
	width: 278px;
	margin: 0 auto 30px;
}
#index_maiko {
	overflow: visible;
	text-align: center;
	padding-top: 150px;
	width: 900px;
	margin: 0 auto;
}
#index_maiko .maiko_wrapper > a > img {
	width: 900px;
	height: auto;
	margin-bottom: 20px;
	z-index: 9;
}
#index_maiko p {
	font-size: 90%;
	text-align: left;
	line-height: 1.6;
}
#index_maiko .maiko_wrapper {
	position: relative;
}
#index_maiko .maiko_wrapper + .maiko_wrapper {
	margin-top: 60px;
}
#index_maiko .label img{
	position: absolute;
	top: -20px;
	left: -17px;
	width: auto;
	height: 37px;
	object-fit: contain;
	z-index: 99;
}
#renewal {
	text-align: center;
}

#renewal img {
	margin: 0 0 30px;
}

.sec_list {
	overflow: hidden;
}
.sec_list.slick-slider {
	margin: auto;
	overflow: visible;
}
.sec_list.slick-slider .slick-list {
	overflow: visible;
}
.sec_list li a {
	position: relative;
	display: block;
}
.sec_list_img {
	position: relative;
	overflow: hidden;
	background: #000;
}
.sec_list_img img {
	transition: all .5s ease-out;
}
.sec_list li:hover .sec_list_img img {
	opacity: .5;
	-webkit-transform: scale(1.03);
	transform: scale(1.03);
}
#rooms .sec_list.slick-slider {
	width: 900px;
}
#rooms .sec_list li {
	margin: 0 50px;
}
#rooms .sec_list h3 {
	margin-top: 20px;
	font-size: 1.4rem;
}
#rooms .sec_list img {
	width: 100%;
	height: 500px;
	object-fit: cover;
}

#dish {
	width: 1100px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}
#dish .sec_ttl {
	margin-bottom: 100px;
}
.dish_wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#dish .sec_right {
	width: 470px;
}

#okami {
	width: 1100px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}
.okami_wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.okami_wrap > div {
	width: 50%;
}
.okami_wrap .sec_ttl {
	margin-bottom: 50px;
}
.okami_img {
	width: 55%;
	margin: 0 auto 30px;
}
.okami_txt {
	width: 88%;
	margin: auto;
}
.okami_txt .sec_txt {
	font-size: 1.5rem;
	line-height: 1.8;
	text-align: center;
}
.okami_txt .sec_txt .staff_name {
	display: block;
	margin-top: 10px;
}
.okami_wrap .sec_btn {
	margin-top: 30px;
}

#plan .sec_list.slick-slider {
	width: 1100px;
	text-align: center;
}
#plan .sec_list li {
	margin: 0 48px;
}
#plan .sec_list h3 {
	margin-top: 20px;
	font-size: 1.3rem;
	line-height: 1.69;
}
#plan .sec_list img {
	width: 100%;
	height: 178px;
	object-fit: cover;
}
#plan .sec_btn {
	margin-top: 90px;
}
#plan .sec_btn a {
	display: inline-block;
}
#plan .sec_btn a:first-child {
	margin-right: 27px;
}

#index_concept .copy {
	width: 900px;
	margin: 0 auto;
	text-align: center;
}
#index_concept .copy h2 {
	margin-bottom: 20px;
	line-height: 1.8;
	font-size: 2.4rem;
	font-weight: bold;
}
#index_concept .copy p {
	margin-bottom: 80px;
	line-height: 2.2;
	font-size: 1.6rem;
}
#index_concept .gallery_slide {
	width: 100%;
}
#index_concept .gallery_slide ul{
	width: 100%;
	margin-bottom: 30px;
}
#index_concept .gallery_slide ul li{
	margin: 0 20px;
	height: auto;
}
#index_concept .gallery_slide ul li img{
	width: 100%;
	height: auto;
}
#new_room {
	width: 900px;
	margin: 0 auto;
	padding: 150px 0 0;
	text-align: center;
	line-height: 1.8;
}
#new_room h3 {
	display: flex;
	align-items: center;
	font-size: 2.4rem;
	margin-bottom: 20px;
	font-weight: bold;
}
#new_room h3 span {
	display: inline-block;
	font-size: 65%;
	margin: 0 20px;
	font-style: italic;
}
#new_room h3::after{
  content: '';
  flex-grow: 1;/* 余白を分け与える */
  height: 1px;
	background: #000;
}
#new_room p {
	margin-bottom: 30px;
}
#new_room .saloon,
#new_room .standard {
	text-align: left;
}
#new_room ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
}
#new_room ul li{
	width: 46%;
	margin: 0 8% 2% 0;
}
#new_room ul li:nth-child(2n){
	margin: 0 0 2% 0;
}
#new_room ul li img{
	margin-bottom: 20px;
}
#new_room ul li h4{
	font-size: 2rem;
}
#new_room ul li p{
	font-size: 1.4rem;
}

.news_list {
	width: 770px;
	margin: auto;
}
.news_list li {
	border-bottom: 1px solid #000;
	font-size: 1.4rem;
	line-height: 1.57142857;
}
.news_list li:first-child {
	border-top: 1px solid #000;
}
.news_list li a {
	display: block;
	padding: 20px;
	transition: opacity .3s ease;
}
.news_list li a:hover {
	opacity: .5;
}
.news_list li span {
	float: left;
	width: 15%;
	font-family: 'Inter', sans-serif;
	font-size: 1.5rem;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.05em;
}
.news_more {
	margin-top: 20px;
	font-size: 1.4rem;
	text-align: right;
	letter-spacing: 0.04em;
}
.news_more a {
	position: relative;
}
.news_more a::before,
.news_more a::after {
	content: "";
	display: inline-block;
}
.news_more a::after {
	width: 9px;
	height: 9px;
	margin: 0 3px 0 30px;
	border-top: 1px solid #333;
	border-right: 1px solid #333;
	-webkit-transform: scaleY(0.7) rotate(45deg);
	transform: scaleY(0.7) rotate(45deg);
	transition: all .3s ease;
}
.news_more a:hover::after {
	margin-left: 15px;
}

#contact {
	margin-top: 100px;
}
.booking_bar_new {
	background-color: #608b9d;
}

#ZenSearchFrom { 
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
}
#ZenSearchFrom #searchBox {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	justify-content: space-between;
}
#ZenSearchFrom .booking_title{ 
	width: 100%;
}
#ZenSearchFrom .booking_title p{ 
	border-bottom: 1px solid;
	padding: 0 20px 8px;
	margin-bottom: 15px;
	display: inline-block;
	font-size: 16px;
} 
#ZenSearchFrom #searchBox .children,
#ZenSearchFrom #searchBox .sort {
	display: none;
}
#ZenSearchFrom {
	color: #fff;
	line-height: 1.2;
	width: 800px;
	margin: 0 auto;
	padding: 30px 0 40px;
}
#ZenSearchFrom input {
	background: url(https://www.shinmonso.com/wp-content/themes/shinmonso_Ver2-5/_assets/img/common/book_calendar.svg) no-repeat right 1rem center / 17px;
}
#ZenSearchFrom select{
	background: url(https://www.shinmonso.com/wp-content/themes/shinmonso_Ver2-5/_assets/img/common/book_arrow.svg) no-repeat right 0.8rem center / 11px
}
#ZenSearchFrom input, #ZenSearchFrom select {
    color: #53565a;
    height: 40px;
    padding: 0 12px;
    font-size: 12px;
    letter-spacing: .05em;
    width: 100%;
    border-radius: 3px;
	background-color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	border: none;
}
#ZenSearchFrom legend {
	margin-bottom: 10px;
	font-size: 14px;
}
#ZenSearchFrom fieldset {
	margin-right: 20px;
	border: none;
}
#ZenSearchFrom fieldset.checkin {
	width: 220px;
}
#ZenSearchFrom fieldset.checkin input{
	border: none;
	box-sizing: border-box;
}
#ZenSearchFrom fieldset.nights {
	width: 110px;
}
#ZenSearchFrom fieldset.rooms {
	width: 110px;
}
#ZenSearchFrom fieldset.adults {
	width: 110px;
}
#ZenSearchFrom .field-button .sub-bgcolor{
	background: none;
	background-color: #212528;
	color: #fff;
	width: 170px;
	font-size: 16px;
	font-weight: bold;
	border: none;
	height: 41px;
}
@media (any-hover: hover) {
	.index_banner .grid_container:hover {
		opacity: .8;
	}
	.index_banner .banner_btn:hover::before {
		width: 100%;
	}
	.index_banner .banner_btn:hover p{
		color: #000;
	}
	#ZenSearchFrom .field-button .sub-bgcolor:hover{
		opacity: .8;
	}
	#index_maiko a:hover {
		opacity: 0.7;
	}
}



/*-------------------------------
PC Style
 --------------------------------*/
@media screen and (min-width: 768px) {
	.okami_wrap .staff {
		width: 48%;
		margin: 100px 1% 0;
	}
	.okami_wrap .staff .sec_ttl {
		margin-bottom: 45px;
	}
	.okami_wrap .staff .sec_ttl h2 {
		font-size: 1.6rem;
	}
	.okami_wrap .staff .okami_img {
		display: inline-block;
		width: 30%;
		margin: 0 3% 0 0;
		vertical-align: middle;
	}
	.okami_wrap .staff .okami_txt {
		display: inline-block;
		width: 64%;
		vertical-align: middle;
	}
	.okami_wrap .staff .okami_txt .sec_txt {
		font-size: 1.3rem;
		line-height: 1.7;
		text-align: left;
	}
	.okami_thumb {
		display: none;
	}
}

/*-------------------------------
SP Style
 --------------------------------*/
@media screen and (max-width: 767px) {

	#mainvisual {
		overflow: hidden;
		height: 120vw;
	}
	#mainvisual img {
		height: 120vw;
	}

	.mv_news {
		bottom: 30px;
		width: 94%;
		padding: 6px 4vw;
		box-sizing: border-box;
	}
	.mv_news > * {
		font-size: 3.2vw;
	}
	.mv_news_ttl {
		display: none;
	}
	.mv_news_topic {
		padding: 0 24% 0 0;
		line-height: 1.5em;
	}
	.mv_news_topic span {
		margin-right: 3vw;
	}
	.mv_news_more {
		right: 8vw;
	}
	.mv_news_more::after {
		top: -1.5vw;
		right: -4vw;
		width: 2vw;
		height: 2vw;
	}

	.index_banner {
        position: fixed;
        width: 92%;
        bottom: 2vw;
        left: 50%;
        transform: translate(-50%, 0%);
        -webkit-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
		overflow: visible;
	}
	.index_banner .grid_container {
		padding: 3vw;
		gap: 2vw 4vw;
	}
	.index_banner .grid_container .banner_img {
		grid-column: 1;
		grid-row: 2 / 4;
	}
	.index_banner .grid_container .banner_text_l{
		grid-column: 1 / 3;
	}
	.index_banner .grid_container .banner_text_l p{
		font-size: 3.4vw;
		padding-bottom: 0;
	}
	.index_banner .grid_container .banner_text_m p{
		font-size: 3vw;
	}
	.index_banner .banner_btn{
		font-size: 3.2vw;
		padding: 2vw 0;
		grid-column: 2;
	}
	.index_banner .banner_btn::before {
		display: none;
	}
	.index_banner .btn_close {
		position: absolute;
		top: -4vw;
		right: -2vw;
		width: 9vw;
		height: 9vw;
		font-size: 6vw;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 0 0 1.1vw;
	}
	
	
	.section {
		margin-top: 20vw;
	}
	.sec_btn a {
		width: 60%;
	}

	.reserve_wrap {
		width: 90%;
		margin: auto;
	}
	#reservation .table_block {
		margin: 0;
	}
	#reservation table {
		width: 100%;
	}
	#calendar th {
		font-size: 3.5vw;
	}
	#calendar td {
		font-size: 4vw;
	}
	#calendar th, #calendar td {
		padding: 6px 0;
		line-height: 1.5;
	}

	#about {
		width: 90%;
		margin-left: auto;
		margin-right: auto;
	}
	#about h2 {
		width: 60vw;
		margin-bottom: 20px;
	}

	#index_maiko {
		width: 90%;
		margin-left: auto;
		margin-right: auto;
		padding-top: 20vw;
	}
	#index_maiko .maiko_wrapper > a > img  {
		width: 100%;
		margin-bottom: 2vw;
	}
	#index_maiko p {
		font-size: 3.2vw;
		line-height: 1.6;
	}
	#index_maiko .maiko_wrapper + .maiko_wrapper {
		margin-top: 10vw;
	}
	#index_maiko .label img{
		top: -3.2vw;
		left: -2.5vw;
		height: 6.5vw;
	}

#index_concept .copy {
	width: 90%;
}
#index_concept .copy h2 {
	margin-bottom: 3vw;
	font-size: 5vw;
}
#index_concept .copy p {
	margin-bottom: 10vw;
	font-size: 3.2vw;
}
#index_concept .gallery_slide ul{
	margin-bottom: 3vw;
}
#index_concept .gallery_slide ul li{
	margin: 0 3vw;
}
#new_room {
	width: 90%;
	padding: 20vw 0 0;
}
#new_room h3 {
	font-size: 5vw;
	margin-bottom: 3vw;
}
#new_room h3 span {
	font-size: 3vw;
	margin: 0 3vw;
}
#new_room p {
	font-size: 3vw;
	margin-bottom: 5vw;
}
#new_room ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
}
#new_room ul li{
	width: 48%;
	margin: 0 4% 2% 0;
}
#new_room ul li img{
	margin-bottom: 3vw;
}
#new_room ul li h4{
	font-size: 4vw;
	margin-bottom: 2vw;
}
#new_room ul li p{
	font-size: 2.6vw;
}

	#rooms .sec_list.slick-slider {
		width: 80vw;
		margin-left: -70vw;
	}
	#rooms .sec_list li {
		margin: 0 4vw;
	}
	#rooms .sec_list img {
		height: 45vw;
	}
	#rooms .sec_list h3 {
		font-size: 3.8vw;
	}

	#dish {
		width: 90%;
	}
	.dish_wrap {
		display: block;
	}
	#dish .sec_ttl {
		margin-bottom: 50px;
	}
	#dish .sec_right {
		width: 100%;
		margin-bottom: 40px;
	}
	#dish .sec_right img {
		width: 100%;
		height: 60vw;
		object-fit: cover;
	}

	#okami {
		width: 90%;
	}
	.okami_wrap {
		display: block;
	}
	.okami_wrap > div {
		width: 100%;
	}
	.okami_wrap .sec_ttl {
		margin-bottom: 30px;
	}
	.okami_wrap .sec_ttl h2 {
		font-size: 4vw;
	}
	#okami .sec_left {
		margin-bottom: 80px;
	}
	.okami_img {
		width: 60%;
		margin: 0 auto 20px;
	}
	.okami_txt {
		width: 100%;
	}
	.okami_txt .sec_txt {
		font-size: 3.5vw;
	}
	#okami .sec_btn {
		margin-top: 20px;
	}
	#okami .sec_btn a {
		font-size: 3.5vw;
	}
	#okami .slick-prev,
	#okami .slick-next {
		top: 45vw;
	}
	.okami_thumb {
		width: 94%;
		margin: 0 auto 40px;
	}
	/* .okami_thumb .slick-track {
		position: static;
		transform: translate3d(0px, 0px, 0px) !important;
		margin: 0 0 0 -0.4vw;
	} */
	.okami_thumb .slick-slide img {
		width: 92%;
		margin: auto;
		opacity: .3;
	}
	.okami_thumb .slick-slide:focus {
		outline: none;
	}
	.okami_thumb .slick-slide.slick-current img {
		opacity: 1;
	}

	#plan .sec_list.slick-slider {
		width: 200vw;
		margin-left: -50vw;
	}
	#plan .sec_list li {
		margin: 0 4vw;
	}
	#plan .sec_list img {
		height: 39vw;
	}
	#plan .sec_list h3 {
		font-size: 3vw;
	}
	#plan .sec_btn {
		width: 90%;
		margin: 40px auto 0;
		font-size: 0;
	}
	#plan .sec_btn a {
		width: 49%;
		font-size: 3vw;
	}
	#plan .sec_btn a:first-child {
		margin-right: 2%;
	}
	#plan .sec_btn p::before {
		right: 4vw;
		width: 1.8vw;
		height: 1.8vw;
	}

	.news_list {
		width: 90%;
	}
	.news_list li {
		padding-left: 19vw;
		font-size: 3.5vw;
	}
	.news_list li a {
		padding: 16px 2vw;
	}
	.news_list li span {
		width: 19vw;
		margin-left: -19vw;
		font-size: 3vw;
	}
	.news_more {
		font-size: 3.5vw;
	}
	.news_more a::after {
		right: 1vw;
		width: 2.3vw;
		height: 2.3vw;
		margin-left: 2vw;
	}
	#ZenSearchFrom #searchBox {
		justify-content:flex-start;
		width: 90.67vw;
	}
	#ZenSearchFrom .booking_title p{ 
		border-bottom: 1px solid;
		padding: 0 4vw 1.5vw;
		margin-bottom: 2vw;
		display: inline-block;
		font-size: 4vw;
	} 
	#ZenSearchFrom {
		color: #fff;
		width: 90.67vw;
		margin: 0 auto;
		padding: 5vw 0 8vw;
		align-items: flex-start;
	}
	#ZenSearchFrom input {
		background: url(https://www.shinmonso.com/wp-content/themes/shinmonso_Ver2-5/_assets/img/common/book_calendar.svg) no-repeat right 1rem center / 3.5vw;
	}
	#ZenSearchFrom select{
		background: url(https://www.shinmonso.com/wp-content/themes/shinmonso_Ver2-5/_assets/img/common/book_arrow.svg) no-repeat right 1rem center / 2.5vw;
	}
	#ZenSearchFrom input, #ZenSearchFrom select {
		height: 9vw;
		padding: 0 3vw;
		font-size: 3vw;
		letter-spacing: .05em;
		width: 100%;
		border-radius: 3px;
		background-color: #fff;
	}
	#ZenSearchFrom legend {
		margin-bottom: 1vw;
		font-size: 3vw;
	}
	#ZenSearchFrom fieldset {
		margin-right: 2vw;
	}
	#ZenSearchFrom fieldset + fieldset{
		margin-top: 2vw;
	}
	#ZenSearchFrom fieldset.checkin {
		width: 44vw;
	}
	#ZenSearchFrom fieldset.nights {
		width: 21vw;
	}
	#ZenSearchFrom fieldset.rooms {
		width: 21vw;
		margin-right: 0;
	}
	#ZenSearchFrom fieldset.adults {
		width: 44vw;
	}
	#ZenSearchFrom .field-button .sub-bgcolor{
		color: #fff;
		width: 44vw;
		font-size: 3.5vw;
		margin-top: 5vw;
		height: 9.1vw;
	}
	@media (hover: none) {
		#ZenSearchFrom .field-button .sub-bgcolor{
			opacity: 1;
		}	
	}

}
