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

#h1{
	clear:left;
	display:none;
	margin:0;
	padding:0;
	width:100%;
}

/*------------------------------------------------------------
	デフォルトスタイル #F0F0E1　#eee1cc
------------------------------------------------------------*/
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:14px;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	background-image:url(../common/bg01.jpg);
	-webkit-text-size-adjust:100%;

}

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

.main{
	clear:left;
	width:100%;
	height:4000px;
	background:#36F;
}

/*------------------------------------------------------------
	アコーディオン
------------------------------------------------------------*/
/*アコーディオン全体*/
.accordion-area{
	clear:left;
	margin:0 auto;
    list-style: none;
    width:7%;
	position:fixed;
	top:18px;
	right:10px;
	z-index:9999;
	
	overflow:hidden;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
	border:none;
}

/*アコーディオンタイトル*/
.title {
	clear:left;
	padding:10px 0;
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:13px;
	color:#FFF;
    font-weight: normal;
	text-align:center;
    transition: all .5s ease;
	background:#696;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color:#696;
    
}
.title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.title.close::before{
	transform: rotate(45deg);
}

.title.close::after{
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    background:#666;
	margin:0;
    padding:0;
	text-decoration:none;
}

.box p{
	text-decoration:none;
	border-bottom:#CCC 1px solid;
}

.box .btn01 a{
	clear:left;
	padding:10px 0 10px 30px;
	display:block;
	color:#333;
	text-decoration:none;
	letter-spacing:2px;
	background:#FFF;
}

.box .btn01 a:hover{
	text-decoration:none;
	background:#EEEEEE;
	-webkit-transition: all .3s;
	transition: all .3s;
}

/*------------------------------------------------------------
	top_img
------------------------------------------------------------*/
#top_img{
	clear:left;
	width:100%;
	height:500px;
	overflow:hidden;
	position:relative;
	object-fit: cover;
}

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

#viewer{
	clear:left;
	margin:0 auto;
	width:100%;
	height:950px;
	text-align:left;
	overflow:hidden;
	position:relative;
	object-fit: cover;
	background:url(../common/bg_01.jpg);
}

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

/*------------------------------------------------------------
	header
------------------------------------------------------------*/
#header{
	clear:left;
	padding:0;
	margin:0 auto;
	padding:0;
	width:100%;/*横幅指定*/
	height: 100px;/*高さ指定*/
	/*以下はレイアウトのためのCSS*/
	display: flex;
	justify-content: space-between;
	align-items: center;
	color:#fff;
	text-align: center;
	background:rgba(255,255,255,0.6);
	
	
	position:fixed;
	top:0;
	z-index:9999;/*最前面へ*/
}

#header.fixed{
	z-index:9999;/*最前面へ*/
	top:0;/*位置指定*/
	left:0;/*位置指定*/
	background:rgba(255,255,255,0.6);
}

/*------------------------------------------------------------
	メニュー
------------------------------------------------------------*/
nav{
	clear:left;
	padding:0;
	margin:0;
	width:100%;
	height:80px;
	text-align:center;
	color:#fff;
}

nav #logo{
	float:left;
	margin-top:13px;
	margin-left:3%;
}

nav #menu{
	float:right;
	margin-right:8%;
	margin-top:0;
}

#menu{
	float:right;
	width:auto;
	max-width:100%;
	margin:0 auto;
	padding:0;
}

#menu li{
	float:left;
	display:block;
	width:auto;
	margin:0;
	padding:0;
}

#menu li a{
	display:block;
	padding:0 15px;
	color:#000;
	font-family:serif;
	font-size:15px;
	font-weight:bold;
	text-align:center;
	text-decoration:none;
	line-height:80px;
	-webkit-transition:0.4s;
	transition:0.4s;
}

#menu li a:hover{
	color:#600;
}

#toggle{ 
	display:none;
}

nav #menu #menu_btn01 a{
	clear:left;
	float:left;
	padding:0 40px;
	width:auto;
	height:75px;
	color:#FFF;
	line-height:80px;
	background:#cc6666;
	text-shadow:none;
	-webkit-transition:0.4s;
	transition:0.4s;
}

nav #menu #menu_btn01 a:hover{
	background:#eea5a0;
	text-decoration:none;
	
}

nav #menu #menu_btn01 span{
	color:#FFF;
}

/*------------------------------------------------------------
	footer 空室検索
------------------------------------------------------------*/
#footer_search{
	clear:left;
	margin:0 auto;
	width:100%;
	height:180px;
	color:#FFF;
	font-size:20px;
	font-weight:bold;
	font-family:serif;
	letter-spacing:2px;
	line-height:2em;
	background:#da948f;
	
	overflow:hidden;
}

#footer_search section{
	clear:left;
	margin:0 auto;
	padding:0;
	width:80%;
	height:180px;
}

#footer_search #title{
	float:left;
	margin-top:35px;
	margin-right:50px;
	padding:0;
	padding-top:50px;
	display:block;
	width:130px;
	height:50px;
	line-height:80px;
	color:#FFF;
	font-family:serif;
	font-size:18px;
	text-align:center;
	line-height:0;
	border:#FFF 1px solid;
}

#footer_search #box{
	float:left;
	margin-top:72px;
}

#footer_search #btn{
	float:left;
	margin-top:52px;
	margin-left:30px;
	width:720px;
	height:auto;
}

#footer_search .btn01{
	float:left;
	margin-top:0;
	margin-left:0;
	padding:0;
	display:block;
	width:350px;
	height:70px;
	line-height:70px;
	color:#333;
	font-size:16px;
	font-weight:bold;
	font-family:serif;
	text-decoration:none;
	background:#EEEEEE;
	letter-spacing:3px;
	border:0;
}

#footer_search .btn02 a{
	float:left;
    display:block;
    overflow:hidden;
	margin-top:0;
	margin-left:10px;
	padding:0;
	width:350px;
	height:70px;
	line-height:70px;
	text-align:center;
	text-decoration:none;
	color:#333;
	font-size:16px;
	background:#EEEEEE;
	letter-spacing:3px;
	-webkit-transition:0.4s;
	transition:0.4s;
}

#footer_search .obj_year, .obj_month, .obj_day, .obj_no_date{
	font-size:20px;
	font-weight:bold;
	font-family:serif;
	letter-spacing:2px;
	line-height:2em;
}

/*------------------------------------------------------------
	footer menu #5f5148
------------------------------------------------------------*/
#footer_menu{
	clear:left;
	width:100%;
	height:130px;
	background:#b1554e;
}

#footer_menu section{
	clear:left;
	margin:0 auto;
	padding-top:20px;
	margin-bottom:30px;
	width:80%;
	height:auto;
	
	display: flex;
	justify-content: center;
	align-items: center;
}

#footer_menu li{
	float:left;
	text-align:center;
	padding:30px;
}
	
#footer_menu li a{
	color:#FFF;
	font-family:serif;
	font-size:16px;
	font-weight:bold;
	text-align:left;
	text-decoration:none;
	position: relative;
	display: inline-block;
	-webkit-transition:4s;
	transition:4s;
}

#footer_menu li a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 0;
	height: 1px;/*下線の太さ*/
	background-color:#FFF;/*下線の色*/
	-webkit-transition:0.3s;
	transition:0.3s;
}

#footer_menu li a:hover::after {
	width:100%;
}

#footer_menu li a:hover{
	color:#FFF;/*ホバー時の文字色*/
}

/*------------------------------------------------------------
	footer
------------------------------------------------------------*/
footer{
	clear:left;
	padding:3em 0;
	width:100%;
	height:400px;
	background:url(../common/footer_pic1.png) no-repeat bottom right, url(../common/footer_pic3.png) no-repeat top right, url(../common/footer_pic2.png) no-repeat bottom left;
}

footer section{
	clear:left;
	margin:0 auto;
	padding-top:0;
	width:90%;
	height:auto;
}

footer #content1{
	float:left;
	padding-left:100px;
	width:35%;
	height:200px;
	font-family:serif;
	font-size:16px;
	color:#333;
	line-height:2.5em;
	letter-spacing:1px;
}

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

footer #content2{
	float:right;
	margin-top:30px;
	text-align:right;
	width:23%;
	height:auto
}

footer #content2 #btn01 a{
	clear:left;
	padding:15px 0;
	margin-bottom:10px;
	display:block;
	width:100%;
	color:#FFF;
	font-family:serif;
	font-size:16px;
	text-align:center;
	text-decoration:none;
	background:#eea5a0;
	-webkit-transition:1s;
	transition:1s;
}

footer #content2 #btn01 a:hover{
	color:#FFF;
	background:rgba(0,0,0,0.5);
	-webkit-transition:1s;
	transition:1s;
}

.copyright{
	clear:left;
	text-align:center;
	color:#333;
	letter-spacing:2px;
	line-height:80px;
}

.is-fixed {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
}

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


@media only screen and (max-width: 1200px) {
/*------------------------------------------------------------
	アコーディオン
------------------------------------------------------------*/
/*アコーディオン全体*/
.accordion-area{
	clear:left;
	margin:0 auto;
    list-style: none;
    width:30%;
	position:fixed;
	top:53px;
	right:0;
	z-index:50;
	
	overflow:hidden;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
	border:none;
}

/*アコーディオンタイトル*/
.title {
	clear:left;
	padding:10px 0;
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:13px;
	color:#FFF;
    font-weight: normal;
	text-align:center;
    transition: all .5s ease;
	background:#696;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color:#696;
    
}
.title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.title.close::before{
	transform: rotate(45deg);
}

.title.close::after{
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    background:#666;
	margin:0;
    padding:0;
	text-decoration:none;
}

.box p{
	text-decoration:none;
	border-bottom:#CCC 1px solid;
}

.box .btn01 a{
	clear:left;
	padding:10px 0 10px 30px;
	display:block;
	color:#333;
	text-decoration:none;
	letter-spacing:2px;
	background:#FFF;
}

.box .btn01 a:hover{
	text-decoration:none;
	background:#EEEEEE;
	-webkit-transition: all .3s;
	transition: all .3s;
}

/*------------------------------------------------------------
	header
------------------------------------------------------------*/
#header{
	clear:left;
	padding:0;
	margin:0 auto;
	padding:0;
	width:100%;/*横幅指定*/
	height:0;/*高さ指定*/
	/*以下はレイアウトのためのCSS*/
	display: flex;
	justify-content: space-between;
	align-items: center;
	color:#fff;
	text-align: center;
	
	
	position:fixed;
	top:0;
	z-index:9999;/*最前面へ*/
}

#header.fixed{
	z-index:9999;/*最前面へ*/
	top:0;/*位置指定*/
	left:0;/*位置指定*/
	background:none;
}

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

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

#viewer{
	clear:left;
	margin:0 auto;
	margin-top:60px;
	width:100%;
	height:350px;
	text-align:left;
	overflow:hidden;
	position:relative;
	object-fit: cover;
	background:url(../common/bg_01.jpg);
}

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

/*------------------------------------------------------------
	メニュー
------------------------------------------------------------*/
nav{
	clear:left;
	padding:0;
	margin:0;
	width:100%;
	height:auto;
	text-align: center;
	color: #fff;
	background:none;
}

nav #menu{
	float:none;
	margin:0;
}

nav #logo{
	display:none;
	float:none;
	margin-top:80px;
	margin-left:0;
	margin-bottom:0;
	text-align:center;
}

#menu-box{
	clear:left;
	position:fixed;
	top:0;
	left:0;
	z-index:9999;
	width:100%;
	height:auto;
	background:#ccc;
}

#menu{
	clear:left;
	margin-top:0;
	display:none;
	width:100%;
	padding:0;
	background:#ccc;
	z-index:999;
}

#menu li{
	width:50%;
	margin-bottom:1px;
}

#menu li span{
	font-size:0;
}

#menu li a{
	display:block;
	padding:0;
	color:#333;
	font-size:18x;
	font-weight:normal;
	font-family:serif;
	text-align:center;
	text-decoration:none;
	line-height:none;
	background:#FFF;
	-webkit-transition:0.4s;
	transition:0.4s;
}

#menu li a:hover{
	color:#333;
	background:#EEEEEE;
	text-decoration:none;
}

nav li a:hover{
	color:#FFF;
	background:#005976;
	border-bottom:0px;
}

nav #menu #menu_btn01 a{
	float:left;
	display:block;
	padding:2px 0 3px 0;
	margin:0;
	width:100%;
	color:#FFF;
	line-height:none;
	background:#cc6666;
	text-decoration:none;
	-webkit-transition:0.4s;
	transition:0.4s;
}

nav #menu #menu_btn01 a:hover{
	text-decoration:none;
	background:#eea5a0;
}

#toggle{
	clear:left;
	display:block;
	font-family:serif;
	font-size:18px;
	position:relative;
	width:100%;
	background:#5f5148;
	letter-spacing:1px;
}

#toggle a{
	display:block;
	position:relative;
	padding:18px 0 15px;
	border-bottom:1px solid #7b675e;
	color:#fff;
	text-align:center;
	text-decoration:none;
}

#toggle:before{
	display: block;
	content: "";
	position: absolute;
	top:50%;
	left:10px;
	width:20px;
	height:20px;
	margin-top:-10px;
	background:#fff;
}

#toggle a:before, #toggle a:after{
	display:block;
	content:"";
	position:absolute;
	top:50%;
	left:10px;
	width:20px;
	height:4px;
	background:#5f5148;
}

#toggle a:before{
	margin-top:-6px;
}

#toggle a:after{
	margin-top:2px;
}

/*------------------------------------------------------------
	footer 空室検索
------------------------------------------------------------*/
#footer_search{
	clear:left;
	margin:0 auto;
	width:100%;
	height:600px;
	color:#FFF;
	font-size:18px;
	font-family:serif;
	letter-spacing:2px;
	line-height:2.5em;
	background:#da948f;
}

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

#footer_search #title{
	float:none;
	margin-top:25px;
	margin-right:0;
	margin-bottom:10px;
	padding:0;
	padding-top:40px;
	display:block;
	width:100%;
	height:40px;
	line-height:0;
	color:#FFF;
	font-family:serif;
	font-size:24px;
	text-align:center;
	line-height:0;
	letter-spacing:3px;
	border-top:#FFF 1px solid;
	border-bottom:#FFF 1px solid;
}

#footer_search #box1{
	float:none;
	margin-top:0;
	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:0;
	margin-left:0;
	padding:0;
	display:block;
	width:100%;
	height:60px;
	color:#333;
	font-size:16px;
	font-family:serif;
	font-weight:bold;
	text-decoration:none;
	background:#EEEEEE;
	letter-spacing:2px;
	border:0;
}

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

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

/*------------------------------------------------------------
	footer menu #5f5148
------------------------------------------------------------*/
#footer_menu{
	clear:left;
	width:100%;
	height:auto;
	background:#b1554e;
}

#footer_menu section{
	clear:left;
	margin:0 auto;
	padding-top:0;
	margin-bottom:0;
	width:100%;
	height:auto;
	
	display: flex;
	justify-content: center;
	align-items: center;
}

#footer_menu li{
	float:left;
	text-align:center;
	padding:20px 0;
	width:50%;
	text-align:left;
	border-right:#da948f 1px solid;
	border-bottom:#da948f 1px solid;
	letter-spacing:0;
	margin-right:-2px;
}
	
#footer_menu li a{
	color:#FFF;
	padding-left:20px;
	font-family:serif;
	font-size:15px;
	font-weight:normal;
	text-align:left;
	text-decoration:none;
	position: relative;
	display:block;
	-webkit-transition:4s;
	transition:4s;
}

#footer_menu li a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 0;
	height:0;/*下線の太さ*/
	background-color:#FFF;/*下線の色*/
	-webkit-transition:0.3s;
	transition:0.3s;
}

#footer_menu li a:hover::after {
	width:100%;
}

#footer_menu li a:hover{
	color:#FFF;/*ホバー時の文字色*/
}

/*------------------------------------------------------------
	footer
------------------------------------------------------------*/
footer{
	clear:left;
	padding-top:3em;
	padding-bottom:150px;
	width:100%;
	height:auto;
	color:#333;
	background:url(../common/footer_pic2.png) no-repeat bottom left;
}

footer section{
	clear:left;
	margin:0 auto;
	padding-top:50px;
	width:90%;
	height:auto;
}

footer #content1{
	float:none;
	margin-top:15px;
	padding-left:0;
	width:100%;
	height:auto;
	font-family:serif;
	font-size:16px;
	text-align:center;
	color:#333;
	line-height:2.5em;
	letter-spacing:1px;
}

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

footer #content2{
	float:none;
	margin:0 auto;
	margin-top:20px;
	text-align:center;
	width:85%;
	height:auto;
}

footer #content2 #btn01 a{
	clear:left;
	padding:10px 0;
	margin-bottom:10px;
	display:block;
	width:100%;
	color:#FFF;
	font-family:serif;
	font-size:16px;
	text-align:center;
	text-decoration:none;
	background:#eea5a0;
	-webkit-transition:1s;
	transition:1s;
}

footer #content2 #btn01 a:hover{
	color:#FFF;
	background:rgba(0,0,0,0.5);
	-webkit-transition:1s;
	transition:1s;
}

.copyright{
	clear:left;
	text-align:center;
	color:#333;
	letter-spacing:1px;
	line-height:80px;
}

.is-fixed {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
}
}
