@charset "UTF-8";

/* header */
.header {
	position: relative;
	z-index: 101;
	background-color: #fff;
}

.header__gNav--sp {
	display: none;
}

.overLay {
	display: none;
	z-index: 100;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 120%;
	background-color: rgba(0, 0, 0, 0.6);
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

.header__siteTitle {
	text-align: center;
	padding: 62px 0 46px;
	width: 1006px;
	margin: 0 auto;
}

.header__siteText_pc {
	text-align: center;
	margin-top: -16px;
	margin-bottom: 40px;
	font-size: 1.4rem;
}

.header__siteTitle__link {
	display: block;
	width: 64px;
	margin: 0 auto;
}

.header__siteTitle__img {
	width: 64px;
}

/* header__gNav */
.header__gNav__list {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	width: 1040px;
	margin: 0 auto;
}

.header__gNav__list__box {
	position: relative;
	height: 22px;
}

.header__gNav__contents {
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
	opacity: 0;
	visibility: hidden;
}

.header__gNav__list__item:hover .header__gNav__contents {
	visibility: visible;
	opacity: 1;
}

.header__gNav__list__link {
	display: block;
	font-size: 1.2rem;
	color: #333;
	letter-spacing: 0.25em;
}

.header__gNav__list__box.header__gNav__list__box--current:after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	background-color: #646464;
	width: 60px;
	height: 2px;
	margin-left: -30px;
}

.currentHide:after {
	/* background-color:transparent !important; */
}
.header__gNav__list__box:after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	background-color: rgba(0, 0, 0, 0.1);
	width: 60px;
	height: 2px;
	margin-left: -30px;
}

.header__gNav__list__box__hover--current:after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	background-color: #00C2EB !important;
	width: 60px;
	height: 2px;
	margin-left: -30px;
}

.header__gNav__list__img-01 {
	width: 95px;
}

.header__gNav__list__img-02 {
	width: 85px;
}

.header__gNav__list__img-03 {
	width: 95px;
}

.header__gNav__list__img-04 {
	width: 85px;
}

.header__gNav__list__img-05 {
	width: 85px;
}

.header__gNav__list__img-06 {
	width: 93px;
}

/* header__gNav__contents */
.header__gNav__contents {
	position: absolute;
	left: 0;
	width: 100%;
	border-top: 1px solid #919191;
	border-bottom: 1px solid #919191;
	background-color: #fff;
	padding: 45px 0;
	box-shadow: 0px 9px 3px -10px rgba(0,0,0,0.6);
	-webkit-box-shadow: 0px 9px 10px -10px rgba(0,0,0,0.6);
	-moz-box-shadow: 0px 9px 10px -10px rgba(0,0,0,0.6);
	z-index: 2;
}

.header__gNav__contents__box {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	width: 1006px;
	margin: 0 auto;
	justify-content: space-between;
}

.header__gNav__contents__boxCol__list:nth-of-type(2) {
	margin-top: 10px;
}

.header__gNav__contents__boxCol__list:nth-of-type(3) {
	margin-top: 10px;
}

.header__gNav__contents__boxCol__img {
	width: 400px;
}

.header__gNav__contents__boxCol__list__item {
	line-height: 2.2;
}

.header__gNav__contents__boxCol__list__link {
	color: #454545;
}

.header__gNav__contents__boxCol__list__link--bold {
	font-weight: bold;
	font-size: 1.3rem;
	line-height: 1.7;
}


/* header__gNav--sp */
.header__gNav--sp {
	position:fixed;
	background-color: #fff;
	width: 100%;
	padding: 15px 0 0;
	top:0;
	z-index:999;
	height: 64px;
}

.header__gNav--sp__box {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content:space-between;
	justify-content: space-between;
	align-items: center;
	border-bottom: 2px solid #4ec1ea;
	width: 89.333%;
	margin: 0 auto;
	padding-bottom: 10px;
}

.header__gNav--sp__box__title {
	/* width: 32px; */
	display: flex;
	align-items: flex-end;
}
.header__gNav--sp__box__title a {
	width: 32px;
	display: block;
}

.btn__menu__txt {
	text-align: center;
	font-size: 1.0rem;
	margin-top: 5px;
}

.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.menu-trigger {
	position: relative;
	width: 29px;
	height: 19px;
}
.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #4ec1ea;
	border-radius: 3px;
}
.menu-trigger span:nth-of-type(1) {
	top: 0;
}
.menu-trigger span:nth-of-type(2) {
	top: 8px;
}
.menu-trigger span:nth-of-type(3) {
	bottom: 0;
}
.menu-trigger.active span:nth-of-type(1) {
	-webkit-transform: translateY(13px) rotate(-45deg);
	transform: translateY(13px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
	-webkit-transform: translateY(-3px) rotate(45deg);
	transform: translateY(-3px) rotate(45deg);
}

.header__gNav--sp__listBox {
    position: fixed;
    top: 64px;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    overflow-y: scroll;
		display: none;
}

.header__gNav--sp__list {
	width: 100%;
	margin: 0px auto;
	padding: 0 5.333% 5.3vw;
	background-color: #fff;
}

.header__gNav--sp__list__item {
	border-bottom: 1px solid #bababa;
	padding: 16px 10px;
}

.header__gNav--sp__list__item:last-child {
	/* border-bottom: none; */
}

.header__gNav--sp__list__item--toggle {
	padding: 0;
}

.header__gNav--sp__list__toggle__img {
	width: 15px;
}

.header__gNav--sp__list__link {
	color: #000;
	font-size: 1.6rem;
}

.header__gNav--sp__list__item--toggle__inner {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
	padding: 15px 10px;
}

.header__gNav--sp__list__toggle__list {
	display: none;
	background-color: #f2f2f2;
	border-top: 1px solid #bababa;
	padding: 10px 20px;
}

.header__gNav--sp__list__toggle__list__item {
	padding: 10px 0;
}

.header__gNav--sp__list__toggle__list__link {
	color: #000;
	font-size: 1.4rem;
}

@media only screen and (max-width: 750px) {
	.header__siteTitle,
	.header__gNav {
		display: none;
	}

	.header__gNav--sp {
		display: block;
	}
	.header__siteText {
		font-size: 2vw;
		margin: 0;
		text-align: left;
		margin-left: 10px;
		/* transform: scale(0.8); */
	}
	.header__siteText_pc {
		display: none;
	}
}