@import url("https://fonts.googleapis.com/css2?family=Agdasima&family=Montserrat:wght@500&family=Noto+Sans+JP:wght@400;500;700&display=swap");
.page {
	padding-top: 60px;
}
.page-header {
	width: min(75%, 1000px);
	margin: 0 auto 100px;
}
.page-title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 0.6em 0;
}
.page-title-en {
	font-size: 6.4rem;
	line-height: 1;
}
.page-title-ja {
	font-size: 2.4rem;
	color: #0072BC;
	line-height: 1.4;
}
@media screen and (max-width: 1023px) {
	.page-header {
		width: min(86%, 1280px);
		margin: 0 auto 50px;
	}
	.page-title-en {
		font-size: 4rem;
	}
	.page-title-ja {
		font-size: 1.8rem;
	}
}

.section {
	width: min(75%, 1000px);
	margin: 0 auto 100px;
	/* ul, ol {
		margin-left: max(5%, 20px);
	} */
}
.section--wide {
	width: 90%;
}
.section-heading {
	font-size: 3.2rem;
	color: #090F24;
	margin: 0 0 50px;
}
.section-child-heading {
	font-size: 2.4rem;
	margin: 50px 0 30px;
}
.section-child-2-heading {
	font-size: 1.6rem;
}
.section .without-bullets li {
	list-style: none;
	margin: 15px 0;
}
.section .without-bullets .arrow-s-icon {
	margin-left: 10px;
	vertical-align: middle;
}
.section .without-bullets .arrow-s-icon::before {
	-webkit-mask-size: 15px auto;
	        mask-size: 15px auto;
}
@media screen and (max-width: 1023px) {
	.section {
		width: min(86%, 1280px);
		margin: 0 auto 60px;
	}
	.section-heading {
		font-size: 2.2rem;
		margin: 0 0 30px;
	}
	.section-child-heading {
		font-size: 1.8rem;
		margin: 30px 0 20px;
	}
	.section-child-2-heading {
		font-size: 1.6rem;
	}
}

.article-list {
	width: min(86%, 1280px);
	margin: 0 auto;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 45px 1fr 45px 1fr;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px 45px;
}
.article-card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 10px 0;
}
.article-card .thumbnail {
	aspect-ratio: 480/295;
	max-width: none;
	width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-webkit-transition: -webkit-transform 0.4s ease;
	transition: -webkit-transform 0.4s ease;
	transition: transform 0.4s ease;
	transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.article-card .thumbnail-wrap {
	position: relative;
	overflow: hidden;
	margin: 0 0 10px;
}
.article-card-title {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.5;
	margin: 0 10px;
}
@media (hover: hover) {
	.article-card-link:where(:-moz-any-link, :enabled, summary):hover .thumbnail {
		transform: scale(1.1);
	}
	.article-card-link:where(:any-link, :enabled, summary):hover .thumbnail {
		-webkit-transform: scale(1.1);
		        transform: scale(1.1);
	}
}
.article-card .tag {
	margin: 0 10px;
}
.article-date {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 1.5;
	border-right: 1px solid #D9D9D9;
	border-left: 1px solid #D9D9D9;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 0 10px;
	margin: 0 10px;
}
.article-date .new-stamp {
	display: inline-block;
	border-left: 1px solid #D9D9D9;
	color: #FF2F00;
	padding-left: 10px;
	margin-left: 10px;
}
@media screen and (max-width: 1023px) {
	.article-list {
		width: 90%;
		-ms-grid-columns: 1fr;
		grid-template-columns: repeat(1, 1fr);
		gap: 40px 0;
	}
	.article-card-title {
		font-size: 1.8rem;
		margin: 0 10px 5px;
	}
}

.modal {
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	opacity: 0;
	-webkit-transition: visibility 0.4s, opacity 0.4s;
	transition: visibility 0.4s, opacity 0.4s;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	pointer-events: none;
}
.modal-mode body {
	overflow: hidden !important;
}
.modal.is-opened {
	visibility: visible;
	opacity: 1;
	pointer-events: initial;
}
.modal .overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
}
.modal-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: absolute;
	top: 30px;
	left: 30px;
	right: 30px;
	bottom: 30px;
	padding: 50px 0;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	overflow: auto;
	z-index: 2;
	background: #FFF;
}
.modal-section {
	width: min(86%, 1280px);
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}
.modal-section > *:last-child {
	margin-bottom: 0;
}
.modal.video-modal .modal-inner {
	background: transparent;
	padding: 0;
	top: auto;
	left: auto;
	right: auto;
	bottom: auto;
	inset: 0;
	margin: auto;
	aspect-ratio: 16/9;
	width: min(80%, 1280px);
	height: auto;
}
.modal.video-modal .modal-section {
	width: 100%;
	margin: auto;
}
.modal.video-modal .modal-section .video {
	display: block;
	aspect-ratio: 16/9;
	width: 100%;
	height: auto;
}
.modal-heading {
	font-size: 1.8rem;
	margin: 0 0 30px;
}
.modal-heading:not(:first-child) {
	margin-top: 40px;
}
.modal .close-button .close-icon {
	background-color: #FFF !important;
}
@media screen and (max-width: 1023px) {
	.modal-inner {
		top: 73px;
		left: 24px;
		right: 24px;
		bottom: 24px;
	}
	.modal-heading {
		font-size: 1.4rem;
		margin: 0 0 20px;
	}
	.modal-heading:not(:first-child) {
		margin-top: 30px;
	}
	.modal.video-modal .modal-inner {
		width: auto;
		max-height: min(80%, 100% - 100px);
		inset: 0 5%;
	}
}

.close-button {
	position: fixed;
	z-index: 3;
	top: 45px;
	right: 60px;
	cursor: pointer;
	width: 60px;
	height: 60px;
	-webkit-transition: 0.2s ease;
	transition: 0.2s ease;
}
.close-button-label {
	position: absolute;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
.close-button .close-icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: block;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	height: 100%;
	overflow: hidden;
	-webkit-transition: 0.2s ease;
	transition: 0.2s ease;
	-webkit-mask-image: url(/global/ja/recruit/uptodata/assets/images/icn_close.svg);
	        mask-image: url(/global/ja/recruit/uptodata/assets/images/icn_close.svg);
	-webkit-mask-size: 32px auto;
	        mask-size: 32px auto;
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
	-webkit-mask-position: center;
	        mask-position: center;
	background-color: #090F24;
}
@media screen and (max-width: 1023px) {
	.close-button {
		top: 20px;
		right: calc((100% - 90%) / 2);
		width: 40px;
		height: 40px;
	}
}
@media (hover: hover) {
	.close-button:where(:-moz-any-link, :enabled, summary):hover .close-icon {
		background: #0072BC;
	}
	.close-button:where(:any-link, :enabled, summary):hover .close-icon {
		background: #0072BC;
	}
}

.arrow-icon, .article-body .cv-buttons .arrow-l-icon, .article-body .cv-buttons .career-regist-button .mail-icon {
	display: inline-block;
	vertical-align: middle;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	width: 30px;
	height: 30px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	-webkit-transition: 0.2s ease;
	transition: 0.2s ease;
	background-color: #090F24;
	-webkit-mask-image: url(/global/ja/recruit/uptodata/assets/images/icn_arrow.svg);
	        mask-image: url(/global/ja/recruit/uptodata/assets/images/icn_arrow.svg);
	-webkit-mask-size: 15px auto;
	        mask-size: 15px auto;
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
	-webkit-mask-position: center;
	        mask-position: center;
}
@media screen and (max-width: 1023px) {
	.arrow-icon, .article-body .cv-buttons .arrow-l-icon, .article-body .cv-buttons .career-regist-button .mail-icon {
		width: 28px;
		height: 28px;
	}
}
a[target=_blank]:not([class]) .arrow-icon, a[target=_blank]:not([class]) .article-body .cv-buttons .arrow-l-icon, .article-body .cv-buttons a[target=_blank]:not([class]) .arrow-l-icon, a[target=_blank]:not([class]) .article-body .cv-buttons .career-regist-button .mail-icon, .article-body .cv-buttons a[target=_blank]:not([class]) .career-regist-button .mail-icon, .article-body .cv-buttons .career-regist-button a[target=_blank]:not([class]) .mail-icon {
	-webkit-mask-image: url(/global/ja/recruit/uptodata/assets/images/icn_arrow_ext.svg);
	        mask-image: url(/global/ja/recruit/uptodata/assets/images/icn_arrow_ext.svg);
}

.tag {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 10px;
	margin: 0;
}
.tag-item {
	margin: 0;
	list-style: none;
}
.tag-link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-size: 1.1rem;
	line-height: 1.5;
	color: #090F24;
	background: #FFF;
	border-radius: 13px;
	padding: 0.4em 1em;
	border: 1px solid #D9D9D9;
}
@media (hover: hover) {
	.tag-link:where(:-moz-any-link, :enabled, summary):hover {
		background: #090F24;
		color: #FFF;
	}
	.tag-link:where(:any-link, :enabled, summary):hover {
		background: #090F24;
		color: #FFF;
	}
}

.cookie-consent {
	position: fixed;
	z-index: 100;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	color: #FFF;
	background: rgba(0, 114, 188, 0.85);
	visibility: hidden;
	-webkit-transform: translate(0, 100%);
	        transform: translate(0, 100%);
	-webkit-transition: 0.4s 0.2s ease;
	transition: 0.4s 0.2s ease;
	-webkit-backdrop-filter: blur(10px);
	        backdrop-filter: blur(10px);
}
.cookie-consent.is-visible {
	visibility: visible;
	-webkit-transform: translate(0, 0);
	        transform: translate(0, 0);
}
.cookie-consent-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 30px;
	width: min(80%, 1200px);
	margin: 0 auto;
	padding: 20px 0;
}
.cookie-consent-description {
	font-size: 1.2rem;
	line-height: 1.8em;
	-webkit-box-flex: 2;
	    -ms-flex: 2 2 auto;
	        flex: 2 2 auto;
	margin: 0;
}
.cookie-consent-description a {
	color: #D4E7FE;
}
.cookie-consent-accept-button {
	width: 190px;
	height: 50px;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	text-align: center;
	background: #FFF;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.6;
	color: #090F24;
}
@media (hover: hover) {
	.cookie-consent-accept-button:where(:-moz-any-link, :enabled, summary):hover {
		color: #FFF;
		background: #090F24;
	}
	.cookie-consent-accept-button:where(:any-link, :enabled, summary):hover {
		color: #FFF;
		background: #090F24;
	}
}
.cookie-consent-close-button {
	text-indent: -100vw;
	overflow: hidden;
	width: 30px;
	height: 30px;
	position: absolute;
	top: 10px;
	right: 15px;
	cursor: pointer;
	margin: 0;
	padding: 0;
	border: none;
}
.cookie-consent-close-button::before, .cookie-consent-close-button::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	border-top: 1px solid;
	color: #FFF;
	-webkit-transition: 0.2s ease;
	transition: 0.2s ease;
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	        transform: translate(-50%, -50%) rotate(45deg);
}
.cookie-consent-close-button::after {
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	        transform: translate(-50%, -50%) rotate(-45deg);
}
.cookie-consent-close-button:hover::before, .cookie-consent-close-button:hover::after {
	width: 40px;
}
@media screen and (max-width: 1023px) {
	.cookie-consent-inner {
		gap: 20px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.cookie-consent-description {
		font-size: 1.2rem;
		line-height: 1.6;
	}
	.cookie-consent-accept-button {
		width: 170px;
		height: 40px;
		font-size: 1.5rem;
	}
	.cookie-consent-close-button {
		width: 20px;
		height: 20px;
		top: 7px;
		right: 10px;
	}
	.cookie-consent-close-button::before, .cookie-consent-close-button::after {
		width: 20px !important;
	}
}

.basic-button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 0 10px;
	padding: 0 30px;
	margin: 0 auto;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.5em;
	width: auto;
	height: 53px;
	border-radius: 40px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	background: #FFF;
	border: 1px solid #D9D9D9;
	-webkit-transition: 0.2s ease;
	transition: 0.2s ease;
}
.basic-button-wrapper {
	margin: 50px auto;
}
@media (hover: hover) {
	.basic-button:where(:-moz-any-link, :enabled, summary):hover {
		background: #090F24;
		color: #FFF;
	}
	.basic-button:where(:any-link, :enabled, summary):hover {
		background: #090F24;
		color: #FFF;
	}
	.basic-button:where(:-moz-any-link, :enabled, summary):hover .arrow-icon, .basic-button:where(:-moz-any-link, :enabled, summary):hover .article-body .cv-buttons .arrow-l-icon, .article-body .cv-buttons .basic-button:where(:-moz-any-link, :enabled, summary):hover .arrow-l-icon, .basic-button:where(:-moz-any-link, :enabled, summary):hover .article-body .cv-buttons .career-regist-button .mail-icon, .article-body .cv-buttons .basic-button:where(:-moz-any-link, :enabled, summary):hover .career-regist-button .mail-icon, .article-body .cv-buttons .career-regist-button .basic-button:where(:-moz-any-link, :enabled, summary):hover .mail-icon {
		background-color: #FFF;
	}
	.basic-button:where(:any-link, :enabled, summary):hover .arrow-icon, .basic-button:where(:any-link, :enabled, summary):hover .article-body .cv-buttons .arrow-l-icon, .article-body .cv-buttons .basic-button:where(:any-link, :enabled, summary):hover .arrow-l-icon, .basic-button:where(:any-link, :enabled, summary):hover .article-body .cv-buttons .career-regist-button .mail-icon, .article-body .cv-buttons .basic-button:where(:any-link, :enabled, summary):hover .career-regist-button .mail-icon, .article-body .cv-buttons .career-regist-button .basic-button:where(:any-link, :enabled, summary):hover .mail-icon {
		background-color: #FFF;
	}
}
.basic-button-label {
	margin: 0 auto;
}
.basic-button .arrow-icon, .basic-button .article-body .cv-buttons .arrow-l-icon, .article-body .cv-buttons .basic-button .arrow-l-icon, .basic-button .article-body .cv-buttons .career-regist-button .mail-icon, .article-body .cv-buttons .basic-button .career-regist-button .mail-icon, .article-body .cv-buttons .career-regist-button .basic-button .mail-icon {
	margin: 0;
	background-color: #090F24;
}
@media screen and (max-width: 1023px) {
	.basic-button-wrapper {
		margin: 30px auto;
	}
	.basic-button .arrow-icon, .basic-button .article-body .cv-buttons .arrow-l-icon, .article-body .cv-buttons .basic-button .arrow-l-icon, .basic-button .article-body .cv-buttons .career-regist-button .mail-icon, .article-body .cv-buttons .basic-button .career-regist-button .mail-icon, .article-body .cv-buttons .career-regist-button .basic-button .mail-icon {
		margin: 0 0 0 auto;
	}
}

.more-button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 0 10px;
	padding: 0 40px;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.5em;
	width: 285px;
	height: 53px;
	border-radius: 40px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	background: #FFF;
	border: 1px solid #D9D9D9;
	-webkit-transition: 0.2s ease;
	transition: 0.2s ease;
}
.more-button-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: min(86%, 1280px);
	margin: 80px auto 0;
}
.more-button--small {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	font-size: 1.2rem;
	margin-left: auto;
	text-decoration: underline;
	padding: 0;
	width: auto !important;
	height: auto;
	border: none;
	background: transparent !important;
	color: #090F24 !important;
}
.more-button--small .arrow-icon, .more-button--small .article-body .cv-buttons .arrow-l-icon, .article-body .cv-buttons .more-button--small .arrow-l-icon, .more-button--small .article-body .cv-buttons .career-regist-button .mail-icon, .article-body .cv-buttons .more-button--small .career-regist-button .mail-icon, .article-body .cv-buttons .career-regist-button .more-button--small .mail-icon {
	background-color: #090F24 !important;
}
.more-button:disabled {
	display: none;
}
@media (hover: hover) {
	.more-button:where(:-moz-any-link, :enabled, summary):hover {
		background: #090F24;
		color: #FFF;
	}
	.more-button:where(:any-link, :enabled, summary):hover {
		background: #090F24;
		color: #FFF;
	}
	.more-button:where(:-moz-any-link, :enabled, summary):hover .arrow-icon, .more-button:where(:-moz-any-link, :enabled, summary):hover .article-body .cv-buttons .arrow-l-icon, .article-body .cv-buttons .more-button:where(:-moz-any-link, :enabled, summary):hover .arrow-l-icon, .more-button:where(:-moz-any-link, :enabled, summary):hover .article-body .cv-buttons .career-regist-button .mail-icon, .article-body .cv-buttons .more-button:where(:-moz-any-link, :enabled, summary):hover .career-regist-button .mail-icon, .article-body .cv-buttons .career-regist-button .more-button:where(:-moz-any-link, :enabled, summary):hover .mail-icon {
		background-color: #FFF;
	}
	.more-button:where(:any-link, :enabled, summary):hover .arrow-icon, .more-button:where(:any-link, :enabled, summary):hover .article-body .cv-buttons .arrow-l-icon, .article-body .cv-buttons .more-button:where(:any-link, :enabled, summary):hover .arrow-l-icon, .more-button:where(:any-link, :enabled, summary):hover .article-body .cv-buttons .career-regist-button .mail-icon, .article-body .cv-buttons .more-button:where(:any-link, :enabled, summary):hover .career-regist-button .mail-icon, .article-body .cv-buttons .career-regist-button .more-button:where(:any-link, :enabled, summary):hover .mail-icon {
		background-color: #FFF;
	}
}
.more-button .arrow-icon, .more-button .article-body .cv-buttons .arrow-l-icon, .article-body .cv-buttons .more-button .arrow-l-icon, .more-button .article-body .cv-buttons .career-regist-button .mail-icon, .article-body .cv-buttons .more-button .career-regist-button .mail-icon, .article-body .cv-buttons .career-regist-button .more-button .mail-icon {
	margin: 0 0 0 auto;
	background-color: #090F24;
}
@media screen and (max-width: 1023px) {
	.more-button {
		width: min(100%, 285px);
	}
	.more-button-wrapper {
		width: 90%;
		margin: 60px auto 0;
	}
}

.box, .border-box {
	background: #F7F7F7;
	padding: 60px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	border-radius: 20px;
}
.box:not(.section), .border-box:not(.section) {
	margin-top: 50px;
	margin-bottom: 50px;
}
.box :first-child, .border-box :first-child {
	margin-top: 0;
}
.box :last-child, .border-box :last-child {
	margin-bottom: 0;
}
@media screen and (max-width: 1023px) {
	.box, .border-box {
		padding: 30px 20px;
	}
	.box:not(.section), .border-box:not(.section) {
		margin-top: 30px;
		margin-bottom: 30px;
	}
}

.border-box {
	background-color: transparent;
	border-radius: 0;
	border-top: 1px solid #D9D9D9;
	border-bottom: 1px solid #D9D9D9;
}

.search-by-tag > .tag-group {
	gap: 50px 0 !important;
	margin-bottom: 0;
}
.search-by-tag > .tag-group .tag-group-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.search-by-tag > .tag-group .tag-group-title {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	width: 14em;
	font-size: 2.4rem;
	line-height: 1.5;
	font-weight: 500;
	border-right: 1px solid #D9D9D9;
	padding: 0 30px 0 0;
}
.box .search-by-tag > .tag-group .tag-group-title, .border-box .search-by-tag > .tag-group .tag-group-title {
	width: 8em;
}

.search-by-tag > .tag-group .tag-group-content {
	-webkit-box-flex: 2;
	    -ms-flex: 2 2 auto;
	        flex: 2 2 auto;
}
@media screen and (max-width: 1023px) {
	.search-by-tag > .tag-group {
		gap: 40px 0 !important;
	}
	.search-by-tag > .tag-group .tag-group-item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.search-by-tag > .tag-group .tag-group-title {
		width: auto;
		font-size: 1.8rem;
		border-right: none;
		padding: 0;
		margin-bottom: 20px;
	}
	.search-by-tag .tag {
		margin: 0;
	}
}

.search-form {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 0 10px;
	width: 290px;
	height: 43px;
	border-radius: 10px;
	padding: 0 10px 0 20px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	background: #F7F7F7;
}
.search-form--large {
	width: min(100%, 800px);
	height: 64px;
	margin: 0 auto;
}
.box .search-form, .border-box .search-form {
	background: #FFF;
}

.search-form-text {
	-webkit-box-ordinal-group: 3;
	    -ms-flex-order: 2;
	        order: 2;
	-webkit-box-flex: 2;
	    -ms-flex: 2 2 auto;
	        flex: 2 2 auto;
	width: 100%;
	font-size: 1.6rem;
	font-weight: 500;
}
.search-form-submit {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	-webkit-box-ordinal-group: 2;
	    -ms-flex-order: 1;
	        order: 1;
	width: 30px;
	height: 30px;
	background: #ACACAC;
	-webkit-mask-image: url(/global/ja/recruit/uptodata/assets/images/icn_search.svg);
	        mask-image: url(/global/ja/recruit/uptodata/assets/images/icn_search.svg);
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
	-webkit-mask-position: center;
	        mask-position: center;
	-webkit-mask-size: 25px auto;
	        mask-size: 25px auto;
	text-indent: 100%;
	overflow: hidden;
}
@media (hover: hover) {
	.search-form-submit:where(:-moz-any-link, :enabled, summary):hover {
		background-color: #0072BC;
	}
	.search-form-submit:where(:any-link, :enabled, summary):hover {
		background-color: #0072BC;
	}
}
@media screen and (max-width: 1023px) {
	.search-form {
		width: auto;
	}
	.search-form--large {
		height: 43px;
	}
}

.pagination {
	width: auto;
	border-top: 1px solid #D9D9D9;
	margin: 100px 0;
}
.pagination-number {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	padding: 60px 0 0;
	gap: 10px;
}
.pagination-number a, .pagination-number span {
	width: 50px;
	height: 50px;
	text-align: center;
	display: -ms-grid;
	display: grid;
	place-items: center;
	border-radius: 25px;
	text-decoration: none;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	border: 1px solid transparent;
}
.pagination-number a.is-current, .pagination-number span.is-current {
	background: #090F24;
	color: #FFF;
}
@media (hover: hover) {
	.pagination-number a:where(:-moz-any-link, :enabled, summary):hover {
		border: 1px solid #090F24;
	}
	.pagination-number a:where(:any-link, :enabled, summary):hover {
		border: 1px solid #090F24;
	}
}
@media screen and (max-width: 1023px) {
	.pagination {
		margin: 50px 0;
	}
	.pagination-number {
		padding: 30px 0 0;
	}
	.pagination-number a, .pagination-number span {
		width: 40px;
		height: 40px;
		border-radius: 20px;
	}
}

.content-number {
	font-size: 2rem;
	color: #0072BC;
	border-bottom: 1px solid;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	line-height: 1.4;
	padding: 0 0 0.2em;
	margin: -20px 0 0 !important;
}
@media screen and (max-width: 1023px) {
	.content-number {
		font-size: 1.6rem;
		margin: -10px 0 0 !important;
	}
}

.article-body .cv-buttons .career-regist-button,
.article-body .cv-buttons .recruitment-button {
	position: relative;
	z-index: 2;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 0%;
	        flex: 1 1 0%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	height: 88px;
	color: #FFF;
	font-size: 1.4rem;
	line-height: 1.5;
	border-radius: 6px;
	font-weight: 500;
}
.article-body .cv-buttons .career-regist-button::before,
.article-body .cv-buttons .recruitment-button::before {
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
	inset: 0;
	border-radius: 6px;
	-webkit-transition: 0.2s ease;
	transition: 0.2s ease;
}
@media (hover: hover) {
	.article-body .cv-buttons .career-regist-button:where(:-moz-any-link, :enabled, summary):hover::before, .article-body .cv-buttons .recruitment-button:where(:-moz-any-link, :enabled, summary):hover::before {
		opacity: 0.8;
	}
	.article-body .cv-buttons .career-regist-button:where(:any-link, :enabled, summary):hover::before,
	.article-body .cv-buttons .recruitment-button:where(:any-link, :enabled, summary):hover::before {
		opacity: 0.8;
	}
}
@media screen and (max-width: 1023px) {
	.article-body .cv-buttons .career-regist-button,
	.article-body .cv-buttons .recruitment-button {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 auto;
		        flex: 0 0 auto;
	}
}

.article-body .cv-buttons .career-regist-button::before {
	background: #142F49;
}
.article-body .cv-buttons .career-regist-button .mail-icon {
	-webkit-mask-image: url(/global/ja/recruit/uptodata/assets/images/icn_mail.svg);
	        mask-image: url(/global/ja/recruit/uptodata/assets/images/icn_mail.svg);
	-webkit-mask-size: 24px auto;
	        mask-size: 24px auto;
	background-color: #FFF;
}

.article-body .cv-buttons .recruitment-button::before {
	background: -webkit-gradient(linear, left top, right top, from(#2F6FB2), to(#3C8291));
	background: linear-gradient(90deg, #2F6FB2 0%, #3C8291 100%);
}

.article-body .cv-buttons .arrow-l-icon {
	-webkit-mask-image: url(/global/ja/recruit/uptodata/assets/images/icn_arrow_l.svg);
	        mask-image: url(/global/ja/recruit/uptodata/assets/images/icn_arrow_l.svg);
	-webkit-mask-size: 15px auto;
	        mask-size: 15px auto;
	margin: 0 -5px 0 auto;
	background-color: #FFF;
}

body {
	background: url("/global/ja/recruit/uptodata/specialfeature/images/bg_specialfeature.webp") repeat-y 50% 0;
	background-size: 100% auto;
}

.header {
	position: absolute;
	background: transparent;
}
@media screen and (max-width: 1023px) {
	.header {
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		padding: 0 15px;
		height: 54px !important;
	}
}
.on-scroll .header {
	height: 80px;
}

.header .site-title {
	margin-inline: 0 auto !important;
}
@media screen and (max-width: 1023px) {
	.header .site-title {
		margin: auto !important;
	}
}

.footer-lower {
	background: transparent;
	padding: 0;
}
.footer-lower .copyright {
	text-align: center;
	color: #090F24;
}
@media screen and (max-width: 1023px) {
	.footer-lower {
		padding: 0;
	}
	.footer-lower .copyright {
		text-align: left;
	}
}

.article {
	padding-top: 0;
}
.article-hero {
	margin: 0 0 50px;
}
.article-index {
	background: #FFF;
	border-radius: 0;
}
.article-index-heading {
	position: relative;
	z-index: 2;
	color: #091D7E;
}
.article-index-list {
	position: relative;
	z-index: 2;
}
.article-index::before {
	content: "";
	position: absolute;
	inset: -20px auto auto -20px;
	background: url("/global/ja/recruit/uptodata/specialfeature/images/bg_index_tl.svg") no-repeat;
	width: 235px;
	height: 281px;
}
.article-index::after {
	content: "";
	position: absolute;
	inset: auto -20px -20px auto;
	background: url("/global/ja/recruit/uptodata/specialfeature/images/bg_index_br.svg") no-repeat;
	width: 369px;
	height: 369px;
}
@media screen and (max-width: 1023px) {
	.article-index::before {
		inset: -10px auto auto -10px;
		scale: 0.5;
		-webkit-transform-origin: 0 0;
		        transform-origin: 0 0;
	}
	.article-index::after {
		inset: auto -10px -10px auto;
		scale: 0.5;
		-webkit-transform-origin: 100% 100%;
		        transform-origin: 100% 100%;
	}
}
.article-body h2 {
	position: relative;
	color: #091D7E;
}
.article-body h2::before {
	content: "";
	position: absolute;
	z-index: -1;
	inset: 0;
	margin: auto auto auto 0;
	background: url("/global/ja/recruit/uptodata/specialfeature/images/bg_heading_01.svg") no-repeat;
	width: 434px;
	height: 370px;
	translate: -60% -10%;
}
.article-body h2:nth-of-type(even)::before {
	background: url("/global/ja/recruit/uptodata/specialfeature/images/bg_heading_02.svg") no-repeat;
	width: 427px;
	height: 397px;
	translate: -35% -10%;
}
@media screen and (max-width: 1023px) {
	.article-body h2::before {
		scale: 0.3;
		translate: -50% -10%;
	}
	.article-body h2:nth-of-type(even)::before {
		translate: -45% -10%;
	}
}
.article-body .cv-buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 0 10px;
}
.article-body .cv-buttons .career-regist-button,
.article-body .cv-buttons .recruitment-button {
	gap: 0 8px;
	padding: 0 min(5vw, 20px);
	height: 63px;
	font-size: 1.4rem;
	margin-inline: auto;
	word-break: keep-all;
	overflow-wrap: anywhere;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	width: 40%;
}
@media screen and (max-width: 1023px) {
	.article-body .cv-buttons .career-regist-button,
	.article-body .cv-buttons .recruitment-button {
		width: auto;
	}
}
.article-body .cv-box {
	padding: 60px;
	background: #FFF;
}
.article-body .cv-box .cv-buttons {
	gap: 0 20px;
	margin-block: 40px 0;
}
.article-body .cv-box .cv-buttons .career-regist-button,
.article-body .cv-box .cv-buttons .recruitment-button {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 0%;
	        flex: 1 1 0%;
	font-size: 1.8rem;
	height: 80px;
}
@media screen and (max-width: 1023px) {
	.article-body .cv-box {
		padding: 20px;
	}
	.article-body .cv-box .cv-buttons {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: 10px 0;
		margin-block: 20px 0;
	}
	.article-body .cv-box .cv-buttons .career-regist-button,
	.article-body .cv-box .cv-buttons .recruitment-button {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 auto;
		        flex: 0 0 auto;
		font-size: 1.4rem;
		width: 100%;
		-webkit-box-sizing: border-box;
		        box-sizing: border-box;
	}
}
.article-list {
	-ms-grid-columns: (1fr)[2];
	grid-template-columns: repeat(2, 1fr);
	margin-block: 60px;
}
.article-card {
	background: #FFF;
	-webkit-padding-after: 20px;
	        padding-block-end: 20px;
}
.article-card .thumbnail-wrap {
	margin: 0 0 20px;
}
.article-card-title {
	margin: 0 20px;
}
.article-card .tag {
	margin: 0 20px;
}
@media screen and (max-width: 1023px) {
	.article-list {
		width: auto;
		margin-inline: auto;
		-ms-grid-columns: 1fr;
		grid-template-columns: repeat(1, 1fr);
		gap: 40px 0;
	}
	.article-card-title {
		font-size: 1.8rem;
		margin: 0 20px 5px;
	}
	.article-card .tag-link {
		pointer-events: none;
	}
}