@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lexend+Mega:wght@100..900&family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


@import url("reset.css");

/* 共通定義
=========================================================================*/
* {
	margin: 0;
	padding: 0;
}

body {
	position: relative;
	overflow-x: hidden;
	margin: 0 !important;
	padding: 0 !important;
	font-family: "Inter", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.75em;
	color: #121212;
	text-align: left;
	background-color: #FFF;
}


/* 画像サイズ
-----------------------------------------------------------*/
img {
	overflow: hidden;
	width: 100%;
	height: auto;
}

/* デスクトップ・スマホ分岐
-----------------------------------------------------------*/
.pc {
	display: block;
}

.sp {
	display: none;
}

/* ヘッダー
-----------------------------------------------------------*/
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 120px;
	background-color: #FFF;
	z-index: 101;
	transition: 0.3s;
}

header.nobg {
	background-color: transparent;
}

header.is_open {
	background-color: transparent;
}

/* ----- ロゴ ----- */
header a.logo {
	overflow: hidden;
	display: block;
	position: absolute;
	top: 29.5px;
	left: 81px;
	width: 183px;
	height: 61px;
	text-align: left;
	text-indent: 100%;
	white-space: nowrap;
	background: url(../images/common/logo.png) no-repeat;
	background-size: cover;
	transition: 0.3s;
}

@media screen and (max-width:1300px) {
	header a.logo {
		left: 30px;
	}
}

@media(hover: hover) {
	header a.logo:hover {
		opacity: .7;
	}
}

/* ----- ENTRY ----- */
header a.entry_button {
	overflow: hidden;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 178px;
	height: 48px;
	font-weight: 600;
	font-size: 13px;
	line-height: 48px;
	color: #FFF;
	text-align: center;
	border-radius: 24px;
	transition: 0.3s;
}

header a.entry_button.new {
	right: 367px;
	background-image: linear-gradient(90deg, #3DE578, #28A03E);
}

header a.entry_button.career {
	right: 177px;
	background-image: linear-gradient(90deg, #2779CA, #00377C);
}

header a.entry_button span {
	position: relative;
	z-index: 2;
}

header a.entry_button span:first-child{
	margin-right: .25em;
	font-family: "Inter", sans-serif;
	font-size: 15px;
}

header a.entry_button::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transform: scale(0, 1);
	transform-origin: left;
	z-index: 1;
	transition: 0.6s;
}

header a.entry_button.new::after {
	background-color: #2BEB00;
}

header a.entry_button.career::after {
	background-color: #008CD6;
}

@media(hover: hover) {
	header a.entry_button:hover::after {
		transform: scale(1, 1);
	}
}

/* ----- Hamburger Menu ----- */
header .icon_animation {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 138px;
	height: 120px;
	cursor: pointer;
	background-color: #1C50A1;
	transition: 0.3s;
}

header .icon_animation .bar {
	position: absolute;
	left: 42px;
	display: block;
	width: 54px;
	height: 1px;
	background: #FFF;
	transition: all .3s;
	transform-origin: left top;
}

header .icon_animation .bar.top {
	top: 44px;
}

header .icon_animation .bar.middle {
	top: 60px;
}

header .icon_animation .bar.bottom {
	top: 76px;
	transform-origin: left bottom;
}

@media(hover: hover) {
	header .icon_animation:hover .bar.top {
		top: 40px;
	}

	header .icon_animation:hover .bar.bottom {
		top: 80px;
	}
}

header .icon_animation.is_open .bar {
	width: 62px;
}

header .icon_animation.is_open .bar.top {
	top: 47px;
	left: 43px;
	transform: rotate(27.41deg);
}

header .icon_animation.is_open .bar.middle {
	opacity: 0;
}

header .icon_animation.is_open .bar.bottom {
	top: 75px;
	left: 43px;
	transform: rotate(-27.41deg);
}

/* メニュー閉じるボタン */
header .icon_close {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	width: 138px;
	height: 120px;
	cursor: pointer;
	z-index: 11;
}

/* ----- グローバルメニュー ----- */
.nav_bg {
	opacity: 0;
	visibility: hidden;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background-color: #FFF;
	transform: translateY(-20px);
	transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
	z-index: 21;
}

.nav_bg::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, rgba(48, 102, 187, .36), rgba(08, 52, 121, .36));
	z-index: 2;
}

.nav_bg.is_open {
	display: block;
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

nav {
	opacity: 0;
	visibility: hidden;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 570px;
	height: 100vh;
	transform: translateY(-20px);
	transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
	z-index: 100;
}

@media screen and (max-width:1300px) {
	nav {
		width: calc(570 / 1300 * 100%);
	}
}

nav.is_open {
	display: block;
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

nav .menu {
	overflow: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	padding: 140px 0 70px;
	width: 100%;
	min-height: 100vh;
	max-height: 100vh;
	overflow-y: auto;
	font-weight: 700;
	font-size: 16px;
	color: #2B4D6C;
	text-align: left;
	background-color: #E8E8E8;
	scrollbar-width: thin;
	/* Firefox 用 */
	scrollbar-color: #2B4D6C #E8E8E8;
}


/* Chrome, Safari, Edge 用 */
nav .menu::-webkit-scrollbar {
	width: 6px;
	/* スクロールバー幅 */
}

nav .menu::-webkit-scrollbar-track {
	background: #E8E8E8;
	/* 背景色 */
	border-radius: 3px;
	/* 角丸 */
}

nav .menu::-webkit-scrollbar-thumb {
	background-color: #2B4D6C;
	/* つまみの色 */
	border-radius: 3px;
	/* 角丸 */
	border: 1px solid #E8E8E8;
	/* 枠線（好みで） */
}

nav .menu::-webkit-scrollbar-thumb:hover {
	background-color: #1F3B55;
	/* ホバー時に少し濃く */
}

nav .menu>ul {
	margin: 0 auto 30px;
	max-width: calc(366 / 570 * 100%);
}

nav .menu>ul>li.index {
	font-size: 23px;
}

nav .menu>ul>li:not(:first-child) {
	margin-top: 15px;
}

nav .menu a.invalid {
	pointer-events: none;
	opacity: .5;
}

nav .menu>ul>li:not(:first-child)>a {
	position: relative;
	display: inline-block;
	margin-bottom: 10px;
	padding-left: 25px;
}

@media(hover: hover) {
	nav .menu>ul>li>a:hover {
		color: #008CD6;
	}
}

nav .menu>ul>li:not(:first-child)>a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 17px;
	width: 20px;
	height: 1px;
	background-color: #A1AEBA;
}

@media(hover: hover) {
	nav .menu>ul>li:not(:first-child)>a:hover::before {
		background-color: #008CD6;
	}
}

nav .menu>ul>li>a span {
	position: relative;
}

nav .menu>ul>li>a span::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 100%;
	height: 1px;
	background-color: #008CD6;
	transform: scale(0, 1);
	transform-origin: left;
	transition: 0.3s;
}

@media(hover: hover) {
	nav .menu>ul>li>a:hover span::after {
		transform: scale(1, 1);
	}
}

nav .menu>ul>li>ul li {
	position: relative;
	margin-left: 25px;
	margin-bottom: 0;
}

nav .menu>ul>li>ul li a {
	position: relative;
	padding-left: 20px;
	font-weight: 400;
	font-size: 14px;
	line-height: 1em;
}

@media(hover: hover) {
	nav .menu>ul>li>ul li a:hover {
		color: #008CD6;
	}
}

nav .menu>ul>li>ul li a::before {
	content: '';
	width: 6px;
	height: 6px;
	border: 0;
	border-top: solid 1px #2B4D6C;
	border-left: solid 1px #2B4D6C;
	transform: rotate(135deg);
	position: absolute;
	top: 0;
	left: 4px;
	bottom: 0;
	margin: auto;
}

@media(hover: hover) {
	nav .menu>ul>li>ul li a:hover::before {
		border-top: solid 1px #008CD6;
		border-left: solid 1px #008CD6;
	}
}

nav .menu>ul>li>ul li a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 100%;
	height: 1px;
	background-color: #008CD6;
	transform: scale(0, 1);
	transform-origin: left;
	transition: 0.3s;
}

@media(hover: hover) {
	nav .menu>ul>li>ul li a:hover::after {
		transform: scale(1, 1);
	}
}

/* ----- ENTRY ----- */
nav .entry {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0 22px;
	margin: 0 auto;
	width: fit-content;
}

nav a.entry_button {
	position: relative;
	overflow: hidden;
	display: block;
	width: 186px;
	height: 48px;
	font-weight: 600;
	font-size: 13px;
	line-height: 48px;
	color: #FFF;
	text-align: center;
	border-radius: 24px;
	transition: 0.3s;
}

nav a.entry_button.new {
	background-image: linear-gradient(90deg, #3DE578, #28A03E);
}

nav a.entry_button.career {
	background-image: linear-gradient(90deg, #2779CA, #00377C);
}

nav a.entry_button span {
	position: relative;
	z-index: 2;
}

nav a.entry_button span:first-child {
	margin-right: .25em;
	font-family: "Inter", sans-serif;
	font-size: 15px;
}

nav a.entry_button::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transform: scale(0, 1);
	transform-origin: left;
	z-index: 1;
	transition: 0.6s;
}

nav a.entry_button.new::after {
	background-color: #2BEB00;
}

nav a.entry_button.career::after {
	background-color: #008CD6;
}

@media(hover: hover) {
	nav a.entry_button:hover::after {
		transform: scale(1, 1);
	}
}

/* 複数ページ共通
-----------------------------------------------------------*/
main {
	overflow: hidden;
	position: relative;
}

article {
	overflow: hidden;
	position: relative;
	margin-top: 120px;
}

/* ----- クリップパスアニメーション ----- */
.clip {
	overflow: hidden;
	clip-path: inset(0 100% -20% 0);
	transition: clip-path 2s cubic-bezier(0.19, 1, 0.22, 1);
	transition-delay: 0s;
}

.clip.active {
	overflow: visible !important;
	clip-path: inset(0 0 -20% 0);
}

/* フッター：エントリーはこちら
-----------------------------------------------------------*/
footer {
	position: relative;
	z-index: 20;
}
footer #entry {
	padding: 80px 0 55px;
	color: #FFF;
	background-image: linear-gradient(90deg, #2779CA, #00377C);
}

footer #entry .inner {
	/*display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;*/
	margin: 0 auto;
	max-width: 1040px;
}

@media screen and (max-width:1100px) {
	footer #entry .inner {
		padding: 0 20px;
	}
}

footer #entry h2 {
	margin-bottom: 28px;
	font-size: 16px;
}

footer #entry h2 span {
	display: block;
	margin-bottom: 10px;
	font-family: "Inter", sans-serif;
	font-weight: 700;
	font-size: 36px;
	letter-spacing: .1em;
}

/* ----- ENTRY ----- */
footer #entry ul.entry {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0 calc(32 / 1038 * 100%);
	margin-bottom: 20px;
}

footer #entry ul.entry li {
	width: calc(503 / 1038 * 100%);
	height: 148px;
	border-radius: 6px;
}

footer #entry ul.entry li:first-child {
	margin-bottom: 25px;
	background-color: #21B856;
}

footer #entry ul.entry li:last-child {
	background-color: #165CD6;
}

footer #entry ul.entry li a {
	overflow: hidden;
	position: relative;
	display: block;
	padding: 58px 0 0 41px;
	height: 100%;
	font-weight: 600;
	font-size: 22px;
	z-index: 2;
	box-shadow: 0 2px 2px rgba(0, 0, 0, .25);
	transition: 0.3s;
}

@media(hover: hover) {
	footer #entry ul.entry li:first-child a:hover {
		color: #21B856;
	}
	footer #entry ul.entry li:last-child a:hover {
		color: #165CD6;
	}
}

footer #entry ul.entry li a span:nth-child(1) {
	font-family: "Inter", sans-serif;
	font-weight: 600;
	font-size: 20px;
	letter-spacing: .05em;
}

footer #entry ul.entry li a span:nth-child(2) {
	font-weight: 200;
	font-size: 15px;
	letter-spacing: .05em;
}

footer #entry ul.entry li a::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #FFF;
	transform: scale(0, 1);
	transform-origin: left;
	border-radius: 6px;
	z-index: -1;
	transition: 0.6s;
}

@media(hover: hover) {

	footer #entry ul.entry li a:hover::after {
		transform: scale(1, 1);
	}
}

/* ----- マイナビ ----- */
footer #entry ul.mynavi {
	display: flex;
	flex-wrap: wrap;
	gap: 0 11px;
}

footer #entry ul.mynavi li {
	max-width: 246px;
	background-color: #FFF;
	border-radius: 4px;
}

footer #entry ul.mynavi li a {
	display: block;
	box-shadow: 0 2px 2px rgba(0, 0, 0, .25);
	transition: 0.6s;
}

@media(hover: hover) {

	footer #entry ul.mynavi li a:hover {
		opacity: .6;
	}
}

/* フッター：コピーライト表記
-----------------------------------------------------------*/
footer #copyright {
	text-align: center;
	padding: 60px 0 20px;
	background: #FFF;
}

footer #copyright .inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	margin: 0 auto;
	max-width: 1240px;
}

@media screen and (max-width:1300px) {
	footer #copyright .inner {
		padding: 0 30px;
	}
}

footer #copyright figure {
	max-width: 421px;
}

footer #copyright a {
	display: block;
	padding: 0 37px 0 15px;
	width: fit-content;
	font-size: 14px;
	background-color: #F5F5F5;
	background: url(../images/common/footer_icon_link.svg) no-repeat #F5F5F5;
	background-position: right 15px center;
	background-size: 11px auto;
	transition: 0.3s;
}

@media(hover: hover) {
	footer #copyright a:hover {
		opacity: .7;
		background-position: right 12px center;
	}
}

footer #copyright .copyright {
	margin-top: 60px;
	width: 100%;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-size: 14px;
	color: #2F2F2F;
}

/*  1280px以下
=========================================================================
=========================================================================*/
@media screen and (max-width:1280px) {}

/*  1040px以下
=========================================================================
=========================================================================*/
@media screen and (max-width:1040px) {}

/*  950px以下
=========================================================================
=========================================================================*/
@media screen and (max-width:950px) {
	/* ----- ENTRY ----- */
	nav .entry {
		gap: 22px 0;
		max-width: 300px;
	}

	nav a.entry_button {
		width: 100%;
	}
}


/*  767px以下
=========================================================================
=========================================================================*/
@media screen and (max-width:767px) {

	body {
		font-size: 14px;
	}

	article {
		margin-top: 58px;
	}

	/* デスクトップ・スマホ分岐
	-----------------------------------------------------------*/
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}

	/* ヘッダー
	-----------------------------------------------------------*/
	header {
		height: 58px;
	}

	header.nobg {
		background-color: #FFF;
	}

	header.is_open {
		background-color: #FFF;
	}

	/* ----- ロゴ ----- */
	header a.logo {
		top: 12.5px;
		left: 15px;
		width: 233px;
		height: 33px;
		background: url(../images/common/logo@2x.png) no-repeat;
		background-size: cover;
	}

	/* ----- ENTRY ----- */
	header a.entry_button {
		display: none;
	}

	/* ----- Hamburger Menu ----- */
	header .icon_animation {
		width: 60px;
		height: 58px;
	}

	header .icon_animation .bar {
		left: 17.5px;
		width: 25px;
	}

	header .icon_animation .bar.top {
		top: 20.5px;
	}

	header .icon_animation .bar.middle {
		top: 29px;
	}

	header .icon_animation .bar.bottom {
		top: 37.5px;
	}

	@media(hover: hover) {
		header .icon_animation:hover .bar.top {
			top: 19px;
		}

		header .icon_animation:hover .bar.bottom {
			top: 39px;
		}
	}

	header .icon_animation.is_open .bar {
		width: 30px;
	}

	header .icon_animation.is_open .bar.top {
		top: 22px;
		left: 17.5px;
	}

	header .icon_animation.is_open .bar.bottom {
		top: 36px;
		left: 17.5px;
	}

	/* メニュー閉じるボタン */
	header .icon_close {
		width: 60px;
		height: 58px;
	}

	/* ----- グローバルメニュー ----- */
	.nav_bg {
		display: none;
	}

	nav {
		width: 100%;
		max-width: 100%;
	}

	nav .menu {
		padding: 80px 0 40px;
		font-size: 15px;
		z-index: 11;
	}

	nav .menu>ul {
		margin: 0 auto 40px;
	}

	nav .menu>ul>li.index {
		font-size: 18px;
	}

	nav .menu>ul>li:not(:first-child) {
		margin-top: 10px;
	}

	nav .menu>ul>li>ul li a {
		font-size: 14px;
	}

	/* フッター：エントリーはこちら
	-----------------------------------------------------------*/
	footer #entry {
		padding: 68px 0 35px;
	}

	footer #entry h2 {
		margin-bottom: 28px;
		width: 100%;
		font-size: 16px;
		text-align: center;
	}

	footer #entry h2 span {
		margin-bottom: 0;
		font-weight: 700;
		font-size: 25px;
	}

	/* ----- ENTRY ----- */
	footer #entry ul.entry {
		margin: 0 auto 25px;
		width: calc(328 / 350 * 100%);
		max-width: 328px;
	}

	footer #entry ul.entry li {
		width: 100%;
		height: 100px;
		border-radius: 3px;
	}

	footer #entry ul.entry li:first-child {
		margin-bottom: 15px;
	}

	footer #entry ul.entry li a {
		padding: 35px 0 0 20px;
		font-size: 16px;
	}

	footer #entry ul.entry li a span:nth-child(1) {
		font-size: 14px;
	}

	footer #entry ul.entry li a span:nth-child(2) {
		font-size: 10px;
	}

	footer #entry ul.entry li a::after {
		border-radius: 3px;
	}

	/* ----- マイナビ ----- */
	footer #entry ul.mynavi {
		gap: 10px 0;
		margin: 0 auto;
		width: calc(246 / 350 * 100%);
		max-width: 246px;
	}



	/* フッター：コピーライト表記
	-----------------------------------------------------------*/
	footer #copyright {
		padding: 55px 0 20px;
	}

	footer #copyright .inner {
		display: block;
	}


	footer #copyright figure {
		margin: 0 auto 60px;
		max-width: 334px;
	}

	footer #copyright a {
		margin: 0 auto;
	}

	footer #copyright .copyright {
		margin-top: 20px;
		font-size: 12px;
	}
}

/*  480px以下
=========================================================================
=========================================================================*/
@media screen and (max-width:480px) {
	/* ヘッダー
	-----------------------------------------------------------*/
	/* ----- グローバルメニュー ----- */
	nav .menu {
		padding: 80px 20px 100px;
	}

	nav .menu>ul {
		max-width: 100%;
	}
}

/*  375px以下
=========================================================================
=========================================================================*/
@media screen and (max-width:375px) {}
