@charset "UTF-8";

/* header
----------------------------------------*/
.header{
	padding: 40px 3%;
	background-color: #fff;
}
.header-inner{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	max-width: 1000px;
	margin: 0 auto;
}
.header-catch{
	width: calc(100% - 69% - 20px);
	font-feature-settings: "palt";
	font-size: 2.0rem;
  font-weight: 800;
}
.header-catch span{
	background: linear-gradient(transparent 60%, #b1e1f1 50%);
}
.header-logo{
	width: 69%;
}

@media screen and (max-width: 767px){
	.header{
		padding: 20px 3%;
	}
	.header-catch{
		width: 100%;
		font-size: 1.8rem;
	  text-align: center;
	}
	.header-logo{
		width: 100%;
	  margin-top: 20px;
	}
}


/* nav
----------------------------------------*/
.nav{
	padding: 10px 0;
	background: linear-gradient(90deg,#63c4e4,#d467a1,#f1c155);
}
.nav-list{
	display: flex;
	max-width: 1000px;
	margin: 0 auto;
}
.nav-list li{
	position: relative;
	display: flex;
  align-items: center;
	width: 25%;
}
.nav-list li::before,
.nav-list li:last-of-type::after{
	position: absolute;
	top: 0;
	width: 1px;
	height: 100%;
	background-color: #fff;
	content: "";
}
.nav-list li::before{
	left: 0;
}
.nav-list li:last-of-type::after{
	right: 0;
}
.nav-list li a{
	display: block;
	width: 100%;
	padding: 18px 5px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
	transition: 0.3s;
}
.nav-list li a:hover{
	opacity: 0.8;
}

@media screen and (max-width: 1000px){
	.nav-list li:first-of-type:before,
	.nav-list li:last-of-type::after{
		background-color: transparent;
	}
}

@media screen and (max-width: 850px){
	.nav-list li a br.spview{
		display: block;
		}
}

@media screen and (max-width: 767px){
	.nav-list li a{
		padding: 18px 2px;
		font-size: 1.4rem;
	}
}


/* contact
----------------------------------------*/
.contact{
	position: relative;
	margin-top: 45px;
  padding-top: 50px;
}
.contact::before{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg,#63c4e4,#d467a1,#f1c155);
	content: "";
}
.contact-heading{
	margin-bottom: 35px;
	font-size: 2.2rem;
	font-weight: 700;
	text-align: center;
}
.contact-logo{
  margin: 0 auto;
}
.contact-logo.w200{
	max-width: 200px;
}
.contact-logo.w250{
	max-width: 250px;
}
.contact-logo.w300{
	max-width: 300px;
}
.contact-logo a{
	display: block;
	transition: 0.8s;
}
.contact-logo a:hover{
	opacity: 0.8;
}
.contact-link{
	font-size: 2.6rem;
	font-weight: 700;
	text-align: center;
}
.contact-link a{
	text-decoration: none;
}
.contact-link a:hover{
	text-decoration: underline;
}

@media screen and (max-width: 767px){
	.contact{
		margin-top: 30px;
	  padding-top: 35px;
	}
	.contact-heading{
		margin-bottom: 25px;
	  font-size: 2.0rem;
	}
	.contact-link{
		font-size: 2.4rem;
	}
}
