@charset "shift-jis";
@media screen and (max-width:768px){
html {
	-webkit-text-size-adjust: 100%;
}
html.close {
	overflow:hidden;
	height:100%;
}
img{
	max-width:100%;
}
.only_pc{
	display:none !important;
}

.only_smart{
	display:block !important;
}
.only_smart_i{
	display:inline-block !important;
}


#wrapper{
	min-width:auto;
	min-width:initial;
}


/* header */
header{
	min-width:auto;
	min-width:initial;
    position:fixed;
    top:0;
    left:0;
    z-index:100;
    background-color:#fff;
    box-shadow:0 0 3px rgba(0,0,0,0.3);
}
header > div{
	max-width:auto;
	max-width:initial;
	width:100%;
	height:60px;
	margin:auto;
	padding:0 5%;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
    align-items: center;
}

header h1{
	width:180px;
	margin-right:0;
}
header h1 a{
	display:block;
	padding-bottom:3px;
}
header nav{
	width:100%;
	height:calc(100vh - 60px);
	position:fixed;
	top:60px;
	left:0;
	display:none;
	overflow-y:auto;
	-webkit-overflow-scrolling: touch;
	background-color:#fff;
	border-top:1px solid #ccc;
}
header nav > ul{
	display:block;
}
header nav > ul > li{
	display:block;
	width:auto;
	border:none;
	border-bottom:1px dotted #000;
	position:static;
}
header nav > ul > li:last-child{
	display:none;
}
header nav > ul > li > a{
	display:block;
	line-height:50px;
	padding-left:5%;
	font-size:14px;
	font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
	text-align:left;
}
header nav > ul > li.sub > a{
	pointer-events:none;
}

header nav > ul > li > a img{
	display:inline-block;
	width:20px;
	margin-right:10px;
}

header nav > ul > li > a + ul{
	width:100%;
	background-color:#e5e5e5;
	position:static;
	top:auto;
	display:none;
}
header nav > ul > li > a + ul li a{
	display:block;
	font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
	line-height:40px;
	padding-left:60px;
	text-align:left;
}
header nav > ul > li > a + ul li a:hover{
	opacity:1;
	background-color:#e5e5e5;
	color:#000;
}
header nav > ul > li > a + ul li a span{
	display:inline;
	line-height:40px;
	font-size:12px;
	padding-bottom:15px;
	margin-left:5px;
}




/* smart_nav */
#smart_nav{
	display:block;
	width:40px;
	height:40px;
	padding:0 0;
	cursor:pointer;
}
#btnmenu{
	width:40px;
	height:42px;
	margin:0;
	padding:0;
	position:relative;
}

#btnmenu span{
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 28px;
	height: 3px;
	margin: -3px 0 0 -14px;
	background: #000;
	-webkit-transition: .2s;
	-moz-transition: .2s;
	-ms-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}
#btnmenu span:before,
#btnmenu span:after{
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 28px;
	height: 3px;
	background: #000;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
#btnmenu span:before{
	margin-top: -10px;
}

#btnmenu span:after{
	margin-top: 7px;
}

#btnmenu .close{
	background: transparent;
	width:42px;
	height:40px;
	margin-top:-20px;
	margin-left:-20px;
}

#btnmenu .close:before,
#btnmenu .close:after{
	margin-top: 0;
}

#btnmenu .close:before{
	width: 28px;
	height: 3px;
	margin: -2px 0 0 6px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#btnmenu .close:after{
	width: 28px;
	height: 3px;
	margin: -2px 0 0 6px;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	transform: rotate(-135deg);
}




/* article */
article{
	padding-top:60px;
}


/* article > h2 */
article > h2{
	padding:12% 0;
	font-size:12px;
	color:#fff;
	line-height:15px;
	letter-spacing:0.2em;
}
article > h2 span{
	margin:0;
	font-size:21px;
	font-family: quicksand, sans-serif;
	line-height:1;
	display:block;
}
article > h2 + ul{
	display:none;
}


/* section */
section{
}


.more{
	display:inline-block;
	line-height:38px;
	padding-top:2px;
	border-radius:20px;
	font-size:14px;
	font-weight:bold;
	background-color:#e5e5e5;
	position:relative;
}
.more:after{
	content:'';
	display:block;
	width:8px;
	height:8px;
	border-top:2px solid;
	border-right:2px solid;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	position:absolute;
	right:20px;
	top:50%;
	margin-top:-4px;
}


/* .cont */
.cont{
	padding-bottom:50px;
}

.cont h2{
	margin-bottom:20px;
	font-size:12px;
}
.cont h2 span{
	margin-bottom:15px;
	display:inline-block;
	position:relative;
	font-size:21px;
	font-family: quicksand, sans-serif;
	line-height:1;
}
.cont h2 span:after{
	content:'';
	display:block;
	width:94%;
	height:2px;
	background-color:#d5000e;
	position:absolute;
	bottom:-5px;
	left:50%;
	margin-left:-47%;
}


/* footer */
footer{
	padding:0 5%;
}

footer > ul{
	width:auto;
	margin:20px 0 50px;
}
footer > ul li{
	width:47.5%;
	display:inline-block;
	vertical-align:top;
	margin:10px 0.5%;
}
footer > ul li:nth-child(n+5){
	width:31%;
	margin:10px 0.5%;
}

footer dl{
	margin:auto;
	font-size:12px;
	line-height:1.8;
}
footer dl dt{
	margin-bottom:20px;
}
footer dl dt img{
	width:180px;
}
footer dl dd{
	display:inline-block;
	text-align:left;
}
footer dl dd:first-of-type{
	text-align:center;
	display:block;
}
footer nav{
	width:auto;
	max-width:420px;
	margin:30px auto 60px;
	padding-left:20px;
	text-align:left;
	line-height:2;
	color:#222;
}
footer nav > ul > li{
	width:130px;
	margin-top:30px;
	display:inline-block;
	vertical-align:top;
	text-align:left;
}
footer nav > ul > li span{
	display:block;
	font-size:14px;
	font-weight:bold;
	border-bottom:1px dotted #000;
	margin-bottom:5px;
}
/* footer nav > ul > li:first-child{
	width:auto;
} */
footer nav > ul > li ul{
	display:inline-block;
	vertical-align:top;
	width:130px;
}
footer nav ul li a{
	color:#222;
	font-size:12px;
}
footer nav ul li.low a{
	color:#8d8d8d;
}
footer > p{
	width:auto;
	margin:auto;
	padding:0 0 20%;
	font-size:11px;
	text-align:center;
}


/* top_top */
#topbtn{
	width:40px;
	position:fixed;
	z-index:90;
	right:20px;
	bottom:-150px;
	-webkit-transition: bottom 0.8s;
	-moz-transition: bottom 0.8s;
	-ms-transition: bottom 0.8s;
	transition: bottom 0.8s;
}

#rentbtn, #buybtn, #sellbtn{
	display:none;
}

/* #bottom_banner */
#bottom_banner{
	width:100%;
	position:fixed !important;
	position:absolute;
	bottom:-200px;
	left:0;
	z-index:80;
	padding:2% 0;
	background-color:rgba(255,255,255,0.6);
	border-top:4px solid #000;
	text-align:center;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
#bottom_banner li{
	width:40%;
	display:inline-block;
}
#bottom_banner.col3 li{
	width:calc(33% - 5px);
	display:inline-block;
	max-width: 200px;
}

/* saijyo top bg*/
#cont0,#cont1,#cont3,#cont4,#cont4 ul,#cont5,#cont5 dl,#cont5 ul.blog{
	background-image: none!important;
	position: relative;
}
.BG-sp {
	position: absolute;
	width: 20%;
	display: block;
}
.BG-sp img{
	width: 100%;
}
.BG-sp-left {
	top: 0;
	left: 10px;
}
.BG-sp-right {
	top: 0;
	right: 10px;
}
#cont5 .BG-sp{
	width: 20%;
	top: 10px;
	max-width: 80px;
}
#cont5 ul.blog {
    /*margin-top: 90px!important;*/
}

#cont5 ul.blog li.BG-sp {
	display: block;
	width: 20%;
	top: -90px;
	max-width: 84px;
	margin: 0;
}

}


@media screen and (max-width:480px){
footer nav{
	width:280px;
	max-width:280px;
	margin:30px auto 60px;
	padding-left:0;
}

.slide-arrow{
	position: absolute;
	top: 50%;
	width: 10px;
}

.prev-arrow{
	left: 10px;
}

.next-arrow{
	right: 10px;
}

}
