a{
	color:#000;
	text-decoration:none;
}
.center {
	display:block;
	margin:0 auto;
}
.clear {
	clear:both;
}
.left{
	float: left;
}
.right{
	float: right;
}
@media screen and (max-width: 768px) {
}

/*////////////////////////////////////////////////////////*/
/*//////////////////// clearfix //////////////////////////*/
/*////////////////////////////////////////////////////////*/
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    *zoom: 1;
}
.clear{
	clear:both;
}

/*////////////////////////////////////////////////////////*/
/*//////////////////// responsive ////////////////////////*/
/*////////////////////////////////////////////////////////*/
.respd{
	max-width: 100%;
	height: auto;
	width:100%;
}

/*////////////////////////////////////////////////////////*/
/*//////////////////// 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;
}
.trans,.trans::after,.trans::before{
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}


/*////////////////////////////////////////////////////////*/
/*////////////////////// menu ////////////////////////////*/
/*////////////////////////////////////////////////////////*/
.sp_menu{
	float: right;
	margin-top: 11px;
}
#nav-drawer {
  position: relative;
}
.nav-unshown {
  display:none;
}
#nav-open {
	width: 40px;
	height: 16px;
	cursor: pointer;
}
#nav-open span, #nav-open span::before, #nav-open span::after {
    position: absolute;
    height: 1px;
    width: 100%;
    border-radius: 0px;
    background: #000;
    display: block;
    content: '';
    cursor: pointer;
    left: 0;
}
#nav-open span{
	top: 0;
}
#nav-open span::before {
	top: 8px;
}
#nav-open span::after {
	top: 16px;
}
#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;
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.9);
	color: #fff;
	padding-top: 60px;
}
#nav-content .f1,#nav-content .f2,#nav-content .f3{
	display: inline-block;
	text-align: left;
	float: none;
	vertical-align: text-top;
}
/*閉じるボタン*/
.nav_close_cover {
    display: none;
    cursor: pointer;
    position: fixed;
    top: 10px;
    right: 20px;
    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;
}
#nav-content a{
    color: #fff;
}
/*////////////////////////////////////////////////////////*/
/*////////////////// text toggle /////////////////////////*/
/*////////////////////////////////////////////////////////*/
.textmore_wrapper{
}
.textmore_wrapper .textmore_btn::after{
	content: '続きを読む';
}
.textmore_wrapper.show .textmore_btn::after{
	content: '閉じる';
}
.textmore_wrapper.show .textmore_btn i{
	transform: rotate(180deg);
}
.textmore_wrapper .hidetext{
	display: none;
}
.textmore_wrapper.show .hidetext{
}
.textmore_btn {
    text-align: right;
    font-weight: bold;
    font-size: 0.9em;
    letter-spacing: 1px;
	margin-top: 5px;
	cursor: pointer;
}
