@charset "utf-8";

/* ////////////////////////////////////////////////////////////
	File Name	common.css
*/
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700&display=swap&subset=japanese');
@import url('perfect-scrollbar.css');
@import url('module.css');
@import url('fonts.css');
@import url('icons.css');
@import url('slick.css');

/*============================================================
	HTML
*/
* {
	margin:0;
	padding:0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html, body {
	width: 100%;
	background-color: #fff;
	color: #333;
}
body {
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 2.2;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
}
li {
	list-style: none;
}
table {
	border-collapse: collapse;
}
dl, dt, dd {
	font-weight: inherit;
}
img {
	display: block;
	max-width: 100%;
	width: 100%;
	border: 0;
}
a {
	text-decoration: none;
	color: #00008f;
	outline: none;
	cursor: pointer;
}
a.disable {
	cursor: default;
}
i {
	font-style: normal;
}
h1, h2, h3, h4 {
	font-size: 100%;
	font-weight: 500;
	color: inherit;
}
@media screen and (min-width: 769px) {
	a,
	button {
		-webkit-transition: color 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
		        transition: color 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
	}
}

/*============================================================
	サイズ判定用
*/
#size-pc {
	display: block;
	height: 0;
}
#size-sp {
	display: none;
	height: 0;
}
@media screen and (max-width: 768px) {
	#size-pc {
		display: none;
	}
	#size-sp {
		display: block;
	}
}

/*============================================================
	アニメーション
*/
/* 下からフェードイン */
.anim-fade {
	opacity: 0;
	-webkit-transform: translateY(30px);
	        transform: translateY(30px);
}
.anim-fade-active {
	-webkit-transition: -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s, opacity 0.8s ease-out 0.1s;
	        transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s, opacity 0.8s ease-out 0.1s;
	opacity: 1;
	-webkit-transform: translateY(0px);
	        transform: translateY(0px);
}
/* 左へフェードイン */
.anim-fade-left {
	opacity: 0;
	-webkit-transform: translateX(30px);
	        transform: translateX(30px);
}
.anim-fade-left-active {
	-webkit-transition: -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s, opacity 0.8s ease-out 0.1s;
	        transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s, opacity 0.8s ease-out 0.1s;
	opacity: 1;
	-webkit-transform: translateX(0px);
	        transform: translateX(0px);
}

/*============================================================
	区切り罫
*/
.body .hr {
	height: 4px;
	background-color: #ecf2f6;
}

/*============================================================
	英字
*/
.en {
	font-size: 13px;
	font-weight: 700;
	font-family: Roboto, sans-serif;
	line-height: 1.5;
	letter-spacing: 2px;
}
.en-i {
	font-size: 13px;
	font-weight: 700;
	font-family: Roboto-Italic, sans-serif;
	line-height: 1.5;
	letter-spacing: 2px;
}
.en-cond {
	font-size: 13px;
	font-weight: 700;
	font-family: Roboto-Condensed, sans-serif;
	line-height: 1.5;
	letter-spacing: 2px;
}
.en-cond-i {
	font-size: 13px;
	font-weight: 700;
	font-family: Roboto-Condensed-Italic, sans-serif;
	line-height: 1.5;
	letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
	.en,
	.en-i,
	.en-cond,
	.en-cond-i {
		font-size: 10px;
	}
}

/*============================================================
	テキストリンク
*/
@media screen and (min-width: 769px) {
	a.link-text:hover {
		text-decoration: underline;
	}
}

/*============================================================
	約物冒頭インデント
*/
.half-indent {
	display: inline-block;
	text-indent: -0.5em;
}
@media screen and (max-width: 768px) {
	.half-indent-sp {
		display: inline-block;
		text-indent: -0.5em;
	}
}

/*============================================================
	アイコンブランク
*/
.icon-blank {
	position: relative;
	display: inline-block;
	width: 7px;
	height: 7px;
	border: 1px solid #00008f;
}
.icon-blank::before,
.icon-blank::after {
	content: '';
	display: block;
	position: absolute;
	left: -3px;
	bottom: -3px;
	background-color: #00008f;
}
.icon-blank::before {
	width: 1px;
	height: 6px;
}
.icon-blank::after {
	width: 6px;
	height: 1px;
}

/*============================================================
	VISIBLE
*/
.visible-pc {
	display: block;
}
.visible-sp {
	display: none;
}
@media screen and (max-width: 768px) {
	.visible-pc {
		display: none;
	}
	.visible-sp {
		display: block;
	}
}

/*============================================================
	コンテナ
*/
#container {
	position: relative;
	margin: 0 auto;
	padding-top: 120px;
	width: 100%;
	min-width: 1280px;
}
.body {
	position: relative;
	width: 100%;
}
.container {
	position: relative;
	margin: 0 auto;
	padding: 0 40px;
	max-width: 1280px;
}
@media screen and (max-width: 768px) {
	#container {
		padding-top: 70px;
		min-width: 1px;
	}
	.container {
		padding: 0;
	}
}

/*============================================================
	ボタン
*/
/* ボーダー */
.btn-outline {
	display: block;
	background-color: #fff;
	border: 2px solid #00008f;
	text-align: center;
	font-weight: 500;
	font-size: 14px;
	line-height: 56px;
	color: #00008f;
}
@media screen and (min-width: 769px) {
	.btn-outline:hover {
		background-color: #00008f;
		color: #fff;
	}
}
@media screen and (max-width: 768px) {
	.btn-outline {
		border-width: 1px;
		font-size: 11px;
		line-height: 43px;
	}
}

/*============================================================
	[汎用] メイン
*/
.unit-main {
	background-color: transparent;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}
.unit-main .v-inner {
	height: 480px;
	text-align: center;
	color: #fff;
}
.unit-main .h {
	font-weight: 400;
	font-size: 38px;
	line-height: 1.5;
}
@media screen and (max-width: 768px) {
	.unit-main .v-inner {
		height: 260px;
	}
	.unit-main .h {
		font-size: 23px;
		line-height: 1.7;
	}
}

/*============================================================
	[汎用] 見出し
*/
/**/
.unit-h1 {
	padding: 70px 0;
	text-align: center;
	font-weight: 400;
	font-size: 38px;
	line-height: 1.3;
	color: #00008f;
	letter-spacing: 0.1em;
}
.unit-h1::after {
	content: '';
	display: block;
	margin: 40px auto 0 auto;
	width: 80px;
	height: 4px;
	background-color: #ff1721;
}
/**/
.unit-heading {
	padding: 20px 30px;
	background-color: #00008f;
	color: #fff;
}
.unit-heading .h {
	font-size: 24px;
	line-height: 1.6;
}
/**/
.unit-subhead {
	padding-left: 16px;
	border-left: 4px solid #00008f;
}
.unit-subhead .h {
	padding-bottom: 1px;
	font-size: 20px;
	line-height: 1.6;
	color: #00008f;
}
/**/
@media screen and (max-width: 768px) {
	.unit-h1 {
		padding: 50px 0;
		font-weight: 500;
		font-size: 23px;
	}
	.unit-h1::after {
		margin-top: 20px;
		width: 40px;
		height: 3px;
	}
	.unit-heading {
		padding: 15px 15px;
	}
	.unit-heading .h {
		font-size: 18px;
	}
	.unit-subhead {
		padding-left: 12px;
		border-width: 2px;
	}
	.unit-subhead .h {
		font-size: 15px;
		line-height: 1.4;
	}
}

/*============================================================
	[汎用] エントリーナビゲーション
*/
.nav-entry {
	width: 100%;
	line-height: 1.4;
}
.nav-entry ul {
}
.nav-entry ul li {
	display: table;
	float: left;
	width: 50%;
	font-weight: 700;
}
.nav-entry ul li a {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
	text-align: center;
	color: #fff;
}
.nav-entry ul li div {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
	text-align: center;
	color: #fff;
}
.nav-entry ul li a span {
	display: block;
	margin-top: 5px;
}
.nav-entry ul li div span {
	display: block;
	margin-top: 2px;
}
.nav-entry ul li.nav01 a,
.nav-entry ul li.nav01 div {
	background-color: #00008f;
}
.nav-entry ul li.nav02 a,
.nav-entry ul li.nav02 div {
	background-color: #027180;
}
.nav-entry ul li.nav03 a {
	background-color: #00005b;
}
.nav-entry ul li.nav04 a {
	background-color: #000037;
}
.nav-entry ul li.close {
	display: none;
}
.nav-entry ul li.close a {
	background-color: #060622;
}
@media screen and (min-width: 769px) {
	.nav-entry ul li a:hover {
		color: rgba(255,255,255,0.7);
	}
	.nav-entry ul li.nav01 a:hover {
		background-color: #000072;
	}
	.nav-entry ul li.nav02 a:hover {
		background-color: #025a66;
	}
	.nav-entry ul li.nav03 a:hover {
		background-color: #000049;
	}
	.nav-entry ul li.nav04 a:hover {
		background-color: #00002c;
	}
}

/*============================================================
	[汎用] アンカーナビゲーション
*/
.nav-anchor {
	position: relative;
	padding: 20px 0 50px 0;
}
.nav-anchor .inner-sp {
	display: none;
}
.nav-anchor a {
	color: #000;
}
.nav-anchor .select {
	display: none;
}
.nav-anchor .list ul li {
	float: left;
	margin-top: 30px;
	padding-right: 50px;
	font-size: 14px;
	line-height: 1.5;
}
.nav-anchor .list ul li:last-child {
	padding-right: 0;
}
.nav-anchor .list ul li .anchor {
	display: inline-block;
	position: relative;
	padding-right: 30px;
	cursor: pointer;
}
.nav-anchor .list ul li .anchor i {
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -10px;
	padding-top: 1px;
	width: 20px;
	height: 20px;
	background: #00008f url(/company/recruitment/assets/img/common/arrow-nav-anchor.png) 50% 50% no-repeat;
	background-size: cover;
	border-radius: 50%;
	color: #fff;
}
@media screen and (min-width: 769px) {
	.nav-anchor .list ul li .anchor:hover {
		color: #00008f;
	}
}
@media screen and (max-width: 768px) {
	.nav-anchor {
		margin-top: 30px;
		padding: 0;
		height: 80px;
	}
	.nav-anchor .inner {
		display: none;
	}
	.nav-anchor .inner-sp {
		display: block;
		position: absolute;
		z-index: 10;
		top: 0;
		left: 10px;
		right: 10px;
		background-color: #fff;
		border: 2px solid #e4e6e9;
		border-radius: 6px;
	}
	.nav-anchor .select {
		display: block;
	}
	.nav-anchor .select a {
		position: relative;
		display: block;
		padding: 0 20px;
		font-size: 12px;
		line-height: 46px;
	}
	.nav-anchor .select a i {
		position: absolute;
		top: 50%;
		right: 20px;
		margin-top: -7px;
		width: 13px;
		height: 13px;
	}
	.nav-anchor .select a i.icon-arrow-up-b {
		display: none;
	}
	.nav-anchor.opened .select a i.icon-arrow-up-b {
		display: block;
	}
	.nav-anchor.opened .select a i.icon-arrow-down-b {
		display: none;
	}
	.nav-anchor .list {
		padding: 0 20px;
		overflow: hidden;
		height: 0;
	}
	.nav-anchor .list ul {
		padding: 15px 0;
		border-top: 1px solid #e4e6e9;
	}
	.nav-anchor .list ul li {
		float: none;
		margin: 0;
		padding: 10px 0;
		font-size: 13px;
	}
	.nav-anchor .list ul li .anchor {
		padding-right: 22px;
	}
	.nav-anchor .list ul li .anchor i {
		margin-top: -7px;
		width: 14px;
		height: 14px;
	}
}

/*============================================================
	[汎用] スライダードット
*/
.slick-dots {
	display: table;
	margin: 0 auto;
	margin-top: 15px;
}
.slick-dots li {
	display: table-cell;
	vertical-align: top;
}
.slick-dots li button {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	background-color: transparent;
	border: 0;
	border-radius: 0;
	outline: 0;
	color: transparent;
	font-size: 0;
	line-height: 0;
	-webkit-appearance: none;
	appearance: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
	width: 20px;
	height: 20px;
}
.slick-dots li button::before {
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #e4e6e9;
}
.slick-dots li.slick-active button::before {
	width: 9px;
	height: 9px;
	background-color: #00008f;
}

/*============================================================
	ヘッダー
*/
#header {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	min-width: 1280px;
}
.ready #header {
	-webkit-transition: -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
	        transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.hide-header #header {
	-webkit-transform: translateY(-120px);
	        transform: translateY(-120px);
}
.hide-header.megamenu-opened #header {
	-webkit-transform: translateY(0px) !important;
	        transform: translateY(0px) !important;
}
#header header {
	position: relative;
	height: 120px;
	background-color: #fff;
}
/* ロゴ */
#header header .logo {
	position: absolute;
	top: 25px;
	left: 25px;
}
#header header .logo a {
	display: table;
}
#header header .logo .axa {
	display: table-cell;
	vertical-align: middle;
	width: 70px;
}
#header header .logo .axa img {
	width: 70px;
}
#header header .logo .en-cond-i {
	display: table-cell;
	vertical-align: middle;
	padding-left: 60px;
	font-size: 12px;
	line-height: 1.5;
	color: #99a1ad;
	letter-spacing: 0.2em;
}
#header header .logo .en-cond-i span {
	display: block;
}

@media screen and (max-width: 768px) {
	#header {
		min-width: 1px;
		-webkit-transform: translateY(0px) !important;
		        transform: translateY(0px) !important;
	}
	#header header {
		z-index: 1000;
		height: 70px;
	}
	/* ロゴ */
	#header header .logo {
		top: 10px;
		left: 10px;
		margin-top: 0;
	}
	#header header .logo .axa,
	#header header .logo .axa img {
		width: 50px;
	}
	#header header .logo .en-cond-i {
		padding-left: 25px;
		font-size: 10px;
	}
}

/*============================================================
	言語ボタン
*/
.btn-global {
	display: flex;
	position: fixed;
	align-items: center;
	z-index: 2000;
	top: 0;
	right: 350px;
	height: 120px;
	font-size: 16px;
	line-height: 1.5;
	color: #000090;
	letter-spacing: 2px;
}
.ready .btn-global {
	-webkit-transition: -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
	        transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.hide-header .btn-global {
	-webkit-transform: translateY(-120px);
	        transform: translateY(-120px);
}
.hide-header.megamenu-opened .btn-global {
	-webkit-transform: translateY(0px) !important;
	        transform: translateY(0px) !important;
}
.btn-global div {
	padding: 0 5px;
}
.btn-global div > a,
.btn-global div > span {
	display: block;
	padding: 5px 4px;
}
.btn-global div > a {
	opacity: 0.6;
}
.btn-global div > a > span,
.btn-global div > span > span {
	position: relative;
	display: block;
	padding: 2px 2px 2px 4px;
	border-bottom: 2px solid transparent;
	-webkit-transition: all 0.3s ease;
	        transition: all 0.3s ease;
}
.btn-global div > a > span {
	color: #000090;
}
.btn-global div > span > span::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 2px;
	height: 2px;
	background-color: #000090;
	-webkit-transition: all 0.3s ease;
	        transition: all 0.3s ease;
}
.megamenu-opened .btn-global,
.megamenu-opened .btn-global div > a > span {
	color: #fff;
}
.megamenu-opened .btn-global div > span > span::after {
	background-color: #fff;
}
@media screen and (max-width: 1279px) {
	.btn-global {
		right: auto;
		left: 838px;
	}
}
@media screen and (min-width: 769px) {
	.btn-global div > a:hover {
		opacity: 1;
	}
}
@media screen and (max-width: 768px) {
	.btn-global {
		display: none;
	}
}

/*============================================================
	エントリーボタン
*/
#btn-entry {
	position: fixed;
	z-index: 2000;
	top: 0;
	right: 148px;
	width: 170px;
	height: 120px;
}
.ready #btn-entry {
	-webkit-transition: -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
	        transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.hide-header #btn-entry {
	-webkit-transform: translateY(-120px);
	        transform: translateY(-120px);
}
.hide-header.megamenu-opened #btn-entry {
	-webkit-transform: translateY(0px) !important;
	        transform: translateY(0px) !important;
}
#btn-entry a {
	position: absolute;
	top: 50%;
	right: 0;
	display: block;
	margin-top: -25px;
	padding-left: 10px;
	width: 170px;
	background-color: #fff;
	border: 2px solid #00008f;
	text-align: center;
	font-family: Roboto;
	font-weight: 700;
	font-size: 18px;
	line-height: 46px;
	color: #00008f;
	letter-spacing: 0.1em;
}
#btn-entry a span {
	position: relative;
	display: inline-block;
	padding-right: 30px;
}
#btn-entry a i {
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -4px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 5px 0 5px;
	border-color: #00008f transparent transparent transparent;
	-webkit-transition: all 0.3s ease;
	        transition: all 0.3s ease;
}
.entry-opened #btn-entry a {
	background-color: #00008f;
	color: #fff;
}
.entry-opened #btn-entry a i {
	border-width: 0 5px 8px 5px;
	border-color: transparent transparent #fff transparent;
}
.megamenu-opened #btn-entry a {
	border-color: #fff;
	background-color: transparent;
	color: #fff;
}
.megamenu-opened #btn-entry a i {
	border-color: #fff transparent transparent transparent;
}
.megamenu-opened.entry-opened #btn-entry a i {
	border-color: transparent transparent #00008f transparent;
}
.megamenu-opened.entry-opened #btn-entry a {
	border-color: #fff;
	background-color: #fff;
	color: #00008f;
}
@media screen and (max-width: 1279px) {
	#btn-entry {
		right: auto;
		left: 962px;
	}
}
@media screen and (min-width: 769px) {
	#btn-entry a:hover {
		background-color: #00008f;
		color: #fff;
	}
	#btn-entry a:hover i {
		border-color: #fff transparent transparent transparent;
	}
	.entry-opened #btn-entry a:hover i {
		border-color: transparent transparent #fff transparent;
	}
	.megamenu-opened #btn-entry a:hover {
		background-color: #fff;
		color: #00008f;
	}
	.megamenu-opened #btn-entry a:hover i {
		border-color: #00008f transparent transparent transparent;
	}
	.megamenu-opened.entry-opened #btn-entry a:hover i {
		border-color: transparent transparent #00008f transparent;
	}
}
@media screen and (max-width: 768px) {
	#btn-entry {
		top: 0;
		right: 70px;
		left: auto;
		margin: 0;
		height: 70px;
		-webkit-transform: translateY(0px) !important;
		        transform: translateY(0px) !important;
	}
	#btn-entry a {
		top: 20px;
		right: 0;
		margin: 0;
		padding: 0 18px;
		width: auto;
		border: 0;
		border-right: 1px solid #e4e6e9 !important;
		background-color: transparent !important;
		font-size: 12px;
		line-height: 30px;
		color: #00008f !important;
	}
	#btn-entry a span {
		padding: 0;
	}
	#btn-entry a i {
		display: none;
	}
}

/*============================================================
	メガメニューボタン
*/
#megamenu-opener {
	position: fixed;
	z-index: 2000;
	top: 0;
	right: 0;
	width: 56px;
	height: 120px;
}
.ready #megamenu-opener {
	-webkit-transition: -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
	        transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.hide-header #megamenu-opener {
	-webkit-transform: translateY(-120px);
	        transform: translateY(-120px);
}
.hide-header.megamenu-opened #megamenu-opener {
	-webkit-transform: translateY(0px) !important;
	        transform: translateY(0px) !important;
}
#megamenu-opener a {
	display: block;
	position: absolute;
	top: 50%;
	right: 32px;
	margin-top: -25px;
	width: 56px;
	height: 50px;
}
#megamenu-opener i {
	display: block;
	position: absolute;
	right: 0;
	height: 2px;
	background-color: #00008f;
	-webkit-transition: all 0.3s ease;
	        transition: all 0.3s ease;
}
#megamenu-opener i:nth-child(1) {
	top: 10px;
	width: 56px;
}
#megamenu-opener i:nth-child(2) {
	top: 24px;
	width: 38px;
}
#megamenu-opener i:nth-child(3) {
	top: 38px;
	width: 19px;
}
/* 展開 */
.megamenu-opened #megamenu-opener i {
	background-color: #fff;
}
.megamenu-opened #megamenu-opener i:nth-child(1) {
	top: 25px;
	width: 41px;
	transform-origin: 50% 50%;
	transform: rotate(45deg);
}
.megamenu-opened #megamenu-opener i:nth-child(2) {
	opacity: 0;
}
.megamenu-opened #megamenu-opener i:nth-child(3) {
	top: 25px;
	width: 41px;
	transform-origin: 50% 50%;
	transform: rotate(-45deg);
}
@media screen and (max-width: 1279px) {
	#megamenu-opener {
		right: auto;
		left: 1224px;
	}
}
@media screen and (max-width: 768px) {
	#megamenu-opener {
		top: 0;
		right: 0;
		left: auto;
		margin: 0;
		width: 30px;
		height: 70px;
		-webkit-transform: translateY(0px) !important;
		        transform: translateY(0px) !important;
	}
	#megamenu-opener a {
		top: 20px;
		right: 20px;
		margin: 0;
		width: 30px;
		height: 30px;
	}
	#megamenu-opener i {
		background-color: #00008f !important;
	}
	#megamenu-opener i:nth-child(1) {
		top: 6px;
		width: 30px;
	}
	#megamenu-opener i:nth-child(2) {
		top: 14px;
		width: 21px;
	}
	#megamenu-opener i:nth-child(3) {
		top: 22px;
		width: 12px;
	}
	/* 展開 */
	.megamenu-opened #megamenu-opener i:nth-child(1) {
		top: 14px;
		width: 31px;
	}
	.megamenu-opened #megamenu-opener i:nth-child(3) {
		top: 14px;
		width: 31px;
	}
}

/*============================================================
	エントリーナビゲーション
*/
#nav-entry {
	overflow: hidden;
	position: fixed;
	z-index: 3000;
	top: 140px;
	right: 84px;
	width: 680px;
	height: 0;
	font-size: 20px;
	-webkit-transition: height 0.3s ease;
	        transition: height 0.3s ease;
}
#nav-entry .nav-entry ul {
	-webkit-transform: translateY(-10px);
	        transform: translateY(-10px);
	-webkit-transition: -webkit-transform 0.3s ease;
	        transition: transform 0.3s ease;
}
#nav-entry .nav-entry a {
	height: 90px;
}
#nav-entry .nav-entry div {
	height: 90px;
}
#nav-entry .nav-entry span {
	font-size: 13px;
}
#nav-entry .nav-entry span.en {
	font-size: 11px;
	font-family: Roboto-Condensed, sans-serif;
}
.entry-opened #nav-entry {
	height: 180px;
}
.entry-opened #nav-entry .nav-entry ul {
	-webkit-transform: translateY(0px);
	        transform: translateY(0px);
}
@media screen and (max-width: 1279px) {
	#nav-entry {
		right: auto;
		left: 516px;
	}
}
@media screen and (max-width: 768px) {
	#nav-entry {
		z-index: 500;
		top: 0;
		right: 0;
		left: auto;
		margin: 0;
		width: 100%;
		background-color: rgba(0,0,91,0.95);
		-webkit-transition: height 0.6s ease;
		        transition: height 0.6s ease;
	}
	#nav-entry .ps__rail-x,
	#nav-entry .ps__rail-y {
		display: none !important;
	}
	#nav-entry .nav-entry {
		height: 100%;
	}
	#nav-entry .nav-entry ul {
		padding: 70px 0 0 0;
		-webkit-transform: translateY(0px);
		        transform: translateY(0px);
	}
	#nav-entry .nav-entry ul li {
		float: none;
		width: 100%;
	}
	#nav-entry .nav-entry a {
		height: 110px;
	}
	#nav-entry .nav-entry div {
		height: 110px;
	}
	#nav-entry .nav-entry ul li.close {
		display: table;
	}
	#nav-entry .nav-entry ul li.close a {
		height: 46px;
	}
	.entry-opened #nav-entry {
		height: 100%;
	}
}

/*============================================================
	メガメニュー
*/
#megamenu {
	overflow: hidden;
	position: fixed;
	z-index: 1500;
	top: 0;
	left: 0;
	min-width: 1280px;
	width: 100%;
	height: 0;
	background-color: rgba(0,0,91,0.95);
	opacity: 0;
	-webkit-transition: opacity 0.4s ease;
	        transition: opacity 0.4s ease;
}
#megamenu a.disable {
	opacity: 0.4 !important;
}
/* ロゴ */
#megamenu .logo {
	position: absolute;
	top: 25px;
	left: 25px;
}
#megamenu .logo a {
	display: table;
}
#megamenu .logo .axa {
	display: table-cell;
	vertical-align: middle;
	width: 70px;
}
#megamenu .logo .axa img {
	width: 70px;
}
#megamenu .logo .en-cond-i {
	display: table-cell;
	vertical-align: middle;
	padding-left: 60px;
	font-size: 12px;
	line-height: 1.5;
	color: #fff;
	letter-spacing: 0.2em;
}
#megamenu .logo .en-cond-i span {
	display: block;
}
/* コンテナ */
#megamenu .wrap {
	position: absolute;
	top: 120px;
	bottom: 20px;
	width: 100%;
}
#megamenu .scroll {
	position: relative;
	overflow-y: auto;
	height: 100%;
}
#megamenu .container {
	display: table;
	height: 100%;
}
#megamenu .container-in {
	display: table-cell;
	vertical-align: middle;
	padding: 20px 0 80px 0;
}
/* ナビ */
#megamenu .nav-recruit {
	display: table;
	margin: 0 auto;
	width: 1020px;
	color: #fff;
	white-space: nowrap;
}
#megamenu .nav-recruit a {
	color: #fff;
}
#megamenu .nav-recruit span {
	display: block;
}
#megamenu .nav-recruit .link {
	display: inline-block;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.5;
}
#megamenu .nav-recruit .wrap-top {
	display: table-cell;
	vertical-align: top;
	padding-right: 100px;
}
#megamenu .nav-recruit .link span.en-cond-i {
	opacity: 0.5;
}
#megamenu .nav-recruit .wrap-content {
	display: table-cell;
	vertical-align: top;
}
#megamenu .nav-recruit .wrap-content > ul {
}
#megamenu .nav-recruit .wrap-content > ul > li {
	float: left;
	margin-bottom: 40px;
	padding-right: 90px;
}
#megamenu .nav-recruit .wrap-content > ul > li:last-child {
	margin-bottom: 80px;
	padding-right: 120px;
}
#megamenu .nav-recruit .wrap-content > ul:last-child {
	padding-top: 20px;
}
#megamenu .nav-recruit .wrap-content > ul:last-child > li {
	margin-bottom: 30px;
	padding-right: 100px;
}
#megamenu .nav-recruit .wrap-content > ul:last-child .link {
	font-size: 16px;
}
#megamenu .nav-recruit .wrap-content li.full {
	padding-right: 0;
	width: 100%;
}
#megamenu .nav-recruit .wrap-content li.half {
	padding-right: 0;
	padding-left: 8px;
	width: 60%;
}
#megamenu .nav-recruit .wrap-content li.has-child {
	display: table;
	margin-bottom: 20px;
	padding-right: 0;
	width: 100%;
}
#megamenu .nav-recruit .wrap-content li.has-child .root {
	display: table-cell;
	vertical-align: top;
	width: 235px;
}
#megamenu .nav-recruit .wrap-content li.has-child > ul {
	display: table-cell;
	vertical-align: top;
	position: relative;
	padding-top: 23px;
}
#megamenu .nav-recruit .wrap-content li.has-child > ul::before {
	content: '';
	position: absolute;
	top: 33px;
	left: -75px;
	display: block;
	width: 60px;
	height: 1px;
	background-color: #3d4271;
}
#megamenu .nav-recruit .wrap-content li.has-child > ul::after {
	content: '';
	display: block;
	clear: both;
}
#megamenu .nav-recruit .wrap-content li.has-child > ul > li {
	float: left;
	padding: 0 25px;
	padding-bottom: 30px;
	font-size: 14px;
	line-height: 1.5;
}
#megamenu .nav-recruit .wrap-content li.has-child > ul > li a {
	display: block;
}

#megamenu .nav-recruit .wrap-content li.sub-child {
	display: table;
	margin-bottom: 20px;
	padding-right: 0 !important;
	width: 100%;
}
#megamenu .nav-recruit .wrap-content li.sub-child .root {
	display: table-cell;
	vertical-align: top;
	width: 235px;
	font-size: 14px;
	line-height: 1.5;
}
#megamenu .nav-recruit .wrap-content li.sub-child > ul {
	display: table-cell;
	vertical-align: top;
	position: relative;
}
#megamenu .nav-recruit .wrap-content li.sub-child > ul::before {
	content: '';
	position: absolute;
	top: 10px;
	left: -70px;
	display: block;
	width: 60px;
	height: 1px;
	background-color: #3d4271;
}
#megamenu .nav-recruit .wrap-content li.sub-child > ul::after {
	content: '';
	display: block;
	clear: both;
}
#megamenu .nav-recruit .wrap-content li.sub-child > ul > li {
	float: left;
	padding: 0 25px;
	padding-bottom: 30px;
	font-size: 14px;
	line-height: 1.5;
}
#megamenu .nav-recruit .wrap-content li.sub-child > ul > li a {
	display: block;
}

#megamenu .btn-global-sp {
	display: none;
}

/* メガメニュー展開 */
.megamenu-active #megamenu {
	height: 100%;
}
.megamenu-opened #megamenu {
	opacity: 1;
}
#megamenu .en-wrap,
#megamenu .jp-wrap {
	display: block;
	overflow: hidden;
}
#megamenu .en-wrap span,
#megamenu .jp-wrap span {
	-webkit-transform: translateY(100%);
	        transform: translateY(100%);
}
.megamenu-opened #megamenu .en-wrap span {
	-webkit-animation: megamenuSlideUp 0.6s 0.4s;
	        animation: megamenuSlideUp 0.6s 0.4s;
	-webkit-animation-fill-mode: both;
	        animation-fill-mode: both;
	-webkit-animation-timing-function: cubic-bezier(.19, 1, .22, 1);
	        animation-timing-function: cubic-bezier(.19, 1, .22, 1);
}
.megamenu-opened #megamenu .jp-wrap span {
	-webkit-animation: megamenuSlideUp 0.6s 0.8s;
	        animation: megamenuSlideUp 0.6s 0.8s;
	-webkit-animation-fill-mode: both;
	        animation-fill-mode: both;
	-webkit-animation-timing-function: cubic-bezier(.19, 1, .22, 1);
	        animation-timing-function: cubic-bezier(.19, 1, .22, 1);
}
#megamenu .nav-recruit .wrap-content li.has-child > ul::before {
	width: 0;
}
.megamenu-opened #megamenu .nav-recruit .wrap-content li.has-child > ul::before {
	-webkit-transition: width 0.4s ease-out 0.8s;
	        transition: width 0.4s ease-out 0.8s;
	width: 60px;
}

@media screen and (min-width: 769px) {
	#megamenu .nav-recruit a:hover {
		opacity: 0.7;
	}
}

@-webkit-keyframes megamenuSlideUp {
    0% {
        -webkit-transform: translateY(100%);
    }
    100% {
        -webkit-transform: translateY(0%);
    }
}
@keyframes megamenuSlideUp {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0%);
    }
}

@media screen and (max-width: 768px) {
	#megamenu {
		z-index: 900;
		padding: 70px 0 0 0;
		min-width: 1px;
	}
	/* ロゴ */
	#megamenu .logo {
		display: none;
	}
	/* コンテナ */
	#megamenu .wrap {
		position: static;
		height: 100%;
	}
	#megamenu .container {
		display: block;
		padding: 0;
	}
	#megamenu .container-in {
		display: block;
		padding: 0 10px 0 27px;
	}
	#megamenu .ps__rail-x,
	#megamenu .ps__rail-y {
		display: none !important;
	}
	/* ナビ */
	#megamenu .nav-recruit {
		display: block;
		padding: 60px 0 140px 0;
		width: auto;
	}
	#megamenu .nav-recruit .link {
		font-size: 20px;
		line-height: 1.5;
	}
	#megamenu .nav-recruit .wrap-top {
		display: block;
		padding: 0;
	}
	#megamenu .nav-recruit .wrap-content {
		display: block;
	}
	#megamenu .nav-recruit .wrap-content > ul > li {
		float: none;
		margin: 30px 0 0 0;
		padding: 0;
	}
	#megamenu .nav-recruit .wrap-content > ul > li:last-child {
		margin-bottom: 60px;
	}
	#megamenu .nav-recruit .wrap-content > ul:last-child {
		margin: 35px 0 0 0;
		padding: 0;
	}
	#megamenu .nav-recruit .wrap-content > ul:last-child .link {
		font-size: 13px;
	}
	#megamenu .nav-recruit .wrap-content > ul:last-child li {
		margin: 10px 0 0 0;
	}
	#megamenu .nav-recruit .wrap-content li.half {
		padding-left: 0;
	}
	#megamenu .nav-recruit .wrap-content li.has-child {
		display: block;
		margin: 25px 0 0 0;
		padding: 0;
	}
	#megamenu .nav-recruit .wrap-content li.has-child .root {
		display: block;
		width: auto;
	}
	#megamenu .nav-recruit .wrap-content li.has-child > ul {
		display: block;
		padding: 0;
	}
	#megamenu .nav-recruit .wrap-content li.has-child > ul::before {
		display: none;
	}
	#megamenu .nav-recruit .wrap-content li.has-child > ul > li {
		float: left;
		margin: 15px 0 0 0;
		padding: 0 30px 0 0;
		font-size: 12px;
	}
	#megamenu .nav-recruit .wrap-content li.sub-child {
		display: block;
		padding: 0;
	}
	#megamenu .nav-recruit .wrap-content li.sub-child .root {
		display: block;
		width: auto;
		font-size: 12px;
		margin: 25px 0 0 0;
	}
	#megamenu .nav-recruit .wrap-content li.sub-child > ul {
		display: block;
		padding: 0;
	}
	#megamenu .nav-recruit .wrap-content li.sub-child > ul::before {
		display: none;
	}
	#megamenu .nav-recruit .wrap-content li.sub-child > ul > li {
		float: left;
		margin: 15px 0 0 0;
		padding: 0 30px 0 0;
		font-size: 13px;
	}
	#megamenu .btn-global-sp {
		display: flex;
		position: absolute;
		top: 20px;
		right: 15px;
		font-size: 16px;
		line-height: 1.5;
		color: #fff;
		letter-spacing: 2px;
	}
	#megamenu .btn-global-sp div > a,
	#megamenu .btn-global-sp div > span {
		display: block;
		padding: 6px 10px;
	}
	#megamenu .btn-global-sp div > a {
		opacity: 0.6;
	}
	#megamenu .btn-global-sp div > a > span,
	#megamenu .btn-global-sp div > span > span {
		position: relative;
		display: block;
	}
	#megamenu .btn-global-sp div > span > span::after {
		content: '';
		display: block;
		position: absolute;
		bottom: 0;
		left: 0;
		right: 2px;
		height: 2px;
		background-color: #fff;
	}
	#megamenu .btn-global-sp div > span > span {
		border-color: #fff;
	}
}

/*============================================================
	フッター
*/
#footer {
}
#footer a.disable {
	opacity: 0.5 !important;
}

/* エントリーナビゲーション */
#footer .nav-entry ul li a {
	height: 170px;
	font-size: 24px;
}
#footer .nav-entry ul li div {
	height: 170px;
	font-size: 24px;
}
#footer .nav-entry ul li a span {
	font-size: 15px;
}
#footer .nav-entry ul li div span {
	font-size: 15px;
}
#footer .nav-entry ul li div span.en {
	font-size: 12px;
}

/* フッター */
#footer footer {
	padding: 80px 0 60px 0;
	background-color: #00008f;
	color: #fff;
}
#footer footer a {
	color: #fff;
}

/* ロゴ */
#footer footer .logo {
	float: left;
}
#footer footer .logo a {
	display: block;
	color: #fff;
}
#footer footer .logo a span {
	display: block;
}
#footer footer .logo .axa img {
	display: block;
	width: 90px;
}
#footer footer .logo .en-cond-i {
	margin-top: 40px;
	font-size: 12px;
	line-height: 1.5;
	letter-spacing: 0.2em;
}

/* コンテンツナビゲーション */
#footer footer .nav-recruit {
	float: right;
}
#footer footer .nav-recruit > ul {
	float: left;
	padding-left: 100px;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.5;
}
#footer footer .nav-recruit > ul:first-child {
	padding-left: 0;
}
#footer footer .nav-recruit > ul > li {
	margin-bottom: 22px;
}
#footer footer .nav-recruit > ul > li div.small {
	font-size: 12px;
}
#footer footer .nav-recruit > ul > li > ul {
	margin-top: 10px;
	font-weight: 400;
	font-size: 12px;
}
#footer footer .nav-recruit > ul > li > ul > li {
	margin-top: 12px;
}

/* コーポレートナビゲーション */
#footer footer .nav-corporate {
	clear: both;
}
#footer footer .nav-corporate ul {
}
#footer footer .nav-corporate ul li {
	float: left;
	position: relative;
	padding: 0 30px;
	font-size: 12px;
}
#footer footer .nav-corporate ul li:first-child {
	padding-left: 0;
}
#footer footer .nav-corporate ul li:last-child {
	padding-right 0;
}
#footer footer .nav-corporate ul li::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -6px;
	display: block;
	width: 1px;
	height: 12px;
	background-color: #fff;
}
#footer footer .nav-corporate ul li:last-child::after {
	display: none;
}

/* コピーライト */
#footer .copyright {
	background-color: #00006c;
	text-align: center;
	font-family: Roboto-Condensed, sans-serif;
	font-size: 12px;
	line-height: 90px;
	color: #fff;
	letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
	#footer footer .nav-recruit a:hover,
	#footer footer .nav-corporate a:hover {
		opacity: 0.7;
	}
}
@media screen and (max-width: 768px) {
	/* エントリーナビゲーション */
	#footer .nav-entry ul li a {
		height: 150px;
		font-size: 16px;
	}
	#footer .nav-entry ul li div {
		height: 150px;
		font-size: 16px;
	}
	#footer .nav-entry ul li a span {
		font-size: 10px;
	}
	#footer .nav-entry ul li div span {
		font-size: 10px;
	}
	#footer .nav-entry ul li div span.en {
		font-size: 9px;
	}
	/* フッター */
	#footer footer {
		padding: 40px 0 35px 0;
	}
	/* ロゴ */
	#footer footer .logo {
		float: none;
		text-align: center;
	}
	#footer footer .logo a {
		display: table;
		margin: 0 auto;
	}
	#footer footer .logo .axa img {
		margin: 0 auto;
		width: 70px;
	}
	#footer footer .logo .en-cond-i {
		margin-top: 20px;
		font-size: 10px;
	}
	/* コンテンツナビゲーション */
	#footer footer .nav-recruit {
		display: none;
	}
	/* コーポレートナビゲーション */
	#footer footer .nav-corporate {
		margin-top: 35px;
	}
	#footer footer .nav-corporate ul {
		text-align: center;
		font-size: 0;
		line-height: 0;
	}
	#footer footer .nav-corporate ul li {
		display: inline-block;
		float: none;
		padding: 0 15px;
		font-size: 11px;
		line-height: 1.5;
	}
	/* コピーライト */
	#footer .copyright {
		font-size: 11px;
		line-height: 70px;
	}
}

/*============================================================
	ページの先頭へ
*/
#pagetop {
	position: fixed;
	z-index: 100;
	bottom: -60px;
	right: 0;
	height: 0;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
	-webkit-transition: bottom 0.4s ease;
	        transition: bottom 0.4s ease;
}
#pagetop a {
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	width: 60px;
	height: 60px;
	background-color: rgba(0,0,0,0.8);
}
#pagetop a i {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -9px 0 0 -9px;
	width: 18px;
	height: 18px;
}
.pagetop-active #pagetop {
	bottom: 0;
}
.pagetop-limit #pagetop {
	position: relative;
	float: right;
}
@media screen and (min-width: 769px) {
	#pagetop a:hover {
		background-color: rgba(0,0,0,1);
	}
}
@media screen and (max-width: 768px) {
	#pagetop {
		bottom: -45px;
	}
	#pagetop a {
		width: 45px;
		height: 45px;
		font-size: 12px;
		line-height: 45px;
	}
}

/*============================================================
	インラインスクロール
*/
.js-inlinescroll {
	position: relative;
	overflow: hidden;
}
.js-inlinescroll .arrow {
	display: none;
}
@media screen and (max-width: 768px) {
	.js-inlinescroll .arrow {
		display: flex;
		justify-content: center;
		align-items: center;
		overflow: hidden;
		position: absolute;
		top: 50%; right: 10px;
		margin: -15px 0 0 0;
		width: 30px; height: 30px;
		background-color: #fff;
		border-radius: 50%;
		box-shadow: 0px 3px 5px rgba(206,211,218,0.7);
		-webkit-transition: opacity 0.2s;
		        transition: opacity 0.2s;
	}
	.js-inlinescroll .arrow i {
		width: 12px;
		height: 12px;
	}
	.js-inlinescroll .scrollbar {
		overflow: hidden;
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		height: 4px;
		background-color: #f1f1f1;
	}
	.js-inlinescroll .scrollbar .track {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		background: #00008f;
	}
	.js-inlinescroll .wrap {
		position: relative;
		overflow-x: scroll;
		-webkit-overflow-scrolling: touch;
		bottom: -10px;
		padding: 0 0 30px 0;
	}
	.js-inlinescroll .wrap::-webkit-scrollbar {
		position: relative;
		z-index: 1;
		height: 0;
		opacity: 0;
		visibility: hidden;
	}
	.js-inlinescroll .wrap::-webkit-scrollbar-track {
		opacity: 0;
		height: 0;
		visibility: hidden;
	}
	.js-inlinescroll .wrap::-webkit-scrollbar-thumb {
		opacity: 0;
		height: 0;
		visibility: hidden;
	}
}
