@charset "utf-8";
/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

Layout CSS

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/

/* header
-------------------------------------------- */

@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
/*
body {
	font-family: 'Noto Sans JP', sans-serif;
	color:#444;
}*/
header {
	width:100%;
	margin: auto;
	padding: 10px 0;
	/*background-color: #15365E;*/
	z-index: 1040;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	background-color: #FFF;
}
header .inner {
	max-width: 1020px;
	margin: 0 auto;
	padding: 0 10px;
	position: relative;
}
header .inner .logo {
	width: 180px;
	height: auto;
	position: absolute;
	left: 10px;
	top: 10px;
}
header nav {
	background-color: #FFF;
	padding: 0;
}
header nav p.headerPc {
	height: 100px;
	margin: 0 auto 10px;
	text-align: right;
	color: #6A8DB7;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
	align-items: center; /* 縦方向中央揃え */
	-webkit-justify-content: flex-end; /* 横方向中央揃え（Safari用） */
	justify-content:flex-end; /* 横方向中央揃え */
}
header nav > ul {
	display: flex;
	height:50px;
	-webkit-justify-content: space-between; 
	justify-content: space-between;
	border-left: #CCD8E8 solid 1px;
}
header nav > ul > li {
	width: 100%;
	height:100%;
	max-width: 200px;
	padding: 0 5px;
	font-size: 1.3rem;
	border-right: #CCD8E8 solid 1px;
}
header nav > ul > li:first-child {
	display: none;
}
header nav > ul > li a,
header nav > ul > li span{
	position: relative;
	width:100%;
	height:100%;
	color:#000;
	display: flex;
	align-items: center;
	justify-content: center;
    text-align: center;
}
header nav > ul > li > a::before,
header nav > ul > li > span::before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: #B0D0E5;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
header nav > ul > li.headerSp:last-child {
	display: none;
}
header nav > ul > li:hover > a::before,
header nav > ul > li:hover > span::before{
	width: 100%;
}
header nav > ul > li:first-child img,
header nav > ul > li:nth-child(2) img,
header nav > ul > li:last-child img {
	display: none;
}

section.btnArea ul {
	max-width: 500px;
	margin: 100px auto;
	text-align: center;
}
section.btnArea ul li {
	width: 100%;
	text-align: center;
	border-radius: 50px;
	border: #BA79B1 solid 1px;
	margin: 0 0 10px;
	position: relative;
}
section.btnArea ul li a {
	padding: 10px 0;
	display: block;
	color: #BA79B1;
}
section.btnArea ul li a.arrow::after{
	position: absolute;
	margin: auto;
	content: "";
	vertical-align: middle;
	top: 50%;
	right: 20px;
	width: 10px;
	height: 10px;
	
	-webkit-transform: rotate(45deg) translate(-50%, 0);
	-moz-transform: rotate(45deg) translate(-50%, 0);
	-ms-transform: rotate(45deg) translate(-50%, 0);
	-o-transform: rotate(45deg) translate(-50%, 0);
	transform: rotate(45deg) translate(-50%, 0);
}
section.btnArea ul li a.arrow::before{
	position: absolute;
	margin: auto;
	content: "";
	vertical-align: middle;
	top: 50%;
	right: 10px;
	width: 10px;
	height: 10px;
	
	-webkit-transform: rotate(45deg) translate(-50%, 0);
	-moz-transform: rotate(45deg) translate(-50%, 0);
	-ms-transform: rotate(45deg) translate(-50%, 0);
	-o-transform: rotate(45deg) translate(-50%, 0);
	transform: rotate(45deg) translate(-50%, 0);
}
section.btnArea ul li.num1 a.arrow::before{
	border-top: 2px solid #BA79B1;
	border-right: 2px solid #BA79B1;
}
section.btnArea ul li.num1 a.arrow::after{
	border-top: 2px solid #BA79B1;
	border-right: 2px solid #BA79B1;
}
section.btnArea ul li.num2 a.arrow::before{
	border-top: 2px solid #5FCEEF;
	border-right: 2px solid #5FCEEF;
}
section.btnArea ul li.num2 a.arrow::after{
	border-top: 2px solid #5FCEEF;
	border-right: 2px solid #5FCEEF;
}
section.btnArea ul li.num3 a.arrow::before{
	border-top: 2px solid #7094C0;
	border-right: 2px solid #7094C0;
}
section.btnArea ul li.num3 a.arrow::after{
	border-top: 2px solid #7094C0;
	border-right: 2px solid #7094C0;
}
section.btnArea ul li.num4 a.arrow::before{
	border-top: 2px solid #7EB47D;
	border-right: 2px solid #7EB47D;
}
section.btnArea ul li.num4 a.arrow::after{
	border-top: 2px solid #7EB47D;
	border-right: 2px solid #7EB47D;
}
section.btnArea ul li.num5 a.arrow::before{
	border-top: 2px solid #BCE2E8;
	border-right: 2px solid #BCE2E8;
}
section.btnArea ul li.num5 a.arrow::after{
	border-top: 2px solid #BCE2E8;
	border-right: 2px solid #BCE2E8;
}
section.btnArea ul li.num6 a.arrow::before{
	border-top: 2px solid #B0D0E5;
	border-right: 2px solid #B0D0E5;
}
section.btnArea ul li.num6 a.arrow::after{
	border-top: 2px solid #B0D0E5;
	border-right: 2px solid #B0D0E5;
}
section.btnArea ul li.num8 a.arrow::before{
	border-top: 2px solid #bf9e86;
	border-right: 2px solid #bf9e86;
}
section.btnArea ul li.num8 a.arrow::after{
	border-top: 2px solid #bf9e86;
	border-right: 2px solid #bf9e86;
}

.product section.btnArea ul li.num6 a.arrow::before{
	border-top: 2px solid #FFF;
	border-right: 2px solid #FFF;
}
.product section.btnArea ul li.num6 a.arrow::after{
	border-top: 2px solid #FFF;
	border-right: 2px solid #FFF;
}


section.btnArea ul li.num2 {
	border: #5FCEEF solid 1px;
}
section.btnArea ul li.num2 a {
	color: #5FCEEF;
}
section.btnArea ul li.num3 {
	border: #7094C0 solid 1px;
}
section.btnArea ul li.num3 a {
	color: #7094C0;
}
section.btnArea ul li.num4 {
	border: #7EB47D solid 1px;
}
section.btnArea ul li.num4 a {
	color: #7EB47D;
}
section.btnArea ul li.num5 {
	border: #26B7BC solid 1px;
}
section.btnArea ul li.num5 a {
	color: #26B7BC;
}
section.btnArea ul li.num6 {
	border: #B0D0E5 solid 1px;
}
section.btnArea ul li.num6 a {
	color: #B0D0E5;
}
section.btnArea ul li.num8 {
	border: #bf9e86 solid 1px;
}
section.btnArea ul li.num8 a {
	color: #bf9e86;
}
/*.forty section.btnArea ul li.num6,
.flow section.btnArea ul li.num6 {
	display: none;
}*/
.product section.btnArea ul li.num7 {
	display: none;
	border: none;
	background: #6D8EB8;
}
.product section.btnArea ul li.num7 a {
	color: #FFF;
}
 

/* footer
-------------------------------------------- */

footer .copy {
	display: block;
	text-align: center;
	padding: 18px 0 16px;
	background-color: #B0D0E5;
	color: #FFF;
}
br.pc {
	display: block;
}
br.sp {
	display: none;
}

@media screen and (max-width: 1030px) {

	header nav > ul > li {
		font-size: 1.1rem;
	}
	header nav > ul > li:first-child {
		border-left: #CCD8E8 solid 1px;
	}
	header nav > ul > li:nth-child(2) {
		max-width: 100px;
	}
	header nav > ul > li:nth-child(7) {
		max-width: 90px;
	}
}

@media screen and (max-width: 800px) {
	header {
		position: fixed;
		top: 0;
		left: 0;
	}
	header nav p.headerPc {
		display: none;
	}
	header .inner .logo {
		display: none;
	}
	header nav > ul {
		border: none;
	}
	header nav > ul > li {
		width: 33.33333%;
		max-width: none !important;
        font-size: 1.3rem;
	}
	header nav > ul > li:first-child {
		display: block;
	}
	header nav > ul > li:nth-child(3),
	header nav > ul > li:nth-child(4),
	header nav > ul > li:nth-child(5),
	header nav > ul > li:nth-child(6){
		display: none;
	}
	header nav > ul > li.headerSp:last-child {
		display: block;
		border: none;
	}
	header nav > ul > li:first-child img,
	header nav > ul > li:nth-child(2) img,
	header nav > ul > li:last-child img {
		display: block;
		vertical-align: middle;
		width: auto;
		height: 15px;
		margin-right: 5px;
	}
	.contents {
		margin: 70px auto 0!important;
	}
}

@media screen and (max-width: 640px) {
	section.btnArea ul li {
		width: calc(100% - 20px);
		margin: 0 auto 10px;
		font-size: 3vw;
	}
}

@media screen and (max-width: 460px) {
	header .inner {
		padding: 0 5px;
	}
	.mainimg h2,
	.menu .mainimg h2 {
		width: 100%;
		font-size: 9vw !important;
		padding: 0 10px;
		text-align: center;
		left: 0;
	}
	.mainimg h2 br,
	.menu .mainimg h2 br {
		display: block;
	}

	/* グローバルナビ */
	#header .gnav_trigger {
		width: 40px;
		height: 40px;
		top: 35px;
		right: 10px;
	}
	#header .gnav_trigger span {
		top: 9px;
		left: 8px;
		width: 20px;
	}
	#header .gnav_trigger span::before,
	#header .gnav_trigger span::after {
		top: 8px;
	}
	#header .gnav_trigger span::after {
		top: 16px;
	}
	header {
		padding: 0;
	}
	header nav > ul {
		height:auto;
	}
	header nav > ul > li:first-child {
		border: none;
	}
	header nav > ul > li:first-child img,
	header nav > ul > li:nth-child(2) img,
	header nav > ul > li:last-child img {
		display: block;
		vertical-align: middle;
		width: auto;
		height: 15px;
		margin-right: 5px;
	}
	header nav > ul > li {
		padding: 0;
		border: none;
		width: 33.3333%;
        font-size: 1.3rem;
	}
	header nav > ul > li > a::before,
	header nav > ul > li > span::before {
		content: none;
	}
	header nav > ul > li a {
		padding: 15px 0;
		color: #6D8EB8;
		font-size: 1.7rem;
		line-height: 1;
	}
	header nav > ul > li:first-child {
		width: 20%;
	}
	header nav > ul > li:first-child a {
		padding: 15px 0;
	}
	header nav > ul > li:nth-child(2) {
		width: 40%;
	}
	header nav > ul > li:last-child  {
		width: 40%;
	}
	
	/*
	header nav > ul > li:last-child {
		width: 33%;
	}*/
	br.pc {
		display: none;
	}
	br.sp {
		display: block;
	}
	section.btnArea ul {
		margin: 10vw auto;
	}
	section.btnArea ul li {
		font-size: 4.5vw;
	}
	.forty section.btnArea ul li.num6,
	.flow section.btnArea ul li.num6 {
		display: block;
	}
	.product section.btnArea ul li.num7 {
		display: block;
	}
	.contents {
		margin: 55px auto 0 !important;
	}
}

@media screen and (max-width: 360px) {
	header h1 {
		top:16px;
	}
	header h1 img {
		height:26px;
	}
}
