@charset "UTF-8";
/* CSS Document */
/* btn ----------------------------*/
/* btnarea */
.btnarea {
	display: flex;
}
.btnarea.btn-center {
	justify-content: center;
}
.btnarea.btn-right {
	justify-content: flex-end;
}

.btn {
	display: inline-block;
	vertical-align: middle;
	width: 100%;
	cursor: pointer;
	overflow: hidden;
	position: relative;
}

/* ボタンの幅：デザイン案に合わせて編集 */

.btnW-ss {
	max-width: 190px;
}
.btnW-s {
	max-width: 320px;
}
.btnW-m {
	max-width: 420px;	
}
.btnW-l {
	max-width: 520px;
}
@media (max-width: 480px) {
	.btnW-s,.btnW-m,.btnW-l {
		max-width: none;
	}	
}

/* ボタンの高さ：デザイン案に合わせて編集 */
.btnH-s {
	height: 55px;	
}
.btnH-m {
	height: 80px;
}
.btnH-l {
	height: 100px;
}

/* 枠線ボタン */
.btn.btn-style01 {
	border: 1px solid #fff;	/* 枠線の設定 */
	color: #fff;					/* 文字色 */
}
.btn.btn-style01:hover {
	background-color: #000; 		/* 背景色 */
}

/* 背景色ボタン */
.btn.btn-style02 {
	border: none; 		/* 枠線の設定 */
	background-color: #77640d;	/* 背景色 */
	color: #fff; 					/* 文字色 */
}
.btn.btn-style02:hover {
	background-color: #645305;		/* 背景色 */
}

/* 枠線ボタン */
.btn.btn-style03 {
	border: 1px solid #000;	/* 枠線の設定 */
	color: #000;					/* 文字色 */
}
.btn.btn-style03:hover {
	background-color: #000; 		/* 背景色 */
	color: #fff;
}

/* ボタン矢印：デザイン案に合わせて編集 */
.btn-arrow {
	width: 15px;
	height: 15px;
	display: inline-block;
}
.btn-arrow:before {
	content: "";
	display: block;
	width: 9px;
	height: 9px;
	border-top: 1px solid;
	border-right: 1px solid;
	border-color: currentColor;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%) rotate(45deg);
	transition: right ease 0.28s;
}
.btn-arrow:after {
	content: "";
	display: block;
	width: 10px;
	height: 1px;
	position: absolute;
	top: 50%;
	left: 0;
	background: #fff;
	transform: translateY(-50%);
	transition: all ease 0.28s;
}

.btn-style03 .btn-arrow:after {
	background: #000;
}

.btn:hover .btn-arrow:before {
	right: 20px;
}
.btn:hover .btn-arrow:after {
	left: calc(100% - 29px);
}

.btn-style03.btn:hover .btn-arrow:after {
	background: #fff;
}

@media (max-width: 480px) {
	.btn-arrow:before {
		right: 15px;
	}
	.btn:hover .btn-arrow:before {
		right: 10px;
	}
	.btn-arrow:after {
		content: none;
	}
}

/* 外部リンクアイコン：デザイン案に合わせて編集 */
.btn-exit:before,
.btn-exit:after {
	content: "";
	display: block;
	border-color: currentColor;
	position: absolute;
	top: 50%;
}
.btn-exit:before {
	width: 12px;
	height: 10px;
	border: 2px solid;
	right: 30px;
	margin-top: -7px;
}
.btn-exit:after {
	width: 11px;
	height: 9px;
	border-left: 1px solid;
	border-bottom: 1px solid;
	right: 33px;
	margin-top: -4px;
}
@media (max-width: 480px) {
	.btn-exit:before {
		right: 15px;
	}
	.btn-exit:after {
		right: 18px;
	}
}

/* ボタン内容 */
.btn-cont {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 0 30px;
	line-height: 1.2;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.btn-arrow .btn-cont,
.btn-exit .btn-cont {
	padding: 0 50px 0 30px;
}

@media (max-width: 480px) {
	.btn-cont {
		padding: 0 15px;
	}
	.btn-arrow .btn-cont,
	.btn-exit .btn-cont {
		padding: 0 30px 0 15px;
	}
}

/* ボタンアイコン */
.btn-icon {
	padding-right: 10px;
}
.btn-icon .icon1 {
	width: 40px;
	height: auto;
}
.btn-icon .icon2 {
	width: 100px;
	height: auto;
}


.btn-txt {
	display: block;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif, sans-serif;
}

/* sec-plans tabUl ------------------- */
.sec-plans .tabPanel .tabUl {
	display: flex;
	width: auto;
	margin-left: auto;
	margin-right: auto;
    justify-content: center;
	flex-wrap: wrap;
}

.sec-plans .tabPanel .tabUl li {
	margin-bottom: 10px;
	vertical-align: middle;
	position: relative;
	padding: 0 15px;
}

.sec-plans .tabPanel .tabUl li::after {
	content:"/";
	position: absolute;
	top: 50%;
	right: -2px;
	color: rgba(255,255,255,0.2);
	display: block;
	font-size: 1.3rem;
	transform: translateY(-50%);
}

.sec-plans .tabPanel .tabUl li:last-child::after {
	content: none;
}
.sec-plans .tabPanel .tabUl li > span {
    padding: 5px 10px;
	position: relative;
}
.sec-plans .tabPanel .tabUl li:hover {
	cursor: pointer;
}
.sec-plans .tabPanel .tabUl li > span::before {
	content:"";
	position: absolute;
	display: block;
	left: 50%;
	bottom: 0;
	height: 1px;
	width: 0;
	background: #fff;
	transition: all ease 0.38s;	
}
.sec-plans .tabPanel .tabUl li > span:hover,
.sec-plans .tabPanel .tabUl li.checked > span::before {
	width: 100%;
	left: 0;
}

.plan-inner {
	position: relative;
}
.output {
    visibility: hidden;
    height: 0;
}
.output.checked {
    visibility: visible;
    height: auto;
}

.js-planslider {
    width: 100%;
    /*display: inline-flex;*/
    flex-wrap: wrap;
    justify-content: flex-start;
    /*margin: 0 -1%;*/
}

.js-planslider .cont-box {
	display: block;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.js-planslider .sbox-plan {
	width: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.js-planslider .sbox-plan > a .thumbnail .photo-wrap {
	overflow: hidden;
	display: block;
}
.js-planslider .sbox-plan > a .thumbnail .photo-wrap img {
	transition: all ease 0.38s;
}
.js-planslider .sbox-plan > a:hover .thumbnail .photo-wrap img {
	transform: scale(1.15);
}

.js-planslider .sbox-plan .txt-area {
	padding: 10px 0;
}

.js-planslider .sbox-plan .txt-area .plan-catch {
	color: #a3b410;
	font-size: 1.4rem;
}

.js-planslider .sbox-plan .area-price {
	display: table;
	/*border-bottom: 1px solid rgba(255,255,255,0.1);*/
	width: 100%;
	table-layout: auto;
}
.js-planslider .sbox-plan .area-price dt,
.js-planslider .sbox-plan .area-price dd {
	display: table-cell;
	vertical-align: middle;
}
.js-planslider .sbox-plan .area-price dt {
	padding: 7px 0;
	background: rgba(255,255,255,0.1);	
	text-align: center;
	letter-spacing: 0.25vw;
	position: relative;
    bottom: -1px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
	min-width: 70px;
}

.js-planslider .sbox-plan .area-price dd {
	padding: 7px 0 7px 5px;
	text-align: right;
	font-size: 1.45rem;
}

@media (max-width: 640px) {
	.sec-plans .tabPanel .tabUl {
		width: 100%;
	}
	
	.sec-plans .tabPanel .tabUl li {
		padding: 0 5px;
	}
	
	.js-planslider .sbox-plan {
		padding-left: 60px;
		padding-right: 60px;
	}
	
}

@media (max-width: 480px) {
	.js-planslider .sbox-plan {
		padding: 0 50px;
	}
}

/* js-bans-slider ------------------- */
.sec-bansslider .row {
	position: relative;
}

.sec-bansslider .col-Mbans {
    width: 100%;
    padding-right: 0;
    position: relative;
}
.sec-bansslider .bans-wrap {
    width: 100%;
    /*display: inline-flex;*/
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 -1%;
}

.sec-bansslider .col-Mbans .bans-wrap {
    margin: 0;
}

.sec-bansslider .col-Mbans .bans-wrap .sbox-ban {
	width: auto;
    padding-left: 1%;
    padding-right: 1%;
}

/*.bans-slider-arrows {
    width: 100%;
    position: absolute;
    top: 50%;
    margin-top: -30px;
	z-index: +1;
}*/

.slick-arrow .arrow {
    width: 60px;
    height: 60px;
    background-color: #000;
    position: absolute;
    cursor: pointer;
    top: 50%;
	z-index: +1;
	transform: translateY(-30px);
}

.is-left .arrow {
    /*top: 0;*/
    left: 0;
}

.is-right .arrow {
    /*top: 0;*/
    right: 0;
}

.slick-arrow .arrow:before {
	content: "";
	display: block;
	width: 14px;
	height: 14px;
	position: absolute;
	top: 50%;
	left: 50%;
	transition: left ease 0.28s;
}
.is-left .arrow:before {
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	transform: translate(-50%,-50%) rotate(-45deg);
}
.is-right .arrow:before {
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: translate(-50%,-50%) rotate(45deg);	
}
.is-left:hover .arrow:before {
	left: 40%;
}
.is-right:hover .arrow:before {
	left: 60%;
}

.slick-arrow.slick-disabled {
	opacity: 0 !important;
}
.slick-arrow.slick-disabled > .arrow {
	opacity: 0;
}

.sec-bansslider .is-left .arrow {
    /*top: 0;*/
    left: -30px;
}

.sec-bansslider .is-right .arrow {
    /*top: 0;*/
    right: -30px;
}

@media (max-width: 480px) {
	.sec-bansslider .wrap {
		width: 100%;
	}
	.sec-bansslider .col-Mbans .bans-wrap .sbox-ban {
		padding-left: 2%;
    	padding-right: 2%;
	}
	.bans-slider-arrows .arrow {
		width: 50px;
    	height: 50px;
	}
	.slick-arrow .arrow {
		width: 50px;
    	height: 50px;
	}
	
	.is-left .arrow {
		left: 0;
	}
	
	.is-right .arrow {
		right: 0;
	}

}

/* fban-group ----------------------- */
.fban-group {
	position: relative;
}
.fban-group > a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	transition: all ease 0.55s;
	overflow: hidden;
}
.fban-group > a::before {
	position: absolute;
	content:"";
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
    top: 0;
	background: url(../img/common/bgban-group.jpg) no-repeat center 50%;
	background-size: cover;
	z-index: -1;
	transition: all ease 0.55s;
}
.fban-group > a:hover::before {
	transform: scale(1.05);
}
.fban-group > a .bangroup-inner {
	background: rgba(62,55,40,0.85);
	display: table;
	flex-direction: column;
	padding: 30px 40px;
	width: auto;
}

.fban-group .bangroup-inner .bangroup-ttl {
	white-space: nowrap;
}

.fban-group > a .wrap {
	background: url(../img/common/bg-kirakira-min.png) no-repeat left top;
}

@media (max-width: 480px) {
	.fban-group > a .bangroup-inner {
		padding: 20px 5%;
	}
	.fban-group .bangroup-inner .bangroup-ttl {
		white-space: normal;
		font-size: 1.8rem;
	}
}

/* sec-bestrate --------------------- */
.sec-bestrate .box-bestrate .ttl-bestrate {
	position: relative;
	line-height: 65px;
	display: table;
    width: auto;
	margin-left: auto;
	margin-right: auto;
	padding-left: 110px;
}

.sec-bestrate .box-bestrate .ttl-bestrate::before {
	position: absolute;
	content:"";
	display: inline-block;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: url(../img/common/i_bestrate_gold.svg) no-repeat left 50%;
	width: 75px;
	height: 64px;
}

.list-bestrate {
	display: table;
	width: 420px;
	margin-left: auto;
	margin-right: auto;
}

.list-bestrate .stxt {
	position: relative;
	padding: 0 0 0 85px;
	min-height: 58px;
	line-height: 1.6;
	display: flex;
    flex-direction: column;
    justify-content: center;
}
.list-bestrate .stxt-01 {
	background: url(../img/common/i_benefit_01.svg) no-repeat left 50%;
	background-size: 53px 58px;	
}
.list-bestrate .stxt-02 {
	background: url(../img/common/i_benefit_02.svg) no-repeat left 50%;
	background-size: 53px 58px;	
}
.list-bestrate .stxt-03 {
	background: url(../img/common/i_benefit_03.svg) no-repeat left 50%;
	background-size: 53px 58px;	
}

@media (max-width: 640px) {
	
	.sec-bestrate .box-bestrate .ttl-bestrate {
		padding-left: 0;
    	padding-top: 70px;
		line-height: 1.5;
	    text-align: center;
	}
	.sec-bestrate .box-bestrate .ttl-bestrate::before {
	    left: 50%;
		top: 0;
		background-position: center top;
		transform: translateX(-50%);
	}
	.list-bestrate {
		width: 100%;
	}
	.list-bestrate .stxt {
		padding-left: 55px;
	}

	.list-bestrate .stxt-01,
	.list-bestrate .stxt-02,
	.list-bestrate .stxt-03{
		background-size: 45px 49px;	
	}
}
@media (max-width: 480px) {
	.list-bestrate .stxt .f-sz20 {
	    font-size: 1.5rem;	
	}	
}
/* fban ----------------------------- */
.sec-fban .list-fban {
	margin-left: auto;
	margin-right: auto;
	
    justify-content: center;
}
.sec-fban .list-fban > li {
	padding: 0 15px;
	margin-bottom: 10px;
	width: 25%;
	box-sizing: border-box;
}
@media (min-width: 1350px) {
	.sec-fban .list-fban {
		min-width: 1200px;
	}
	.sec-fban .list-fban > li {
		padding: 0 15px;
	}
}
@media (max-width: 1199px) {
	.sec-fban .list-fban {
		width: 100%;
	}
	.sec-fban .list-fban > li {
		padding: 0 0.6vw;
	}
}

@media (max-width: 640px) {
	.sec-fban .list-fban > li {
		width: 50%;
		padding: 0 5px;
	}
}

/* telbox ----------------------------*/
.telbox {
	color: #fff;
	display: inline-table;
}

.telbox .f-ymin {
	padding-left: 30px;
	position: relative;
}

.telbox .f-ymin::before {
	content:"";
	display: inline-block;
	width: 21px;
	height: 21px;
	background: url(../img/common/i_tel_wh.svg) no-repeat left top;
	background-size: 21px 21px;
	position: absolute;
	top: 3px;
	left: 0;
}

.telbox .t-teltime {
	text-align: center;
}

/* footer ----------------------------*/
.site-footer {
	background: url(../img/common/bg_footer.jpg) no-repeat center bottom;
	background-size: cover;
	position: relative;
}

#home .site-footer {
	padding-bottom: 120px;	
}

.site-footer a:link,
.site-footer a:hover,
.site-footer a:visited {
	color: #fff;
}

.site-footer .f-infoarea {
	justify-content: space-around;
}

.footer-logo {
    text-align: center;
}
.footer-logo .f-logotxt {
	background: url(../img/common/logo_mark_wh.svg) no-repeat left 50%;	
	background-size: 24px 24px;
    padding: 5px 0 5px 30px;
}
.footer-logo .f-logotxt img {
	width: 152px;
	height: 27px;
}

.footer-logo .f-siteinfo .t-keifuku img{
	width: 138px;
	height: 15px;
}

.site-footer a.nav-line {
	position: relative;
	padding: 5px 0 5px 15px;
}

.site-footer a.nav-line::before {
	position: absolute;
	content:"";
	left: 0;
	top: 50%;
	width: 4px;
	height: 1px;
	background: #fff;
}

.f-navarea .box-table .table-cell {
	vertical-align: top;
    padding: 0 3.5vw;
}

.f-navbox .fnav {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif, sans-serif;
}

.f-snsarea,
.f-copyarea {
	border-top: 1px solid rgba(255,255,255,0.15);
}
.f-snsbox {
    justify-content: center;
	align-items: center;
	padding: 25px 0;
}
.f-snsbox .f-sns {
	margin: 0 15px;
}
.f-snsbox .f-sns > a {
	display: flex;
	
}
.f-snsbox .f-sns > a .icon {
	padding-left: 55px;
	position: relative;
}
.f-snsbox .f-sns > a .icon::before {
	content:"";
	position: absolute;
	left: 0;
	display: block;
	width: 40px;
	height: 40px;
	background-color: rgba(255,255,255,0.1);
	background-size: 40px;
	margin-right: 15px;
	transition: all ease 0.38s;
}

.f-snsbox .f-sns > a:hover .icon::before {
	background-color: rgba(255,255,255,0.2);
}

.f-snsbox .f-sns > a .icon.i-facebook::before {
	background-image: url(../img/common/i_facebook_wh.svg);
}

.f-snsbox .f-sns > a .icon.i-instagram::before {
	background-image: url(../img/common/i_instagram_wh.svg);
}

.f-snsbox .f-sns > a span {
	line-height: 40px;
	font-size: 1.2rem;
}

.fsnav {
	display: flex;
}

.fsnav .ssnav:nth-child(2) {
	padding-left: 40px;
}

.t-copy {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.1rem;
	opacity: 0.5;
	letter-spacing: 0;
	text-align: right;
}
@media (min-width: 481px) {
	.f-copyarea {
		align-items: center;
	}
}
@media (min-width: 1200px) {
	.site-footer .f-infoarea {
		align-items: center;
	}
	.site-footer .f-infoarea .f-logoarea {
		order: -1;
	}
	
	.f-navarea {
		border-right: 1px solid rgba(255,255,255,0.1);
		border-left: 1px solid rgba(255,255,255,0.1);
	}
	
	.site-footer a.nav-line {
		padding-top: 7px;
		padding-bottom: 7px;
	}
}

@media (max-width: 1199px) {
	.site-footer {
		background-position: left bottom;
	}
	.f-navarea {
		width: 100%;
		padding-bottom: 50px;
    	border-bottom: 1px solid rgba(255,255,255,0.1);
	}
	.f-navarea .box-table {
		margin-left: auto;
		margin-right: auto;
	}
	.f-addarea,
	.f-logoarea {
		padding-top: 50px;
	}
	
	.f-logoarea {
		width: 280px;
		margin-left: auto;
	}
	.f-addarea {
		/*width: calc(100% - 280px);*/
		margin-right: auto;
	}
}
@media (max-width: 725px) {	
	.f-logoarea {
		margin-left: 0;
	}
	.f-addarea {
		margin-left: auto;
	}

}
@media (max-width: 640px) {	
	.f-logoarea,
	.f-addarea {
		width: 90%;
	}
	.f-copyarea {
	    flex-direction: column;	
	}
	.t-copy {
		padding-top: 15px;
		padding-bottom: 10px;
		text-align: center;
	}
}



@media (max-width: 480px) {
	.site-footer {
		background-position: -100px bottom;
	}
	.f-addarea {
		padding-top: 20px;
	}
	.f-logoarea {
		padding-top: 30px;
	}
	.f-navarea {
		padding-bottom: 30px;
	}
	.f-navarea .box-table .table-cell {
		box-sizing: border-box;
		width: 50%;
	}
	.f-snsbox .f-sns {
		margin: 0;
	}
	.f-snsbox .f-sns:nth-child(1) {
		margin-right: 3.5vw;
	}
	.f-snsbox .f-sns > a .icon {
		padding-left: 50px;
	}
	
	.f-copyarea .fsnav {
		flex-direction: column;
		width: auto;
		margin-left: auto;
		margin-right: auto;
	}
	.fsnav .ssnav,
	.fsnav .ssnav:nth-child(2) {
		padding-left: 0;
	}
}
/* toTop ----------------------------*/
#toTop {
	position: fixed;
	width: 65px;
	height: 65px;
	bottom: 0;
	right: 0;
	color: #fff;
	cursor: pointer;
	display: none;
	z-index: 999;
	text-align: center;
	background: rgba(255,255,255,0.15);
	animation: toTop-animation 0.3s ease forwards;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
#toTop > span {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -7px;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 14px;
	height: 14px;
	border: solid #fff;
	transform: rotate(-45deg);
	border-width: 1px 1px 0 0;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
#toTop:hover > span {
	top: 30%;
}
@media (max-width: 480px) {
	#toTop {
		width: 50px;
		height: 50px;
	}
	#toTop > i {
		line-height: 50px;
		font-size: 2.0rem;
	}
}

@keyframes toTop-animation {
	from{
		opacity: 0;
		transform: translateY(101%);
		-webkit-transform: translateY(101%);
	}
	to{
		opacity: 1;
		transform: translateY(0);
		-webkit-transform: translateY(0);
	}
}

@-webkit-keyframes toTop-animation {
    from {
        opacity: 0;
		-webkit-transform: translateY(101%);
        transform: translateY(101%);
    }
    to {
        opacity: 1;
		-webkit-transform: translateY(0);
        transform: translateY(0);
    }
}


/* searchAreaCommon ----------------------------------------*/
@media (min-width: 992px) {
	.searchAreaCommon.searchArea-fixed {
		position: fixed;
		width: 100%;
		bottom: 0;
		left: 0;
		height: 120px;
		z-index: 701;
	}
}


.searchAreaCommon__inner {
	display: flex;
	width: auto;
	background: rgba(0,0,0,0.85);
	height: 100%;
	box-sizing: border-box;
    padding: 25px 0;
	margin-left: auto;
	margin-right: auto;
	justify-content: center;
}

.searchAreaCommon_item .disp_none {
	display: none;
}

.searchAreaCommon_item .booking.ssttl {
	font-size: 1.3rem;
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.searchAreaCommon_ttlWrap {
	display: table;
}

.searchAreaCommon_item {
	box-sizing: border-box;
	display: flex;
}

.searchAreaCommon_ttlWrap .searchAreabest_sttl,
.searchAreaCommon_ttlWrap .searchAreaCommon_ttl {
	display: table-cell;
	vertical-align: middle;	
}

.searchAreaCommon_ttl {
	padding-right: 15px;
}

.searchAreaCommon_ttlWrap .searchAreabest_sttl a {
	display: block;
	background: url(../img/common/i_bestrate_gold.svg) no-repeat left 50%;
    width: 75px;
    height: 64px;
	margin-right: 2.5vw;
}

.searchAreaCommon_item .style_inputButton {
	font-size: 1.7rem;
	color: #fff;
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	background: #7e7156;
	line-height: 70px;
	border: none;
}

.style_inputArea {
    position: relative;
    height: inherit;
    padding: 0;
    color: #333;
    line-height: 1;
    letter-spacing: 0.05em;
    text-align: center;
    z-index: 2;
    cursor: pointer;
	border: none;
	font-size: 1.8rem;
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.nitteiarea .calid {
	bottom: 100px;
}
#frmplanseek .booking_inner {
	display: flex;
}
.select-frame {
	min-width: 7.0rem;
    height: 4.5rem;
}

.searchArea-fixed .select-frame {
	position: relative;
    margin-top: 5px;
    background-color: #fff;
	margin-right: 15px;
}
.dynDate span {
    position: relative;
    color: #333;
}

.style_inputArea-select select {
    width: 100%;
    height: inherit;
    margin: auto;
    color: #333;
    text-align: center;
    cursor: pointer;
	border: none;
	font-size: 1.8rem;
	padding-top: 11px;
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	outline: none;
	position: relative;
    padding: 0;
    cursor: pointer;
	/*line-height: 45px;*/
	padding: 11px;
}

.style_inputArea-select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
/* for IE */
.style_inputArea-select select::-ms-expand {
    display: none;
	padding: 7px;
}

@media all and (-ms-high-contrast: none) {
	.style_inputArea-select select {
		padding: 7px;
	}
}

.searchArea-fixed .select-frame::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -5px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: rotate(135deg) translate(-50%);
	z-index: +1;
}
.searchArea-fixed .dynDate .select-frame::after{
	content: none;
}
.frmplanseek {
	margin-right: 15px;
}
.searchAreaCommon_item .btn-planlist > a {
	background-color: #c95a00;
	color: #fff;
	padding: 0 1.5vw;
} 
.searchAreaCommon_item .btn-planlist > a .icon {
	display: inline-block;
	width: 15px;
	height: 15px;
	position: relative;
    top: 2px;
	margin-right: 10px;
}
.searchAreaCommon_item .btn-planlist > a span {
	line-height: 70px;
}

.searchAreaCommon_item .btn-planlist > a .icon {
	background: url(../img/common/i_list.svg) no-repeat left 50%;
	background-size: 15px 15px;
}


@media (min-width: 768px) {
	.cmbARRY {
		max-width: 4em;
		margin-left: 1.0rem;
		padding: 0 .5rem 0 0;
	}
	.style_inputArea-select select {
		/*padding: 0 0 0 2.5rem;*/
		-webkit-appearance: none;/* ベンダープレフィックス(Google Chrome、Safari用) */
		-moz-appearance: none; /* ベンダープレフィックス(Firefox用) */
		appearance: none; /* 標準のスタイルを無効にする */
	}
}

.searchAreaCommon_item .style_inputButton {
	min-width: 130px;
}

@media (min-width: 1141px) {
	.searchAreaCommon.searchArea-fixed {
		width: 1140px;
		margin-left: auto;
		margin-right: auto;
		left: 50%;
		transform: translateX(-50%);
	}
	
	.searchAreaCommon_item {
		display: flex;
	}
}

@media (max-width: 1290px) {

	.searchAreaCommon.searchArea-fixed {
		width: 100%;
		margin-left: 0;
		left: 0;
		transform: translateX(0);
		transition: all ease 0.28s;
	}
	.searchAreaCommon.searchArea-fixed.s-width {
		width: calc(100% - 65px);
	}

	.cmbARRY {
		margin-left: 0.2rem;
		padding-right: 0;
	}
	.searchArea-fixed .select-frame {
		margin-right: 10px;
	}
	.searchAreaCommon_item .style_inputButton {
		min-width: auto;
    	width: 100px;
	}
	.stays.sbox .select-frame,
	.rooms.sbox .select-frame,
	.ninzuarea.sbox .select-frame{
	    width: 50px;
		min-width: auto;
	}

	.dynDate.sbox .select-frame {
		min-width: auto;
		padding-right: 10px;
	}
	.cmbARRM,
	.cmbARRD {
		width: 25px;
	}

}

@media (max-width: 991px) {
	.searchAreaCommon.searchArea-fixed {
		display: none;
	}
	#home .site-footer {
		padding-bottom: 0;	
	}
}

/* 共通アニメーション
========================= */
/* fade in ----------------------------------------*/
.fadein {
  opacity : 0.0;
  transform : translate(0, 50px);
  transition : 800ms;
}
.fadein.activein {
  opacity : 1;
  transform : translate(0, 0px);
}

/* show order ----------------------------------------*/
#showOrder01 .order-box {
	transform: translateX(-10%);
	opacity: 0;
	transition : 100ms;
}


/* bganime ----------------------------------------*/
.bganime,
.bganime2 {
	position: relative;
	overflow: hidden;
}

.bganime::before,
.bganime2::before {
	z-index: -1;
    content: '';
    background: #000;
    -webkit-transition: .8s cubic-bezier(.77,0,.175,1);
    transition: .8s cubic-bezier(.77,0,.175,1);
    position: absolute;
    top: 0;
    display: block;
    width: 60%;
    height: 100%;
}

.bganime::before {
	left: 0;
	transform: translateX(-101%);
}
.bganime2::before {
	right: 0;
	transform: translateX(101%);
}

.activein.bganime::before,
.activein.bganime2::before {
	transform: translateX(0%);
}

/* cusine */
#c01.sec-seasonal.bganime::before {
	top: 40%;
    height: 65%;
    width: 85%;
}

#c02.sec-cusine.bganime2::before {
	top: 28%;
    height: 30%;
    width: 72%;
}

#c06.sec-venue.bganime::before {
	top: 40%;
	height: 60%;
}

/* guestroom */
#c01.sec-suite.bganime::before {
    top: 40%;
    height: 22%;
	width: 42%;
}

#c02.sec-western.bganime::before {
    width: 75%;
	height: 30%;
	top: 45%;
	z-index: 0;
}

#c03.sec-japanese.bganime::before {
    width: 75%;
	height: 30%;
	top: 45%;
	z-index: 0;
}

@media (max-width: 991px) {
	/* home */
	#home #c01.sec-cusine.bganime::before,
	#home #c03.sec-guestrooms.bganime::before {
		width: 85%;
	}
}

@media (max-width: 900px) {
	#c02.sec-cusine.bganime2::before {
		top: 30%;
		width: 100%;
	}
}

@media (max-width: 767px) {
	.activein.bganime::before, 
	.activein.bganime2::before {
		width: 85%;
	}
	#c02.sec-western.bganime::before,
	#c03.sec-japanese.bganime::before {
		width: 100%;
    	height: 53%;
	}
}

@media (max-width: 480px) {
	.activein.bganime::before, 
	.activein.bganime2::before {
		width: 100%;
	}	
	#c01.sec-suite.bganime::before {
		width: 85%;
		top: 50%;
    	height: 18%;
	}
}

/* has-linettl --------------------------------------*/
.has-linettl .ttl-line {
	overflow: hidden;
}
.has-linettl .ttl-line::after {
	content: '';
	z-index: +1;
	background: #fff;
	display: block;
	width: 1px;
	height: 100%;
	left: 50%;
	top: 0;
	transform-origin: bottom;
	transform: translateY(-101%);
}

.js-cview.activein.has-linettl .ttl-line::after {
	
    -webkit-transition: background-color 0.3s ease-out;
    transition: background-color 0.3s ease-out;
    -webkit-animation-name: line-repetition;
    animation-name: line-repetition;
    -webkit-animation-duration: 2.2s;
    animation-duration: 2.2s;
    -webkit-animation-timing-function: cubic-bezier(0.37, 0.16, 0.12, 1);
    animation-timing-function: cubic-bezier(0.37, 0.16, 0.12, 1);
    -webkit-animation-iteration-count: 2;
    animation-iteration-count: 2;
	-webkit-animation-fill-mode:backwords;
	animation-fill-mode:backwords;
}

@-webkit-keyframes line-repetition {
  0% {
    transform: translate(0, -101%);
	
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 101%);
	
  }
}
@keyframes line-repetition {
  0% {
    transform: translate(0, -101%);
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 101%);
	
  }
}



/* js-sticky ----------------------------------------*/
.js-sticky {
    position: relative;
	overflow: hidden;
}

.js-sticky.bg-square::before,
.js-sticky.bg-square::after {
	z-index: -1;
    content: '';
	display: block;
	width: 30%;
	
	height: 100%;
	opacity: 0;
	position: absolute;
}

.js-sticky.bg-square::before {
	background: url(../img/common/bg-left.png) no-repeat top right;
	left: 0;
	top: 25%;
	min-width: 500px;
	background-size: 500px auto;
}

.js-sticky.bg-square::after {
	background: url(../img/common/bg-right.png) no-repeat top right;
	right: 0;
	top: 60%;
	min-width: 320px;
	background-size: 320px auto;
}

.js-sticky.bg-square.stickyin::before,
.js-sticky.bg-square.stickyin::after {
	position: fixed;
	opacity: 1;
}


/* group */
#group .js-sticky.bg-square::before {
	content: none;
}





@media (max-width: 767px) {
	
	.js-sticky.bg-square::before {
		width: 42%;
		min-width: auto;
    	background-size: 320px auto;
	    left: -3%;
	}
	.js-sticky.bg-square::after {
	    width: 35%;
		min-width: auto;
		background-position: left top;
		background-size: 200px auto;
	    right: -10%;
	}	
	
}

@media (max-width: 480px) {
	.js-sticky.bg-square.stickyin::before, 
	.js-sticky.bg-square.stickyin::after {
	    opacity: 0.5;
	}
	
	.js-sticky.bg-square::after {
		
	}
}