@charset "utf-8";
/* CSS Document */

/* base */
/* ---------------- ---------------- ---------------- */

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	font-family: "BIZ UDPGothic","Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-weight: 400;
    transition: transform .2s;
	margin: 0;
}
html {
	color: #000;
    background: #fff;
}
body {
    line-height: 1.5;
    line-height: 1.7;
    font-size: 16px;
}
a {
	text-decoration:none;
}
a:hover {
	text-decoration:none;
	opacity:0.8;
}
img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* フォーム */
/* ---------------- ---------------- ---------------- */
.open_search_box {
	width:100%;
	position:relative;
	padding: 1.8em 0 2em;
	margin-bottom:2em;
}
#open_search {
	margin:auto;
	position:absolute;
	top:0;
	left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	min-width:260px;
}
.form_box {
}
.form_box select {
	color: black;
}
/* 白背景のフォーム */
.top_form {
	padding:2em 3em 1em;
	width: 100%;
}
.top_form dl, .dsn_form dl {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.top_form dt, .dsn_form dt {
	width:20%;
	margin-bottom:0.5em;
	padding-top:0.3em;
}
.top_form dd, .dsn_form dd {
	width:80%;
	margin-bottom:0.8em;
}
.top_form .SumoSelect{
	vertical-align: middle;
}
/* オレンジ背景のフォーム */
.dsn_form {
	background:#FEFBEA;
	padding:3em 3em 2em 3em;
	border-radius: 1em;
	border:solid 1px #E6E2D4;
	display:none;
	transition: transform .4s;
}
.form_box input,textarea {
	border: 1px solid #E6E2D6;
	border-radius: 0.5em;
}
.form_box input[type='text'], textarea {
	background:#fff;
}
.form_box input {
  padding: 0.5em 1em;  
}
.form_box input[type='text'] {
	padding: 0.7em 1em;  
}
/* ラジオ（丸型）チェックボックス（チェック型） */
.radio-label, .checkbox-label {
	position: relative;
	padding-left: 1.25em;
	margin-right: 1em;
}
.radio-label::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 16px;
	height: 16px;
	border: 1px solid #E6E2D6;
	border-radius: 50%;
	background: #fff;
}
.radio-label:hover::before, .checkbox-label:hover::before {
	border: 1px solid #F27614;
}
input.radio:checked + label.radio-label::after {
	content: "";
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 16px;
	height: 16px;
	border: 4px solid #F27614;
	border-radius: 50%;
}
.checkbox-label::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 16px;
	height: 16px;
	border: 1px solid #E6E2D6;
	border-radius: 2px;
	background: #fff;
}
.checkbox:checked + .checkbox-label::after {
	content: "";
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 11px;
	height: 11px;
	border-radius: 2px;
	background-color: #F27614;
	top: 3px;
	left: 2px;
}
.form_box select {
	border: 1px solid #ddd;
	padding: 0.5em 3em 0.5em 1em;
	border-radius: 0.5em;
	background: #fff;
	background-image:url(../img/guest/form/select_arrow.svg);
    background-repeat: no-repeat;
    background-size: 24px auto;
    background-position: right 12px center;
}
.form_box textarea {
	margin: 10px 0 0;
	padding: 0.5em 1em; 
	width: 100%;
	height: 8em;
}
.single_txt_wrap{
    display:inline-block;
    position: relative;
	margin-bottom:0.5em;
}
/* ボタン（input） */
.button {
	text-align: center;
}
.button input {
	background: #F27614;
	padding: 15px 30px;
	color: #fff;
	border: none;
	font-size: 1em;
	filter: drop-shadow(1px 1px 1px rgba(12, 28, 32, 0.3));
}
.button.search input {
	border-radius: 2em;
	width:300px;
	text-align:center;
	padding: 12px 30px;
	font-size: 1.5em;
	letter-spacing:1em;
	text-indent: 1em;
	font-weight:bold;
	background-image: url(../img/guest/search_wt.svg);
	background-repeat: no-repeat;
	background-position: 30px 18px;
	background-size: 1.2em;
}

.button input:hover {
	opacity: 0.7;
	cursor: pointer;
}
/* フォーカス */
.form_box input[type='checkbox']:focus, .form_box input[type='text']:focus, .form_box textarea:focus, select:focus,
.c-form-text:focus {
    outline: 0;
    box-shadow: 0 0 0 1px rgb(245, 118, 21) inset;
}
.form_box select:hover, .form_box textarea:hover, .form_box input[type='text']:hover {
	outline: 0;
	border: 1px solid #F27614;
}

/* ラジオボタン・チェックボックス（ボタン型） */
/* リスト型NGかも
.chk_btn_wrap{
    display:inline-block;
    position: relative;
	margin-bottom:0.5em;
}
.chk_btn_wrap input{
    opacity: 0;
    position: absolute;
    left: 0;
}
.chk_btn_wrap label{
    padding: 1em;
    border-radius: 0.5em;
    background: #fff;
	border: 1px solid #E6E2D6;
    display: inline-block;
    cursor: pointer;
}
.chk_btn_wrap label:hover {
    background: #fff;
	border: 1px solid #F57615;
}
.chk_btn_wrap input:checked + label{
    background: #FEF3BD;
	border: 1px solid #F57615;
    color: #F57615;
}*/

.name_fm_btn {
}
.name_fm_btn label {
    display:inline-block;
    position: relative;
	margin-bottom:0.5em;
}
.name_fm_btn label{
    padding: 1em;
    border-radius: 0.5em;
    background: #fff;
	border: 1px solid #E6E2D6;
    display: inline-block;
    cursor: pointer;
}
.name_fm_btn label:hover {
    background: #fff;
	border: 1px solid #F57615;
}
.name_fm_btn input[type='checkbox'] {
    opacity: 0;
    position: absolute;
    left: 0;
}

.name_fm_btn input:checked + label{
    background: #FEF3BD;
	border: 1px solid #F57615;
    color: #F57615;
}



.chk_btn_wrap input:focus + label{
    /*box-shadow: 0 0 4px #af975e;*/
}
.form_box input[disabled], select[disabled], textarea[disabled]{
	background-color:#EFEFEF;
	color:#999;
	cursor: not-allowed;
}
.in_block {
	display:inline-block;
}

/*ボタン（リンク）*/
/* ---------------- ---------------- ---------------- */
a.orange {
	color:#F27614
}
a.bold {
	font-weight:bold;
}
/*白　普通*/
.wh_btn {
	display: inline-block;
	width:auto;
	background: #fff;
	padding: 0.5em 1em;
	color: #F27614;
	border-radius: 3.75em;
	border: solid 2px #F27614;
	font-size: 1em;
	filter: drop-shadow(1px 1px 1px rgba(12, 28, 32, 0.3));
	cursor: pointer;
}
.wh_btn:hover {
	opacity:1.0;
	background: #FEF3BD;
}
/*白　大*/
.wh_btn.big {
	border-radius: 3.75em;
	width:300px;
	text-align:center;
	padding: 0.5em 1em;
	font-size: 1.5em;
	font-weight:bold;
}
/*白　中*/
.wh_btn.mdl {
	border-radius: 3.75em;
	width:270px;
	text-align:center;
	padding: 0.5em 1em;
	font-size: 1.1em;
	font-weight:bold;
}
/*白　アイコン*/
.wh_btn.icon {
	position: relative;
	line-height: 20px;
	text-align:center;
	font-weight:bold;
}
.wh_btn.icon.be {
	padding: 0.8em 2em 0.8em 3em;/*前アイコン*/
}
.wh_btn.icon.af {
	padding: 0.8em 3em 0.8em 2em;/*後ろアイコン*/
}
.wh_btn.icon::before {
	content: "";
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	width: 14px;
	height: 14px;
	transition: background-color 1s;
	background-size: contain;
	background-repeat:no-repeat;
}
.wh_btn.icon.be::before {
	left:1.5em;
}
.wh_btn.icon.af::before {
	right:1.5em;
}
.wh_btn.icon.be.above::before,
.wh_btn.icon.af.above::before,
.wh_btn.icon.af.under.active::before {
	background-image:url(../img/guest/arrow_above.svg);
	top: 3px;
}
.wh_btn.icon.be.under::before,
.wh_btn.icon.af.under::before {
	background-image:url(../img/guest/arrow_under.svg);
	top: 5px;
}
.wh_btn.icon.be.right::before,
.wh_btn.icon.af.right::before {
	background-image:url(../img/guest/arrow_above.svg);
	transform: rotate(90deg);
	top: 0px;
}
.wh_btn.icon.be.left::before,
.wh_btn.icon.af.left::before {
	background-image:url(../img/guest/arrow_under.svg);
	transform: rotate(90deg);
	top: 0px;
}
.wh_btn.icon.window::before {
	background-image:url(../img/guest/icon_win_2.svg);
	top: 0px;
	width:16px;
	height:16px;
}
.wh_btn.icon.pdf::before {
	background-image:url(../img/guest/icon_pdf_org.svg);
	top: 0px;
	width:16px;
	height:16px;
}

/*丸矢印付*/
.and_link a {
	position: relative;
	line-height: 20px;
	display:block;
	width: fit-content;
}
.and_link a::before {
	content: "";
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #F27614;
	transition: background-color 1s;
}
.and_link a::after {
	content: "";
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	border-radius: 1px;
}
/*丸矢印付　後ろ*/
.and_link.af a {
	padding-right: 35px;
} 
.and_link.af a::before {
	right: 3px;
}
.and_link.af a::after {
	
}
.and_link.af.right a::after { /* くの字　右 */
	transform: rotate(45deg);
	right: 11px;
}
.and_link.af.under a::after { /* くの字　下 */
	transform: rotate(135deg);
	right: 10px;
}
.and_link.af.above a::after { /* くの字　上 */
	transform: rotate(-45deg);
	right: 10px;
	top:1px;
}
/*PDFマーク　後ろ*/
.and_pdf a {
	position: relative;
	line-height: 20px;
	display:inline-block;
	width: fit-content;
	padding-right: 35px;
}
.and_pdf a::after {
	content: "";
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 3px;
	width: 20px;
	height: 20px;
	transition: background-color 1s;
	background-image:url(../img/guest/icon_pdf_red.svg);
	background-repeat:no-repeat;
	background-size: contain;
}

/*丸矢印付　前*/
.and_link.be a {
	padding-left: 30px;
} 
.and_link.be a::before { 
	left: 2px;
}
.and_link.be a::after {
	left: 9px;
	top:-1px;
}
.and_link.be.left a::after { /* くの字　左 */
	transform: rotate(-135deg);
	left: 10px;
}
.and_link.be.right a::after { /* くの字　右 */
	transform: rotate(45deg);
}
.and_link.be.under a::after { /* くの字　下 */
	transform: rotate(135deg);
}
.and_link.be.above a::after { /* くの字　上 */
	transform: rotate(-45deg);
	top:1px;
}
.wh_btn_curcle_right {
	width:30px;
	height:30px;
	padding:0;
	overflow:hidden;
	line-height:0;
	border-radius: 50%;
	border:solid 2px #F27614;
	background:#fff;
	filter: drop-shadow(1px 1px 1px rgba(12, 28, 32, 0.3));
	position: relative;
	display: grid;
	place-content: center;
	cursor: pointer;
}
/*a.wh_btn_curcle_right span {
	position: relative;
	visibility:hidden;
}*/
.wh_btn_curcle_right::after {
	content: "";
	width: 8px;
	height: 8px;
	border-top: 2px solid #F27614;
	border-right: 2px solid #F27614;
	border-radius: 1px;
	transform: rotate(45deg);
	
}

/* ページャー */
/* ---------------- ---------------- ---------------- */
.pg_num {
	margin:auto;
	width:100%;
	display: grid;
	gap: 5px 5px;
	justify-content: center;
}
.pg_num a, .pg_num span {
	display: grid;
	grid-auto-flow: column;
	place-items: center;
	margin:0;
	line-height:1;
	border-radius: 8px;
	transition: background-color 0.5s;
	filter: drop-shadow(1px 1px 1px rgba(12, 28, 32, 0.3));
	color:#000;
	font-weight:bold;
	text-decoration:none;
	background-color:#fff;
	padding-left:0.2em;
	padding-right:0.2em;
}
.pg_num a.first_page, .pg_num a.last_page {
    font-size: 0;
    color: transparent;
    width: 50px;
    display: inline-block;
    position: relative;
}
.pg_num a.first_page::before {
	content: "";
	background-image:url(../img/guest/page_num_fist.svg);
	background-size: contain;
	background-repeat:no-repeat;
	width:45px;
	height:45px;
	position:absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
}
.pg_num a.last_page::before {
	content: "";
	background-image:url(../img/guest/page_num_last.svg);
	background-size: contain;
	background-repeat:no-repeat;
	width:45px;
	height:45px;
	position:absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
}
.pg_num span {
	opacity:0.5;
	border: solid 1px #F27614;
	background-color:#fff;
	color:#000;
}
.pg_num span.cur {
	opacity:1.0;
	background-color:#F27614;
	color:#fff;
	font-weight:bold;
}
.pg_num a[title^="previous page"], .pg_num a[title^="next page"] {
	border: solid 1px #F27614;
}


/*テーブルデザイン*/
/* ---------------- ---------------- ---------------- */
/*基本*/
table{
	border-collapse:collapse;
	border:none;
	border-spacing:0;
}
.table1, .table2, .table3, .table4 {
	width:100%;
	border-top:solid 1px #E6E2D4;
	margin-bottom:2em;
}


.table1 th {
	width:32%;
	background:#F2F2F2;
	padding:12px 20px;
	text-align:left;
	font-weight:bold;
	border-bottom:solid 1px #E6E2D4;
}
.table1 td {
	width:68%;
	padding:12px 20px;
	text-align:left;
	border-bottom:solid 1px #E6E2D4;
}
.table1 thead td {
	width:32%;
	background:#F2F2F2;
}
.table1.list_pref a {
	display:inline-block;
	padding-right:0.5em;
}
.table2 th {
	width:25%;
	background:#F2F2F2;
	padding:12px 20px;
	text-align:center;
	font-weight:bold;
	border-bottom:solid 1px #E6E2D4;
}
.table2 th:not(:first-child){
	border-left:solid 1px #E6E2D4;
}
.table2 td {
	width:25%;
	padding:12px 20px;
	text-align:center;
	border-bottom:solid 1px #E6E2D4;
}
.table2 td:not(:first-child){
	border-left:solid 1px #E6E2D4;
}




.detail_hidden,
.rent_hidden {
	color: #666;
	font-size: 0.9em;
}
.mb80 {
	margin-bottom:80px;
}
.mb40 {
	margin-bottom:40px;
}
.mb30 {
	margin-bottom:30px;
}
.mb25 {
	margin-bottom:25px;
}
.mb10 {
	margin-bottom:10px;
}
.mb5 {
	margin-bottom:5px;
}
.txt_right {
	text-align:right;
}

/*ページレイアウト*/
/* ---------------- ---------------- ---------------- */
/*基本*/

main {
	width:100%;
	margin:auto;
}

.page_bg1 {
	width:100%;
	background-image:url(../img/guest/bg01.png);
	background-repeat:no-repeat;
	background-position:center bottom;
	background-size: cover;
	background-color:#FBFFEE;
}
.page_bg2 {
	width:100%;
	background-image:url(../img/guest/bg02.png);
	background-repeat:no-repeat;
	background-position:center top;
	background-size: cover;
	background-color:#FBFFEE;
}
.page_bg3 {
	width:100%;
	background-image:url(../img/guest/bg03.png);
	background-repeat:repeat-x;
	background-position:center top;
	background-size: auto;
	background-color:#fff;
}
.page_bg3.ppd_b80 {
	padding-bottom:80px;
}
.page_bgW {
	width:100%;
	background:#fff;
}
.page_bgOR {
	width:100%;
	background:#FEF3BD;
}
section {
	width:100%;
	margin:auto;
	position:relative;
	padding-left:1.5em;
	padding-right:1.5em;
}
section.w1000 {
	max-width:1048px;
}
section.w1100 {
	max-width:1148px;
}
.pg_R {
	border-radius: 1em;
	border:solid 1px #E6E2D4;
	background:#fff;
	padding:2em;
	width:100%;
}

/*リストデザイン*/
/* オレンジ丸 */
ul.list01 {
	position:relative;
	display:block;
	margin-bottom:1em;
	margin-left:2em;
}
ul.list01.mb_em2 {
	margin-bottom:2em;
}
ul.list01 > li {
	position:relative;
	display:block;
	padding-left:1em;
}
ul.list01 > li::before {
	content:"";
	display:inline-block;
	position:absolute;
	width:0.5em;
	height:0.5em;
	top:0.6em;
	left:-0.3em;
	margin-right:0.5em;
	border-radius: 50%;
	background:#F79F5B;
}

ul.list02 {
	position:relative;
	display:block;
	margin-bottom:1em;
	margin-left:0.5em;
}
ul.list02.mb_em2 {
	margin-bottom:2em;
}
ul.list02 > li {
	position:relative;
	display:block;
	padding-left:1em;
	margin-bottom:1.5em;
}
ul.list02 > li::before {
	content:"";
	display:inline-block;
	position:absolute;
	width:1em;
	height:1em;
	top:0.35em;
	left:-0.5em;
	margin-right:0.5em;
	border-radius: 50%;
	background:#F79F5B;
}
ul.list_link {
	margin-top:1em;
}
ul.list_link.mt0 {
	margin-top:0;
	margin-bottom:0.5em;
}
ul.list_link > li {
	text-indent: -1.5em;
	padding-left: 1.5em;
}
.font_s {
	font-size:85%;
}
/*タブ切り替え*/
/*共通*/
.tab_box {
	display: flex;
	flex-wrap: wrap;
	margin:auto;
	max-width:770px;
}
.tab a {
	font-weight:bold;
	color:#fff;
	text-align:center;
	background-color: #F27614;
	cursor: pointer;
	border-radius: 1em 1em 0 0 ;
	filter: drop-shadow(1px -2px 1px rgba(12, 28, 32, 0.1));
	position:relative;
	display:block;
	text-decoration:none;
}

.tab a br {
	display:none;
}
.tab a.active {
	background-color: #fff;
	color:#F27614;
}
.tab a::before {
	content:"";
	display:inline-block;
	width:60px;
	height:30px;
	position:absolute;
	left:0;
	top: 50%;
    transform: translateY(-50%);
	background-image:url(../img/guest/search_wt.svg);
	background-repeat:no-repeat;
	background-position:center center;
	background-size: contain;
}
.tab a.active::before {
	background-image:url(../img/guest/search_og.svg);
}

.tab.room a::before {
	background-image:url(../img/guest/room_off.svg)
}
.tab.room a.active::before {
	background-image:url(../img/guest/room_on.svg)
}
.tab.apart a::before {
	background-image:url(../img/guest/apart_off.svg)
}
.tab.apart a.active::before {
	background-image:url(../img/guest/apart_on.svg)
}


.content {
	display: block;
}
/*.content.show {
	display: block;
}
*/
.top_content {
    display: none;
}
.top_content.show {
    display: block;
}

/*フッター*/
/*共通*/
footer {
	width:100%;
	position:relative;
}
footer .ft_box {
	width:100%;
	background:#561F05;
}
footer ul {
	width:100%;
	margin:auto;
	display: flex;
	justify-content: center;
}
footer ul li {
	font-size:14px;
	line-height:20px;
}
footer ul li a {
	color:#fff !important;
}
footer p {
	font-size:10px;
	line-height:20px;
	text-align:center;
}

.pagetop {
	position: fixed;
	display:block;
	background-repeat:no-repeat;
	background-size: contain;
	bottom: 0;
	cursor: pointer;
	transition: transform .3s;
	opacity: 0;
	visibility: hidden;
}
.pagetop.active{
	opacity: 1;
	visibility: visible;
}
.pagetop.absolute{
	position: absolute;
	bottom: auto;
}

/* モーダルウィンドウ 本体 + 外側の背景 */
.modal-container{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,20%);
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: transform .3s;
	box-sizing: border-box;
	z-index:11;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
	opacity: 1;
	visibility: visible;
}
/*モーダル枠の指定*/
.modal-body{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 1000px;
	width: 96%;
}
/*モーダルを閉じるボタンの指定*/
.modal-close{
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: -40px;
	right: 0px;
	width: 40px;
	height: 40px;
	font-size: 40px;
	color: #fff;
	cursor: pointer;
}
/*モーダル内のコンテンツの指定*/
.modal-content{
	background: #fff;
	text-align: left;
	border-radius: 1em;
}


/* TOP下　新着情報、過去の新着情報ページ */
.newinfo ul {
	width:100%;
	margin-bottom:2.5em;
}
.newinfo ul li {
	width:100%;
	border-bottom:solid 1px #E6E2D4;
	padding:1em 0;
}
.newinfo ul li a {
	display:block;
	text-decoration:none;
}
.newinfo ul li a span {
	color:#808080;
	font-size:12px;
	font-weight:bold;
}
.newinfo ul li a p {
	text-decoration:underline;
}
.newinfo > div {
	margin: 0 auto 3em;
	width: fit-content;
}
.news_detail_date {
	font-size:90%;
	color: #808080;
}

.SumoSelect > .CaptionCont > span:first-child {
	min-height:27.2px;
}
/*確認サイトであることの警告
-----------------------------------*/
#chk_warning{
	position:fixed;
	left: 50%;
  	transform: translateX(-50%);
	top:0;
	padding:2px 10px 2px 28px;
	border:3px solid #000;
	background-color:#FFEC01;
	background-image:url(../img/icons/exclamation3_b.svg);
	background-repeat:no-repeat;
	background-position:6px center;
	background-size:18px auto;
	font-weight:bold;
	font-size:85%;
	z-index: 11;	
}

@media screen and (min-width: 769px) {
	/*PC*/
	br.sp {
		display:none;
	}
	br.pc {
		display:block;
	}
	/*見出し*/
	/* ---------------- ---------------- ---------------- */
	/*基本*/
	h2 {
		line-height:1.3;
	}
	h3 {
		font-size:25px;
		font-weight:bold;
		line-height:36px;
		border-bottom: solid 4px #E6E2D4;
		position: relative;
		width:100%;
		padding-top:10px;
		padding-bottom:10px;
	}
	h3:after {
		position: absolute;
		content: " ";
		display: block;
		border-bottom: solid 4px #F37615;
		bottom: -4px;
		width: 100px;
	}
	/* 見出し内のその他の指定 */
	.caition {
		display:inline-block;
		font-size:12px;
		vertical-align: top;
		padding:0 0.1em;
	}
	.caition_txt {
		font-size:12px;
		display:block;
		position:absolute;
		right:0;
		top: 50%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
	}
	.caition_txt2 {
		font-size:12px;
		display:block;
		top: -2em;
		position: relative;
	}
	
	h4 {
		position:relative;
		display:block;
		font-size:20px;
		line-height:30px;
		padding: 5px 10px 5px 5px;
		text-align:left;
		font-weight:bold;
		margin-bottom:10px;
	}
	h4::before {
		content:"";
		display:inline-block;
		width:20px;
		height:20px;
		margin-right:10px;
		background-image:url(../img/guest/list_house.svg);
		background-size: contain;
		background-repeat:no-repeat;
		background-position:center;
	}
	h5 {
		position:relative;
		display:block;
		font-size:16px;
		line-height:20px;
		padding: 5px 10px 5px 5px;
		text-align:left;
		font-weight:bold;
		margin-bottom:10px;
		font-weight:bold;
	}
	h5 a {
		font-weight:bold;
	}
	h5::before {
		content:"";
		display:inline-block;
		width:15px;
		height:15px;
		margin-right:10px;
		border-radius: 50%;
		background:#F79F5B;
		
	}
	
	/* フォーム */
	.fm_s_wide > select {
		min-width:165px;
	}
	.fm_s_bween {
		display:inline-block;
		width:70px;
		text-align:center;
	}
	
	/*タブ切り替え*/
	/* ---------------- ---------------- ---------------- */
	.tab_box {
		width:100%;
	}	
	.tab {
		width: 47%;
	}
	.tab.apart {
		margin-right:6%;
	}
	.tab a {
		font-size:24px;
		line-height:30px;
		width: 100%;
		padding: 25px 10px;
		/*margin:0 25px;*/
	}
	/*
	.tab:hover a {
		background-color: #fff;
	}
	.tab:hover a, .tab:hover a.active {
		color:#F27614;
	}
	.tab:hover a::before {
		background-image:url(../img/guest/search_og.svg);
	}
	
	.tab.room:hover a::before {
		background-image:url(../img/guest/room_on.svg);
	}
	.tab.apart:hover a::before {
		background-image:url(../img/guest/apart_on.svg);
	}
	.tab.room:hover a.active::before {
		background-image:url(../img/guest/room_on.svg);
	}
	.tab.apart:hover a.active::before {
		background-image:url(../img/guest/apart_on.svg);
	}*/
	/*フッター*/
	footer .ft_box {
		padding:30px 1em;
	}	
	footer ul li {
		padding-left:1%;
		padding-right:1%;
	}	
	footer p {
		padding:30px;
	}	
	.pagetop {
		width:60px;
		height:60px;
		background-image:url(../img/guest/pagetop.svg);
		right: 1em;
	}
	.pagetop:hover {
		background-image:url(../img/guest/pagetop2.svg);
	}
	.pagetop.absolute{
		top: -80px;
	}

	/* ページャー */
	/* ---------------- ---------------- ---------------- */
	.pg_num {
		grid-template-columns: repeat(auto-fit, minmax(min-content, 50px));
	}
	.pg_num a, .pg_num span {
		width:auto;
		height:50px;
		min-width: 50px;
	}
	.pg_num a:hover {
		background-color:#FEF3BD;
		opacity:1.0;
		border: solid 1px #F27614;
	}
	
	
	
	/* モーダルウィンドウ 本体 + 外側の背景 */
	.modal-container{
		padding: 40px 20px;
	}
	/*モーダル内のコンテンツの指定*/
	.modal-content{
		padding: 1em 1em 3em;
	}
	
	
	/* 新着情報 */
	.newinfo ul li a:hover p {
		text-decoration:none;
	}
	
	/* 白ボタン */
	/*.wh_btn.icon.window,
	.wh_btn.icon.pdf{
		min-width:360px;
	}*/
	
	.wh_btn.icon span {
		display:inline-block;
		font-weight:bold;
		margin-left:0.5em;
	}
	/*テーブルデザイン*/
	/* ---------------- ---------------- ---------------- */
	/*基本*/
	.table4 {
		table-layout: fixed;
	}
	.table4 th {
		/*width : calc(100% / 6) ;*/
		background:#F2F2F2;
		padding:12px 20px;
		text-align:center;
		font-weight:bold;
		border-bottom:solid 1px #E6E2D4;
	}
	.table4 th:not(:first-child){
		border-left:solid 1px #E6E2D4;
	}
	.table4 td {
		/*width : calc(100% / 6) ;*/
		padding:12px 20px;
		text-align:center;
		border-bottom:solid 1px #E6E2D4;
	}
	.table4 td:not(:first-child){
		border-left:solid 1px #E6E2D4;
	}	
	.table2.w75 ,.table4.w75{
		width:75%;
	}
	.table2.w50 ,.table4.w50 {
		width:50%;
	}
	.table2.w25, .table4.w25 {
		width:25%;
	}	
	.table3 th.white {
		width:16%;
		background:#fff;
		padding:12px 20px;
		text-align:left;
		font-weight:bold;
		border-bottom:solid 1px #E6E2D4;
	}
	.table3 td {
		width:84%;
		padding:0;
		text-align:left;
		border-bottom:solid 1px #E6E2D4;
	}
	.table3 td ul {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
	}
	.table3 td ul:not(:last-child) li {
		border-bottom:solid 1px #E6E2D4;
	}
	.table3 td ul li:first-child {
		padding:12px 20px;
		width:30%;
		background:#F2F2F2;
	}
	.table3 td ul li:last-child {
		padding:12px 20px;
		width:70%;
	}
	.table3 td ul li br.sp {
		display:none;
	}

	
	/* 見出しの長さ */
	.w_75p {
		width:75%;
	}
	.w_50p {
		width:50%;
	}
	.w_25p {
		width:25%;
	}

}
@media screen and (max-width: 768px) {
	#debug{display:none;}
	/*確認サイトであることの警告
	-----------------------------------*/
	#chk_warning{
		left: 50%;
  		transform: translateX(-50%);
		top:auto;
		bottom:0;	
		width:max-content;
	}
	/*SP*/	
	br.sp {
		display:block;
	}
	br.pc {
		display:none;
	}
	section {
		padding-left:1em;
		padding-right:1em;
	}
	.pg_R {
		padding:1em 1em 2em;
	}
	
	/*見出し*/
	/* ---------------- ---------------- ---------------- */
	/*基本*/
	h2 {
		line-height:1.3;
	}
	h3 {
		font-size:20px;
		font-weight:bold;
		line-height:30px;
		border-bottom: solid 4px #E6E2D4;
		position: relative;
		width:100%;
		padding-top:16px;
		padding-bottom:10px;
	}
	h3:after {
		position: absolute;
		content: " ";
		display: block;
		border-bottom: solid 4px #F37615;
		bottom: -4px;
		width: 100px;
	}
	/* 見出し内のその他の指定 */
	.caition {
		display:inline-block;
		font-size:12px;
		vertical-align: top;
		padding:0 0.1em;
	}
	.caition_txt {
		font-size:12px;
		display:block;
		position:relative;
		text-align:right;
		line-height:16px;
		width:100%;
	}
	.caition_txt2 {
		font-size:12px;
		display:block;
		line-height:16px;
		width:100%;
		top: -2em;
		position: relative;
	}
	h4 {
		position:relative;
		display:block;
		font-size:16px;
		line-height:30px;
		padding: 5px 10px 5px 5px;
		text-align:left;
		font-weight:bold;
		margin-bottom:10px;
		text-wrap: auto;
	}
	h4::before {
		content:"";
		display:inline-block;
		width:16px;
		height:16px;
		margin-right:10px;
		background-image:url(../img/guest/list_house.svg);
		background-size: contain;
		background-repeat:no-repeat;
		background-position:center;
	}
	h5 {
		position:relative;
		display:block;
		font-size:16px;
		line-height:20px;
		padding: 5px 10px 5px 5px;
		text-align:left;
		font-weight:bold;
		margin-bottom:10px;
		font-weight:bold;
	}
	h5 a {
		font-weight:bold;
	}
	h5::before {
		content:"";
		display:inline-block;
		width:15px;
		height:15px;
		margin-right:10px;
		border-radius: 50%;
		background:#F79F5B;
		
	}
	
	
	/* フォーム */
	/* ---------------- ---------------- ---------------- */

	.top_form {
		padding:2em 1em;
	}
	.dsn_form {
		padding:2em 1em;
	}
	.top_form dl, .dsn_form dl {
		display: block;
	}
	.top_form dt, .dsn_form dt {
		width:100%;
		margin-bottom:0.2em;
	}
	.top_form dd, .dsn_form dd {
		width:100%;
		margin-bottom:1.2em;
	}
	/* フォーム */
	.top_form dd:first-child {
		margin-bottom:1em;
	}
	.fm_s_wide .SumoSelect {
		padding-top:0.2em;
	}
	.fm_s_wide > select {
		min-width:100px;
	}
	.fm_s_bween {
		display:inline-block;
		text-align:center;
	}
	.CaptionCont.SelectBox.SelectBox {
		max-width: calc(100vw - 3em);
	}
	
	/*タブ切り替え*/
	/* ---------------- ---------------- ---------------- */
	.tab_box {
		width:90%;
	}
	.tab {
		width: 47%;
	}
	.tab.apart {
		margin-right:6%;
	}
	.tab a {
		font-size:16px;
		font-size: clamp(12px, 4vw, 16px);
		line-height:20px;
		line-height: clamp(16px, 1.3em, 20px);
		width:100%;
		padding: 10px 10px 10px 20px;
	}
	.tab a::before {
		width:clamp(40px, 8.33vw, 60px);
		height:clamp(20px, 4.6vw, 30px);
	}
	.tab a br {
		display:block;
	}

	/*フッター*/
	footer .ft_box {
		padding:10px 1em;
	}
	footer ul li {
		padding-left:2%;
		padding-right:2%;
	}
	footer ul li.pc {
		display:none;
	}
	footer p {
		padding:10px 10px 18px 10px;
	}
	.pagetop {
		width:40px;
		height:40px;
		background-image:url(../img/guest/pagetop_sp.svg);
		right: 0.5em;
	}
	.pagetop.absolute{
		top: -50px;
	}
	
	
	/*テーブルデザイン*/
	/* ---------------- ---------------- ---------------- */
	/*基本*/
	.table1 th {
		width:100%;
		display:block;
	}
	.table1 td {
		width:100%;
		display:block;
	}
	.table4{
		width:100%!important;
	}
	
	.table4 tr {
		display: block;
		float: left;
	}
	.table4 tr td, 
	.table4 tr th {
		border-left: none;
		display: block;
		text-align:center;
		padding:7px 10px;
		border-bottom:solid 1px #E6E2D4;
	}
	.table4 tr th {
		font-weight:bold;
		background: #F2F2F2;
	}
	.table4 thead {
		display: block;
		float: left;
		width: 50%;
	}
	.table4 thead tr {
		width: 100%;
	}
	.table4 tbody {
		display: block;
		float: left;
		width: 50%;
	}
	.table4 tbody tr {
		width: 100%;
	}
	.table4 tr td + td {
		border-left: none;
	}
	.table3 th.white {
		width:25%;
		background:#fff;
		padding:7px 10px;
		text-align:left;
		font-weight:bold;
		border-bottom:solid 1px #E6E2D4;
	}
	.table3 td {
		width:75%;
		padding:0;
		text-align:left;
		border-bottom:solid 1px #E6E2D4;
	}
	.table3 td ul {
		display: block;
		width: 100%;
	}
	.table3 td ul li{
		border-bottom:solid 1px #E6E2D4;
	}
	.table3 td ul:last-child li:last-child{
		border-bottom:none;
	}
	.table3 td ul li:first-child {
		padding:7px 10px;
		width:100%;
		background:#F2F2F2;
	}
	.table3 td ul li:last-child {
		padding:7px 10px;
		width:100%;
	}
	.table3 td ul li br.sp {
		display:block;
	}

	
	
	
	
	
	

	/* ページャー */
	/* ---------------- ---------------- ---------------- */
	.pg_num {
		grid-template-columns: repeat(auto-fit, minmax(min-content, 40px));
	}
	.pg_num a, .pg_num span {
		width:auto;
		height:40px;
		min-width: 40px;
	}
	.pg_num a.first_page::before {
		width:40px;
		height:40px;
	}
	.pg_num a.last_page::before {
		width:40px;
		height:40px;
	}
	.pg_num a.first_page, .pg_num a.last_page {
		width:40px;
		height:40px;
	}
	
	
	/* モーダルウィンドウ 本体 + 外側の背景 */
	.modal-container{
		padding: 40px 0.5em 40px 0.3em;
	}
	/*モーダル内のコンテンツの指定*/
	.modal-content{
		padding: 1em 0.5em;
	}

	select#rent_min,
	select#rent_max,
	select#area_min,
	select#area_max {
		margin-bottom:0.2em;
	}
	
	/* 白ボタン */
	.sp_center {
		text-align:center;
	}
	.wh_btn.icon span {
		display:block;
		font-weight:bold;
		margin-left:0;
	}


}
@media screen and (max-width: 400px) {
	#open_search {
		min-width:220px;
	}
	.button.search input {
		width:100%;
		max-width:300px;
	}
}