@charset "UTF-8";

/* ------------------------------------------- */
/* root */
/* ------------------------------------------- */
:root {
	--default-text-color: #000;
}

/* --------------------------------------------------------------- */
/* reset start */
/* --------------------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
video {
	display: block;
}

ul,
li,
ol,
dl {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

a {
	display: inline-block;
	margin: 0;
	padding: 0;
	transition: 0.4s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
	a:hover {
		text-decoration: none;
	}
}

del {
	text-decoration: line-through;
}

abbr[title],
dfn[title] {
	border-bottom: 0.1rem dotted;
	cursor: help;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

*,
*:after,
*:before {
	/* -webkit-appearance: none; */
	word-break: break-all;
	box-sizing: border-box;
}

video{
	filter:contrast(1);
}

/* --------------------------------------------------------------- */
/* reset end */
/* --------------------------------------------------------------- */


/* タブレット(1081px以上)のみ非表示 */
@media screen and (min-width: 1081px) {
	.tab-off {
		display: none !important;
	}
}
/* PC(768px以上)のみ非表示 */
@media screen and (min-width: 768px) {
	.pc-off {
		display: none !important;
	}
}
/* スマホのみ非表示 */
@media screen and (max-width: 767px) {
	.sp-off {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	a[href^="tel:"] {
		color: var(--default-text-color);
	}
}
@media screen and (min-width: 768px) {
	a[href^="tel:"] {
		pointer-events: none;
		text-decoration: none;
	}
}

html {
	font-size: 62.5%;
	letter-spacing: 0.05em;
	font-family: "Noto Sans JP", sans-serif;
	-webkit-text-size-adjust: none;

	
	@media screen and (min-width: 1400px) and (max-width: 1919px) {
		font-size: calc(10 / 1919 * 100 * 1vw); 
	}
	
	@media screen and (min-width: 769px) and (max-width: 1399px) {
		font-size: calc(10 / 1399	 * 100 * 1vw);
	}
	/* あまりにも文字サイズが小さくなった場合 */
	@media screen and (min-width: 768px) and (max-width: 1080px) {
		font-size: calc(15 / 1920 * 100 * 1vw);
	}

	/* スマホ用（デザインサイズが375の場合） */
	@media screen and (max-width: 767px) {
		font-size: calc(10 / 375 * 100 * 1vw);
	}

}

body {
	font-size: 1.6rem;
	letter-spacing: 0.1rem;
	line-height: 1;
	overflow: auto;

	@media screen and (max-width: 767px) {
		font-size: 1.4rem;
	}
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;

	@media screen and (max-width: 767px) {
		/* スマホ画像長押し禁止対策 */
		pointer-events: none;
	}
}

a {
	color: var(--default-text-color);
	text-decoration: none;
}

a:hover {
	opacity: 0.8;
}

/* ------------------------------------------- */
/* 印刷用の設定 */
/* ------------------------------------------- */
@media print {
	html {
		font-size: calc(10 / 1919 * 100 * 14px);
	}
	body {
		-webkit-print-color-adjust: exact;
		position: relative;
		width: 1400px;
		zoom: 70%;
	}
}
@page {
	size: A4;
	margin: 10mm;
}

/* ------------------------------------------- */
/* デバッグ用：スクロールバーを1pxへ
/* ------------------------------------------- */
.deve body {
	--sb-track-color: #ddd;
	--sb-thumb-color: #000;
	--sb-size: 0;
	/* scrollbar-color: var(--sb-thumb-color) var(--sb-track-color); */
	overflow-x: hidden;
}
.deve body::-webkit-scrollbar {
	width: var(--sb-size);
}
.deve body::-webkit-scrollbar-track {
	background: var(--sb-track-color);
	border-radius: 1px;
}
.deve body::-webkit-scrollbar-thumb {
	background: var(--sb-thumb-color);
	border-radius: 1px;
}

/* --------------------------------------------------------------- */
/* wrapper */
/* --------------------------------------------------------------- */
#wrapper {
	overflow: hidden;

	@media screen and (max-width: 767px) {
	}
}

.menu-active {
	overflow: hidden;
}

/* --------------------------------------------------------------- */
/* header */
/* --------------------------------------------------------------- */

.logomark {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    width: 34.3rem;
    margin-left: 3.7rem;
	@media screen and (max-width: 1281px) {
		width: 22.3rem;
	}
	@media screen and (max-width: 767px) {
		margin-left: 1rem;
		width: 18rem;
	}
}
#header {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 2000;
	width: 97%;
    height: 7.3rem;
    background-color: #fff;
    margin-top: 2.9rem;
    margin-left: 3.2rem;
    border-radius: 0.8rem;
	display: flex;
    align-items: center;
    justify-content: space-between;

	@media screen and (max-width: 767px) {
		margin-left: 0;
		width: 100%;
		border-radius: unset;
		height: 6rem;
		margin-top: 0;
	}

	/* メニューボタン */
	.menu-btn {
		position: absolute;
		display: none;
		top: 0;
		right: 0;
		z-index: 9999;

		@media screen and (max-width: 767px) {
			display: block;
		}

		&:after {
			/* content: "MENU"; */
			content: "";
			position: absolute;
			left: 50%;
			bottom: 1.1rem;
			color: #255ca6;
			font-weight: 500;
			letter-spacing: 0.05em;
			font-size: 1.1rem;
			transform: translateX(-50%);
			white-space: nowrap;
		}

		& a {
			position: relative;
			width: 10rem;
			height: 10rem;
			vertical-align: top;
			transition: ease 0.25s all;

			@media screen and (max-width: 767px) {
				width: 6.2rem;
				height: 6.2rem;
			}

			& span {
				position: absolute;
				left: 50%;
				top: 50%;
				display: block;
				margin-left: -1.8rem;
				width: 3.4rem;
				height: 0.2rem;
				background: #255ca6;
				border-radius: 0.3rem;

				@media screen and (max-width: 767px) {
					margin-left: -1.4rem;
					width: 2.8rem;
					height: 0.2rem;
				}

				&:before,
				&:after {
					content: "";
					position: absolute;
					left: 0;
					top: 0;
					width: 100%;
					height: 100%;
					background: #255ca6;
					border-radius: 0.3rem;
					transition: ease 0.25s all;
				}

				&:before {
					margin-top: -1.1rem;
				}
				@media screen and (max-width: 767px) {
					&:before {
						margin-top: -0.7rem;
					}
				}
				&:after {
					margin-top: 1.1rem;
				}
				@media screen and (max-width: 767px) {
					&:after {
						margin-top: 0.7rem;
					}
				}
			}
		}
	}
}


@media screen and (max-width: 767px) {
	.nav {
		position: fixed;
		left: 100%;
		z-index: 999;
		width: 100%;
		pointer-events: none;
		top: 6rem;
		transition: 0.3s;
	}
}

.main-list {
	margin-right: 5.5rem;
	display: flex;
	gap: 4rem;
	@media screen and (max-width: 767px) {
		flex-direction: column;
		gap: 2rem;
		margin-right: 0rem;
		padding-bottom: 5rem;
	}
}

.main-list li a {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.main-list .jp-link-text {
	font-family: "Noto Sans JP";
	font-weight: bold;
	font-size: 1.5rem;
	letter-spacing: 0.06em;
	/* line-height: 2.8rem; */
	text-align: center;
	color: #3278d6;
}

.main-list .en-link-text {
	font-family: Jost;
	font-weight: normal;
	font-size: 1rem;
	letter-spacing: 0.1em;
	/* line-height: 23px; */
	text-align: center;
	color: #9d9d9d;
}

.menu-active {
	#header {
		.menu-btn {
			/* position: fixed; */
			& a {
				background-color: #fff;
				& span {
					background-color: transparent;
					&:before {
						margin-top: 0;
						transform: rotate(45deg);
						-webkit-transform: rotate(45deg);
					}
					&:after {
						margin-top: 0;
						transform: rotate(-45deg);
						-webkit-transform: rotate(-45deg);
					}
				}
			}
		}

		@media screen and (max-width: 767px) {
			.nav {
				left: 0;
				pointer-events: auto;
				top: 5.5vh;
                background-color: white;
				padding-top: 7rem;
			}
		}
	}
}

/* --------------------------------------------------------------- */
/* breadcrumbs */
/* --------------------------------------------------------------- */
#breadcrumbs {
	padding: 2.4rem 0;
	position: relative;

	@media screen and (max-width: 767px) {
		display: none;
	}
	& ol {
		display: flex;
		flex-wrap: wrap;
	}
	& li {
		position: relative;
		margin-right: 3.7rem;
		font-weight: 500;
		font-size: 1.2rem;
		letter-spacing: 0.1em;
		font-family: "Noto Sans JP";
		font-weight: normal;
		font-size: 1.6rem;
		letter-spacing: 0.03em;
		/* line-height: 35px; */
		text-align: left;
		color: #919fb5;


		&:after {
			content: "";
            position: absolute;
            /* background: #919FB5; */
            width: 0.8rem;
            height: 0.8rem;
            border-top: 0.1rem solid #919FB5;
            border-left: 0.1rem solid #919FB5;
            top: 0.2rem;
            bottom: 0;
            right: -2rem;
            margin: auto;
            transform: rotate(136deg);
			&:last-child:after {
				display: none;
			}
		}
		&:last-child:after {
			display: none;
		}
	}
	& a {
		font-family: "Noto Sans JP";
		font-weight: normal;
		font-size: 1.6rem;
		letter-spacing: 0.03em;
		/* line-height: 35px; */
		text-align: left;
		color: #919fb5;
	}
}

#breadcrumbs::after {
	content: "";
	position: absolute;
    width: 59rem;
    height: 0.9rem;
    background: #3278D6;
    opacity: 20%;
    transform: rotate(25deg);
    top: 12vh;
    right: -2vw;
    z-index: -1;
}

/* --------------------------------------------------------------- */
/* container */
/* --------------------------------------------------------------- */
#container {
}

/* --------------------------------------------------------------- */
/* contents */
/* --------------------------------------------------------------- */
#contents {
}

/* --------------------------------------------------------------- */
/* footer */
/* --------------------------------------------------------------- */
.pageup {
	width: 4.5rem;
	height: 4.5rem;
	border: 0.2rem solid white;
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	z-index: 777;
	@media screen and (max-width: 767px) {
		width: 2.5rem;
    	height: 2.5rem;
	}	
}

.arrow-to-up-container {
	position: relative;
	width: 100%;
	height: 100%;
	box-shadow: 0px 0px 8px 1px #b4b4b4;
}

.arrow-go-up {
	border-top: white solid 0.2rem;
    border-left: white solid 0.2rem;
    transform: rotate(45deg);
    position: absolute;
    top: 1rem;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 1.5rem;
    height: 1.5rem;
	box-shadow: -1px -1px 2px 0px #b6b6b6;
	@media screen and (max-width: 767px) {
		width: 0.8rem;
		height: 0.8rem;
		border-top: white solid 0.1rem;
		border-left: white solid 0.1rem;
		top: 0.7rem;
	}	
}

.entry-footer-section {
	position: relative;
	margin-bottom: 15.7rem;
	@media screen and (max-width: 767px) {
		margin-bottom: 2rem;
	}
}

.entry-footer-section::before {
	content: "";
	position: absolute;
	top: -17vh;
    left: 14vw;
    width: 1.1rem;
    height: 78.5rem;
    border-radius: 5.53px;
    background: #3278d6;
    opacity: 0.2;
    transform: rotate(112deg);
}

.introduction-footer-flex-title-container {
	display: flex;
	gap: 3rem;
	margin-bottom: 8.6rem;
	align-items: baseline;
	@media screen and (max-width: 767px) {
		gap: 1rem;
		margin-bottom: 4.5rem;
		flex-direction: column;
		align-items: center;
	}
}

.flex-banner-entry-container {
	display: flex;
	justify-content: space-between;
	@media screen and (max-width: 767px) {
		flex-direction: column;
	}
}

.banner-box-footer-entry {
	width: 46.4rem;
	height: 17.7rem;
	background: url(../../img/home/recuit-home-img01.png) no-repeat;
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    position: relative;
    align-items: center;
    justify-content: center;
    margin-bottom: 4.3rem;
	background-size: cover;
	@media screen and (max-width: 767px) {
		margin-left: 0;
		gap: 1.5rem;
		margin-bottom: 2rem;
		width: 100%;
		height: 13rem;
	}
}

.banner-box-footer-entry::before {
	content: "NEW GRADUATE";
	position: absolute;
	bottom: 0.5rem;
	left: -4rem;
	font-family: Jost;
	font-weight: 500;
	font-style: italic;
	font-size: 3.2rem;
	letter-spacing: 0.1em;
	/* line-height: 60px; */
	text-align: left;
	color: #9BC716;
}



.entry-title-footer {
	font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 2.8rem;
    letter-spacing: 0.06em;
    /* line-height: 25px; */
    text-align: center;
    color: #fff;
	@media screen and (max-width: 767px) {
		font-size: 2.2rem;
	}
}

.entry-arrow-container-footer {
    width: 4.8rem;
    height: 0.7rem;
	transition: 0.3s ease-in-out;
}

.banner-box-footer-entry:hover .entry-arrow-container-footer{
	transform: translateX(1rem);
}


.banner-box-footer-entry2 {
	background: url(../../img/home/recuit-home-img02.png) no-repeat;
	background-size: cover;
}

.banner-box-footer-entry2.banner-box-footer-entry::before {
	content: "MID CAREER";
	position: absolute;
	bottom: 0.5rem;
	left: -4rem;
	font-family: Jost;
	font-weight: 500;
	font-style: italic;
	font-size: 3.2rem;
	letter-spacing: 0.1em;
	/* line-height: 60px; */
	text-align: left;
	color: #00C1B3;
}


.footer-big-en-title {
	font-family: Jost;
	font-weight: 500;
	font-style: italic;
	font-size: 10rem;
	letter-spacing: 0.1em;
	/* line-height: 21.6rem; */
	text-align: left;
	color: #255ca6;
	@media screen and (max-width: 767px) {
		font-size: 3rem;
	}	
}

.footer-big-jp-title {
	font-family: "Noto Sans JP";
	font-weight: bold;
	font-size: 2.8rem;
	letter-spacing: 0.06em;
	/* line-height: 28px; */
	text-align: left;
	color: #255ca6;
	@media screen and (max-width: 767px) {
		font-size: 1.8rem;
	}	
}

#footer-link-container {
	background-color: #3278D6;
	padding-top: 6.5rem;
	padding-bottom: 3rem;
	z-index: 7;
    position: relative;
	@media screen and (max-width: 767px) {
		padding-top: 3.5rem;
		padding-bottom: 8rem;
	}
}

@media screen and (max-width: 767px) {
	.banner-box-footer-entry::before, .banner-box-footer-entry2.banner-box-footer-entry::before {
		font-size: 2rem;
        left: -1rem;
	}
}

.top-column {
	display: flex;
	justify-content: space-between;
}

.logo-footer {
	width: 30.1rem;
	height: 3.1rem;
	@media screen and (max-width: 767px) {
		width: 65%;
		height: 2.1rem;
	}
}

.recruiting-logo {
	font-family: "Noto Sans JP";
	font-weight: bold;
	font-size: 1.6rem;
	letter-spacing: 0.06em;
	/* line-height: 28px; */
	text-align: left;
	color: #fff;
	margin-top: 1rem;
	margin-bottom: 3rem;
	@media screen and (max-width: 767px) {
		margin-top: 1rem;
		margin-bottom: 2rem;
		font-size: 1.4rem;
	}
}

.company-name {
	font-family: "Noto Sans JP";
	font-weight: bold;
	font-size: 2.1rem;
	letter-spacing: 0.06em;
	/* line-height: 25px; */
	text-align: left;
	color: #fff;
	margin-bottom: 1rem;
	@media screen and (max-width: 767px) {
		font-size: 1.3rem;
	}
}

.address-tel-footer {
	font-family: "Noto Sans JP";
	font-weight: normal;
	font-size: 1.6rem;
	letter-spacing: 0.03em;
	line-height: 3rem;
	text-align: left;
	color: #fff;
	@media screen and (max-width: 767px) {
		font-size: 1.4rem;
		line-height: 2rem;
	}

}

.second-column-container {
	display: flex;
	gap: 13rem;
	@media screen and (max-width: 767px) {
		display: none;
	}	
}
.second-column {
    display: flex;
    flex-direction: column;
    gap: 2.1rem;
}
.second-column2 {
	margin-right: 4rem;
	display: flex;
    flex-direction: column;
    gap: 2.1rem;
}

.parent-link {
	font-family: "Noto Sans JP";
	font-weight: bold;
	font-size: 1.6rem;
	letter-spacing: 0.03em;
	/* line-height: 30px; */
	text-align: left;
	color: #fff;
	position: relative;
}

.parent-link::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: -1.7rem;
	margin: auto;
	width: 1rem;
	height: 0.2rem;
	background-color: white;
}

.parent-external {
	font-family: "Noto Sans JP";
	font-weight: bold;
	font-size: 1.4rem;
	letter-spacing: 0.03em;
	/* line-height: 30px; */
	text-align: left;
	color: #fff;
	position: relative;
}

.parent-external::after {
	content: "";
	position: absolute;
	background: url(../../img/page/article/icon-go-to.png);
	width: 1.8rem;
    height: 1.8rem;
    right: 1rem;
    top: 0;
    bottom: 0;
    margin: auto;
    background-size: 100%;
    filter: brightness(999);
} 

.copyright-footer {
	font-family: "Noto Sans JP";
	font-weight: normal;
	font-size: 1.2rem;
	letter-spacing: 0.03em;
	/* line-height: 30px; */
	text-align: center;
	color: #fff;
	margin-top: 2.4rem;
	display: block;
	@media screen and (max-width: 767px) {
		font-size: 1rem;
		margin-top: 2rem;
	}
}

/* ------------------------------------------- */
/* inner config */
/* ------------------------------------------- */
.inner {
	position: relative;
	z-index: 1;
	margin: 0 auto;

	@media screen and (max-width: 767px) {
		width: calc(100% - 5rem);
	}
}
.w823 {
	max-width: 82.3rem;
}
.w893 {
	max-width: 89.3rem;
}
.w851 {
	max-width: 85.1rem;
}
.w823 {
	max-width: 83.3rem;
}
.w900 {
	max-width: 90rem;
}
.w960 {
	max-width: 96rem;
}
.w980 {
	max-width: 98rem;
}
.w1000 {
	max-width: 100rem;
}
.w1080 {
	max-width: 108rem;
}
.w1110 {
	max-width: 111rem;
}
.w1200 {
	max-width: 120rem;
}
.w1440 {
	max-width: 144rem;
}
.w1400 {
	max-width: 140rem;
}
.w1090 {
	max-width: 109rem;
}
.w1112 {
	max-width: 111.2rem;
}
.w1250 {
	max-width: 125rem;
}
.w1270 {
	max-width: 127rem;
}

/* ------------------------------------------- */
/* align */
/* ------------------------------------------- */
.tar {
	text-align: right;
}
.tal {
	text-align: left;
}
.tac {
	text-align: center;
}

/* --------------------------------------------------------------- */
/* common parts */
/* --------------------------------------------------------------- */

/* ------------------------------------------- */
/* common-area */
/* ------------------------------------------- */
.common-area {
}

/* ------------------------------------------- */
/* common-title */
/* ------------------------------------------- */
.common-title {
}
/* type01 */
.common-title.type01 {
	text-align: center;
}

/* ------------------------------------------- */
/* common-btn */
/* ------------------------------------------- */
.common-btn {
}

/* ------------------------------------------- */
/* common-select */
/* ------------------------------------------- */
.common-select {
}

/* ------------------------------------------- */
/* common-list */
/* ------------------------------------------- */
.common-list {
}

/* ------------------------------------------- */
/* common-text */
/* ------------------------------------------- */
.common-text {
}

/* ------------------------------------------- */
/* common-table */
/* ------------------------------------------- */
.common-table {
	table-layout: fixed;
	width: 100%;
	border-collapse: collapse;

	& p {
		margin-bottom: 2rem;
		&:last-child {
			margin-bottom: 0;
		}
	}
}
/* table-scroll */
@media screen and (max-width: 767px) {
	.table-scroll {
		position: relative;
		padding-bottom: 2rem;
		overflow-x: scroll;
		&:after {
			content: "←";
			position: absolute;
			right: 0;
			bottom: 0;
			z-index: 1;
			margin-left: -1.5rem;
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			align-items: center;
			width: 3rem;
			height: 3rem;
			border-radius: 1.5rem;
			border: 0.1rem solid #000;
			animation: arrowtable 2s infinite forwards;
		}
		.common-table {
			width: 80rem;
		}
	}
}
@keyframes arrowtable {
	50% {
		opacity: 1;
		right: 0;
	}
	100% {
		opacity: 0;
		right: 100%;
	}
}


/* ------------------------------------------- */
/* アニメーション用 */
/* ------------------------------------------- */
/*
.moveFlag {
	position: relative;
	top: -5rem;
	opacity: 0;
	transition: ease 0.5s top, ease 0.5s opacity;
}
.moveFlag.on {
	top: 0;
	opacity: 1;
}
@media print {
	.moveFlag {
		top: 0;
		opacity: 1;
	}
}
*/

/* --------------------------------------------------------------- */
/*  margin padding */
/* --------------------------------------------------------------- */
.mb0 {
	margin-bottom: 0rem !important;
}
.mb10 {
	margin-bottom: 1rem !important;
}
.mb20 {
	margin-bottom: 2rem !important;
}
.mb30 {
	margin-bottom: 3rem !important;
}
.mb40 {
	margin-bottom: 4rem !important;
}
.mb50 {
	margin-bottom: 5rem !important;
}
.mb60 {
	margin-bottom: 6rem !important;
}
.mb70 {
	margin-bottom: 7rem !important;
}
.mb80 {
	margin-bottom: 8rem !important;
}
.mb90 {
	margin-bottom: 9rem !important;
}
.mb100 {
	margin-bottom: 10rem !important;
}

@media screen and (max-width: 767px) {
	.mb10 {
		margin-bottom: 0.5rem !important;
	}
	.mb20 {
		margin-bottom: 1rem !important;
	}
	.mb30 {
		margin-bottom: 1.5rem !important;
	}
	.mb40 {
		margin-bottom: 2rem !important;
	}
	.mb50 {
		margin-bottom: 2.5rem !important;
	}
	.mb60 {
		margin-bottom: 3rem !important;
	}
	.mb70 {
		margin-bottom: 3.5rem !important;
	}
	.mb80 {
		margin-bottom: 4rem !important;
	}
	.mb90 {
		margin-bottom: 4.5rem !important;
	}
	.mb100 {
		margin-bottom: 5rem !important;
	}
}

.mt0 {
	margin-top: 0rem !important;
}
.mt10 {
	margin-top: 1rem !important;
}
.mt20 {
	margin-top: 2rem !important;
}
.mt30 {
	margin-top: 3rem !important;
}
.mt40 {
	margin-top: 4rem !important;
}
.mt50 {
	margin-top: 5rem !important;
}
.mt60 {
	margin-top: 6rem !important;
}
.mt70 {
	margin-top: 7rem !important;
}
.mt80 {
	margin-top: 8rem !important;
}
.mt90 {
	margin-top: 9rem !important;
}

@media screen and (max-width: 767px) {
	.mt10 {
		margin-top: 0.5rem !important;
	}
	.mt20 {
		margin-top: 1rem !important;
	}
	.mt30 {
		margin-top: 1.5rem !important;
	}
	.mt40 {
		margin-top: 2rem !important;
	}
	.mt50 {
		margin-top: 2.5rem !important;
	}
	.mt60 {
		margin-top: 3rem !important;
	}
	.mt70 {
		margin-top: 3.5rem !important;
	}
	.mt80 {
		margin-top: 4rem !important;
	}
	.mt90 {
		margin-top: 4.5rem !important;
	}
	.mt100 {
		margin-top: 5rem !important;
	}
}

.pb0 {
	padding-bottom: 0 !important;
}
.pb10 {
	padding-bottom: 1rem !important;
}
.pb20 {
	padding-bottom: 2rem !important;
}
.pb30 {
	padding-bottom: 3rem !important;
}
.pb40 {
	padding-bottom: 4rem !important;
}
.pb50 {
	padding-bottom: 5rem !important;
}
.pb60 {
	padding-bottom: 6rem !important;
}
.pb70 {
	padding-bottom: 7rem !important;
}
.pb80 {
	padding-bottom: 8rem !important;
}
.pb90 {
	padding-bottom: 9rem !important;
}
.pb100 {
	padding-bottom: 10rem !important;
}
@media screen and (max-width: 767px) {
	.pb10 {
		padding-bottom: 0.5rem !important;
	}
	.pb20 {
		padding-bottom: 1rem !important;
	}
	.pb30 {
		padding-bottom: 1.5rem !important;
	}
	.pb40 {
		padding-bottom: 2rem !important;
	}
	.pb50 {
		padding-bottom: 2.5rem !important;
	}
	.pb60 {
		padding-bottom: 3rem !important;
	}
	.pb70 {
		padding-bottom: 3.5rem !important;
	}
	.pb80 {
		padding-bottom: 4rem !important;
	}
	.pb90 {
		padding-bottom: 4.5rem !important;
	}
	.pb100 {
		padding-bottom: 5rem !important;
	}
}

.pt0 {
	padding-top: 0 !important;
}
.pt10 {
	padding-top: 1rem !important;
}
.pt20 {
	padding-top: 2rem !important;
}
.pt30 {
	padding-top: 3rem !important;
}
.pt40 {
	padding-top: 4rem !important;
}
.pt50 {
	padding-top: 5rem !important;
}
.pt60 {
	padding-top: 6rem !important;
}
.pt70 {
	padding-top: 7rem !important;
}
.pt80 {
	padding-top: 8rem !important;
}
.pt90 {
	padding-top: 9rem !important;
}
.pt100 {
	padding-top: 10rem !important;
}
@media screen and (max-width: 767px) {
	.pt10 {
		padding-top: 0.5rem !important;
	}
	.pt20 {
		padding-top: 1rem !important;
	}
	.pt30 {
		padding-top: 1.5rem !important;
	}
	.pt40 {
		padding-top: 2rem !important;
	}
	.pt50 {
		padding-top: 2.5rem !important;
	}
	.pt60 {
		padding-top: 3rem !important;
	}
	.pt70 {
		padding-top: 3.5rem !important;
	}
	.pt80 {
		padding-top: 4rem !important;
	}
	.pt90 {
		padding-top: 4.5rem !important;
	}
	.pt100 {
		padding-top: 5rem !important;
	}
}

/* ------------------------------------------- */
/* pagination */
/* ------------------------------------------- */
.single-post-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-top: 7rem;

	@media screen and (max-width: 767px) {
		margin-top: 3.5rem;
	}

	.back {
		margin: 0 8.3rem;
		@media screen and (max-width: 767px) {
			margin: 0 1rem;
		}
	}

	.prev,
	.next {
		width: 14rem;
		@media screen and (max-width: 767px) {
			width: 4.6rem;
		}
		& a {
			position: relative;
			display: flex;
			flex-wrap: wrap;
			align-items: center;
			width: 100%;
			height: 4.6rem;
			font-weight: 500;
			text-decoration: underline;
			letter-spacing: 0.08rem;
			color: #000;
			box-sizing: border-box;

			@media screen and (max-width: 767px) {
				padding: 0;
				font-size: 0;
				color: transparent;
			}

			@media (hover: hover) and (pointer: fine) {
				&:hover {
					text-decoration: none;
				}
			}

			&:after {
				content: "";
				position: absolute;
				top: 50%;
				margin-top: -2.3rem;
				display: block;
				width: 4.6rem;
				height: 4.6rem;
				border-radius: 2.3rem;
				background-color: #2987d9;
			}
			@media (hover: hover) and (pointer: fine) {
				&:hover:after {
					background-color: #2987d9;
				}
			}
			@media screen and (max-width: 767px) {
				.&:after {
					width: 4.8rem;
					height: 4.8rem;
					margin-top: -2.4rem;
					border-radius: 0;
				}
			}

			&:before {
				content: "";
				position: absolute;
				top: 50%;
				z-index: 1;
				margin-top: -0.4rem;
				display: block;
				width: 0.8rem;
				height: 0.8rem;
				border-top: 0.2rem solid #fff;
				box-sizing: border-box;
				transition: ease 0.25s border;
			}
		}
	}

	.prev {
		& a {
			padding-left: 7.3rem;
			&:after {
				left: 0;
			}
			&:before {
				left: 2.2rem;
				border-left: 0.2rem solid #fff;
				-webkit-transform: rotate(-45deg);
				transform: rotate(-45deg);
			}
			@media (hover: hover) and (pointer: fine) {
				&:hover:before {
					border-left-color: #fff;
				}
			}
		}
	}
	.next {
		& a {
			padding-right: 7.3rem;
			&:after {
				right: 0;
			}
			&:before {
				right: 2.2rem;
				border-right: 0.2rem solid #fff;
				-webkit-transform: rotate(45deg);
				transform: rotate(45deg);
			}
		}
	}
}

/* navigation pagination */
.navigation.pagination {
	margin: 7rem 0 0;

	@media screen and (max-width: 767px) {
		margin: 3rem 0 0;
	}

	.disable {
		display: none;
	}

	.nav-links {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;

		@media screen and (max-width: 767px) {
			position: relative;
			padding-bottom: 5rem;
		}
	}

	.pager {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		margin: 0 1.5rem;
		width: 5rem;
		height: 5rem;
		font-family: "Roboto", sans-serif;
		font-weight: bold;
		letter-spacing: 0.08em;
		background: #fff;
		text-decoration: none;
		transition: ease 0.25s all;
		border-radius: 50%;
		/* border: 0.1rem solid #2987d9; */
		font-family: Jost;
		font-weight: 500;
		font-size: 2rem;
		color: #3278d6;

		@media screen and (max-width: 767px) {
			width: 3rem;
			height: 3rem;
		}

		@media (hover: hover) and (pointer: fine) {
			&:hover {
				color: #fff;
				background: #2987d9;
				border-color: #2987d9;
			}
		}
	}

	.pager.current {
		color: #fff;
		font-weight: bold;
		background: #2987d9;
		border-color: #2987d9;
	}

	.next,
	.prev {
		@media screen and (max-width: 767px) {
			/*position: absolute;*/
			/*bottom: 0;*/
			/*width: 48%;*/
			/*height: 4rem;*/
		}

		& a {
			position: relative;
			display: flex;
			flex-wrap: wrap;
			align-items: center;
			justify-content: center;
			width: 4.4rem;
			height: 5rem;
			font-size: 0;
			font-family: "Roboto", sans-serif;
			font-weight: bold;
			letter-spacing: 0.08em;
			text-decoration: none;
			color: #000;
			/* background: #fff;
			border: 0.1rem solid #2987d9; */
			transition: ease 0.25s background, ease 0.25s color;

			/* @media screen and (max-width: 767px) {
				width: 2.8rem;
				height: 2.8rem;
			}

			@media (hover: hover) and (pointer: fine) {
				&:hover {
					color: #fff;
					background-color: #2987d9;
					&:after {
						border-top-color: #fff;
					}
				}
			} */

			/* &:after {
				content: "";
				position: absolute;
				top: 50%;
				margin-top: -0.4rem;
				display: block;
				width: 0.8rem;
				height: 0.8rem;
				border-top: 0.1rem solid #2987d9;
				box-sizing: border-box;
				transition: ease 0.25s border;
			} */
		}
	}

	.prev {
		@media screen and (min-width: 768px) {
			margin-right: 0.8rem;
		}
		@media screen and (max-width: 767px) {
			margin-right: 1rem;
		}
		& a {
			background: url(../../img/page/article/svg-left-arrow.svg) no-repeat;
			width: 5.5rem;
			height: 5.5rem;
			background-size: 100%;
			@media screen and (max-width: 767px) {
				width: 4.5rem;
            	height: 4.5rem;
			}
		}
	}
	.next {
		@media screen and (min-width: 768px) {
			margin-left: 0.8rem;
		}
		@media screen and (max-width: 767px) {
			margin-left: 1rem;
			/*right: 0;*/
		}
		& a {
			background: url(../../img/page/article/svf-right-arrow.svg) no-repeat;
			width: 5.5rem;
			height: 5.5rem;
			background-size: 100%;
			@media screen and (max-width: 767px) {
				width: 4.5rem;
            	height: 4.5rem;
			}
		}
	}
}

/* ------------------------------------------- */
/* wordpress パスワードフォーム調整用 */
/* ------------------------------------------- */

.post-password-form {
	padding: 100px 30px;
	line-height: 1.8;
	text-align: center;
}

/* ------------------------------------------- */
/* STAFF*/
/* ------------------------------------------- */


.common-banner-top {
	width: 100%;
	height: 60vh;
	padding-top: 25vh;
}

.common-banner-staff {
	background: url(../../img/page/staff/common-banner-top.jpg) no-repeat;
	background-size: cover;
    background-position: center;
	position: relative;
}

.common-banner-staff::before {
    content: "";
    position: absolute;
    width: 73.2rem;
    height: 100%;
    background: linear-gradient(to right, #004cff 0%, rgb(2 93 253 / 88%) 17.73%, rgba(52, 115, 201, 0) 100%);
    opacity: 0.7;
    top: 0;
    left: 0;
}


@media screen and (max-width: 767px) {
	.common-banner-staff::before {
		width: 50%;
	}
}

.common-banner-top .top-title-en {
	font-family: Jost;
	font-weight: 500;
	font-style: italic;
	font-size: 6rem;
	letter-spacing: 0.1em;
	/* line-height: 216px; */
	text-align: left;
	margin-bottom: 3rem;
	color: #fff;
	@media screen and (max-width: 767px) {
		font-size: 3rem;
		margin-bottom: 1rem;
	}
}

.common-banner-top .top-title-jp {
	font-family: "Noto Sans JP";
	font-weight: bold;
	font-size: 1.8rem;
	letter-spacing: 0.06em;
	/* line-height: 28px; */
	text-align: left;
	color: #fff;
	@media screen and (max-width: 767px) {
		font-size: 1.4rem;
	}
}

/* two-buttoncarrer-container */

.two-buttoncarrer-container {
	position: fixed;
	top: 15rem;
	right: -0.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
	@media screen and (max-width: 767px) {
		bottom: 0rem;
		right: 4.5rem;
		gap: 0.5rem;
		width: 85%;
		flex-direction: row;
		top:auto;
		
	}
}

.nav-side-left-container {
	width: 6.6rem;
	height: 21.2rem;
	padding-top: 1.5rem;
	@media screen and (max-width: 767px) {
		width: 16rem;
		height: 5rem;
		display:flex;
		align-items:center;
		justify-content:center;
	}
}

.nav-side-left-container:hover {
	transform: translateX(-0.5rem);
}

.new-graduate-nav-side {
	background-color: #9CC715;
	position: relative;
}

.new-graduate-nav-side::after {
	position: absolute;
    content: "NEW GRADUATE";
    font-family: Jost;
    font-weight: normal;
    font-size: 2.1rem;
    letter-spacing: 0.1em;
    /* line-height: 20px; */
    color: #fff;
    opacity: 0.37;
    top: 0.9rem;
    bottom: 0;
    right: 0.5rem;
    margin: auto;
    writing-mode: vertical-rl;
    text-orientation: sideways-right;
    @media screen and (max-width: 767px) {
        writing-mode: horizontal-tb;
    }
}

.mid-career-nav-side {
	background-color: #00C1B3;
	position: relative;
}

.mid-career-nav-side::after {
	position: absolute;
    content: "MID CAREER";
    font-family: Jost;
    font-weight: normal;
    font-size: 2.1rem;
    letter-spacing: 0.1em;
    /* line-height: 20px; */
    color: #fff;
    opacity: 0.37;
    top: 0.9rem;
    bottom: 0;
    right: 0.5rem;
    margin: auto;
    writing-mode: vertical-rl;
    text-orientation: sideways-right;
    @media screen and (max-width: 767px) {
        writing-mode: horizontal-tb;
    }
}

@media screen and (max-width: 767px) {
	.new-graduate-nav-side::after, .mid-career-nav-side::after {
		font-size: 1.4rem;
	}	
}


.nav-side-left-text {
	font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: 0.45em;
    line-height: 2.4rem;
    text-align: center;
    color: #fff;
    writing-mode: vertical-rl;
    text-orientation: upright;
	padding-left: 1.8rem;
	margin-bottom: 1.1rem;
	@media screen and (max-width: 767px) {
		font-size: 1.2rem;
		letter-spacing: 0.15em;
		padding-left: 0.3rem;
		margin-bottom: 1rem;
		writing-mode: horizontal-tb;

	}
}

.arrow-nav-side-container {
    margin-left: 1.8rem;
	width: 2.3rem;
	@media screen and (max-width: 767px) {
		width: 1.5rem;
		margin-left: 0.8rem;
	}
}

.title-404-main {
	margin-top: 15rem;
}

.title-404-main .title-main {
	font-size: 3rem;
    color: #3278D6;
    margin-bottom: 2rem;
}

.title-404-main .title-sub {
	font-size: 2.5rem;
}

.cover-blue-button-home {
	width: 16.5rem;
    height: 16.5rem;
    border-radius: 50%;
    background-color: #255ca6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mauto {
	margin: 0 auto;
	display: flex;
	justify-content: center;
}