@charset "UTF-8";
/*
 * CSS base.css
 */

/* ---------------------------------------
base
--------------------------------------- */
html{
	font-size: 62.5%;
}
body {
	color: #333333;
	font-size: 1.6rem;
	line-height: 1.8;
	font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, 'ヒラギノ角ゴ Pro W3', sans-serif;
	text-align: justify;
	letter-spacing: 0.02em;
	max-height: 999999px;
	-webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 767px) {
	body{
		font-size: 1.3rem;
	}
}

a {
	color: #1a1a1a;
	text-decoration: underline;
}

a:hover, a:active, a:focus {
	text-decoration: none;
}

sup {
	vertical-align:text-top;
	font-size: 1.0rem;
	top: -4px;
	position: relative;
}


/* ---------------------------------------
wrapper
--------------------------------------- */
.wrapper{
	min-width: 1300px;
	overflow-x: hidden;
}
@media screen and (max-width: 1300px) {
	.wrapper{
		min-width: 1px;
	}
}


#header{
	width: 90px;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 101;
	background: #fff;
	border-right: 1px solid #C5C5C5;
}
#header .logo{
	position: absolute;
	top: calc(50% - 86px);
	left: 18px;
}
#header .logo a{
	display: block;
}
#header .logo a img{
	width: 55px;
}
#header .pagetop a{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 90px;
	align-items: center;
	justify-content: center;
	border-top: 1px solid #C5C5C5;
	transition: 0.3s;
}
#header .pagetop a svg{
	width: 12px;
}
#header .pagetop a svg polyline{
	fill:none;
	stroke:#333;
	stroke-miterlimit:10;
	stroke-width:2px;
}
#header .pagetop a:hover{
	background: #5cc4c0;
}
#header .pagetop a:hover svg polyline{
	stroke:#fff;
}
#header .logo_txt{
	display: none;
}
@media screen and (max-width: 767px) {
	#header{
		width: 100%;
		height: 50px;
		border-right: none;
		border-bottom: 1px solid #C5C5C5;
	}
	#header .logo{
		top: 0;
		left: auto;
		right: 0;
	}
	#header .logo a{
		padding: 8px 10px;
	}
	#header .logo a img{
		width: 38px;
		padding-left: 10px;
		border-left: 1px solid #e4e4e4;
	}
	#header .logo_txt{
		width: 145px;
		margin: 9px auto 0;
		display: block;
	}

	#header .pagetop a{
		position: fixed;
		left: auto;
		right: 0;
		width: 48px;
		height: 48px;
		border-left: 1px solid #C5C5C5;
		background: rgba(255,255,255, 0.6);
		transition: 0.8s;
	}
	#header .pagetop.is-hide a{
		bottom: -100%;
	}
}




#header .menu_wrap{
	position: absolute;
	top: 0;
	left: 0;
	height: 120px;
	width: 100%;
	background: #5cc4c0;
}
#header .menu_btn{
	cursor: pointer;
	position: absolute;
	top: 46px;
	right: 30px;
	z-index: 10000;
	width: 28px;
	height: 22px;
}
#header .menu_btn span{
	width: 100%;
	display: block;
	position: absolute;
	height: 1px;
	left: 0;
	background: #fff;
	transition: all .4s;
}
#header .menu_btn span:nth-child(1){
	top: 0;
}
#header .menu_btn span:nth-child(2){
	top: 50%;
}
#header .menu_btn span:nth-child(3){
	top: 101%;
}
#header .menu_wrap.is-active{
	background: #f9ebe5;
}
#header .menu_wrap.is-active span{
	background: #333;
}
#header .is-active .menu_btn span:nth-of-type(1) {
	-webkit-transform: translateY(10px) rotate(-45deg);
	transform: translateY(10px) rotate(-45deg);
}
#header .is-active .menu_btn span:nth-of-type(2) {
	left: 50%;
	opacity: 0;
	-webkit-animation: menubar .8s forwards;
	animation: menubar .8s forwards;
}
#header .is-active .menu_btn span:nth-of-type(3) {
	-webkit-transform: translateY(-12px) rotate(45deg);
	transform: translateY(-12px) rotate(45deg);
}
@-webkit-keyframes menubar {
	100% {
		height: 0;
	}
}
@keyframes menubar {
	100% {
		height: 0;
	}
}
@media screen and (max-width: 767px) {
	#header .menu_wrap{
		height: 50px;
		width: 50px;
	}
	#header .menu_btn{
		top: 15px;
		right: 15px;
		width: 20px;
		height: 16px;
	}
	#header .is-active .menu_btn span:nth-of-type(1) {
		-webkit-transform: translateY(9px) rotate(-45deg);
		transform: translateY(9px) rotate(-45deg);
	}
	#header .is-active .menu_btn span:nth-of-type(3) {
		-webkit-transform: translateY(-7px) rotate(45deg);
		transform: translateY(-7px) rotate(45deg);
	}
}






#gnav{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	transition: opacity 0.2s ease;
	opacity: 0;
	background: rgba(100,199,195, 0.95);
	overflow-y: scroll;
	overflow-x: hidden;
	z-index: -1;
}
#gnav .gnav_in{
	display: -ms-flex;
	display: flex;
}
#gnav.is-nav-active {
	height: 100vh;
	z-index: 100;
	opacity: 1;
}
#gnav ul{
	width: 70%;
	padding: 20px 0;
}
#gnav ul > li {
	position: relative;
	opacity: 0;
	transition: transform 0.5s, opacity 0.5s;
	-webkit-transform: translateX(20px);
	transform: translateX(20px);
}
#gnav ul > li a{
	padding: 15px 30px;
	color: #fff;
	font-size: 1.5rem;
	display: block;
	text-decoration: none;
	border-top: 1px solid #93d8d6;
	position: relative;
}
#gnav ul > li a.ico_blank2 svg rect{
	fill:#fff;
}
#gnav ul > li:first-child a{
	border-top: none;
}
#gnav ul > li .gnav_acd_btn span{
	position: absolute;
	top: calc(50% - 15px);
	right: 20px;
	cursor: pointer;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #fff;
}
#gnav ul > li a svg{
	width: 10px;
	transform: scale(1, -1);
}
#gnav ul > li a svg polyline{
	fill:none;
	stroke:#08878D;
	stroke-miterlimit:10;
	stroke-width:2px;
}
#gnav .gnav_acd_cnt{
	display: none;
}
#gnav ul ul{
	width: 100%;
	background: #5cc4c0;
	padding: 0 20px 0 20px;
	box-sizing: border-box;
}
#gnav .gnav_left{
	position: absolute;
	top: 0;
	left: 90px;
	width: 65%;
	/*height: 100%;*/
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px 0 20px;
	box-sizing: border-box;
}
#gnav .gnav_right{
	position: fixed;
	top: 0;
	right: 0;
	width: 35%;
	height: 100%;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background: #f9ebe6;
	padding: 20px;
	box-sizing: border-box;
}
#gnav .gnav_right p{
	margin: 15px 0;
}
#gnav .gnav_right .btn_style2{
	font-size: 1.8rem;
	text-align: left;
	width: 300px;
	padding: 28px 30px;
	justify-content: flex-start;
}
#gnav .gnav_right .btn_style2 svg{
	position: absolute;
	top: calc(50% - 5px);
	right: 25px;
}
@media screen and (max-width: 767px) {
	#gnav{
		top: 50px;
	}
	#gnav .gnav_in{
		display: block;
	}
	#gnav ul{
		width: 100%;
		padding: 0;
	}
	#gnav ul > li a{
		padding: 12px 20px;
		font-size: 1.4rem;
	}
	#gnav ul > li a span{
		top: calc(50% - 13px);
		right: 0;
		width: 26px;
		height: 26px;
	}
	#gnav .gnav_left{
		position: static;
		width: 100%;
		height: auto;
		padding: 0;
	}
	#gnav .gnav_right{
		position: static;
		width: 100%;
		height: auto;
		padding: 20px 5% 70px;
	}
	#gnav .gnav_right p{
		margin: 10px 0;
		width: 100%;
	}
	#gnav .gnav_right .btn_style2{
		width: 100%;
		font-size: 1.6rem;
		padding: 12px 10px;
	}
}


#gnav.is-nav-active ul > li {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
#gnav.is-nav-active ul > li:nth-child(1) {
	-webkit-transition-delay: 0.07s;
	transition-delay: 0.07s;
}
#gnav.is-nav-active ul > li:nth-child(2) {
	-webkit-transition-delay: 0.14s;
	transition-delay: 0.14s;
}
#gnav.is-nav-active ul > li:nth-child(3) {
	-webkit-transition-delay: 0.21s;
	transition-delay: 0.21s;
}
#gnav.is-nav-active ul > li:nth-child(4) {
	-webkit-transition-delay: 0.28s;
	transition-delay: 0.28s;
}
#gnav.is-nav-active ul > li:nth-child(5) {
	-webkit-transition-delay: 0.35s;
	transition-delay: 0.35s;
}
#gnav.is-nav-active ul > li:nth-child(6) {
	-webkit-transition-delay: 0.42s;
	transition-delay: 0.42s;
}
#gnav.is-nav-active ul > li:nth-child(7) {
	-webkit-transition-delay: 0.49s;
	transition-delay: 0.49s;
}
#gnav.is-nav-active ul > li:nth-child(8) {
	-webkit-transition-delay: 0.56s;
	transition-delay: 0.56s;
}
#gnav.is-nav-active ul > li:nth-child(9) {
	-webkit-transition-delay: 0.63s;
	transition-delay: 0.63s;
}
#gnav.is-nav-active ul > li:nth-child(10) {
	-webkit-transition-delay: 0.7s;
	transition-delay: 0.7s;
}
#gnav.is-nav-active ul > li:nth-child(11) {
	-webkit-transition-delay: 0.77s;
	transition-delay: 0.77s;
}
#gnav.is-nav-active ul > li:nth-child(12) {
	-webkit-transition-delay: 0.84s;
	transition-delay: 0.84s;
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 999px) {
}









#content{
	min-height: 400px;
	margin-left: 90px;
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 767px) {
	#content{
		margin-top: 50px;
		margin-left: 0;
		min-height: 1px;
	}
}





#footer{
	background: #666666;
}
#footer .f_inner{
	color: #fff;
	width: 1000px;
	margin: 0 auto;
	padding: 60px 0 45px;
}
#footer .f_logo{
	line-height: 1;
}
#footer .f_logo span{
	display: block;
}
#footer .f_logo .img1{
	width: 100px;
}
#footer .f_logo .txt1{
	margin-top: 10px;
	font-weight: lighter;
	font-size: 4.3rem;
}
#footer .f_logo .txt2{
	margin-top: 10px;
	font-size: 1.3rem;
	letter-spacing: 0.05em;
}
#footer .f_wrap{
	display: -ms-flex;
	display: flex;
	align-items: flex-end;
}
#footer .f_left{
	width: 270px;
}
#footer .f_center{
	width: 400px;
}
#footer .f_center a{
	color: inherit;
}
#footer .copyright{
	margin-top: 45px;
	font-size: 0.9rem;
}
@media screen and (max-width: 767px) {
	#footer .f_inner{
		width: 92%;
		padding: 30px 0 0;
	}
	#footer .f_logo{
		text-align: center;
	}
	#footer .f_logo .img1{
		margin: 0 auto;
	}
	#footer .f_logo .txt1{
		font-size: 4.2rem;
	}
	#footer .f_logo .txt2{
		font-size: 1.2rem;
	}
	#footer .f_wrap{
		display: block;
	}
	#footer .f_left{
		width: 100%;
		margin-bottom: 30px;
	}
	#footer .f_center{
		width: 100%;
		text-align: center;
		margin-bottom: 30px;
	}
	#footer .copyright{
		text-align: center;
		margin: 0;
		padding: 20px 0;
		font-size: 0.9rem;
	}
}