@charset "utf-8";
/* CSS Document */

header {
	width: 100%;
	background-color: rgb(241,241,241);
	padding: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: sticky;
	top: 0;
	z-index: 10;
}

#logo{
	flex: 0 1 20%;
	display: block;
	margin-left: auto;
	margin-right: auto;
}


nav{
	flex: 0 1 45%;
}

.gnavi ul {
	display: flex;
	flex: 0 1 50%;
	flex-flow: row wrap;
	justify-content: flex-start;
	white-space: nowrap;

}

.gnavi ul li:not(:last-of-type) {
  margin-right: 40px;
}



.gnavi>ul>li>a::before{
  font-family: "Font Awesome 5 Free";
  content: '\f138';/*unicodeを使ってアイコンを挿入*/
  font-size: 13px;/*サイズは自由に変更*/
  font-weight: 900;/*SOLIDは900にしないと表示できない*/
  margin-right: 6px;/*文字との隙間を調整*/
  color: #32323F;/*色は自由に変更*/
}

.gnavi ul li a{
	color: #ad3871;
	font-weight: bold;
	transition: .5s;
	display: inline-block;
}

.gnavi ul li a:hover{
	color: #DF85B7;
	font-weight: bold;
	transform: translate(1.5px,0px);
}

.section h2 {
    padding-top: 100px;
    margin-top:-100px;
}