@charset "UTF-8";
/*
 * CSS base.css
 */
/* ---------------------------------------
base
--------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700|Sawarabi+Gothic&subset=japanese');

body {
	color: #4d4d4d;
	font-size: 15px;
	line-height: 1.8;
	font-family: 'Sawarabi Gothic','Noto Sans JP','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,sans-serif;
	letter-spacing: -0.001em;
	max-height: 999999px;
	background: #fff;
	-webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 767px) {
	body{
		font-size: 14px;
	}
}


a{
	color: #4d4d4d;
	text-decoration: underline;
	transition: 0.3s;
}

a:hover, a:active, a:focus {
	text-decoration: none;
}



/* ---------------------------------------
wrapper
--------------------------------------- */
.wrapper{
	min-width: 1230px;
	overflow: hidden;
}
@media screen and (max-width: 767px){
	.wrapper{
		min-width: 1px;
	}
}


#header{
	height: 100px;
	background: #81d0bb;
	position: relative;
}
#header .logo{
	position: absolute;
	top: 40px;
	left: 0;
	z-index: 10;
}
#header .logo img{
	width: 76px;
}
#header #gnav .nav_list{
	text-align: center;
	padding-top: 30px;
}
#header #gnav .nav_list li{
	display: inline-block;
	margin: 0 48px;
	position: relative;
}
#header #gnav .nav_list li.current:after{
	content: "";
	display: block;
	border: 8px solid transparent;
	border-bottom: 14px solid #F0F0F0;
	position: absolute;
	bottom: -23;
	left: 50%;
	margin-left: -8px;
}
#header #gnav .nav_list li a{
	display: block;
	text-decoration: none;
}
#header #gnav .nav_list li a:hover{
	opacity: 0.7;
}
#header #gnav .nav_list li a .txt1{
	letter-spacing: 0.1em;
}
#header #gnav .nav_list li a .txt2{
	color: #fff;
	font-size: 0.8em;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 767px){
	#header{
		height: 60px;
	}
	#header .logo{
		top: 15px;
	}
	#header .logo img{
		width: 60px;
	}
	#header #gnav{
		width: 100%;
		height: 100%;
		background: #81D0BB;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 100;
	}
	#header #gnav .nav_list{
		padding-top: 70px;
	}
	#header #gnav .nav_list li{
		display: block;
		margin: 0 0 20px;
	}
	#header #gnav .nav_list li.current:after{
		display: none;
	}
	#header #gnav .nav_list li a .txt1{
		font-size: 1.2em;
	}
	#header #gnav .nav_list li a .txt2{
		font-size: 1em;
	}
}


.btn_menu{
	display: none;
}
@media screen and (max-width: 767px){
	.btn_menu,
	.btn_menu span{
		display: inline-block;
		transition: all .4s;
		box-sizing: border-box;
	}
	.btn_menu{
		display: block;
		position: fixed;
		top: 16px; right: 20px;
		width: 30px;
		height: 34px;
		z-index: 100;
		cursor: pointer;
	}
	.btn_menu span{
		position: absolute;
		left: 0;
		width: 100%; height: 2px;
		background: #4d4d4d;
	}
	.btn_menu span:nth-of-type(1){ top: 0; }
	.btn_menu span:nth-of-type(2){ top: 12px; }
	.btn_menu p{ font-size: 0.7em; position: absolute; top: 18px; }
	.btn_menu.is-active {
		/*top: 10px; right: 22px;*/
	}
	.btn_menu.is-active span:nth-of-type(1){
		-webkit-transform: translateY(5px) translateX(0) rotate(-45deg);
		transform: translateY(5px) translateX(0) rotate(-45deg);
	}
	.btn_menu.is-active span:nth-of-type(2){
		-webkit-transform: translateY(-7px) translateX(0) rotate(45deg);
		transform: translateY(-7px) translateX(0) rotate(45deg);
	}
	@-webkit-keyframes active-menu-bar{
		100%{ height: 0; }
	}
	@keyframes active-menu-bar{
		100%{ height: 0; }
	}
}




#content{
	min-height: 400px;
}
@media screen and (max-width: 767px) {
	#content{
		min-height: 1px;
	}
}


#cnt_main{
	min-height: 1000px;
}
@media screen and (max-width: 767px){
	#cnt_main{
		min-height: 1px;
	}
}

#footer{
	background: #333333;
	color: #fff;
	padding: 30px 0 40px;
}
#footer .footer_in{
	max-width: 1200px;
	margin: 0 auto;
}
#footer .f_top{
	padding-bottom: 24px;
	border-bottom: 1px solid #81D0BB;
	margin-bottom: 18px;
}
#footer .f_top .f_logo{
	float: left;
}
#footer .f_logo img{
	width: 90px;
}
#footer .f_top .nav_wrap{
	float: right;
	padding-top: 12px;
}
#footer .f_top .nav_wrap .txt1{
	font-size: 1.53em;
	text-align: right;
	letter-spacing: 0.2em;
	margin-bottom: 23px;
}
#footer .f_top .nav_wrap .navlist li{
	display: inline-block;
	margin-left: 30px;
}
#footer .f_top .nav_wrap .navlist li a{
	color: #fff;
	text-decoration: none;
	letter-spacing: 0.1em;
}
#footer .f_top .nav_wrap .navlist li a:hover{
	opacity: 0.7;
}

#footer .f_bottom .navlist{
	float: left;
}
#footer .f_bottom .navlist li{
	display: inline-block;
	margin-right: 10px;
}
#footer .f_bottom .navlist li a{
	color: #fff;
	text-decoration: none;
	font-size: 0.8em;
	letter-spacing: 0.1em;
}
#footer .f_bottom .navlist li a:hover{
	opacity: 0.7;
}
#footer .f_bottom .copy{
	float: right;
	font-size: 0.67em;
	letter-spacing: 0.1em;
	margin-top: 5px;
}
@media screen and (max-width: 767px){
	#footer{
		background: #333333;
		color: #fff;
		padding: 30px 0;
	}
	#footer .footer_in{
		width: 92%;
	}
	#footer .f_top{
		padding-bottom: 15px;
		margin-bottom: 13px;
	}
	#footer .f_top .f_logo{
		float: none;
		text-align: center;
		margin-bottom: 20px;
	}
	#footer .f_logo img{
		width: 100px;
	}
	#footer .f_top .nav_wrap{
		float: none;
		padding-top: 0;
	}
	#footer .f_top .nav_wrap .txt1{
		font-size: 1.3em;
		text-align: center;
		margin-bottom: 10px;
	}
	#footer .f_top .nav_wrap .navlist li{
		display: block;
		text-align: center;
		margin-left: 0;
	}
	#footer .f_bottom .navlist{
		float: none;
		text-align: center;
		margin-bottom: 15px;
	}
	#footer .f_bottom .navlist li{
		margin: 0 6px;
	}
	#footer .f_bottom .navlist li a{
		font-size: 0.9em;
	}
	#footer .f_bottom .copy{
		float: none;
		font-size: 0.75em;
		text-align: center;
		margin-top: 0;
	}
}



#pagetop{
	display: table;
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 10;
}
#pagetop a{
	text-decoration: none;
	display: table-cell;
	width: 60px;
	height: 60px;
	text-align: center;
	vertical-align: middle;
	background: #fff;
	font-size: 0.9em;
	line-height: 1.3;
	border-radius: 50%;
}
@media screen and (max-width: 767px){
	#pagetop{
		bottom: 20px;
		right: 20px;
	}
	#pagetop a{
		width: 50px;
		height: 50px;
		font-size: 0.8em;
	}
}

