@charset "UTF-8";
/*
 * layout.css
 * 
 */

/* !wrapper
---------------------------------------------------------- */
#wrapper {
	position: relative;
	overflow: hidden;
	padding-top: 80px;
	width: 100%;
	min-height: 100vh;
}

/* !header
---------------------------------------------------------- */
#header {
	position: fixed;
	right: 0;
	top: 0;
	z-index: 99;
	width: 100%;
	background: #fff;
}

#headerLogo {
	float: left;
	padding: 22px 50px 18px;
	margin: 0;
}

#headerLogo img {
	height: 40px;
}

.btnMenu {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 3;
	width: 80px;
	height: 80px;
	background: #264FA4;
}

.btnMenu span {
	display: block;
	margin: 5px auto;
	background: #fff;
	border-radius: 5px;
	width: 52%;
	height: 3px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
}

.btnMenu.active span:first-child {
	-webkit-transform: translateY(13px) rotate(45deg);
	-moz-transform: translateY(13px) rotate(45deg);
	-ms-transform: translateY(13px) rotate(45deg);
	transform: translateY(13px) rotate(45deg);
}

.btnMenu.active span:nth-child(2) {
	opacity: 0;
}

.btnMenu.active span:last-child {
	-webkit-transform: translateY(-13px) rotate(-45deg);
	-moz-transform: translateY(-13px) rotate(-45deg);
	-ms-transform: translateY(-13px) rotate(-45deg);
	transform: translateY(-13px) rotate(-45deg);
}

/* !gNavi
---------------------------------------------------------- */
#gNavi {
	float: left;
	z-index: 1;
}

#gNavi li {
	display: flex;
	align-items: center;
	justify-content: center;
	float: left;
	padding: 0 20px;
	height: 80px;
	font-size: 1.5rem;
	font-weight: bold;
	position: relative;
	z-index: 99;
}

#gNavi li a {
	display: block;
	padding: 9px 0 0;
}

#gNavi li a:after {
	content: "";
	display: block;
	transform: scale(0, 1);
	transition: all 0.3s;
	margin: 5px auto 0;
	background: #434D81;
	height: 4px;
}

#gNavi li a:hover:after,
#pickup #gNavi li #nav01:after,
#news #gNavi li #nav02:after,
#news_cate01 #gNavi li #nav02:after {
	transform: scale(1, 1);
}

.funLinks {
	float: right;
}

.funLinks ul {
	display: flex;
}

.funLinks ul li {
	position: relative;
}

.funLinks a {
	display: block;
	position: relative;
	overflow: hidden;
	border: 1px solid;
	color: #fff;
	font-size: 1.3rem;
	font-weight: bold;
}

.funLinks a:before {
	content: "";
	position: absolute;
	transition: all 0.3s;
	right: 100%;
	top: 0;
	width: 100%;
	height: 100%;
	background: #fff;
}

.funLinks span {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
	height: 80px;
	width: 120px;
}

.funLinks a:hover:before {
	right: 0;
}

.funLinks .qa:hover {
	color: #3F3F6B;
}

.funLinks .sea:hover {
	color: #369A39;
}

.funLinks .user:hover {
	color: #F2055C;
}

.funLinks i {
	margin-right: 8px;
	font-size: 1.7rem;
}

.funLinks .qa {
	background-color: #3F3F6B;
	border-color: #3F3F6B;
}

.funLinks .sea {
	background-color: #369A39;
	border-color: #369A39;
}

.funLinks .user {
	background-color: #F2055C;
	border-color: #F2055C;
}

.serviceLinks {
	overflow: hidden;
	position: fixed;
	right: 0;
	top: 122px;
	background: #264FA4;
}

.serviceLinks li {
	position: relative;
	padding: 0 12px;
}

.serviceLinks li:before {
	content: "";
	position: absolute;
	transition: all 0.3s;
	right: 100%;
	top: 0;
	width: 100%;
	height: 100%;
	background: #fff;
}

.serviceLinks li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	z-index: 3;
	height: 100px;
	width: 76px;
	color: #fff;
	font-size: 1.2rem;
}

.serviceLinks li i {
	margin-bottom: 5px;
	font-size: 2.4rem;
}

.serviceLinks li+li a {
	margin-top: -1px;
	border-top: 1px solid #fff;
}

.serviceLinks li:hover:before {
	right: 0;
}

.serviceLinks li:hover a {
	color: #264FA4;
}



/*** タブレット ***/
@media screen and (max-width: 1600px) {
	#headerLogo {
		padding: 24px 20px;
	}

	#headerLogo img {
		height: 32px;
	}

	#gNavi li {
		padding: 0 13px;
		font-size: 1.4rem;
	}

	.funLinks a {
		width: 90px;
		font-size: 1.2rem;
	}

	.funLinks span {
		width: 90px;
		flex-direction: column;
	}

	.funLinks i {
		margin-right: 3px;
		font-size: 1.5rem;
	}
}

@media screen and (max-width: 1240px) {
	.btnMenu {
		display: flex;
	}

	.btnMenu span {
		margin: 4px auto;
		height: 2px;
	}

	#gNavi {
		display: none;
		float: none;
		position: fixed;
		top: 0;
		right: 0;
		padding: 80px 0;
		width: 100%;
		background: #264FA4;
		overflow-y: scroll;
	}

	#gNavi li {
		float: none;
		height: auto;
		display: block;
	}

	#gNavi li a {
		padding: 20px 0;
		color: #fff;
		font-size: 1.6rem;
	}

	#gNavi li a:after {
		content: none;
	}

	.funLinks {
		padding-right: 80px;
	}


}

@media screen and (max-width: 1240px) {
	#wrapper {
		padding-top: 60px;
	}

	#headerLogo {
		padding: 14px 15px;
	}

	.btnMenu {
		display: flex;
	}

	.btnMenu span {
		margin: 4px auto;
		height: 2px;
	}

	.btnMenu {
		width: 60px;
		height: 60px;
	}

	.btnMenu.active span:first-child {
		-webkit-transform: translateY(10px) rotate(45deg);
		-moz-transform: translateY(10px) rotate(45deg);
		-ms-transform: translateY(10px) rotate(45deg);
		transform: translateY(10px) rotate(45deg);
	}

	.btnMenu.active span:last-child {
		-webkit-transform: translateY(-10px) rotate(-45deg);
		-moz-transform: translateY(-10px) rotate(-45deg);
		-ms-transform: translateY(-10px) rotate(-45deg);
		transform: translateY(-10px) rotate(-45deg);
	}

	#gNavi {
		width: 100%;
		height: calc(100vh - 167px);
		display: none;
		float: none;
		position: fixed;
		top: 60px;
		right: 0;
		padding: 40px 45px;
		background: #264FA4;
		overflow-y: auto;
	}

	#gNavi li {
		float: none;
		height: auto;
		display: block;
	}

	#gNavi li a {
		padding: 10px 0;
		color: #fff;
		font-size: 1.6rem;
	}

	#gNavi li a:after {
		content: none;
	}

	#gNavi li a.hasChild {
		position: relative;
	}

	#gNavi li a.hasChild::before {
		content: "\f0fe";
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		-moz-osx-font-smoothing: grayscale;
		-webkit-font-smoothing: antialiased;
		display: inline-block;
		font-style: normal;
		font-variant: normal;
		text-rendering: auto;
		line-height: 1;
		font-family: 'Font Awesome 5 Free';
		font-size: 1.6rem;
		font-weight: 400;
	}

	#gNavi li a.hasChild.on::before {
		content: "\f146";
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		-moz-osx-font-smoothing: grayscale;
		-webkit-font-smoothing: antialiased;
		display: inline-block;
		font-style: normal;
		font-variant: normal;
		text-rendering: auto;
		line-height: 1;
		font-family: 'Font Awesome 5 Free';
		font-size: 1.6rem;
		font-weight: 400;
	}


	.serviceLinks {
		overflow: hidden;
		position: fixed;
		right: auto;
		top: auto;
		background: #0E224B;
		height: 107px;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 999;
	}

	.serviceLinks.active {
		display: flex;
	}

	.serviceLinks li {
		position: relative;
		padding: 0;
		width: 25%;
		display: flex;
		align-items: center;
	}

	.serviceLinks li:before {
		width: 0;
	}

	.serviceLinks li a {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
		position: relative;
		z-index: 3;
		height: 72px;
		width: 100%;
		color: #fff;
		font-size: 1.2rem;
	}

	.serviceLinks li i {
		margin-bottom: 5px;
		font-size: 2.4rem;
	}

	.serviceLinks li+li a {
		margin-top: -1px;
		border-top: 0;
		border-left: 1px solid #9E9E9E;
	}

	.serviceLinks li:hover:before {
		right: 0;
	}

	.serviceLinks li:hover a {
		color: #264FA4;
	}

}


/* !mainVisual
---------------------------------------------------------- */
#mainVisual {
	padding: 30px 0;
	background: url(../img/top/teaser_main.jpg) no-repeat center;
	background-size: cover;
}

#mainVisual .title {
	float: left;
	width: 55%;
	max-width: 650px;
	margin-top: 35px
}

#mainVisual .hdL,
#teaser .hdL {
	/*margin-bottom: 65px;*/
	margin-bottom: 45px;
	letter-spacing: 0.02em;
	color: #fff;
	font-size: 4.5rem;
}

.page-recruit #teaser .hdL {
	font-size: 4.5rem;
	text-align: center;
	color: #264FA4;
	text-shadow: 0 0 3px #FFF, 0 0 3px #FFF, 0 0 3px #FFF, 0 0 3px #FFF, 0 0 3px #FFF, 0 0 3px #FFF, 0 0 3px #FFF, 0 0 3px #FFF, 0 0 3px #FFF, 0 0 3px #FFF, 0 0 3px #FFF, 0 0 3px #FFF, 0 0 3px #FFF, 0 0 3px #FFF, 0 0 3px #FFF, 0 0 3px #FFF;
}

.page-questionary #teaser .hdL {
	display: none;
}


#mainVisual .hdL .eng {
	letter-spacing: -0.04em;
	color: #E1E1FF;
	font-size: 2.4rem;
}

#mainVisual .hdL .eng:before {
	content: "";
	margin-right: 20px;
	width: 70px;
	border-color: #E1E1FF;
}

#mainVisual .hd02 {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	color: #0E224B;
	font-size: 2.4rem;
	font-weight: 900;
}

#mainVisual .hd02 img {
	margin-right: 10px;
}

#mainVisual .mypage {
	float: right;
	padding: 0 30px;
	width: 40%;
	max-width: 332px;
	background: rgba(255, 255, 255, 0.75);
	border: 1px solid #707070;
}

#mainVisual .mypage li {
	position: relative;
	padding: 20px 0;
}

#mainVisual .mypage li.inquiries:before {
	content: "";
	position: absolute;
	left: 20%;
	top: 0;
	width: 60%;
	border-top: 1px solid #686868;
}

#mainVisual .mypage li.inquiries .hd02 {
	font-size: 2.2rem;
}

#mainVisual .mypage .txt {
	margin-bottom: 15px;
	color: #5A5A5A;
	font-size: 1.3rem;
	font-weight: bold;
}

#mainVisual .mypage .btnLink span {
	height: 44px;
	font-size: 1.5rem;
}

@media screen and (max-width: 1750px) {
	#mainVisual .mypage {
		margin-right: 80px;
	}
}

@media screen and (max-width: 1400px) {
	#mainVisual .hdL {
		font-size: 4rem;
	}

	#mainVisual .hdL .eng {
		font-size: 2rem;
	}
}


/* !banner
---------------------------------------------------------- */
.bannerWrap ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 1%;
	position: relative;
	padding: 25px 0;
	max-width: 1500px;
	margin: auto;
}

.bannerWrap ul li {
	width: 100%;
	max-width: 560px;
	margin: auto;
}

.bannerWrap ul li a {
	display: block;
	position: relative;
	overflow: hidden;
	width: 100%;
	height: auto;
	text-align: center;
}

.bannerWrap ul li a:hover img {
	filter: brightness(0.8);
}

.bannerWrap ul li a img {
	display: block;
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	border: 1px solid;
}

.bannerWrap ul li a span {
	position: relative;
	font-size: 18px;
	font-weight: 550;
	border: 1px solid;
	border: 1px solid;
	width: 72%;
	display: inline-block;
	padding: 1.3rem 1.5rem;
	background: #fff;
	color: #264FA4;
	z-index: 50;
	bottom: 28px;
}

.bannerWrap ul li a:hover span {
	background: #264FA4;
	color: #fff;
	border: 1px solid #264FA4;
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 768px) {
	.bannerWrap ul li a span {
		font-size: 14px;
		padding: 1rem;
		bottom: 20px;
	}
}



/* !teaser
---------------------------------------------------------- */
#teaser,
.teaser {
	/*padding: 90px 0 50px;*/
	padding: 50px 0 30px;
	background-image: url(../img/common/img_teaser.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.page-recruit #teaser {
	padding: 150px 0 100px;
	background-image: url("../img/page/recruit_top.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.page-questionary #teaser {
	display: none;
}


.page-specialfeature #teaser {
	padding: 0px;
	background-image: none;
}

.page-subscription #teaser {
	padding: 0px;
	background-image: none;
}

.teaser {
	display: none;
	position: fixed;
	left: 0;
	top: 80px;
	z-index: 8;
	padding: 50px 0;
	width: 100%;
}

.teaser .hdL {
	margin-bottom: 0;
	color: #fff;
	font-size: 2.2rem;
}

#teaser .series_name {
	max-height: 20px !important;
	font-size: 1rem;
	line-height: 20px;
	margin: 0;
	padding: 0;
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 768px) {
	#teaser .series_name {
		margin: 10px 0;
	}
}

/* !breadcrumb
---------------------------------------------------------- */
#breadcrumb {
	color: #fff;
}

.page-recruit #breadcrumb {
	color: #264FA4;
}

#breadcrumb a,
#breadcrumb span {
	display: inline-block;
	margin: 0 15px;
	color: #fff;
	font-size: 1.2rem;
}

.page-recruit #breadcrumb a,
.page-recruit #breadcrumb span {
	color: #264FA4;
}

#breadcrumb a:first-child {
	margin-left: 0;
}

#breadcrumb a:hover {
	text-decoration: underline;
}


/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 768px) {
	#mainVisual {
		background-image: url(../img/top/teaser_main_sp.jpg);
		height: calc(100vh - 60px);
	}

	#mainVisual .inner {
		display: flex;
		height: 100%;
		flex-direction: column;
		justify-content: space-between;
	}

	#mainVisual .inner::after {
		content: "";
		display: none;
	}

	#mainVisual .title {
		float: none;
		margin: 0 auto;
		width: auto;
		max-width: inherit;
	}

	#mainVisual .hdL,
	#teaser .hdL {
		font-size: 2.6rem;
	}

	.page-recruit #teaser .hdL {
		font-size: 3.6rem;
	}

	#mainVisual .hdL .eng {
		font-size: 1.6rem;
	}

	#mainVisual .title .logo img {
		height: 50px;
	}

	#mainVisual .mypage {
		float: none;
		padding: 20px 0;
		width: auto;
		max-width: inherit;
		margin: 0;
	}

	#mainVisual .mypage ul {
		display: flex;
		flex-wrap: wrap;
	}

	#mainVisual .mypage li {
		padding: 0 20px;
		width: 50%;
	}

	#mainVisual .mypage li.inquiries:before {
		left: 0%;
		top: 0;
		width: 1px;
		height: 100%;
		border-top: 0;
		border-left: 1px solid #686868;
	}

	#mainVisual .hd02,
	#mainVisual .mypage li.inquiries .hd02 {
		flex-direction: column;
		align-items: flex-start;
		font-size: 2rem;
	}

	#mainVisual .hd02 img {
		margin: 0 0 5px;
	}

	#mainVisual .mypage .txt {
		font-size: 1.1rem;
	}

	#mainVisual .mypage .btnLink span {
		font-size: 1.4rem;
	}

	#teaser,
	.teaser {
		padding: 40px 0 35px;
		background-image: url(../img/common/img_teaser_sp.jpg);
	}

	.teaser {
		top: 60px;
		padding: 25px 0 80px;
	}

	.teaser .hdL {
		font-size: 2rem;
	}

}

/* !contents
---------------------------------------------------------- */

.sideWrap {
	padding: 70px 0;
}

.sideWrap #main {
	float: right;
	width: 72.5%;
}

#side {
	float: left;
	padding-right: 50px;
	width: 27.5%;
}

#side .part+.part {
	margin-top: 60px;
}

#side li {
	position: relative;
	margin-left: 14px;
	padding: 15px 0;
	border-bottom: 1px dotted #BBBBBB;
	font-size: 1.7rem;
}

#side .tit {
	cursor: pointer;
	padding: 15px 5px;
	margin: 0 0 5px;
	border-bottom: 1px solid #BBBBBB;
	font-size: 2rem;
	font-weight: bold;
}

#side .tit a {
	display: block;
}

#side li:after {
	position: absolute;
	right: 0;
	top: 50%;
	width: 50px;
	border-top: 1px solid #707070;
}

#news_cate01 #side li#side03 {
	border-bottom: 1px solid #000;
	font-weight: bold;
}

#news_cate01 #side li#side03:after {
	content: "";
}

#side .toggleBox {
	display: none;
}

.inner {
	margin: 0 auto;
	padding: 0 110px;
	max-width: 1580px;
}

body.page-specialfeature #teaser .inner {
	padding: 0;
	max-width: none;
	text-align: center;
}

body.page-subscription #teaser .inner {
	padding: 0;
	max-width: none;
	text-align: center;
}

.inner_onecolumn {
	margin: 0 auto;
	padding: 0 50px;
	max-width: 1024px;
}

body.page-specialfeature .inner_onecolumn {
	padding: 0 !important;
	max-width: none !important;
}

body.page-subscription .inner_onecolumn {
	padding: 0 !important;
	max-width: none !important;
}

@media screen and (min-width: 1750px) {
	.inner {
		margin: 0 auto;
		padding: 0 30px;
		max-width: 1580px;
	}

	body.page-specialfeature .inner_onecolumn {
		padding: 0 30px;
		max-width: 1580px;
	}

	body.page-subuscription .inner_onecolumn {
		padding: 0 30px;
		max-width: 1580px;
	}
}

/*** タブレット ***/
@media screen and (max-width: 1240px) {
	.inner {
		padding: 0 30px;
	}

	.inner_onecolumn {
		padding: 0 30px;
	}

	body.page-specialfeature .inner_onecolumn {
		padding: 0 30px;
	}

	body.page-subscription .inner_onecolumn {
		padding: 0 30px;
	}

	#side {
		padding-right: 25px;
	}

	#side li {
		margin-left: 10px;
		padding: 15px 35px 15px 0;
	}

	#side li:after {
		width: 30px;
	}

	.bannerWrap ul {
		display: block;
	}

	.bannerWrap ul li {
		margin-bottom: 2rem;
	}
}

@media screen and (max-width: 768px) {
	.inner_onecolumn {
		padding: 0 20px;
	}

	body.page-specialfeature .inner_onecolumn {
		padding: 0 20px;
	}

	body.page-subscription .inner_onecolumn {
		padding: 0 20px;
	}

	.sideWrap {
		padding: 40px 0 0;
	}

	.sideWrap #main {
		float: none;
		margin-bottom: 70px;
		width: auto;
	}

	#side {
		padding: 50px 20px;
		margin: 0 -20px;
		float: none;
		width: auto;
		background: #F6F6F6;
		border-top: 5px solid #707070;
	}

	#side .part+.part {
		margin-top: 30px;
	}

	#side .hd01 {
		padding: 0 5px 10px;
		margin-bottom: 10px;
	}

	#side li {
		font-size: 1.5rem;
	}
}

/* !pageTop
---------------------------------------------------------- */
.pageTop {
	position: absolute;
	right: 50px;
	bottom: 0;
}

@media screen and (max-width: 768px) {
	.pageTop {
		position: absolute;
		right: 20px;
		bottom: 0;
	}
}

/* !footer
---------------------------------------------------------- */
#footer {
	position: relative;
	color: #fff;
}

#footer a {
	color: #fff;
}

#footer .footLinks {
	padding: 60px 0;
	background: #0E224B;
}

#footer .footLinks table {
	width: 100%;
	line-height: 2.5;
}

#footer .footLinks th {
	vertical-align: top;
	padding: 10px 50px 10px 0;
	width: 210px;
	text-align: right;
	color: #FCFCFC;
	font-size: 1.2rem;
	font-weight: bold;
}

#footer .footLinks td {
	vertical-align: top;
	padding: 10px 0;
	/*width:-webkit-calc((100% - 210px) / 7);*/
	width: 12.25%;
	color: #B8B8B8;
	font-size: 1.2rem;
}

#footer .footLinks tr+tr td {
	border-top: 1px dotted #6B6B6B;
}

#footer .footLinks .link {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	height: 34px;
	border: 1px solid #707070;
	color: #FCFCFC;
}

#footer .footLinks .link span {
	position: relative;
	z-index: 3;
}

#footer .footLinks .link:before {
	content: "";
	position: absolute;
	right: 100%;
	top: 0;
	z-index: 1;
	transition: all 0.3s;
	width: 100%;
	height: 100%;
	background: #fff;
}

#footer .footLinks a:hover {
	text-decoration: underline;
}

#footer .footLinks .link:hover {
	text-decoration: none;
	color: #0E224B;
}

#footer .footLinks .link:hover:before {
	right: 0;
}

#footer .access {
	padding: 75px 0;
	background: #111;
	font-size: 1.2rem;
}

#footer .access .inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.footLogo {
	margin-bottom: 80px;
}

#copyright {
	font-size: 1.1rem;
}




.footLinks dl {
	display: flex;
	font-size: 1.2rem;
}


.footLinks dl dt {
	width: 210px;
	flex-shrink: 0;
	text-align: right;
	padding: 15px 50px 15px 0;
}

.footLinks dl dd {
	width: 100%;
	padding: 10px 0;
}

.footLinks dl+dl dd {
	border-top: 1px dotted #6B6B6B;
}

.footLinks dl dd ul {
	display: flex;
	flex-wrap: wrap;
}

.footLinks dl dd ul li {
	width: 190px;
	padding: 5px 0;
}

.footLinks dl dd p {
	width: 190px;
}

.footerbtn {
	display: flex;
	justify-content: end;
	padding-left: 210px;
	margin-top: 20px;
}

.footerbtn a {
	font-size: 1.2rem;
}

.footerbtn li {
	width: 190px;
}

/*** 
.footerbtn li:last-child{
	transform: translateY(-160%);
}
***/

@media screen and (max-width: 1750px) {
	#copyright {
		padding-right: 80px;
	}
}

/*** タブレット 768x ~ 959px***/
@media screen and (max-width: 959px) {}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 768px) {
	#footer .footLinks {
		display: none;
	}

	#footer .access .inner {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		flex-direction: column;
	}

	#copyright {
		margin-top: 5px;
		padding-right: 0;
	}

}




.subnaviWrap {
	position: fixed;
	width: 100%;
	left: 0;
	top: 82px;
	border-top: 1px solid #E4E4E4;
	padding: 45px 0;
	background-color: #fff;
	display: block;
	z-index: -1;
	opacity: 0;
	transform: translateY(-200%);
	transition: all 1s;
}

.subnaviWrap.on {
	z-index: 98;
	opacity: 1;
	transform: translateY(0);
	transition: all 1s;
}

.subnaviWrap .inner {
	display: flex;
	align-items: center;
}

.subnaviTit {
	background: #0E224B;
	width: 290px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	font-size: 2.5rem;
	font-weight: bold;
	color: #fff;
	padding: 10px 30px 10px 0;
	flex-shrink: 0;
	margin-right: 125px;
}

.subnavi {
	display: flex;
	flex-wrap: wrap;
	width: 100%;

}

#gNavi .subnavi li {
	display: block;
	align-items: center;
	justify-content: center;
	float: none;
	padding: 0;
	height: auto;
	font-size: 1.6rem;
	font-weight: 500;
	margin: 10px 50px 10px 0;

}

#gNavi .subnavi li a {
	padding: 0;
}

#gNavi .subnavi li a:after {
	width: 0;
}

#gNavi .subnavi li a i {
	margin-left: 15px;
	color: #264FA4;
}


@media screen and (max-width: 1240px) {
	.subnaviWrap {
		position: inherit;
		width: 100%;
		left: auto;
		top: auto;
		border-top: 0;
		padding: 0;
		background-color: transparent;
		display: none;
		z-index: 999;
	}

	.subnaviWrap.on {
		display: block;
	}

	.subnaviWrap .inner {
		display: block;
	}

	.subnaviTit {
		display: none;
	}

	.subnavi {
		display: block;
		flex-wrap: wrap;
		width: 100%;

	}

	#gNavi .subnavi li {
		display: block;
		align-items: center;
		justify-content: center;
		float: none;
		padding: 0;
		height: auto;
		font-size: 1.6rem;
		font-weight: 500;
		width: 100%;
		margin: 0;
	}

	#gNavi .subnavi li a {
		padding: 10px 0;
	}

	#gNavi .subnavi li a:after {
		width: 0;
	}

	#gNavi .subnavi li a i {
		display: none;
	}

	.qasp {
		margin-top: 15px;
	}

	.qasp a {
		width: 100%;
		display: flex;
		height: 45px;
		align-items: center;
		justify-content: center;
		color: #fff;
		font-size: 1.6rem;
		background-color: #0E224B;
	}

	.usersp {
		margin-top: 15px;
	}

	.usersp a {
		width: 100%;
		display: flex;
		height: 45px;
		align-items: center;
		justify-content: center;
		color: #fff;
		font-size: 1.6rem;
		background-color: #F2055C;
	}
}



.searchWrap {
	position: fixed;
	top: 80px;
	left: 0;
	width: 100%;
	border-top: 1px solid #E4E4E4;
	background-color: #fff;
	padding: 45px 0;
	z-index: 999;
	display: block;
	z-index: -1;
	opacity: 0;
	transform: translateY(-200%);
	transition: all 1s;
}

.searchWrap.on {
	z-index: 98;
	opacity: 1;
	transform: translateY(0);
	transition: all 1s;
}

.searchWrap .inner {
	display: flex;
}

.searchWrap #searchform {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
}

.searchWrap #searchform .searchformBtn {
	width: 165px;
	flex-shrink: 0;
	margin-left: 55px;
}

.searchWrap #searchform .searchformBtn span {
	height: 45px;
}

.searchWrap #searchform .searchformTxt {
	width: 100%;
}

.searchWrap #searchform .searchformTxt input[type=text] {
	border: 1px solid #707070;
	height: 60px;
	width: 100%;
	padding: 0 10px;

}

.searchWrap #searchform .searchformTxt input[type=radio],
#searchform02 .searchformTxt input[type=radio] {
	-webkit-appearance: radio;
	-moz-appearance: radio;
	appearance: radio;
}

.searchWrap #searchform .searchformTxt .searchformLabel,
#searchform02 .searchformTxt .searchformLabel {
	margin-top: 5px;
	margin-right: 15px;
}

#searchform02 .searchformTxt .searchformLabel {
	color: #fff;
}

@media screen and (max-width: 1240px) {
	#searchform02 {
		display: flex;
		margin-top: 60px;
	}

	#searchform02 .searchformTxt {
		width: 100%;
	}

	#searchform02 .searchformTxt input[type=text] {
		width: 100%;
		background-color: #fff;
		font-size: 1.6rem;
		font-weight: bold;
		border: 1px solid #707070;
		padding: 0 10px;
		height: 45px;
	}

	#searchform02 .searchformBtn {
		width: 88px;
		margin-left: 15px;
		flex-shrink: 0;
	}

	#searchform02 .searchformBtn input {
		width: 100%;
		height: 45px;
		background: #0E224B;
		flex-shrink: 0;
		font-size: 1.6rem;
		font-weight: bold;
		color: #fff;
		border: 0;
	}
}