@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');

#room_wire .no-underline {
    text-decoration: none!important;
  }
#room_wire h2 {
	font-size: 20px!important;
	border: none;
}
#room_wire .head1{
	font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif!important;
	font-weight: bold;
	border-top: 3px solid #f7ad3d;
	border-right: 1px solid #ccc;
	border-left: 1px solid #ccc;
	text-align: center;
	background-color: #fff;
	padding: 10px;
	margin: 0;
}
#room_wire .head2{
	font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif!important;
	font-weight: bold;
	margin: 0 0 20px 0 !important;
	font-size: 1.1em;
	color: #666666;
	padding: 8px 20px;
	border-left: 7px solid #3a85c6!important;
	border-right: 1px solid #ddd;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	background-image: none;
}

/* Form */
#room_wire h1,h2,h3,h4,h5 {
	font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif!important;
}
#room_wire input[type="text"] {
	width: 100%;
}
#room_wire input, select, textarea {
	font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif!important;
	font-size: 16px!important;
	box-sizing: border-box;
	margin: 0;
	box-shadow: none!important;
}
#room_wire .form-control[readonly] {
    background-color: transparent;
}

#room_wire input, select, textarea {
	color: #333;
}

.rw_plan_search input {
	background-color: #fff!important;
	cursor: pointer;
}

.rw-button {
	text-align: center;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	border: 0;
	position: relative;
	display: inline-block;
	padding: 10px 15px;
	margin: 4px auto;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	color: #212529;
	border-radius: 0.5rem;
}
.rw-button[disabled]{
	color: #999;
	background-color: #ccc!important;
}
.rw-button p {
	font-size: 0.6rem;
	margin-bottom: 0!important;
}

#room_wire .width100 {
	width: 100%;
}

#room_wire input[type="text"], input[type="tel"], input[type="email"], input[type="password"], input[type="number"], input[type="search"], select, textarea {
	border: 1px solid #ccc!important;
	padding: 6px 10px;
	appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
  border-radius: 4px!important;
}

#room_wire input[type="text"], input[type="tel"], input[type="email"], input[type="password"], input[type="number"], input[type="search"]:not(:last-child){
	margin-right: 5px;
}
#room_wire input[type="number"]::-webkit-outer-spin-button,input[type="number"]::-webkit-inner-spin-button {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    margin: 0;
}
#room_wire input[type="number"] {
	appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
}
#room_wire dt {
	float: left;
	clear: left;
	margin-top: 0.8em;
	margin-right: 0.5em;
	width: 120px;
}

#room_wire dd {
	float: left ;
	margin-left: 1em ;
	margin-bottom:10px;
}

#room_wire .warning {
	font-weight: bold;
	background-color: #ffff99;
	padding: 12px 20px;
	margin-bottom: 20px;
}

/* Read More */
.cp_box *, .cp_box *:before, .cp_box *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.cp_box {
	position: relative;
}
.cp_box label {
	position: absolute;
	z-index: 10; /* z-indexを上げて確実に最前面に表示 */
	bottom: 0;
	width: 100%;
	height: 140px; /* グラデーションの高さ */
	cursor: pointer;
	text-align: center;
	/* 背景を透明にして疑似要素で制御 */
	background: transparent;
	transition: opacity 0.4s cubic-bezier(0.4, 0.0, 0.2, 1); /* よりスムーズなアニメーション */
	opacity: 1; /* 初期状態で表示 */
    margin: 0;
}
.cp_box input {
	display: none;
}


/* グラデーション背景のみをフェードアウトするための疑似要素 */
.cp_box label::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(250, 252, 252, 0.95) 90%);
	transition: opacity 0.5s cubic-bezier(0.4, 0.0, 0.2, 1); /* よりスムーズなフェードアニメーション */
	opacity: 1;
	z-index: 2; /* グラデーション背景のz-index */
	pointer-events: none; /* 疑似要素はクリックイベントを無効化 */
}

.cp_box input:checked + label::before {
	opacity: 0; /* グラデーション背景のみフェードアウト */
}

.cp_box label:after {
	font-size: 0.8rem;
	line-height: 2rem;
	position: absolute;
	z-index: 15; /* ボタンテキストのz-indexを最前面に */
	bottom: 20px;
	left: 50%;
	width: 12rem;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: '\f13a'' 続きをよむ';
	transform: translate(-50%, 0);
	letter-spacing: 0.05em;
	color: #ffffff;
	border-radius: 20px;
	background-color: #444;
	transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1); /* よりスムーズなアニメーション */
	cursor: pointer;
}
.cp_box label:hover:after {
	background-color: #555;
	transform: translate(-50%, -2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
	transition: all 0.2s cubic-bezier(0.4, 0.0, 0.2, 1); /* ホバー時は少し早め */
}
.cp_box input:checked + label:after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: '\f139'' 閉じる';
	background-color: #444;
	box-shadow: 0 2px 8px rgba(0,0,0,0.2);
	transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1); /* よりスムーズなアニメーション */
}
.cp_box input:checked + label:hover:after {
	background-color: #555;
	transform: translate(-50%, -2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
	transition: all 0.2s cubic-bezier(0.4, 0.0, 0.2, 1); /* ホバー時は少し早め */
}

/* 新しいアニメーション方式：高さ固定で展開／折りたたみ */
.cp_box .cp_container {
	overflow: hidden;
	max-height: 250px; /* 初期状態の高さ（5em相当） */
	position: relative;
	padding-bottom: 120px; /* ボタンの表示エリア分のマージンを増加 */
	margin-bottom: 20px; /* コンテナ全体の下部マージンを追加 */
}

/* 展開状態のクラス */
.cp_box .cp_container.expanded {
	max-height: none !important; /* JavaScriptで制御するため!importantを追加 */
}

/* CustomSelectBox */

.rw-custom-select {
	position: relative;
	display: inline-block;
	width: 100%;
	background: #fff;
	margin-top: 4px;
	line-height: 1.5em;
	border-radius: 4px;
}

.rw-custom-select::after {
	position: absolute;
	top: 15px;
	right: -10px;
	margin-top: -5px;
	padding: 0 20px 0 0;
	content: "\f078";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #383838;
	font-size: 12px;
	pointer-events: none;
}

.rw-custom-select select {
	width: 100%;
	height: 40px;
	font-weight: normal;
	font-size: 16px;	
	color: #444;
	line-height: 1.3;
	background: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0;
	padding: 7px 20px 8px 7px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#room_wire .rw_room_comments {
	font-size: 0.9rem!important;
}
#room_wire .rw_room_comments h4 {
	padding: 0 0;
	margin: 0 0;
	border: none;
	font-size: 1.2rem!important;
	font-weight: 700;
}
#room_wire .err_msg {
	background-color: #FFEFEF;
	margin: 0 0 1em 0;
	padding: 10px;
	color: #C25338;
	border: 1px solid #D4440D;
	display:block;
	text-align: center;
}
#room_wire .alert_msg {
	background-color: #FFEFEF;
	margin: 0 0 1em 0;
	padding: 10px;
	color: #C25338;
	border: 1px solid #D4440D;
	display: none;
	text-align: center;
}
#room_wire .information_msg {
	background-color: #FFEFEF;
	margin: 0 0 1em 0;
	padding: 10px;
	color: #C25338;
	border: 1px solid #D4440D;
	text-align: center;
}


/* Text */
#room_wire .text_bold {
	font-weight: bold;
}
#room_wire .text25 {
	font-size: 25px;
}
#room_wire .text20 {
	font-size: 20px;
}
#room_wire .text15 {
	font-size: 15px;
}
#room_wire .text12 {
	font-size: 12px;
}
#room_wire .text10 {
	font-size: 10px;
}
#room_wire .text8 {
	font-size: 8px;
}
#room_wire .text_warning {
	color: #D4440D;
}

/* Margin */
#room_wire .margin10 {
	margin-bottom: 10px;
}
#room_wire .margin20 {
	margin-bottom: 20px;
}
#room_wire .margin30 {
	margin-bottom: 30px;
}
#room_wire .margin40 {
	margin-bottom: 40px;
}
#room_wire .margin50 {
	margin-bottom: 50px;
}
#room_wire .margin60 {
	margin-bottom: 60px;
}

/* Payment */

#room_wire .payment-form {
	background-color: rgb(252, 252, 252)!important;
	border: 1px solid #ccc;
	padding: 25px;
	border-radius: 5px;
}
#room_wire .payment_detail {
	padding: 25px;
}
#room_wire .payment_total {
	font-size: 24px;
	color: #D4440D;
}
#room_wire .payment_warning {
	margin-top: 30px;
}

/* My Page */

#room_wire #my_page .rw_stay_date {
	font-size: 0.9rem;
}
#room_wire #my_page .rw_plan_title {
	margin: 10px 0;
}
#room_wire #my_page .rw_reserve_detail {
	font-size: 0.8rem;
}
#room_wire #my_page .rw_plan_frame_active {
	border: 3px solid #ff8758;
	padding: 15px;
	margin: 0 0 1rem 0;
	border-radius: 6px;
}
#room_wire #my_page .rw_plan_frame {
	border: 3px solid #ddd;
	padding: 15px;
	margin: 0 0 1rem 0;
	border-radius: 6px;
}
#room_wire #my_page .rw_message {
	margin: 50px 0;
}

/* Message Window */
#room_wire .mw_caption {
	font-size: 1.1em;
	color: #666666;
	font-weight: bold;
	border-top: 3px solid #f7ad3d!important;
	border-right: 1px solid #ccc!important;
	border-left: 1px solid #ccc!important;
	text-align: center!important;
	background-color: #fff!important;
	padding: 10px!important;
	margin: 0!important;
}

#room_wire .mw_frame {
	border: 1px solid #ccc;
	padding: 15px;
}


/* Login Form */

#room_wire .login_form_frame {
	border: 1px solid #ccc;
	padding: 15px;
}


#room_wire .login_form h3 {
	border-top: 3px solid #f7ad3d!important;
	border-right: 1px solid #ccc!important;
	border-left: 1px solid #ccc!important;
	text-align: center!important;
	background-color: #fff!important;
	padding: 10px!important;
	margin: 0!important;
}

#room_wire dl {
	float: left;
	text-align: center;
}

/* Terms */

#room_wire .terms {
	font-size: 12px;
	border: 1px solid #ccc;
	padding: 14px;
	margin-bottom: 25px;
	height: 200px;
	overflow: hidden scroll;
}

#room_wire .terms h2 {
	color: #000;
	font-size: 16px!important;
	border: none;
	background: none;
}

#room_wire .terms h3 {
	color: #000;
	font-size: 16px;
	border: none;
	background: none;
}



.table_form li {
    list-style: none !important;
    float: left;	
}

.birth li .label {
    padding: 15px 0 0 4px;
    vertical-align: top;
}
.birth li .label, .tableList_01 .dl01, .title_page_sub::before {
    display: inline-block;
}





.year {
    width: 6em;
}
.select_01 {
    border: 1px solid #cfcfcf;
    background: -webkit-linear-gradient(top,#fff 0,#f6f6f6 47%,#ededed 100%);
    background: linear-gradient(to bottom,#fff 0,#f6f6f6 47%,#ededed 100%);
}


.select_01, .select_01_error, .select_ico {
    position: relative;
    display: inline-block;
    overflow: hidden;
    box-sizing: border-box;
    margin-left: -4px;
    padding: 6px 5px 6px 8px;
    cursor: pointer;
}

#room_wire {
	line-height: 1.5em;
}

#room_wire hr {
	display: block!important;
	border:none;
	border-top: 1px solid #ccc;
	margin: 16px 0;
}


.rw-btn_search_plan {
	text-align: right;
}
.rw-btn_orange {
	color: #fff;
	background-color: #eb6100;
}
#room_wire .rw-btn_blue {
	color: #fff;
	background-color: #006eeb;
}
#room_wire .rw-btn_gray {
	color: #555;
	background-color: #ddd;
}

#room_wire .rw-price {
	font-family: 'Oswald', sans-serif;
	font-size: 34px;
	font-weight: bold;
	text-align: right;
	margin: 5px 0;
}
#room_wire .rw-price_tax {
	font-size: 10px;
	font-weight: normal;
}

#room_wire .head_persons {

	text-align: right;
}
#room_wire .rw_plan_container {
	border: 1px solid #ddd;
	padding: 15px;
}
#room_wire .rw_plan_container_np {
	padding: 0 0;
}
#room_wire .row {
    margin-left: 0;
    margin-right: 0;
}
#room_wire .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    padding-left: 5px!important;
    padding-right: 5px!important;
}

/* Loading Screen */
#room_wire #loader-wrap {
	position: fixed;
	display: flex;
    top: 0;
    left: 0;
    z-index: 19999;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background: #000;
    opacity: 0.5;
}
#room_wire .loader {
    font-size: 10px;
    margin: 50px auto;
    text-indent: -9999em;
    width: 11em;
    height: 11em;
    border-radius: 50%;
    background: #ffffff;
    background: -moz-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
    background: -webkit-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
    background: -o-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
    background: -ms-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
    background: linear-gradient(to right, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
    position: relative;
    -webkit-animation: load3 1.4s infinite linear;
    animation: load3 1.4s infinite linear;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}
#room_wire .loader:before {
    width: 50%;
    height: 50%;
    background: #ffffff;
    border-radius: 100% 0 0 0;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
}
#room_wire .loader:after {
    background: #000000;
    width: 75%;
    height: 75%;
    border-radius: 50%;
    content: '';
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
@-webkit-keyframes load3 {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
}
@keyframes load3 {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
}

/* Plan Search Form */
.rw_plan_search {
	padding-bottom: 12px;
}
.rw_plan_search h2 {
	font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif!important;
	font-weight: bold;
	margin: 0.2em 0;
	font-size: 1.2rem!important;
	cursor: pointer;
}
.rw_plan_search h2 i {
	transition: 0.5s;
	color: #000;
	padding: 3px;
}
.rw_plan_search input[type="text"], input[type="tel"], input[type="email"], input[type="password"], input[type="number"], input[type="search"], select, textarea {
	font-size: 16px;
	border: 1px solid #ccc!important;
	padding: 6px 4px;
	margin: 4px 0;
	appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
	border-radius: 4px!important;
}

.rw_plan_search .frame {
	border: 1px solid #F0DFC3;
	background-color: #FFFBFA;
	padding: 10px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
.rw_plan_search .form_section {
	margin: 5px 0;
}
.rw_plan_search .room_type {
	background-color: #F0DFC3;
	padding: 10px;
	margin: 5px 5px;
	border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}
.rw_plan_search select {
	background-color: #fff;
}
.rw_plan_search label, input[type='checkbox'] {
    cursor: pointer;
}
.rw_plan_search .datepicker {
	cursor: pointer;
}

/* 日曜日：赤 */
.flatpickr-calendar .flatpickr-innerContainer .flatpickr-weekdays .flatpickr-weekday:nth-child(1),
.flatpickr-calendar .flatpickr-innerContainer .flatpickr-days .flatpickr-day:not(.flatpickr-disabled):not(.prevMonthDay):not(.nextMonthDay):nth-child(7n - 6) {
    color: red;
}
 
/* 土曜日：青 */
.flatpickr-calendar .flatpickr-innerContainer .flatpickr-weekdays .flatpickr-weekday:nth-child(7n),
.flatpickr-calendar .flatpickr-innerContainer .flatpickr-days .flatpickr-day:not(.flatpickr-disabled):not(.prevMonthDay):not(.nextMonthDay):nth-child(7n) {
    color: blue;
}
.flatpickr-current-month {
	font-size: 16px!important;
}
.flatpickr-current-month select,
.flatpickr-current-month input[type="number"] {
	border: none!important;
}

.rw_plan_search .child_selector {
	position: absolute;
	background-color: #ffeccc;
	border: 1px solid #f6c87e;
	border-radius: 5px;
	padding: 10px;
	display: none;
	Z-index: 1000!important;
	right: 0;
	width:185px;
	text-align: left;
}

.rw_plan_search .child_selector label {
	display: block;
	padding: 0 6px;
	margin-bottom: 6px;
	background-color: rgb(255, 220, 137);
	font-size: 12px;
	border-radius: 2px;
}
.rw_plan_search .child_selector .head_label {
	font-size: 10px;
}

.rw_plan_search .child_selector .select_block {
	width: 47%;
	float: left;
	display: inline;
	margin-left: 4px;
}

.rw_form_caption {
	font-size: 14px;
	text-align: left;
	display: block;
	padding: 10px 0 0 0;
}

#room_wire .bx-wrapper {
	margin-bottom: 30px;
}
#room_wire .bx-wrapper ul {
    margin: 0!important;
}

.rw-search_field {
	display:inline-block;
	white-space: nowrap;
	width: 230px;
	margin: 5px 0;
}
.rw-search_field_narrow {
	display:inline-block;
	white-space: nowrap;
	width: 115px;
	margin: 5px 0;
}
.rw-search_field_child {
	display:inline-block;
	width: 49%;
}

.rw-calender_icon {
	font-family: FontAwesome;
	font-size: 22px;
	position: absolute;
	top: 12px;
	left: 10px;
}
.rw-calender_input {
	padding-left: 40px!important;
}


.select_ico::after {
    border-top-color: #333;
}
.select_ico::after {
    position: absolute;
    right: 10px;
    display: block;
    margin-top: -1px;
    border: 4px solid transparent;
    border-bottom-width: 0;
}
.tableList_01 .year {
    width: 6em;
}
.select_01 {
    border: 1px solid #cfcfcf;
    background: -webkit-linear-gradient(top,#fff 0,#f6f6f6 47%,#ededed 100%);
    background: linear-gradient(to bottom,#fff 0,#f6f6f6 47%,#ededed 100%);
}
.select_01, .select_01_error, .select_ico {
    position: relative;
    display: inline-block;
    overflow: hidden;
    box-sizing: border-box;
    margin-left: -4px;
    padding: 6px 5px 6px 8px;
    cursor: pointer;
}






input, select, textarea {
    color: #333;
}



.table_form .clearFix::after {
    display: block;
    font-size: 0;
}

.table_form .clearFix::after, .table_form div::after {
    visibility: hidden;
    clear: both;
    height: 0;
}

.form_width1 {
	width: 150px;
}



.dl01 {
    display: inline-block;
	height: 40px;
}
.dl01 dt {
    float: left;
    width: 2.5em;
    line-height: 45px;
}




.dl01 dd{  
    float: left;
	margin: 0 !important;

}

.dl01 + .dl01 {
	padding-left: 1em;
}


.text_banner {
	font-size: 12px;
	font-weight: bold;
	margin-bottom: 4px;
	color: #666666;
	margin-top: 4px;
	clear: both;
}
#room_wire .vacancy_calender table {
	width: 100%;
}
#room_wire .vacancy_calender tr {
	background-color: white;
}
#room_wire .vacancy_calender td {
	text-align: center;

	position: relative;
	min-height: 80px;
	vertical-align: top;
}
#room_wire .vacancy_calender thead .sunday {
	background-color: rgb(255, 222, 217);
}
#room_wire .vacancy_calender thead .saturday {
	background-color: rgb(217, 237, 255);
}

#room_wire .vacancy_calender tbody .sunday {
	background-color: rgb(253, 238, 236);
}
#room_wire .vacancy_calender tbody .saturday {
	background-color: rgb(238, 247, 255);
}
#room_wire .vacancy_calender td .day {
	font-weight: bold;
}
#room_wire .vacancy_calender .date_month {
	font-size: 10px;
}
#room_wire .vacancy_calender .date {
	font-size: 14px;
}
#room_wire .vacancy_calender .price {
	font-size: 14px;
}
#room_wire .reserve_message {
	padding: 30px 0;
}

.calender table td {
	font-size: 12px;
	text-align: center;
	padding: 10px 0px !important;
}
.calendar_table {
	border: 1px solid #CCCCCC;
}

.calendar_td_column_day {
	background-color: #FFFFDD;
	color: #666666;
	width: 14%;
}
.calendar_td_column_satday {
	background-color: #BFD5FF;
	color: #666666;
	width: 15%;
}
.calendar_td_column_sunday {
	background-color: #FFD9D9;
	color: #666666;
	width: 15%;
}
.calendar_td_day {
	height: 50px;
	vertical-align: top;
}
.calendar_td_satday {
	border-top-width: 3px;
	background-color: #F0F5FF;
	vertical-align: top;
}
.calendar_td_sunday {
	border-top-width: 3px;
	border-top-style: double;
	background-color: #FFF4F4;
	vertical-align: top;
}
.calendar_text_day {
	border-top-width: 3px;
	font-weight: bold;
	color: #666666;
	padding: 2px;
}
.calendar_text_price {
	font-size: 12px;
	color: #666666;
	padding: 2px;
}
.calendar_text_reserve_ok {
	font-size: 12px;
	color: #FF3333;
	padding: 2px;
}
.calendar_text_reserve_ng {
	font-size: 12px;
	color: #0000FF;
	padding: 2px;
}
.stayplan_table {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCCCCC;
	margin-bottom: 12px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
}
.stayplan_table_head1 {
	background-color: #F2EEEA;
	padding: 4px;
	font-size: 12px;
	font-weight: bold;
	color: #666666;
	width: 150px;
}
.stayplan_table_head2 {
	background-color: #FAF8F5;
	padding: 4px;
	font-size: 12px;
	color: #666666;
}
.button_column_space {
	color: #666666;
	font-size: 12px;
	text-align: right;
	padding-left: 8px;
}
.stayplan_table_border {
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #CCCCCC;
}
.reserve_information {
	font-size: 12px;
	color: #666666;
	margin-top: 8px;
	margin-bottom: 8px;
}
.reserve_chart {
	padding-top: 6px;
	padding-bottom: 80px;
	white-space: nowrap;
}
.reserve_chart_box {
	border: 1px solid #CCCCCC;
	width: 15%;
	font-size: 12px;
	background-color: #ECE8E3;
	color: #666666;
	text-align: center;
	padding: 10px 0 10px 0;
	float: left;
	font-weight: bold;
}
.reserve_chart_box_now {
	border: 1px solid #FFCC00;
	width: 15%;
	font-size: 12px;
	background-color: #FFFFCC;
	color: #666666;
	text-align: center;
	padding: 10px 0 10px 0;
	float: left;
	font-weight: bold;
}
.reserve_chart_arrow {
	height: 40px;
	width: 20px;
	float: left;
	vertical-align: baseline;
	margin-top: 20px;
	margin-right: 4px;
	margin-left: 4px;
}
.error_message {
	font-size: 12px;
	background-color: #FFE8E8;
	padding: 8px;
	border: 1px solid #FF0000;
	margin-bottom: 12px;
	text-align: center;
}

.ui-datepicker {
	line-height: 1.5rem;
}

@media screen and (max-width: 767px) {
	.rw-search_field {
		width: 100%;
	}
	.rw-search_field_narrow {
		width: 100%;
	}
}


.rw-table-responsive {
	width: 100%;
	border:none;
	line-height: 1.5rem;
}

.rw-table-responsive th,.rw-table-responsive td{
	position:relative;
	background:none;
	border:none;
	padding: 0.5rem;
}

.rw-table-responsive tr{
    border: none;
}

.rw-table-responsive th {
	width: 30%;
	text-align: right;
	vertical-align:top;
}
.rw-table-responsive .vc {
	vertical-align: middle;
}
.rw-table-responsive .requied {
    font-size: 0.8em;
    color: #FFF;
    display: inline-block;
    padding: 0.3em 0.3em 0.2em;
    background: red;
    border-radius: 2px;
}
 
@media only screen and (max-width: 768px) {

	.rw-table-responsive td{
		width: 100%!important;
		display: block!important;
	}
	.rw-table-responsive th {
		width: 100%!important;
		display: block!important;
		padding-bottom: 0;
		text-align: left!important;
	}
	.rw-table-responsive td {
		padding-bottom: 0;
		text-align: left!important;
	}
	.rw-table-responsive .empty {
		display: none;
	}
	#room_wire .vacancy_calender td {
		font-size: 14px;
		text-align: center;
		line-height: 18px;
	}
	#room_wire .head_persons,
	#room_wire .rw-price {
		display: inline-block;
	}

	#room_wire .vacancy_calender .date_month {
		font-size: 8px;
	}
	#room_wire .vacancy_calender .date {
		font-size: 14px;
	}
	#room_wire .vacancy_calender .price {
		font-size: 10px;
	}
	#room_wire .login_form dl,
	#room_wire .login_form dd {
		margin-bottom: 0;
	}
	#room_wire .login_form dt {
		text-align: left;
		width: 100%;
	}
	#room_wire .login_form dt .text8 {
		display: inline-block;
	}

}
 








/* Stripe */

#rw_stripe label {
	font-weight: 600;
	font-size: 14px;
	display: block;
	margin-bottom: 8px;
}
 
/* オートコンプリートで入力した時 */
#rw_stripe .StripeElement--webkit-autofill {
	background-color: #beddf9 !important;
}
 
#rw_stripe #card-errors {
	color: #ff5f3f;
}

#rw_stripe .card-label-container {
	height: 1.5em;
	width: 100%;
	display: flex;
	margin: 10px 0 0 0;
	font-size: 0.8em;
	font-weight: 800;
	align-items: center;
}

#rw_stripe .baseline {
	margin: 0 0 30px 0;
}

#rw_stripe .card-label-container label {
	pointer-events: none;
}

#rw_stripe .input {
	padding: 5px 0 6px 0;
	border-bottom: 1px solid #ddd;
}

/* モダンなプラン一覧表示のスタイル */
.rw_plan_container {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 24px;
    margin-bottom: 32px;
    border: 1px solid #f5f5f5;
}

.rw_plan_container:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.rw_plan_container .head2 {
    font-size: 1.5rem !important;
    font-weight: 600;
    color: #2d3748 !important;
    margin-bottom: 20px !important;
    padding: 15px !important;
    border: none !important;
    background: none !important;
    position: relative;
}



/* スライダーのモダン化 */
.rw_plan_container .bxslider {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.rw_plan_container .bxslider li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rw_plan_container .bxslider li img {
    border-radius: 4px;
    width: 100%;
    height: auto;
    display: block;
}

/* 画像がない場合のスタイル */
.rw_plan_container .bxslider li div {
    background: #f7fafc;
    border-radius: 12px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #e2e8f0;
}

/* 説明文のスタイル改善 */
.rw_plan_container .cp_container {
    background: #f7fafc;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
    line-height: 1.6;
    color: #4a5568;
    font-size: 0.95rem;
}

/* 部屋タイプのカードデザイン */
.rw_plan_container .room-type-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin: 16px 0;
    transition: all 0.3s ease;
}

.rw_plan_container .room-type-card:hover {
    box-shadow: 0 4px 15px rgba(113, 128, 150, 0.08);
}

.rw_plan_container .room-type-card .room-image {
    border-radius: 4px;
    overflow: hidden;
}

/* 部屋タイプカード画像のhover効果を削除 */
/* .rw_plan_container .room-type-card .room-image:hover {
    transform: scale(1.05);
} */

.rw_plan_container .room-type-card h4 {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.rw_plan_container .rw_room_comments {
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* 料金表示のモダン化 */
.rw_plan_container .price-section {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    border-radius: 10px;
    padding: 20px;
    color: white;
    text-align: center;
}

.rw_plan_container .head_persons {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 8px;
}

.rw_plan_container .rw-price {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.rw_plan_container .rw-price_tax {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ボタンのモダン化 */
.rw_plan_container .rw-btn_search_plan {
    margin-top: 16px;
}

.rw_plan_container .rw-button {
    border-radius: 8px;
    font-weight: 600;
    padding: 12px 20px;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.rw_plan_container .rw-btn_blue {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.rw_plan_container .rw-btn_blue:hover {
    background: linear-gradient(135deg, #2980b9, #1f5f8b);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.rw_plan_container .rw-btn_orange {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
}

.rw_plan_container .rw-btn_orange:hover {
    background: linear-gradient(135deg, #d35400, #a04000);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .rw_plan_container {
        padding: 16px;
        margin-bottom: 24px;
    }
    
    .rw_plan_container .head2 {
        font-size: 1.3rem !important;
    }
    
    .rw_plan_container .rw-price {
        font-size: 1.5rem;
    }
    
    .rw_plan_container .room-type-card {
        padding: 16px;
    }
}

/* アニメーション効果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rw_plan_container {
    animation: fadeInUp 0.6s ease-out;
}

/* 検索フォームのモダン化 */
.rw-search_field_narrow {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    padding: 20px;
    border: 1px solid #e2e8f0;
}

/* 全体的なレイアウト改善 */
#room_wire .row {
    margin: 0;
}

#room_wire .col-md-3,
#room_wire .col-md-9 {
    padding: 0 15px;
}

/* 区切り線の改善 */
.rw_plan_container hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
    margin: 24px 0;
}

/* bxSliderのモダンなナビゲーション */
.rw_plan_container .bx-wrapper .bx-pager {
    bottom: 10px;
}

.rw_plan_container .bx-wrapper .bx-pager.bx-default-pager a {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.rw_plan_container .bx-wrapper .bx-pager.bx-default-pager a:hover,
.rw_plan_container .bx-wrapper .bx-pager.bx-default-pager a.active {
    background: #4a5568;
    transform: scale(1.2);
}

.rw_plan_container .bx-wrapper .bx-controls-direction a {
    background: rgba(74, 85, 104, 0.8);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-indent: 0;
    text-decoration: none;
}

.rw_plan_container .bx-wrapper .bx-controls-direction a:hover {
    background: rgba(74, 85, 104, 1);
    transform: scale(1.1);
    color: white;
}

.rw_plan_container .bx-wrapper .bx-controls-direction a.bx-prev {
    left: 10px;
}

.rw_plan_container .bx-wrapper .bx-controls-direction a.bx-next {
    right: 10px;
}

/* ローディング状態の改善 */
.rw_plan_container .bx-wrapper .bx-loading {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
}

/* スライダーのレスポンシブ対応 */
@media (max-width: 768px) {
    .rw_plan_container .bx-wrapper .bx-controls-direction a {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 18px;
        font-weight: bold;
    }
    
    .rw_plan_container .bx-wrapper .bx-pager.bx-default-pager a {
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }
}

/* 範囲選択カレンダーのスタイル */
.range_calendar {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    min-width: 600px;
    max-width: 800px;
    margin-top: 5px;
    display: none;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.calendar_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.calendar_month_titles {
    display: flex;
    justify-content: space-around;
    flex-grow: 1;
    text-align: center;
}

.month_title {
    font-weight: bold;
    font-size: 16px;
    color: #333;
    width: 45%;
}

.calendar_nav {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.2s;
    color: #666;
}

.calendar_nav:hover {
    background-color: #e9ecef;
}

.current_month {
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

.calendar_body {
    padding: 15px;
    display: flex;
    gap: 20px;
}

.calendar_month {
    flex: 1;
    min-width: 280px;
}

.month_header {
    display: none;
}

.calendar_table {
    width: 100%;
    border-collapse: collapse;
}

.calendar_table th {
    padding: 10px 5px;
    text-align: center;
    font-weight: bold;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.calendar_table th:nth-child(1) {
    color: #dc3545;
}

.calendar_table th:nth-child(7) {
    color: #007bff;
}

.calendar_day {
    padding: 8px 5px;
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
    position: relative;
    font-size: 14px;
}

.calendar_day:hover:not(.disabled) {
    background-color: #f8f9fa;
}

.calendar_day.other_month {
    color: #ccc;
}

.calendar_day.today {
    font-weight: bold;
    color: #007bff;
}

.calendar_day.selected {
    background-color: #007bff;
    color: white;
    font-weight: bold;
}

.calendar_day.in_range {
    background-color: #e3f2fd;
    color: #1976d2;
}

.calendar_day.hover_range {
    background-color: #f5f5f5;
    color: #666;
}

.calendar_day.in_range:not(.selected) {
    position: relative;
}

.calendar_day.in_range:not(.selected):before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e3f2fd;
    z-index: -1;
}

.calendar_day.hover_range:not(.selected):before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f5f5f5;
    z-index: -1;
}

/* 選択された日付は常に青色を保持 */
.calendar_day.selected.hover_range {
    background-color: #007bff !important;
    color: white !important;
}

.calendar_day.selected.in_range {
    background-color: #007bff !important;
    color: white !important;
}

.calendar_day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.calendar_day.disabled:hover {
    background-color: transparent;
}

.calendar_day.empty {
    background-color: transparent;
    border: none;
    cursor: default;
}

.calendar_day.empty:hover {
    background-color: transparent;
}

.calendar_footer {
    display: none; /* フッターエリアを非表示 */
}

/* モバイル対応 */
@media (max-width: 768px) {
    .range_calendar {
        position: absolute;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: none;
        max-height: 80vh;
        overflow-y: auto;
        min-width: auto;
    }
    
    .calendar_body {
        flex-direction: column;
        gap: 10px;
    }
    
    .calendar_month {
        min-width: auto;
    }
    
    .calendar_day {
        padding: 12px 5px;
        font-size: 16px;
    }
    
    .calendar_table th {
        padding: 12px 5px;
        font-size: 16px;
    }

    .calendar_month:last-child {
        display: none;
    }
}

/* モダンな検索フォームのスタイル */
.search-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.search-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 0;
    padding: 20px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: #495057;
    position: relative;
    border: none;
    border-bottom: 1px solid #dee2e6;
}

.search-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(3px);
    border-radius: 0;
}

.search-header {
    text-align: center;
    position: relative;
    z-index: 1;
}

.search-icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
    opacity: 0.7;
    color: #6c757d;
}

.search-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #495057;
	padding: 0;
}

.search-subtitle {
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 0;
    font-weight: 400;
    color: #6c757d;
}

.search-fields {
    position: relative;
    z-index: 1;
}

.search-field-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-end;
    position: relative;
}

.search-field:first-child {
    position: relative;
}



.search-field:first-child {
    z-index: 10;
}

.search-field:nth-child(2) {
	z-index: 9;
}

.search-field:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #adb5bd;
}

.field-label {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #495057;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.field-icon {
    margin-right: 6px;
    font-size: 0.85rem;
    opacity: 0.7;
    color: #6c757d;
}

.field-input-wrapper {
    position: relative;
    z-index: 10;
}

.field-input,
.field-select {
    width: 100%;
    padding: 0px 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background: white;
    color: #495057;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-weight: 500;
    position: relative;
    z-index: 10;
}

.field-input:focus,
.field-select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.15);
}

.field-input::placeholder {
    color: #adb5bd;
    opacity: 0.8;
    font-weight: 400;
}

.search-action {
    text-align: center;
    flex-basis: 100%;
}

.search-button {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.3);
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
}

.search-button:active {
    transform: translateY(0);
}

/* 子供選択エリアのスタイル */
.child_selector {
    margin-top: 12px;
    padding: 12px;
    background: rgba(248, 249, 250, 0.9);
    border-radius: 4px;
    border: 1px solid #e9ecef;
}

.child_selector label {
    color: #495057;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
    font-size: 0.8rem;
}

.select_block {
    margin-bottom: 8px;
}

.head_label {
    color: #6c757d;
    font-size: 0.75rem;
    margin-bottom: 4px;
    display: block;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .search-card {
        padding: 20px 15px;
    }
    
    .search-field-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-field {
        min-width: auto;
        width: 100%;
    }
    
    .search-title {
        font-size: 1.1rem;
    }
    
    .search-button {
        padding: 12px 30px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .search-card {
        padding: 15px 10px;
    }
    
    .search-field {
        padding: 12px 15px;
    }
    
    .field-label {
        font-size: 0.75rem;
    }
    
    .field-input,
    .field-select {
        font-size: 0.9rem;
        padding: 10px 12px;
    }
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-card {
    animation: fadeInUp 0.4s ease-out;
}

.search-field {
    animation: fadeInUp 0.4s ease-out;
    animation-fill-mode: both;
}

.search-field:nth-child(1) { animation-delay: 0.1s; }
.search-field:nth-child(2) { animation-delay: 0.15s; }
.search-field:nth-child(3) { animation-delay: 0.2s; }
.search-field:nth-child(4) { animation-delay: 0.25s; }

#guest_input {
    cursor: pointer;
}

/* Guest Selector Panel */
.guest-selector-panel {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 320px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    padding: 15px;
}

.guest-selector-panel .panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.guest-selector-panel .panel-header span {
    font-weight: bold;
    color: #333;
}

.guest-selector-panel .close-panel-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #888;
    padding: 0;
    line-height: 1;
}

.guest-selector-panel hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 15px 0;
}

.guest-selector-panel .guest-row,
.guest-selector-panel .guest-row-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.guest-selector-panel .guest-label {
    font-weight: bold;
    font-size: 1.1em;
}

.guest-selector-panel .guest-label-total {
    font-size: 0.9em;
    color: #555;
}

.guest-selector-panel .guest-label-child {
    padding-left: 15px;
    font-size: 1em;
}

.guest-selector-panel .guest-label-child-detail {
    padding-left: 30px;
    font-size: 0.9em;
    color: #555;
}

.guest-selector-panel .guest-controls {
    display: flex;
    align-items: center;
}

.guest-selector-panel .guest-controls .btn-minus,
.guest-selector-panel .guest-controls .btn-plus {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #007bff;
    background-color: #fff;
    color: #007bff;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    transition: all 0.2s;
}

.guest-selector-panel .guest-controls .btn-minus:hover,
.guest-selector-panel .guest-controls .btn-plus:hover {
    background-color: #007bff;
    color: #fff;
}

.guest-selector-panel .guest-controls .guest-count {
    width: 40px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

.guest-selector-panel .panel-footer {
    text-align: right;
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.guest-selector-panel .confirm-guests-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s;
}

.guest-selector-panel .confirm-guests-btn:hover {
    background: #0056b3;
}

/* 空室カレンダーのモダンなデザイン */
.vacancy_calender {
    position: relative !important;
    min-height: 400px; /* ローディング中でも高さが維持されるように */
    margin-top: 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 24px;
    border: 1px solid #f5f5f5;
}

.vacancy_calender table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.vacancy_calender thead {
    background: #f8f9fa;
    color: #495057;
}

.vacancy_calender th {
    padding: 16px 8px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    border: none;
}

.vacancy_calender th.sunday {
    color: #dc3545;
}

.vacancy_calender th.saturday {
    color: #007bff;
}

.vacancy_calender td {
    padding: 12px 8px;
    text-align: center;
    border: 1px solid #f1f3f4;
    position: relative;
    min-height: 80px;
    vertical-align: top;
}

/* .vacancy_calender td:hover {
    background-color: #f8f9fa;
    transform: scale(1.02);
} */

.vacancy_calender td.sunday {
    background-color: #fff8f8;
}

.vacancy_calender td.saturday {
    background-color: #f8fbff;
}

.vacancy_calender .month_selecter_container {
    padding: 0;
    border: none;
}

.vacancy_calender .month_selecter {
    background: #6c757d;
    color: white;
    padding: 16px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vacancy_calender .month_selecter a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-block;
    margin: 0 10px;
}

/* 空室状況の表示 */
.vacancy_calender td a {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    min-width: 40px;
}

/* 空室あり（○） */
.vacancy_calender td a:not([href*="室"]) {
    background: #3880cc;
    color: white;
}

/* 残り少ない（○室） */
.vacancy_calender td a[href*="室"] {
    background: #fd7e14;
    color: white;
}

/* 満室（×） */
.vacancy_calender td:not(:has(a)) {
    color: #6c757d;
    font-weight: 600;
    font-size: 16px;
}

/* 今日の日付のハイライト */
.vacancy_calender td.today {
    background: #e3f2fd;
    border: 2px solid #2196f3;
}

.vacancy_calender td.today .date {
    color: #1976d2;
}

.vacancy_calender td.today .price {
    color: #d32f2f;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .vacancy_calender {
        padding: 0;
        margin-top: 20px;
    }
    
    .vacancy_calender th,
    .vacancy_calender td {
        padding: 8px 4px;
        font-size: 12px;
    }
    
    .vacancy_calender .month_selecter {
        padding: 12px;
        font-size: 14px;
    }
    
    .vacancy_calender .date {
        font-size: 12px;
    }
    
    .vacancy_calender .price {
        font-size: 10px;
    }
    
    .vacancy_calender td a {
        padding: 3px 6px;
        font-size: 10px;
        min-width: 30px;
    }
}

/* カレンダーのアニメーション */
.vacancy_calender {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ホバー効果を完全に廃止 */
/* .vacancy_calender .month_selecter a:hover {
    background: rgba(255, 255, 255, 0.2);
} */

.vacancy_calender .date {
    font-weight: 600;
    font-size: 14px;
    color: #2d3748;
    margin-bottom: 4px;
}

.vacancy_calender .date_month {
    color: #a0aec0;
    font-size: 12px;
}

.vacancy_calender .price {
    font-weight: 700;
    font-size: 12px;
    color: #dc3545;
    margin-top: 4px;
}

/* 空室状況の表示 */

/* カレンダーローディング */
.vacancy_calender {
    position: relative !important;
    min-height: 400px; /* ローディング中でも高さが維持されるように */
}

.rw-loader-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.vacancy_calender.is-loading .rw-loader-container {
    display: flex;
}

.rw-loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}