@charset "UTF-8";
/* _____________________________________________________________________ HTML5 Reset */

article, aside, dialog, figure, footer, header, main, menu, nav, section{
	display: block;
}

time, figcaption{
	display: inline;
}

/* _____________________________________________________________________ TEXT */

p{
	margin:0 0 1em 0;
}

.nowrap{
	white-space:nowrap;
}

em{
	font-style:normal;
	font-weight:bold;
}
address{
	font-style:normal;
}

/* _____________________________________________________________________ ALIGN */

.align_left{
	text-align:left;
}

.align_center{
	text-align:center;
}

.align_right{
	text-align:right;
}


.f_clear{
	display: block;
	font-size: 0px;
	line-height: 0em;
	clear: both;
}

/*-----------------header-----------------*/

#header_area{
	height: 82px;
	padding: 0 20px;
	box-sizing: border-box;
}
#header_area>div{
	padding: 10px 0 0;
	box-sizing: border-box;
	position: relative;
	z-index: 999;
}
#header_area h1{
	width: 100%;
	max-width: 42px;
	margin: 0 auto;
	padding: 0;
	font-size: 12px;
	line-height: 1em;
}
#header_area h1 img{
	display: block;
	width: 100%;
}
#header_area>div>a.logo{
	display: block;
	width: 100%;
	max-width: 42px;
	margin: 0 auto;
	padding: 0;
	font-size: 12px;
	line-height: 1em;
}
#header_area>div>a.logo img{
	display: block;
	width: 100%;
}

#switchbtn_area{
	display: block;
	width: 30px;
	padding: 50px 0 0;
	box-sizing: border-box;
	position: absolute;
	top: 10px;
	right: 0;
}
#switchbtn_area #switchbtn{
    display: block;
    width: 100%;
    height: 22px;
    margin: 0 auto;
    text-align: center;
    position: absolute;
    top: 19px;
    right: 0;
    left: 0;
}
#switchbtn_area #switchbtn span{
	display: block;
	width: 100%;
	height: 2px;
	position: absolute;
	left: 0;
	background-color: #000;
	transition: all 0.2s linear;
}
#switchbtn_area #switchbtn span:nth-of-type(1){
	top: 0;
	-webkit-transform: rotate(0);
	transform: rotate(0);
}

#switchbtn_area #switchbtn span:nth-of-type(2){
	top: 10px;
	-webkit-transform: scale(1);
	transform: scale(1);
}

#switchbtn_area #switchbtn span:nth-of-type(3){
	bottom: 0;
	-webkit-transform: rotate(0);
	transform: rotate(0);
}

#switchbtn_area #switchbtn.btnClose span:nth-of-type(1){
	top: 10px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#switchbtn_area #switchbtn.btnClose span:nth-of-type(2){
	-webkit-transform: scale(0);
	transform: scale(0);
}
#switchbtn_area #switchbtn.btnClose span:nth-of-type(3){
	bottom: 10px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

#header_area nav{
	display: none;
	width: 100%;
	padding: 15px 20px;
	box-sizing: border-box;
	background-color: #396131;
	position: absolute;
	top: 82px;
	right: 0;
}
#header_area nav ul{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0;
	text-align: center;
	list-style-type: none;
	overflow: hidden;
}
#header_area nav ul li{
	display: inline-block;
	width: auto;
	margin: 0;
	border-right: solid 1px #fff;
}
#header_area nav ul li:last-child{
	border-right: none;
}
#header_area nav ul li a{
	display: block;
	width: 100%;
	padding: 5px 25px;
	box-sizing: border-box;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	line-height: 1em;
}

@media screen and (max-width: 660px){
	#header_area{
		height: 74px;
	}
	#header_area>div{
		width: 100%;
		max-width: 1100px;
		margin: 0 auto;
		padding: 10px 0 0;
		box-sizing: border-box;
		position: relative;
		z-index: 999;
	}
	#header_area h1{
		width: 100%;
		max-width: 35px;
	}
	#header_area>div>a.logo{
		width: 100%;
		max-width: 35px;
	}

	#switchbtn_area{
		position: absolute;
		top: 7px;
		right: 0;
	}

	#header_area nav{
		width: 100%;
		padding: 0 20px;
		top: 74px;
		right: 0;
	}
	#header_area nav ul{
		width: 100%;
		max-width: 1100px;
		margin: 0 auto;
		padding: 0;
		text-align: center;
		list-style-type: none;
		overflow: hidden;
	}
	#header_area nav ul li{
		display: block;
		width: auto;
		margin: 0;
		border-right: none;
		border-bottom: solid 1px #fff;
	}
	#header_area nav ul li:last-child{
		border-right: none;
		border-bottom: none;
	}
	#header_area nav ul li a{
		display: block;
		width: 100%;
		padding: 16px 0;
	}
}


/*-----------------footer-----------------*/

#footer_area{
	width: 100%;
	margin: 0 auto;
	padding: 35px 20px 50px;
	box-sizing: border-box;
	border-top: solid 1px #000;
	text-align: center;
}
#footer_area>a{
	color: #000;
	text-decoration: none;
}
#footer_area #footer_logo{
	display: block;
	width: 100%;
	max-width: 50px;
	margin: 0 auto 15px;
}
#footer_area #footer_name{
	display: block;
	font-size: 14px;
	line-height: 1em;
	margin: 0 0 25px;
	font-weight: bold;
}

#footer_area #footer_link{
	width: 100%;
	margin: 0 0 30px;
	padding: 0;
	list-style-type: none;
	text-align: center;
}
#footer_area #footer_link li{
	display: inline-block;
	width: auto;
	margin: 0;
	border-right: solid 1px #000;
}
#footer_area #footer_link li#to_aquashop,
#footer_area #footer_link li:last-child{
	border-right: none;
}
#footer_area #footer_link li a{
	display: block;
	padding: 0 10px;
	box-sizing: border-box;
	font-size: 14px;
	line-height: 1em;
	color: #000;
	text-decoration: none;
}

#footer_area #footer_link li#to_aquashop{
	display: block;
	width: 100%;
	max-width: 190px;
	margin: 0 auto 10px;
}
#footer_area #footer_link li#to_aquashop a{
	background-color: #000;
	color: #fff;
	padding: 10px 15px;
	border-radius: 2px;
}



#footer_area address{
	font-size: 14px;
	line-height: 1.5em;
}
#footer_area address a{
	color: #000;
	text-decoration: none;
}
#footer_area address a:hover{
	text-decoration: underline;
}
#footer_area small{
	display: block;
	font-size: 11px;
	margin: 25px 0 0;
	font-family: 'Verdana', sans-serif;
}

@media screen and (max-width: 660px){
	#footer_area{
		padding: 25px 20px 50px;
	}
	#footer_area address{
		font-size: 13px;
		line-height: 1.5em;
	}
	#footer_area address a:hover{
		text-decoration: underline;
	}
}




#link.k-119{
	background-color: #fbf4e9;
}
#link a{
	display: block;
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
	padding: 40px 60px;
	box-sizing: border-box;
	overflow: hidden;
	text-decoration: none;
	color: #000;
}
#link a .pic{
	display: block;
	width: 46%;
	float: left;
}
#link a .pic img{
	display: block;
	width: 100%;
	max-width: 360px;
	margin: 0 auto;
}

#link.k-119 a{
	max-width: 700px;
}
#link.k-119 a .pic img{
	max-width: 160px;
}

#link a .text{
	width: 48%;
	float: right;
	padding: 15px 0 0;
}
#link a .text h3{
	width: 100%;
	max-width: 170px;
	font-size: 12px;
	line-height: 1em;
	margin: 0 auto 30px;
	padding: 0;
}
#link a .text p{
	font-size: 16px;
	line-height: 1.8em;
	margin: 0;
}
#link a .text p span{
	display: block;
	width: 100%;
	max-width: 180px;
	font-size: 14px;
	text-align: center;
	margin: 20px auto 0;
	text-decoration: none;
	color: #000;
	border: solid 1px #000;
	background-image: url('../img/interface/arrow.svg');
	background-repeat: no-repeat;
	background-position: 92% center;
	background-size: 8px auto;
}

@media screen and (max-width: 660px){
	#link a{
		margin: 0 auto;
		padding: 60px 20px;
	}
	#link.k-119 a{
		margin: 0 auto;
		padding: 40px 20px 60px;
	}
	#link a .pic{
		display: block;
		width: 100%;
		max-width: 300px;
		margin: 0 auto 20px;
		float: none;
	}
	#link a .pic img{
		display: block;
		width: 90%;
		max-width: 360px;
		margin: 0 auto;
	}

	#link a .text{
		width: 100%;
		max-width: 450px;
		float: none;
		margin: 0 auto;
		padding: 15px 0 0;
	}
	#link a .text h3{
		width: 100%;
		max-width: 120px;
		margin: 0 auto 20px;
		padding: 0;
	}
	#link a .text p{
		font-size: 16px;
		line-height: 1.8em;
		margin: 0;
	}
}


