@charset "UTF-8";

/* 共通設定 */
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 736px) {
}


/* ローディング */
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 736px) {
}


/* ヘッダー */
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 99;
	display: flex;
	justify-content: space-between;
	box-shadow: 0 4px 4px 0 rgba(0,0,0,.1);
}
#header h1 {
	padding: 15px 30px;
}
@media screen and (max-width: 1024px) {
	#header {
		justify-content: center;
		flex-wrap: wrap;
	}
	#header h1 {
		text-align: center;
		padding: 20px 30px 10px;
	}
}
@media screen and (max-width: 736px) {
	#header h1 {
        padding: 10px 50vw 10px 3vw;
		text-align: left;
	}
}


/* トグル */
#toggle {
	display: none;
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 736px) {
	#toggle {
		position: absolute;
		top: 50%;
		right: 4vw;
		transform: translateY(-50%);
		width: 30px;
		height: 21px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: flex-end;
		cursor: pointer;
		z-index: 99;
		transition: all 0.5s;
	}
	#toggle span {
		height: 3px;
		transition: all 0.5s;
	}
	#toggle span:nth-child(1) {
		width: 100%;
	}
	#toggle span:nth-child(2) {
		width: 70%;
	}
	#toggle span:nth-child(3) {
		width: 40%;
	}
	.gnav-show #toggle span {
		background-color: #fff !important;
	}
	.gnav-show #toggle span:nth-child(1) {
		transform: translateY(9px) rotate(45deg);
	}
	.gnav-show #toggle span:nth-child(2) {
		opacity: 0;
	}
	.gnav-show #toggle span:nth-child(3) {
		transform: translateY(-9px) rotate(-45deg);
	}
	.gnav-show #toggle span {
		width: 100% !important;
	}
}


/* グロナビ */
#gnav {
	display: flex;
	justify-content: flex-end;
	flex: 1 0 auto;
}
#gnav .menu-main-menu-container {
	display: flex;
}
#gnav .menu {
	display: flex;
}
#gnav .menu li {
	display: flex;
	align-items: stretch;
	margin-right: 30px;
}
#ctaBtn {
	display: flex;
	align-items: stretch;
}
#gnav .menu li a,
#ctaBtn a {
	font-size: 15px;
	font-weight: bold;
	position: relative;
	text-align: center;
	line-height: 1.4;
	display: flex;
	align-items: center;
}
#gnav .menu li a {
	padding: 20px 0;
}
#ctaBtn a {
	padding: 20px;
}
#gnav .menu li a .sm {
	font-size: 12px;
}
#gnav .sns-menu {
	justify-content: center;
	display: none;
}
#gnav .sns-menu li {
	width: 18px;
	margin: 10px 10px;
}
#gnav .sns-menu li a {
	font-size: 24px;
	opacity: .5;
}
.pc #gnav .sns-menu li a:hover {
	opacity: 1;
}
.pc #ctaBtn a:hover {
}
@keyframes gnavFade {
	0% {
		opacity: 0;
		left: 20%;
	}
	100% {
		opacity: 1;
		left: 0;
	}
}
@media screen and (max-width: 1024px) {
	#gnav {
		justify-content: center;
	}
	#gnav .menu li:last-child {
		margin-right: 0;
	}
	#gnav .menu li a,
	#ctaBtn a {
		font-size: 15px;
	}
}
@media screen and (max-width: 736px) {
	#gnav {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 0%;
		z-index: 98;
		visibility: hidden;
		opacity: 0;
		transition: opacity .5s, visibility .5s, height .5s;
		border-top: none;
		flex-direction: column;
	}
	.gnav-show #gnav {
		opacity: 1;
		visibility: visible;
		height: 100%;
	}
	#gnav .menu-main-menu-container {
		height: 100%;
	}
	#gnav .menu {
		position: relative;
		top: 50%;
		transform: translateY(-50%);
		width: 100%;
		text-align: center;
		flex-direction: column;
		justify-content: center;
	}
	#gnav .menu li {
		animation: gnavFade .5s ease forwards;
		margin-right: 0 !important;
	}
	.gnav-show #gnav .menu li:nth-child(1) {animation-delay: .35s;}
	.gnav-show #gnav .menu li:nth-child(2) {animation-delay: .4s;}
	.gnav-show #gnav .menu li:nth-child(3) {animation-delay: .45s;}
	.gnav-show #gnav .menu li:nth-child(4) {animation-delay: .5s;}
	.gnav-show #gnav .menu li:nth-child(5) {animation-delay: .55s;}
	.gnav-show #gnav .menu li:nth-child(6) {animation-delay: .6s;}
	.gnav-show #gnav .menu li:nth-child(7) {animation-delay: .65s;}
	.gnav-show #gnav .menu li:nth-child(8) {animation-delay: .7s;}
	.gnav-show #gnav .menu li:nth-child(9) {animation-delay: .75s;}
	.gnav-show #gnav .menu li:nth-child(10) {animation-delay: .8s;}
	#gnav .menu li a {
		font-size: 4.5vw;
		color: #fff !important;
		border-bottom: none;
		padding: 4vw 0px;
	}
	#gnav .menu li a,
	#ctaBtn a {
		width: 100%;
		display: block;
	}
	#gnav .sns-menu {
		position: absolute;
		right: 0;
		bottom: 5vw;
		width: 100%;
		justify-content: space-around;
		display: none;
	}
	#gnav .sns-menu li {
		width: 14vw;
		margin-left: 0;
		text-align: center;
	}
	#gnav .sns-menu li a {
		font-size: 7vw;
		display: block;
	}
	#ctaBtn a {
		font-size: 5vw;
		border-bottom: none;
	}
}
