@charset "utf-8";
@import url("style.css");
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,500,700,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

.montserrat {font-family: 'Montserrat', sans-serif;}
.Manrope {font-family: 'Manrope', sans-serif;}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html,body {
	overflow-x: hidden;
}
body {
	margin: 0;
	padding: 0;
	color: #282828;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}
body, #wrapper {
	display: flex !important;
	flex-direction: column !important;
	min-height: 100vh !important;
}
a {
	background-color: transparent;
	-webkit-text-decoration-skip: objects
}
a:focus {
	outline: none;
}
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.clearfix {
	min-height: 1px;
}
* html .clearfix {
	height: 1px;
	/*¥*/ /*/
	height: auto;
	overflow: hidden;
	/**/
}
.both {
	clear: both;
}
.inline_block {
	display: inline-block;
	*display: inline;
	*zoom: 1;
}
img {
	max-width: 100%;
}
table {
	width: 100%;
}
a, a:hover {
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
a {
	color: #282828;
	text-decoration: none;
}
.txtlink a {
	color: rgba(0, 100, 220, 1);
	text-decoration: none;
}
.txtlink a:hover {
	color: rgba(0, 100, 220, 0.8);
	text-decoration: none;
}
.padding-inner {
	padding: 0 50px;
}
.eng {
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 1px;
}
.pc {
	display: block;
}
@media screen and (max-width: 1024px) {
	.pc {
		display: none;
	}
}
.sp {
	display: none;
}
@media screen and (max-width: 1024px) {
	.sp {
		display: block;
	}
}

/* スクロールアニメーション */
.fadeinUp {
	opacity : 0;
	transform : translate(0, 100px);
	transition : all 800ms;
}
.fadeinLeft {
	opacity : 0;
	transform : translate(100px, 0);
	transition : all 800ms;
}
.fadeinRight {
	opacity : 0;
	transform : translate(-100px, 0);
	transition : all 800ms;
}
.fadeinUp.scrollin,
.fadeinLeft.scrollin,
.fadeinRight.scrollin{
	opacity : 1;
	transform : translate(0, 0);
}
/* 遅延PC */
.delaypc1 {
	transition-delay: 200ms;
}
.delaypc2 {
	transition-delay: 400ms;
}
@media screen and (max-width: 1024px) {
	.delaypc1 {
		transition-delay: 0ms;
	}
	.delaypc2 {
		transition-delay: 0ms;
	}
}
.ovh,
.ovhidden{
	overflow: hidden;
}


/* header
------------------------------------------------------------------------------ */
header {
	position: fixed;
	/*background-color: rgba(255, 255, 255, .1);*/
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1005;
	
}
.scroll{
	background-color: rgba(0, 100, 220, 0.95);
}
header .layout {
	display: flex;
	padding-left: 60px;
	padding-right: 160px;
	position: relative;
	z-index: 10005;
	transition: background .4s ease-in-out;
}

header h1,
header .logo {
	max-width: 370px;
	width: 370px;
	padding: 55px 0 18px 0px;
	position: relative;
	z-index: 1005;
}
header h1 img,
header .logo img {
	min-width: 300px;
	height: auto;
}
@media screen and (max-width: 1024px) {
	header {
		padding: 0;
		height: 50px;
	}
	header .layout {
		padding-left: 0px;
		padding-right: 50px;
	}
	header h1,
	header .logo {
		max-width: none;
		width: 230px;
		padding-top: 15px;
		padding-left: 15px;
		display: block;
		line-height: 0;
	}
	header h1 img,
	header .logo img {
		min-width: inherit;
	}
}

/* ヘッダーメニュー
------------------------------------------------------------------------------ */
header #header-row-nav {
	flex: 1;
	position: relative;
	z-index: 1001;
}
header #header-row-nav ul {
	display: flex;
	justify-content: flex-end;
	padding-top: 47px;
}
header #header-row-nav li {
	cursor: pointer;
	transition: all .2s;
	white-space: nowrap;
	position: relative;
	margin-left: 30px;
	margin-right: 30px;
}
header #header-row-nav ul li:nth-child(n+2)::before {
	content: "";
	display: inline-block;
	width: 1.5px;
	height: 15px;
	background-color: #fff;
	position: absolute;
	top: 17px;
	left: -30px;
	transform: rotate(25deg);
}
header #header-row-nav ul li a {
	display: block;
	padding: 15px 0px 8px 0px;
	font-size: 17px;
	letter-spacing: 0.09em;
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	color: #fff;
}
header #header-row-nav ul li::after {
	position: absolute;
	bottom: 5px;
	left: 0;
	content: '';
	width: 0;
	height: 2px;
	background-color: #fff;
	transition: .2s;
}
header #header-row-nav ul li:hover::after {
	width: 100%;
}
@media screen and (max-width: 1250px) {
	header #header-row-nav ul li a {
		font-size: 13px;
	}
}
@media screen and (max-width: 1120px) {
	header #header-row-nav ul li:nth-child(-n+5) {
		display: none;
	}
}


/* メガメニュー
------------------------------------------------------------------------------ */
body.navopen #fixwrap {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
/* マウスオン時背景色 */
#navoverlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(255, 255, 255, .0);
	z-index: 100;
	transition: all .2s;
}
#navoverlay.hide {
	display: none;
}
#header-row-nav .nav-box {
	display: none;
	opacity: 0;
	transition: .5s;
	overflow-y: auto;
}
#header-row-nav .active .nav-box {
	display: block;
	animation: navfade .4s ease-out forwards;
}
@keyframes navfade {
	0% {
		opacity: 0;
		top: 40px;
	}
	100% {
		opacity: 1;
		top: 54px; /* メガメニュー表示位置 */
	}
}
#header-row-nav .wide {
	position: absolute;
	/*right:  0;*/
}
#header-row-nav .hm01 .wide {
	/*width: 1286px;*/
	right:  570px;
}
#header-row-nav .hm02 .wide {
	right:  296px;
}
#header-row-nav .hm03 .wide {
	right: 180px;
}
#header-row-nav .hm04 .wide {
	right: 230px;
}

#header-row-nav .wide .inner {
	display: table;
	background-color: rgba(4, 97, 198, 1);
	padding: 30px 0 20px 0;
	position:relative;
	
	margin-top: 20px;
}
#header-row-nav .nav-box .inner_layout {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	
	padding: 0 30px;
}
/*
#header-row-nav .nav-box .inner_layout::before {
	content: "";
	display: block;
	width: 8px;
	height: 20px;
	background-color: #0461c6;
	position: absolute;
	top: -20px;
	left: 49.5%;
	z-index: 100;
}
*/

/* メガメニュー共通 */
#header-row-nav .nav-box p {
	font-size: 13px;
	font-weight: 500;
	line-height: 1.6em;
	color: #fff;
	padding-left: 10px;
	position: relative;
}
#header-row-nav .nav-box p:before {
	content: "";
	display: inline-block;
	width: 5px;
	height: 1px;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 0;
}

/*
#header-row-nav .nav-box .layout {
	padding-left: 40px;
	padding-right: 40px;
}
*/
#header-row-nav .nav-box .imgbox {
	max-width: 310px;
	margin-right: 30px;
}
#header-row-nav .nav-box .imgbox:last-child {
	margin-right: 0px;
}
#header-row-nav .nav-box .imgbox:hover {
	opacity: 0.6;
	transition: .5s;
}

/* ハンバーガーメニューボタン
------------------------------------------------------------------------------ */
header #gnav-btn {
	position: absolute;
	width: 90px;
	height: 90px;
	top: 22px;
	right: 20px;
	background-color: rgba(255, 255, 255, .0);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 1001;
}
header #gnav-btn:hover {
	background-color: rgba(255, 255, 255, 0);
}
header #gnav-btn:hover span {
	transform: scaleX(1.0);
}
header #gnav-btn span {
	position: relative;
	width: 50px;
	height: 2px;
	background-color: #fff;
	transition: all .2s
}
header #gnav-btn span::after {
	content: "";
	display: block;
	position: relative;
	width: 100%;
	height: 2px;
	background-color: #fff;
	/*top: -10px;*/
	top: -2px;
	left: 0;
	transition: all .2s
}
header #gnav-btn span::before {
	content: "";
	display: block;
	position: relative;
	width: 100%;
	height: 2px;
	background-color: #fff;
	top: 8px;
	left: 0;
	transition: all .2s
}
header #gnav-btn.open span {
	animation: nav_anim1 .7s forwards;
}
header #gnav-btn.open span::before {
	animation: nav_anim2 .7s forwards;
}
header #gnav-btn.open span::after {
	animation: nav_anim3 .7s forwards;
}
@media screen and (max-width: 1024px) {
	header #gnav-btn {
		height: 50px;
		width: 70px;
		z-index: 1020;
		top: 0px;
		right: 0px;
		padding-bottom: 6px;
	}
	header #gnav-btn span {
		width: 32px;
	}
	header #gnav-btn span::before {
		top: 10px;
	}
	header #gnav-btn span::after {
		/*top: -12px;*/
		top: -2px;
	}
}

@keyframes nav_anim1 {
	0% {
		background-color: #fff;
	}
	100% {
		background-color: rgba(255, 255, 255, 0);
	}
}
@keyframes nav_anim2 {
	0% {
		top: 16px;
		transform: rotate(0);
	}
	50% {
		top: 0;
		transform: rotate(0);
	}
	100% {
		transform: rotate(225deg);
		top: 2px;
	}
}
@keyframes nav_anim3 {
	0% {
		top: -16px;
		transform: rotate(0);
	}
	50% {
		top: 0;
		transform: rotate(0);
	}
	100% {
		transform: rotate(-225deg);
		top: 0;
	}
}


/* ハンバーガーメニュー
------------------------------------------------------------------------------ */
header nav#allmenu {
	display: none;
	position: absolute;
	top: 0px;
	/*top: 0;*/
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 100, 220, 0.95);
	z-index: 1000;
	
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
header nav#allmenu .inner {
	max-width: 1260px;
	margin: 0 auto;
	padding-top: 230px;
	display: flex;
	flex-wrap: wrap;
}
header nav#allmenu .inner .box {
	width: 33.3%;
	/*height: calc(100vh - 180px);*/
	padding-top: 10px;
	padding-left: 7%;
	padding-right: 3.1%;
	margin-bottom: 30px;
	border-right: #fff solid 1px;
}
header nav#allmenu .inner .box:last-child {
	border: none;
}
header nav#allmenu .inner .box h3 {
	color: #fff;
	font-size: 33px;
	font-weight: 600;
	font-family: 'Manrope', sans-serif;
	padding-bottom: 30px;
	white-space: nowrap;
}
header nav#allmenu .inner .box li {
	position: relative;
	padding: 10px 0 10px 14px;
}
header nav#allmenu .inner .box li span {
	font-size: 80%;
	padding-bottom: 5px;
	display: block;
}
header nav#allmenu .inner .box li:before {
	content: "";
	display: inline-block;
	width: 5px;
	height: 2px;
	background-color: #00c9a7;
	position: absolute;
	top: 50%;
	left: 0;
}
header nav#allmenu .inner .box li a {
	color: #fff;
	display: block;
}
header nav#allmenu .inner .box li a:hover {
	color: #00c9a7;
}
@media screen and (max-width: 1024px) {
	header nav#allmenu {
		display: none;
		background-color: rgba(0, 100, 220, 0.98);
		top: 0px !important;
		left: 0;
		opacity: 0;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		height: 100vh;
		/*position: fixed;
		top: -9999px;*/
		width: 100%;
	}
	header nav#allmenu.open {
		padding: 40px 0 100px 0;
		opacity: 1;
		top: 0;
	}	
	header nav#allmenu .inner {
		display: block;
		padding: 0;
		padding-top: 40px;
		width: auto;
		margin-left: 30px;
		margin-right: 30px;
	}
	header nav#allmenu .inner .box {
		width: auto;
		height: auto;
		padding-top: 0px;
		/*padding-left: 50px;*/
		padding-left: 0;
		padding-right: 0;
		margin-bottom: 0px;
		border-right: none;
		/*border-bottom: #fff solid 1px*/
	}
	header nav#allmenu .inner .box h3 {
		padding-bottom: 5px;
		background-image: url("../images/line_w.png");
		background-repeat: repeat-x;
		background-position: center;
		background-size: auto 1px;
	}
	header nav#allmenu .inner .box h3 span {
		font-size: 30px;
		font-weight: 700;
		padding-right: 10px;
		background-color: rgba(0, 100, 220, 0.95);
	}
	header nav#allmenu .inner .box:nth-child(n+2) h3 {
		margin-top: 40px;
	}
	header nav#allmenu .inner .box ul {
		padding-bottom: 0px;
	}
	header nav#allmenu .inner .box li {
		font-size: 15px;
		padding: 10px 0 4px 14px;
	}
}


/* --------------------------------- */
header nav#allmenu .inner .menu-box {
	margin: 0 0 7vh 0;
}
/* */
header nav#allmenu .inner .menu-box .label {
	/*color: #E71E10;*/
	font-weight: normal;
	padding-bottom: 16px;
	
	display: flex;
	justify-content: space-between;
	background-image: linear-gradient(180deg, #212121 0%, #212121 1px, transparent 1px, transparent 100%);
}
header nav#allmenu .inner .menu-box .label span.en_t {
	font-family: 'Montserrat', sans-serif;
	font-size: 32px;
	font-weight: 700;
	padding-left: 15px;
	padding-right: 10px;
	/*background-image: url("../images/icn_y.svg");*/
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 10px auto;
	
	background-color: #fff;
	margin-top: -26px;
}
header nav#allmenu .inner .menu-box .label .red {
	background-image: url("../images/icn_y_red.svg");
}
header nav#allmenu .inner .menu-box .label .green {
	background-image: url("../images/icn_y_green.svg");
}
header nav#allmenu .inner .menu-box .label span.jp {
	font-size: 13px;
	color: #000000;
	font-weight: 500;
	
	padding-left: 5px;
	background-color: #fff;
	margin-top: -10px;
}
header nav#allmenu .inner .menu-box ul a {
	padding: 9px 0 9px 14px;
	position: relative;
	display: flex;
	align-items: center;
	font-size: 18px;
	font-weight: 500;
	width: 100%;
	color: #212121;
	transition: all 0.3s ease;
}
header nav#allmenu .inner .menu-box ul a .mov {
	padding-right: 26px;
	/*background-image: url("../images/icn_san_r.svg");*/
	background-repeat: no-repeat;
	background-position: right top 3px;
	background-size: 17px auto;
	font-weight: 500;
}
header nav#allmenu .inner .menu-box ul a .red {
	background-image: url("../images/icn_san_r.svg");
}
header nav#allmenu .inner .menu-box ul a .green {
	background-image: url("../images/icn_san_g.svg");
}
header nav#allmenu .inner .menu-box ul a:hover {
	text-decoration: none;
	color: #E71E10;
}
@media screen and (max-width: 1024px) {
	header nav#allmenu .inner .menu-box .label {
		padding-bottom: 6px;
	}
	header nav#allmenu .inner .menu-box .label span.en_t {
		font-size: 26px;
		margin-top: -18px;
	}
	header nav#allmenu .inner .menu-box .label span.jp {
		font-size: 12px;
	}
	header nav#allmenu .inner .menu-box ul a {
		padding: 7px 0 7px 14px;
		font-size: 16px;
	}
	header nav#allmenu .inner .menu-box ul a .mov {
		background-size: 14px auto;
	}
}



/*
Main（(headr fixの高さ調整）
------------------------------------------------------------------------------ */
main {
	width: auto;
	font-size: 16px;
	line-height: 1.8em;
}
main .palt {
	font-feature-settings: "palt";
	letter-spacing: 0.08em;
}

@media screen and (max-width: 1024px) {
	main {
		font-size: 14px;
	}
	/*
	main .common_wrap {
		max-width: none;
		margin-left: 20px;
		margin-right: 20px;
	}
	.recommended_box {
		padding-top: 60px;
		padding-bottom: 75px;
		margin-top: 50px;
	}
	.recommended_box h4 {
		font-size: 15px;
		padding-bottom: 40px;
	}
	.recommended_box .inner {
		max-width: none;
		width: 86%;
	}
	.recommended_box .inner .txtbox {
		font-size: 12px;
		padding: 16px 16px;
	}
	.recommended_box .inner .txtbox span {
		padding-right: 40px;
		background-size: 20px auto;
	}
	*/
}
/*
下層common
------------------------------------------------------------------------------ */
.mainimg {
	width: 100%;
	height: 600px;
	background-position: center top;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
}
.mainimg .inner {
	padding-top: 100px;
	text-align: center;
}
.mainimg .inner h1 {
	font-size: 48px;
	font-weight: 600;
	color: #fff;
	font-feature-settings: "palt";
}
.mainimg .inner p {
	color: #fff;
	font-size: 24px;
	font-family: 'Manrope', sans-serif;
	padding-top: 26px;
}
@media screen and (max-width: 1024px) {
	.mainimg {
		height: 250px;
	}
	.mainimg .inner {
		padding-top: 20px;
	}
	.mainimg .inner h1 {
		font-size: 24px;
	}
	.mainimg .inner p {
		font-size: 14px;
		padding-top: 3px;
	}
}

.topmd {
	text-align: center;
	font-size: 25px;
	color: #0064dc;
	font-weight: 500;
	padding-bottom: 30px;
}
.toplead {
	padding-bottom: 90px;
	text-align: center;
	font-size: 20px;
	line-height: 1.8em;
}
@media screen and (max-width: 1024px) {
	.topmd {
		text-align: center;
		font-size: 18px;
		color: #0064dc;
		font-weight: 500;
		padding-bottom: 20px;
	}
	.toplead {
		padding-bottom: 50px;
		font-size: 15px;
	}
}

/* footボタン1 */
.footbtn_wrap {
	background-color: #f1f1f1;
	padding-top: 130px;
	padding-bottom: 140px;
}
.footbtn_wrap h4 {
	color: #363746;
	text-align: center;
	font-size: 37px;
	font-weight: 500;
	font-family: 'Montserrat', sans-serif;
}
.footbtn_wrap .jp {
	color: #363746;
	text-align: center;
	font-size: 18px;
	padding-top: 15px;
	padding-bottom: 70px;
}
/*
.btnbox {
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
}
.btnbox .btn {
	width: 50%;
	display: block;
}
*/
.btnbox {
	display: table;
	margin-left: auto;
	margin-right: auto;
}
.btnbox .inner {
	display: flex;
}
.btnbox .inner .btn {
	max-width: 640px;
	display: block;
}
@media screen and (max-width: 1024px) {
	.footbtn_wrap {
		padding-top: 30px;
		padding-bottom: 100px;
	}
	.footbtn_wrap h4 {
		font-size: 20px;
	}
	.footbtn_wrap .jp {
		font-size: 15px;
		padding-top: 0px;
		padding-bottom: 30px;
	}
	.btnbox {
		margin-left: 20px;
		margin-right: 20px;
		display: block;
	}
	.btnbox .inner {
		display: block;
	}
	.btnbox .btn {
		width: 100%;
	}
	.btnbox .btn:nth-of-type(2) {
		margin-top: 30px;
	}
}
.btnbox .btn ul {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	z-index: 10;
	position: relative;
	margin-top: -22px;
}
.btnbox .btn ul li {
	color: #fff;
	height: 40px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.btnbox .btn ul li.nomal,
.btnbox .btn ul li.th1{
	background-color: #0064dc;
	font-size: 20px;
}
.btnbox .btn ul li.th1:after {
	position: absolute;
	content: '';
	right: 0px;
	top: 0px;
	width: 0;
	height: 0;
	border: none;
	border-left: solid 40px transparent;
	border-bottom: solid 40px #05a5d2;
	z-index: 1;
}
.btnbox .btn ul li.th2 {
	background-color: #05a5d2;
	font-size: 15px;
	font-family: 'Manrope', sans-serif;
	white-space: nowrap;
}
.btnbox .btn:nth-of-type(1) ul li.th1 {
	width: 65%;
}
.btnbox .btn:nth-of-type(1) ul li.th2 {
	width: 35%;
}
/*
.btnbox .btn:nth-of-type(2) ul li.th1 {
	width: 74%;
}
.btnbox .btn:nth-of-type(2) ul li.th2 {
	width: 26%;
}
*/
.btnbox .btn ul li.nomal {
	width: 100%;
}
@media screen and (max-width: 1024px) {
	.btnbox .btn ul {
		width: 100%;
		margin-top: 0px;
	}
	.btnbox .btn ul li {
		height: 30px;
	}
	.btnbox .btn ul li.nomal,
	.btnbox .btn ul li.th1 {
		font-size: 12px;
	}
	.btnbox .btn ul li.th1:after {
		border-left: solid 20px transparent;
		border-bottom: solid 30px #05a5d2;
	}
	.btnbox .btn ul li.th2 {
		font-size: 12px;
	}
	/*
	.btnbox .btn ul li.th1 {
		width: 70% !important;
	}
	.btnbox .btn ul li.th2 {
		width: 30% !important;
	}
	*/
}

/* footボタン2 */
.recbtn {
	width: 1280px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: space-between;
}
.btn3 {
	width: 954px;
	flex-wrap: wrap;
}
.recbtn li {
	width: 23.45%;
}
.btn3 li {
	width: 31.44%;
}
.btn3 li:nth-of-type(n+4) {
	margin-top: 20px;
}
.btn3 li:nth-of-type(4) {
	margin-left: 17%;
}
.btn3 li:nth-of-type(5) {
	margin-right: 17%;
}
@media screen and (max-width: 1024px) {
	.btn3 li:nth-of-type(n+4) {
		margin-top: inherit;
	}
	.btn3 li:nth-of-type(4) {
		margin-left: inherit;
	}
	.btn3 li:nth-of-type(5) {
		margin-right: inherit;
	}
}

.recbtn li a {
	width: auto;
	height: 110px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	color: #0064dc;
	
	background-image: url("../../images/btn_gb.png");
	background-size: cover;
}
.recbtn li a:hover {
	opacity: 0.7;
}
@media screen and (max-width: 1024px) {
	/*
	.recbtn {
		width: auto;
		margin-left: 20px;
		margin-right: 20px;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.recbtn li {
		width: 47%;
		margin-bottom: 20px;
	}
	.recbtn li a {
		height: 58px;
		font-size: 16px;
		line-height: 1.2em;
	}
	*/
	.recbtn {
		width: 220px;
		margin-left: auto;
		margin-right: auto;
		display: block;
	}
	.recbtn li {
		width: 100%;
		margin-bottom: 20px;
	}
	.recbtn li a {
		height: 70px;
		font-size: 16px;
		line-height: 1.2em;
		background-image: url("../../images/btn_gb_sp.png");
	}
	.recbtn li a:hover {
		opacity: 1;
	}
}


/* 画像リンク */
.imgbox {
	position: relative;
	display: block;
}
/* 画像リンク マウスオン エフェクト */
.image {
	overflow: hidden;
	line-height: 0;
}
.image img {
	transition: all .3s ease;
}
.image:hover img {
	transform: scale(1.07);
	opacity: 0.8;
}
.hover:hover{
	filter:alpha(opacity=80);
	-moz-opacity:0.8;
	opacity:0.8;
}

/* 共通見出し */
.md20,
.md25 {
	display: table;
	margin-left: auto;
	margin-right: auto;
}
.md20 span {
	color: #0064dc;
	font-size: 20px;
	position: relative;
}
.md20 span::before,
.md20 span::after {
	content: "";
	display: inline-block;
	width: 2px;
	height: 42px;
	background-color: #0064dc;
	position: absolute;
	top: -6px;
	transform: rotate(45deg);
}
.md20 span::before{
	left: -30px;
}
.md20 span::after{
	right: -40px;
}
@media screen and (max-width: 1024px) {
	.md20 span {
		font-size: 15px;
	}
	.md20 span::before,
	.md20 span::after {
		height: 21px;
		top: 4px;
	}
}


.md25 span {
	color: #0064dc;
	font-size: 25px;
	font-weight: 500;
	position: relative;
}
.md25 span::before,
.md25 span::after {
	content: "";
	display: inline-block;
	width: 2px;
	height: 50px;
	background-color: #0064dc;
	position: absolute;
	top: -6px;
	transform: rotate(45deg);
}
.md25 span::before{
	left: -30px;
}
.md25 span::after{
	right: -40px;
}
@media screen and (max-width: 1024px) {
	.md25 span {
		font-size: 15px;
	}
	.md25 span::before,
	.md25 span::after {
		height: 21px;
		top: 0px;
	}
	.md25 span::before{
	left: -20px;
	}
	.md25 span::after{
		right: -30px;
	}
}

/* 未リンク */
.nolink {
	opacity: 0.3;
	cursor: default;
}
#allmenu .hnolink,
.footbtn_wrap .hnolink {
	opacity: 0.3;
	color: #fff;
}
.footbtn_wrap .hnolink  a:hover {
	opacity: 1;
	cursor: default;
}

/*
footer
------------------------------------------------------------------------------ */
footer {
	position: relative;
	z-index: 10;
	background-color: #0064dc;
}
footer #footer_inner {
	padding: 26px 3% 26px 3%;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	font-size: 11px;
}
footer #footer_inner ul {
	display: flex;
}
footer #footer_inner ul li {
	line-height: 100%;
	position: relative;
}
footer #footer_inner ul li::after {
	content: '';
	display: inline-block;
	background-image: url("../images/icn_blank_w.svg");
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
	width: 14px;
	height: 10px;
	position: absolute;
	top: 1px;
	right: -16px;
}
footer #footer_inner a {
	color: #fff;
	transition: all .2s;
}
footer #footer_inner a:hover {
	opacity: 0.6;
	text-decoration: none;
}
footer #footer_inner .copyright {
	color: #fff;
}
@media screen and (max-width: 1024px) {
	footer {
		margin: 0;
	}
	.interviewindex footer {
		border-top: #e9e9e9 solid 1px;
	}
	footer #footer_inner {
		padding: 15px 3% 15px 3%;
		font-size: 10px;
		display: block;
	}
	footer #footer_inner ul {
		justify-content: center;
	}
	footer #footer_inner ul li {
		padding-bottom: 10px;
		font-size: 14px;
	}
	footer #footer_inner ul li::after {
		width: 14px;
		height: 10px;
		position: absolute;
		top: 4px;
		right: -18px;
	}
	footer #footer_inner .copyright {
		text-align: center;
	}
}

/* ページ上部へ 
------------------------------------------------------------------------------ */
#scrollUp {
	right: 22px;
	bottom: 80px;
	width: 60px;
	height: 100px;
	background-image: url("../images/icn_up.png");
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: auto 90px;
	text-indent: -9999px;
}
#scrollUp:hover {
	opacity: 0.8;
	background-position: center top;
}
.top #scrollUp {
	display: none !important;
}
@media screen and (max-width: 1024px) {
	#scrollUp {
		right: 10px;
		bottom: 80px;
		width: 40px;
		height: 50px;
		background-size: auto 50px;
	}
}