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

/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}

ul{
	list-style:none;
	margin:0;
	padding:0;
}

body{
	overflow-x:hidden;
	font-size:16px;
	font-family:serif;
	background-image:#EEEEEE;
	-webkit-text-size-adjust:100%;

}

img{
	margin:0;
	padding:0;
	vertical-align:bottom;
}

.main{
	clear:left;
	width:100%;
	height:4000px;
}

@import url('https://fonts.googleapis.com/css2?family=Caveat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sacramento&display=swap');


/*------------------------------------------------------------
	header
------------------------------------------------------------*/
#header{
	clear:left;
	display:none;
	margin:0;
	padding:0;
	width:100%;
	height:110px;
	position: fixed;
	background:#464f93;
	background-color:rgba(70,79,147,0.9);
	z-index:1;
}

#header #logo{
	float:left;
	margin:0;
	margin-top:20px;
	margin-left:2%;
	padding:0;
	width:auto;
}

#header #menu{
	float:right;
	margin-right:5%;
	width:auto;
}

#header #menu li{
	float:left;
	display:block;
	width:auto;
	height:110px;
}

#header #menu li a{
	clear:left;
    display:block;
    overflow:hidden;
	margin:0 auto;
	margin-bottom:10px;
	padding:0 30px;
	width:auto;
	height:110px;
	line-height:110px;
	text-align:center;
	text-decoration:none;
	color:#FFF;
	font-size:15px;
	font-family:serif;
	letter-spacing:1px;
	-webkit-transition:0.4s;
	transition:0.4s;
}

#header #menu li a:hover{
	background:#32386a;
}

#header #menu .btn01 a{
	clear:left;
    display:block;
    overflow:hidden;
	margin:0 auto;
	margin-bottom:10px;
	padding:0 30px;
	width:auto;
	height:110px;
	line-height:110px;
	text-align:center;
	text-decoration:none;
	color:#FFF;
	font-size:15px;
	font-family:serif;
	letter-spacing:1px;
	background:#5493dc;
	-webkit-transition:0.4s;
	transition:0.4s;
}

#header #menu .btn01 a:hover{
	background:#5493dc;
}

#header #menu span{
	font-size:11px;
	  color:#CCC;
}

/*------------------------------------------------------------
	ハンバーガー
------------------------------------------------------------*/
#h_menu{
	clear:left;
	display:block;
	margin:0;
	padding:0;
	width:100%;
	height:auto;
}

.menu_text{
	display:block;
	position: fixed;
	right:3.5em;
	top:73px;
	color:#000;
	font-size:11px;
	z-index:9999;
}

@keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
@-webkit-keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
#overlay-button {
	display:block;
  position: fixed;
  right: 2em;
  top:30px;
  padding: 26px 11px;
  z-index:9999;
  cursor: pointer;
  user-select: none;
}

#overlay-button span {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color:#000;
  position: relative;
  display: block;
  transition: all .2s ease-in-out;
}
#overlay-button span:before {
  top: -10px;
  visibility: visible;
}
#overlay-button span:after {
  top: 10px;
}
#overlay-button span:before, #overlay-button span:after {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color:#000;
  position: absolute;
  content: "";
  transition: all .2s ease-in-out;
}
#overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
  background: #000;
}

#h_menu input[type=checkbox] {
  display:none;
  
}

#h_menu input[type=checkbox]:checked ~ #overlay {
  visibility: visible; 
}

#h_menu input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
  background: transparent;
  
  
}
#h_menu input[type=checkbox]:checked ~ #overlay-button span:before {
  transform: rotate(45deg) translate(7px, 7px);

}
#h_menu input[type=checkbox]:checked ~ #overlay-button span:after {
  transform: rotate(-45deg) translate(7px, -7px);


}

/*------------------------------------------------------------
	オーバーレイ menu
------------------------------------------------------------*/
#overlay {
	height: 100vh;
	width: 100vw;
	visibility: hidden;
	position: fixed;
	background:#FFF;
	z-index:999;
}
#overlay.active {

}

#overlay #content1{
	clear:left;
	margin:0 auto;
	margin-top:70px;
	width:60%;
	height:auto;
	text-align:center;
}

#overlay #content1 #logo{
	clear:left;
	margin:0 auto;
	margin-bottom:20px;
}

#overlay #content1 p{
	clear:left;
	font-size:15px;
	font-family:serif;
	font-weight:normal;
	text-align:center;
	letter-spacing:1px;
}

#overlay #content1 #tel{
	clear:left;
	margin:0 auto;
	margin-top:10px;
	display:block;
	width:250px;
	text-align:center;
	color:#FFF;
	font-family:serif;
	font-size:22px;
	font-weight:normal;
	background:#486839;
}

#overlay #content2{
	clear:left;
	margin:0 auto;
	padding:30px 0 15px 0;
	width:30%;
	display:flex;
}

#overlay #content2 p{
	flex:1;
	margin:0 30px;
	padding-bottom:0;
	position:relative;
	width:100%;
	height:auto;
}

#overlay #content2 a{
	clear:left;
    display:block;
    overflow:hidden;
	margin:0;
	padding:10px 20px;
	width:100%;
	text-align:center;
	text-decoration:none;
	color:#333;
	font-size:15px;
	font-family:serif;
	font-weight:normal;
	background:#C66;
	letter-spacing:1px;
}

#overlay #content2 a:hover{
	background:#ec9090;
}

#overlay #content3{
	clear:left;
	margin:0 auto;
	width:40%;
	display:flex;
	justify-content: center;
	position:relative;
	border-top:#CCC 1px solid;
}

#overlay #content3 ul{
	float:left;
	margin:0 auto;
	width:45%;
	justify-content: center;
	align-items:center;
}

#overlay #content3 li{
	float:left;
	margin:0;
	padding:0;
	margin-left:-1px;
	display:block;
	width:100%;
	border-collapse:collapse;
}

#overlay #content3 li a{
	clear:left;
    position: relative;
    display:block;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width:100%;
    padding:15px 0 15px 40px;
    color: #313131;
    font-weight:600;
	font-family:serif;

	font-size:15px;
	text-decoration: none;
	letter-spacing:1px;
}

#overlay #content3 li a:before {
    position: absolute;
    bottom: 0px;
    left: 50%;
    content: '';
    width: 100%;
    height: 1px;
    background: rgba(0,0,0,.1);
    transform: translateX(-50%);
}

#overlay #content3 li a:after {
    position: absolute;
    bottom: 0px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #000;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}

#overlay #content3 li a:hover {
    opacity: 0.7;
}

#overlay #content3 li a:hover:after {
    transform: scale(1, 1);
}

/*------------------------------------------------------------
	top_img
------------------------------------------------------------*/
#top_img{
	clear:left;
	width:100%;
	height:auto;
}

#top_img img{
	clear:left;
	width:100%;
	height:300px;
	object-fit:cover;
}

/*------------------------------------------------------------
	top_img
------------------------------------------------------------*/
#viewer{
	clear:left;
	margin:0 auto;
	width:100%;
	height:300px;
	text-align:left;
	overflow:hidden;
	position:relative;
	background:#000;
}

#viewer img{
	margin:0;
	padding:0;
	top:0;
	left:0;
	width:100%;
	height:300px;
	object-fit:cover;
	position:absolute;
}

/*------------------------------------------------------------
	footer 空室検索
------------------------------------------------------------*/
#footer_search{
	clear:left;
	margin:0 auto;
	width:100%;
	height:550px;
	color:#000;
	font-size:16px;
	font-family:serif;
	letter-spacing:0;
	line-height:2.5em;
	background:#EEEEEE;
}

#footer_search section{
	clear:left;
	margin:0 auto;
	padding-top:50px;
	width:90%;
	height:180px;
	text-align:center;
}

#footer_search #title{
	float:none;
	margin-top:0;
	padding:0;
	padding-top:50px;
	display:block;
	width:100%;
	height:50px;
	line-height:80px;
	color:#000;
	font-family:serif;
	font-size:24px;
	text-align:center;
	line-height:0;
	border-top:#000 1px solid;
	border-bottom:#000 1px solid;
}

#footer_search #box1{
	float:none;
	margin-top:30px;
	margin-left:0;
	width:100%;
}

#footer_search #btn{
	float:none;
	margin-top:0;
	margin-left:0;
	width:100%;
	height:auto;
}

#footer_search .btn01{
	float:none;
	margin-top:30px;
	margin-left:0;
	padding:0;
	display:block;
	width:100%;
	height:70px;
	color:#FFF;
	font-size:16px;
	font-family:serif;
	font-weight:900;
	text-decoration:none;
	background:#666;
	letter-spacing:2px;
	border:0;
}

#footer_search .btn02 a{
	float:none;
    display:block;
    overflow:hidden;
	margin-top:10px;
	margin-left:0;
	padding:0;
	width:100%;
	height:70px;
	text-align:center;
	text-decoration:none;
	color:#FFF;
	font-size:16px;
	font-weight:900;
	background:#666;
	line-height:70px;
	letter-spacing:2px;
	-webkit-transition:0.4s;
	transition:0.4s;
}

#footer_search .btn02 a:hover{
	background:#333;
}

/*------------------------------------------------------------
	footer
------------------------------------------------------------*/
#footer{
	clear:left;
	width:100%;
	height:auto;
	background-image: linear-gradient(90deg, #471418, #2f1303);
}

#footer section{
	clear:left;
	margin:0 auto;
	width:85%;
	height:auto;
}

#footer #content1{
	float:none;
	margin:0;
	margin-top:0
	width:100%;
	height:auto;
	text-align:left;
	color:#FFF;
	font-size:16px;
	line-height:2.3em;
	letter-spacing:1px;
}

#footer #content1 #logo{
	clear:left;
	margin:0;
	padding:0;
	padding-top:100px;
	display:block;
	text-align:center;
}

#footer #content1 img{
	clear:left;
	margin-bottom:20px;
}

#footer #content1 .sns{
	float:left;
	margin:0;
	margin-top:20px;
	padding-right:30px;
	display:block;
	width:auto;
	height:50px;
}

#footer #content2{
	float:none;
	margin:0;
	margin-top:100px;
	width:100%;
	height:auto;
}

#footer #content2 ul{
	clear:left;
	display:block;
	margin:0 auto;
	width:100%;
}

#footer #content2 li{
	float:left;
	display:block;
	width:auto;
	height:50px;
}

#footer #content2 li a{
	clear:left;
    display:block;
    overflow:hidden;
	margin:0 auto;
	padding:0 20px;
	width:auto;
	text-align:center;
	text-decoration:none;
	color:#FFF;
	font-size:16px;
	font-weight:bold;
	font-family:serif;
	letter-spacing:0;
	-webkit-transition:0.4s;
	transition:0.4s;
}

#footer #content2 li a:hover{
	color:#333;
	background:#EEEEEE;
}

#footer #content2 .button01 {
  /* スタイル用 */
  display: flex;
  justify-content: center;
  align-items: center;
  margin:0;
  margin-top:10px;
  width: 300px;
  height: 50px;
  border: 1px solid #333;
  border-radius:5px;
  color: #FFF;
  background-color:rgba(255,255,255,0.3);
  /* スタイル用 */

  position: relative;
}

#footer #content2 .button01:before,
#footer #content2 .button01:after {
  position: absolute;
  top: 50%;
  right: 22px;
  height: 1px;
  background: #333;
  content: '';
}

#footer #content2 .button01:before {
  width: 30px;
  transform: translateY(-50%);
}

#footer #content2 .button01:after {
  width: 8px;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}

/*------------------------------------------------------------
	copyright
------------------------------------------------------------*/
#copyright{
	clear:left;
	display:block;
	margin:0;
	padding:30px 0 100px 0;
	width:100%;
	height:auto;
	text-align:left;
	color:#FFF;
	font-size:12px;
	line-height:2.3em;
	letter-spacing:1px;
}

/*------------------------------------------------------------
	ボタン
------------------------------------------------------------*/
.btn a {
	clear:left;
	margin:0 auto;
  position: relative;
  display: block;
  margin-bottom:50px;
  width: 280px;
  padding: 15px 0;
  background-color: #725a53;
  border-radius: 8px;
  font-size: 14px;
  font-weight:bold;
  letter-spacing:2px;
  color: #fff;
  text-decoration: none;
  text-align: center;
	-webkit-transition:0.4s;
	transition:0.4s;
}

.btn a:hover{
	color:#333;
	background:#EEEEEE;
}

/* アイコンのスタイル */
.btn-circle-right a::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  width: 15px;
  height: 15px;
  margin: auto;
  border-radius: 20px;
  background-color: #fff;
}
.btn-circle-right a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 22px;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 4px solid transparent;
  border-right: 0 solid transparent;
  border-left: 6px solid #333;
  border-bottom: 4px solid transparent;
  box-sizing: border-box;
}

/*------------------------------------------------------------
	ページトップ
------------------------------------------------------------*/
.pagetop{
    display:block;
    position:fixed;
    bottom:15px;
    right:15px;
	z-index:9999;
}
.pagetop a{
	display:block;
	width:50px;
	height:50px;
    text-decoration:none;
	background-image:url(../common/totop_01.png);
	-webkit-transition:0.4s;
	transition:0.4s;
}
 
.pagetop a:hover{
	background-image:url(../common/totop_01.png);
}

/*------------------------------------------------------------
	height
------------------------------------------------------------*/
.height5{
	margin:0;
	padding:0;
	width:auto;
	height:5px;
}

.height10{
	margin:0;
	padding:0;
	width:auto;
	height:10px;
}

.height15{
	margin:0;
	padding:0;
	width:auto;
	height:15px;
}

.height20{
	margin:0;
	padding:0;
	width:auto;
	height:20px;
}

.height30{
	margin:0;
	padding:0;
	width:auto;
	height:30px;
}

.height50{
	margin:0;
	padding:0;
	width:auto;
	height:50px;
}

.height100{
	margin:0;
	padding:0;
	width:auto;
	height:100px;
}




@media(min-width:768px) and ( max-width:1200px){
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}

ul{
	list-style:none;
	margin:0;
	padding:0;
}

body{
	overflow-x:hidden;
	font-size:16px;
	font-family:serif;
	background-image:#EEEEEE;
	-webkit-text-size-adjust:100%;

}

img{
	margin:0;
	padding:0;
	vertical-align:bottom;
}

.main{
	clear:left;
	width:100%;
	height:4000px;
}

@import url('https://fonts.googleapis.com/css2?family=Caveat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sacramento&display=swap');


/*------------------------------------------------------------
	header
------------------------------------------------------------*/
#header{
	clear:left;
	display:none;
	margin:0;
	padding:0;
	width:100%;
	height:110px;
	position: fixed;
	background:#464f93;
	background-color:rgba(70,79,147,0.9);
	z-index:1;
}

#header #logo{
	float:left;
	margin:0;
	margin-top:20px;
	margin-left:2%;
	padding:0;
	width:auto;
}

#header #menu{
	float:right;
	margin-right:5%;
	width:auto;
}

#header #menu li{
	float:left;
	display:block;
	width:auto;
	height:110px;
}

#header #menu li a{
	clear:left;
    display:block;
    overflow:hidden;
	margin:0 auto;
	margin-bottom:10px;
	padding:0 30px;
	width:auto;
	height:110px;
	line-height:110px;
	text-align:center;
	text-decoration:none;
	color:#FFF;
	font-size:15px;
	font-family:serif;
	letter-spacing:1px;
	-webkit-transition:0.4s;
	transition:0.4s;
}

#header #menu li a:hover{
	background:#32386a;
}

#header #menu .btn01 a{
	clear:left;
    display:block;
    overflow:hidden;
	margin:0 auto;
	margin-bottom:10px;
	padding:0 30px;
	width:auto;
	height:110px;
	line-height:110px;
	text-align:center;
	text-decoration:none;
	color:#FFF;
	font-size:15px;
	font-family:serif;
	letter-spacing:1px;
	background:#5493dc;
	-webkit-transition:0.4s;
	transition:0.4s;
}

#header #menu .btn01 a:hover{
	background:#5493dc;
}

#header #menu span{
	font-size:11px;
	  color:#CCC;
}

/*------------------------------------------------------------
	ハンバーガー
------------------------------------------------------------*/
#h_menu{
	clear:left;
	display:block;
	margin:0;
	padding:0;
	width:100%;
	height:auto;
}

.menu_text{
	display:block;
	position: fixed;
	right:3.5em;
	top:73px;
	color:#000;
	font-size:11px;
	z-index:9999;
}

@keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
@-webkit-keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
#overlay-button {
	display:block;
  position: fixed;
  right: 2em;
  top:30px;
  padding: 26px 11px;
  z-index:9999;
  cursor: pointer;
  user-select: none;
}

#overlay-button span {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color:#000;
  position: relative;
  display: block;
  transition: all .2s ease-in-out;
}
#overlay-button span:before {
  top: -10px;
  visibility: visible;
}
#overlay-button span:after {
  top: 10px;
}
#overlay-button span:before, #overlay-button span:after {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color:#000;
  position: absolute;
  content: "";
  transition: all .2s ease-in-out;
}
#overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
  background: #000;
}

#h_menu input[type=checkbox] {
  display:none;
  
}

#h_menu input[type=checkbox]:checked ~ #overlay {
  visibility: visible; 
}

#h_menu input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
  background: transparent;
  
  
}
#h_menu input[type=checkbox]:checked ~ #overlay-button span:before {
  transform: rotate(45deg) translate(7px, 7px);

}
#h_menu input[type=checkbox]:checked ~ #overlay-button span:after {
  transform: rotate(-45deg) translate(7px, -7px);


}

/*------------------------------------------------------------
	オーバーレイ menu
------------------------------------------------------------*/
#overlay {
	height: 100vh;
	width: 100vw;
	visibility: hidden;
	position: fixed;
	background:#FFF;
	z-index:999;
}
#overlay.active {

}

#overlay #content1{
	clear:left;
	margin:0 auto;
	margin-top:70px;
	width:60%;
	height:auto;
	text-align:center;
}

#overlay #content1 #logo{
	clear:left;
	margin:0 auto;
	margin-bottom:20px;
}

#overlay #content1 p{
	clear:left;
	font-size:15px;
	font-family:serif;
	font-weight:normal;
	text-align:center;
	letter-spacing:1px;
}

#overlay #content1 #tel{
	clear:left;
	margin:0 auto;
	margin-top:10px;
	display:block;
	width:250px;
	text-align:center;
	color:#FFF;
	font-family:serif;
	font-size:22px;
	font-weight:normal;
	background:#486839;
}

#overlay #content2{
	clear:left;
	margin:0 auto;
	padding:30px 0 15px 0;
	width:30%;
	display:flex;
}

#overlay #content2 p{
	flex:1;
	margin:0 30px;
	padding-bottom:0;
	position:relative;
	width:100%;
	height:auto;
}

#overlay #content2 a{
	clear:left;
    display:block;
    overflow:hidden;
	margin:0;
	padding:10px 20px;
	width:100%;
	text-align:center;
	text-decoration:none;
	color:#333;
	font-size:15px;
	font-family:serif;
	font-weight:normal;
	background:#C66;
	letter-spacing:1px;
}

#overlay #content2 a:hover{
	background:#ec9090;
}

#overlay #content3{
	clear:left;
	margin:0 auto;
	width:40%;
	display:flex;
	justify-content: center;
	position:relative;
	border-top:#CCC 1px solid;
}

#overlay #content3 ul{
	float:left;
	margin:0 auto;
	width:45%;
	justify-content: center;
	align-items:center;
}

#overlay #content3 li{
	float:left;
	margin:0;
	padding:0;
	margin-left:-1px;
	display:block;
	width:100%;
	border-collapse:collapse;
}

#overlay #content3 li a{
	clear:left;
    position: relative;
    display:block;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width:100%;
    padding:15px 0 15px 40px;
    color: #313131;
    font-weight:600;
	font-family:serif;

	font-size:15px;
	text-decoration: none;
	letter-spacing:1px;
}

#overlay #content3 li a:before {
    position: absolute;
    bottom: 0px;
    left: 50%;
    content: '';
    width: 100%;
    height: 1px;
    background: rgba(0,0,0,.1);
    transform: translateX(-50%);
}

#overlay #content3 li a:after {
    position: absolute;
    bottom: 0px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #000;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}

#overlay #content3 li a:hover {
    opacity: 0.7;
}

#overlay #content3 li a:hover:after {
    transform: scale(1, 1);
}

/*------------------------------------------------------------
	top_img
------------------------------------------------------------*/
#top_img{
	clear:left;
	width:100%;
	height:auto;
}

#top_img img{
	clear:left;
	width:100%;
	height:300px;
	object-fit:cover;
}

/*------------------------------------------------------------
	top_img
------------------------------------------------------------*/
#viewer{
	clear:left;
	margin:0 auto;
	width:100%;
	height:300px;
	text-align:left;
	overflow:hidden;
	position:relative;
	background:#000;
}

#viewer img{
	margin:0;
	padding:0;
	top:0;
	left:0;
	width:100%;
	height:300px;
	object-fit:cover;
	position:absolute;
}

/*------------------------------------------------------------
	footer 空室検索
------------------------------------------------------------*/
#footer_search{
	clear:left;
	margin:0 auto;
	width:100%;
	height:550px;
	color:#000;
	font-size:16px;
	font-family:serif;
	letter-spacing:0;
	line-height:2.5em;
	background:#EEEEEE;
}

#footer_search section{
	clear:left;
	margin:0 auto;
	padding-top:50px;
	width:90%;
	height:180px;
	text-align:center;
}

#footer_search #title{
	float:none;
	margin-top:0;
	padding:0;
	padding-top:50px;
	display:block;
	width:100%;
	height:50px;
	line-height:80px;
	color:#000;
	font-family:serif;
	font-size:24px;
	text-align:center;
	line-height:0;
	border-top:#000 1px solid;
	border-bottom:#000 1px solid;
}

#footer_search #box1{
	float:none;
	margin-top:30px;
	margin-left:0;
	width:100%;
}

#footer_search #btn{
	float:none;
	margin-top:0;
	margin-left:0;
	width:100%;
	height:auto;
}

#footer_search .btn01{
	float:none;
	margin-top:30px;
	margin-left:0;
	padding:0;
	display:block;
	width:100%;
	height:70px;
	color:#FFF;
	font-size:16px;
	font-family:serif;
	font-weight:900;
	text-decoration:none;
	background:#666;
	letter-spacing:2px;
	border:0;
}

#footer_search .btn02 a{
	float:none;
    display:block;
    overflow:hidden;
	margin-top:10px;
	margin-left:0;
	padding:0;
	width:100%;
	height:70px;
	text-align:center;
	text-decoration:none;
	color:#FFF;
	font-size:16px;
	font-weight:900;
	background:#666;
	line-height:70px;
	letter-spacing:2px;
	-webkit-transition:0.4s;
	transition:0.4s;
}

#footer_search .btn02 a:hover{
	background:#333;
}

/*------------------------------------------------------------
	footer
------------------------------------------------------------*/
#footer{
	clear:left;
	width:100%;
	height:auto;
	background-image: linear-gradient(90deg, #471418, #2f1303);
}

#footer section{
	clear:left;
	margin:0 auto;
	width:85%;
	height:auto;
}

#footer #content1{
	float:none;
	margin:0;
	margin-top:0
	width:100%;
	height:auto;
	text-align:left;
	color:#FFF;
	font-size:16px;
	line-height:2.3em;
	letter-spacing:1px;
}

#footer #content1 #logo{
	clear:left;
	margin:0;
	padding:0;
	padding-top:100px;
	display:block;
	text-align:center;
}

#footer #content1 img{
	clear:left;
	margin-bottom:20px;
}

#footer #content1 .sns{
	float:left;
	margin:0;
	margin-top:20px;
	padding-right:30px;
	display:block;
	width:auto;
	height:50px;
}

#footer #content2{
	float:none;
	margin:0;
	margin-top:100px;
	width:100%;
	height:auto;
}

#footer #content2 ul{
	clear:left;
	display:block;
	margin:0 auto;
	width:100%;
}

#footer #content2 li{
	float:left;
	display:block;
	width:auto;
	height:50px;
}

#footer #content2 li a{
	clear:left;
    display:block;
    overflow:hidden;
	margin:0 auto;
	padding:0 20px;
	width:auto;
	text-align:center;
	text-decoration:none;
	color:#FFF;
	font-size:16px;
	font-weight:bold;
	font-family:serif;
	letter-spacing:0;
	-webkit-transition:0.4s;
	transition:0.4s;
}

#footer #content2 li a:hover{
	color:#333;
	background:#EEEEEE;
}

#footer #content2 .button01 {
  /* スタイル用 */
  display: flex;
  justify-content: center;
  align-items: center;
  margin:0;
  margin-top:10px;
  width: 300px;
  height: 50px;
  border: 1px solid #333;
  border-radius:5px;
  color: #FFF;
  background-color:rgba(255,255,255,0.3);
  /* スタイル用 */

  position: relative;
}

#footer #content2 .button01:before,
#footer #content2 .button01:after {
  position: absolute;
  top: 50%;
  right: 22px;
  height: 1px;
  background: #333;
  content: '';
}

#footer #content2 .button01:before {
  width: 30px;
  transform: translateY(-50%);
}

#footer #content2 .button01:after {
  width: 8px;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}

/*------------------------------------------------------------
	copyright
------------------------------------------------------------*/
#copyright{
	clear:left;
	display:block;
	margin:0;
	padding:30px 0 100px 0;
	width:100%;
	height:auto;
	text-align:left;
	color:#FFF;
	font-size:12px;
	line-height:2.3em;
	letter-spacing:1px;
}

/*------------------------------------------------------------
	ボタン
------------------------------------------------------------*/
.btn a {
	clear:left;
	margin:0 auto;
  position: relative;
  display: block;
  margin-bottom:50px;
  width: 280px;
  padding: 15px 0;
  background-color: #725a53;
  border-radius: 8px;
  font-size: 14px;
  font-weight:bold;
  letter-spacing:2px;
  color: #fff;
  text-decoration: none;
  text-align: center;
	-webkit-transition:0.4s;
	transition:0.4s;
}

.btn a:hover{
	color:#333;
	background:#EEEEEE;
}

/* アイコンのスタイル */
.btn-circle-right a::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  width: 15px;
  height: 15px;
  margin: auto;
  border-radius: 20px;
  background-color: #fff;
}
.btn-circle-right a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 22px;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 4px solid transparent;
  border-right: 0 solid transparent;
  border-left: 6px solid #333;
  border-bottom: 4px solid transparent;
  box-sizing: border-box;
}

/*------------------------------------------------------------
	ページトップ
------------------------------------------------------------*/
.pagetop{
    display:block;
    position:fixed;
    bottom:15px;
    right:15px;
	z-index:9999;
}
.pagetop a{
	display:block;
	width:50px;
	height:50px;
    text-decoration:none;
	background-image:url(../common/totop_01.png);
	-webkit-transition:0.4s;
	transition:0.4s;
}
 
.pagetop a:hover{
	background-image:url(../common/totop_01.png);
}

/*------------------------------------------------------------
	height
------------------------------------------------------------*/
.height5{
	margin:0;
	padding:0;
	width:auto;
	height:5px;
}

.height10{
	margin:0;
	padding:0;
	width:auto;
	height:10px;
}

.height15{
	margin:0;
	padding:0;
	width:auto;
	height:15px;
}

.height20{
	margin:0;
	padding:0;
	width:auto;
	height:20px;
}

.height30{
	margin:0;
	padding:0;
	width:auto;
	height:30px;
}

.height50{
	margin:0;
	padding:0;
	width:auto;
	height:50px;
}

.height100{
	margin:0;
	padding:0;
	width:auto;
	height:100px;
}
}





@media(min-width:1200px){
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}

ul{
	list-style:none;
	margin:0;
	padding:0;
}

body{
	overflow-x:hidden;
	font-size:16px;
	font-family:serif;
	background-image:#EEEEEE;
	-webkit-text-size-adjust:100%;

}

img{
	margin:0;
	padding:0;
	vertical-align:bottom;
}

.main{
	clear:left;
	width:100%;
	height:4000px;
}

@import url('https://fonts.googleapis.com/css2?family=Caveat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sacramento&display=swap');

/*------------------------------------------------------------
	top_img
------------------------------------------------------------*/
#top_img{
	clear:left;
	width:100%;
	height:auto;
}

#top_img img{
	width:100%;
	height:500px;
	object-fit:cover;
}

/*------------------------------------------------------------
	top_img
------------------------------------------------------------*/
#viewer{
	clear:left;
	margin:0 auto;
	width:100%;
	height:900px;
	text-align:left;
	overflow:hidden;
	position:relative;
	background:#000;
	z-index:-99;
}

#viewer img{
	margin:0;
	padding:0;
	top:0;
	left:0;
	width:100%;
	height:900px;
	object-fit:cover;
	position:absolute;
	filter: brightness(50%);
}

/*------------------------------------------------------------
	header
------------------------------------------------------------*/
#header{
	clear:left;
	display:block;
	margin:0;
	padding:0;
	width:100%;
	height:80px;
	position:absolute;
	background:none;
	background-color:rgba(255,255,255,0);
	z-index:1;
}

#header #logo{
	float:left;
	margin:0;
	margin-top:25px;
	margin-left:2%;
	padding:0;
	width:auto;
}

#header #menu{
	float:right;
	margin-right:5%;
	width:auto;
}

#header #menu li{
	float:left;
	display:block;
	width:auto;
	height:80px;
}

#header #menu li a{
	clear:left;
    display:block;
    overflow:hidden;
	margin:0 auto;
	margin-bottom:10px;
	padding:0 20px;
	width:auto;
	height:80px;
	line-height:80px;
	text-align:center;
	text-decoration:none;
	color:#FFF;
	font-size:16px;
	font-weight:bold;
	font-family:serif;
	letter-spacing:0;
	-webkit-transition:0.4s;
	transition:0.4s;
}

#header #menu li a:hover{
	color:#333;
	background:#EEEEEE;
}

#header #menu .btn01 a{
	clear:left;
    display:block;
    overflow:hidden;
	margin:0 auto;
	margin-bottom:10px;
	padding:0 30px;
	width:auto;
	height:80px;
	line-height:80px;
	text-align:center;
	text-decoration:none;
	color:#FFF;
	font-size:16px;
	font-weight:bold;
	font-family:serif;
	letter-spacing:1px;
	background:#900;
	-webkit-transition:0.4s;
	transition:0.4s;
}

#header #menu .btn01 a:hover{
	color:#FFF;
	background:#600;
}

#header #menu span{
	font-size:11px;
	color:#CCC;
}

#header #menu li img{
	clear:left;
    display:block;
    overflow:hidden;
	margin:0 auto;
	margin-bottom:10px;
	padding:0;
	width:auto;
	height:80px;
	line-height:0;
	text-align:center;
	text-decoration:none;
	color:#FFF;
	font-size:15px;
	font-family:serif;
	letter-spacing:1px;
	-webkit-transition:0.4s;
	transition:0.4s;
}
	
/*------------------------------------------------------------
	ハンバーガー
------------------------------------------------------------*/
#h_menu{
	clear:left;
	display:block;
	margin:0;
	padding:0;
	width:100%;
	height:auto;
}

.menu_text{
	display:block;
	position: fixed;
	right:3.5em;
	top:73px;
	color:#000;
	font-size:11px;
	z-index:9999;
}

@keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
@-webkit-keyframes bugfix {

  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
#overlay-button {
	display:block;
  position: fixed;
  right: 2em;
  top:30px;
  padding: 26px 11px;
  z-index:9999;
  cursor: pointer;
  user-select: none;
}

#overlay-button span {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color:#000;
  position: relative;
  display: block;
  transition: all .2s ease-in-out;
}
#overlay-button span:before {
  top: -10px;
  visibility: visible;
}
#overlay-button span:after {
  top: 10px;
}
#overlay-button span:before, #overlay-button span:after {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color:#000;
  position: absolute;
  content: "";
  transition: all .2s ease-in-out;
}
#overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
  background: #000;
}

#h_menu input[type=checkbox] {
  display:none;
  
}

#h_menu input[type=checkbox]:checked ~ #overlay {
  visibility: visible; 
}

#h_menu input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
  background: transparent;
  
  
}
#h_menu input[type=checkbox]:checked ~ #overlay-button span:before {
  transform: rotate(45deg) translate(7px, 7px);

}
#h_menu input[type=checkbox]:checked ~ #overlay-button span:after {
  transform: rotate(-45deg) translate(7px, -7px);
}

/*------------------------------------------------------------
	footer 空室検索
------------------------------------------------------------*/
#footer_search{
	clear:left;
	display:block;
	margin:0;
	padding:0;
	width:100%;
	height:230px;
	color:#000;
	font-size:20px;
	font-family:serif;
	letter-spacing:2px;
	line-height:2em;
	background:#EEEEEE;
	border-top:#FFF 1px solid;
}

#footer_search section{
	clear:left;
	margin:0 auto;
	padding-top:0;
	width:70%;
	height:180px;
	text-align:center;
}

#footer_search #title{
	float:left;
	margin-top:60px;
	padding:0;
	padding-top:50px;
	display:block;
	width:15%;
	height:50px;
	line-height:80px;
	color:#000;
	font-family:serif;
	font-size:24px;
	text-align:center;
	line-height:0;
	border-top:#000 1px solid;
	border-bottom:#000 1px solid;
}

#footer_search #box1{
	float:left;
	margin-top:75px;
	margin-left:2%;
	width:30%;
}

#footer_search #btn{
	float:left;
	margin-top:82px;
	margin-left:3%;
	width:50%;
	height:auto;
}

#footer_search .btn01{
	float:left;
	margin-top:0;
	margin-left:0;
	padding:0;
	display:block;
	width:40%;
	height:60px;
	color:#FFF;
	font-size:16px;
	font-weight:900;
	font-family:serif;
	text-decoration:none;
	background:#666;
	letter-spacing:2px;
	border:0;
	border-radius:10px;
}

#footer_search .btn02 a{
	float:left;
    display:block;
    overflow:hidden;
	margin-top:0;
	margin-left:3%;
	padding:0;
	width:57%;
	height:60px;
	text-align:center;
	text-decoration:none;
	color:#FFF;
	font-size:16px;
	font-weight:900;
	background:#666;
	line-height:60px;
	letter-spacing:2px;
	border-radius:10px;
	-webkit-transition:0.4s;
	transition:0.4s;
}

#footer_search .btn02 a:hover{
	background:#333;
}

/*------------------------------------------------------------
	footer
------------------------------------------------------------*/
#footer{
	clear:left;
	width:100%;
	height:500px;
	background-image: linear-gradient(90deg, #471418, #2f1303);
}

#footer section{
	clear:left;
	margin:0 auto;
	width:75%;
	height:auto;
}

#footer #content1{
	float:left;
	margin:0;
	margin-top:100px;
	width:40%;
	height:300px;
	text-align:left;
	color:#FFF;
	font-size:16px;
	line-height:2.3em;
	letter-spacing:1px;
}

#footer #content1 #logo{
	clear:left;
	margin:0;
	padding:0;
	padding-top:0;
	display:block;
	text-align:left;
}

#footer #content1 img{
	clear:left;
	margin-bottom:20px;
}

#footer #content1 .sns{
	float:left;
	margin:0;
	margin-top:20px;
	padding-right:30px;
	display:block;
	width:auto;
	height:50px;
}

#footer #content2{
	float:right;
	margin:0;
	margin-top:100px;
	width:45%;
	height:300px;
}

#footer #content2 ul{
	clear:left;
	display:block;
	margin:0 auto;
	width:100%;
}

#footer #content2 li{
	float:left;
	display:block;
	width:auto;
	height:50px;
}

#footer #content2 li a{
	clear:left;
    display:block;
    overflow:hidden;
	margin:0 auto;
	padding:0 20px;
	width:auto;
	text-align:center;
	text-decoration:none;
	color:#FFF;
	font-size:16px;
	font-weight:bold;
	font-family:serif;
	letter-spacing:0;
	-webkit-transition:0.4s;
	transition:0.4s;
}

#footer #content2 li a:hover{
	color:#333;
	background:#EEEEEE;
}

#footer #content2 .button01 {
  /* スタイル用 */
  display: flex;
  justify-content: center;
  align-items: center;
  margin:0;
  margin-top:10px;
  width: 300px;
  height: 50px;
  border: 1px solid #333;
  border-radius:5px;
  color: #FFF;
  background-color:rgba(255,255,255,0.3);
  /* スタイル用 */

  position: relative;
}

#footer #content2 .button01:before,
#footer #content2 .button01:after {
  position: absolute;
  top: 50%;
  right: 22px;
  height: 1px;
  background: #333;
  content: '';
}

#footer #content2 .button01:before {
  width: 30px;
  transform: translateY(-50%);
}

#footer #content2 .button01:after {
  width: 8px;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}

/*------------------------------------------------------------
	copyright
------------------------------------------------------------*/
#copyright{
	clear:left;
	display:block;
	margin:0;
	padding:0;
	width:100%;
	height:auto;
	text-align:center;
	color:#FFF;
	font-size:14px;
	line-height:2.3em;
	letter-spacing:3px;
}

/*------------------------------------------------------------
	ボタン
------------------------------------------------------------*/
.btn a {
	clear:left;
	margin:0;
  position: relative;
  display: block;
  margin-bottom:30px;
  width: 280px;
  padding: 15px 0;
  background-color: #725a53;
  border-radius: 8px;
  font-size: 14px;
  font-weight:bold;
  letter-spacing:2px;
  color: #fff;
  text-decoration: none;
  text-align: center;
	-webkit-transition:0.4s;
	transition:0.4s;
}

.btn a:hover{
	color:#333;
	background:#EEEEEE;
}

/* アイコンのスタイル */
.btn-circle-right a::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  width: 15px;
  height: 15px;
  margin: auto;
  border-radius: 20px;
  background-color: #fff;
}
.btn-circle-right a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 22px;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 4px solid transparent;
  border-right: 0 solid transparent;
  border-left: 6px solid #333;
  border-bottom: 4px solid transparent;
  box-sizing: border-box;
}

/*------------------------------------------------------------
	ページトップ
------------------------------------------------------------*/
.pagetop{
    display:none;
    position:fixed;
    bottom:15px;
    right:15px;
	z-index:9999;
}
.pagetop a{
	display:block;
	width:80px;
	height:80px;
    text-decoration:none;
	background-image:url(../common/p_top01.png);
	-webkit-transition:0.4s;
	transition:0.4s;
}
 
.pagetop a:hover{
	background-image:url(../common/p_top02.png);
}

/*------------------------------------------------------------
	height
------------------------------------------------------------*/
.height5{
	margin:0;
	padding:0;
	width:auto;
	height:5px;
}

.height10{
	margin:0;
	padding:0;
	width:auto;
	height:10px;
}

.height15{
	margin:0;
	padding:0;
	width:auto;
	height:15px;
}

.height20{
	margin:0;
	padding:0;
	width:auto;
	height:20px;
}

.height30{
	margin:0;
	padding:0;
	width:auto;
	height:30px;
}

.height50{
	margin:0;
	padding:0;
	width:auto;
	height:50px;
}

.height100{
	margin:0;
	padding:0;
	width:auto;
	height:100px;
}
}