body{
	font-size: 15px;
	line-height: 1.8;

}


a{
	color:#000;
	text-decoration:none;
}
.center {
	display:block;
	margin:0 auto;
}
.clear {
	clear:both;
}
.wrapper{
	width: 100%;
	max-width: 1080px;
	padding: 0 40px;
	margin: 0 auto;
}
.show_768{
	display: none;
}
@media screen and (max-width: 768px) {
	.show_768{
		display: block;
	}
	.hide_768{
		display: none;
	}
	.wrapper{
		padding: 0 20px;
	}
}

/*////////////////////////////////////////////////////////*/
/*//////////////////// clearfix //////////////////////////*/
/*////////////////////////////////////////////////////////*/
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    *zoom: 1;
}
.clear{
	clear:both;
}
.left{
	float: left;
}
.right{
	float: right;
}
/*////////////////////////////////////////////////////////*/
/*//////////////////// responsive ////////////////////////*/
/*////////////////////////////////////////////////////////*/
.respd,.news_box img{
	max-width: 100%;
	height: auto;
	width /***/:auto;　
}

/*////////////////////////////////////////////////////////*/
/*//////////////////// fadeaction ////////////////////////*/
/*////////////////////////////////////////////////////////*/

.fade{
	opacity: 1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
.fade:hover{
    opacity: 0.7;
}

/*////////////////////////////////////////////////////////*/
/*////////////////////// menu ////////////////////////////*/
/*////////////////////////////////////////////////////////*/

#nav-drawer {
  position: relative;
}

.nav-unshown {
  display:none;
}
#nav-open {
	display: inline-block;
	width: 100%;
	height: 30px;
	vertical-align: middle;
	cursor: pointer;
}
#nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 1px;
    width: 40px;
    border-radius: 0px;
    background: #fff;
    display: block;
    content: '';
    cursor: pointer;
    left: 0;
}
#nav-open span{
	top: 0;
}
#nav-open span:before {
	bottom: -15px;
}
#nav-open span:after {
	bottom: -30px;
}
#nav-close {
	display: none;
	position: fixed;
	z-index: 99;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0;
	transition: .3s ease-in-out;
}
#nav-content {
	display: none;
	padding: 20px;
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.9);
	color: #fff;
	text-align: center;
}
#nav-content a {
    color: #fff;
    padding: 10px 0;
    width: 100%;
    display: block;
    font-size: 16px;
}
#nav-content ul{
	width: 100%;
	max-width: 280px;
	margin: 20px auto 0;
}
#nav-content ul li a{
	padding: 10px 20px;
	border-bottom: 1px dotted #aaa;
	position: relative;
	width: 100%;
	position: relative;
	font-size: 16px;
	text-align: left;
	display: block;
}
#nav-content ul li a span{
	font-size: 11px;
	margin-left: 10px;
}
#nav-content ul li a::before{
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 0 4px 6px;
	border-color: transparent transparent transparent #fff;
	position: absolute;
	left: 0;
	top: calc(50% - 3px);
}
/*閉じるボタン*/
.nav_close_cover {
    display: none;
    cursor: pointer;
    position: fixed;
    top: 15px;
    right: 25px;
    z-index: 100;
}
.nav_close{
    display: inline-block;
    position: relative;
    margin: 0 20px 0 20px;
    padding: 0;
    width: 1px;
    height: 40px;
    background: #fff;
    transform: rotate(45deg);
}
.nav_close:before{
    display: block;
    content: "";
    position: absolute;
    top: 20px;
    left: -20px;
    width: 40px;
    height: 1px;
    background: #fff;
}
