@charset "UTF-8";
/* CSS Document */
/* gNav
================================================== */
.gNav {
	z-index: 10;
	position: fixed;
	top: 66px;
	width: 100%;
	box-shadow: 0 5px 5px 0 rgba(0, 0, 0, .05);
	height: 42px;
}
.gNav a {
	color: #222;
	padding-right: 1em;
}
.gNavInner {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 3%;
}
.gNavMain {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.gNavMainItem {
	position: relative;
}
.gNavMainItem:not(:first-child) {
	margin-left: 30px;
}
.gNavMainItemLink {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-bottom: 16px;
	color: #222222;
	cursor: pointer;
	-webkit-transition: color .3s;
	transition: color .3s;
	font-size: 95%;
}
.gNavMainItemLink::before {
	display: block;
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 3px;
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
	background: #8ed2f4;
	-webkit-animation: mouseout-underline .3s ease-in-out;
	animation: mouseout-underline .3s ease-in-out;
	content: "";
}
.gNavMainItemLink:hover {
	color: #8ed2f4;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}
.gNavMainItemLink:hover::before {
	-webkit-animation: mouseon-underline .3s ease-in-out forwards;
	animation: mouseon-underline .3s ease-in-out forwards;
}
.gNavMainItemLink:hover-gnavi__main__item__ico {
	fill: #8ed2f4;
	-webkit-transition: color .3s;
	transition: color .3s;
	-webkit-transition-duration: 0.4s;
	transition-duration: 0.4s;
	-webkit-transition-property: background, border, color, fill, content, opacity, -webkit-transform;
	transition-property: background, border, color, fill, content, opacity, -webkit-transform;
	transition-property: background, border, color, transform, fill, content, opacity;
	transition-property: background, border, color, transform, fill, content, opacity, -webkit-transform;
}
.gNavMainItemLink._active_::before {
	display: block;
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 3px;
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	background: #8ed2f4;
	content: "";
	-webkit-transition: 0s all !important;
	transition: 0s all !important;
}
.gNavMainItemDropdown {
	display: block;
	visibility: hidden;
	z-index: -1;
	position: fixed;
	top: 108px;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(255, 255, 255, 0.5);
	opacity: 0;
	-webkit-transition: .3s all;
	transition: .3s all;
}
.gNavMainItem._visible_ .gNavMainItemLink::before {
	-webkit-transform: scale(1, 1) !important;
	transform: scale(1, 1) !important;
	-webkit-animation: none !important;
	animation: none !important;
}
.gNavMainItem._visible_ .gNavMainItemDropdown {
	visibility: visible;
	z-index: 10;
	opacity: 1;
}
@media screen and (min-width: 1px) and (max-width: 767.499px) {
	.gNav {
		display: none;
	}
}
/* c-dropdown
================================================== */
.gnavDropdown {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 3%;
	padding-top: 32px;
	padding-bottom: 32px;
	overflow-y: auto;
	background: #fff;
	-webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
	overflow: scroll;
}
/* linkLine */
.gnavDropdown .linkLine {
	/*線の基点とするためrelativeを指定*/
	position: relative;
	/*リンクの形状*/
	padding: 10px 0;
	text-decoration: none;
	outline: none;
}
/*線の設定*/
.gnavDropdown .linkLine::before, .gnavDropdown .linkLine::after {
	content: '';
	/*絶対配置で線の位置を決める*/
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 0;
	/*線の形状*/
	background: #eee;
	width: 100%;
	height: 1px;
	/*アニメーションの指定*/
	transition: all 0.3s ease-in-out;
}
/*hover時に伸びる線の形状*/
.gnavDropdown .linkLine::after {
	width: 0;
	background: #8ed2f4;
}
/*hover時に100%に伸びる*/
.gnavDropdown .linkLine:hover::after {
	width: 100%;
}
/* gnavDropdownHead */
.gnavDropdownHead {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 0;
}
.gnavDropdownHead h2{
	font-size: 100%;
}
/* btnClose */
.btnClose {
	position: relative;
	display: inline-block;
	border: solid 1px #222;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
    border-radius: 2px;
	line-height: 2px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.btnClose:hover {
	border: solid 1px #8ed2f4;
	transition: .3S;
	-webkit-transition: .3s;
}
.btnClose a{
	padding: 5px 25px 5px 35px;
	color: #222;
	display: block;
	font-size: 80%;
}
.btnClose:hover a{
	transition: .3S;
	-webkit-transition: .3s;
	color: #8ed2f4;
}
.btnClose .btn-border:before {
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: .3s;
	transition: .3s;
	font-family: 'Material Symbols Outlined';
	content: "\e5c9";
	-webkit-transform: translateX(10px) translateY(5px);
	transform: translateX(10px) translateY(5px);
}
.btnClose:hover .btn-border:before {
	-webkit-transform: translateX(16px) translateY(5px);
	transform: translateX(16px) translateY(5px);
	color: #8ed2f4;
}
/* dropdownContents */
.dropdownContents {
	margin: 20px 0 30px;
}
.dropdownContents ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
}

.dropdownContents li {
	font-size: 85%;
	margin: 0 0 15px 5%;
	width: 20%;
}

.dropdownContents ul.navLong {
	display: block!important;
}
.dropdownContents ul.navLong li {
	width: 90%;
}

@media screen and (max-width: 1116px) {
	.c-dropdown {
		width: 100%;
		margin: 0;
		padding-right: 18px;
		padding-left: 18px;
		overflow-x: auto;
	}
}