/*
Theme Name:template
*/
@charset "UTF-8";

/*####################################

1. General
┣ Root
┣ Element
┣ Decoration
┣ Css Animation
┣ Plugin Overwrite
┣ default.css Overwrite
┣ Other
2. Site Common Style
┣ Pagination
┣ Form
┣ 404 & Thanks
3. Header
4. Main
5. Footer
6. Common Style
┣ Single
┣ Section 
7.Module
8. Page

####################################*/
/*====================================

1. General

====================================*/
/*
Root
====================================*/
:root {
	/* color */
	--mainColor: #458BE2;
	--productsColor: #335AB2;
	--recruitColor: #53B0FF;
	--newsColor: #68A0E5;
	--recruitFleshColor: linear-gradient(#53c3ff 0%, #007ad3 100%);
	--recruitHSGraduateColor: linear-gradient(#07b58d 0%, #006e54 100%);
	--recruitCareerColor: linear-gradient(#046be2 0%, #00397b 100%);
	--infoCatCompany: #68a0e5;
	--infoCatSustainability: #03b4d5;
	--infoCatProducts: #0549b2;
	--infoCatTechnical: #0c74eb;
	--infoCatProductsDevelopment: #11418b;
	--infoCatRecruit: #53b0ff;
	/* background */
	/* コンテンツ背景カラー */
	--contentsBg: #eff6fc;
	/* 下層ページトップ背景カラー */
	--lowerTopBg: #D7E1FA;
	/* 表組み項目名背景カラー */
	--tableItemBg: #eff6fc;
	/* フォーム項目名背景カラー */
	--formItemBg: #F0F5FA;
	/* カテゴリーリンク背景カラー */
	--categoryLinkBg: #D7E1FA;
	/* text */
	/* 基本テキストカラー */
	--textColor: #333;
	--textColorBlue: rgba(17, 65, 139, 0.9);
	--textColorBlue2: rgba(4, 42, 101, 0.9);
	/* リンクテキストカラー */
	--linktextColor: #458BE2;
	/* メインビジュアルテキストカラー */
	--mvTextColor: #fff;
	/* btn */
	/* メール問い合わせボタン背景カラー */
	--mailBtnBg: linear-gradient(#0ba3f4 0%, #0c9ff2 0.49%, #1b4fc4 100%);
	/*　pagination */
	/* ページネーションテキスト、矢印カラー */
	--pnColor: #aaa;
	/* ページネーションhoverテキスト、矢印カラー */
	--pnHoverColor: rgba(17, 65, 139, 0.9);
	/* ページネーションCurrentテキスト、矢印カラー */
	--pnCurrentColor: rgba(17, 65, 139, 0.9);
	/* ページネーションhover背景カラー */
	--pnHoverBg: #E7F1FA;
	/* ページネーションCurrent背景カラー */
	--pnCurrentBg: #E7F1FA;
	/* font */
	--mincho: "NotoSerifJp", "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	--gothic: "NotoSansJp", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	/* width, height */
	--pcInnerWidth: 1100px;
	--pcInnerWidthVariable: max(1100px, 100%);
	--maxWidthL: 1500px;
	--maxWidthM: 768px;
	--maxWidthS: 500px;
	--maxWidthXS: 300px;
	--mbBtnMaxW: 300px;
	/* other */
	/* recaptcha代替テキストカラー */
	--recaptchaTextColor: #fff;
}

/*
Element
====================================*/
body {
	color: var(--textColor);
}

p,
dt,
dd,
th,
td {
	font-size: 15px;
	line-height: 30px;
}

@media screen and (max-width: 1024px) {

	h1,
	h2,
	h3,
	h4,
	h5,
	h6,
	dt,
	th {
		font-weight: 700;
	}

	p,
	dt,
	dd,
	th,
	td {
		font-size: 1rem;
		line-height: inherit;
	}
}

/*
Decoration
====================================*/
/*
Css Animation
====================================*/
/* fade */
.css_fade {
	opacity: 0;
	animation-name: css_fade;
	animation-fill-mode: backwards;
	animation-duration: 3s;
	animation-timing-function: ease;
	animation-delay: 1s;
	animation-direction: normal;
	animation-fill-mode: forwards;
}

@keyframes css_fade {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/* scroll */
.css_scroll {
	animation: scroll 1.5s infinite;
}

@keyframes css_scroll {
	0% {
		transform: scale(1, 0);
		transform-origin: 0 0;
	}

	50% {
		transform: scale(1, 1);
		transform-origin: 0 0;
	}

	50.1% {
		transform: scale(1, 1);
		transform-origin: 0 100%;
	}

	100% {
		transform: scale(1, 0);
		transform-origin: 0 100%;
	}
}

/* pulse */
.css_pulse::before {
	animation: css_pulse 1.5s ease-in-out forwards infinite;
}

@keyframes css_pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(1.4);
		opacity: 0;
	}

	100% {
		transform: scale(1.4);
		opacity: 0;
	}
}

/* slide down */
.css_slideDown {
	animation: css_slideDown 1s forwards;
	animation-delay: 1s;
}

@media screen and (max-width: 1024px) {
	.css_slideDown {
		animation: css_slideDownSp 1s forwards;
		animation-delay: 1s;
	}
}

@keyframes css_slideDown {
	0% {
		transform: translate(0, -100%);
	}

	100% {
		transform: none
	}
}

@keyframes css_slideDownSp {
	0% {
		transform: translate(0, -100%) scale(1.2);
	}

	100% {
		transform: translate(0, -10%) scale(1.2);
	}
}

/* loop slide */
@keyframes css_loopSlide {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-100%);
	}
}

/* text fade */
.css_textSplitFade {
	opacity: 0;
}

.css_textSplitFade>span {
	opacity: 0;
	animation: css_textSplitFade 1s ease-out forwards;
}

@keyframes css_textSplitFade {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/* shine */
@keyframes css_hoverShine {
	100% {
		left: 125%;
	}
}

/*
Plugin Overwrite
====================================*/
.wpml-ls-statics-footer,
.otgs-development-site-front-end {
	display: none;
}

/*
Slick
---------------------------------------------------------------*/
.top_mv .slick-arrow::before {
	border-color: var(--mainColor);
}

.top_mv .slick-dots li.slick-active button {
	background: var(--mainColor);
}

/*
default.css Overwrite
====================================*/
.recaptcha_txt {
	text-align: justify;
	color: var(--recaptchaTextColor);
	padding: 6px 0 0;
}

/*
Other
====================================*/
/*====================================

2. Site Common Style

====================================*/
/*
Pagination
====================================*/
/*
List
---------------------------------------------------------------*/
.pn_list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 56px;
	border-radius: 6px;
	background: #fff;
	box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
	margin: 75px 0 0;
}

.pn_list .listArrow::before,
.pn_list .listArrow::after {
	content: '';
	position: absolute;
	top: calc(50% + 3px);
	width: 9px;
	height: 9px;
	-webkit-transform: rotate(45deg) translate(-50%, -50%);
	transform: rotate(45deg) translate(-50%, -50%);
	transition: .3s;
}

.pn_list .listPagerBlk {
	display: flex;
	align-items: center;
	gap: 20px;
}

.pn_list .listPagerPrevious::before {
	border-bottom: solid 2px var(--pnColor);
	border-left: solid 2px var(--pnColor);
	left: calc(50% - 2px);
}

.pn_list .listPagerBlk a,
.pn_list .listPagerBlk span {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 35px;
	width: 35px;
	color: var(--pnColor);
	border-radius: 5px;
}

.pn_list .listPagerBlk span.listPagerNum {
	color: var(--pnCurrentColor);
	background: var(--pnCurrentBg);
}

.pn_list .listPagerNext::before {
	border-top: solid 2px var(--pnColor);
	border-right: solid 2px var(--pnColor);
	right: calc(50% - 2px);
}

@media screen and (min-width: 1025px) {
	.pn_list .listPagerPrevious:hover::before {
		border-bottom: solid 2px var(--pnHoverColor);
		border-left: solid 2px var(--pnHoverColor);
	}

	.pn_list .listPagerBlk a:hover {
		color: var(--pnHoverColor);
		background: var(--pnHoverBg);
		opacity: 1;
	}

	.pn_list .listPagerNext:hover::before {
		border-top: solid 2px var(--pnHoverColor);
		border-right: solid 2px var(--pnHoverColor);
	}
}

.pn_list .listFirstBlk,
.pn_list .listLastBlk {
	width: 100px;
	height: 100%;
}

.pn_list .listFirstBlk a,
.pn_list .listLastBlk a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}

@media screen and (min-width: 1025px) {

	.pn_list .listFirstBlk a:hover,
	.pn_list .listLastBlk a:hover {
		background: var(--pnHoverBg);
	}
}

.pn_list .listFirstBlk a {
	border-right: solid 1px #E2E6EB;
}

.pn_list .listFirstBlk a::before {
	border-bottom: solid 2px var(--pnColor);
	border-left: solid 2px var(--pnColor);
	left: 50%;
}

.pn_list .listFirstBlk a::after {
	border-bottom: solid 2px var(--pnColor);
	border-left: solid 2px var(--pnColor);
	left: calc(50% - 7px);
}

@media screen and (min-width: 1025px) {
	.pn_list .listFirstBlk a:hover::before {
		border-bottom: solid 2px var(--pnHoverColor);
		border-left: solid 2px var(--pnHoverColor);
	}

	.pn_list .listFirstBlk a:hover::after {
		border-bottom: solid 2px var(--pnHoverColor);
		border-left: solid 2px var(--pnHoverColor);
	}
}

.pn_list .listLastBlk a {
	border-left: solid 1px #E2E6EB;
}

.pn_list .listLastBlk a::before {
	border-top: solid 2px var(--pnColor);
	border-right: solid 2px var(--pnColor);
	right: 50%;
}

.pn_list .listLastBlk a::after {
	border-top: solid 2px var(--pnColor);
	border-right: solid 2px var(--pnColor);
	right: calc(50% - 7px);
}

@media screen and (min-width: 1025px) {
	.pn_list .listLastBlk a:hover::before {
		border-top: solid 2px var(--pnHoverColor);
		border-right: solid 2px var(--pnHoverColor);
	}

	.pn_list .listLastBlk a:hover::after {
		border-top: solid 2px var(--pnHoverColor);
		border-right: solid 2px var(--pnHoverColor);
	}
}

@media screen and (max-width: 1024px) {
	.pn_list {
		margin: 60px 0 0;
	}

	.pn_list .listArrow::before,
	.pn_list .listArrow::after {
		top: calc(50% + 2px);
	}

	.pn_list .listPagerBlk {
		gap: 8px;
	}

	.pn_list .listPagerPrevious::before {
		left: calc(50% - 2px);
	}

	.pn_list .listPagerBlk a,
	.pn_list .listPagerBlk span {
		height: 30px;
		width: 26px;
		font-size: 14px;
	}

	.pn_list .listPagerBlk span.listPagerNum {}

	.pn_list .listPagerNext::before {}

	.pn_list .listFirstBlk,
	.pn_list .listLastBlk {
		width: 40px;
	}

	.pn_list .listFirstBlk a,
	.pn_list .listLastBlk a {}

	.pn_list .listFirstBlk a {}

	.pn_list .listFirstBlk a::before {
		left: calc(50% + 2px);
	}

	.pn_list .listFirstBlk a::after {
		left: calc(50% - 5px);
	}

	.pn_list .listLastBlk a {}

	.pn_list .listLastBlk a::before {
		right: calc(50% + 2px);
	}

	.pn_list .listLastBlk a::after {
		right: calc(50% - 5px);
	}
}

/*
Detail
---------------------------------------------------------------*/
.pn_detail {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: min(834px, 100%);
	height: 70px;
	margin: 75px auto 0;
}

.pn_detail>* {
	height: 100%;
}

.pn_detail .detailpreviousBlk,
.pn_detail .detailNextBlk {
	width: 150px;
}

.pn_detail .detailpreviousBlk a,
.pn_detail .detailNextBlk a {
	position: relative;
	display: block;
	height: 100%;
}

.pn_detail a {
	background: #fff;
	box-shadow: 0px 3px 10px rgb(0 0 0 / 10%);
	border-radius: 6px;
}

@media screen and (min-width: 1025px) {
	.pn_detail a:hover {
		background: var(--pnHoverBg);
		opacity: 1;
	}
}

.pn_detail .detailpreviousBlk {}

.pn_detail .detailpreviousBlk a {}

.pn_detail .detailpreviousBlk a::before,
.pn_detail .detailpreviousBlk a::after {
	content: '';
	position: absolute;
	top: calc(50% + 3px);
	width: 9px;
	height: 9px;
	border-bottom: solid 2px var(--pnColor);
	border-left: solid 2px var(--pnColor);
	-webkit-transform: rotate(45deg) translate(-50%, -50%);
	transform: rotate(45deg) translate(-50%, -50%);
	transition: .3s;
}

.pn_detail .detailpreviousBlk a::before {
	left: 50%;
}

.pn_detail .detailpreviousBlk a::after {
	left: calc(50% - 7px);
}

@media screen and (min-width: 1025px) {

	.pn_detail .detailpreviousBlk a:hover::before,
	.pn_detail .detailpreviousBlk a:hover::after {
		border-bottom: solid 2px var(--pnHoverColor);
		border-left: solid 2px var(--pnHoverColor);
	}
}

.pn_detail .detailNextBlk {}

.pn_detail .detailNextBlk a {}

.pn_detail .detailNextBlk a::before,
.pn_detail .detailNextBlk a::after {
	content: '';
	position: absolute;
	top: calc(50% + 3px);
	width: 9px;
	height: 9px;
	border-top: solid 2px var(--pnColor);
	border-right: solid 2px var(--pnColor);
	-webkit-transform: rotate(45deg) translate(-50%, -50%);
	transform: rotate(45deg) translate(-50%, -50%);
	transition: .3s;
}

.pn_detail .detailNextBlk a::before {
	right: 50%;
}

.pn_detail .detailNextBlk a::after {
	right: calc(50% - 7px);
}

@media screen and (min-width: 1025px) {

	.pn_detail .detailNextBlk a:hover::before,
	.pn_detail .detailNextBlk a:hover::after {
		border-top: solid 2px var(--pnHoverColor);
		border-right: solid 2px var(--pnHoverColor);
	}
}

.pn_detail .detailBackBlk {}

.pn_detail .detailBackBlk a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 428px;
	height: 100%;
	font-size: 15px;
	color: #11418b;
}

.pn_detail .detailBackBlk a span {
	position: relative;
	padding-right: 27px;
}

.pn_detail .detailBackBlk a span::before,
.pn_detail .detailBackBlk a span::after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	display: inline-block;
	background: #11418b;
	;
	transition: all .3s;
}

.pn_detail .detailBackBlk a span::before {
	right: 0;
	width: 7px;
	height: 12px;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.pn_detail .detailBackBlk a span::after {
	right: 7px;
	width: 10px;
	height: 2px;
}

@media screen and (max-width: 1024px) {
	.pn_detail {
		margin: 60px 0 0;
	}

	.pn_detail>* {}

	.pn_detail .detailpreviousBlk,
	.pn_detail .detailNextBlk {
		width: 55px;
	}

	.pn_detail .detailpreviousBlk a,
	.pn_detail .detailNextBlk a {
		width: 100%;
	}

	.pn_detail a {}

	.pn_detail .detailpreviousBlk {}

	.pn_detail .detailpreviousBlk a {}

	.pn_detail .detailpreviousBlk a::before,
	.pn_detail .detailpreviousBlk a::after {}

	.pn_detail .detailpreviousBlk a::before {}

	.pn_detail .detailpreviousBlk a::after {}

	.pn_detail .detailNextBlk {}

	.pn_detail .detailNextBlk a {}

	.pn_detail .detailNextBlk a::before,
	.pn_detail .detailNextBlk a::after {}

	.pn_detail .detailNextBlk a::before {}

	.pn_detail .detailNextBlk a::after {}

	.pn_detail .detailBackBlk {}

	.pn_detail .detailBackBlk a {
		width: 200px;
	}
}

/*
Form
====================================*/
/*
Input
----------------------------------------------------------------*/
.form_input {
	display: grid;
	gap: 40px;
	/* border: 1px solid #D7DCE2; */
	/* border-bottom: transparent; */
}

.form_input .inputRow {
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* border-bottom: 1px solid #D7DCE2; */
}

.form_input .inputRow._itemTop {
	align-items: flex-start;
}

.form_input .inputItem {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 225px;
	font-size: 15px;
	/* background: var(--formItemBg); */
	padding: 0 0 0 55px;
	font-weight: 500;
	/* border-right: 1px solid #D7DCE2; */
}

.form_input .inputItem._textarea {
	margin: 10px 0 0;
}

.form_input .inputItem ._must {
	position: absolute;
	top: 2px;
	left: 0;
	width: 41px;
	line-height: 20px;
	font-size: 12px;
	text-align: center;
	color: #fff;
	border-radius: 3px;
}

.contact_form._contact .form_input .inputItem ._must {
	background: #1466C6;
}

.contact_form._entry .form_input .inputItem ._must {
	background: #53B0FF;
}

.form_input .inputItem ._note {
	font-size: 12px;
	color: #525252;
}

.form_input .inputValue {
	position: relative;
	flex: 1;
	display: flex;
	flex-flow: wrap;
	align-items: center;
}

.form_input .inputValueNote {
	position: absolute;
	top: 100%;
	left: 0;
	font-size: 12px;
}

.form_input .wpcf7-form-control-wrap {
	width: 100%;
}

/* input[text, tel, email], textarea */
.form_input input[type="text"],
.form_input input[type="tel"],
.form_input input[type="email"],
.form_input textarea {
	width: 100%;
	height: 44px;
	border-radius: 5px;
	border: 1px solid #cecece;
	padding: 0px 10px;
	font-size: 13px;
}

.form_input textarea {
	height: auto;
	padding: 10px;
}

.form_input input::placeholder,
.form_input textarea::placeholder {
	font-size: 14px;
	color: #b4b7bc;
}

/* input[checkbox, radio] */
.form_input input[type="checkbox"],
.form_input input[type="radio"] {
	width: 16px;
	height: 16px;
	cursor: pointer;
}

.form_input .wpcf7-form-control {
	display: flex;
	flex-direction: column;
	gap: 12px 50px;
}

.form_input .wpcf7-form-control.wpcf7-radio {
	flex-direction: unset;
}

.form_input .wpcf7-list-item {
	margin: 0;
}

.form_input .wpcf7-list-item label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	cursor: pointer;
}

.form_input .wpcf7-list-item-label {
	font-size: 15px;
	cursor: pointer;
}

/* input[file] */
.form_input input[type="file"] {
	font-size: 14px;
}

/* validation */
.form_input .wpcf7-not-valid-tip {
	width: 100%;
	font-size: 14px;
	margin: 10px 0 0;
}

/* agree */
.form_agree {
	margin: 40px 0 0;
	text-align: center;
}

.form_agree .wpcf7-list-item {
	margin: 0;
}

.form_agree label {
	display: flex;
	align-items: center;
	gap: 12px;
}

.form_agree .wpcf7-list-item-label {
	font-size: 13px;
}

.form_agree input[type="checkbox"] {
	width: 20px;
	height: 20px;
}

/* submit */
.form_submit {
	position: relative;
	width: 385px;
	text-align: center;
	margin: 40px auto 0;
}

.form_submit input[type="submit"] {
	width: 100%;
	height: 68px;
	font-size: 22px;
	color: #fff;
	border-radius: 15px;
	transition: .3s;
	background: var(--mailBtnBg);
}

.contact_form._entry .form_submit input[type="submit"] {
	background: var(--recruitFleshColor);
}

@media screen and (min-width: 1025px) {
	.form_submit input[type="submit"]:hover {
		opacity: .7;
	}
}

.form_submit .wpcf7-spinner {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

@media screen and (max-width: 1024px) {
	.form_input {
		/* border: 1px solid #D7DCE2; */
		gap: 36px;
	}

	.form_input .inputRow {
		border-bottom: transparent;
		flex-flow: wrap;
		gap: 13px;
	}

	.form_input .inputRow:last-child {
		border-bottom: transparent;
	}

	.form_input .inputItem {
		display: inline-flex;
		justify-content: flex-start;
		width: auto;
		padding: 0px;
		border-right: transparent;
		gap: 0;
	}

	.form_input .inputItem ._must {
		right: -58px;
		left: unset;
	}

	.form_input .inputValue {
		flex: unset;
		width: 100%;
	}

	.form_input .inputValueNote {
		position: initial;
		margin: 8px 0 0;
		font-size: 12px;
	}

	.form_input .wpcf7-form-control-wrap {}

	/* input[text, tel, email], textarea */
	.form_input input[type="text"],
	.form_input input[type="tel"],
	.form_input input[type="email"],
	.form_input textarea {
		font-size: 16px;
	}

	.form_input textarea {}

	.form_input input::placeholder,
	.form_input textarea::placeholder {}

	/* input[checkbox, radio] */
	.form_input input[type="checkbox"],
	.form_input input[type="radio"] {}

	.form_input .wpcf7-form-control {}

	.form_input .wpcf7-list-item {}

	.form_input .wpcf7-list-item label {}

	.form_input .wpcf7-list-item-label {
		flex: 1;
	}

	/* input[file] */
	.form_input input[type="file"] {}

	/* validation */
	.form_input .wpcf7-not-valid-tip {}

	/* agree */
	.form_agree {}

	.form_agree .wpcf7-list-item {}

	.form_agree label {}

	.form_agree .wpcf7-list-item-label {}

	.form_agree input[type="checkbox"] {}

	/* submit */
	.form_submit {
		margin: 30px auto 0;
		width: 100%;
		max-width: var(--mbBtnMaxW);
	}

	.form_submit input[type="submit"] {
		height: 55px;
		font-size: 18px;
		font-weight: 600;
		border-radius: 10px;
	}

	.form_submit .wpcf7-spinner {}
}

/*
Privacy Policy
----------------------------------------------------------------*/
.mainPrivacyBlk {
	margin: 60px 0 0;
	width: 100%;
	height: 270px;
	border-radius: 5px;
	background: #fff;
	border: 1px solid #cecece;
	padding: 30px 33px;
	overflow: auto;
}

.mainPrivacyBlk dl {}

.mainPrivacyBlk dt {
	font-size: 15px;
}

.mainPrivacyBlk dd {
	font-size: 13px;
	line-height: 22px;
	margin: 20px 0 0;
}

@media screen and (max-width: 1024px) {
	.mainPrivacyBlk {
		margin: 45px 0 0;
		width: 100%;
		height: 250px;
		padding: 30px 15px;
	}

	.mainPrivacyBlk dl {}

	.mainPrivacyBlk dt {
		font-size: 15px;
	}

	.mainPrivacyBlk dd {
		font-size: 13px;
		line-height: 22px;
		margin: 20px 0 0;
	}
}

/*
Thanks & 404
====================================*/
.thanks_main {
	padding: 80px 0 150px;
}

.thanks_main .inner {}

.thanks_main .blk {}

.thanks_main .headBlk {
	position: relative;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0%);
	-webkit-transform: translate(-50%, 0%);
	width: calc(var(--vw) * 100);
	background: var(--contentsBg);
	padding: 20px 0;
}

.thanks_main .head {
	text-align: center;
	font-size: 24px;
}

.thanks_main .txtBlk {
	margin: 35px 0 0;
}

.thanks_main .txt {
	font-size: 14px;
	line-height: 26px;
	text-align: center;
}

.error_main {
	padding: 80px 0 150px;
	overflow: hidden;
}

.error_main .inner {}

.error_main .blk {}

.error_main .headBlk {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
	background: var(--contentsBg);
	padding: 20px 0;
}

.error_main .head {
	text-align: center;
	font-size: 30px;
	font-weight: 600;
}

.error_main .head span {
	font-size: 22px;
	display: block;
}

.error_main .txtBlk {
	margin: 35px 0 0;
}

.error_main .txt {
	font-size: 14px;
	line-height: 26px;
	text-align: center;
}

.thanks_main .linkBlk,
.error_main .linkBlk {
	text-align: center;
	margin: 45px 0 0;
}

.thanks_main .linkBlk a,
.error_main .linkBlk a {
	display: inline-block;
	width: 250px;
	line-height: 40px;
	font-size: 14px;
	border: solid 1px var(--mainColor);
	border-radius: 30px;
}

@media screen and (min-width: 1025px) {

	.thanks_main .linkBlk a:hover,
	.error_main .linkBlk a:hover {
		opacity: 1;
		background: var(--mainColor);
		color: #fff;
	}
}

@media screen and (max-width: 1024px) {
	.thanks_main {
		padding: 60px 0 90px;
	}

	.thanks_main .inner {}

	.thanks_main .blk {}

	.thanks_main .headBlk {
		padding: 15px 0;
	}

	.thanks_main .head {
		text-align: center;
		font-size: 20px;
	}

	.thanks_main .txtBlk {
		margin: 30px 0 0;
	}

	.thanks_main .txt {
		line-height: 24px;
	}

	.thanks_main .linkBlk {
		margin: 40px 0 0;
	}

	.error_main {
		padding: 40px 0 90px;
	}

	.error_main .inner {}

	.error_main .blk {}

	.error_main .headBlk {}

	.error_main .head {
		font-size: 24px;
	}

	.error_main .head span {
		font-size: 16px;
	}

	.error_main .txtBlk {
		margin: 30px 0 0;
	}

	.error_main .txt {
		line-height: 24px;
	}

	.thanks_main .linkBlk a,
	.error_main .linkBlk a {}
}

/*====================================

3. Header

====================================*/
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
	width: 100%;
	height: 102px;
	box-shadow: 0px 3px 6px rgba(51, 51, 51, 0.05);
	background: white;
}

header .inner {
	height: 100%;
	margin: 0 28px 0 50px;
}

header .blk {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0 30px;
	height: 100%;
}

header .logoBlk {
	display: flex;
	flex-shrink: 0;
	margin: 26px 0 0;
}

header .logoBlk a {}

header .logoBlk a img {
	height: 37px;
}

@media screen and (min-width: 1025px) {
	header .menuBlk {
		position: relative;
		display: flex;
		flex-shrink: 0;
		height: 100%;
	}

	header .menuBlk nav {}

	header .menuBlk nav>ul {
		position: relative;
		display: flex;
		gap: 0 25px;
		height: 100%;
	}

	header .menuBlk nav>ul>li {
		/* position: relative; */
		margin: 62px 0 0;
	}

	header .menuBlk nav>ul>li>a {
		position: relative;
		display: block;
		height: 100%;
		font-size: 15px;
		font-weight: 600;
		color: #000;
	}

	header .menuBlk nav>ul>li>a::before {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		display: inline-block;
		width: 100%;
		height: 2px;
		transition: all .3s !important;
	}

	header .menuBlk nav>ul>li:hover>a::before {
		background: var(--mainColor);
	}

	header .menuBlk nav>ul>li>a:hover {}

	header .menuBlk nav>ul>li a:hover {
		opacity: 1;
	}

	header .menuBlk nav>ul>li._parent>a {
		pointer-events: none;
		cursor: default;
	}

	header .menuBlk nav>ul>li>ul {
		position: absolute;
		top: 80%;
		left: 0;
		z-index: -1;
		display: grid;
		column-gap: 26px;
		row-gap: 30px;
		grid-template-columns: repeat(3, 1fr);
		padding: 34px 39px 38px;
		box-shadow: 0px 2px 10px rgba(51, 51, 51, 0.2);
		border-radius: 10px;
		background: #fff;
		opacity: 0;
		visibility: hidden;
		transition: .3s;
		pointer-events: none;
	}

	header .menuBlk nav>ul>li>ul::before {
		content: '';
		position: absolute;
		top: -14px;
		left: 0;
		display: inline-block;
		width: 100%;
		height: 14px;
	}

	header .menuBlk>nav>ul>li._parent:hover>ul {
		top: calc(100% + 14px);
		opacity: 1;
		visibility: visible;
		pointer-events: initial;
	}

	header .menuBlk nav>ul>li>ul>li {}

	header .menuBlk nav>ul>li>ul>li:not(:nth-child(3n + 1)) {
		/* margin-left: 50px; */
	}

	header .menuBlk nav>ul>li>ul>li>a {
		position: relative;
		display: block;
		width: 248px;
		padding: 0 0 5px;
		font-size: 15px;
		background-image: url(./images/icon_arrow01_bgBlue.svg);
		background-repeat: no-repeat;
		background-position: right top calc(50% - 2px);
		background-size: 15px;
	}

	header .menuBlk nav>ul>li>ul>li>a:hover {}

	header .menuBlk nav>ul>li>ul>li>a::before {
		content: '';
		position: absolute;
		top: unset;
		transform: unset;
		bottom: 0;
		left: 0;
		height: 1px;
		width: 100%;
		background: #d7dce2;
	}

	header .menuBlk nav>ul>li>ul>li>a::after {
		content: '';
		position: absolute;
		bottom: 0;
		right: 0;
		height: 1px;
		width: 0%;
		background: var(--mainColor);
		transition: .5s;
	}

	header .menuBlk nav>ul>li>ul>li>a:hover::after {
		left: 0;
		right: unset;
		width: 100%;
		background: var(--mainColor);
	}

	header .menuBlk nav>ul>li._other {
		margin: initial;
	}

	header .menuBlk nav>ul>li._other a {
		display: grid;
		place-items: center;
		width: 111px;
		height: calc(100% - 16px);
		padding: 9px 0 0;
		color: white;
		font-size: 13px;
	}

	header .menuBlk nav>ul>li._other:hover a::before {
		background: transparent;
	}

	header .menuBlk nav>ul>li._other a.cmn_linkHoverShine::before {
		left: -75%;
	}

	header .menuBlk nav>ul>li._other>a>span {
		padding: 23px 0 0;
		line-height: 1;
		background-image: url(./images/icon_mail01_white.svg);
		background-repeat: no-repeat;
		background-position: center top;
		background-size: 20px;
	}

	header .menuBlk nav>ul>li._contact {
		margin-right: -23px;
		margin-left: -4px;
	}

	header .menuBlk nav>ul>li._contact>a {
		background: var(--mailBtnBg);
	}

	header .menuBlk nav>ul>li._contact>a>span {}

	header .menuBlk nav>ul>li._entry {}

	header .menuBlk nav>ul>li._entry>a {
		background: var(--recruitColor);
	}

	header .menuBlk nav>ul>li._entry>a:hover {
		background: #2499FD;
	}

	header .menuBlk nav>ul>li._entry>a>span {}

	header .menuOtherBlk {
		position: absolute;
		top: 18px;
		right: 276px;
		align-items: baseline;
		gap: 14px;
	}

	header .menuSearchBlk {}

	header .menuSearchBlk #searchProductsForm,
	header .menuSearchBlk #searchTechnicalInfoForm {
		display: none;
	}

	header .menuSearchBlk form {
		display: flex;
		height: 36px;
		border: 1px solid #c2c6cb;
		border-radius: 30px;
		background: #fff;
	}

	header .menuSearchBlk form input[type="text"] {
		width: 203px;
		padding: 0 0 0 15px;
		font-size: 14px;
		border-radius: 18px 0 0 18px;
	}

	header .menuSearchBlk form input:focus {
		outline: none;
	}

	header .menuSearchBlk form button {
		display: grid;
		place-items: center;
		width: 45px;
		padding-right: 5px;
	}

	header .menuSearchBlk form button>* {
		color: var(--newsColor);
	}

	header .menuLangBlk {
		overflow: hidden;
		width: 120px;
		height: 27px;
		border-radius: 5px;
	}

	header .menuLangBlk button {
		display: grid;
		place-items: center;
		flex: 1;
		height: 100%;
		font-size: 14px;
		color: var(--newsColor);
		background: #F5F6F8;
		transition: all .3s;
	}

	header .menuLangBlk button:hover {
		background: var(--newsColor);
		color: #fff;
	}

	header .menuLangBlk button._active {
		background: var(--newsColor);
		color: #fff;
	}
}

@media screen and (max-width: 1024px) {
	header {
		height: 66px;
		box-shadow: none;
	}

	header .inner {
		background: white;
		padding: 0 0 0 4%;
		box-shadow: 0 2px 10px rgb(0 0 0 / 5%);
		margin: auto;
	}

	header .blk {}

	header .logoBlk {
		margin: 4px 0 0;
	}

	header .logoBlk a {}

	header .logoBlk a img {
		height: 29px;
	}

	header .menuBlk {
		position: absolute;
		top: var(--headerH, 66px);
		left: 0;
		z-index: -1;
		overflow: auto;
		display: flex;
		justify-content: flex-end;
		flex-flow: column-reverse;
		flex-shrink: unset;
		height: calc((var(--vh, 1vh)* 100) - var(--headerH, 55px));
		width: 100%;
		padding: 33px 0 0;
		background: white;
		transition: .3s;
		opacity: 0;
		visibility: hidden;
	}

	header .menuBlk::-webkit-scrollbar {
		display: none;
	}

	header._menuOpen .menuBlk {
		opacity: 1;
		visibility: visible;
	}

	header .menuBlk>* {
		width: min(var(--maxWidthM), 100%);
		margin: 0 auto;
		padding: 0 4%;

	}

	header .menuBlk nav {
		overflow: auto;
		margin: 30px auto 0;
		height: calc((var(--vh, 1vh)* 100) - 169px);
		padding: 0 4% 100px;
	}

	header .menuBlk nav::-webkit-scrollbar {
		display: none;
	}

	header .menuBlk nav>ul {
		display: grid;
		gap: 22px;
	}

	header .menuBlk nav>ul>li {
		position: relative;
		display: block;
		height: auto;
	}

	/* header .menuBlk nav > ul > li > span {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 70px;
	cursor: pointer;
} */
	header .menuBlk nav>ul>li>a {
		display: flex;
		padding: 3px 0;
		border-bottom: 1px solid rgba(181, 199, 227, 0.9);
		font-size: 16px;
		color: rgba(43, 71, 114, 0.9);
		font-weight: 600;
		cursor: pointer;
	}

	header .menuBlk nav>ul>li._parent>a {
		position: relative;
	}

	header .menuBlk nav>ul>li._parent::before {
		content: '';
		position: absolute;
		top: 7px;
		right: 0;
		transform: translateY(0%);
		width: 17px;
		height: 17px;
		transition: .3s;
		background-image: url(./images/icon_arrow02bgGray.webp);
		background-repeat: no-repeat;
		background-position: center;
		background-size: 100%;
	}

	header .menuBlk nav>ul>li._parent::before {
		transform: translateY(0%);
	}

	header .menuBlk nav>ul>li._parent._childOpen::before {
		transform: rotateX(180deg);
	}

	header .menuBlk nav>ul>li>ul {
		display: flex;
		flex-direction: column;
		gap: 0;
		margin: 0;
		padding: 0 0 0 20px;
		transition: .3s;
		position: unset;
		background: unset;
		box-shadow: unset;
		min-width: unset;
		opacity: unset;
		visibility: unset;
	}

	header .menuBlk nav>ul>li>ul {
		overflow-y: scroll;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}

	header .menuBlk nav>ul>li>ul::-webkit-scrollbar {
		display: none;
	}

	header .menuBlk>nav>ul>li._parent:hover>ul {
		top: 100%;
		opacity: unset;
		visibility: unset;
	}

	header .menuBlk nav>ul>li._childOpen>ul {
		gap: 22px 0;
		margin: 22px 0 0;
	}

	header .menuBlk nav>ul>li>ul>li {
		height: 0;
		transition: .3s;
	}

	header .menuBlk nav>ul>li._childOpen>ul>li {
		height: auto;
	}

	header .menuBlk nav>ul>li>ul>li>a {
		position: relative;
		display: block;
		padding-bottom: 4px;
		font-size: 14px;
		border-bottom: 1px solid #e2e6eb;
		color: #707070;
		opacity: 0;
		visibility: hidden;
	}

	header .menuBlk nav>ul>li._childOpen>ul>li>a {
		opacity: 1;
		visibility: visible;
	}

	header .menuBlk nav>ul>li>ul>li>a::before {
		content: '';
		position: absolute;
		top: 8px;
		right: 7px;
		transform: rotate(45deg);
		width: 8px;
		height: 8px;
		border: 0px;
		border-top: solid 1px #9AB2D8;
		border-right: solid 1px #9AB2D8;
	}

	header .menuBlk nav>ul>li._contact {
		border-bottom: none;
	}

	header .menuBlk nav>ul>li._contact>a {
		margin: auto;
	}

	header .menuBlk nav>ul>li._contact._tel {
		margin: 40px 0 0;
	}

	header .menuBlk nav>ul>li._contact._tel>a {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 15px 0;
		flex-flow: wrap;
		border: 1px solid;
		font-size: 26px;
		gap: 5px 0;
		line-height: 23px;
		background: unset;
		font-weight: 500;
	}

	header .menuBlk nav>ul>li._contact._tel>a>._num {
		padding: 0 0 0 20px;
		background-image: url(./images/icon_tel_black.webp);
		background-repeat: no-repeat;
		background-position: left top 100%;
		background-size: 16px;
	}

	header .menuBlk nav>ul>li._contact._tel>a>._txt {
		width: 100%;
		font-size: 13px;
		text-align: center;
		color: black;
		line-height: 1;
		margin: 7px 0 0;
	}

	header .menuBlk nav>ul>li._contact._tel>a>img {
		height: 20px;
		margin: 0 2px 0 0;
	}

	header .menuBlk nav>ul>li._contact._mail {
		margin: 15px auto 0;
	}

	header .menuBlk nav>ul>li._contact._mail>a {
		padding: 15px 0;
		box-shadow: 0 3px 6px rgb(0 0 0 / 18%);
		height: auto;
	}

	header .menuBlk nav>ul>li._contact._mail>a>img {
		height: 20px;
	}

	header .menuBlk nav>ul>li._contact._mail>a>span {
		padding: 27px 0 0;
		background-position: left 50% top;
		background-size: 25px;
	}

	header .mbMenuBlk {
		position: relative;
		height: 100%;
		aspect-ratio: 1/1;
		cursor: pointer;
	}

	header .mbMenuBlk::before {
		content: 'MENU';
		color: #363A4D;
		font-size: 10px;
		position: absolute;
		top: 8px;
		left: 50%;
		transform: translate(-50%, 0%);
	}

	header .mbMenuBdrBlk,
	.mbMenuBdrBlk span {
		display: inline-block;
		box-sizing: border-box;
	}

	header .mbMenuBdrBlk {
		position: absolute;
		top: 55%;
		left: 50%;
		width: 25px;
		height: auto;
		transform: translate(-50%, -50%);
	}

	header .mbMenuBdrBlk:focus:not(:focus-visible) {
		outline: none;
	}

	header .mbMenuBdrBlk::before,
	.mbMenuBdrBlk::after {
		content: '';
	}

	header .mbMenuBdrBlk::before,
	.mbMenuBdrBlk::after,
	.mbMenuBdrBlk span {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 1px;
		background: #333;
		border-radius: 4px;
		transition: .2s;
	}

	header .mbMenuBdrBlk::before {
		transform: rotate(45deg) scaleX(0);
	}

	header .mbMenuBdrBlk::after {
		transform: rotate(-45deg) scaleX(0);
	}

	header .mbMenuBdrBlk span:nth-of-type(1) {
		top: -8px;
		transition-delay: .2s;
	}

	header .mbMenuBdrBlk span:nth-of-type(2) {
		top: 0px;
		transition-delay: .2s;
	}

	header .mbMenuBdrBlk span:nth-of-type(3) {
		top: 8px;
		transition-delay: .2s;
	}

	header._menuOpen .mbMenuBdrBlk::before {
		transform: rotate(45deg) scaleX(1);
		transition-delay: .2s;
	}

	header._menuOpen .mbMenuBdrBlk::after {
		transform: rotate(-45deg) scaleX(1);
		transition-delay: .2s;
	}

	header._menuOpen .mbMenuBdrBlk span {
		transform: scaleX(0);
		transition-delay: 0s;
	}

	header .menuOtherBlk {
		justify-content: center;
	}

	header .menuSearchBlk {}

	header .menuSearchBlk #searchProductsForm,
	header .menuSearchBlk #searchTechnicalInfoForm {
		display: none;
	}

	header .menuSearchBlk form {
		display: flex;
		height: 40px;
		border: 1px solid #c2c6cb;
		border-radius: 30px;
		background: #fff;
	}

	header .menuSearchBlk form input[type="text"] {
		width: 260px;
		padding: 0 0 0 15px;
		border-radius: 18px 0 0 18px;
	}

	header .menuSearchBlk form input:focus {
		outline: none;
	}

	header .menuSearchBlk form button {
		display: grid;
		place-items: center;
		width: 45px;
		padding-right: 5px;
	}

	header .menuSearchBlk form button>* {
		translate(-50%, -50%);
		color: var(--newsColor);
	}

	header .mbLangBlk {
		position: absolute;
		top: 50%;
		right: 68px;
		transform: translate(0%, -50%);
		display: flex !important;
		overflow: hidden;
		width: 74px;
		height: 35px;
		border-radius: 5px;
	}

	header .mbLangBlk button {
		display: grid;
		place-items: center;
		flex: 1;
		height: 100%;
		font-size: 13px;
		color: var(--newsColor);
		background: #F5F6F8;
		transition: all .3s;
	}

	header .mbLangBlk button:hover {
		background: var(--newsColor);
		color: #fff;
	}

	header .mbLangBlk button._active {
		background: var(--newsColor);
		color: #fff;
	}
}

/*====================================

4. Main

====================================*/
main {
	margin: var(--headerH, 80px) 0 0;
}

@media screen and (max-width: 1024px) {
	main {
		margin: var(--headerH, 55px) 0 0;
	}
}

/*====================================

5. Footer

====================================*/
footer {
	background: linear-gradient(#17a6f2 0%, #267dc7 49.26%, #2f53a5 100%);
	padding: 60px 0;
}

footer .inner {}

footer .topBlk {
	gap: 60px;
}

footer .infoBlk {
	width: min(280px, 100%);
}

footer .infoLogoBlk {}

footer .infoLogoBlk a {}

footer .infoLogoBlk img {
	width: 280px;
}

footer .infoTextBlk {
	margin: 20px 0 0;
}

footer .infoTextBlk p {
	font-size: 14px;
	line-height: 25px;
	color: #fff;
}

footer .infoTextBlk p a {}

footer .infoMarkBlk {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 13px;
	margin: 30px 0 0;
}

footer .infoMarkBlk>div {}

footer .infoMarkBlk>div:nth-child(5) {
	grid-area: 2 / 2 / 3 / 4;
	height: 56px;
}

footer .infoMarkBlk img {
	height: 100%;
}

footer .infoMarkBlk>div:nth-child(1) img,
footer .infoMarkBlk>div:nth-child(2) img,
footer .infoMarkBlk>div:nth-child(3) img,
footer .infoMarkBlk>div:nth-child(4) img {
	width: 100%;
}

footer .infoMarkBlk>div:nth-child(5) img {
	width: auto;
}

footer .menuBlk {
	flex: 1;
	gap: 25px;
}

footer .menuBlk>ul {
	display: grid;
	grid-template-columns: repeat(3, max-content);
	flex: 1;
	gap: 35px 25px;
}

footer .menuBlk>ul._recruit {
	grid-template-columns: repeat(1, 1fr);
}

footer .menuBlk>ul>li {}

footer .menuBlk a {
	color: #fff;
	text-wrap: nowrap;
}

footer .menuBlk>ul>li>a {
	position: relative;
	display: block;
	padding: 0 0 4px;
	white-space: nowrap;
}

@media screen and (min-width: 1025px) {
	footer .menuBlk>ul>li>a:hover {
		opacity: 1;
	}
}

footer .menuBlk>ul>li>a::before {
	content: '';
	position: absolute;
	top: unset;
	transform: unset;
	bottom: 0;
	left: 0;
	height: 1px;
	width: 100%;
	background: #14B6FF;
}

footer .menuBlk>ul>li>a::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	height: 1px;
	width: 0%;
	background: #fff;
	transition: .5s;
}

footer .menuBlk>ul>li>a:hover::after {
	left: 0;
	right: unset;
	width: 100%;
	background: #a1bfe6;
}

footer .menuBlk>ul>li>ul {
	display: grid;
	gap: 5px;
	margin: 15px 0 0;
}

footer .menuBlk>ul._recruit>li>ul {
	grid-auto-flow: column;
	grid-template-rows: repeat(10, auto);
	gap: 5px 25px;
}

footer .menuBlk>ul>li>ul>li {}

footer .menuBlk>ul>li>ul>li._child {}

footer .menuBlk>ul>li>ul>li>a {
	font-size: 13px;
}

footer .menuBlk>ul>li>ul>li>a._child {
	position: relative;
	padding-left: 9px;
}

footer .menuBlk>ul>li>ul>li>a._child::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0, -50%);
	display: inline-block;
	width: 5px;
	height: 1px;
	background: #fff;
}

footer .copyrightBlk {
	margin: 75px 0 0;
}

footer .copyrightBlk p {
	font-size: 10px;
	color: #fff;
}

footer .recaptchaBlk {}

@media screen and (max-width: 1024px) {
	footer {
		margin: 0 0 60px;
		padding: 50px 0 30px;
	}

	footer .inner {}

	footer .topBlk {
		justify-content: center;
	}

	footer .infoBlk {
		width: min(300px, 100%);
	}

	footer .infoLogoBlk {
		text-align: center;
	}

	footer .infoLogoBlk a {}

	footer .infoLogoBlk img {
		width: 100%;
	}

	footer .infoTextBlk {
		display: table;
		margin: 20px auto 0;
	}

	footer .infoTextBlk p {
		text-align: center;
	}

	footer .infoTextBlk p a {}

	footer .infoMarkBlk {
		gap: 7px;
		width: min(250px, 100%);
		margin: 20px auto 0;
	}

	footer .infoMarkBlk>div {}

	footer .infoMarkBlk>div:nth-child(5) {
		width: 115px;
		height: 52px;
	}

	footer .infoMarkBlk img {
		width: 100%;
	}

	footer .menuBlk {
		display: none;
	}

	footer .copyrightBlk {
		margin: 40px 0 0;
	}

	footer .copyrightBlk p {}

	footer .recaptchaBlk {
		width: 80%;
	}
}

/*====================================

6. Common Style

====================================*/
/*
6.1 Single
====================================*/
.cmn_bgColor {
	background-color: var(--contentsBg);
}

.cmn_outer {
	padding: 90px 0;
}

.cmn_inner {
	width: var(--pcInnerWidth);
	margin: auto;
}

.cmn_inner._variable {
	width: var(--pcInnerWidthVariable);
	padding: 0 50px;
}

.cmn_inner2 {
	width: var(--pcInnerWidthVariable);
	padding: 0 50px;
}

/*link*/
.cmn_link1 {
	position: relative;
	overflow: hidden;
	display: inline-grid;
	place-items: center;
	width: min(360px, 100%);
	height: 68px;
	color: #fff;
	font-size: 17px;
	border-radius: 50px;
	background: linear-gradient(#0ba3f4 0%, #0ba3f4 31.03%, #1b4fc4 100%);
}

.cmn_link1._modification1 {
	width: min(565px, 100%);
	font-size: 20px;
	border-radius: 12px;
}

.cmn_link1._modification1::before {
	background: #1b5fb2;
}

.cmn_link1._modification1._recruit {
	position: relative;
	z-index: 1;
	overflow: hidden;
	background: var(--mainColor);
}

.cmn_link1._modification1._recruit::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: linear-gradient(#53C3FF 0%, #007AD3 100%);
	opacity: 0;
	transition: all .3s;
}

.cmn_link1._modification1._entry {
	height: 79px;
	font-size: 23px;
}

.cmn_link1._modification1._entry._flesh {}

.cmn_link1._modification1._entry._carrier {
	background: linear-gradient(#046be2 0%, #00397b 100%);
}

@media screen and (min-width: 1025px) {
	.cmn_link1:hover {
		opacity: 1;
	}

	.cmn_link1._modification1._recruit:hover::before {
		opacity: 1;
	}
}

.cmn_link1 span {
	position: relative;
	padding-right: 27px;
}

.cmn_link1 span::before,
.cmn_link1 span::after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	display: inline-block;
	background: #fff;
	transition: all .3s;
}

@media screen and (min-width: 1025px) {

	.cmn_link1:hover span::before,
	.cmn_link1:hover span::after {
		transform: translate(7px, -50%);
	}
}

.cmn_link1 span::before {
	right: 0;
	width: 7px;
	height: 12px;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.cmn_link1 span::after {
	right: 7px;
	width: 10px;
	height: 2px;
}

.cmn_link2 {
	position: relative;
	z-index: 1;
	overflow: hidden;
	display: block;
	border-radius: 20px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.cmn_link2::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	display: inline-block;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(5, 32, 70, 0.6) 0%, rgba(4, 33, 72, 0.5) 25.12%, rgba(84, 99, 119, 0) 100%);
	transition: .3s;
}

.cmn_link2::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
	display: inline-block;
	width: 100%;
	height: 100%;
	transition: all .3s;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.cmn_link2>span {
	display: inline-block;
	padding: 30px 0 5px 42px;
	color: #fff;
	font-size: 25px;
	font-weight: 600;
	border-bottom: 1px solid #fff;
	transition: .3s;
}

.cmn_link2>span>span {
	padding-right: 40px;
	background-image: url(./images/icon_arrow01_bgWhite.svg);
	background-repeat: no-repeat;
	background-position: right top 53%;
	background-size: 26px;
}

@media screen and (min-width: 1025px) {
	.cmn_link2:hover {
		opacity: 1;
	}

	.cmn_link2:hover::before {
		opacity: 0;
	}

	.cmn_link2:hover::after {
		transform: scale(1.04);
	}

	.cmn_link2:hover>span {
		color: var(--textColor);
		border-bottom: 1px solid var(--textColor);
		text-shadow: 0px 0px 9px #fff, 0px 0px 9px #fff;
	}

	.cmn_link2:hover>span>span {
		background-image: url(./images/icon_arrow01_bgBlue.svg);
	}
}

.cmn_link3 {
	padding: 43px 0;
	font-size: 25px;
	line-height: 50px;
	text-align: center;
	color: #1b5fb2;
	font-weight: 600;
	border-radius: 20px;
	box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.16);
	background: #fff;
}

@media screen and (min-width: 1025px) {
	.cmn_link3:hover {
		opacity: 1;
		box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.4);
	}
}

/*link hover*/
@media screen and (min-width: 1025px) {
	.cmn_linkHoverShine {
		position: relative !important;
		outline: none;
		overflow: hidden;
	}

	.cmn_linkHoverShine::before {
		content: '';
		position: absolute !important;
		top: 0 !important;
		bottom: initial !important;
		left: -75%;
		z-index: 1;
		transform: skewX(-25deg) !important;
		width: 50% !important;
		height: 100% !important;
		background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%) !important;
	}

	.cmn_linkHoverShine:hover::before {
		animation: css_hoverShine 0.6s;
	}
}

/*grid*/
.cmn_grid1 {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(2, 1fr);
}

/*head*/
.cmn_head1 {
	font-size: 30px;
	text-align: center;
}

.cmn_head2 {
	position: relative;
	display: inline-block;
	font-size: 30px;
	font-weight: 700;
}

.cmn_head2::before {
	content: '';
	position: absolute;
	top: 50%;
	right: -77px;
	transform: translate(0%, -50%);
	display: inline-block;
	width: 50px;
	height: 4px;
	background: linear-gradient(90deg, #212c3c 0%, #212c3c 50%, #a1b9de 50%, #a1b9de 100%);
}

.cmn_head3 {
	font-size: 32px;
	line-height: 53px;
	text-align: center;
}

.cmn_head4 {
	padding-bottom: 5px;
	font-size: 25px;
	border-bottom: 1px solid #99bfef;
}

/*title*/
.cmn_title1 {
	font-weight: 600;
	font-size: 24px;
	line-height: 40px;
}

/*text*/
.cmn_text1 {
	font-size: 18px;
	line-height: 33px;
	font-weight: 600;
	text-align: center;
}

@media screen and (max-width: 1024px) {
	.cmn_outer {
		padding: 60px 0 !important;
	}

	.cmn_inner {
		width: 92%;
		max-width: var(--maxWidthM);
	}

	.cmn_inner._variable {
		width: 92%;
		padding: initial;
	}

	.cmn_inner2 {}

	/*link*/
	.cmn_link1 {
		height: 55px;
		width: 100%;
		max-width: var(--mbBtnMaxW);
		font-size: 14px;
	}

	.cmn_link1._modification1 {
		font-size: 18px;
		border-radius: 5px;
	}

	.cmn_link1._modification1._recruit {}

	.cmn_link1._modification1._recruit::before {}

	.cmn_link1._modification1._entry {
		height: 55px;
		font-size: 18px;
	}

	.cmn_link1._modification1._entry._flesh {}

	.cmn_link1._modification1._entry._carrier {}

	.cmn_link1 span {
		padding-right: 23px;
	}

	.cmn_link1 span::before,
	.cmn_link1 span::after {}

	.cmn_link1 span::before {
		width: 6px;
		height: 10px;
	}

	.cmn_link1 span::after {
		right: 6px;
	}

	.cmn_link2 {
		border-radius: 10px;
	}

	.cmn_link2::before {}

	.cmn_link2>span {
		padding: 20px 0 5px 20px;
		font-size: 18px;
	}

	.cmn_link2>span>span {
		padding-right: 30px;
		background-position: right top 60%;
		background-size: 18px;
	}

	.cmn_link3 {
		padding: 30px 0;
		font-size: 20px;
		border-radius: 10px;
	}

	/*grid*/
	.cmn_grid1 {
		gap: 15px;
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	/*head*/
	.cmn_head1 {
		font-size: 20px;
	}

	.cmn_head2 {
		font-size: 20px;
		line-height: 1.3;
	}

	.cmn_head2::before {
		right: -55px;
		height: 3px;
		width: 40px;
	}

	.cmn_head3 {
		font-size: 20px;
		line-height: inherit;
	}

	.cmn_head4 {
		padding-bottom: 6px;
		font-size: 20px;
		line-height: 1.4;
	}

	#carbonNeutral .cmn_head4,
	#surroundingPerformance .cmn_head4,
	#welfareNurturing .cmn_head4,
	#society .cmn_head4 {
		font-size: 18px;
	}

	/*title*/
	.cmn_title1 {
		font-weight: 700;
		font-size: 24px;
		line-height: inherit;
	}

	/*text*/
	.cmn_text1 {
		font-size: 16px;
		line-height: inherit;
		font-weight: 700;
	}
}

/*
6.2 Section
====================================*/
/* table */
.cmn_table>dl {
	border: 1px solid #d7dce2;
	border-left: initial;
	border-right: initial;
	background: white;
}

.cmn_table>dl>div {
	display: flex;
	flex-flow: wrap;
	border-bottom: 1px solid #d7dce2;
}

.cmn_table>dl>div:last-child {
	border-bottom: transparent;
}

.cmn_table>dl>div>* {
	padding: 22px 42px;
}

.cmn_table>dl>div>dt {
	width: 225px;
	font-weight: 500;
	background: var(--tableItemBg);
}

.cmn_table>dl>div>dd {
	flex: 1;
}

.cmn_table>dl>div>dd a {
	color: var(--linktextColor);
}

.cmn_table>dl>div>dd a[href^="tel"] {
	color: inherit;
}

@media screen and (max-width: 1024px) {
	.cmn_table>dl {
		border: 1px solid #d7dce2;
		background: white;
	}

	.cmn_table>dl>div {
		display: flex;
		flex-flow: wrap;
		border-bottom: 1px solid #d7dce2;
	}

	.cmn_table>dl>div:last-child {
		border-bottom: transparent;
	}

	.cmn_table>dl>div>* {
		padding: 20px 15px;
		line-height: 24px;
		font-size: 14px;
	}

	.cmn_table>dl>div>dt {
		width: 100%;
		padding: 15px 15px;
		border-right: transparent;
	}

	.cmn_table>dl>div>dd {
		flex: unset;
		width: 100%;
	}

	.cmn_table>dl>div>dd a {}

	.cmn_table>dl>div>dd a[href^="tel"] {}
}

/* top1 */
.cmn_top1 {
	height: 190px;
	padding: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

#topMessage .cmn_top1 {
	background-image: url(./images/topMessage_top_bg01.webp);
}

#company .cmn_top1 {
	background-image: url(./images/company_top_bg01.webp);
}

#gasStation .cmn_top1 {
	background-image: url(./images/gasStation_top_bg01.webp);
}

#sustainability .cmn_top1 {
	background-image: url(./images/sustainability_top_bg01.webp);
}

#carbonNeutral .cmn_top1 {
	background-image: url(./images/carbonNeutral_top_bg01.webp);
}

#sdgs .cmn_top1 {
	background-image: url(./images/sdgs_top_bg01.webp);
}

#surroundingPerformance .cmn_top1 {
	background-image: url(./images/surroundingPerformance_top_bg01.webp);
}

#society .cmn_top1 {
	background-image: url(./images/society_top_bg01.webp);
}

#welfareNurturing .cmn_top1 {
	background-image: url(./images/welfareNurturing_top_bg01.webp);
}

#productsInfo .cmn_top1,
#productsSearch .cmn_top1,
#products .cmn_top1 {
	background-image: url(./images/products_top_bg01.webp);
}

#technicalInfo .cmn_top1 {
	background-image: url(./images/technicalInfo_top_bg01.webp);
}

#productsDevelopment .cmn_top1,
#reserch .cmn_top1 {
	background-image: url(./images/productsDevelopment_top_bg01.webp);
}

#searchResult .cmn_top1 {
	height: 92px;
	background: var(--contentsBg);
}

#companyIntroduction .cmn_top1,
#keyword .cmn_top1,
#youthYell .cmn_top1,
#welfare .cmn_top1,
#jobIntroduction .cmn_top1,
#employeeTraining .cmn_top1,
#interview .cmn_top1,
#faq .cmn_top1,
#flow .cmn_top1 {
	background-image: url(./images/recruitCommon_top_bg01.webp);
}

#requirements._flesh .cmn_top1 {
	background: var(--recruitFleshColor);
}

#requirements._hsgraduate .cmn_top1,
#forParent .cmn_top1 {
	background: var(--recruitHSGraduateColor);
}

#requirements._carrier .cmn_top1 {
	background: var(--recruitCareerColor);
}

#contact .cmn_top1,
#thanks .cmn_top1 {
	background: linear-gradient(#0ba3f4 0%, #1473d9 57.14%, #1b4fc4 100%);
}

#contact .cmn_top1 {
	background: linear-gradient(#0ba3f4 0%, #1473d9 57.14%, #1b4fc4 100%);
}

#info .cmn_top1 {
	background-image: url(./images/info_top_bg01.webp);
}

.cmn_top1 .inner {
	height: 100%;
}

.cmn_top1 .blk {
	height: 100%;
}

.cmn_top1 .headBlk {
	display: flex;
	align-items: center;
	height: 100%;
}

.cmn_top1 .head {
	font-size: 30px;
	font-weight: 700;
}

#searchResult .cmn_top1 .head {
	font-size: 23px;
}

#welfareNurturing .cmn_top1 .head,
#society .cmn_top1 .head,
#society .cmn_top1 .head,
#productsDevelopment .cmn_top1 .head,
#reserch .cmn_top1 .head {
	text-shadow: 0px 0px 9px #fff, 0px 0px 9px #fff;
}

.cmn_top1 .head._white {
	color: white;
}

.cmn_top1 .head._shadow {
	text-shadow: 0px 1px 10px #00021a;
}

@media screen and (max-width: 1024px) {
	.cmn_top1 {
		height: 120px;
		padding: 0 !important;
	}

	#topMessage .cmn_top1 {}

	#company .cmn_top1 {}

	#sustainability .cmn_top1 {}

	#productsInfo .cmn_top1,
	#productsSearch .cmn_top1,
	#products .cmn_top1 {}

	#technicalInfo .cmn_top1 {}

	#productsDevelopment .cmn_top1,
	#reserch .cmn_top1 {}

	#searchResult .cmn_top1 {}

	#companyIntroduction .cmn_top1,
	#keyword .cmn_top1,
	#youthYell .cmn_top1,
	#welfare .cmn_top1,
	#jobIntroduction .cmn_top1,
	#employeeTraining .cmn_top1,
	#interview .cmn_top1,
	#faq .cmn_top1,
	#flow .cmn_top1 {}

	#requirements._flesh .cmn_top1 {}

	#requirements._hsgraduate .cmn_top1,
	#forParent .cmn_top1 {}

	#requirements._carrier .cmn_top1 {}

	#contact .cmn_top1,
	#thanks .cmn_top1 {}

	#contact .cmn_top1 {}

	#info .cmn_top1 {}

	.cmn_top1 .inner {}

	.cmn_top1 .blk {}

	.cmn_top1 .headBlk {}

	.cmn_top1 .head {
		font-size: 22px;
	}

	#searchResult .cmn_top1 .head {
		font-size: 20px;
	}

	#productsDevelopment .cmn_top1 .head,
	#reserch .cmn_top1 .head {}

	.cmn_top1 .head._white {}

	.cmn_top1 .head._shadow {}
}

/* scrollLink1 */
.cmn_scrollLink1 {
	padding: 90px 0 0;
}

.cmn_scrollLink1 .inner {}

.cmn_scrollLink1 .blk {}

.cmn_scrollLink1 .mainBlk {}

#company .cmn_scrollLink1 .mainBlk {
	gap: 21px;
	justify-content: flex-start;
}

#gasStation .cmn_scrollLink1 .mainBlk {
	justify-content: center;
	gap: 12px;
}

#sustainability .cmn_scrollLink1 .mainBlk {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 9px 12px;
}

#carbonNeutral .cmn_scrollLink1 .mainBlk {
	justify-content: center;
	gap: 9px 12px;
}

#sdgs .cmn_scrollLink1 .mainBlk {
	justify-content: center;
	gap: 9px 12px;
}

#surroundingPerformance .cmn_scrollLink1 .mainBlk {
	gap: 12px;
}

#welfareNurturing .cmn_scrollLink1 .mainBlk {
	gap: 12px;
	padding: 0 20px;
}

#society .cmn_scrollLink1 .mainBlk {
	justify-content: center;
	gap: 9px 12px;
}

#faq .cmn_scrollLink1 .mainBlk,
#flow .cmn_scrollLink1 .mainBlk {
	justify-content: center;
	gap: 9px 12px;
}

#forParent .cmn_scrollLink1 .mainBlk {
	justify-content: center;
	gap: 9px 22px;
}

#contact .cmn_scrollLink1 .mainBlk {
	justify-content: center;
	gap: 9px 37px;
}

.cmn_scrollLink1 .mainBlk a {
	padding: 6px 0;
	text-align: center;
	border-radius: 7px;
	background: #eff6fc;
}

#gasStation .cmn_scrollLink1 .mainBlk a {
	width: min(360px, 100%);
}

#sustainability .cmn_scrollLink1 .mainBlk a {
	padding: 6px 25px;
	text-align: left;
}

#carbonNeutral .cmn_scrollLink1 .mainBlk a,
#society .cmn_scrollLink1 .mainBlk a {
	padding: 6px 25px;
	min-width: 260px;
}

#sdgs .cmn_scrollLink1 .mainBlk a {
	padding: 6px 25px;
	min-width: 174px;
}

#surroundingPerformance .cmn_scrollLink1 .mainBlk a {
	flex-grow: 1;
}

#welfareNurturing .cmn_scrollLink1 .mainBlk a {
	flex-grow: 1;
}

#company .cmn_scrollLink1 .mainBlk a {
	width: min(180px, 100%);
}

#faq .cmn_scrollLink1 .mainBlk a,
#flow .cmn_scrollLink1 .mainBlk a {
	width: min(215px, 100%);
}

#forParent .cmn_scrollLink1 .mainBlk a {
	width: min(260px, 100%);
}

#contact .cmn_scrollLink1 .mainBlk a {
	width: min(320px, 100%);
}

.cmn_scrollLink1 .mainBlk a span {
	position: relative;
	padding: 0 24px 0 0;
}

#sustainability .cmn_scrollLink1 .mainBlk a span {
	display: block;
	padding: 0;
}

.cmn_scrollLink1 .mainBlk a span::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0%, -50%) rotate(90deg);
	display: inline-block;
	width: 15px;
	height: 15px;
	background-image: url(./images/icon_arrow01_bgBlue.svg);
	background-repeat: no-repeat;
	background-position: right top 50%;
	background-size: 15px;
}

#sustainability .cmn_scrollLink1 .mainBlk a span::before {}

@media screen and (max-width: 1024px) {
	.cmn_scrollLink1 {
		padding: 60px 0 0 !important;
	}

	.cmn_scrollLink1 .inner {}

	.cmn_scrollLink1 .blk {}

	.cmn_scrollLink1 .mainBlk {
		display: grid !important;
		grid-template-columns: repeat(auto-fit, minmax(165px, 1fr)) !important;
		gap: 5px !important;
		max-width: 600px !important;
		margin: auto !important;
	}

	#company .cmn_scrollLink1 .mainBlk {}

	#sustainability .cmn_scrollLink1 .mainBlk {}

	#carbonNeutral .cmn_scrollLink1 .mainBlk {
		justify-content: initial;
	}

	#sdgs .cmn_scrollLink1 .mainBlk {}

	#surroundingPerformance .cmn_scrollLink1 .mainBlk {}

	#welfareNurturing .cmn_scrollLink1 .mainBlk {
		padding: initial;
	}

	#faq .cmn_scrollLink1 .mainBlk,
	#flow .cmn_scrollLink1 .mainBlk {}

	#forParent .cmn_scrollLink1 .mainBlk {}

	#contact .cmn_scrollLink1 .mainBlk {}

	.cmn_scrollLink1 .mainBlk a {
		height: 47px;
		padding: 0 !important;
		text-align: left !important;
		border-radius: 5px;
		font-size: 14px;
	}

	#sustainability .cmn_scrollLink1 .mainBlk a {}

	#carbonNeutral .cmn_scrollLink1 .mainBlk a,
	#society .cmn_scrollLink1 .mainBlk a {
		min-width: initial;
	}

	#surroundingPerformance .cmn_scrollLink1 .mainBlk a {}

	#welfareNurturing .cmn_scrollLink1 .mainBlk a {}

	#company .cmn_scrollLink1 .mainBlk a {
		width: 100%;
	}

	#faq .cmn_scrollLink1 .mainBlk a,
	#flow .cmn_scrollLink1 .mainBlk a {}

	#forParent .cmn_scrollLink1 .mainBlk a,
	#contact .cmn_scrollLink1 .mainBlk a {
		width: 100%;
	}

	.cmn_scrollLink1 .mainBlk a span {
		display: flex !important;
		align-items: center;
		height: 100%;
		padding: 0 30px 0 10px !important;
		line-height: 1.3;
		font-size: 13px;
	}

	#sustainability .cmn_scrollLink1 .mainBlk a span {}

	.cmn_scrollLink1 .mainBlk a span::before {
		right: 9px;
	}

	#sustainability .cmn_scrollLink1 .mainBlk a span::before {}
}

/*====================================

7. module

====================================*/
/*fixedLink*/
.mod_fixedLink1 {
	position: fixed;
	top: calc(var(--headerH) + 11%);
	right: 0;
	z-index: 1;
	display: grid;
	gap: 7px;
}

.mod_fixedLink1 a {
	display: grid;
	place-content: center;
	color: #fff;
	width: 50px;
	min-height: 182px;
	border-radius: 10px 0px 0px 10px;
	font-size: 17px;
	letter-spacing: 3px;
	padding: 20px 0;
}

.mod_fixedLink1 a._requirements {
	min-height: 133px;
}

.mod_fixedLink1 a._recruit {
	background: #53B0FF;
}

@media screen and (min-width: 1025px) {
	.mod_fixedLink1 a._recruit:hover {
		opacity: 1;
		background: #2499FD;
	}
}

.mod_fixedLink1 a._requirements {
	background: var(--recruitFleshColor);
}

.mod_fixedLink1 a._hsgraduate {
	background: var(--recruitHSGraduateColor);
}

.mod_fixedLink1 a._carrier {
	background: var(--recruitCareerColor);
}

.mod_fixedLink1 a span {
	padding: 30px 0 0;
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 20px;
}

.mod_fixedLink1 a._requirements span {
	padding: 0;
}

.mod_fixedLink1 a._recruit span {
	background-image: url(./images/icon_man01_white.svg);
}

@media screen and (max-width: 1024px) {
	.mod_fixedLink2 {
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: 99999;
		height: 60px;
		display: flex !important;
		width: 100%;
	}

	.mod_fixedLink2 a {
		flex: 1;
		display: grid;
		place-content: center;
		font-size: 13px;
		padding-top: 6px;
		color: #fff;
	}

	.mod_fixedLink2 a._contact {
		background: var(--mailBtnBg);
	}

	.mod_fixedLink2 a._entry {
		background: var(--recruitColor);
	}

	.mod_fixedLink2 a._recruit {
		background: #0251ac;
	}

	.mod_fixedLink2 a._flesh {
		background: var(--recruitFleshColor);
	}

	.mod_fixedLink2 a._hsgraduate {
		background: var(--recruitHSGraduateColor);
	}

	.mod_fixedLink2 a._carrier {
		background: var(--recruitCareerColor);
	}

	.mod_fixedLink2 a._contact span,
	.mod_fixedLink2 a._entry span {
		background-image: url(./images/icon_mail01_white.svg);
	}

	.mod_fixedLink2 a._recruit span,
	.mod_fixedLink2 a._requirements span {
		background-image: url(./images/icon_man01_white.svg);
		background-size: 17px;
	}

	.mod_fixedLink2 a span {
		display: inline-block;
		padding-top: 20px;

		background-repeat: no-repeat;
		background-position: center top;
		background-size: 21px;
	}
}

/*screenTopLink*/
.mod_screenTopLink1 {
	position: fixed;
	right: 63px;
	bottom: -63px;
	z-index: 1;
	transition: all .3s;
}

.mod_screenTopLink1._active {
	bottom: 63px;
}

.mod_screenTopLink1 a {
	position: relative;
	z-index: 1;
	display: block;
	width: 57px;
	height: 57px;
	background: #79a6e0;
	opacity: .8;
}

@media screen and (min-width: 1025px) {
	.mod_screenTopLink1 a:hover {
		opacity: 1;
	}
}

.mod_screenTopLink1 a::before {
	content: "";
	position: absolute;
	top: calc(50% + 3px);
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
	display: inline-block;
	width: 12px;
	height: 12px;
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
}

@media screen and (max-width: 1024px) {
	.mod_screenTopLink1 {
		right: 20px;
	}

	.mod_screenTopLink1._active {
		bottom: 80px;
	}

	.mod_screenTopLink1 a {
		width: 45px;
		height: 45px;
	}

	.mod_screenTopLink1 a::before {}
}

/*productsContact*/
.mod_productsContact {
	padding: 140px 0;
}

#searchResult .mod_productsContact {
	display: none;
}

.mod_productsContact .inner {}

.mod_productsContact .blk {
	padding: 50px;
	background-image: url(./images/module_productContact_bg01.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.mod_productsContact .title {
	font-size: 23px;
	color: #fff;
	font-weight: 600;
	text-align: center;
	line-height: initial;
}

.mod_productsContact .linkBlk {
	margin: 20px 0 0;
	text-align: center;
}

.mod_productsContact .linkBlk a {
	position: relative;
	z-index: 1;
	overflow: hidden;
	display: inline-block;
	width: min(334px, 100%);
	font-size: 20px;
	line-height: 50px;
	text-align: center;
	color: var(--textColorBlue);
	border-radius: 12px;
	background: #fff;
}

.mod_productsContact .linkBlk a::before {
	content: '';
	position: absolute;
	top: 0;
	left: -125%;
	z-index: -1;
	transform: skewX(-45deg);
	display: inline-block;
	width: 115%;
	height: 100%;
	background: #2E83E6;
	transition: .5s;
}

@media screen and (min-width: 1025px) {
	.mod_productsContact .linkBlk a:hover {
		color: #fff;
		opacity: 1;
	}

	.mod_productsContact .linkBlk a:hover::before {
		left: -7%;
	}
}

@media screen and (max-width: 1024px) {
	.mod_productsContact {
		padding: 90px 0;
	}

	#searchResult .mod_productsContact {}

	.mod_productsContact .inner {}

	.mod_productsContact .blk {
		padding: 30px 0;
		background-position: right 30% center;
	}

	.mod_productsContact .title {
		font-size: 20px;
	}

	.mod_productsContact .linkBlk {
		margin: 15px 0 0;
	}

	.mod_productsContact .linkBlk a {
		width: min(280px, 100%);
		font-size: 18px;
		font-weight: 600;
		border-radius: 5px;
	}
}

/*productsSearchKeyword*/
.mod_productsSearchKeyword {
	padding: 90px 0 0;
}

.mod_productsSearchKeyword .inner {}

.mod_productsSearchKeyword .blk {
	padding: 58px 70px;
	border-radius: 20px;
	background: linear-gradient(#f4f9ff 0%, #c4def8 100%);
}

#technicalInfo .mod_productsSearchKeyword .blk {
	background: linear-gradient(#f0f7fa 0%, #cce1eb 100%);
}

.mod_productsSearchKeyword .headBlk {}

.mod_productsSearchKeyword .head {
	font-size: 25px;
}

.mod_productsSearchKeyword .mainBlk {
	margin: 30px 0 0;
}

.mod_productsSearchKeyword .mainFormBlk {
	/* padding: 0 0 20px; */
	/* border-bottom: 1px solid var(--mainColor); */
}

#technicalInfo .mod_productsSearchKeyword .mainFormBlk {
	/* border-bottom: 1px solid var(--textColorBlue); */
}

#productsSearch #searchTechnicalInfoForm,
#products #searchTechnicalInfoForm {
	display: none;
}

#technicalInfo #searchProductsForm {
	display: none;
}

.mod_productsSearchKeyword .mainFormBlk form {
	overflow: hidden;
	display: flex;
	height: 66px;
	border-radius: 15px;
	border: 2px solid var(--mainColor);
	background: #fff;
}

#technicalInfo .mod_productsSearchKeyword .mainFormBlk form {
	border: 2px solid var(--textColorBlue);
}

.mod_productsSearchKeyword .mainFormBlk form input[type="text"] {
	width: calc(100% - 162px);
	padding: 0 25px;
	font-size: 18px;
	border-radius: 18px 0 0 18px;
}

.mod_productsSearchKeyword .mainFormBlk form input:focus {
	outline: none;
}

.mod_productsSearchKeyword .mainFormBlk form button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 162px;
	padding-left: 8px;
	font-size: 23px;
	color: #fff;
	background: var(--newsColor);
	transition: all .3s;
}

#technicalInfo .mod_productsSearchKeyword .mainFormBlk form button {
	background: #416EB2;
}

@media screen and (min-width: 1025px) {

	#productsSearch .mod_productsSearchKeyword .mainFormBlk form button:hover,
	#products .mod_productsSearchKeyword .mainFormBlk form button:hover {
		background: #2470CE;
	}

	#technicalInfo .mod_productsSearchKeyword .mainFormBlk form button:hover {
		background: #11418B;
	}
}

.mod_productsSearchKeyword .mainFormBlk form button>i {
	font-size: 30px;
	transform: translate(-12px, 2px);
}

.mod_productsSearchKeyword #searchAllFrom {
	display: none;
}

.mod_productsSearchKeyword .mainFormDesc {
	margin: 14px 0 0;
	font-size: 15px;
	line-height: inherit;
}

.mod_productsSearchKeyword .mainWordBlk {
	gap: 12px 8px;
	justify-content: center;
	padding: 20px 0 0;
}

.mod_productsSearchKeyword .mainWordBlk>* {
	padding: 0 32px;
	font-size: 15px;
	line-height: 36px;
	text-align: center;
	color: var(--textColorBlue2);
	border-radius: 20px;
	border: 1px solid #a1b9de;
	box-shadow: 0px 2px 5px rgba(4, 15, 41, 0.16);
	background: #fff;
	transition: .3s;
}

@media screen and (min-width: 1025px) {
	.mod_productsSearchKeyword .mainWordBlk>*:hover {
		color: #fff;
		background: var(--mainColor);
	}

	#technicalInfo .mod_productsSearchKeyword .mainWordBlk>*:hover {
		color: #fff;
		background: #416EB2;
	}
}

@media screen and (max-width: 1024px) {
	.mod_productsSearchKeyword {
		padding: 60px 0 0 !important;
	}

	.mod_productsSearchKeyword .inner {}

	.mod_productsSearchKeyword .blk {
		padding: 25px 15px;
		border-radius: 10px;
	}

	#technicalInfo .mod_productsSearchKeyword .blk {}

	.mod_productsSearchKeyword .headBlk {}

	.mod_productsSearchKeyword .head {
		font-size: 20px;
	}

	.mod_productsSearchKeyword .mainBlk {
		margin: 15px 0 0;
	}

	.mod_productsSearchKeyword .mainFormBlk {}

	#technicalInfo .mod_productsSearchKeyword .mainFormBlk {}

	#productsSearch #searchTechnicalInfoForm,
	#products #searchTechnicalInfoForm {}

	#technicalInfo #searchProductsForm {}

	.mod_productsSearchKeyword .mainFormBlk form {
		height: 50px;
		border-radius: 10px;
	}

	#technicalInfo .mod_productsSearchKeyword .mainFormBlk form {}

	.mod_productsSearchKeyword .mainFormBlk form input[type="text"] {
		width: calc(100% - 50px);
		padding: 0 15px;
		border-radius: 10px 0 0 10px;
		font-size: 16px;
	}

	.mod_productsSearchKeyword .mainFormBlk form input:focus {}

	.mod_productsSearchKeyword .mainFormBlk form button {
		width: 50px;
		font-size: 18px;
		padding-left: 0;
	}

	#technicalInfo .mod_productsSearchKeyword .mainFormBlk form button {}

	.mod_productsSearchKeyword .mainFormBlk form button>i {
		font-size: 20px;
		transform: initial;
	}

	.mod_productsSearchKeyword #searchAllFrom {}

	.mod_productsSearchKeyword .mainFormDesc {
		font-size: 1rem;
	}

	.mod_productsSearchKeyword .mainWordBlk {
		gap: 8px;
		justify-content: flex-start;
	}

	.mod_productsSearchKeyword .mainWordBlk>* {
		min-width: 99px;
		padding: 0px 13px;
		font-size: 14px;
		line-height: 36px;
	}
}

/*productsDevelopmentContact*/
.mod_productsDevelopmentContact {
	padding: 140px 0;
}

.mod_productsDevelopmentContact .inner {}

.mod_productsDevelopmentContact .blk {
	padding: 50px;
	background: linear-gradient(rgba(38, 131, 239, 0.61) 0%, #00418e 100%);
}

.mod_productsDevelopmentContact .title {
	font-size: 23px;
	color: #fff;
	font-weight: 600;
	text-align: center;
	line-height: initial;
	text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

.mod_productsDevelopmentContact .desc {
	margin: 3px 0 0;
	color: #fff;
	text-align: center;
	text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

.mod_productsDevelopmentContact .linkBlk {
	margin: 22px 0 0;
	text-align: center;
}

.mod_productsDevelopmentContact .linkBlk a {
	display: inline-block;
	width: min(334px, 100%);
	font-size: 20px;
	line-height: 62px;
	text-align: center;
	color: #fff;
	border: solid 2px #fff;
	border-radius: 12px;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
	background: rgb(255 255 255 / .2);
}

@media screen and (min-width: 1025px) {
	.mod_productsDevelopmentContact .linkBlk a:hover {
		opacity: 1;
	}
}

@media screen and (max-width: 1024px) {
	.mod_productsDevelopmentContact {
		padding: 90px 0;
	}

	.mod_productsDevelopmentContact .inner {}

	.mod_productsDevelopmentContact .blk {
		padding: 30px 15px;
	}

	.mod_productsDevelopmentContact .title {
		font-size: 20px;
	}

	.mod_productsDevelopmentContact .desc {
		margin: 10px 0 0;
	}

	.mod_productsDevelopmentContact .linkBlk {}

	.mod_productsDevelopmentContact .linkBlk a {
		width: min(280px, 100%);
		font-size: 18px;
		line-height: 50px;
		border-radius: 5px;
	}
}

/*recruitInterview*/
.mod_recruitPeople {}

.mod_recruitPeople .mainBlk {
	display: block !important;
}

.mod_recruitPeople .mainInterviewBlk {
	display: grid;
	gap: 26px;
	grid-template-columns: repeat(4, 1fr);
}

.mod_recruitPeople .mainInterviewBlk a {
	height: initial !important;
	background: initial !important;
}

.mod_recruitPeople .mainInterviewImgBlk {
	overflow: hidden;
	border-radius: 20px;
}

.mod_recruitPeople .mainInterviewImgBlk img {}

@media screen and (min-width: 1025px) {
	.mod_recruitPeople .mainInterviewBlk a:hover {
		opacity: 1;
	}

	.mod_recruitPeople .mainInterviewBlk a:hover img {
		transform: scale(1.1);
	}
}

.mod_recruitPeople .mainInterviewPosition {
	margin: 15px 0 0;
	text-align: center;
	font-size: 14px;
	line-height: inherit;
}

.mod_recruitPeople .mainInterviewName {
	margin: 5px 0 0;
	text-align: center;
	font-size: 20px;
	line-height: inherit;
}

.mod_recruitPeople .mainTalkBlk {
	overflow: hidden;
	margin: 50px 0 0;
	border-radius: 20px;
}

.mod_recruitPeople .mainTalkBlk a {
	height: 315px !important;
}

.mod_recruitPeople .mainTalkBlk a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(./images/module_recruitPeopleTalk01.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

@media screen and (min-width: 1025px) {
	.mod_recruitPeople .mainTalkBlk a:hover::before {
		transform: scale(1.04);
		opacity: 1;
	}
}

.mod_recruitPeople .mainTalkBlk a>span {
	color: var(--textColor);
	border-bottom: 1px solid var(--textColor);
	text-shadow: 0px 0px 9px #fff, 0px 0px 9px #fff;
}

.mod_recruitPeople .mainTalkBlk a>span>span {
	background-image: url(./images/icon_arrow01_bgBlue05.svg) !important;
}

@media screen and (max-width: 1024px) {
	.mod_recruitPeople {}

	.mod_recruitPeople .mainBlk {}

	.mod_recruitPeople .mainInterviewBlk {
		grid-template-columns: repeat(auto-fill, minmax(159px, 1fr));
		gap: 25px 15px;
	}

	.mod_recruitPeople .mainInterviewBlk a {}

	.mod_recruitPeople .mainInterviewImgBlk {
		border-radius: 10px;
	}

	.mod_recruitPeople .mainInterviewImgBlk img {}

	.mod_recruitPeople .mainInterviewPosition {}

	.mod_recruitPeople .mainInterviewName {
		font-size: 16px;
		font-weight: 600;
	}

	.mod_recruitPeople .mainTalkBlk {
		margin: 30px 0 0;
		border-radius: 10px;
	}

	.mod_recruitPeople .mainTalkBlk a {
		aspect-ratio: 16 / 9;
		height: auto !important;
	}

	.mod_recruitPeople .mainTalkBlk a::before {
		background-image: url(./images/module_recruitPeopleTalk01_sp.webp);
	}

	.mod_recruitPeople .mainTalkBlk a>span {}

	.mod_recruitPeople .mainTalkBlk a>span>span {}
}

/*recruitInfo*/
.module_recruitInfoWrap {
	padding: 0 0 140px;
}

.module_recruitInfoWrap .inner {}

.module_recruitInfoWrap .blk {}

.mod_recruitInfo {}

.mod_recruitInfo .entryBlk {}

.mod_recruitInfo .entryBlk>div {
	flex: 1;
	padding: 80px 0;
}

.mod_recruitInfo .entryBlk>div._flesh {
	background: var(--recruitFleshColor);
}

.mod_recruitInfo .entryBlk>div._hsgraduate {
	background: var(--recruitHSGraduateColor);
}

.mod_recruitInfo .entryBlk>div._carrier {
	background: var(--recruitCareerColor);
}

.mod_recruitInfo .entryHead {
	font-size: 25px;
	text-align: center;
	color: #fff;
	text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

.mod_recruitInfo .entryLinkBlk {
	text-align: center;
}

.mod_recruitInfo .entryLinkBlk a {
	display: inline-block;
	width: min(233px, 100%);
	margin: 13px 0 0;
	font-size: 18px;
	color: #fff;
	text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
	line-height: 53px;
	border-radius: 5px;
	border: 2px solid #fff;
	background: rgb(255 255 255 / .2);
}

@media screen and (min-width: 1025px) {
	.mod_recruitInfo .entryLinkBlk a:hover {
		opacity: 1;
	}
}

.mod_recruitInfo .otherBlk {
	gap: 28px;
	margin: 56px 0 0;
}

.mod_recruitInfo .otherBlk a {}

@media screen and (max-width: 1024px) {
	.module_recruitInfoWrap {
		padding: 0 0 90px;
	}

	.module_recruitInfoWrap .inner {}

	.module_recruitInfoWrap .blk {}

	.mod_recruitInfo {}

	.mod_recruitInfo .entryBlk {
		flex-flow: column;
		gap: 15px;
	}

	.mod_recruitInfo .entryBlk>div {
		width: 100%;
		padding: 30px 0;
	}

	.mod_recruitInfo .entryBlk>div._flesh {}

	.mod_recruitInfo .entryBlk>div._hsgraduate {}

	.mod_recruitInfo .entryBlk>div._carrier {}

	.mod_recruitInfo .entryHead {
		font-size: 20px;
	}

	.mod_recruitInfo .entryLinkBlk {}

	.mod_recruitInfo .entryLinkBlk a {
		line-height: 50px;
	}

	.mod_recruitInfo .otherBlk {
		gap: 15px;
		margin: 40px 0 0;
	}

	.mod_recruitInfo .otherBlk a {}
}

/*companyLink*/
.mod_companyLink {
	padding: 140px 0;
}

#forParent .mod_companyLink {
	padding: 70px 0;
}

.mod_companyLink .inner {}

.mod_companyLink .blk {
	display: flex;
	flex-flow: column;
}

.mod_companyLink .recruitBlk {
	text-align: center;
}

#requirements .mod_companyLink .recruitBlk {
	order: 3;
	margin: 140px 0 0;
}

#forParent .mod_companyLink .recruitBlk {
	order: 2;
	margin: 140px 0 0;
}

.mod_companyLink .recruitBlk a {}

.mod_companyLink .mainBlk {
	margin: 140px 0 0;
}

#requirements .mod_companyLink .mainBlk {
	order: 1;
	margin: 0;
}

#forParent .mod_companyLink .mainBlk {
	order: 3;
}

.mod_companyLink .mainBlk a {
	height: 259px;
}

.mod_companyLink .mainBlk a._topMessage::after {
	background-image: url(./images/module_companyLinkMain01.webp);
}

.mod_companyLink .mainBlk a._company::after {
	background-image: url(./images/module_companyLinkMain02.webp);
}

.mod_companyLink .otherBlk {
	margin: 56px 0 0;
}

#requirements .mod_companyLink .otherBlk {
	order: 2;
}

#forParent .mod_companyLink .otherBlk {
	order: 1;
	margin: 0;
}

.mod_companyLink .otherBlk a {}

@media screen and (max-width: 1024px) {
	.mod_companyLink {}

	#forParent .mod_companyLink {}

	.mod_companyLink .inner {}

	.mod_companyLink .blk {}

	.mod_companyLink .recruitBlk {}

	#requirements .mod_companyLink .recruitBlk {
		margin: 60px 0 0;
	}

	#forParent .mod_companyLink .recruitBlk {
		margin: 60px 0 0;
	}

	.mod_companyLink .recruitBlk a {}

	.mod_companyLink .mainBlk {
		margin: 60px 0 0;
	}

	#requirements .mod_companyLink .mainBlk {}

	#forParent .mod_companyLink .mainBlk {}

	.mod_companyLink .mainBlk a {
		aspect-ratio: 16 / 9;
		height: auto;
	}

	.mod_companyLink .mainBlk a._topMessage::after {}

	.mod_companyLink .mainBlk a._company::after {}

	.mod_companyLink .otherBlk {
		margin: 40px 0 0;
	}

	#requirements .mod_companyLink .otherBlk {}

	#forParent .mod_companyLink .otherBlk {}

	.mod_companyLink .otherBlk a {}
}

/*====================================

8. Page

====================================*/
/*
Top
====================================*/
/*common start*/
.top_cmnSection {
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding: 1.5% 0 0;
	width: 100%;
	aspect-ratio: 1 / 0.484;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
}

.top_cmnSection::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 80%;
	transition: all .2s;
}

.top_cmnSection::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
	transform: scale(1.2);
	width: 100%;
	height: 100%;
	transition: 1s;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.top_cmnSection.scrollFadeIn::after {
	transform: scale(1);
}

.top_cmnSection._sustainability {}

.top_cmnSection._sustainability::before {
	background: linear-gradient(rgba(24, 75, 154, 0.42) 0%, rgba(16, 101, 168, 0.58) 42.36%, rgba(15, 104, 168, 0) 100%);
}

.top_cmnSection._sustainability::after {
	background-image: url(./images/top_commonSectionSustainability_bg01.webp);
}

.top_cmnSection._products {}

.top_cmnSection._products::before {
	background: linear-gradient(var(--textColorBlue2) 0%, rgba(4, 67, 131, 0.82) 42.36%, rgba(15, 104, 168, 0) 100%);
}

.top_cmnSection._products::after {
	background-image: url(./images/top_commonSectionProducts_bg01.webp);
	background-position: center 98%;
}

.top_cmnSection._recruitment {}

.top_cmnSection._recruitment::before {
	background: linear-gradient(rgba(24, 75, 154, 0.65) 0%, rgba(16, 101, 168, 0.45) 36.95%, rgba(15, 104, 168, 0) 100%);
}

.top_cmnSection._recruitment::after {
	background-image: url(./images/top_commonSectionRecruitment_bg01.webp);
	background-position: left 20% center;
}

@media screen and (min-width: 1025px) {
	.top_cmnSection._active::before {
		opacity: 0;
	}

	.top_cmnSection._active::after {
		transform: scale(1.04);
	}
}

.top_cmnSection .headBlk {
	text-align: center;
}

.top_cmnSection .headBlk img {
	filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}

.top_cmnSection._sustainability .headBlk img {
	width: 52%;
}

.top_cmnSection._products .headBlk img {
	width: 34%;
}

.top_cmnSection._recruitment .headBlk img {
	width: 46%;
}

.top_cmnSection .head {
	position: relative;
	padding: 0 0 2.4%;
	margin: -4px 0 0;
	font-size: clamp(1.188rem, 0.672rem + 0.75vw, 1.375rem);
	font-weight: bold;
	line-height: 1;
	text-align: center;
	color: #fff;
}

.top_cmnSection._products .head,
.top_cmnSection._recruitment .head {
	margin: 19px 0 0;
}

.top_cmnSection .head::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0%);
	display: inline-block;
	width: 50px;
	height: 4px;
	background: linear-gradient(90deg, #212c3c 0%, #212c3c 50%, #a1b9de 50%, #a1b9de 100%);
}

.top_cmnSection .leadBlk {
	margin: 4% 0 0;
}

.top_cmnSection .lead {
	font-size: 35px;
	font-size: clamp(1.75rem, 0.146rem + 2.33vw, 6rem);
	font-weight: bold;
	line-height: 1.5;
	text-align: center;
	color: #fff;
	text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.65);
}

.top_cmnSection .linkBlk {
	position: absolute;
	bottom: 9.4%;
	left: 50%;
	transform: translate(-50%, 0%);
	width: 100%;
	text-align: center;
}

.top_cmnSection .linkBlk a {}

@media screen and (min-width: 1025px) {
	.top_cmnSection .linkBlk a:hover {
		filter: drop-shadow(0px 0px 20px #fff);
		background: linear-gradient(#0bd0ff 0%, #004ee3 100%);
	}
}

/*common end*/
.top_mv {
	position: relative;
}

.top_mv .inner {}

.top_mv .blk {
	justify-content: space-evenly;
	flex-flow: initial;
	gap: 40px;
}

.top_mv .leftBlk {
	position: relative;
	width: 33%;
	max-width: 550px;
	padding: 5% 0 0;
}

.top_mv .catchBlk {}

.top_mv .catchTitle {
	transform: translate(45px, 0);
	font-family: Noto Sans JP;
	font-weight: 900;
	font-size: clamp(.75rem, .3rem + 4.5vw, 5.7rem);
	line-height: 1.2;
	text-align: right;
	white-space: nowrap;
}

.top_mv .catchTitle span.css_pulse {
	position: relative;
}

.top_mv .catchTitle span.css_pulse::before {
	content: '';
	position: absolute;
	top: 9px;
	left: 0;
	z-index: -1;
	animation: css_pulse 1.5s ease-in-out 3.3s forwards;
}

.top_mv .catchTitle span.css_pulse._1::before {
	content: '\65B0';
}

.top_mv .catchTitle span.css_pulse._2::before {
	content: '\5316';
}

.top_mv .catchDesc {
	transform: translate(17px, 0);
	margin: 10px 0 0;
	font-size: clamp(0.25rem, 0.14rem + 1.48vw, 2rem);
	font-weight: 700;
	text-align: end;
	line-height: 1.35;
	animation-delay: 4.3s;
}

.top_mv .newsBlk {
	position: relative;
	margin: 2em 0 0;
}

.top_mv .newsTitle {
	font-size: clamp(1.188rem, 0.672rem + 0.75vw, 1.375rem);
	font-weight: 600;
	color: var(--mainColor);
}

.top_mv .newsArticleBlk {
	display: grid;
	gap: 3px;
	margin: 5px 0 0;
}

.top_mv .newsLinkBlk {
	position: absolute;
	top: 2px;
	right: 0;
}

.top_mv .newsLinkBlk a {
	font-size: 15px;
	font-weight: 600;
}

.top_mv .newsArticleBlk article {}

.top_mv .newsArticleBlk a {
	position: relative;
	align-items: center;
	overflow: inherit;
	justify-content: flex-start;
	gap: 3px 14px;
	padding: 10px 50px 10px 23px;
}

@media screen and (min-width: 1025px) {
	.top_mv .newsArticleBlk a {
		opacity: 1;
	}
}

.top_mv .newsArticleBlk a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	width: 5px;
	height: 100%;
	background: linear-gradient(#0ba3f4 0%, #1b4fc4 100%);
}

.top_mv .newsArticleBlk a::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	display: inline-block;
	width: calc(100% + 31px);
	height: 100%;
	background: linear-gradient(to left, #fff 0%, rgba(240, 246, 248, 0.7) 77.83%, rgba(240, 246, 248, 0.7) 100%);
	transition: .3s;
}

@media screen and (min-width: 1025px) {
	.top_mv .newsArticleBlk a:hover::after {
		background: linear-gradient(to left, #fff 0%, #f0f7fa 49.26%, #f0f7fa 100%);
	}
}

.top_mv .newsArticleDate {
	font-size: clamp(0.875rem, 0.531rem + 0.5vw, 1rem);
	color: #8a9bb2;
	line-height: inherit;
}

.top_mv .newsArticleCat {
	min-width: 132px;
	padding: 0px 10px;
	font-size: clamp(0.75rem, 0.406rem + 0.5vw, 0.875rem);
	text-align: center;
	color: #fff;
	line-height: inherit;
	background: #68a0e5;
}

.top_mv .newsArticleCat._company {
	background: var(--infoCatCompany);
}

.top_mv .newsArticleCat._sustainability {
	background: var(--infoCatSustainability);
}

.top_mv .newsArticleCat._products {
	background: var(--infoCatProducts);
}

.top_mv .newsArticleCat._technical {
	background: var(--infoCatTechnical);
}

.top_mv .newsArticleCat._products-development {
	background: var(--infoCatProductsDevelopment);
}

.top_mv .newsArticleCat._recruit {
	background: var(--infoCatRecruit);
}

.top_mv .newsArticleTitle {
	width: 100%;
	font-size: clamp(0.875rem, 0.45rem + 0.5vw, 1rem);
	font-weight: 600;
	line-height: inherit;
}

.top_mv .newsArticleArrow {
	content: '';
	position: absolute;
	top: 50%;
	right: 8px;
	transform: rotate(45deg) translate(0%, -50%);
	width: 12px;
	height: 12px;
	border: 0px;
	border-top: solid 2px var(--mainColor);
	border-right: solid 2px var(--mainColor);
	transition: .3s;
}

@media screen and (min-width: 1025px) {
	.top_mv .newsArticleBlk a:hover .newsArticleArrow {
		right: 3px;
	}
}

.top_mv .guideBlk {
	position: relative;
	/* transform: translate(0, -20px); */
	flex: 1;
	max-width: 1100px;
}

.top_mv .guideImgBlk {
	position: relative;
	z-index: 0;
}

.top_mv .guideImgBlk img {}

.top_mv .guideIconBlk {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.top_mv .guideIconBlk>div {
	position: absolute;
	z-index: 1;
	width: 8.2%;
	aspect-ratio: 1 / 1.136;
	cursor: pointer;
	transform: translate(0, -100%);
}

.top_mv .guideIconBlk>div::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transform-origin: center;
	z-index: -1;
	aspect-ratio: 1/1;
	border: 4px solid #458be24d;
	border-radius: 50%;
}

.top_mv .guideIconBlk>div:nth-child(1) {
	top: 32%;
	left: 77.5%;
}

.top_mv .guideIconBlk>div:nth-child(2) {
	top: 23.2%;
	left: 63.8%;
}

.top_mv .guideIconBlk>div:nth-child(3) {
	top: 2.6%;
	left: 55.5%;
}

.top_mv .guideIconBlk>div:nth-child(4) {
	top: 2.5%;
	left: 35.8%;
}

.top_mv .guideIconBlk>div:nth-child(5) {
	top: 7.5%;
	left: 14.5%;
}

.top_mv .guideIconBlk>div:nth-child(6) {
	top: 53.8%;
	left: 45.8%;
}

.top_mv .guideIconBlk>div:nth-child(7) {
	top: 52%;
	left: 14.5%;
}

.top_mv .guideIconBlk>div:nth-child(8) {
	top: 27.5%;
	left: 3.1%;
}

.top_mv .guideIconBlk>div img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.top_mv .guideIconBlk>div img:nth-child(1) {
	opacity: 1;
	visibility: visible;
}

.top_mv .guideIconBlk>div img:nth-child(2) {
	opacity: 0;
	visibility: hidden;
}

@media screen and (min-width: 1025px) {
	.top_mv .guideIconBlk>div:hover img:nth-child(1) {
		opacity: 0;
		visibility: hidden;
	}

	.top_mv .guideIconBlk>div:hover img:nth-child(2) {
		opacity: 1;
		visibility: visible;
	}
}

.top_mv .guideIconBlk2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.top_mv .guideIconBlk2>div {
	position: absolute;
}

.top_mv .guideIconBlk2>div:nth-child(1) {
	top: 80%;
	left: 44.5%;
	width: 6%;
	animation: bounce1 2s linear 3s infinite;
}

.top_mv .guideIconBlk2>div:nth-child(1) img {}

.top_mv .guideIconBlk2>div:nth-child(2) {
	top: 58%;
	left: 56.5%;
	width: 7%;
	animation: shake 7s linear 5s infinite;
}

.top_mv .guideIconBlk2>div:nth-child(2) img {}

.top_mv .guideIconBlk2>div:nth-child(3) {
	top: 68.9%;
	left: 75.4%;
	width: 5%;
	animation: bounce2 4s ease-in infinite;
}

.top_mv .guideIconBlk2>div:nth-child(3) img {}

.top_mv .guideIconBlk2>div:nth-child(4) {
	top: 62%;
	left: 6%;
	width: 9%;
	animation: diagonal-move 12s linear infinite alternate;
}

.top_mv .guideIconBlk2>div:nth-child(4) img {}

.top_mv .guideIconBlk2>div:nth-child(5) {
	top: 5.4%;
	left: 0%;
	width: 31%;
	animation: fuwafuwa 1.4s ease-in-out infinite alternate;
}

.top_mv .guideIconBlk2>div:nth-child(5) img {}

.top_mv .scrollBlk {
	position: absolute;
	bottom: 85px;
	right: 20px;
	width: 21px;
	font-size: 12px;
	text-align: center;
}

@keyframes bounce1 {
	0% {
		transform: translateY(0);
	}

	10% {
		transform: translateY(-5px);
	}

	20% {
		transform: translateY(0);
	}

	30% {
		transform: translateY(-5px);
	}

	40% {
		transform: translateY(0);
	}
}

@keyframes bounce2 {
	0% {
		transform: translateY(0);
	}

	5% {
		transform: translateY(-5px);
	}

	10% {
		transform: translateY(0);
	}

	15% {
		transform: translateY(-5px);
	}

	20% {
		transform: translateY(0);
	}
}

@keyframes shake {
	0% {}

	5% {
		transform: translateX(-7px);
	}

	10% {
		transform: translateX(7px);
	}

	15% {
		transform: translateX(-7px);
	}

	20% {
		transform: translateX(0);
	}
}

@keyframes diagonal-move {

	0% {
		transform: translate(0px, 0px);
	}

	10% {
		transform: translate(0px, 0px);
	}

	40% {
		transform: translate(20px, 15px);
	}

	60% {
		transform: translate(20px, 15px);
	}

	90% {
		transform: translate(0px, 0px);
	}

	100% {
		transform: translate(0px, 0px);
	}
}

@keyframes fuwafuwa {
	from {
		transform: translateY(0) scale(1);
	}

	to {
		transform: translateY(5px) scale(.98);
	}
}

.top_mv .scrollBlk span {
	color: var(--mainColor);
}

.top_mv .scrollBlk::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate(-50%, 0%);
	width: 1px;
	height: 39px;
	animation: css_scroll 1.5s infinite;
	background: var(--mainColor);
}

.top_mv .modalBlk {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999;
	width: 100%;
	height: calc(var(--vh) * 100);
	background-color: rgb(51, 51, 51, 65%);
	transition: all .5s;
	opacity: 0;
	visibility: hidden;
}

.top_mv .modalBlk._modalOpen {
	opacity: 1;
	visibility: visible;
}

.top_mv .modalLayer {
	width: 100%;
	height: 100%;
}

.top_mv .modalContent,
.top_mv .modalClose {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	overflow: auto;
	width: max(942px, 68%);
	max-height: 85%;
	min-height: 343px;
	padding: 50px 75px;
	border-radius: 10px;
	box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.5);
	background: #fff;
}

.top_mv .modalClose {
	overflow: initial;
	background: initial;
	pointer-events: none;
}

.top_mv .modalClose span {
	position: absolute;
	top: -15px;
	right: -15px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid #989EA7;
	background: #fff;
	pointer-events: auto;
	cursor: pointer;
	transition: all .3s;
}

.top_mv .modalClose span::before,
.top_mv .modalClose span::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 45%;
	height: 2px;
	background: #989EA7;
	border-radius: 4px;
	transition: all .3s;
}

.top_mv .modalClose span::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.top_mv .modalClose span::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (min-width: 1025px) {
	.top_mv .modalClose span:hover {
		background: #989EA7;
		opacity: 1;
	}

	.top_mv .modalClose span:hover::before,
	.top_mv .modalClose span:hover::after {
		background: #fff;
	}
}

.top_mv .modalContent>div {}

/*.top_mv .modalContent > div._active{opacity: 1;visibility: visible;}*/
.top_mv .modalHead {
	font-size: 27px;
	line-height: inherit;
	text-align: center;
	font-weight: 700;
}

.top_mv .modalMainBlk {
	gap: 37px;
	margin: 25px 0 0;
}

.top_mv .modalMainImgBlk {
	display: grid;
	gap: 2px;
	width: min(255px, 100%);
}

.top_mv .modalMainImgBlk img {}

.top_mv .modalMainTextBlk {
	flex: 1;
}

.top_mv .modalMainTextTitle {
	padding: 0 0 4px;
	font-size: 22px;
	font-weight: 700;
	border-bottom: 1px solid #749ad5;
}

.top_mv .modalMainTextDescBlk {
	display: grid;
	gap: 20px;
	margin: 20px 0 0;
}

.top_mv .modalMainTextDescBlk * {
	font-size: 1rem;
}

.top_mv .modalMainTextDescBlk p {}

.top_mv .modalMainTextDescBlk ul {}

.top_mv .modalMainTextDescBlk ul>li {
	line-height: 1.9;
}

.top_mv .modalMainTextDescBlk ul>li span {
	color: #749AD5;
}

/* .top_mv .modalMainTextDescBlk dl {}
.top_mv .modalMainTextDescBlk dl > div {}
.top_mv .modalMainTextDescBlk dl dt {
font-weight: 700;
}
.top_mv .modalMainTextDescBlk dl dd {}
.top_mv .modalMainTextDescBlk dl dd span {
color: #749AD5;
} */
.top_about {
	padding: 20px 0 0;
}

.top_about .inner {}

.top_about .blk {}

.top_about .galleryBlk {
	position: relative;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0%);
	overflow: hidden;
	width: calc(var(--vw) * 100);
}

.top_about .galleryBlk ul {}

.top_about .galleryBlk ul .slick-track {
	display: flex;
	gap: 1px;
}

.top_about .galleryBlk ul li {
	position: relative;
}

.top_about .galleryBlk ul li img {
	width: 100%;
	aspect-ratio: 1/0.704;
}

.top_about .galleryBlk ul li p {
	position: absolute;
	left: 0;
	bottom: 0;
	display: grid;
	place-items: center;
	width: 100%;
	height: 47px;
	padding-top: 10px;
	font-size: 14px;
	color: #fff;
	background: linear-gradient(rgba(4, 42, 101, 0) 0%, rgba(4, 42, 101, 0.67) 100%);
}

.top_about .textBlk {
	margin: 50px 0 0;
}

.top_about .textDesc {
	font-size: 24px;
	font-weight: bold;
	line-height: 45px;
	text-align: center;
}

.top_about .linkBlk {
	margin: 40px 0 0;
	text-align: center;
}

.top_about .linkBlk a {}

.top_wrap._section {
	padding: 140px 0 0;
}

.top_wrap._section .inner {}

.top_wrap._section .blk {}

.top_wrap._section .titleBlk {
	position: relative;
}

.top_wrap._section .titleBlk::before {
	content: '';
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	transform: translate(-50%, 0%);
	width: 153px;
	height: 50px;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	background: linear-gradient(rgba(69, 139, 226, 0) 0%, rgba(69, 139, 226, 0.76) 56.65%, #458be2 100%);
}

.top_wrap._section .titleBlk p {
	font-weight: bold;
	font-size: 50px;
	text-align: center;
	line-height: inherit;
}

.top_wrap._section .mainBlk {
	display: grid;
	gap: 90px 0;
	margin: 120px auto 0;
	max-width: var(--maxWidthL);
}

.top_news {
	padding: 140px 0 0;
}

.top_news .inner {}

.top_news .blk {
	padding: 60px 83px;
	border-radius: 20px;
	box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
}

.top_news .headBlk {}

.top_news .head {
	position: relative;
	font-size: 25px;
	text-align: center;
	padding: 0 0 25px;
}

.top_news .head::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0%);
	display: inline-block;
	width: 50px;
	height: 4px;
	background: linear-gradient(90deg, #212c3c 0%, #212c3c 50%, #a1b9de 50%, #a1b9de 100%);
}

.top_news .mainBlk {
	margin: 27px 0 0;
}

.top_news .mainBlk article {}

.top_news .mainBlk a {
	position: relative;
	overflow: hidden;
	align-items: center;
	justify-content: flex-start;
	flex-flow: initial;
	padding: 25px 10px;
	border-top: 1px dotted #ddd;
}

.top_news .mainBlk a::before {
	content: '';
	position: absolute;
	top: 0;
	left: -125%;
	z-index: -1;
	display: inline-block;
	width: 100%;
	height: 100%;
	background: #f5f7f89c;
	transition: .5s;
}

@media screen and (min-width: 1025px) {
	.top_news .mainBlk a:hover {
		opacity: 1;
	}

	.top_news .mainBlk a:hover::before {
		left: 0;
	}
}

.top_news .mainBlk article:last-child a {
	border-bottom: 1px dotted #ddd;
}

.top_news .mainDate {
	flex-shrink: 0;
	font-size: 15px;
	color: #8294a0;
	line-height: inherit;
}

.top_news .mainCat {
	min-width: 114px;
	margin-left: 12px;
	padding: 0px 5px;
	text-align: center;
	color: #fff;
	font-size: 13px;
	line-height: 20px;
}

.top_news .mainCat._company {
	background: var(--infoCatCompany);
}

.top_news .mainCat._sustainability {
	background: var(--infoCatSustainability);
}

.top_news .mainCat._products {
	background: var(--infoCatProducts);
}

.top_news .mainCat._technical {
	background: var(--infoCatTechnical);
}

.top_news .mainCat._products-development {
	background: var(--infoCatProductsDevelopment);
}

.top_news .mainCat._recruit {
	background: var(--infoCatRecruit);
}

.top_news .mainTitle {
	margin-left: 22px;
	font-weight: 600;
	line-height: inherit;
}

.top_news .linkBlk {
	margin: 50px 0 0;
	text-align: center;
}

.top_news .linkBlk a {}

.top_links {
	padding: 140px 0;
}

.top_links .inner {}

.top_links .blk {}

.top_links .mainBlk {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.top_links .mainBlk a {
	position: relative;
	overflow: hidden;
	z-index: 1;
	min-height: 222px;
	padding: 25px 0 0;
}

.top_links .mainBlk a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	display: inline-block;
	width: 100%;
	height: 100%;
	transition: all .3s;
	background: linear-gradient(rgba(5, 32, 70, 0.6) 0%, rgba(4, 33, 72, 0.5) 25.12%, rgba(84, 99, 119, 0) 100%);
}

.top_links .mainBlk a::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
	display: inline-block;
	width: 100%;
	height: 100%;
	transition: all .3s;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

@media screen and (min-width: 1025px) {
	.top_links .mainBlk a:hover::after {
		transform: scale(1.04);
	}
}

.top_links .mainBlk a._technicalInfo {}

.top_links .mainBlk a._development {}

.top_links .mainBlk a._ecoVadis {}

.top_links .mainBlk a._youthYell {}

.top_links .mainBlk a._welfare {}

.top_links .mainBlk a._keyword {}

.top_links .mainBlk a._technicalInfo::after {
	background-image: url(./images/top_linksMain01.webp);
}

.top_links .mainBlk a._development::after {
	background-image: url(./images/top_linksMain02.webp);
}

.top_links .mainBlk a._ecoVadis::after {
	background-image: url(./images/top_linksMain03.webp);
}

.top_links .mainBlk a._youthYell::after {
	background-image: url(./images/top_linksMain04.webp);
}

.top_links .mainBlk a._welfare::after {
	background-image: url(./images/top_linksMain05.webp);
}

.top_links .mainBlk a._keyword::after {
	background-image: url(./images/top_linksMain06.webp);
}

.top_links .mainBlk a span {
	display: inline-block;
	padding-left: 30px;
	font-size: 19px;
	font-weight: bold;
	color: #fff;
	border-bottom: 1px solid #fff;
	transition: all .3s;
}

@media screen and (min-width: 1025px) {
	.top_links .mainBlk a:hover {
		opacity: 1;
	}

	.top_links .mainBlk a:hover::before {
		opacity: 0;
	}

	.top_links .mainBlk a:hover span {
		color: var(--textColor);
		border-bottom: 1px solid var(--textColor);
		text-shadow: 0px 0px 9px #fff, 0px 0px 9px #fff;
	}
}

@media screen and (max-width: 1024px) {

	/*common start*/
	.top_cmnSection {
		aspect-ratio: 1 / .4;
		min-height: 320px;
		padding: 10px 4% 21px;
	}

	.top_cmnSection::before {
		display: none;
	}

	.top_cmnSection._sustainability {}

	.top_cmnSection._sustainability::before {}

	.top_cmnSection._products {}

	.top_cmnSection._products::before {}

	.top_cmnSection._recruitment {}

	.top_cmnSection._recruitment::before {}

	.top_cmnSection .headBlk {}

	.top_cmnSection .headBlk img {
		max-height: 50px;
		object-fit: contain;
	}

	.top_cmnSection._sustainability .headBlk img {
		width: 100%;
	}

	.top_cmnSection._products .headBlk img {
		width: 60%;
		max-height: 40px;
	}

	.top_cmnSection._recruitment .headBlk img {
		width: 80%;
		max-height: 45px;
	}

	.top_cmnSection .head {
		padding: 4px 0 20px;
		font-size: 14px;
	}

	.top_cmnSection._products .head,
	.top_cmnSection._recruitment .head {
		margin: 8px 0 0;
	}

	.top_cmnSection .head::before {
		width: 40px;
		height: 3px;
	}

	.top_cmnSection .leadBlk {
		margin: 26px 0 0;
	}

	.top_cmnSection .lead {
		font-size: 15px;
		text-align: center;
		color: #fff;
		line-height: inherit;
	}

	.top_cmnSection .linkBlk {
		/* position: initial; */
		/* transform: initial; */
		/* margin: 6em 0 0; */
	}

	.top_cmnSection .linkBlk>* {}

	/*common end*/
	.top_mv {}

	.top_mv .inner {}

	.top_mv .blk {
		flex-flow: column-reverse;
		gap: 0;
	}

	.top_mv .leftBlk {
		width: 100%;
		max-width: initial;
		padding: initial;
	}

	.top_mv .catchBlk {
		position: relative;
	}

	.top_mv .catchTitle {
		transform: initial;
		padding-left: 30px;
		font-size: clamp(.75rem, .3rem + 10.5vw, 4rem);
		/* font-size: 43px; */
		/* line-height: 49px; */
		text-align: center;
	}

	.top_mv .catchTitle span.css_pulse {}

	.top_mv .catchTitle span.css_pulse::before {
		top: 7px;
	}

	.top_mv .catchTitle span.css_pulse._1::before {}

	.top_mv .catchTitle span.css_pulse._2::before {}

	.top_mv .catchDesc {
		transform: initial;
		margin: 10px 0 0;
		font-size: clamp(0.25rem, 0.14rem + 3.78vw, 1.5rem);
		/* font-size: 16px; */
		/* line-height: 20px; */
		text-align: center;
	}

	.top_mv .newsBlk {
		position: relative;
		top: 0;
		left: 50%;
		transform: translate(-50%, 0%);
		padding: 15px 3vw;
		margin: 13px 0 0;
		width: calc(var(--vw) * 100);
		background: var(--mainColor);
	}

	.top_mv .newsTitle {
		padding: 0 3vw;
		font-size: 16px;
		text-align: left;
		color: #fff;
	}

	.top_mv .newsArticleBlk {}

	.top_mv .newsArticleBlk article {}

	.top_mv .newsArticleBlk article::before {}

	.top_mv .newsArticleBlk a {
		gap: 9px 9px;
		padding: 11px 3vw;
		background: #fff;
	}

	.top_mv .newsArticleBlk a:before {
		display: none;
	}

	.top_mv .newsArticleBlk a:after {
		display: none;
	}

	.top_mv .newsArticleDate {
		font-size: 13px;
	}

	.top_mv .newsArticleCat {
		min-width: 98px;
		font-size: 12px;
		padding: 1px 5px;
	}

	.top_mv .newsArticleCat._company {}

	.top_mv .newsArticleCat._sustainability {}

	.top_mv .newsArticleCat._products {}

	.top_mv .newsArticleCat._technical {}

	.top_mv .newsArticleCat._products-development {}

	.top_mv .newsArticleCat._recruit {}

	.top_mv .newsArticleTitle {
		font-size: 14px;
		line-height: 16px;
	}

	.top_mv .newsArticleArrow {
		right: 20px;
	}

	.top_mv .newsLinkBlk {
		position: initial;
		margin: 15px 0 0;
		text-align: center;
	}

	.top_mv .newsLinkBlk a {
		display: inline-grid;
		place-items: center;
		width: 210px;
		line-height: 40px;
		border-radius: 30px;
		border: 1px solid #fff;
		font-size: 14px;
		text-align: left;
		color: #fff;
		font-weight: 500;
	}

	.top_mv .guideBlk {
		position: relative;
		top: 0;
		left: 50%;
		transform: translate(-50%, 0%);
		width: min(calc(var(--vw) * 100), var(--maxWidthM));
	}

	.top_mv .guideImgBlk {}

	.top_mv .guideImgBlk img {}

	.top_mv .guideIconBlk {}

	.top_mv .guideIconBlk>div {}

	.top_mv .guideIconBlk>div {}

	.top_mv .guideIconBlk>div:nth-child(1) {}

	.top_mv .guideIconBlk>div:nth-child(2) {}

	.top_mv .guideIconBlk>div:nth-child(3) {}

	.top_mv .guideIconBlk>div:nth-child(4) {}

	.top_mv .guideIconBlk>div:nth-child(5) {}

	.top_mv .guideIconBlk>div:nth-child(6) {}

	.top_mv .guideIconBlk>div {}

	.top_mv .guideIconBlk>div::before {
		border: 2px solid #458be24d;
	}

	.top_mv .guideIconBlk img {}

	.top_mv .scrollBlk {
		bottom: 42px;
		right: 0;
		font-size: 12px;
	}

	.top_mv .scrollBlk span {}

	.top_mv .scrollBlk::after {}

	.top_mv .modalBlk {}

	.top_mv .modalBlk._modalOpen {}

	.top_mv .modalLayer {}

	.top_mv .modalContent,
	.top_mv .modalClose {
		width: 90%;
		min-height: 65%;
		max-height: 80%;
		padding: 25px 15px;
		border-radius: 10px;
	}

	.top_mv .modalClose {}

	.top_mv .modalClose span {
		top: -10px;
		right: -10px;
		width: 35px;
		height: 35px;
	}

	.top_mv .modalClose span::before,
	.top_mv .modalClose span::after {}

	.top_mv .modalClose span::before {}

	.top_mv .modalClose span::after {}

	.top_mv .modalContent>div {}

	/*.top_mv .modalContent > div._active{opacity: 1;visibility: visible;}*/
	.top_mv .modalHead {
		font-size: 18px;
	}

	.top_mv .modalMainBlk {
		flex-flow: column;
		gap: 20px;
		margin: 20px 0 0;
	}

	.top_mv .modalMainImgBlk {
		justify-content: center;
		width: 100%;
	}

	.top_mv .modalMainImgBlk img {
		width: 80%;
		max-width: var(--maxWidthXS);
		margin: auto;
	}

	.top_mv .modalMainTextBlk {
		width: 100%;
		max-width: var(--maxWidthS);
		margin: auto;
	}

	.top_mv .modalMainTextTitle {
		font-size: 16px;
	}

	.top_mv .modalMainTextDescBlk {
		gap: 15px;
		margin: 15px 0 0;
	}

	.top_mv .modalMainTextDescBlk * {}

	.top_mv .modalMainTextDescBlk p {}

	.top_mv .modalMainTextDescBlk ul {}

	.top_mv .modalMainTextDescBlk ul>li {}

	.top_mv .modalMainTextDescBlk ul>li span {}

	/* .top_mv .modalMainTextDescBlk dl {}
	.top_mv .modalMainTextDescBlk dl > div {}
	.top_mv .modalMainTextDescBlk dl dt {}
	.top_mv .modalMainTextDescBlk dl dd {}
	.top_mv .modalMainTextDescBlk dl dd span {} */
	.top_about {
		padding: 13px 0 0 !important;
	}

	.top_about .inner {}

	.top_about .blk {}

	.top_about .galleryBlk {}

	.top_about .galleryBlk ul {}

	.top_about .galleryBlk ul .slick-track {
		gap: 1px;
	}

	.top_about .galleryBlk ul li {
		border-radius: 10px;
	}

	.top_about .galleryBlk ul li img {}

	.top_about .galleryBlk ul li p {
		height: 40px;
		font-size: 1rem;
	}

	.top_about .textBlk {
		margin: 31px 0 0;
	}

	.top_about .textDesc {
		font-size: 15px;
		line-height: inherit;
		text-align: justify;
		font-weight: 600;
	}

	.top_about .linkBlk {
		margin: 20px 0 0;
	}

	.top_about .linkBlk a {}

	.top_wrap._section {
		padding: 60px 0 0 !important;
	}

	.top_wrap._section .inner {}

	.top_wrap._section .blk {}

	.top_wrap._section .titleBlk {}

	.top_wrap._section .titleBlk::before {
		width: 95px;
		height: 31px;
	}

	.top_wrap._section .titleBlk p {
		font-size: 23px;
	}

	.top_wrap._section .mainBlk {
		position: relative;
		top: 0;
		left: 50%;
		transform: translate(-50%, 0%);
		gap: 40px 0;
		width: calc(var(--vw)* 100);
		margin: 55px 0 0;
	}

	.top_wrap._section .mainBlk a {}

	.top_news {
		padding: 60px 0 0 !important;
	}

	.top_news .inner {}

	.top_news .blk {
		padding: 25px 15px;
		border-radius: 10px;
	}

	.top_news .headBlk {}

	.top_news .head {
		font-size: 20px;
		padding: 0 0 15px;
	}

	.top_news .head::before {
		width: 40px;
		height: 3px;
	}

	.top_news .mainBlk {}

	.top_news .mainBlk article {}

	.top_news .mainBlk a {
		flex-flow: wrap;
		padding: 20px 10px;
	}

	.top_news .mainBlk article:last-child a {}

	.top_news .mainDate {}

	.top_news .mainCat {}

	.top_news .mainCat._company {}

	.top_news .mainCat._sustainability {}

	.top_news .mainCat._products {}

	.top_news .mainCat._technical {}

	.top_news .mainCat._products-development {}

	.top_news .mainCat._recruit {}

	.top_news .mainTitle {
		width: 100%;
		margin: 8px 0 0;
	}

	.top_news .linkBlk {
		margin: 40px 0 0;
	}

	.top_news .linkBlk a {}

	.top_links {}

	.top_links .inner {}

	.top_links .blk {}

	.top_links .mainBlk {
		grid-template-columns: repeat(2, 1fr);
	}

	.top_links .mainBlk a {
		aspect-ratio: 16/10;
		min-height: initial;
		padding: 5% 0 0;
	}

	.top_links .mainBlk a::before {}

	.top_links .mainBlk a::after {}

	.top_links .mainBlk a._technicalInfo {}

	.top_links .mainBlk a._development {}

	.top_links .mainBlk a._ecoVadis {}

	.top_links .mainBlk a._youthYell {}

	.top_links .mainBlk a._welfare {}

	.top_links .mainBlk a._keyword {}

	.top_links .mainBlk a._technicalInfo::after {}

	.top_links .mainBlk a._development::after {}

	.top_links .mainBlk a._ecoVadis::after {}

	.top_links .mainBlk a._youthYell::after {}

	.top_links .mainBlk a._welfare::after {}

	.top_links .mainBlk a._keyword::after {}

	.top_links .mainBlk a span {
		padding-left: 15px;
		font-size: 15px;
	}
}

/*
topMessage
====================================*/
/*common start*/
/*common end*/
.topMessage_message {
	padding: 90px 0 140px;
}

.topMessage_message .inner {}

.topMessage_message .blk {}

.topMessage_message .mainBlk {
	gap: 52px;
}

.topMessage_message .mainTextBlk {
	flex: 1;
}

.topMessage_message .mainTextHead {
	font-size: 25px;
}

.topMessage_message .mainTextDesc {
	margin: 25px 0 0;
}

.topMessage_message .mainImgBlk {
	width: min(445px, 100%);
}

.topMessage_message .mainImgBlk img {}

.topMessage_message .mainImgName {
	display: flex;
	gap: 24px;
	align-items: center;
	justify-content: center;
	margin: 25px 0 0;
	font-size: 25px;
}

.topMessage_message .mainImgName span {
	font-size: 15px;
}

.topMessage_important {
	padding: 70px 0;
	margin: 0 0 140px;
	background: linear-gradient(#f4f9ff 0%, #c4def8 100%);
}

.topMessage_important .inner {}

.topMessage_important .blk {}

.topMessage_important .mainBlk {
	gap: 40px;
	margin: 40px 0 0;
}

.topMessage_important .mainBlk>div {
	flex: 1;
}

.topMessage_important .mainHeadBlk {
	position: relative;
	display: flex;
	align-items: center;
	flex-flow: column;
	height: 197px;
	padding: 42px 0 0;
	border-radius: 15px;
	background: #fff;
}

.topMessage_important .mainHeadBlk img {
	height: 70px;
}

.topMessage_important .mainBlk>div:nth-child(1) .mainHeadBlk img {}

.topMessage_important .mainBlk>div:nth-child(2) .mainHeadBlk img {
	height: 82px;
}

.topMessage_important .mainBlk>div:nth-child(3) .mainHeadBlk img {
	height: 85px;
}

.topMessage_important .mainHead {
	position: absolute;
	bottom: 27px;
	left: 50%;
	transform: translate(-50%, 0%);
	font-size: 33px;
	line-height: 1;
}

.topMessage_important .mainDesc {
	margin: 25px 0 0;
}

.topMessage_important .mainLinkBlk {
	margin: 30px 0 0;
}

.topMessage_important .mainLinkBlk a {
	filter: drop-shadow(0px 3px 15px rgba(0, 0, 0, 0.16));
}

@media screen and (max-width: 1024px) {

	/*common start*/
	/*common end*/
	.topMessage_message {}

	.topMessage_message .inner {}

	.topMessage_message .blk {}

	.topMessage_message .mainBlk {
		flex-flow: column;
		gap: 25px;
	}

	.topMessage_message .mainTextBlk {
		order: 2;
	}

	.topMessage_message .mainTextHead {
		font-size: 18px;
	}

	.topMessage_message .mainTextDesc {
		margin: 20px 0 0;
	}

	.topMessage_message .mainImgBlk {
		order: 1;
		width: 100%;
		text-align: center;
	}

	.topMessage_message .mainImgBlk img {
		max-width: var(--maxWidthXS);
	}

	.topMessage_message .mainImgName {
		gap: 15px;
		font-size: 22px;
		font-weight: 600;
	}

	.topMessage_message .mainImgName span {
		font-size: 1rem;
		font-weight: initial;
	}

	.topMessage_important {
		margin: 0 0 90px;
	}

	.topMessage_important .inner {}

	.topMessage_important .blk {}

	.topMessage_important .mainBlk {
		flex-flow: column;
		gap: 55px;
		margin: 30px auto 0;
	}

	.topMessage_important .mainBlk>div {}

	.topMessage_important .mainHeadBlk {
		gap: 20px;
		width: var(--maxWidthXS);
		height: initial;
		margin: auto;
		padding: 30px 0;
	}

	.topMessage_important .mainHeadBlk img {}

	.topMessage_important .mainBlk>div:nth-child(1) .mainHeadBlk img {}

	.topMessage_important .mainBlk>div:nth-child(2) .mainHeadBlk img {}

	.topMessage_important .mainBlk>div:nth-child(3) .mainHeadBlk img {}

	.topMessage_important .mainHead {
		position: initial;
		transform: initial;
		font-size: 24px;
	}

	.topMessage_important .mainDesc {}

	.topMessage_important .mainLinkBlk {
		margin: 25px 0 0;
		text-align: center;
	}

	.topMessage_important .mainLinkBlk a {}
}

/*
Company
====================================*/
/*common start*/
.company_cmn {
	padding: 140px 0 0;
}

.company_cmn:first-child {
	padding: 90px 0 0;
}

.company_cmn:last-child {
	padding: 140px 0 140px;
}

.company_cmn .inner {}

.company_cmn .blk {}

.company_cmn .headBlk {}

.company_cmn .head {}

.company_cmn .head::before {}

.company_cmn .mainBlk {
	margin: 45px 0 0;
}

.company_cmn .mainTableBlk {}

.company_cmn .mainTableBlk dl {}

.company_cmn .mainTableBlk dl dt {}

.company_cmn .mainTableBlk dl dd {}

/*common end*/
.company_wrap._section {}

.company_cmn .mainAccessBlk {
	display: grid;
	gap: 83px;
}

.company_cmn .mainAccessBlk>div {}

.company_cmn .mainAccessHeadBlk {}

.company_cmn .mainAccessHead {
	padding: 0 0 8px;
	font-size: 25px;
	border-bottom: 1px solid #458be2;
}

.company_cmn .mainAccessMainBlk {
	margin: 30px 0 0;
}

.company_cmn .mainAccessMainInfoBlk {
	flex: 1;
}

.company_cmn .mainAccessMainInfoDesc {}

.company_cmn .mainAccessMainInfoDesc strong {
	font-size: 1rem;
}

.company_cmn .mainAccessMainInfoDesc span {
	color: #042A65;
}

.company_cmn .mainAccessMainMapBlk {
	width: min(716px, 100%);
}

.company_cmn .mainAccessMainMapBlk iframe {
	aspect-ratio: initial;
	height: 440px;
}

.company_cmn .mainOrganizationChartBlk {
	padding: 65px;
	background: linear-gradient(#f4f9ff 0%, #c4def8 100%);
}

.company_cmn .mainOrganizationChartBlk img {}

@media screen and (max-width: 1024px) {

	/*common start*/
	.company_cmn {
		padding: 60px 0 0 !important;
	}

	.company_cmn:last-child {
		padding: 60px 0 90px !important;
	}

	.company_cmn .inner {}

	.company_cmn .blk {}

	.company_cmn .headBlk {}

	.company_cmn .head {}

	.company_cmn .head::before {}

	.company_cmn .mainBlk {
		margin: 25px 0 0;
	}

	.company_cmn .mainTableBlk {}

	.company_cmn .mainTableBlk dl {}

	.company_cmn .mainTableBlk dl dt {}

	.company_cmn .mainTableBlk dl dd {}

	/*common end*/
	.company_cmn .mainAccessBlk {
		gap: 45px;
	}

	.company_cmn .mainAccessBlk>div {}

	.company_cmn .mainAccessHeadBlk {}

	.company_cmn .mainAccessHead {
		padding: 0 0 5px;
		font-size: 18px;
	}

	.company_cmn .mainAccessMainBlk {
		flex-flow: column;
		margin: 25px 0 0;
	}

	.company_cmn .mainAccessMainInfoBlk {
		order: 2;
		margin: 20px 0 0;
	}

	.company_cmn .mainAccessMainInfoDesc {}

	.company_cmn .mainAccessMainInfoDesc strong {}

	.company_cmn .mainAccessMainInfoDesc span {}

	.company_cmn .mainAccessMainMapBlk {
		order: 1;
	}

	.company_cmn .mainAccessMainMapBlk iframe {
		aspect-ratio: 4/3;
		height: auto;
	}

	.company_cmn .mainOrganizationChartBlk {
		padding: 25px 15px;
		width: 100%;
	}

	.company_cmn .mainOrganizationChartBlk img {
		min-width: 600px;
	}
}

/*
gasStation
====================================*/
/*common start*/
.gasStation_wrap._section1 {}

.gasStation_wrap._section1 .inner {}

.gasStation_wrap._section1 .blk {}

.gasStation_wrap._section1 .headBlk {}

.gasStation_wrap._section1 .head {}

.gasStation_wrap._section1 .mainBlk {
	gap: 64px;
	margin: 40px 0 0;
}

.gasStation_wrap._section1 .mainTableBlk {
	flex: 1;
}

.gasStation_wrap._section1 .mainTableBlk dl {}

.gasStation_wrap._section1 .mainTableBlk div>dl {}

.gasStation_wrap._section1 .mainTableBlk dl>div>* {
	padding: 20px 34px;
}

.gasStation_wrap._section1 .mainTableBlk dl dt {
	width: 128px;
}

.gasStation_wrap._section1 .mainTableBlk dl dd {}

.gasStation_wrap._section1 .mainImgBlk {
	display: grid;
	gap: 13px;
	width: min(478px, 100%);
}

.gasStation_wrap._section1 .mainImgBlk img {}

.gasStation_wrap._section1 .mapBlk {
	margin: 60px 0 0;
}

.gasStation_wrap._section1 .mapBlk iframe {}

/*common end*/
.gasStation_outline {
	padding: 90px 0 0;
}

.gasStation_outline .inner {}

.gasStation_outline .blk {}

.gasStation_outline .headBlk {}

.gasStation_outline .head {
	font-size: 32px;
	text-align: center;
	font-weight: 700;
}

.gasStation_outline .leadBlk {
	margin: 20px 0 0;
}

.gasStation_outline .lead {}

.gasStation_outline .lineBlk {
	margin: 30px 0 0;
	text-align: center;
}

.gasStation_outline .lineBlk a {
	position: relative;
	display: inline-block;
	padding: 8px 34px;
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	border-radius: 30px;
	background: #0fa75b;
}

.gasStation_outline .lineBlk a::before,
.gasStation_outline .lineBlk a::after {
	content: '';
	position: absolute;
	top: -16px;
	left: -19px;
	width: 57px;
}

.gasStation_outline .lineBlk a::before {
	height: 44px;
	background-image: url(./images/icon_bubble01.svg);
	background-repeat: no-repeat;
	background-position: left top 50%;
	background-size: 100%;
}

.gasStation_outline .lineBlk a::after {
	content: 'NEW';
	line-height: 31px;
	font-size: 16px;
}

.gasStation_fullService {
	padding: 140px 0 0;
}

.gasStation_selfService {
	padding: 140px 0 140px;
}

#gasStation .requirements_main {
	padding: 0px 0 140px;
}

@media screen and (max-width: 1024px) {

	/*common start*/
	.gasStation_wrap._section1 {}

	.gasStation_wrap._section1 .inner {}

	.gasStation_wrap._section1 .blk {}

	.gasStation_wrap._section1 .headBlk {}

	.gasStation_wrap._section1 .head {}

	.gasStation_wrap._section1 .mainBlk {
		flex-flow: column;
		gap: 30px;
		margin: 30px 0 0;
	}

	.gasStation_wrap._section1 .mainTableBlk {
		width: 100%;
	}

	.gasStation_wrap._section1 .mainTableBlk dl {}

	.gasStation_wrap._section1 .mainTableBlk div>dl {}

	.gasStation_wrap._section1 .mainTableBlk dl>div>* {
		padding: 20px 15px;
	}

	.gasStation_wrap._section1 .mainTableBlk dl dt {
		width: 100%;
		padding: 15px 15px;
	}

	.gasStation_wrap._section1 .mainTableBlk dl dd {}

	.gasStation_wrap._section1 .mainImgBlk {
		width: 100%;
		justify-content: center;
	}

	.gasStation_wrap._section1 .mainImgBlk img {
		width: 100%;
		max-width: var(--maxWidthS);
	}

	.gasStation_wrap._section1 .mapBlk {
		margin: 30px 0 0;
	}

	.gasStation_wrap._section1 .mapBlk iframe {
		aspect-ratio: 1/1;
	}

	/*common end*/
	.gasStation_outline {
		padding: 60px 0 0 !important;
	}

	.gasStation_outline .inner {}

	.gasStation_outline .blk {}

	.gasStation_outline .headBlk {}

	.gasStation_outline .head {
		font-size: 20px;
	}

	.gasStation_outline .leadBlk {}

	.gasStation_outline .lead {
		text-align: justify;
	}

	.gasStation_outline .lineBlk {
		margin: 35px 0 0;
	}

	.gasStation_outline .lineBlk a {
		padding: 10px 34px;
		font-size: 17px;
		border-radius: 50px;
		line-height: 1.4;
	}

	.gasStation_outline .lineBlk a::before,
	.gasStation_outline .lineBlk a::after {}

	.gasStation_outline .lineBlk a::before {}

	.gasStation_outline .lineBlk a::after {}

	.gasStation_fullService {
		padding: 60px 0 0 !important;
	}

	.gasStation_selfService {
		padding: 60px 0 90px !important;
	}

	#gasStation .requirements_main {
		margin-top: -30px;
		padding: 0 0 90px !important;
	}
}

/*
sustainability
====================================*/
/*common start*/
.sustainability_cmn {
	padding: 0;
}

.sustainability_cmn .inner {}

.sustainability_cmn .blk {}

.sustainability_cmn .headBlk {}

.sustainability_cmn .head {}

.sustainability_cmn .mainBlk {
	margin: 22px 0 0;
}

.sustainability_cmn .mainCmnBlk1 {
	padding: 50px 56px;
	border: 1px solid #d7dce2;
}

.sustainability_cmn .mainCmnPolicyHead {
	margin: 0 0 30px;
	font-size: 19px;
	font-weight: 700;
}

/*common end*/
.sustainability_lead {
	padding: 90px 0 0;
}

.sustainability_lead .inner {}

.sustainability_lead .blk {}

.sustainability_lead .mainBlk {
	padding: 116px 0;
	background-image: url(./images/sustainability_leadMain_bg01.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.sustainability_lead .mainTitle {
	font-size: 32px;
	line-height: inherit;
	text-align: center;
	font-weight: 600;
	text-shadow: 0px 0px 6px #fff;
}

.sustainability_lead .mainDesc {
	font-size: 18px;
	line-height: 33px;
	text-align: center;
	text-shadow: 0px 0px 6px #fff;
	margin: 18px 0 0;
}

.sustainability_wrap._mainSection {
	display: grid;
	gap: 140px;
	padding: 90px 0 140px;
}

.sustainability_cmn .mainHistoryBlk {
	margin: 40px 0 0;
}

.sustainability_cmn .mainCsrBlk {}

.sustainability_cmn .mainCsrPolicyBlk {}

.sustainability_cmn .mainCsrPolicyDesc {}

.sustainability_cmn .mainCsrEcoVadisBlk {
	margin: 80px 0 0;
}

.sustainability_cmn .mainCsrEcoVadisHeadBlk {}

.sustainability_cmn .mainCsrEcoVadisHead {
	font-size: 25px;
	border-bottom: 1px solid var(--mainColor);
}

.sustainability_cmn .mainCsrEcoVadisMainBlk {
	margin: 23px 0 0;
	padding: 55px;
	background-image: url(./images/sustainability_commonMainCsrEcoVadis_bg01.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.sustainability_cmn .mainCsrEcoVadisMainTextBlk {
	padding: 42px 38px;
	background: #fff;
}

.sustainability_cmn .mainCsrEcoVadisMainTextHead {
	font-size: 22px;
	color: var(--textColorBlue2);
	text-align: center;
	padding: 13px 0;
	border-radius: 10px;
	background: #eff6fc;
}

.sustainability_cmn .mainCsrEcoVadisMainTextDesc {
	margin: 25px 0 0;
}

.sustainability_cmn .mainCsrEcoVadisLinkBlk {
	margin: 37px 0 0;
}

.sustainability_cmn .mainCsrEcoVadisLinkBlk a {
	align-items: stretch;
	background: #fff;
}

@media screen and (min-width: 1025px) {
	.sustainability_cmn .mainCsrEcoVadisLinkBlk a:hover {
		box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.4);
		opacity: 1;
	}
}

.sustainability_cmn .mainCsrEcoVadisLinkTextBlk {
	margin: auto;
	flex: 1;
	padding: 0 45px;
}

.sustainability_cmn .mainCsrEcoVadisLinkTextTitle {
	display: inline-block;
	padding-right: 48px;
	font-size: 22px;
	line-height: inherit;
	font-weight: 600;
	background-image: url(./images/icon_arrow01_bgBlue.svg);
	background-repeat: no-repeat;
	background-position: right 10px top 50%;
	background-size: 22px;
	transition: all .3s;
}

@media screen and (min-width: 1025px) {
	.sustainability_cmn .mainCsrEcoVadisLinkBlk a:hover .mainCsrEcoVadisLinkTextTitle {
		color: #0558B9;
		background-position: right top 50%;
	}
}

.sustainability_cmn .mainCsrEcoVadisLinkTextDesc {
	font-size: 1rem;
	line-height: inherit;
	margin: 10px 0 0;
}

.sustainability_cmn .mainCsrEcoVadisLinkImgBlk {
	width: min(304px, 100%);
}

.sustainability_cmn .mainCsrEcoVadisLinkImgBlk img {
	width: 100%;
	height: 100%;
}

.sustainability_cmn .mainHealthBlk {}

.sustainability_cmn .mainHealthPolicyBlk {}

.sustainability_cmn .mainHealthPolicyDesc {}

.sustainability_cmn .mainCsrPolicyDesc span,
.sustainability_cmn .mainHealthPolicyDesc span,
.sustainability_cmn .mainIsoPolicyDesc span {
	display: block;
	margin-left: calc(2em + 4px);
	text-indent: calc(-2em + -4px);
}

.sustainability_cmn .mainHealthCaseBlk {
	margin: 55px 0 0;
	padding: 20px 48px 40px;
	background: linear-gradient(#f4f9ff 0%, #c4def8 100%);
}

.sustainability_cmn .mainHealthCaseHead {
	font-size: 15px;
}

.sustainability_cmn .mainHealthCaseMainBlk {
	margin: 10px 0 0;
}

.sustainability_cmn .mainHealthCaseMainBlk dl {
	display: grid;
	gap: 9px;
}

.sustainability_cmn .mainHealthCaseMainBlk dl>div {
	display: flex;
	gap: 20px;
	align-items: center;
	padding: 20px 30px;
	background: #fff;
}

.sustainability_cmn .mainHealthCaseMainBlk dl dt {
	width: min(170px, 100%);
}

.sustainability_cmn .mainHealthCaseMainBlk dl dd {
	flex: 1;
	line-height: 1.8;
}

.sustainability_cmn .mainIsoBlk {}

.sustainability_cmn .mainIsoPolicyBlk {}

.sustainability_cmn .mainIsoPolicyDesc {}

.sustainability_cmn .mainIsoInfoBlk {
	margin: 55px 0 0;
}

.sustainability_cmn .mainIsoInfoHead {
	font-size: 20px;
}

.sustainability_cmn .mainIsoInfoMainBlk {
	margin: 10px 0 0;
}

.sustainability_cmn .mainIsoInfoMainBlk dl {}

.sustainability_cmn .mainIsoInfoMainBlk dl>div {}

.sustainability_cmn .mainIsoInfoMainBlk dl>div>* {
	padding: 13px 37px;
}

.sustainability_cmn .mainIsoInfoMainBlk dl dt {
	width: min(150px, 100%);
}

.sustainability_cmn .mainIsoInfoMainBlk dl dd {}

.sustainability_other {
	margin: 0 0 140px;
	background: linear-gradient(#f4f9ff 0%, #c4def8 100%);
}

.sustainability_other .inner {}

.sustainability_other .blk {}

.sustainability_other .headBlk {}

.sustainability_other .head {}

.sustainability_other .mainBlk {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 66px 36px;
	margin: 30px 0 0;
}

.sustainability_other .mainBlk a {}

@media screen and (min-width: 1025px) {
	.sustainability_other .mainBlk a:hover {
		opacity: 1;
	}
}

.sustainability_other .mainTextBlk {
	margin: 10px 0 0;
}

.sustainability_other .mainTextHead {
	display: inline-block;
	padding-right: 53px;
	font-size: 25px;
	background-image: url(./images/icon_arrow01_bgBlue.svg);
	background-repeat: no-repeat;
	background-position: right 10px top 50%;
	background-size: 25px;
	transition: .3s;
}

@media screen and (min-width: 1025px) {
	.sustainability_other .mainBlk a:hover .mainTextHead {
		color: #0558B9;
		background-position: right top 50%;
	}
}

.sustainability_other .mainImgBlk {
	overflow: hidden;
	border-radius: 20px;
}

.sustainability_other .mainImgBlk img {}

@media screen and (min-width: 1025px) {
	.sustainability_other .mainBlk a:hover .mainImgBlk img {
		transform: scale(1.2);
	}
}

@media screen and (max-width: 1024px) {

	/*common start*/
	.sustainability_cmn {
		padding: 0 !important;
	}

	.sustainability_cmn .inner {}

	.sustainability_cmn .blk {}

	.sustainability_cmn .headBlk {}

	.sustainability_cmn .head {}

	.sustainability_cmn .mainBlk {}

	.sustainability_cmn .mainCmnBlk1 {
		padding: 25px 15px;
	}

	.sustainability_cmn .mainCmnPolicyHead {
		margin: 0 0 15px;
		font-size: 17px;
	}

	/*common end*/
	.sustainability_lead {
		padding: 60px 0 0 !important;
	}

	.sustainability_lead .inner {}

	.sustainability_lead .blk {}

	.sustainability_lead .mainBlk {
		padding: 9% 0;
	}

	.sustainability_lead .mainTitle {
		font-size: 20px;
	}

	.sustainability_lead .mainDesc {
		font-size: 1rem;
		line-height: inherit;
	}

	.sustainability_wrap._mainSection {
		padding: 60px 0;
		gap: 60px;
	}

	.sustainability_cmn .mainHistoryBlk {
		margin: 30px 0 0;
	}

	.sustainability_cmn .mainCsrBlk {}

	.sustainability_cmn .mainCsrPolicyBlk {}

	.sustainability_cmn .mainCsrPolicyDesc {}

	.sustainability_cmn .mainCsrEcoVadisBlk {
		margin: 30px 0 0;
	}

	.sustainability_cmn .mainCsrEcoVadisHeadBlk {}

	.sustainability_cmn .mainCsrEcoVadisHead {
		font-size: 18px;
	}

	.sustainability_cmn .mainCsrEcoVadisMainBlk {
		margin: 20px 0 0;
		padding: 25px 15px;
	}

	.sustainability_cmn .mainCsrEcoVadisMainTextBlk {
		padding: 15px;
	}

	.sustainability_cmn .mainCsrEcoVadisMainTextHead {
		padding: 10px 10px;
		font-size: 16px;
		border-radius: 5px;
		background: #eff6fc;
	}

	.sustainability_cmn .mainCsrEcoVadisMainTextDesc {
		text-shadow: 0px 0px 6px #fff;
		margin: 20px 0 0;
	}

	.sustainability_cmn .mainCsrEcoVadisLinkBlk {
		margin: 25px 0 0;
	}

	.sustainability_cmn .mainCsrEcoVadisLinkBlk a {}

	.sustainability_cmn .mainCsrEcoVadisLinkTextBlk {
		padding: 15px;
	}

	.sustainability_cmn .mainCsrEcoVadisLinkTextTitle {
		padding-right: 30px;
		font-size: 18px;
		background-position: right top 50%;
		background-size: 18px;
	}

	.sustainability_cmn .mainCsrEcoVadisLinkTextDesc {}

	.sustainability_cmn .mainCsrEcoVadisLinkImgBlk {
		width: 100%;
	}

	.sustainability_cmn .mainCsrEcoVadisLinkImgBlk img {}

	.sustainability_cmn .mainHealthBlk {}

	.sustainability_cmn .mainHealthPolicyBlk {}

	.sustainability_cmn .mainHealthPolicyDesc {}

	.sustainability_cmn .mainCsrPolicyDesc span,
	.sustainability_cmn .mainHealthPolicyDesc span,
	.sustainability_cmn .mainIsoPolicyDesc span {}

	.sustainability_cmn .mainHealthCaseBlk {
		margin: 35px 0 0;
		padding: 25px 15px;
	}

	.sustainability_cmn .mainHealthCaseHead {}

	.sustainability_cmn .mainHealthCaseMainBlk {}

	.sustainability_cmn .mainHealthCaseMainBlk dl {}

	.sustainability_cmn .mainHealthCaseMainBlk dl>div {
		flex-flow: column;
		align-items: flex-start;
		gap: 5px;
		padding: 15px 15px;
	}

	.sustainability_cmn .mainHealthCaseMainBlk dl dt {}

	.sustainability_cmn .mainHealthCaseMainBlk dl dd {}

	.sustainability_cmn .mainIsoBlk {}

	.sustainability_cmn .mainIsoPolicyBlk {}

	.sustainability_cmn .mainIsoPolicyDesc {}

	.sustainability_cmn .mainIsoPolicyHead {}

	.sustainability_cmn .mainIsoInfoBlk {
		margin: 35px 0 0;
	}

	.sustainability_cmn .mainIsoInfoHead {
		font-size: 17px;
	}

	.sustainability_cmn .mainIsoInfoMainBlk {}

	.sustainability_cmn .mainIsoInfoMainBlk dl {}

	.sustainability_cmn .mainIsoInfoMainBlk dl>div {}

	.sustainability_cmn .mainIsoInfoMainBlk dl>div>* {
		padding: 15px 15px;
	}

	.sustainability_cmn .mainIsoInfoMainBlk dl dt {
		width: 100%;
	}

	.sustainability_cmn .mainIsoInfoMainBlk dl dd {
		padding: 20px 15px;
	}

	.sustainability_other {
		margin: 0 0 90px;
	}

	.sustainability_other .inner {}

	.sustainability_other .blk {}

	.sustainability_other .headBlk {}

	.sustainability_other .head {}

	.sustainability_other .mainBlk {
		gap: 30px 15px;
		grid-template-columns: repeat(auto-fill, minmax(247px, 1fr));
		align-items: flex-start;
	}

	.sustainability_other .mainBlk a {
		border-radius: 10px;
	}

	.sustainability_other .mainTextBlk {}

	.sustainability_other .mainTextHead {
		padding-right: 30px;
		font-size: 18px;
		background-position: right top 50%;
		background-size: 18px;
	}

	.sustainability_other .mainImgBlk {
		width: 100%;
		border-radius: 10px;
	}

	.sustainability_other .mainImgBlk img {
		width: 100%;
	}
}

/*
carbonNeutral
====================================*/
/*common start*/
#carbonNeutral .cmnMargin1 {
	margin: 22px 0 0;
}

#carbonNeutral .cmnMargin2 {
	margin: 25px 0 0;
}

#carbonNeutral .cmnTableBlk {}

#carbonNeutral .cmnTableBlk table {
	width: 100%;
	table-layout: fixed;
}

#carbonNeutral .cmnTableBlk table thead *:first-child {
	width: 280px;
}

#carbonNeutral .cmnTableBlk table thead * {
	padding: 12px 42px !important;
	color: #fff;
	background: #007ad3;
}

#carbonNeutral .cmnTableBlk table thead *:not(:last-child) {
	border-right: 1px solid #fff;
}

#carbonNeutral .cmnTableBlk table th {}

#carbonNeutral .cmnTableBlk table td {}

#carbonNeutral .cmnTableBlk table,
#carbonNeutral .cmnTableBlk th,
#carbonNeutral .cmnTableBlk td {}

#carbonNeutral .cmnTableBlk table th,
#carbonNeutral .cmnTableBlk table td {
	vertical-align: middle;
}

#carbonNeutral .cmnTableBlk table * {}

#carbonNeutral .cmnTableBlk table tbody * {
	padding: 20px 0;
	border-bottom: 1px solid #d7dce2;
	font-size: 16px;
}

#carbonNeutral .cmnTableBlk table tbody th {
	padding: 0 42px;
	background: #eff6fc;
}

#carbonNeutral .cmnTableBlk table tbody td {
	padding: 20px 42px;
}

#carbonNeutral .cmnTableBlk table tbody td:not(:last-child) {
	border-right: dotted 1px #d7dce2;
}

/*common end*/
.carbonNeutral_wrap._section {}

.carbonNeutral_wrap._section>*:first-child {
	padding: 90px 0 0;
}

.carbonNeutral_wrap._section>*:not(:first-child) {
	padding: 140px 0 0;
}

.carbonNeutral_wrap._section>*:last-child {
	padding: 140px 0 140px;
}

.carbonNeutral_bout {}

.carbonNeutral_bout .inner {}

.carbonNeutral_bout .blk {}

.carbonNeutral_bout .headBlk {}

.carbonNeutral_bout .head {}

.carbonNeutral_bout .leadBlk {}

.carbonNeutral_bout .lead {}

.carbonNeutral_bout .mainBlk {
	margin: 60px 0 0;
}

.carbonNeutral_bout .mainGoalBlk {
	align-items: center;
	gap: 26px;
	padding: 18px 37px;
	background: #e0fcf5;
}

.carbonNeutral_bout .mainGoalMarc {
	display: grid;
	place-items: center;
	width: 102px;
	aspect-ratio: 1/1;
	border-radius: 50%;
	color: #fff;
	font-size: 27px;
	font-weight: 600;
	background: #07afb5;
}

.carbonNeutral_bout .mainGoalTextBlk {
	flex: 1;
}

.carbonNeutral_bout .mainGoalTitle {
	font-size: 27px;
	color: #0f878b;
	font-weight: 600;
}

.carbonNeutral_bout .mainGoalDesc {
	transform: translate(-10px, 0);
	margin: 7px 0 0;
	font-size: 18px;
}

.carbonNeutral_bout .mainBoutBlk {
	margin: 60px 0 0;
}

.carbonNeutral_bout .mainBoutBlk>div {}

.carbonNeutral_bout .mainBoutBlk>div:not(:first-child) {
	margin: 90px 0 0;
}

.carbonNeutral_bout .mainBoutHead {}

.carbonNeutral_bout .mainBoutHead span {
	font-size: 1rem;
}

.carbonNeutral_bout .mainBoutImgBlk {
	border: 1px solid #c2c6cb;
}

.carbonNeutral_bout .mainBoutImgBlk img {}

.carbonNeutral_bout .mainBoutBlk>div._item1 .mainTableBlk {}

.carbonNeutral_bout .mainBoutBlk>div._item1 .mainTableBlk table thead * {
	text-align: center;
}

.carbonNeutral_bout .mainBoutBlk>div._item2 .mainTableBlk table thead *,
.carbonNeutral_bout .mainBoutBlk>div._item3 .mainTableBlk table thead * {
	padding: 12px 42px;
}

.carbonNeutral_bout .mainBoutBlk>div._item1 .mainTableBlk table thead *:last-child {
	background: #025795 !important;
}

.carbonNeutral_bout .mainBoutBlk>div._item1 .mainTableBlk table tbody td {
	text-align: center;
}

.carbonNeutral_bout .mainBoutBlk>div._item1 .mainTableBlk table tbody td:last-child {
	font-weight: 600;
}

.carbonNeutral_bout .mainAchievementBlk {
	width: min(540px, 100%);
	margin: 50px auto 0;
}

.carbonNeutral_bout .mainAchievementHead {
	padding: 6px 0;
	font-size: 20px;
	color: #fff;
	text-align: center;
	background: #b1a94e;
}

.carbonNeutral_bout .mainAchievementTextBlk {
	padding: 20px 0;
	background: #fcf9dd;
}

.carbonNeutral_bout .mainAchievementTextBlk p {
	font-size: 35px;
	text-align: center;
	color: #b1a94e;
	line-height: 1;
	font-weight: 700;
}

.carbonNeutral_bout .mainAchievementTextBlk p span {
	display: block;
	margin: 0 0 10px;
	font-size: 23px;
	color: var(--textColor);
	font-weight: 600;
}

.carbonNeutral_buchieco {}

.carbonNeutral_buchieco .inner {}

.carbonNeutral_buchieco .blk {}

.carbonNeutral_buchieco .headBlk {}

.carbonNeutral_buchieco .head {}

.carbonNeutral_buchieco .leadBlk {}

.carbonNeutral_buchieco .lead {}

.carbonNeutral_buchieco .mainBlk {
	margin: 40px 0 0;
}

.carbonNeutral_buchieco .mainImgBlk {
	text-align: center;
}

.carbonNeutral_buchieco .mainImgBlk img {
	width: min(350px, 100%);
}

.carbonNeutral_buchieco .mainLinkBlk {
	margin: 45px 0 0;
	text-align: center;
}

.carbonNeutral_buchieco .mainLinkBlk a {
	display: inline-grid;
	place-items: center;
	width: min(413px, 100%);
	font-size: 18px;
	line-height: 79px;
	color: #00397b;
	border-radius: 10px;
	border: 1px solid #00397b;
}

.carbonNeutral_buchieco .mainLinkBlk a span {
	padding-right: 38px;
	background-image: url(./images/icon_link01_blue.svg);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 20px;
}

.carbonNeutral_surroundingPerformance {}

.carbonNeutral_surroundingPerformance .inner {}

.carbonNeutral_surroundingPerformance .blk {}

.carbonNeutral_surroundingPerformance .headBlk {}

.carbonNeutral_surroundingPerformance .head {}

.carbonNeutral_surroundingPerformance .mainBlk {
	align-items: stretch;
	gap: 60px;
	margin: 20px 0 0;
}

.carbonNeutral_surroundingPerformance .mainTextBlk {
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	flex: 1;
}

.carbonNeutral_surroundingPerformance .mainTextBlk p {}

.carbonNeutral_surroundingPerformance .mainTextLinkBlk {}

.carbonNeutral_surroundingPerformance .mainTextLinkBlk a {}

.carbonNeutral_surroundingPerformance .mainImgBlk {
	width: min(550px, 100%);
}

.carbonNeutral_surroundingPerformance .mainImgBlk img {}

@media screen and (max-width: 1024px) {

	/*common start*/
	#carbonNeutral .cmnMargin1 {
		margin: 25px 0 0;
	}

	#carbonNeutral .cmnMargin2 {
		margin: 20px 0 0;
	}

	#carbonNeutral .cmnTableBlk {}

	#carbonNeutral .cmnTableBlk table {}

	#carbonNeutral .cmnTableBlk table thead *:first-child {
		width: 100px;
	}

	#carbonNeutral .cmnTableBlk table thead * {
		padding: 7px 15px !important;
	}

	#carbonNeutral .cmnTableBlk table thead *:not(:last-child) {}

	#carbonNeutral .cmnTableBlk table th {}

	#carbonNeutral .cmnTableBlk table td {}

	#carbonNeutral .cmnTableBlk table,
	#carbonNeutral .cmnTableBlk th,
	#carbonNeutral .cmnTableBlk td {}

	#carbonNeutral .cmnTableBlk table th,
	#carbonNeutral .cmnTableBlk table td {}

	#carbonNeutral .cmnTableBlk table * {}

	#carbonNeutral .cmnTableBlk table tbody * {
		font-size: 14px;
	}

	#carbonNeutral .cmnTableBlk table tbody th {
		padding: 15px 10px;
	}

	#carbonNeutral .cmnTableBlk table tbody td {
		padding: 15px 10px;
	}

	#carbonNeutral .cmnTableBlk table tbody td:not(:last-child) {}

	#carbonNeutral .cmnTableBlk table tbody td:last-child {}

	/*common end*/
	.carbonNeutral_wrap._section {}

	.carbonNeutral_wrap._section>*:first-child {
		padding: 60px 0 0 !important;
	}

	.carbonNeutral_wrap._section>*:not(:first-child) {
		padding: 60px 0 0 !important;
	}

	.carbonNeutral_wrap._section>*:last-child {
		padding: 60px 0 90px !important;
	}

	.carbonNeutral_bout {}

	.carbonNeutral_bout .inner {}

	.carbonNeutral_bout .blk {}

	.carbonNeutral_bout .headBlk {}

	.carbonNeutral_bout .head {}

	.carbonNeutral_bout .leadBlk {}

	.carbonNeutral_bout .lead {}

	.carbonNeutral_bout .mainBlk {
		margin: 30px 0 0;
	}

	.carbonNeutral_bout .mainGoalBlk {
		gap: 15px;
		padding: 20px 15px;
	}

	.carbonNeutral_bout .mainGoalMarc {
		width: 55px;
		font-size: 18px;
	}

	.carbonNeutral_bout .mainGoalTextBlk {}

	.carbonNeutral_bout .mainGoalTitle {
		font-size: 15px;
		font-weight: 700;
	}

	.carbonNeutral_bout .mainGoalDesc {
		transform: translate(-8px, 0);
		font-size: 1rem;
	}

	.carbonNeutral_bout .mainBoutBlk {
		margin: 40px 0 0;
	}

	.carbonNeutral_bout .mainBoutBlk>div {}

	.carbonNeutral_bout .mainBoutBlk>div:not(:first-child) {
		margin: 40px 0 0;
	}

	.carbonNeutral_bout .mainBoutHead {}

	.carbonNeutral_bout .mainBoutImgBlk {}

	.carbonNeutral_bout .mainBoutImgBlk img {
		min-width: 700px;
	}

	.carbonNeutral_bout .mainBoutBlk>div._item1 .mainTableBlk {}

	.carbonNeutral_bout .mainBoutBlk>div._item1 .mainTableBlk table {
		min-width: 550px;
	}

	.carbonNeutral_bout .mainBoutBlk>div._item1 .mainTableBlk table thead * {}

	.carbonNeutral_bout .mainBoutBlk>div._item2 .mainTableBlk table thead *,
	.carbonNeutral_bout .mainBoutBlk>div._item3 .mainTableBlk table thead * {}

	.carbonNeutral_bout .mainBoutBlk>div._item1 .mainTableBlk table thead *:first-child {
		width: 100px;
	}

	.carbonNeutral_bout .mainBoutBlk>div._item2 .mainTableBlk table thead *:first-child {
		width: 115px !important;
	}

	.carbonNeutral_bout .mainBoutBlk>div._item3 .mainTableBlk table thead *:first-child {
		width: 115px !important;
	}

	.carbonNeutral_bout .mainBoutBlk>div._item1 .mainTableBlk table thead *:last-child {}

	.carbonNeutral_bout .mainBoutBlk>div._item1 .mainTableBlk table tbody td {}

	.carbonNeutral_bout .mainAchievementBlk {
		margin: 30px auto 0;
	}

	.carbonNeutral_bout .mainAchievementHead {
		padding: 4px 0;
		font-size: 18px;
	}

	.carbonNeutral_bout .mainAchievementTextBlk {}

	.carbonNeutral_bout .mainAchievementTextBlk p {
		font-size: 24px;
	}

	.carbonNeutral_bout .mainAchievementTextBlk p span {
		font-size: 16px;
	}

	.carbonNeutral_buchieco {}

	.carbonNeutral_buchieco .inner {}

	.carbonNeutral_buchieco .blk {}

	.carbonNeutral_buchieco .headBlk {}

	.carbonNeutral_buchieco .head {}

	.carbonNeutral_buchieco .leadBlk {}

	.carbonNeutral_buchieco .lead {}

	.carbonNeutral_buchieco .mainBlk {
		margin: 30px 0 0;
	}

	.carbonNeutral_buchieco .mainImgBlk {}

	.carbonNeutral_buchieco .mainImgBlk img {
		width: 100%;
		max-width: 250px;
	}

	.carbonNeutral_buchieco .mainLinkBlk {
		margin: 35px 0 0;
	}

	.carbonNeutral_buchieco .mainLinkBlk a {
		width: 100%;
		max-width: var(--maxWidthXS);
		font-size: 16px;
		line-height: 55px;
		border-radius: 5px;
	}

	.carbonNeutral_buchieco .mainLinkBlk a span {
		padding-right: 28px;
		background-size: 15px;
	}

	.carbonNeutral_surroundingPerformance {}

	.carbonNeutral_surroundingPerformance .inner {}

	.carbonNeutral_surroundingPerformance .blk {}

	.carbonNeutral_surroundingPerformance .headBlk {}

	.carbonNeutral_surroundingPerformance .head {}

	.carbonNeutral_surroundingPerformance .mainBlk {
		flex-flow: column-reverse;
		gap: 25px;
	}

	.carbonNeutral_surroundingPerformance .mainTextBlk {
		gap: 30px;
	}

	.carbonNeutral_surroundingPerformance .mainTextBlk p {}

	.carbonNeutral_surroundingPerformance .mainTextLinkBlk {
		text-align: center;
	}

	.carbonNeutral_surroundingPerformance .mainTextLinkBlk a {}

	.carbonNeutral_surroundingPerformance .mainImgBlk {
		width: 100%;
		text-align: center;
	}

	.carbonNeutral_surroundingPerformance .mainImgBlk img {
		width: 100%;
		max-width: var(--maxWidthS);
	}
}

/*
sdgs
====================================*/
/*common start*/
/*common end*/
.sdgs_outline {}

.sdgs_outline .inner {}

.sdgs_outline .blk {}

.sdgs_outline .headBlk {}

.sdgs_outline .head {
	font-size: 32px;
	text-align: center;
	font-weight: 700;
}

.sdgs_outline .imgBlk {
	margin: 35px 0 0;
	text-align: center;
}

.sdgs_outline .imgBlk img {
	width: min(558px, 100%);
}

.sdgs_wrap._bout {
	padding: 70px 0;
	display: grid;
	gap: 40px;
	background: #d2e6fa;
}

.sdgs_bout {
	padding: 0;
}

.sdgs_bout .inner {}

.sdgs_bout .blk {
	padding: 35px 50px 50px;
	border-radius: 15px;
	box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.16);
	background: #fff;
}

.sdgs_bout .headBlk {}

.sdgs_bout .head {
	position: relative;
	padding-bottom: 7px;
	font-size: 25px;
	text-align: center;
	font-weight: 700;
}

.sdgs_bout .head::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	display: inline-block;
	width: 100%;
	height: 2px;
	background-image: linear-gradient(to right, #99BFEF 50%, transparent 50%);
	background-size: 5px;
}

.sdgs_bout .leadBlk {
	margin: 20px 0 0;
}

.sdgs_bout .lead {
	font-size: 15px;
}

.sdgs_bout._overview .blk {
	padding: 60px 90px;
}

.sdgs_bout._overview .headBlk {}

.sdgs_bout._overview .head {
	padding: 0;
	font-size: 32px;
}

.sdgs_bout._overview .head::before {
	display: none;
	font-size: 32px;
}

.sdgs_bout._overview .leadBlk {
	margin: 12px 0 0;
}

.sdgs_bout._overview .lead {
	text-align: center;
}

.sdgs_bout._overview .imgBlk {
	margin: 30px 0 0;
}

.sdgs_bout._overview .imgBlk img {}

.sdgs_bout .mainBlk {
	margin: 20px 0 0;
}

.sdgs_bout .mainBlk table {
	width: 100%;
	table-layout: auto;
}

.sdgs_bout .mainBlk table th {
	color: #fff;
	font-weight: 500;
	background: #458be2;
	padding: 10px 17px;
}

.sdgs_bout .mainBlk table th._col1 {
	width: 206px;
}

.sdgs_bout .mainBlk table th._col2 {
	width: 426px;
}

.sdgs_bout .mainBlk table th._col3 {}

.sdgs_bout .mainBlk table td {
	padding: 15px 17px;
}

.sdgs_bout .mainBlk table th,
.sdgs_bout .mainBlk table td {
	border: 1px solid #68a0e5;
	line-height: 1.8;
}

.sdgs_bout .mainBlk table td:nth-child(1) span {
	display: block;
	font-size: 13px;
}

.sdgs_bout .mainBlk table td p {
	margin-left: 1em;
	text-indent: -1em;
}

.sdgs_bout .mainBlk table td:nth-child(2) span {
	color: #7EB7F0;
}

.sdgs_bout .mainBlk table td._icon {
	padding: initial;
	vertical-align: middle;
}

.sdgs_bout .mainBlk table td .mainIconBlk {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.sdgs_bout .mainBlk table td .mainIconBlk img {}

.sdgs_bout .mainBlk table th._col3,
.sdgs_bout .mainBlk table td .mainIconBlk {
	padding: 10px 37px;
}

@media screen and (max-width: 1024px) {

	/*common start*/
	/*common end*/
	.sdgs_outline {}

	.sdgs_outline .inner {}

	.sdgs_outline .blk {}

	.sdgs_outline .headBlk {}

	.sdgs_outline .head {
		font-size: 20px;
	}

	.sdgs_wrap._bout {
		padding: 60px 0;
		gap: 30px;
	}

	.sdgs_bout {
		padding: 0 !important;
	}

	.sdgs_bout .inner {}

	.sdgs_bout .blk {
		padding: 25px 15px 35px;
		border-radius: 10px;
	}

	.sdgs_bout .headBlk {}

	.sdgs_bout .head {
		font-size: 20px;
	}

	.sdgs_bout .leadBlk {}

	.sdgs_bout .lead {
		font-size: 1rem;
	}

	.sdgs_bout._overview .blk {
		padding: 25px 15px;
	}

	.sdgs_bout._overview .headBlk {}

	.sdgs_bout._overview .head {
		font-size: 20px;
	}

	.sdgs_bout._overview .head::before {}

	.sdgs_bout._overview .leadBlk {}

	.sdgs_bout._overview .lead {
		text-align: justify;
	}

	.sdgs_bout._overview .imgBlk {}

	.sdgs_bout._overview .imgBlk img {}

	.sdgs_bout .mainBlk {}

	.sdgs_bout .mainBlk table {
		display: table !important;
		width: 100%;
	}

	.sdgs_bout .mainBlk table th {
		padding: 15px 10px;
	}

	.sdgs_bout .mainBlk table th._col1 {
		width: 38%;
		max-width: 200px;
	}

	.sdgs_bout .mainBlk table th._col2 {
		width: initial;
	}

	.sdgs_bout .mainBlk table th._col3 {
		width: 100%;
	}

	.sdgs_bout .mainBlk table td {
		padding: 15px 10px;
	}

	.sdgs_bout .mainBlk table th,
	.sdgs_bout .mainBlk table td {}

	.sdgs_bout .mainBlk table td:nth-child(1) span {}

	.sdgs_bout .mainBlk table td p {}

	.sdgs_bout .mainBlk table td:nth-child(2) span {}

	.sdgs_bout .mainBlk table td._icon {}

	.sdgs_bout .mainBlk table td .mainIconBlk {}

	.sdgs_bout .mainBlk table td .mainIconBlk img {}

	.sdgs_bout .mainBlk table th._col3,
	.sdgs_bout .mainBlk table td .mainIconBlk {
		max-width: 400px;
		margin: auto;
		padding: 15px 10px;
	}
}

/*
surroundingPerformance
====================================*/
/*common start*/
#surroundingPerformance .cmnMargin1 {
	margin: 22px 0 0;
}

#surroundingPerformance .cmnMargin2 {
	margin: 25px 0 0;
}

/*common end*/
.surroundingPerformance_outline {
	padding: 90px 0 0;
}

.surroundingPerformance_outline .inner {}

.surroundingPerformance_outline .blk {}

.surroundingPerformance_outline .headBlk {}

.surroundingPerformance_outline .head {
	font-size: 32px;
	text-align: center;
	font-weight: 700;
}

.surroundingPerformance_outline .leadBlk {
	margin: 20px 0 0;
}

.surroundingPerformance_outline .mainBlk {
	align-items: center;
	gap: 50px;
	margin: 50px auto 0;
}

.surroundingPerformance_outline .mainItemBlk1 {
	flex: 1;
}

.surroundingPerformance_outline .mainTitle1 {
	line-height: 63px;
	text-align: center;
	font-size: 29px;
	color: #fff;
	font-weight: 600;
	background: #7eb7f0;
}

.surroundingPerformance_outline .mainContentBlk {
	display: grid;
	gap: 10px;
	height: 477px;
	padding: 24px 40px;
	background: var(--contentsBg);
}

.surroundingPerformance_outline .mainItemBlk1._input .mainContentBlk {
	grid-template-rows: repeat(3, 1fr);
}

.surroundingPerformance_outline .mainItemBlk1._output .mainContentBlk {
	grid-template-rows: repeat(2, 1fr);
}

.surroundingPerformance_outline .mainContentBlk>div {
	padding: 9px 0;
	border-radius: 20px;
	background: #d2e6fa;
}

.surroundingPerformance_outline .mainItemBlk1._output .mainContentBlk>div {
	padding: 18px 0;
}

.surroundingPerformance_outline .mainText1 {
	font-size: 25px;
	line-height: 1.4;
	text-align: center;
	font-weight: 600;
}

.surroundingPerformance_outline .mainImgBlk {
	text-align: center;
}

.surroundingPerformance_outline .mainItemBlk1._input .mainImgBlk {
	padding: 11px 0;
}

.surroundingPerformance_outline .mainItemBlk1._output .mainImgBlk {
	margin: 14px 0 0;
}

.surroundingPerformance_outline .mainImgBlk img {}

.surroundingPerformance_outline .mainItemBlk1._input .mainImgBlk img {
	width: 60px;
}

.surroundingPerformance_outline .mainItemBlk1._output .mainImgBlk img {
	width: 90px;
}

.surroundingPerformance_outline .mainItemBlk2 {
	position: relative;
	width: 350px;
	height: 350px;
	padding: 44px;
	border-radius: 50%;
	background: var(--contentsBg);
}

.surroundingPerformance_outline .mainItemBlk2 img {
	position: absolute;
	top: 50%;
	right: 100%;
	transform: translate(0%, -50%);
	z-index: 1;
	display: inline-block;
	width: 80px;
}

.surroundingPerformance_outline .mainItemBlk2 img:last-child {
	left: 100%;
}

.surroundingPerformance_outline .mainItemBlk2 p {
	display: grid;
	place-items: center;
	height: 100%;
	font-size: 32px;
	line-height: 50px;
	text-align: center;
	font-weight: 700;
	border-radius: 50%;
	background: radial-gradient(circle at center, #fff 0%, #d2e6fa 100%);
}

.surroundingPerformance_carbonNeutral {
	padding: 140px 0 0;
}

.surroundingPerformance_carbonNeutral .inner {}

.surroundingPerformance_carbonNeutral .blk {}

.surroundingPerformance_carbonNeutral .headBlk {}

.surroundingPerformance_carbonNeutral .head {}

.surroundingPerformance_carbonNeutral .mainBlk {
	align-items: stretch;
	gap: 60px;
	margin: 20px 0 0;
}

.surroundingPerformance_carbonNeutral .mainTextBlk {
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	flex: 1;
}

.surroundingPerformance_carbonNeutral .mainTextBlk p {}

.surroundingPerformance_carbonNeutral .mainTextLinkBlk {}

.surroundingPerformance_carbonNeutral .mainTextLinkBlk a {}

.surroundingPerformance_carbonNeutral .mainImgBlk {
	width: min(550px, 100%);
}

.surroundingPerformance_carbonNeutral .mainImgBlk img {}

.surroundingPerformance_zeroEmissions {
	padding: 140px 0 0;
}

.surroundingPerformance_zeroEmissions .inner {}

.surroundingPerformance_zeroEmissions .blk {}

.surroundingPerformance_zeroEmissions .headBlk {}

.surroundingPerformance_zeroEmissions .head {}

.surroundingPerformance_zeroEmissions .leadBlk {}

.surroundingPerformance_zeroEmissions .lead {}

.surroundingPerformance_zeroEmissions .mainBlk {}

.surroundingPerformance_zeroEmissions .mainBlk>div {
	margin: 90px 0 0;
}

.surroundingPerformance_zeroEmissions .main1Blk {}

.surroundingPerformance_zeroEmissions .main1Head {}

.surroundingPerformance_zeroEmissions .main1ImgBlk {}

.surroundingPerformance_zeroEmissions .main1ImgBlk img {}

.surroundingPerformance_zeroEmissions .main2Blk {}

.surroundingPerformance_zeroEmissions .main2Head {}

.surroundingPerformance_zeroEmissions .main2Lead {}

.surroundingPerformance_zeroEmissions .main2MainBlk {
	align-items: stretch;
	gap: 30px;
	margin: 35px 0 0;
}

.surroundingPerformance_zeroEmissions .main2MainTextBlk {
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	flex: 1;
}

.surroundingPerformance_zeroEmissions .main2MainTitle {
	font-weight: bold;
	font-size: 17px;
}

.surroundingPerformance_zeroEmissions .main2MainDesc {
	margin: 8px 0 0;
}

.surroundingPerformance_zeroEmissions .main2MainLinkBlk {
	margin: 45px 0 0;
}

.surroundingPerformance_zeroEmissions .main2MainLinkBlk a {}

.surroundingPerformance_zeroEmissions .main2MainImgBlk {
	width: min(550px, 100%);
	padding: 37px 0 0;
}

.surroundingPerformance_zeroEmissions .main2MainImgBlk img {}

.surroundingPerformance_chemicalSubstance {
	padding: 140px 0 0;
}

.surroundingPerformance_chemicalSubstance .inner {}

.surroundingPerformance_chemicalSubstance .blk {}

.surroundingPerformance_chemicalSubstance .headBlk {}

.surroundingPerformance_chemicalSubstance .head {}

.surroundingPerformance_chemicalSubstance .leadBlk {}

.surroundingPerformance_chemicalSubstance .lead {}

.surroundingPerformance_chemicalSubstance .mainBlk {}

.surroundingPerformance_chemicalSubstance .main1Blk {}

.surroundingPerformance_chemicalSubstance .main1Head {}

.surroundingPerformance_chemicalSubstance .main1Lead {}

.surroundingPerformance_chemicalSubstance .main1MainBlk {
	margin: 40px 0 0;
}

.surroundingPerformance_chemicalSubstance .main1MainTitle {
	font-weight: bold;
	font-size: 17px;
}

.surroundingPerformance_chemicalSubstance .main1MainDesc {
	margin: 8px 0 0;
}

.surroundingPerformance_chemicalSubstance .main2Blk {
	margin: 90px 0 0;
}

.surroundingPerformance_chemicalSubstance .main2Head {}

.surroundingPerformance_chemicalSubstance .main2Title {
	display: flex;
	justify-content: space-between;
	font-size: 19px;
	font-weight: 600;
}

.surroundingPerformance_chemicalSubstance .main2TableBlk {
	position: relative;
	margin: 7px 0 0;
}

.surroundingPerformance_chemicalSubstance .main2TableBlk>span {
	position: absolute;
	top: -30px;
	right: 0px;
}

.surroundingPerformance_chemicalSubstance .main2TableBlk table {
	width: 100%;
	table-layout: fixed;
}

.surroundingPerformance_chemicalSubstance .main2TableBlk .cmnTableBlk table th {}

.surroundingPerformance_chemicalSubstance .main2TableBlk .cmnTableBlk table td {}

.surroundingPerformance_chemicalSubstance .main2TableBlk table th,
.surroundingPerformance_chemicalSubstance .main2TableBlk table td {
	vertical-align: middle;
}

.surroundingPerformance_chemicalSubstance .main2TableBlk table thead *:first-child {
	width: 224px;
}

.surroundingPerformance_chemicalSubstance .main2TableBlk table thead *:last-child {
	width: 167px;
}

.surroundingPerformance_chemicalSubstance .main2TableBlk table thead * {
	padding: 7px 0px !important;
	color: #fff;
	text-align: center;
	background: #007ad3;
}

.surroundingPerformance_chemicalSubstance .main2TableBlk table thead *:not(:last-child) {
	border-right: 1px solid #fff;
}

.surroundingPerformance_chemicalSubstance .main2TableBlk table tbody * {
	padding: 10px 29px;
	font-size: 16px;
}

.surroundingPerformance_chemicalSubstance .main2TableBlk table tbody th {
	color: #fff;
	border-bottom: 1px solid #fff;
	border-right: solid 1px #c2c6cb;
	background: #3ea7f4;
}

.surroundingPerformance_chemicalSubstance .main2TableBlk table tbody td {
	text-align: right;
	border-bottom: 1px solid #c2c6cb;
}

.surroundingPerformance_chemicalSubstance .main2TableBlk table tbody tr:nth-child(even) td {
	background: #f0f4f7;
}

.surroundingPerformance_chemicalSubstance .main2TableBlk table tbody td:not(:last-child) {
	border-right: solid 1px #c2c6cb;
}

.surroundingPerformance_chemicalSubstance .main2TableBlk table tbody td:last-child {
	font-weight: 600;
	padding: 10px 50px;
}

.surroundingPerformance_chemicalSubstance .main2TableBlk table tbody td._plus:last-child {
	background: #d8ecff;
}

.surroundingPerformance_chemicalSubstance .main2TableBlk table tbody td._minus:last-child {
	background: #feedff;
}

.surroundingPerformance_chemicalSubstance .main2TableBlk table tbody tr:last-child * {
	background: #ffecc1 !important;
}

.surroundingPerformance_chemicalSubstance .main2TableBlk table tbody tr:last-child td:last-child {
	background: #ffd77b !important;
}

.surroundingPerformance_chemicalSubstance .main2TableBlk table tbody tr:last-child th {
	color: var(--textColor);
	border-right: solid 1px #c2c6cb;
	border-bottom: 1px solid #c2c6cb;
}

.surroundingPerformance_waterResources {
	padding: 140px 0;
}

.surroundingPerformance_waterResources .inner {}

.surroundingPerformance_waterResources .blk {}

.surroundingPerformance_waterResources .headBlk {}

.surroundingPerformance_waterResources .head {}

.surroundingPerformance_waterResources .leadBlk {}

.surroundingPerformance_waterResources .lead {}

.surroundingPerformance_waterResources .mainBlk {
	margin: 60px 0 0;
}

.surroundingPerformance_waterResources .mainBlk>div {
	margin: 90px 0 0;
}

.surroundingPerformance_waterResources .mainBlk>div:first-child {
	margin: initial;
}

.surroundingPerformance_waterResources .mainHead {}

.surroundingPerformance_waterResources .mainLead {}

.surroundingPerformance_waterResources .mainImgBlk {}

.surroundingPerformance_waterResources .mainImgBlk img {}

@media screen and (max-width: 1024px) {

	/*common start*/
	#surroundingPerformance .cmnMargin1 {
		margin: 25px 0 0;
	}

	#surroundingPerformance .cmnMargin2 {
		margin: 20px 0 0;
	}

	/*common end*/
	.surroundingPerformance_outline {
		padding: 60px 0 0 !important;
	}

	.surroundingPerformance_outline .inner {}

	.surroundingPerformance_outline .blk {}

	.surroundingPerformance_outline .headBlk {}

	.surroundingPerformance_outline .head {
		font-size: 20px;
	}

	.surroundingPerformance_outline .leadBlk {}

	.surroundingPerformance_outline .lead {
		text-align: justify;
	}

	.surroundingPerformance_outline .mainBlk {
		flex-flow: column;
		gap: 56px;
		max-width: var(--maxWidthS);
		margin: 30px auto 0;
	}

	.surroundingPerformance_outline .mainItemBlk1 {
		width: 100%;
		flex: initial;
	}

	.surroundingPerformance_outline .mainTitle1 {
		line-height: 2.2;
		font-size: 18px;
	}

	.surroundingPerformance_outline .mainContentBlk {
		height: initial;
		padding: 15px;
	}

	.surroundingPerformance_outline .mainItemBlk1._input .mainContentBlk {
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: initial;
	}

	.surroundingPerformance_outline .mainItemBlk1._output .mainContentBlk {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: initial;
	}

	.surroundingPerformance_outline .mainContentBlk>div {
		border-radius: 15px;
	}

	.surroundingPerformance_outline .mainItemBlk1._output .mainContentBlk>div {
		padding: 8px 0;
	}

	.surroundingPerformance_outline .mainText1 {
		display: grid;
		place-items: center;
		font-size: 16px;
	}

	.surroundingPerformance_outline .mainItemBlk1._output .mainText1 {
		min-height: 51px;
	}

	.surroundingPerformance_outline .mainImgBlk {}

	.surroundingPerformance_outline .mainItemBlk1._input .mainImgBlk {
		padding: 5px 0;
	}

	.surroundingPerformance_outline .mainItemBlk1._output .mainImgBlk {
		margin: 5px 0 0;
	}

	.surroundingPerformance_outline .mainImgBlk img {}

	.surroundingPerformance_outline .mainItemBlk1._input .mainImgBlk img {}

	.surroundingPerformance_outline .mainItemBlk1._output .mainImgBlk img {}

	.surroundingPerformance_outline .mainItemBlk2 {
		width: 250px;
		height: 250px;
		padding: 30px;
	}

	.surroundingPerformance_outline .mainItemBlk2 img {
		top: initial;
		left: 50%;
		bottom: 100%;
		right: initial;
		transform: translate(-50%, 23px) rotate(90deg);
		width: 55px;
	}

	.surroundingPerformance_outline .mainItemBlk2 img:last-child {
		top: 100%;
		left: 50%;
		bottom: initial;
		transform: translate(-50%, -23px) rotate(90deg);
	}

	.surroundingPerformance_outline .mainItemBlk2 p {
		font-size: 24px;
		line-height: 36px;
	}

	.surroundingPerformance_carbonNeutral {
		padding: 60px 0 0 !important;
	}

	.surroundingPerformance_carbonNeutral .inner {}

	.surroundingPerformance_carbonNeutral .blk {}

	.surroundingPerformance_carbonNeutral .headBlk {}

	.surroundingPerformance_carbonNeutral .head {}

	.surroundingPerformance_carbonNeutral .mainBlk {
		flex-flow: column-reverse;
		gap: 25px;
	}

	.surroundingPerformance_carbonNeutral .mainTextBlk {
		gap: 30px;
	}

	.surroundingPerformance_carbonNeutral .mainTextBlk p {}

	.surroundingPerformance_carbonNeutral .mainTextLinkBlk {
		text-align: center;
	}

	.surroundingPerformance_carbonNeutral .mainTextLinkBlk a {}

	.surroundingPerformance_carbonNeutral .mainImgBlk {
		width: 100%;
		text-align: center;
	}

	.surroundingPerformance_carbonNeutral .mainImgBlk img {
		width: 100%;
		max-width: var(--maxWidthS);
	}

	.surroundingPerformance_zeroEmissions {
		padding: 60px 0 0 !important;
	}

	.surroundingPerformance_zeroEmissions .inner {}

	.surroundingPerformance_zeroEmissions .blk {}

	.surroundingPerformance_zeroEmissions .headBlk {}

	.surroundingPerformance_zeroEmissions .head {}

	.surroundingPerformance_zeroEmissions .leadBlk {}

	.surroundingPerformance_zeroEmissions .lead {}

	.surroundingPerformance_zeroEmissions .mainBlk {}

	.surroundingPerformance_zeroEmissions .mainBlk>div {
		margin: 40px 0 0;
	}

	.surroundingPerformance_zeroEmissions .main1Blk {}

	.surroundingPerformance_zeroEmissions .main1Head {}

	.surroundingPerformance_zeroEmissions .main1ImgBlk {}

	.surroundingPerformance_zeroEmissions .main1ImgBlk img {
		width: 100%;
		min-width: 700px;
	}

	.surroundingPerformance_zeroEmissions .main2Blk {}

	.surroundingPerformance_zeroEmissions .main2Head {}

	.surroundingPerformance_zeroEmissions .main2Lead {}

	.surroundingPerformance_zeroEmissions .main2MainBlk {
		flex-flow: column;
		gap: 35px;
		margin: 30px 0 0;
	}

	.surroundingPerformance_zeroEmissions .main2MainTextBlk {}

	.surroundingPerformance_zeroEmissions .main2MainTitle {
		font-size: 15px;
	}

	.surroundingPerformance_zeroEmissions .main2MainDesc {}

	.surroundingPerformance_zeroEmissions .main2MainLinkBlk {
		margin: 30px 0 0;
		text-align: center;
	}

	.surroundingPerformance_zeroEmissions .main2MainLinkBlk a {}

	.surroundingPerformance_zeroEmissions .main2MainImgBlk {
		width: 100%;
		padding: 0;
		text-align: center;
	}

	.surroundingPerformance_zeroEmissions .main2MainImgBlk img {
		max-width: var(--maxWidthS);
		width: 100%;
	}

	.surroundingPerformance_chemicalSubstance {
		padding: 60px 0 0 !important;
	}

	.surroundingPerformance_chemicalSubstance .inner {}

	.surroundingPerformance_chemicalSubstance .blk {}

	.surroundingPerformance_chemicalSubstance .headBlk {}

	.surroundingPerformance_chemicalSubstance .head {}

	.surroundingPerformance_chemicalSubstance .leadBlk {}

	.surroundingPerformance_chemicalSubstance .lead {}

	.surroundingPerformance_chemicalSubstance .mainBlk {}

	.surroundingPerformance_chemicalSubstance .main1Blk {}

	.surroundingPerformance_chemicalSubstance .main1Head {}

	.surroundingPerformance_chemicalSubstance .main1Lead {}

	.surroundingPerformance_chemicalSubstance .main1MainBlk {
		margin: 30px 0 0;
	}

	.surroundingPerformance_chemicalSubstance .main1MainTitle {
		font-size: 15px;
	}

	.surroundingPerformance_chemicalSubstance .main1MainDesc {}

	.surroundingPerformance_chemicalSubstance .main2Blk {
		margin: 40px 0 0;
	}

	.surroundingPerformance_chemicalSubstance .main2Head {}

	.surroundingPerformance_chemicalSubstance .main2Title {
		font-size: 15px;
	}

	.surroundingPerformance_chemicalSubstance .main2TableBlk {
		margin: 5px 0 0;
	}

	.surroundingPerformance_chemicalSubstance .main2TableBlk>span {
		position: initial;
		display: block;
		padding: 0 0 5px;
		text-align: right;
	}

	.surroundingPerformance_chemicalSubstance .main2TableBlk table {
		min-width: 700px;
	}

	.surroundingPerformance_chemicalSubstance .main2TableBlk .cmnTableBlk table th {}

	.surroundingPerformance_chemicalSubstance .main2TableBlk .cmnTableBlk table td {}

	.surroundingPerformance_chemicalSubstance .main2TableBlk table th,
	.surroundingPerformance_chemicalSubstance .main2TableBlk table td {}

	.surroundingPerformance_chemicalSubstance .main2TableBlk table thead *:first-child {
		width: 115px;
	}

	.surroundingPerformance_chemicalSubstance .main2TableBlk table thead *:last-child {
		width: 90px;
	}

	.surroundingPerformance_chemicalSubstance .main2TableBlk table thead * {}

	.surroundingPerformance_chemicalSubstance .main2TableBlk table thead *:not(:last-child) {}

	.surroundingPerformance_chemicalSubstance .main2TableBlk table tbody * {
		padding: 10px 15px;
		font-size: 1rem;
	}

	.surroundingPerformance_chemicalSubstance .main2TableBlk table tbody th {}

	.surroundingPerformance_chemicalSubstance .main2TableBlk table tbody td {}

	.surroundingPerformance_chemicalSubstance .main2TableBlk table tbody tr:nth-child(even) td {}

	.surroundingPerformance_chemicalSubstance .main2TableBlk table tbody td:not(:last-child) {}

	.surroundingPerformance_chemicalSubstance .main2TableBlk table tbody td:last-child {
		padding: 10px 15px;
	}

	.surroundingPerformance_chemicalSubstance .main2TableBlk table tbody td._plus:last-child {}

	.surroundingPerformance_chemicalSubstance .main2TableBlk table tbody td._minus:last-child {}

	.surroundingPerformance_chemicalSubstance .main2TableBlk table tbody tr:last-child * {}

	.surroundingPerformance_chemicalSubstance .main2TableBlk table tbody tr:last-child td:last-child {}

	.surroundingPerformance_chemicalSubstance .main2TableBlk table tbody tr:last-child th {}

	.surroundingPerformance_waterResources {
		padding: 60px 0 90px !important;
	}

	.surroundingPerformance_waterResources .inner {}

	.surroundingPerformance_waterResources .blk {}

	.surroundingPerformance_waterResources .headBlk {}

	.surroundingPerformance_waterResources .head {}

	.surroundingPerformance_waterResources .leadBlk {}

	.surroundingPerformance_waterResources .lead {}

	.surroundingPerformance_waterResources .mainBlk {}

	.surroundingPerformance_waterResources .mainBlk>div {
		margin: 40px 0 0;
	}

	.surroundingPerformance_waterResources .mainHead {}

	.surroundingPerformance_waterResources .mainLead {}

	.surroundingPerformance_waterResources .mainImgBlk {}

	.surroundingPerformance_waterResources .mainImgBlk img {
		min-width: 700px;
	}
}

/*
welfareNurturing
====================================*/
/*common start*/
#welfareNurturing .cmnMargin1 {
	margin: 22px 0 0;
}

#welfareNurturing .cmnMargin2 {
	margin: 25px 0 0;
}

/*common end*/
.welfareNurturing_outline {
	padding: 90px 0 0;
}

.welfareNurturing_outline .inner {}

.welfareNurturing_outline .blk {}

.welfareNurturing_outline .headBlk {}

.welfareNurturing_outline .head {
	font-size: 32px;
	text-align: center;
	font-weight: 700;
}

.welfareNurturing_outline .leadBlk {
	margin: 20px 0 0;
}

.welfareNurturing_outline .lead {}

.welfareNurturing_zeh {
	padding: 140px 0 0;
}

.welfareNurturing_zeh .inner {}

.welfareNurturing_zeh .blk {}

.welfareNurturing_zeh .headBlk {}

.welfareNurturing_zeh .head {}

.welfareNurturing_zeh .mainBlk {
	align-items: stretch;
	gap: 60px;
}

.welfareNurturing_zeh .mainTextBlk {
	justify-content: space-between;
	flex: 1;
}

.welfareNurturing_zeh .mainTextBlk p {}

.welfareNurturing_zeh .mainImgBlk {
	width: min(550px, 100%);
}

.welfareNurturing_zeh .mainImgBlk img {}

.welfareNurturing_motivationSystem {
	padding: 140px 0 0;
}

.welfareNurturing_motivationSystem .inner {}

.welfareNurturing_motivationSystem .blk {}

.welfareNurturing_motivationSystem .headBlk {}

.welfareNurturing_motivationSystem .head {}

.welfareNurturing_motivationSystem .leadBlk {}

.welfareNurturing_motivationSystem .lead {}

.welfareNurturing_motivationSystem .mainBlk {}

.welfareNurturing_motivationSystem .mainBlk>div {
	margin: 90px 0 0;
}

.welfareNurturing_motivationSystem .main1Blk {}

.welfareNurturing_motivationSystem .main1Head {}

.welfareNurturing_motivationSystem .main1Lead {}

.welfareNurturing_motivationSystem .main2Blk {}

.welfareNurturing_motivationSystem .main2Head {}

.welfareNurturing_motivationSystem .main2Lead {}

.welfareNurturing_yhm {
	padding: 140px 0 140px;
}

.welfareNurturing_yhm .inner {}

.welfareNurturing_yhm .blk {}

.welfareNurturing_yhm .headBlk {}

.welfareNurturing_yhm .head {}

.welfareNurturing_yhm .mainBlk {
	align-items: stretch;
	gap: 60px;
}

.welfareNurturing_yhm .mainTextBlk {
	justify-content: space-between;
	flex: 1;
}

.welfareNurturing_yhm .mainTextBlk p {}

.welfareNurturing_yhm .mainImgBlk {
	width: min(550px, 100%);
}

.welfareNurturing_yhm .mainImgBlk img {}

@media screen and (max-width: 1024px) {

	/*common start*/
	#welfareNurturing .cmnMargin1 {
		margin: 25px 0 0;
	}

	#welfareNurturing .cmnMargin2 {
		margin: 20px 0 0;
	}

	/*common end*/
	.welfareNurturing_outline {
		padding: 60px 0 0 !important;
	}

	.welfareNurturing_outline .inner {}

	.welfareNurturing_outline .blk {}

	.welfareNurturing_outline .headBlk {}

	.welfareNurturing_outline .head {
		font-size: 20px;
	}

	.welfareNurturing_outline .leadBlk {}

	.welfareNurturing_outline .lead {
		text-align: justify;
	}

	.welfareNurturing_zeh {
		padding: 60px 0 0 !important;
	}

	.welfareNurturing_zeh .inner {}

	.welfareNurturing_zeh .blk {}

	.welfareNurturing_zeh .headBlk {}

	.welfareNurturing_zeh .head {}

	.welfareNurturing_zeh .mainBlk {
		gap: 30px;
	}

	.welfareNurturing_zeh .mainTextBlk {}

	.welfareNurturing_zeh .mainTextBlk p {}

	.welfareNurturing_zeh .mainImgBlk {
		width: 100%;
		text-align: center;
	}

	.welfareNurturing_zeh .mainImgBlk img {
		width: 100%;
		max-width: var(--maxWidthS);
	}

	.welfareNurturing_motivationSystem {
		padding: 60px 0 0 !important;
	}

	.welfareNurturing_motivationSystem .inner {}

	.welfareNurturing_motivationSystem .blk {}

	.welfareNurturing_motivationSystem .headBlk {}

	.welfareNurturing_motivationSystem .head {}

	.welfareNurturing_motivationSystem .leadBlk {}

	.welfareNurturing_motivationSystem .lead {}

	.welfareNurturing_motivationSystem .mainBlk {}

	.welfareNurturing_motivationSystem .mainBlk>div {
		margin: 40px 0 0;
	}

	.welfareNurturing_motivationSystem .main1Blk {}

	.welfareNurturing_motivationSystem .main1Head {}

	.welfareNurturing_motivationSystem .main1Lead {}

	.welfareNurturing_motivationSystem .main2Blk {}

	.welfareNurturing_motivationSystem .main2Head {}

	.welfareNurturing_motivationSystem .main2Lead {}

	.welfareNurturing_yhm {
		padding: 60px 0 90px !important;
	}

	.welfareNurturing_yhm .inner {}

	.welfareNurturing_yhm .blk {}

	.welfareNurturing_yhm .headBlk {}

	.welfareNurturing_yhm .head {}

	.welfareNurturing_yhm .mainBlk {
		gap: 30px;
	}

	.welfareNurturing_yhm .mainTextBlk p {}

	.welfareNurturing_yhm .mainImgBlk {
		width: 100%;
		text-align: center;
	}

	.welfareNurturing_yhm .mainImgBlk img {
		width: 100%;
		max-width: var(--maxWidthS);
	}
}

/*
society
====================================*/
/*common start*/
#society .cmnMargin1 {
	margin: 22px 0 0;
}

#society .cmnMargin2 {
	margin: 25px 0 0;
}

/*common end*/
.society_outline {
	padding: 90px 0 0;
}

.society_outline .inner {}

.society_outline .blk {}

.society_outline .headBlk {}

.society_outline .head {
	font-size: 32px;
	text-align: center;
	font-weight: 700;
}

.society_outline .leadBlk {
	margin: 20px 0 0;
}

.society_outline .lead {}

.society_socialContribution {
	padding: 140px 0 0;
}

.society_socialContribution .inner {}

.society_socialContribution .blk {}

.society_socialContribution .headBlk {}

.society_socialContribution .head {}

.society_socialContribution .leadBlk {}

.society_socialContribution .lead {}

.society_socialContribution .mainBlk {}

.society_socialContribution .mainBlk>div {}

.society_socialContribution .mainBlk>div:not(:first-child) {
	margin: 90px 0 0;
}

.society_socialContribution .main1Blk {}

.society_socialContribution .main1Head {}

.society_socialContribution .main1MainBlk {
	align-items: stretch;
	gap: 60px;
}

.society_socialContribution .main1MainTextBlk {
	flex: 1;
}

.society_socialContribution .main1MainTitle {
	font-weight: bold;
	font-size: 17px;
}

.society_socialContribution .main1MainDesc {}

.society_socialContribution .main1MainImgBlk {
	width: min(550px, 100%);
}

.society_socialContribution .main1MainImgBlk img {}

.society_socialContribution .main2Blk {}

.society_socialContribution .main2Head {}

.society_socialContribution .main2Lead {}

.society_socialContribution .main2MainBlk {
	margin: 35px 0 0;
}

.society_socialContribution .main2MainTitle {
	font-weight: bold;
	font-size: 17px;
}

.society_socialContribution .main2MainDesc {
	margin: 8px 0 0;
}

.society_localContribution {
	padding: 140px 0 140px;
}

.society_localContribution .inner {}

.society_localContribution .blk {}

.society_localContribution .headBlk {}

.society_localContribution .head {}

.society_localContribution .leadBlk {}

.society_localContribution .lead {}

.society_localContribution .mainBlk {}

.society_localContribution .mainBlk>div {}

.society_localContribution .mainBlk>div:not(:first-child) {
	margin: 90px 0 0;
}

.society_localContribution .main1Blk {}

.society_localContribution .main1Head {}

.society_localContribution .main1MainBlk {
	align-items: stretch;
	gap: 60px;
}

.society_localContribution .main1MainTextBlk {
	flex: 1;
}

.society_localContribution .main1MainTitle {
	font-weight: bold;
	font-size: 17px;
}

.society_localContribution .main1MainDesc {}

.society_localContribution .main1MainImgBlk {
	width: min(550px, 100%);
}

.society_localContribution .main1MainImgBlk img {}

.society_localContribution .main2Blk {}

.society_localContribution .main2Head {}

.society_localContribution .main2Lead {}

@media screen and (max-width: 1024px) {

	/*common start*/
	#society .cmnMargin1 {
		margin: 25px 0 0;
	}

	#society .cmnMargin2 {
		margin: 20px 0 0;
	}

	/*common end*/
	.society_outline {
		padding: 60px 0 0 !important;
	}

	.society_outline .inner {}

	.society_outline .blk {}

	.society_outline .headBlk {}

	.society_outline .head {
		font-size: 20px;
	}

	.society_outline .leadBlk {}

	.society_outline .lead {
		text-align: justify;
	}

	.society_socialContribution {
		padding: 60px 0 0 !important;
	}

	.society_socialContribution .inner {}

	.society_socialContribution .blk {}

	.society_socialContribution .headBlk {}

	.society_socialContribution .head {}

	.society_socialContribution .leadBlk {}

	.society_socialContribution .lead {}

	.society_socialContribution .mainBlk {}

	.society_socialContribution .mainBlk>div {}

	.society_socialContribution .mainBlk>div:not(:first-child) {
		margin: 40px 0 0;
	}

	.society_socialContribution .main1Blk {}

	.society_socialContribution .main1Head {}

	.society_socialContribution .main1MainBlk {
		flex-flow: column;
		gap: 30px;
	}

	.society_socialContribution .main1MainTextBlk {}

	.society_socialContribution .main1MainTitle {}

	.society_socialContribution .main1MainDesc {}

	.society_socialContribution .main1MainImgBlk {
		width: 100%;
		text-align: center;
	}

	.society_socialContribution .main1MainImgBlk img {
		width: 100%;
		max-width: var(--maxWidthS);
	}

	.society_socialContribution .main2Blk {}

	.society_socialContribution .main2Head {}

	.society_socialContribution .main2Lead {}

	.society_socialContribution .main2MainBlk {
		margin: 30px 0 0;
	}

	.society_socialContribution .main2MainTitle {
		font-size: 15px;
	}

	.society_socialContribution .main2MainDesc {}

	.society_localContribution {
		padding: 60px 0 90px !important;
	}

	.society_localContribution .inner {}

	.society_localContribution .blk {}

	.society_localContribution .headBlk {}

	.society_localContribution .head {}

	.society_localContribution .leadBlk {}

	.society_localContribution .lead {}

	.society_localContribution .mainBlk {}

	.society_localContribution .mainBlk>div {}

	.society_localContribution .mainBlk>div:not(:first-child) {
		margin: 40px 0 0;
	}

	.society_localContribution .main1Blk {}

	.society_localContribution .main1Head {}

	.society_localContribution .main1MainBlk {
		gap: 30px;
	}

	.society_localContribution .main1MainTextBlk {}

	.society_localContribution .main1MainTitle {}

	.society_localContribution .main1MainDesc {}

	.society_localContribution .main1MainImgBlk {
		width: 100%;
		text-align: center;
	}

	.society_localContribution .main1MainImgBlk img {
		width: 100%;
		max-width: var(--maxWidthS);
	}

	.society_localContribution .main2Blk {}

	.society_localContribution .main2Head {}

	.society_localContribution .main2Lead {}
}

/*
Products
====================================*/
/*common start*/
.productsInfo_cmnLinkBlk {
	margin: 85px 0 0;
	text-align: center;
}

.productsInfo_cmnLinkBlk a {}

.productsInfo_cmnLinkBlk a::before {}

/*common end*/
.productsInfo_particular {
	padding: 90px 0 0;
}

.productsInfo_particular .inner {}

.productsInfo_particular .blk {}

.productsInfo_particular .dummy {}

.productsInfo_particular .headBlk {}

.productsInfo_particular .head {}

.productsInfo_particular .mainBlk {
	margin: 30px 0 0;
}

.productsInfo_particular .mainTextBlk {}

.productsInfo_particular .mainTextDesc {}

.productsInfo_particular .mainImgBlk {
	margin: 25px 0 0;
}

.productsInfo_particular .mainImgBlk img {}

.productsInfo_particular .linkBlk {}

.productsInfo_particular .linkBlk a {}

.productsInfo_about {
	padding: 140px 0 0;
}

.productsInfo_about .inner {}

.productsInfo_about .blk {}

.productsInfo_about .headBlk {}

.productsInfo_about .head {}

.productsInfo_about .leadBlk {
	margin: 30px 0 0;
}

.productsInfo_about .lead {}

.productsInfo_about .mainBlk {
	display: grid;
	gap: 90px;
	margin: 90px 0 0;
}

.productsInfo_about .mainBlk>div {}

.productsInfo_about .mainHead {
	padding-bottom: 2px;
	font-size: 25px;
	border-bottom: 1px solid #458be2;
}

.productsInfo_about .mainInfoBlk {
	gap: 50px;
	margin: 32px 0 0;
}

.productsInfo_about .mainInfoTextBlk {
	flex: 1;
}

.productsInfo_about .mainInfoGroup {
	margin: 0px 0 15px;
	padding-bottom: 6px;
	font-size: 20px;
	font-weight: 600;
	border-bottom: 2px dotted #458be254;
}

.productsInfo_about .mainInfoTextBlk dl {
	display: grid;
	gap: 30px;
}

.productsInfo_about .mainInfoTextBlk dl._indent {
	padding-left: 24px;
}

.productsInfo_about .mainInfoTextBlk dl>div {}

.productsInfo_about .mainInfoTextBlk dl dt {}

.productsInfo_about .mainInfoTextBlk dl dt a {
	padding-right: 33px;
	font-weight: 700;
	font-size: 18px;
	color: var(--textColorBlue);
	background-image: url(./images/icon_arrow01_bgBlue02.svg);
	background-repeat: no-repeat;
	background-position: right 10px top 50%;
	background-size: 16px;
}

@media screen and (min-width: 1025px) {
	.productsInfo_about .mainInfoTextBlk dl dt a:hover {
		background-position: right top 50%;
	}
}

.productsInfo_about .mainInfoTextBlk dl dd {
	margin: 4px 0 0;
}

.productsInfo_about .mainInfoImgBlk {
	display: grid;
	gap: 14px;
	width: min(411px, 100%);
}

.productsInfo_about .mainInfoImgBlk img {}

.productsInfo_about .linkBlk {}

.productsInfo_about .linkBlk a {}

@media screen and (max-width: 1024px) {

	/*common start*/
	.productsInfo_cmnLinkBlk {
		margin: 40px 0 0;
	}

	.productsInfo_cmnLinkBlk a {}

	.productsInfo_cmnLinkBlk a::before {}

	/*common end*/
	.productsInfo_particular {
		padding: 60px 0 0 !important;
	}

	.productsInfo_particular .inner {}

	.productsInfo_particular .blk {}

	.productsInfo_particular .dummy {}

	.productsInfo_particular .headBlk {}

	.productsInfo_particular .head {}

	.productsInfo_particular .mainBlk {
		margin: 25px 0 0;
	}

	.productsInfo_particular .mainTextBlk {}

	.productsInfo_particular .mainTextDesc {}

	.productsInfo_particular .mainImgBlk {
		margin: 20px 0 0;
	}

	.productsInfo_particular .mainImgBlk img {
		aspect-ratio: 16/9;
		width: 100%;
	}

	.productsInfo_particular .linkBlk {}

	.productsInfo_particular .linkBlk a {}

	.productsInfo_about {
		padding: 60px 0 0 !important;
	}

	.productsInfo_about .inner {}

	.productsInfo_about .blk {}

	.productsInfo_about .headBlk {}

	.productsInfo_about .head {}

	.productsInfo_about .leadBlk {
		margin: 26px 0 0;
	}

	.productsInfo_about .lead {}

	.productsInfo_about .mainBlk {
		gap: 50px;
		margin: 35px 0 0;
	}

	.productsInfo_about .mainBlk>div {}

	.productsInfo_about .mainHead {
		font-size: 18px;
	}

	.productsInfo_about .mainInfoBlk {
		flex-flow: column;
		gap: 30px;
		margin: 20px 0 0;
	}

	.productsInfo_about .mainInfoTextBlk {
		width: 100%;
	}

	.productsInfo_about .mainInfoGroup {
		margin: 0px 0 10px;
		font-size: 16px;
		font-weight: 600;
	}

	.productsInfo_about .mainInfoTextBlk dl {
		gap: 25px;
	}

	.productsInfo_about .mainInfoTextBlk dl._indent {
		padding-left: 15px;
	}

	.productsInfo_about .mainInfoTextBlk dl>div {}

	.productsInfo_about .mainInfoTextBlk dl dt {}

	.productsInfo_about .mainInfoTextBlk dl dt a {
		font-size: 16px;
		background-position: right 5px top 50%;
	}

	.productsInfo_about .mainInfoTextBlk dl dd {}

	.productsInfo_about .mainInfoImgBlk {
		display: block;
		width: 100%;
		margin: 20px 0 0;
		text-align: center;
	}

	.productsInfo_about .mainInfoImgBlk img {
		width: 100%;
		max-width: var(--maxWidthS);
	}

	.productsInfo_about .linkBlk {}

	.productsInfo_about .linkBlk a {}
}

/*
ProductsSearch
====================================*/
/*common start*/
/*common end*/
.productsSearch_link {
	padding: 140px 0 0;
}

.productsSearch_link .inner {}

.productsSearch_link .blk {}

.productsSearch_link .tabBlk {}

.productsSearch_link .tabBlk ul {
	justify-content: flex-start;
	gap: 17px;
}

.productsSearch_link .tabBlk ul>li {
	position: relative;
	display: grid;
	place-items: center;
	width: min(361px, 100%);
	height: 84px;
	padding-left: 18px;
	color: #cdd7e3;
	font-size: 22px;
	font-weight: 600;
	border-bottom: 1px solid #b4b7bc;
	background: linear-gradient(#a6bdc7, #748E99 100%);
	cursor: pointer;
}

.productsSearch_link .tabBlk ul>li::before {
	content: '';
	position: absolute;
	transform: skew(22deg, 0) translate(calc(-50% - 1px), 0);
	top: 0;
	left: 100%;
	width: calc(36px);
	height: calc(100% + 1px);
	border-bottom: 1px solid #b4b7bc;
	background: linear-gradient(#a6bdc7, #748E99 100%);
}

@media screen and (min-width: 1025px) {
	.productsSearch_link .tabBlk ul>li:hover {
		background: linear-gradient(#98B5C1, #4C636E 100%);
	}

	.productsSearch_link .tabBlk ul>li:hover::before {
		background: linear-gradient(#98B5C1, #4C636E 100%);
	}
}

.productsSearch_link .tabBlk ul>li._active {
	z-index: 1;
	color: var(--textColorBlue2);
	background: #fff;
	border-top: 1px solid #b4b7bc;
	border-left: 1px solid #b4b7bc;
	border-bottom: initial;
}

.productsSearch_link .tabBlk ul>li._active::before {
	border-right: 1px solid #b4b7bc;
	border-bottom: initial;
	background: #fff;
}

.productsSearch_link .mainBlk {
	margin-top: -1px;
	border: 1px solid #b4b7bc;
}

.productsSearch_link .panelBlk {}

.productsSearch_link .mainTypeBlk {
	padding: 90px 70px;
}

.productsSearch_link .mainTypeBlk:not(:first-child) {
	padding-top: 0;
}

.productsSearch_link .mainTypeBlk._product {
	display: grid;
	gap: 80px;
}

.productsSearch_link .mainTypeBlk._product>div {}

.productsSearch_link .mainTypeTitle {
	padding-bottom: 6px;
	font-size: 25px;
	font-weight: 600;
	border-bottom: 1px solid var(--mainColor);
	line-height: initial;
}

.productsSearch_link .mainTypeGroup {
	margin: 0px 0 15px;
	padding-bottom: 6px;
	font-size: 20px;
	font-weight: 600;
	line-height: initial;
	border-bottom: 2px dotted #458be254;
}

.productsSearch_link .mainTypeBlk._product>div>ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 50px;
	margin: 27px 0 0;
}

.productsSearch_link .mainTypeBlk._product>div>ul>li {}

.productsSearch_link .mainTypeBlk._product>div>ul>li>a {
	display: flex;
	align-items: center;
	min-height: 65px;
	padding: 0 27px;
	font-size: 18px;
	color: var(--textColorBlue);
	background: #e7f1fa;
}

.productsSearch_link .mainTypeBlk._product>div>ul>li>a span {
	padding-right: 33px;
	font-weight: 700;
	font-size: 18px;
	color: var(--textColorBlue);
	background-image: url(./images/icon_arrow01_bgBlue02.svg);
	background-repeat: no-repeat;
	background-position: right 10px top 50%;
	background-size: 16px;
	transition: all .3s;
}

@media screen and (min-width: 1025px) {
	.productsSearch_link .mainTypeBlk._product>div>ul>li>a:hover span {
		background-position: right top 50%;
	}
}

.productsSearch_link .mainTypeBlk._product>div>ul>li>ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px 30px;
	margin: 20px 0 0;
	padding: 0 25px;
}

.productsSearch_link .mainTypeBlk._product>div>ul>li>ul>li>a {
	position: relative;
	padding-bottom: 4px;
}

@media screen and (min-width: 1025px) {
	.productsSearch_link .mainTypeBlk._product>div>ul>li>ul>li>a:hover {
		color: #1466C6;
		opacity: 1;
	}

	.productsSearch_link .mainTypeBlk._product>div>ul>li>ul>li>a::after {
		content: '';
		position: absolute;
		bottom: 0;
		right: 0;
		height: 1px;
		width: 0%;
		background: #99BFEF;
		transition: .5s;
	}

	.productsSearch_link .mainTypeBlk._product>div>ul>li>ul>li>a:hover::after {
		left: 0;
		right: unset;
		width: 100%;
		background: #99BFEF;
	}
}

.productsSearch_link .mainTypeBlk._vc {}

.productsSearch_link .mainTypeNote {
	font-size: 1rem;
	line-height: inherit;
	margin: 10px 0 0;
}

.productsSearch_link .mainTypeChartBlk {
	position: relative;
	top: 0;
	right: 0;
	width: 100%;
	margin-top: 34px;
}

.productsSearch_link .mainTypeChartBlk img {}

.productsSearch_link .mainTypeChartLinkBlk {
	position: absolute;
	top: 2px;
	right: 2px;
}

.productsSearch_link .mainTypeBlk._vc .mainTypeChartLinkBlk {
	width: calc(100% - 9.1%);
	height: calc(100% - 13.8%);
}

.productsSearch_link .mainTypeBlk._ct .mainTypeChartLinkBlk {
	width: calc(100% - 15.3%);
	height: calc(100% - 14.5%);
}

.productsSearch_link .mainTypeBlk._cpe .mainTypeChartLinkBlk {
	width: calc(100% - .5%);
	height: calc(100% - 1%);
}

.productsSearch_link .mainTypeChartLinkBlk>ul {}

.productsSearch_link .mainTypeChartLinkBlk>ul>li {}

.productsSearch_link .mainTypeChartLinkBlk ul>li a {
	display: inline-block;
	padding: 3px 0;
	font-size: 15px;
	color: #fff;
	border-radius: 20px;
	border: 1px solid #fff;
	filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.16));
	text-align: center;
}

.productsSearch_link .mainTypeChartLinkBlk ul>li._thiazoles a,
.productsSearch_link .mainTypeChartLinkBlk ul>li._sbf6 a,
.productsSearch_link .mainTypeChartLinkBlk ul>li._anticorrosion-agent a {
	background: #9b66c9;
}

.productsSearch_link .mainTypeChartLinkBlk ul>li._sulfenamide a {
	background: #757ec6;
}

.productsSearch_link .mainTypeChartLinkBlk ul>li._thiourea a,
.productsSearch_link .mainTypeChartLinkBlk ul>li._bc6f54 a,
.productsSearch_link .mainTypeChartLinkBlk ul>li._water-soluble-corrosion-inhibitor a {
	background: #0e79bc;
}

.productsSearch_link .mainTypeChartLinkBlk ul>li._thiuram a,
.productsSearch_link .mainTypeChartLinkBlk ul>li._pf6 a,
.productsSearch_link .mainTypeChartLinkBlk ul>li._water-soluble-rust-inhibitor a {
	background: #0da2a8;
}

.productsSearch_link .mainTypeChartLinkBlk ul>li._dithiocarbamate a {
	background: #1ca575;
}

.productsSearch_link .mainTypeChartLinkBlk>ul>li>ul {}

.productsSearch_link .mainTypeChartLinkBlk>ul>li>ul>li {}

.productsSearch_link .mainTypeChartLinkBlk>ul>li>ul>li>a {
	position: absolute;
	top: 0;
	left: 0;
	white-space: nowrap;
}

/* vc */
.productsSearch_link .mainTypeBlk._vc .mainTypeChartLinkBlk>ul>li>ul>li>a {
	width: 80px;
}

.productsSearch_link .mainTypeBlk._vc .mainTypeChartLinkBlk>ul>li>ul>li>a._hm {
	top: 62%;
	left: 2.5%;
}

.productsSearch_link .mainTypeBlk._vc .mainTypeChartLinkBlk>ul>li>ul>li>a._m {
	top: 18%;
	left: 43.3%;
}

.productsSearch_link .mainTypeBlk._vc .mainTypeChartLinkBlk>ul>li>ul>li>a._mz {
	top: 12.1%;
	left: 59.7%;
}

.productsSearch_link .mainTypeBlk._vc .mainTypeChartLinkBlk>ul>li>ul>li>a._dm {
	top: 24%;
	left: 83.5%;
}

.productsSearch_link .mainTypeBlk._vc .mainTypeChartLinkBlk>ul>li>ul>li>a._cm {
	top: 47%;
	left: 76.9%;
}

.productsSearch_link .mainTypeBlk._vc .mainTypeChartLinkBlk>ul>li>ul>li>a._ns {
	top: 33.3%;
	left: 89%;
}

.productsSearch_link .mainTypeBlk._vc .mainTypeChartLinkBlk>ul>li>ul>li>a._22-c {
	top: 27%;
	left: 9%;
}

.productsSearch_link .mainTypeBlk._vc .mainTypeChartLinkBlk>ul>li>ul>li>a._tbztd {
	top: 31%;
	left: 61%;
}

.productsSearch_link .mainTypeBlk._vc .mainTypeChartLinkBlk>ul>li>ul>li>a._ts {
	top: 71%;
	left: 74%;
}

.productsSearch_link .mainTypeBlk._vc .mainTypeChartLinkBlk>ul>li>ul>li>a._tra {
	top: 46.4%;
	left: 42.7%;
}

.productsSearch_link .mainTypeBlk._vc .mainTypeChartLinkBlk>ul>li>ul>li>a._tt {
	top: 77%;
	left: 47%;
}

.productsSearch_link .mainTypeBlk._vc .mainTypeChartLinkBlk>ul>li>ul>li>a._tet {
	top: 57%;
	left: 57%;
}

.productsSearch_link .mainTypeBlk._vc .mainTypeChartLinkBlk>ul>li>ul>li>a._z-be {
	top: 42.7%;
	left: 15%;
}

.productsSearch_link .mainTypeBlk._vc .mainTypeChartLinkBlk>ul>li>ul>li>a._ez {
	top: 52.5%;
	left: 15%;
}

.productsSearch_link .mainTypeBlk._vc .mainTypeChartLinkBlk>ul>li>ul>li>a._pz {
	top: 61.5%;
	left: 15%;
}

.productsSearch_link .mainTypeBlk._vc .mainTypeChartLinkBlk>ul>li>ul>li>a._bz {
	top: 42.7%;
	left: 27.5%;
}

.productsSearch_link .mainTypeBlk._vc .mainTypeChartLinkBlk>ul>li>ul>li>a._px {
	top: 52.5%;
	left: 25%;
}

/* ct */
.productsSearch_link .mainTypeBlk._ct .mainTypeChartLinkBlk>ul>li>ul>li>a._si-45 {
	top: 2.5%;
	left: 4%;
	width: 12.2%;
}

.productsSearch_link .mainTypeBlk._ct .mainTypeChartLinkBlk>ul>li>ul>li>a._si-60 {
	top: 8.2%;
	left: 17.9%;
	width: 17%;
}

.productsSearch_link .mainTypeBlk._ct .mainTypeChartLinkBlk>ul>li>ul>li>a._si-80 {
	top: 15.8%;
	left: 26.4%;
	width: 17%;
}

.productsSearch_link .mainTypeBlk._ct .mainTypeChartLinkBlk>ul>li>ul>li>a._si-100 {
	top: 23.5%;
	left: 34.5%;
	width: 17%;
}

.productsSearch_link .mainTypeBlk._ct .mainTypeChartLinkBlk>ul>li>ul>li>a._si-150 {
	top: 23.5%;
	left: 63.8%;
	width: 23.6%;
}

.productsSearch_link .mainTypeBlk._ct .mainTypeChartLinkBlk>ul>li._bc6f54>ul>li>a {
	width: 17.7%;
}

.productsSearch_link .mainTypeBlk._ct .mainTypeChartLinkBlk>ul>li>ul>li>a._si-b2a {
	top: 35%;
	left: 7%;
}

.productsSearch_link .mainTypeBlk._ct .mainTypeChartLinkBlk>ul>li>ul>li>a._si-b3a {
	top: 42.5%;
	left: 17.5%;
}

.productsSearch_link .mainTypeBlk._ct .mainTypeChartLinkBlk>ul>li>ul>li>a._si-b7 {
	top: 49.8%;
	left: 18.7%;
}

.productsSearch_link .mainTypeBlk._ct .mainTypeChartLinkBlk>ul>li>ul>li>a._si-b3 {
	top: 57.3%;
	left: 35.3%;
}

.productsSearch_link .mainTypeBlk._ct .mainTypeChartLinkBlk>ul>li>ul>li>a._si-b5 {
	top: 42.5%;
	left: 49.3%;
}

.productsSearch_link .mainTypeBlk._ct .mainTypeChartLinkBlk>ul>li>ul>li>a._si-b4 {
	top: 49.8%;
	left: 69%;
}

.productsSearch_link .mainTypeBlk._ct .mainTypeChartLinkBlk>ul>li>ul>li>a._si-300 {
	top: 72.8%;
	left: 22%;
	width: 17.7%;
}

.productsSearch_link .mainTypeBlk._ct .mainTypeChartLinkBlk>ul>li>ul>li>a._si-360 {
	top: 80.5%;
	left: 24.8%;
	width: 17.7%;
}

.productsSearch_link .mainTypeBlk._ct .mainTypeChartLinkBlk>ul>li>ul>li>a._si-110 {
	top: 88.5%;
	left: 66%;
	width: 23.7%;
}

/*cpe*/
.productsSearch_link .mainTypeBlk._cpe .mainTypeChartLinkBlk>ul>li>ul>li>a {
	top: 2%;
	width: 7.7%;
}

.productsSearch_link .mainTypeBlk._cpe .mainTypeChartLinkBlk>ul>li>ul>li>a._m {
	left: 16.5%;
}

.productsSearch_link .mainTypeBlk._cpe .mainTypeChartLinkBlk>ul>li>ul>li>a._n-g {
	left: calc(16.5% + 8.4%);
}

.productsSearch_link .mainTypeBlk._cpe .mainTypeChartLinkBlk>ul>li>ul>li>a._n-40 {
	left: calc(16.5% + (8.4% * 2));
}

.productsSearch_link .mainTypeBlk._cpe .mainTypeChartLinkBlk>ul>li>ul>li>a._abt {
	left: calc(16.5% + (8.4% * 3));
}

.productsSearch_link .mainTypeBlk._cpe .mainTypeChartLinkBlk>ul>li>ul>li>a._pbt {
	left: calc(16.5% + (8.4% * 4));
}

.productsSearch_link .mainTypeBlk._cpe .mainTypeChartLinkBlk>ul>li>ul>li>a._mb {
	left: calc(16.5% + (8.4% * 5));
}

.productsSearch_link .mainTypeBlk._cpe .mainTypeChartLinkBlk>ul>li>ul>li>a._eur {
	left: calc(16.5% + (8.4% * 6));
}

.productsSearch_link .mainTypeBlk._cpe .mainTypeChartLinkBlk>ul>li>ul>li>a._bur {
	left: calc(16.5% + (8.4% * 7));
}

.productsSearch_link .mainTypeBlk._cpe .mainTypeChartLinkBlk>ul>li>ul>li>a._pmt {
	left: calc(16.5% + (8.4% * 8));
}

.productsSearch_link .mainTypeBlk._cpe .mainTypeChartLinkBlk>ul>li>ul>li>a._pmt-2 {
	left: calc(16.5% + (8.4% * 9));
}

.productsSearch_link .mainTypeCatBlk {
	margin: 35px 0 0;
}

.productsSearch_link .mainTypeCatBlk ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px 15px;
}

.productsSearch_link .mainTypeCatBlk ul>li {}

.productsSearch_link .mainTypeCatBlk ul>li a {
	display: inline-block;
	width: 100%;
	padding: 14px 0;
	font-size: 18px;
	color: #fff;
	border-radius: 30px;
	border: 1px solid #fff;
	filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.16));
	text-align: center;
}

.productsSearch_link .mainTypeCatBlk ul>li a._thiazoles,
.productsSearch_link .mainTypeCatBlk ul>li a._sbf6,
.productsSearch_link .mainTypeCatBlk ul>li a._anticorrosion-agent {
	background: #9b66c9;
}

.productsSearch_link .mainTypeCatBlk ul>li a._sulfenamide {
	background: #757ec6;
}

.productsSearch_link .mainTypeCatBlk ul>li a._thiourea,
.productsSearch_link .mainTypeCatBlk ul>li a._bc6f54,
.productsSearch_link .mainTypeCatBlk ul>li a._water-soluble-corrosion-inhibitor {
	background: #0e79bc;
}

.productsSearch_link .mainTypeCatBlk ul>li a._thiuram,
.productsSearch_link .mainTypeCatBlk ul>li a._pf6,
.productsSearch_link .mainTypeCatBlk ul>li a._water-soluble-rust-inhibitor {
	background: #0da2a8;
}

.productsSearch_link .mainTypeCatBlk ul>li a._dithiocarbamate {
	background: #1ca575;
}

@media screen and (max-width: 1024px) {

	/*common start*/
	/*common end*/
	.productsSearch_link {
		padding: 60px 0 0 !important;
	}

	.productsSearch_link .inner {}

	.productsSearch_link .blk {}

	.productsSearch_link .tabBlk {}

	.productsSearch_link .tabBlk ul {
		gap: 15px;
	}

	.productsSearch_link .tabBlk ul>li {
		width: 28%;
		height: 60px;
		padding-left: 10px;
		font-size: 16px;
		text-align: left;
		line-height: 1.3;
	}

	.productsSearch_link .tabBlk ul>li::before {
		z-index: -1;
		width: calc(27px);
	}

	.productsSearch_link .tabBlk ul>li._active {}

	.productsSearch_link .tabBlk ul>li._active::before {
		z-index: -1;
	}

	.productsSearch_link .mainBlk {}

	.productsSearch_link .panelBlk {}

	.productsSearch_link .mainTypeBlk {
		padding: 25px 15px;
	}

	.productsSearch_link .mainTypeBlk._product {
		gap: 45px;
	}

	.productsSearch_link .mainTypeBlk._product>div {}

	.productsSearch_link .mainTypeTitle {
		font-size: 18px;
		font-weight: 700;
	}

	.productsSearch_link .mainTypeGroup {
		margin: 0 0 10px;
		font-size: 16px;
		font-weight: 600;
	}

	.productsSearch_link .mainTypeBlk._product>div>ul {
		grid-template-columns: repeat(1, 1fr);
		gap: 25px;
		margin: 20px 0 0;
	}

	.productsSearch_link .mainTypeBlk._product>div>ul>li {}

	.productsSearch_link .mainTypeBlk._product>div>ul>li>a {
		min-height: 50px;
		padding: 0 15px;
		font-size: 16px;
		font-weight: 600;
	}

	.productsSearch_link .mainTypeBlk._product>div>ul>li>a span {
		font-size: 16px;
		background-position: right 5px top 50%;
	}

	.productsSearch_link .mainTypeBlk._product>div>ul>li>ul {
		gap: 20px 20px;
		margin: 15px 0 0;
		padding: 0 15px;
	}

	.productsSearch_link .mainTypeBlk._product>div>ul>li>ul>li>a {}

	.productsSearch_link .mainTypeBlk._vc {}

	.productsSearch_link .mainTypeNote {}

	.productsSearch_link .mainTypeChartBlk {
		width: 100%;
		margin: 30px 0 0;
	}

	.productsSearch_link .mainTypeChartBlk>div:not(.scroll-hint-icon-wrap) {
		width: 100%;
		min-width: 736px;
		padding: 0 0 20px;
	}

	.productsSearch_link .mainTypeChartBlk .scroll-hint-icon-wrap {}

	.productsSearch_link .mainTypeChartBlk .scroll-hint-icon {
		top: calc(36% - 25px);
	}

	.productsSearch_link .mainTypeChartBlk img {
		position: relative;
		width: 100%;
		max-width: initial;
	}

	.productsSearch_link .mainTypeChartLinkBlk {
		top: 2px;
		right: initial;
	}

	.productsSearch_link .mainTypeBlk._vc .mainTypeChartLinkBlk {
		left: 59px;
		width: calc(100% - 8.3%);
		height: calc(100% - 18.1%);
		min-width: 675px;
	}

	.productsSearch_link .mainTypeBlk._ct .mainTypeChartLinkBlk {
		left: 110px;
		width: calc(100% - 8.3%);
		height: calc(100% - 18.8%);
		min-width: 624px;
	}

	.productsSearch_link .mainTypeBlk._cpe .mainTypeChartLinkBlk {
		left: 2px;
		width: calc(100% - .5%);
		height: calc(100% - 6%);
		min-width: 732px;
	}

	.productsSearch_link .mainTypeChartLinkBlk>ul {}

	.productsSearch_link .mainTypeChartLinkBlk>ul>li {}

	.productsSearch_link .mainTypeChartLinkBlk ul>li a {
		padding: 1px 0;
		font-size: 13px;
	}

	.productsSearch_link .mainTypeChartLinkBlk>ul>li>ul {}

	.productsSearch_link .mainTypeChartLinkBlk>ul>li>ul>li {}

	.productsSearch_link .mainTypeChartLinkBlk>ul>li>ul>li>a {}

	/* vc */
	.productsSearch_link .mainTypeBlk._vc .mainTypeChartLinkBlk>ul>li>ul>li>a {
		width: 58px;
	}

	.productsSearch_link .mainTypeBlk .mainTypeCatBlk {
		margin: 30px 0 0;
	}

	.productsSearch_link .mainTypeBlk .mainTypeCatBlk ul {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
		gap: 10px 10px;
	}

	.productsSearch_link .mainTypeBlk .mainTypeCatBlk ul>li {}

	.productsSearch_link .mainTypeBlk .mainTypeCatBlk ul>li a {
		padding: 12px 2px;
		font-size: 16px;
	}
}

/*
製品検索一覧
====================================*/
/*common start*/
/*common end*/
.products_list {
	padding: 90px 0 0;
}

.products_list .inner {}

.products_list .blk {}

.products_list .searchBlk {
	margin: 0 0 45px;
}

.products_list .searchBlk p {
	font-size: 23px;
	font-weight: 700;
}

.products_list .numberBlk {}

.products_list .numberBlk p {
	font-size: 18px;
	line-height: inherit;
	color: var(--textColorBlue2);
}

.products_list .mainBlk {
	display: grid;
	gap: 12px;
	margin: 17px 0 0;
}

.products_list .mainBlk article {}

.products_list .mainBlk a {
	display: block;
	padding: 25px 120px 25px 70px;
	border: 1px solid #d7dce2;
	box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
	background-image: url(./images/icon_arrow01_bgBlue02.svg);
	background-repeat: no-repeat;
	background-position: right 70px center;
	background-size: 30px;
}

@media screen and (min-width: 1025px) {
	.products_list .mainBlk a:hover {
		background-color: #F5F7F8;
	}
}

.products_list .mainCatBlk {
	width: 92%;
}

.products_list .mainCatBlk ul {
	gap: 8px;
	justify-content: flex-start;
}

.products_list .mainCatBlk ul>li {
	display: grid;
	place-items: center;
	height: 28px;
	padding: 0 30px;
	font-size: 13px;
	text-align: center;
	color: var(--textColorBlue);
	border: 1px solid #719cde;
	border-radius: 5px;
}

.products_list .mainTitle {
	margin: 12px 0 0;
	font-weight: 700;
	font-size: 24px;
	line-height: inherit;
}

.products_list .mainDesc {
	margin: 5px 0 0;
	line-height: inherit;
}

.products_list .paginationBlk {}

.products_list .linkBlk {
	margin: 100px 0 0;
	text-align: center;
}

.products_list .paginationBlk>* {}

.products_list .linkBlk a {}

@media screen and (max-width: 1024px) {

	/*common start*/
	/*common end*/
	.products_list {
		padding: 60px 0 0 !important;
	}

	.products_list .inner {}

	.products_list .blk {}

	.products_list .searchBlk {
		margin: 0 0 25px;
	}

	.products_list .searchBlk p {
		font-size: 20px;
	}

	.products_list .numberBlk {}

	.products_list .numberBlk p {
		font-size: 16px;
	}

	.products_list .mainBlk {}

	.products_list .mainBlk article {}

	.products_list .mainBlk a {
		padding: 20px 50px 20px 15px;
		background-position: right 15px center;
		background-size: 20px;
	}

	.products_list .mainCatBlk {}

	.products_list .mainCatBlk ul {
		gap: 8px;
	}

	.products_list .mainCatBlk ul>li {
		padding: 0 5px;
	}

	.products_list .mainTitle {
		font-size: 17px;
	}

	.products_list .mainDesc {}

	.products_list .paginationBlk {}

	.products_list .paginationBlk>* {
		margin: 30px 0 0;
	}

	.products_list .linkBlk {
		margin: 45px 0 0;
	}

	.products_list .linkBlk a {}
}

/*
製品詳細
====================================*/
/*common start*/
/*common end*/
.products_detail {
	padding: 90px 0 0;
}

.products_detail .inner {}

.products_detail .blk {}

.products_detail .mainBlk {}

.products_detail .mainBlk article {
	position: relative;
	padding: 90px 68px;
	border: 1px solid #b4b7bc;
}

.products_detail .mainCatBlk {}

.products_detail .mainCatBlk ul {
	gap: 8px;
	justify-content: flex-start;
}

.products_detail .mainCatBlk ul>li {}

.products_detail .mainCatBlk ul>li a {
	display: grid;
	place-items: center;
	height: 28px;
	padding: 0 30px;
	font-size: 13px;
	text-align: center;
	color: var(--textColorBlue);
	border: 1px solid #719cde;
	border-radius: 5px;
}

.products_detail .mainHead {
	margin: 40px 0 0;
	padding: 0 0 3px;
	font-size: 30px;
	border-bottom: 1px solid #d7dce2;
}

.products_detail .mainInfoBlk {
	margin: 45px 0 0;
}

.products_detail .mainInfoBlk table {
	width: 100%;
	border: 1px solid #c2c6cb;
}

.products_detail .mainInfoBlk table tr:not(:first-child) {
	border-top: 1px solid #c2c6cb;
}

.products_detail .mainInfoBlk table th {
	width: 173px;
	text-align: center;
	background: #c5daf2;
}

.products_detail .mainInfoBlk table td {
	vertical-align: middle;
}

.products_detail .mainInfoBlk table,
.products_detail .mainInfoBlk th,
.products_detail .mainInfoBlk td {}

.products_detail .mainInfoBlk table th,
.products_detail .mainInfoBlk table td {
	padding: 20px 35px;
	line-height: inherit;
}

/*.products_detail .mainInfoBlk table td._blue {
width: 208px;
font-weight: 600;
background: #e7f1fa;
}*/
.products_detail .mainInfoBlk table td img {
	display: table;
	width: 90%;
	height: 140px;
	object-fit: contain;
	margin: auto;
}

.products_detail .mainInfoLogoBlk {
	position: absolute;
	top: 40px;
	right: 40px;
}

.products_detail .mainInfoLogoBlk img {
	width: 100px;
}

.products_detail .technicalInfoBlk {
	margin: 45px 0 0;
	padding: 55px 40px;
	background: linear-gradient(#f4f9ff 0%, #c4def8 100%);
}

.products_detail .technicalInfoBlk>div {
	border-radius: 10px;
	background: #fff;
	filter: drop-shadow(0px 1px 10px rgba(51, 51, 51, 0.15));
}

.products_detail .technicalInfoBlk>div>div {}

.products_detail .technicalInfoAccordionTitle {
	position: relative;
	padding: 30px;
	font-size: 1.438rem;
	font-weight: 700;
	cursor: pointer;
}

.products_detail .technicalInfoAccordionTitle span:nth-child(1) {
	display: inline-block;
	padding-left: 70px;
	background-image: url(./images/icon_document01.svg);
	background-repeat: no-repeat;
	background-position: left 15px center;
	background-size: 32px;
}

.products_detail .technicalInfoAccordionTitle span:nth-child(2) {
	position: absolute;
	top: 50%;
	right: 48px;
	transform: translate(0%, -50%);
	display: inline-block;
	width: 30px;
	height: 30px;
	background: #719cde;
	border-radius: 50%;

}

.products_detail .technicalInfoAccordionTitle span:nth-child(2)::before,
.products_detail .technicalInfoAccordionTitle span:nth-child(2)::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline-block;
	background: #fff;
}

.products_detail .technicalInfoAccordionTitle span:nth-child(2)::before {
	height: 2px;
	width: calc(100% - 16px);
}

.products_detail .technicalInfoAccordionTitle span:nth-child(2)::after {
	width: 2px;
	height: calc(100% - 16px);
}

.products_detail .technicalInfoAccordionTitle._open span:nth-child(2)::after {
	display: none;
}

.products_detail .technicalInfoAccordionContent {
	display: grid;
	gap: 5px;
	margin: 0 30px;
	padding: 30px 0;
	border-top: 1px solid #c4def8;
}

.products_detail .technicalInfoBlk article {}

.products_detail .technicalInfoBlk a {
	justify-content: flex-start;
	align-items: center;
	padding: 15px 90px 15px 0;
	border: 1px solid #e2e6eb;
	filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.08));
	background-image: url(./images/icon_arrow01_bgBlue03.svg);
	background-repeat: no-repeat;
	background-position: right 38px center;
	background-size: 20px;
}

@media screen and (min-width: 1025px) {
	.products_detail .technicalInfoBlk a:hover {
		background-color: #F5F7F8;
	}
}

.products_detail .technicalInfoCat {
	padding: 1px 32px;
}

.products_detail .technicalInfoCat._material {
	background: #d2e6fa;
}

.products_detail .technicalInfoCat._message {
	color: #fff;
	background: var(--mainColor);
}

.products_detail .technicalInfoCat._conference-presentation {
	color: #fff;
	background: var(--textColorBlue);
}

.products_detail .technicalInfoTitle {
	flex: 1;
	margin-left: 30px;
}

.products_detail .technicalInfoPdf {
	display: inline-block;
	padding: 2px 10px;
	margin-left: 14px;
	font-size: 13px;
	color: var(--textColorBlue);
	border-radius: 5px;
	border: 1px solid #8bafe5;
}

.products_detail .mainLinkBlk {
	margin: 60px 0 0;
	text-align: center;
}

.products_detail .mainLinkBlk a {
	width: min(464px, 100%);
	font-size: 19px;
	border-radius: 50px;
	border: 1px solid #719cde;
	box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.16);
	color: #1b5fb2;
}

@media screen and (min-width: 1025px) {
	.products_detail .mainLinkBlk a:hover {
		color: #fff;
		box-shadow: initial;
		background: #1b5fb2;
		opacity: initial;
	}
}

.products_detail .mainLinkBlk a::before {
	display: none;
}

.products_detail .mainLinkBlk a span::before,
.products_detail .mainLinkBlk a span::after {
	background: #1b5fb2;
}

@media screen and (min-width: 1025px) {

	.products_detail .mainLinkBlk a:hover span::before,
	.products_detail .mainLinkBlk a:hover span::after {
		background: #fff;
	}
}

.products_detail .linkBlk {
	margin: 90px 0 0;
	text-align: center;
}

.products_detail .linkBlk a {}

@media screen and (max-width: 1024px) {

	/*common start*/
	/*common end*/
	.products_detail {
		padding: 60px 0 0 !important;
	}

	.products_detail .inner {}

	.products_detail .blk {}

	.products_detail .mainBlk {}

	.products_detail .mainBlk article {
		padding: initial;
		border: initial;
	}

	.products_detail .mainCatBlk {}

	.products_detail .mainCatBlk ul {}

	.products_detail .mainCatBlk ul>li {}

	.products_detail .mainCatBlk ul>li a {
		padding: 0 5px;
	}

	.products_detail .mainHead {
		margin: 20px 0 0;
		font-size: 20px;
	}

	.products_detail .mainInfoBlk {
		margin: 35px 0 0;
	}

	.products_detail .mainInfoBlk table {
		border-top: initial;
	}

	.products_detail .mainInfoBlk table tr:not(:first-child) {
		border-top: transparent;
	}

	.products_detail .mainInfoBlk table th {
		border-top: 1px solid #c2c6cb;
	}

	.products_detail .mainInfoBlk table td {}

	.products_detail .mainInfoBlk table,
	.products_detail .mainInfoBlk th,
	.products_detail .mainInfoBlk td {}

	.products_detail .mainInfoBlk table th,
	.products_detail .mainInfoBlk table td {
		display: block;
		width: 100%;
		padding: 15px 15px;
	}

	/*.products_detail .mainInfoBlk table td._blue {
	width: 100%;
}*/
	.products_detail .mainInfoBlk table td img {
		max-width: var(--maxWidthXS);
		width: 60%;
		height: initial;
	}

	.products_detail .mainInfoLogoBlk {
		top: 0;
		right: 0;
	}

	.products_detail .mainInfoLogoBlk img {
		width: 60px;
	}

	.products_detail .technicalInfoBlk {
		margin: 45px 0 0;
		padding: 30px 15px;
	}

	.products_detail .technicalInfoBlk>div {
		border-radius: 10px;
		background: #fff;
		filter: drop-shadow(0px 1px 10px rgba(51, 51, 51, 0.15));
	}

	.products_detail .technicalInfoBlk>div>div {}

	.products_detail .technicalInfoAccordionTitle {
		padding: 20px 25px;
		font-size: 1.25rem;
	}

	.products_detail .technicalInfoAccordionTitle span:nth-child(1) {
		padding-left: 50px;
		background-size: 30px;
		background-position: left 10px center;
	}

	.products_detail .technicalInfoAccordionTitle span:nth-child(2) {
		right: 40px;
		width: 28px;
		height: 28px;
	}

	.products_detail .technicalInfoAccordionTitle span:nth-child(2)::before,
	.products_detail .technicalInfoAccordionTitle span:nth-child(2)::after {}

	.products_detail .technicalInfoAccordionTitle span:nth-child(2)::before {}

	.products_detail .technicalInfoAccordionTitle span:nth-child(2)::after {}

	.products_detail .technicalInfoAccordionTitle._open span:nth-child(2)::after {}

	.products_detail .technicalInfoAccordionContent {
		padding: 25px 0;
		border-top: 1px solid #c4def8;
	}

	.products_detail .technicalInfoBlk article {}

	.products_detail .technicalInfoBlk a {}

	.products_detail .technicalInfoCat {}

	.products_detail .technicalInfoCat._material {}

	.products_detail .technicalInfoCat._message {}

	.products_detail .technicalInfoCat._conference-presentation {}

	.products_detail .technicalInfoTitle {
		flex: initial;
		order: 3;
		width: 100%;
		margin-left: 15px;
		margin-top: 10px;
	}

	.products_detail .technicalInfoPdf {
		order: 2;
		padding: 1px 10px;
		font-size: 13px;
	}

	.products_detail .mainLinkBlk {}

	.products_detail .mainLinkBlk a {}

	.products_detail .mainLinkBlk a::before {}

	.products_detail .mainLinkBlk a span::before,
	.products_detail .mainLinkBlk a span::after {}

	.products_detail .linkBlk {
		margin: 45px 0 0;
	}

	.products_detail .linkBlk a {}
}

/*
技術情報
====================================*/
/*common start*/
/*common end*/
.technicalInfo_list {
	padding: 90px 0 0;
}

.technicalInfo_list .inner {}

.technicalInfo_list .blk {}

.technicalInfo_list .searchBlk {
	margin: 0 0 45px;
}

.technicalInfo_list .searchBlk p {
	font-size: 23px;
	font-weight: 700;
}

.technicalInfo_list .numberBlk {
	margin: 0 0 17px;
}

.technicalInfo_list .numberBlk p {
	font-size: 18px;
	line-height: inherit;
	color: var(--textColorBlue2);
}

.technicalInfo_list .mainBlk {
	padding: 78px 70px 100px;
	border: 1px solid #b4b7bc;
}

.technicalInfo_list .mainSortBlk {
	justify-content: flex-end;
	gap: 10px;
	margin: 0 0 15px;
}

.technicalInfo_list .mainSortBlk a {
	width: min(90px, 100%);
	padding: 2px 0;
	font-size: 13px;
	color: var(--textColorBlue);
	text-align: center;
	border: 1px solid rgba(17, 65, 139, 0.9);
	border-radius: 5px;
}

.technicalInfo_list .mainSortBlk a._current {
	border: 1px solid #c2c6cb;
	color: #fff;
	background: var(--textColorBlue);
}

.technicalInfo_list .mainNumberBlk {
	margin: 0 0 10px;
}

.technicalInfo_list .mainNumberBlk p {
	font-size: 18px;
}

.technicalInfo_list .mainArticleBlk {
	display: grid;
	gap: 5px;
}

.technicalInfo_list .mainArticleBlk article {}

.technicalInfo_list .mainArticleBlk a {
	justify-content: flex-start;
	align-items: center;
	padding: 15px 90px 15px 0;
	border: 1px solid #e2e6eb;
	filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.08));
	background-image: url(./images/icon_arrow01_bgBlue03.svg);
	background-repeat: no-repeat;
	background-position: right 38px center;
	background-size: 20px;
}

@media screen and (min-width: 1025px) {
	.technicalInfo_list .mainArticleBlk a:hover {
		background-color: #F5F7F8;
	}
}

.technicalInfo_list .mainArticleCat {
	padding: 1px 32px;
}

.technicalInfo_list .mainArticleCat._material {
	background: #d2e6fa;
}

.technicalInfo_list .mainArticleCat._message {
	color: #fff;
	background: var(--mainColor);
}

.technicalInfo_list .mainArticleCat._conference-presentation {
	color: #fff;
	background: var(--textColorBlue);
}

.technicalInfo_list .mainArticleTitle {
	flex: 1;
	margin-left: 30px;
}

.technicalInfo_list .mainArticlePdf {
	display: inline-block;
	padding: 2px 10px;
	margin-left: 14px;
	font-size: 13px;
	color: var(--textColorBlue);
	border-radius: 5px;
	border: 1px solid #8bafe5;
}

.technicalInfo_list .mainPaginationBlk {
	/* margin: -20px 0 0; */
}

.technicalInfo_list .mainPaginationBlk>* {
	margin: 55px 0 0;
}

.technicalInfo_list .linkBlk {
	margin: 90px 0 0;
	text-align: center;
}

.technicalInfo_list .linkBlk a {}

@media screen and (max-width: 1024px) {

	/*common start*/
	/*common end*/
	.technicalInfo_list {
		padding: 60px 0 0 !important;
	}

	.technicalInfo_list .inner {}

	.technicalInfo_list .blk {}

	.technicalInfo_list .searchBlk {
		margin: 0 0 25px;
	}

	.technicalInfo_list .searchBlk p {
		font-size: 19px;
	}

	.technicalInfo_list .numberBlk {}

	.technicalInfo_list .numberBlk p {
		font-size: 16px;
	}

	.technicalInfo_list .mainBlk {
		padding: initial;
		border: initial;
	}

	.technicalInfo_list .mainSortBlk {}

	.technicalInfo_list .mainSortBlk a {}

	.technicalInfo_list .mainSortBlk a._current {}

	.technicalInfo_list .mainNumberBlk {}

	.technicalInfo_list .mainNumberBlk p {
		font-size: 16px;
	}

	.technicalInfo_list .mainArticleBlk {}

	.technicalInfo_list .mainArticleBlk article {}

	.technicalInfo_list .mainArticleBlk a {
		padding: 15px 50px 15px 0px;
		background-position: right 15px center;
	}

	.technicalInfo_list .mainArticleCat {
		order: 1;
		padding: 1px 15px;
	}

	.technicalInfo_list .mainArticleCat._material {}

	.technicalInfo_list .mainArticleCat._message {}

	.technicalInfo_list .mainArticleCat._conference-presentation {}

	.technicalInfo_list .mainArticleTitle {
		flex: initial;
		order: 3;
		width: 100%;
		margin-left: 15px;
		margin-top: 10px;
	}

	.technicalInfo_list .mainArticlePdf {
		order: 2;
		padding: 1px 10px;
		font-size: 13px;
	}

	.technicalInfo_list .mainPaginationBlk {}

	.technicalInfo_list .mainPaginationBlk>* {
		margin: 30px 0 0;
	}

	.technicalInfo_list .linkBlk {
		margin: 45px 0 0;
	}

	.technicalInfo_list .linkBlk a {}
}

/*
Products Development
====================================*/
/*common start*/
.productsDevelopment_cmn {
	padding: 90px 0 0;
}

.productsDevelopment_cmn .inner {}

.productsDevelopment_cmn .headBlk {}

.productsDevelopment_cmn .head {}

.productsDevelopment_cmn .mainBlk {
	gap: 50px;
	margin: 25px 0 0;
}

.productsDevelopment_cmn .mainTextBlk {
	flex: 1;
}

.productsDevelopment_cmn .mainTextTitle {
	font-size: 25px;
	line-height: inherit;
	font-weight: 600;
}

.productsDevelopment_cmn .mainTextDesc {
	margin: 15px 0 0;
}

.productsDevelopment_cmn .mainImgBlk {
	width: min(518px, 100%);
}

.productsDevelopment_cmn .mainImgBlk img {}

/*common end*/
.productsDevelopment_research {}

.productsDevelopment_research .inner {}

.productsDevelopment_research .headBlk {}

.productsDevelopment_research .head {}

.productsDevelopment_research .mainBlk {}

.productsDevelopment_research .mainTextBlk {}

.productsDevelopment_research .mainTextTitle {}

.productsDevelopment_research .mainTextDesc {}

.productsDevelopment_research .mainTextLinkBlk {
	margin: 40px 0 0;
}

.productsDevelopment_research .mainTextLinkBlk a {}

.productsDevelopment_research .mainImgBlk {}

.productsDevelopment_research .mainImgBlk img {}

.productsDevelopment_entrusted {
	padding: 140px 0 0;
}

.productsDevelopment_entrusted .inner {}

.productsDevelopment_entrusted .headBlk {}

.productsDevelopment_entrusted .head {}

.productsDevelopment_entrusted .mainBlk {}

.productsDevelopment_entrusted .mainTextBlk {}

.productsDevelopment_entrusted .mainTextTitle {}

.productsDevelopment_entrusted .mainTextStrengthsBlk {
	margin: 25px 0 0;
	padding: 42px;
	background: var(--contentsBg);
}

.productsDevelopment_entrusted .mainTextStrengthsBlk dl {}

.productsDevelopment_entrusted .mainTextStrengthsBlk dl>* {
	font-size: 17px;
}

.productsDevelopment_entrusted .mainTextStrengthsBlk dl>dt {}

.productsDevelopment_entrusted .mainTextStrengthsBlk dl>dd {
	text-indent: -1em;
	margin-left: 1em;
}

.productsDevelopment_entrusted .mainTextStrengthsBlk dl>dd span {
	color: #5788D3;
}

.productsDevelopment_entrusted .mainTextDesc {}

.productsDevelopment_entrusted .mainImgBlk {}

.productsDevelopment_entrusted .mainImgBlk img {}

@media screen and (max-width: 1024px) {

	/*common start*/
	.productsDevelopment_cmn {
		padding: 60px 0 0 !important;
	}

	.productsDevelopment_cmn .inner {}

	.productsDevelopment_cmn .headBlk {}

	.productsDevelopment_cmn .head {}

	.productsDevelopment_cmn .mainBlk {
		flex-flow: column;
		gap: 35px;
		margin: 20px 0 0;
	}

	.productsDevelopment_cmn .mainTextBlk {}

	.productsDevelopment_cmn .mainTextTitle {
		font-size: 17px;
	}

	.productsDevelopment_cmn .mainTextDesc {}

	.productsDevelopment_cmn .mainImgBlk {
		width: 100%;
		text-align: center;
	}

	.productsDevelopment_cmn .mainImgBlk img {
		max-width: var(--maxWidthS);
		width: 100%;
	}

	/*common end*/
	.productsDevelopment_research {}

	.productsDevelopment_research .inner {}

	.productsDevelopment_research .headBlk {}

	.productsDevelopment_research .head {}

	.productsDevelopment_research .mainBlk {}

	.productsDevelopment_research .mainTextBlk {}

	.productsDevelopment_research .mainTextTitle {}

	.productsDevelopment_research .mainTextDesc {}

	.productsDevelopment_research .mainTextLinkBlk {
		margin: 30px 0 0;
		text-align: center;
	}

	.productsDevelopment_research .mainTextLinkBlk a {}

	.productsDevelopment_research .mainImgBlk {}

	.productsDevelopment_research .mainImgBlk img {}

	.productsDevelopment_entrusted {}

	.productsDevelopment_entrusted .inner {}

	.productsDevelopment_entrusted .headBlk {}

	.productsDevelopment_entrusted .head {}

	.productsDevelopment_entrusted .mainBlk {}

	.productsDevelopment_entrusted .mainTextBlk {}

	.productsDevelopment_entrusted .mainTextTitle {}

	.productsDevelopment_entrusted .mainTextStrengthsBlk {
		padding: 15px;
	}

	.productsDevelopment_entrusted .mainTextStrengthsBlk dl {}

	.productsDevelopment_entrusted .mainTextStrengthsBlk dl>* {
		font-size: 15px;
	}

	.productsDevelopment_entrusted .mainTextStrengthsBlk dl>dt {}

	.productsDevelopment_entrusted .mainTextStrengthsBlk dl>dd {}

	.productsDevelopment_entrusted .mainTextStrengthsBlk dl>dd span {}

	.productsDevelopment_entrusted .mainTextDesc {}

	.productsDevelopment_entrusted .mainImgBlk {}

	.productsDevelopment_entrusted .mainImgBlk img {}
}

/*
Reserch
====================================*/
/*common start*/
/*common end*/
.reserch_outline {
	padding: 90px 0 0;
}

.reserch_outline .inner {}

.reserch_outline .blk {}

.reserch_outline .headBlk {}

.reserch_outline .head {}

.reserch_outline .mainBlk {
	gap: 50px;
	margin: 25px 0 0;
}

.reserch_outline .mainTextBlk {
	flex: 1;
}

.reserch_outline .mainTextDesc {}

.reserch_outline .mainImgBlk {
	width: min(518px, 100%);
}

.reserch_outline .mainImgBlk img {}

.reserch_presentation {
	padding: 130px 0 0;
}

.reserch_presentation .inner {}

.reserch_presentation .blk {}

.reserch_presentation .headBlk {}

.reserch_presentation .head {}

.reserch_presentation .mainBlk {
	display: grid;
	gap: 5px;
	margin: 20px 0 0;
}

.reserch_presentation .mainBlk a {
	position: relative;
	align-items: stretch;
	flex-flow: initial;
	background-image: url(./images/icon_arrow01_bgBlue03.svg);
	background-repeat: no-repeat;
	background-position: right 38px center;
	background-size: 20px;
}

.reserch_presentation .mainBlk a>* {
	padding: 18px 0;
}

.reserch_presentation .mainDate {
	display: grid;
	place-items: center;
	width: min(139px, 100%);
	text-align: center;
	line-height: 25px;
	color: #Fff;
	background: var(--textColorBlue);
}

.reserch_presentation .mainTitle {
	flex: 1;
	padding-left: 33px !important;
	padding-right: 91px !important;
	line-height: 25px;
	border: 1px solid #e2e6eb;
}

.reserch_presentation .mainTitlePdf {
	display: inline-block;
	padding: 0px 10px;
	margin-left: 14px;
	font-size: 13px;
	color: var(--textColorBlue);
	border-radius: 5px;
	border: 1px solid #8bafe5;
	text-wrap: nowrap;
	line-height: 1.6;
}

.reserch_equipment {
	padding: 130px 0 0;
}

.reserch_equipment .inner {}

.reserch_equipment .blk {}

.reserch_equipment .headBlk {}

.reserch_equipment .head {}

.reserch_equipment .leadBlk {
	margin: 15px 0 0;
}

.reserch_equipment .lead {}

.reserch_equipment .mainBlk {
	align-items: stretch;
	gap: 24px 30px;
	margin: 40px 0 0;
	padding: 60px 55px;
	background: linear-gradient(#f4f9ff 0%, #c4def8 100%);
}

.reserch_equipment .mainBlk>div {
	width: calc((100% - (30px * 1)) / 2);
}

.reserch_equipment .mainBlk>div:first-child {
	width: 100%;
}

.reserch_equipment .mainBlk dl {
	overflow: hidden;
	height: 100%;
	margin: auto;
	border-radius: 15px;
	filter: drop-shadow(0px 2px 10px rgba(1, 78, 134, 0.22));
	background: #fff;
}

.reserch_equipment .mainBlk>div:first-child dl {
	width: min(583px, 100%);
}

.reserch_equipment .mainBlk dl>div {
	padding: 22px 66px;
}

.reserch_equipment .mainBlk>div:first-child dl>div {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 60px;
}

.reserch_equipment .mainBlk>div:first-child dl dd {}

.reserch_equipment .mainBlk dl dt {
	display: grid;
	place-items: center;
	min-height: 50px;
	padding: 0 30px;
	text-align: center;
	font-size: 20px;
	color: #fff;
	background: #749ad5;
}

.reserch_equipment .mainBlk dl dd {
	font-size: 16px;
}

.reserch_equipment .mainBlk dl dd span {
	color: #749AD5;
}

@media screen and (max-width: 1024px) {

	/*common start*/
	/*common end*/
	.reserch_outline {
		padding: 60px 0 0 !important;
	}

	.reserch_outline .inner {}

	.reserch_outline .blk {}

	.reserch_outline .headBlk {}

	.reserch_outline .head {}

	.reserch_outline .mainBlk {
		flex-flow: column;
		gap: 35px;
		margin: 25px 0 0;
	}

	.reserch_outline .mainTextBlk {}

	.reserch_outline .mainTextDesc {}

	.reserch_outline .mainImgBlk {
		width: 100%;
		text-align: center;
	}

	.reserch_outline .mainImgBlk img {
		max-width: var(--maxWidthS);
		width: 100%;
	}

	.reserch_presentation {
		padding: 60px 0 0 !important;
	}

	.reserch_presentation .inner {}

	.reserch_presentation .blk {}

	.reserch_presentation .headBlk {}

	.reserch_presentation .head {}

	.reserch_presentation .mainBlk {}

	.reserch_presentation .mainBlk a {
		background-position: right 15px center;
		background-size: 20px;
	}

	.reserch_presentation .mainBlk a>* {}

	.reserch_presentation .mainDate {
		width: min(90px, 100%);
	}

	.reserch_presentation .mainTitle {
		position: relative;
		padding-left: 10px !important;
		padding-right: 50px !important;
		line-height: inherit;
	}

	.reserch_presentation .mainTitlePdf {
		margin-left: 10px;
		padding: 0px 8px;
		line-height: 1.4;
		background: #fff;
	}

	.reserch_equipment {
		padding: 60px 0 0 !important;
	}

	.reserch_equipment .inner {}

	.reserch_equipment .blk {}

	.reserch_equipment .headBlk {}

	.reserch_equipment .head {}

	.reserch_equipment .leadBlk {}

	.reserch_equipment .lead {}

	.reserch_equipment .mainBlk {
		gap: 20px;
		margin: 30px auto 0;
		padding: 35px 10px;
	}

	.reserch_equipment .mainBlk>div {
		width: 100%;
		max-width: var(--maxWidthS);
		margin: auto;
	}

	.reserch_equipment .mainBlk>div:first-child {}

	.reserch_equipment .mainBlk dl {
		border-radius: 10px;
	}

	.reserch_equipment .mainBlk>div:first-child dl {
		width: 100%;
	}

	.reserch_equipment .mainBlk dl>div {
		padding: 20px 10px;
	}

	.reserch_equipment .mainBlk>div:first-child dl>div {
		gap: 0 15px;
	}

	.reserch_equipment .mainBlk>div:first-child dl dd {}

	.reserch_equipment .mainBlk dl dt {
		min-height: 40px;
		font-size: 18px;
	}

	.reserch_equipment .mainBlk dl dd {
		font-size: 1rem;
	}
}

/*
searchResult
====================================*/
/*common start*/
/*common end*/
.searchResult_list {
	padding: 90px 0 140px;
}

.searchResult_list .inner {}

.searchResult_list .blk {}

.searchResult_list .searchBlk {
	text-align: center;
}

.searchResult_list #searchProductsForm,
.searchResult_list #searchTechnicalInfoForm {
	display: none;
}

.searchResult_list form {
	display: inline-flex;
	height: 50px;
	border: 1px solid #c2c6cb;
	border-radius: 30px;
	background: #fff;
}

.searchResult_list form input[type="text"] {
	width: 350px;
	padding: 0 0 0 15px;
	font-size: 16px;
	border-radius: 18px 0 0 18px;
	text-align: left;
}

.searchResult_list form input:focus {
	outline: none;
}

.searchResult_list form button {
	display: grid;
	place-items: center;
	width: 45px;
	padding-right: 5px;
}

.searchResult_list form button>* {
	color: var(--newsColor);
}

.searchResult_list .numberBlk {
	margin: 60px 0 0;
}

.searchResult_list .numberBlk p {
	font-size: 18px;
	line-height: inherit;
	color: var(--textColorBlue2);
}

.searchResult_list .mainBlk {
	margin: 17px 0 0;
}

.searchResult_list .mainBlk article {}

.searchResult_list .mainBlk article:last-child {
	border-bottom: 1px solid #d7dce2;
}

.searchResult_list .mainBlk a {
	display: block;
	padding: 20px 120px 20px 60px;
	border-top: 1px solid #d7dce2;
	background-image: url(./images/icon_arrow01_bgBlue04.svg);
	background-repeat: no-repeat;
	background-position: right 60px center;
	background-size: 25px;
}

.searchResult_list .mainProductsCatBlk {
	width: 92%;
	margin: 0 0 10px;
}

.searchResult_list .mainProductsCatBlk ul {
	gap: 8px;
	justify-content: flex-start;
}

.searchResult_list .mainProductsCatBlk ul>li {
	display: grid;
	place-items: center;
	height: 28px;
	padding: 0 30px;
	font-size: 13px;
	text-align: center;
	color: var(--textColorBlue);
	border: 1px solid #719cde;
	border-radius: 5px;
}

.searchResult_list .mainTechnicalInfoBlk {
	display: flex;
	align-items: center;
	margin: 0 0 10px;
}

.searchResult_list .mainTechnicalInfoCat {
	display: inline-block;
	padding: 0px 32px;
}

.searchResult_list .mainTechnicalInfoCat._material {
	background: #d2e6fa;
}

.searchResult_list .mainTechnicalInfoCat._message {
	color: #fff;
	background: var(--mainColor);
}

.searchResult_list .mainTechnicalInfoCat._conference-presentation {
	color: #fff;
	background: var(--textColorBlue);
}

.searchResult_list .mainTechnicalInfoPdf {
	display: inline-block;
	padding: 3px 10px;
	margin-left: 20px;
	font-size: 13px;
	color: var(--textColorBlue);
	border-radius: 5px;
	border: 1px solid #8bafe5;
	text-wrap: nowrap;
}

.searchResult_list .mainTitleBlk {
	justify-content: flex-start;
	align-items: center;
	flex-flow: initial;
}

.searchResult_list .mainTitle {
	font-size: 20px;
	color: #042a65;
	font-weight: 600;
	line-height: inherit;
}

.searchResult_list .mainDesc {
	margin: 3px 0 0;
}

.searchResult_list .paginationBlk {
	margin: -15px 0 0;
}

.searchResult_list .linkBlk {
	margin: 100px 0 0;
	text-align: center;
}

.searchResult_list .linkBlk a {}

@media screen and (max-width: 1024px) {

	/*common start*/
	/*common end*/
	.searchResult_list {
		padding: 60px 0 90px !important;
	}

	.searchResult_list .inner {}

	.searchResult_list .blk {}

	.searchResult_list .searchBlk {}

	.searchResult_list #searchProductsForm,
	.searchResult_list #searchTechnicalInfoForm {}

	.searchResult_list form {
		height: 38px;
	}

	.searchResult_list form input[type="text"] {
		width: 260px;
	}

	.searchResult_list form input:focus {}

	.searchResult_list form button {}

	.searchResult_list form button>* {}

	.searchResult_list .numberBlk {
		margin: 40px 0 0;
	}

	.searchResult_list .numberBlk p {
		font-size: 16px;
	}

	.searchResult_list .mainBlk {}

	.searchResult_list .mainBlk article {}

	.searchResult_list .mainBlk article:last-child {}

	.searchResult_list .mainBlk a {
		padding: 20px 35px 20px 0;
		background-position: right center;
		background-size: 20px;
	}

	.searchResult_list .mainProductsCatBlk {
		gap: 8px;
	}

	.searchResult_list .mainProductsCatBlk ul {}

	.searchResult_list .mainProductsCatBlk ul>li {
		padding: 0 5px;
	}

	.searchResult_list .mainTechnicalInfoBlk {}

	.searchResult_list .mainTechnicalInfoCat {
		padding: 1px 15px;
	}

	.searchResult_list .mainTechnicalInfoCat._material {}

	.searchResult_list .mainTechnicalInfoCat._message {}

	.searchResult_list .mainTechnicalInfoCat._conference-presentation {}

	.searchResult_list .mainTechnicalInfoPdf {
		margin-left: 15px;
		padding: 0px 7px;
	}

	.searchResult_list .mainTitleBlk {}

	.searchResult_list .mainTitle {
		font-size: 18px;
	}

	.searchResult_list .mainDesc {
		-webkit-line-clamp: 4;
	}

	.searchResult_list .paginationBlk {}

	.searchResult_list .linkBlk {}

	.searchResult_list .linkBlk a {}
}

/*
採用情報
====================================*/
/*common start*/
/*common end*/
.recruit_top {}

.recruit_top .inner {
	height: 100%;
}

.recruit_top .blk {
	height: 100%;
}

.recruit_top .mainBlk {
	position: relative;
	height: calc(100% - 137px - 52px);
	margin: 0 0 52px;
}

.recruit_top .mainHeadBlk {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0%);
	z-index: 1;
	width: 100%;
	height: 100%;
	margin: auto;
	pointer-events: none;
}

.recruit_top .mainHead {
	position: absolute;
	top: 12%;
	left: 3.5%;
	font-size: 30px;
	color: #fff;
	text-shadow: 0px 3px 6px #000;
}

.recruit_top .mainSlideBlk {
	height: 100%;
	opacity: 0;
	transition: opacity .3s linear;
}

.recruit_top .mainSlideBlk .slick-track {
	pointer-events: auto;
}

.recruit_top .mainSlideBlk.slick-initialized {
	opacity: 1;
}

.recruit_top .mainSlideBlk img {
	width: 100%;
	height: 100%;
}

.recruit_top .mainSlideBlk .slick-dots {
	bottom: -33px;
}

.recruit_top .mainSlideBlk .slick-dots>li {}

.recruit_top .mainSlideBlk .slick-dots>li button {
	background: #D7DCE2;
}

.recruit_top .mainSlideBlk .slick-dots>li.slick-active button {
	background: var(--mainColor);
}

.recruit_top .mainImgBlk {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	width: min(750px, 100%);
	text-align: center;
}

.recruit_top .mainImgBlk img {}

.recruit_top .slideNavBlk {}

.recruit_top .slideNavBlk .slick-track {
	transform: unset !important;
	display: flex;
	justify-content: space-between;
}

.recruit_top .slideNavBlk .slick-track::before,
.recruit_top .slideNavBlk .slick-track::after {
	display: none;
}

.recruit_top .slideNavBlk .slideNavItem {
	position: relative;
	width: calc((100% - (11px * 4)) / 5) !important;
}

.recruit_top .slideNavBlk .slideNavItem.slick-current::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	width: 100%;
	border: solid 2px var(--recruitColor);
}

.recruit_top .slideNavBlk img {}

/* .recruit_top .galleryBlk {
position: relative;
top: 0;
left: 50%;
transform: translate(-50%, 0%);
overflow: hidden;
display: flex;
width: calc(var(--vw)* 100);
}
.recruit_top .galleryBlk > ul {
display: flex;
animation: css_loopSlide 40s infinite linear 1s both;
}
.recruit_top .galleryBlk > ul > li {
margin-left: 11px;
}
.recruit_top .galleryBlk > ul > li > img {
height: 137px;
max-width: initial;
} */
.recruit_outline {
	padding: 140px 0 0;
}

.recruit_outline .inner {}

.recruit_outline .blk {}

.recruit_outline .headBlk {}

.recruit_outline .head {
	font-size: 45px;
	text-align: center;
}

.recruit_outline .descBlk {
	margin: 20px 0 0;
	padding: 10px 0 230px;
	background-image: url(./images/recruit_outlineDesc_bg01.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.recruit_outline .desc {
	font-weight: 700;
}

.recruit_message {
	margin: 140px 0 0;
	padding: 90px 0;
	background: linear-gradient(#bcc1ff 0%, #9ad0ff 100%);
}

.recruit_message .inner {}

.recruit_message .blk {
	padding: 50px;
	box-shadow: 0px 0px 20px rgba(0, 81, 124, 0.16);
	background: #fff;
}

.recruit_message .headBlk {}

.recruit_message .head {}

.recruit_message .mainBlk {
	gap: 53px;
	margin: 30px 0 0;
}

.recruit_message .mainTextBlk {
	flex: 1;
}

.recruit_message .mainTextHead {
	font-size: 25px;
	font-weight: 700;
}

.recruit_message .mainTextDesc {
	margin: 35px 0 0;
}

.recruit_message .mainImgBlk {
	width: min(416px, 100%);
}

.recruit_message .mainImgBlk img {}

.recruit_message .mainImgName {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10px 0 0;
}

.recruit_message .mainImgName span {
	font-size: 25px;
	font-weight: 600;
}

.recruit_menu {
	padding: 140px 0 0;
}

.recruit_menu .inner {}

.recruit_menu .blk {}

.recruit_menu .headBlk {}

.recruit_menu .head {}

.recruit_menu .leadBlk {}

.recruit_menu .lead {
	margin: 25px 0 0;
	font-size: 23px;
	font-weight: 600;
}

.recruit_menu .mainBlk {
	margin: 25px 0 0;
}

.recruit_menu .mainBlk a {
	height: 259px;
}

.recruit_menu .mainBlk a::before {}

.recruit_menu .mainBlk a._companyIntroduction::after {
	background-image: url(./images/recruit_menuCompanyMain01.webp);
}

.recruit_menu .mainBlk a._keyword::after {
	background-image: url(./images/recruit_menuCompanyMain02.webp);
}

.recruit_menu .mainBlk a._youthYell::after {
	background-image: url(./images/recruit_menuCompanyMain03.webp);
}

.recruit_menu .mainBlk a._welfare::after {
	background-image: url(./images/recruit_menuCompanyMain04.webp);
}

.recruit_menu .mainBlk a._jobIntroduction::after {
	background-image: url(./images/recruit_menuWorkMain01.webp);
}

.recruit_menu .mainBlk a._educate::after {
	background-image: url(./images/recruit_menuWorkMain02.webp);
}

.recruit_menu .mainBlk a>span {}

.recruit_menu .mainBlk a>span>span {}

.recruit_info {
	padding: 140px 0;
}

.recruit_info .inner {}

.recruit_info .blk {}

.recruit_info .headBlk {}

.recruit_info .head {}

.recruit_info .entryBlk {
	margin: 30px 0 0;
}

.recruit_info .entryBlk>div {}

.recruit_info .entryBlk>div._flesh {}

.recruit_info .entryBlk>div._hsgraduate {}

.recruit_info .entryBlk>div._carrier {}

.recruit_info .entryHead {}

.recruit_info .entryLinkBlk {}

.recruit_info .entryLinkBlk a {}

.recruit_info .otherBlk {}

.recruit_info .otherBlk a {}

@media screen and (max-width: 1024px) {

	/*common start*/
	/*common end*/
	.recruit_top {
		height: auto;
	}

	.recruit_top .inner {
		width: 100%;
		max-width: unset;
	}

	.recruit_top .blk {}

	.recruit_top .mainBlk {
		aspect-ratio: 16/9.1;
		height: auto;
		margin: 0 0 30px;
	}

	.recruit_top .mainHeadBlk {}

	.recruit_top .mainHead {
		font-size: 22px;
	}

	.recruit_top .mainSlideBlk {}

	.recruit_top .mainSlideBlk.slick-initialized {}

	.recruit_top .mainSlideBlk img {}

	.recruit_top .mainSlideBlk .slick-dots {
		bottom: -25px;
	}

	.recruit_top .mainSlideBlk .slick-dots>li {
		margin: 0px 7px;
	}

	.recruit_top .mainSlideBlk .slick-dots>li button {}

	.recruit_top .mainSlideBlk .slick-dots>li.slick-active button {}

	.recruit_top .mainImgBlk {
		width: 90%;
	}

	.recruit_top .mainImgBlk img {}

	.recruit_top .slideNavBlk {
		display: none;
	}

	.recruit_top .slideNavBlk .slick-track {}

	.recruit_top .slideNavBlk .slick-track::before,
	.recruit_top .slideNavBlk .slick-track::after {}

	.recruit_top .slideNavBlk .slideNavItem {}

	.recruit_top .slideNavBlk img {}

	/* .recruit_top .galleryBlk {}
	.recruit_top .galleryBlk > ul {}
	.recruit_top .galleryBlk > ul > li {}
	.recruit_top .galleryBlk > ul > li > img {
	height: 110px;
} */
	.recruit_outline {
		padding: 60px 0 0 !important;
	}

	.recruit_outline .inner {
		width: 100%;
	}

	.recruit_outline .blk {}

	.recruit_outline .headBlk {}

	.recruit_outline .head {
		font-size: 20px;
	}

	.recruit_outline .descBlk {
		padding: 10px 4% 230px;
	}

	.recruit_outline .desc {
		font-size: 15px;
	}

	.recruit_message {
		margin: 60px 0 0;
		padding: 30px 0 !important;
	}

	.recruit_message .inner {}

	.recruit_message .blk {
		padding: 30px 15px;
	}

	.recruit_message .headBlk {}

	.recruit_message .head {
		font-size: 20px;
	}

	.recruit_message .mainBlk {
		flex-flow: column;
		gap: 25px;
		margin: 25px 0 0;
	}

	.recruit_message .mainTextBlk {
		order: 2;
	}

	.recruit_message .mainTextHead {
		font-size: 18px;
	}

	.recruit_message .mainTextDesc {
		margin: 20px 0 0;
	}

	.recruit_message .mainImgBlk {
		order: 1;
		width: 100%;
		text-align: center;
	}

	.recruit_message .mainImgBlk img {
		width: 100%;
		max-width: var(--maxWidthS);
	}

	.recruit_message .mainImgName {}

	.recruit_message .mainImgName span {
		font-size: 20px;
	}

	.recruit_menu {
		padding: 60px 0 0 !important;
	}

	.recruit_menu .inner {}

	.recruit_menu .blk {}

	.recruit_menu .headBlk {}

	.recruit_menu .head {}

	.recruit_menu .leadBlk {}

	.recruit_menu .lead {
		margin: 20px 0 0;
		font-size: 18px;
	}

	.recruit_menu .mainBlk {}

	.recruit_menu .mainBlk a {}

	.recruit_menu .mainBlk a::before {}

	.recruit_menu .mainBlk a::after {
		display: block;
	}

	.recruit_menu .mainBlk a._companyIntroduction::after {}

	.recruit_menu .mainBlk a._keyword::after {}

	.recruit_menu .mainBlk a._youthYell::after {}

	.recruit_menu .mainBlk a._welfare::after {}

	.recruit_menu .mainBlk a._jobIntroduction::after {}

	.recruit_menu .mainBlk a._educate::after {}

	.recruit_menu .mainBlk a>span {}

	.recruit_menu .mainBlk a>span>span {}

	.recruit_info {
		padding: 60px 0 90px !important;
	}

	.recruit_info .inner {}

	.recruit_info .blk {}

	.recruit_info .headBlk {}

	.recruit_info .head {}

	.recruit_info .entryBlk {
		flex-flow: column;
		gap: 15px;
	}

	.recruit_info .entryBlk>div {}

	.recruit_info .entryBlk>div._flesh {}

	.recruit_info .entryBlk>div._hsgraduate {}

	.recruit_info .entryBlk>div._carrier {}

	.recruit_info .entryHead {}

	.recruit_info .entryLinkBlk {}

	.recruit_info .entryLinkBlk a {}

	.recruit_info .otherBlk {}

	.recruit_info .otherBlk a {}
}

/*
会社紹介
====================================*/
/*common start*/
/*common end*/
.companyIntroduction_outline {}

.companyIntroduction_outline .inner {}

.companyIntroduction_outline .blk {}

.companyIntroduction_outline .headBlk {}

.companyIntroduction_outline .head {
	font-size: 45px;
	text-align: center;
}

.companyIntroduction_outline .head span {}

.companyIntroduction_outline .leadBlk {
	margin: 40px 0 0;
}

.companyIntroduction_outline .lead {}

.companyIntroduction_outline .movieBlk {
	margin: 55px 0 0;
}

.companyIntroduction_outline .movieBlk iframe {}

.companyIntroduction_outline .otherBlk {
	margin: 90px 0 0;
}

.companyIntroduction_outline .otherDesc {
	text-align: center;
}

.companyIntroduction_outline .otherLinkBlk {
	width: min(880px, 100%);
	margin: 15px auto 0;
}

.companyIntroduction_outline .otherLinkBlk a {
	position: relative;
	overflow: hidden;
	display: block;
	border-radius: 20px;
}

.companyIntroduction_outline .otherLinkBlk a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	display: inline-block;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(5, 32, 70, 0.78) 0%, rgba(4, 33, 72, 0.68) 25.12%, rgba(84, 99, 119, 0) 100%);
	transition: .3s;
}

.companyIntroduction_outline .otherLinkBlk a span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	font-size: 25px;
	color: #fff;
	font-weight: 600;
	padding-right: 40px;
	background-image: url(./images/icon_arrow01_bgWhite.svg);
	background-repeat: no-repeat;
	background-position: right top 53%;
	background-size: 26px;
	transition: .3s;
}

.companyIntroduction_outline .otherLinkBlk a img {
	position: relative;
	z-index: 0;
	transition: .3s;
}

@media screen and (min-width: 1025px) {
	.companyIntroduction_outline .otherLinkBlk a:hover {
		opacity: 1;
	}

	.companyIntroduction_outline .otherLinkBlk a:hover::before {
		opacity: 0;
	}

	.companyIntroduction_outline .otherLinkBlk a:hover span {
		text-shadow: 0px 0px 9px #000, 0px 0px 9px #000;
	}

	.companyIntroduction_outline .otherLinkBlk a:hover img {
		transform: scale(1.04);
	}
}

.companyIntroduction_charm {
	background: linear-gradient(#f4f9ff 0%, #c4def8 100%);
}

.companyIntroduction_charm .inner {}

.companyIntroduction_charm .blk {
	padding: 40px 43px;
	background: #fff;
}

.companyIntroduction_charm .headBlk {}

.companyIntroduction_charm .head {
	padding: 0 0 7px;
	font-size: 25px;
	text-align: center;
	border-bottom: 1px solid #53b0ff;
	font-weight: 700;
}

.companyIntroduction_charm .mainBlk {
	margin: 40px 0 0;
}

.companyIntroduction_charm .mainBlk>ul {
	display: grid;
	gap: 20px 54px;
	grid-template-columns: repeat(2, 1fr);
}

.companyIntroduction_charm .mainBlk>ul>li {
	font-size: 15px;
	line-height: 25px;
}

.companyIntroduction_charm .mainBlk>ul>li span {
	color: #53B0FF;
}

.companyIntroduction_explore {
	padding: 140px 0 0;
}

.companyIntroduction_explore .inner {}

.companyIntroduction_explore .blk {}

.companyIntroduction_explore .headBlk {}

.companyIntroduction_explore .head {
	font-weight: 700;
}

.companyIntroduction_explore .leadBlk {
	margin: 20px 0 0;
}

.companyIntroduction_explore .lead {
	text-align: center;
}

.companyIntroduction_explore .mainBlk {
	margin: 20px 0 0;
}

.companyIntroduction_explore .mainExploreBlk {}

.companyIntroduction_explore .mainDesc {
	margin: 20px 0 0;
	text-align: center;
}

@media screen and (max-width: 1024px) {

	/*common start*/
	/*common end*/
	.companyIntroduction_outline {
		padding: 60px 0 0 !important;
	}

	.companyIntroduction_outline .inner {}

	.companyIntroduction_outline .blk {}

	.companyIntroduction_outline .headBlk {}

	.companyIntroduction_outline .head {
		font-size: 20px;
	}

	.companyIntroduction_outline .head span {}

	.companyIntroduction_outline .leadBlk {
		margin: 25px 0 0;
	}

	.companyIntroduction_outline .lead {
		text-align: justify;
	}

	.companyIntroduction_outline .movieBlk {
		margin: 30px 0 0;
	}

	.companyIntroduction_outline .movieBlk iframe {}

	.companyIntroduction_outline .otherBlk {
		margin: 40px 0 0;
	}

	.companyIntroduction_outline .otherDesc {}

	.companyIntroduction_outline .otherLinkBlk {}

	.companyIntroduction_outline .otherLinkBlk a {
		border-radius: 10px;
	}

	.companyIntroduction_outline .otherLinkBlk a::before {}

	.companyIntroduction_outline .otherLinkBlk a span {
		font-size: 18px;
		white-space: nowrap;
		padding-right: 30px;
		background-position: right top 60%;
		background-size: 20px;
	}

	.companyIntroduction_outline .otherLinkBlk a img {}

	.companyIntroduction_charm {}

	.companyIntroduction_charm .inner {}

	.companyIntroduction_charm .blk {
		padding: 25px 15px;
	}

	.companyIntroduction_charm .headBlk {}

	.companyIntroduction_charm .head {
		padding: 0 0 3px;
		font-size: 20px;
	}

	.companyIntroduction_charm .mainBlk {
		margin: 30px 0 0;
	}

	.companyIntroduction_charm .mainBlk>ul {
		grid-template-columns: repeat(1, 1fr);
		gap: 14px 54px;
	}

	.companyIntroduction_charm .mainBlk>ul>li {
		font-size: 1rem;
		line-height: inherit;
	}

	.companyIntroduction_charm .mainBlk>ul>li span {}

	.companyIntroduction_explore {
		padding: 60px 0 0 !important;
	}

	.companyIntroduction_explore .inner {}

	.companyIntroduction_explore .blk {}

	.companyIntroduction_explore .headBlk {}

	.companyIntroduction_explore .head {}

	.companyIntroduction_explore .leadBlk {}

	.companyIntroduction_explore .lead {}

	.companyIntroduction_explore .mainBlk {
		margin: 30px 0 0;
	}

	.companyIntroduction_explore .mainExploreBlk {}

	.companyIntroduction_explore .mainDesc {
		margin: 30px 0 0;
	}
}

/*
キーワードで知る
====================================*/
/*common start*/
/*common end*/
.keyword_lead {
	padding: 90px 0 60px;
}

.keyword_lead .inner {}

.keyword_lead .blk {}

.keyword_lead .mainBlk {}

.keyword_lead .mainLead {}

.keyword_data {
	background-image: url(./images/keyword_dataMain_bg01.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.keyword_data .inner {}

.keyword_data .blk {}

.keyword_data .mainBlk {}

.keyword_data .mainBlk dl {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(3, 1fr);
}

.keyword_data .mainBlk dl>div {
	padding: 10% 0 0;
	aspect-ratio: 1/1;
	box-shadow: 0px 0px 15px rgba(0, 81, 124, 0.16);
	background: #fff;
	opacity: 0;
}

.keyword_data .mainBlk dl>div._visible {
	animation: fadeInRotate 1s cubic-bezier(0.39, 0.58, 0.57, 1) forwards;
}

.keyword_data .mainBlk dl>div._visible:nth-child(3n - 1) {
	animation-delay: .2s;
}

.keyword_data .mainBlk dl>div._visible:nth-child(3n) {
	animation-delay: .6s;
}

@keyframes fadeInRotate {
	from {
		opacity: 0;
		/* transform: rotateY(300deg); */
	}

	to {
		opacity: 1;
		/* transform: rotate(0deg); */
	}
}

.keyword_data .mainBlk dl dt {
	margin: 0px 25px;
	padding: 0 0 10px;
	font-size: 25px;
	text-align: center;
	border-bottom: 1px solid #53b0ff;
}

.keyword_data .mainBlk dl dd {}

.keyword_data .mainLead {
	min-height: 50px;
	margin: 5% 0 0;
	line-height: 25px;
	text-align: center;
}

.keyword_data .mainDescBlk {}

.keyword_data .mainDesc {
	color: #1b5fb2;
	font-weight: 700;
}

.keyword_data .mainDesc._type1 {
	padding: 12% 0 0;
	text-align: center;
}

.keyword_data .mainBlk dl>div._item12 .mainDesc._type1 {
	/* padding: calc(12% - 25px) 0 0; */
}

.keyword_data .mainDescNum {
	font-family: Helvetica;
	line-height: 1;
}

.keyword_data .mainDesc._type1 .mainDescNum {
	font-size: 113px;
}

.keyword_data .mainDesc._type1 .mainDescText {
	font-size: 43px;
}

.keyword_data .mainDesc._type2 {
	display: grid;
	gap: 5px 13px;
	grid-template-columns: repeat(2, 1fr);
	padding: 9% 16px 0;
}

.keyword_data .mainDesc._type2>li {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.keyword_data .mainDesc._type2 .mainDescText {
	font-size: 16px;
	transform: translate(0, -2px);
}

.keyword_data .mainDesc._type2 .mainDescNumBlk {}

.keyword_data .mainDesc._type2 .mainDescNum {
	font-size: 40px;
	line-height: 1;
}

.keyword_data .mainDesc._type2 .mainDescNumText {
	font-size: 17px;
}

.keyword_data .mainDesc._type3 {
	display: flex;
	gap: 40px;
	justify-content: center;
	padding: 14% 0 0;
	font-size: 16px;
	transform: translate(0, -2px);
}

.keyword_data .mainDesc._type3>div {}

.keyword_data .mainDesc._type3 .mainDescText {
	display: block;
	font-size: 25px;
	text-align: center;
}

.keyword_data .mainDesc._type3 .mainDescNumBlk {
	margin: 3px 0 0;
}

.keyword_data .mainDesc._type3 .mainDescNum {
	font-size: 76px;
}

.keyword_data .mainDesc._type3 .mainDescNumText {
	font-size: 29px;
}

.keyword_data .mainDesc._type4 {
	padding: 1% 0 0 !important;
}

.keyword_data .mainDesc._type4 .mainDescYear {
	display: block;
	font-size: 33px;
	margin: 0 0 10px;
}

@media screen and (max-width: 1024px) {

	/*common start*/
	/*common end*/
	.keyword_lead {}

	.keyword_lead .inner {}

	.keyword_lead .blk {}

	.keyword_lead .mainBlk {}

	.keyword_lead .mainLead {}

	.keyword_data {}

	.keyword_data .inner {}

	.keyword_data .blk {}

	.keyword_data .mainBlk {}

	.keyword_data .mainBlk dl {
		grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
		gap: 15px;
	}

	.keyword_data .mainBlk dl>div {
		aspect-ratio: initial;
		padding: 8% 0;
	}

	.keyword_data .mainBlk dl>div._visible {}

	.keyword_data .mainBlk dl>div._visible:nth-child(3n - 1) {}

	.keyword_data .mainBlk dl>div._visible:nth-child(3n) {}

	.keyword_data .mainBlk dl dt {
		margin: 0px 15px;
		padding: 0 0 3px;
		font-size: 20px;
	}

	.keyword_data .mainBlk dl dd {}

	.keyword_data .mainLead {
		min-height: 35px;
		line-height: initial;
	}

	.keyword_data .mainDescBlk {}

	.keyword_data .mainDesc {}

	.keyword_data .mainDesc._type1 {
		padding: 25px 0 0;
	}

	.keyword_data .mainBlk dl>div._item12 .mainDesc._type1 {
		padding: 25px 0 0;
	}

	.keyword_data .mainDescNum {}

	.keyword_data .mainDesc._type1 .mainDescNum {
		font-size: 55px;
	}

	.keyword_data .mainDesc._type1 .mainDescText {
		font-size: 25px;
	}

	.keyword_data .mainDesc._type2 {
		max-width: var(--maxWidthXS);
		gap: 5px 15px;
		padding: 25px 15px 0;
		margin: auto;
	}

	.keyword_data .mainDesc._type2>li {}

	.keyword_data .mainDesc._type2 .mainDescText {
		font-size: 1rem;
	}

	.keyword_data .mainDesc._type2 .mainDescNumBlk {}

	.keyword_data .mainDesc._type2 .mainDescNum {
		font-size: 24px;
	}

	.keyword_data .mainDesc._type2 .mainDescNumText {
		font-size: 1rem;
	}

	.keyword_data .mainDesc._type3 {
		padding: 25px 0 0;
	}

	.keyword_data .mainDesc._type3>div {}

	.keyword_data .mainDesc._type3 .mainDescText {
		font-size: 20px;
	}

	.keyword_data .mainDesc._type3 .mainDescNumBlk {}

	.keyword_data .mainDesc._type3 .mainDescNum {
		font-size: 40px;
	}

	.keyword_data .mainDesc._type3 .mainDescNumText {}

	.keyword_data .mainDesc._type4 {
		padding: 0px 0 0 !important;
	}

	.keyword_data .mainDesc._type4 .mainDescYear {
		font-size: 20px;
	}
}

/*
youthYell
====================================*/
/*common start*/
/*common end*/
.youthYell_lead {
	padding: 90px 0 0;
}

.youthYell_lead .inner {}

.youthYell_lead .blk {}

.youthYell_lead .mainBlk {
	padding: 30px 0;
	border: 1px solid #0da2a8;
}

.youthYell_lead .mainLead {
	color: #0da2a8;
	font-weight: 700;
	text-align: center;
}

.youthYell_system {
	padding: 90px 0 90px;
}

.youthYell_system .inner {}

.youthYell_system .blk {}

.youthYell_system .headBlk {}

.youthYell_system .head {}

.youthYell_system .mainBlk {
	margin: 20px 0 0;
}

.youthYell_system .mainDesc {}

.youthYell_system .mainImgBlk {
	justify-content: center;
	gap: 60px;
	margin: 50px 0 0;
}

.youthYell_system .mainImgBlk img {
	width: min(350px, 100%);
}

.youthYell_system .mainImgBlk img:last-child {
	width: min(328px, 100%);
}

.youthYell_requirements {
	background: linear-gradient(#f2f5ff 0%, #bbcafd 100%);
}

.youthYell_requirements .inner {}

.youthYell_requirements .blk {}

.youthYell_requirements .headBlk {}

.youthYell_requirements .head {
	font-size: 27px;
	text-align: center;
}

.youthYell_requirements .mainBlk {
	margin: 40px 0 0;
}

.youthYell_requirements .mainBlk ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px 36px;
}

.youthYell_requirements .mainBlk ul>li {
	padding: 25px 39px;
	font-size: 18px;
	border-radius: 10px;
	border: 1.5px solid #c9a1eb;
	background: #fff;
}

.youthYell_attempt {
	padding: 140px 0 0;
}

.youthYell_attempt .inner {}

.youthYell_attempt .blk {}

.youthYell_attempt .headBlk {}

.youthYell_attempt .head {}

.youthYell_attempt .mainBlk {
	gap: 50px;
	margin: 40px 0 0;
}

.youthYell_attempt .mainTextBlk {
	flex: 1;
}

.youthYell_attempt .mainTextDesc {}

.youthYell_attempt .mainImgBlk {
	width: min(518px, 100%);
}

.youthYell_attempt .mainImgBlk img {}

@media screen and (max-width: 1024px) {

	/*common start*/
	/*common end*/
	.youthYell_lead {
		padding: 60px 0 0 !important;
	}

	.youthYell_lead .inner {}

	.youthYell_lead .blk {}

	.youthYell_lead .mainBlk {}

	.youthYell_lead .mainLead {}

	.youthYell_system {}

	.youthYell_system .inner {}

	.youthYell_system .blk {}

	.youthYell_system .headBlk {}

	.youthYell_system .head {}

	.youthYell_system .mainBlk {}

	.youthYell_system .mainDesc {
		text-align: justify;
	}

	.youthYell_system .mainImgBlk {
		justify-content: space-between;
		gap: initial;
		margin: 30px 0 0;
	}

	.youthYell_system .mainImgBlk img {
		width: initial;
	}

	.youthYell_system .mainImgBlk img:first-child {
		width: 50%;
	}

	.youthYell_system .mainImgBlk img:last-child {
		width: 46.9%;
	}

	.youthYell_requirements {}

	.youthYell_requirements .inner {}

	.youthYell_requirements .blk {}

	.youthYell_requirements .headBlk {}

	.youthYell_requirements .head {
		font-size: 20px;
	}

	.youthYell_requirements .mainBlk {
		margin: 30px 0 0;
	}

	.youthYell_requirements .mainBlk ul {
		grid-template-columns: repeat(1, 1fr);
		gap: 15px 0;
		max-width: var(--maxWidthS);
		margin: auto;
	}

	.youthYell_requirements .mainBlk ul>li {
		padding: 22px 15px;
		font-size: 1rem;
		text-align: center;
	}

	.youthYell_attempt {
		padding: 60px 0 0 !important;
	}

	.youthYell_attempt .inner {}

	.youthYell_attempt .blk {}

	.youthYell_attempt .headBlk {}

	.youthYell_attempt .head {}

	.youthYell_attempt .mainBlk {
		flex-flow: column;
		gap: 30px;
		margin: 25px 0 0;
	}

	.youthYell_attempt .mainTextBlk {}

	.youthYell_attempt .mainTextDesc {}

	.youthYell_attempt .mainImgBlk {
		width: 100%;
	}

	.youthYell_attempt .mainImgBlk img {}
}

/*
welfare
====================================*/
/*common start*/
/*common end*/
.welfare_lead {
	padding: 90px 0 60px;
}

.welfare_lead .inner {}

.welfare_lead .blk {}

.welfare_lead .mainBlk {}

.welfare_lead .mainLead {
	font-weight: 700;
	text-align: center;
}

.welfare_main {
	background-image: url(./images/welfare_main_bg01.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.welfare_main .inner {}

.welfare_main .blk {}

.welfare_main .mainBlk {}

.welfare_main .mainBlk dl {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(3, 1fr);
}

.welfare_main .mainBlk dl>div {
	position: relative;
	padding: 45px 25px;
	box-shadow: 0px 0px 15px rgba(0, 81, 124, 0.16);
	background: #fff;
}

.welfare_main .mainBlk dl>div::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0%);
	width: 81px;
	height: 19px;
	background: linear-gradient(#1dd4ff 0%, #299cff 100%);
	clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.welfare_main .mainBlk dl dt {
	padding: 0 0 4px;
	font-size: 21px;
	line-height: inherit;
	font-weight: 700;
	text-align: center;
	border-bottom: 1px solid #53b0ff;
}

.welfare_main .mainBlk dl dd {}

.welfare_main .mainImgBlk {
	margin: 30px 0 20px;
}

.welfare_main .mainImgBlk img {}

.welfare_main .mainImgBlk._icon {
	margin: 15px 0 10px;
	text-align: center;
}

.welfare_main .mainImgBlk._icon img {
	width: min(113px, 100%);
}

.welfare_main .mainDesc {
	line-height: 25px;
}

.welfare_movie {
	padding: 140px 0 0;
}

.welfare_movie .inner {}

.welfare_movie .blk {}

.welfare_movie .headBlk {}

.welfare_movie .head {}

.welfare_movie .leadBlk {
	margin: 25px 0 0;
}

.welfare_movie .lead {
	text-align: center;
}

.welfare_movie .mainBlk {
	display: grid;
	gap: 40px;
	grid-template-columns: repeat(2, 1fr);
	margin: 50px 0 0;
}

@media screen and (max-width: 1024px) {

	/*common start*/
	/*common end*/
	.welfare_lead {}

	.welfare_lead .inner {}

	.welfare_lead .blk {}

	.welfare_lead .mainBlk {}

	.welfare_lead .mainLead {}

	.welfare_main {}

	.welfare_main .inner {}

	.welfare_main .blk {}

	.welfare_main .mainBlk {}

	.welfare_main .mainBlk dl {
		gap: 25px 15px;
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	}

	.welfare_main .mainBlk dl>div {
		padding: 40px 15px 25px;
	}

	.welfare_main .mainBlk dl>div::before {}

	.welfare_main .mainBlk dl dt {
		padding: 0 0 2px;
		font-size: 18px;
	}

	.welfare_main .mainBlk dl dd {}

	.welfare_main .mainImgBlk {}

	.welfare_main .mainImgBlk img {}

	.welfare_main .mainImgBlk._icon {
		margin: 10px 0;
	}

	.welfare_main .mainImgBlk._icon img {
		width: min(80px, 100%);
	}

	.welfare_main .mainDesc {}

	.welfare_movie {
		padding: 60px 0 0 !important;
	}

	.welfare_movie .inner {}

	.welfare_movie .blk {}

	.welfare_movie .headBlk {}

	.welfare_movie .head {}

	.welfare_movie .leadBlk {}

	.welfare_movie .lead {}

	.welfare_movie .mainBlk {
		gap: 25px;
		grid-template-columns: repeat(1, 1fr);
		margin: 30px 0 0;
	}
}

/*
jobIntroduction
====================================*/
/*common start*/
/*common end*/
.jobIntroduction_outline {
	padding: 90px 0 60px;
}

.jobIntroduction_outline .inner {}

.jobIntroduction_outline .blk {}

.jobIntroduction_outline .headBlk {}

.jobIntroduction_outline .head {}

.jobIntroduction_outline .descBlk {
	margin: 25px 0 0;
}

.jobIntroduction_outline .desc {}

.jobIntroduction_wrap._main {
	display: grid;
	gap: 70px;
	padding: 90px 0;
	background: #d2e6fa;
}

.jobIntroduction_main {
	padding: 0;
}

.jobIntroduction_main .inner {}

.jobIntroduction_main .blk {
	padding: 75px 70px;
	background: #fff;
}

.jobIntroduction_main .headBlk {}

.jobIntroduction_main .head {
	font-size: 32px;
	line-height: 61px;
	text-align: center;
	color: #fff;
	background: #53b0ff;
}

.jobIntroduction_main .mainBlk {
	margin: 26px 0 0;
}

.jobIntroduction_main .mainImgBlk {}

.jobIntroduction_main .mainImgBlk img {}

.jobIntroduction_main .mainDescBlk {
	margin: 40px 0 0;
}

.jobIntroduction_main .mainDesc {
	padding-left: 20px;
	display: table;
	margin: auto;
	border-left: solid 11px #53b0ff;
}

.jobIntroduction_main .mainMeritBlk {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(2, 1fr);
	margin: 40px 0 0;
	padding: 35px 65px;
	background: #9dd2ff;
}

.jobIntroduction_main .mainMeritBlk dl {
	padding: 20px 30px;
	border-radius: 15px;
	background: #fff;
}

.jobIntroduction_main .mainMeritBlk dt>* {}

.jobIntroduction_main .mainMeritBlk dt {
	line-height: inherit;
}

.jobIntroduction_main .mainMeritBlk dd {
	margin: 3px 0 0;
	line-height: 23px;
	font-size: 14px;
}

.jobIntroduction_main .mainMeritBlk dd span {
	color: #53C3FF;
}

.jobIntroduction_main .movieBlk {
	margin: 100px 0 0;
}

.jobIntroduction_main .movieHead {
	font-size: 27px;
	text-align: center;
}

.jobIntroduction_main .movieMainBlk {
	margin: 15px 0 0;
}

.jobIntroduction_main .movieMainBlk iframe {}

.jobIntroduction_main .infoBlk {
	margin: 90px 0 0;
}

.jobIntroduction_main .infoBlk a {
	gap: 40px;
	padding: 30px 65px;
	border-radius: 20px;
	box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.1);
	background-color: #fff;
	background-image: url(./images/icon_arrow01_bgBlue06.svg);
	background-repeat: no-repeat;
	background-position: right 65px center;
	background-size: 26px;
}

@media screen and (min-width: 1025px) {
	.jobIntroduction_main .infoBlk a:hover {
		opacity: 1;
		background-color: #F5F7F8;
		background-position: right 55px center;
	}
}

.jobIntroduction_main .infoImgBlk {
	width: min(196px, 100%);
}

.jobIntroduction_main .infoImgBlk img {
	border-radius: 50%;
}

.jobIntroduction_main .infoTextBlk {
	flex: 1;
	padding-right: 50px;
}

.jobIntroduction_main .infoTextHead {
	padding-bottom: 3px;
	font-size: 17px;
	border-bottom: 1px solid #53b0ff;
	font-weight: 700;
}

.jobIntroduction_main .infoTextTitle {
	margin: 17px 0 0;
	font-size: 19px;
	line-height: 28px;
	font-weight: 600;
}

.jobIntroduction_main .infoTextName {
	margin: 12px 0 0;
	font-size: 20px;
	font-weight: 700;
	line-height: inherit;
}

.jobIntroduction_main .infoTextNote {
	margin: 4px 0 0;
	font-size: 14px;
	line-height: 22px;
}

@media screen and (max-width: 1024px) {

	/*common start*/
	/*common end*/
	.jobIntroduction_outline {}

	.jobIntroduction_outline .inner {}

	.jobIntroduction_outline .blk {}

	.jobIntroduction_outline .headBlk {}

	.jobIntroduction_outline .head {}

	.jobIntroduction_outline .descBlk {}

	.jobIntroduction_outline .desc {
		text-align: justify;
	}

	.jobIntroduction_wrap._main {
		gap: 45px;
		padding: 30px 0;
	}

	.jobIntroduction_main {
		padding: 0 !important;
	}

	.jobIntroduction_main .inner {}

	.jobIntroduction_main .blk {
		padding: 30px 15px;
	}

	.jobIntroduction_main .headBlk {}

	.jobIntroduction_main .head {
		font-size: 20px;
		line-height: 40px;
	}

	.jobIntroduction_main .mainBlk {
		margin: 25px 0 0;
	}

	.jobIntroduction_main .mainImgBlk {}

	.jobIntroduction_main .mainImgBlk img {}

	.jobIntroduction_main .mainDescBlk {
		margin: 30px 0 0;
	}

	.jobIntroduction_main .mainDesc {
		padding-left: 10px;
		border-left: solid 5px #53b0ff;
	}

	.jobIntroduction_main .mainMeritBlk {
		gap: 15px;
		grid-template-columns: repeat(1, 1fr);
		margin: 30px 0 0;
		padding: 25px 10px;
	}

	.jobIntroduction_main .mainMeritBlk dl {
		padding: 20px 10px;
		border-radius: 10px;
	}

	.jobIntroduction_main .mainMeritBlk dt>* {}

	.jobIntroduction_main .mainMeritBlk dt {}

	.jobIntroduction_main .mainMeritBlk dd {}

	.jobIntroduction_main .mainMeritBlk dd span {}

	.jobIntroduction_main .movieBlk {
		margin: 35px 0 0;
	}

	.jobIntroduction_main .movieHead {
		font-size: 18px;
	}

	.jobIntroduction_main .movieMainBlk {}

	.jobIntroduction_main .movieMainBlk iframe {}

	.jobIntroduction_main .infoBlk {
		margin: 35px 0 0;
	}

	.jobIntroduction_main .infoBlk a {
		flex-flow: column;
		gap: 30px;
		padding: 30px 15px;
		border-radius: 10px;
		background-position: right 15px center;
		background-size: 20px;
	}

	.jobIntroduction_main .infoImgBlk {
		width: min(140px, 100%);
		margin: auto;
	}

	.jobIntroduction_main .infoImgBlk img {}

	.jobIntroduction_main .infoTextBlk {
		width: 100%;
		margin: auto;
		padding-right: 35px;
	}

	.jobIntroduction_main .infoTextHead {
		font-size: 15px;
	}

	.jobIntroduction_main .infoTextTitle {
		font-size: 16px;
		line-height: inherit;
	}

	.jobIntroduction_main .infoTextName {
		font-size: 18px;
	}

	.jobIntroduction_main .infoTextNote {
		font-size: 13px;
		line-height: inherit;
	}
}

/*
employeeTraining
====================================*/
/*common start*/
/*common end*/
.employeeTraining_outline {
	padding: 90px 0 140px;
}

.employeeTraining_outline .inner {}

.employeeTraining_outline .blk {}

.employeeTraining_outline .headBlk {}

.employeeTraining_outline .head {}

.employeeTraining_outline .descBlk {
	margin: 25px 0 0;
}

.employeeTraining_outline .desc {}

.employeeTraining_outline .imgBlk {
	margin: 60px 0 0;
}

.employeeTraining_outline .imgBlk img {}

.employeeTraining_main {
	background: linear-gradient(#bcc1ff 0%, #9ad0ff 100%);
}

.employeeTraining_main .inner {}

.employeeTraining_main .blk {
	padding: 65px 70px;
	background: #fff;
}

.employeeTraining_main .headBlk {}

.employeeTraining_main .head {
	text-align: center;
	font-size: 27px;
}

.employeeTraining_main .mainBlk {
	margin: 60px 0 0;
}

.employeeTraining_main .mainBlk>div {}

.employeeTraining_main .mainBlk>div:not(:first-child) {
	margin: 70px 0 0;
}

.employeeTraining_main .mainHead {
	font-size: 23px;
}

.employeeTraining_main .mainContentBlk {
	margin: 15px 0 0;
}

.employeeTraining_main .mainContentBlk img {}

.employeeTraining_main .mainContentBlk table {}

.employeeTraining_main .mainContentBlk table th {
	padding: 6px 32px;
	background: #1b5fb2;
	color: #fff;
}

.employeeTraining_main .mainContentBlk table th:nth-child(1) {
	width: 23.2%;
}

.employeeTraining_main .mainContentBlk table th:nth-child(2) {
	width: 19.9%;
}

.employeeTraining_main .mainContentBlk table th:nth-child(3) {}

.employeeTraining_main .mainContentBlk table th:not(:nth-child(3)) {
	border-right: 1px solid #fff;
}

.employeeTraining_main .mainContentBlk table td {
	vertical-align: middle;
	padding: 16px 30px;
	font-size: 16px;
	line-height: inherit;
}

.employeeTraining_main .mainContentBlk table td:nth-child(3) {
	font-size: 14px;
}

.employeeTraining_main .mainContentBlk table td:not(:nth-child(3)) {
	border-right: 1px solid #d7dce2;
}

.employeeTraining_main .mainContentBlk table tr:nth-child(even) td {
	background: var(--contentsBg);
}

.employeeTraining_main .mainContentBlk table tr:nth-child(odd) td {}

.employeeTraining_main .mainContentBlk table,
.employeeTraining_main .mainContentBlk table td,
.employeeTraining_main .mainContentBlk table th {}

.employeeTraining_main .mainContentBlk table th,
.employeeTraining_main .mainContentBlk table dt {}

@media screen and (max-width: 1024px) {

	/*common start*/
	/*common end*/
	.employeeTraining_outline {}

	.employeeTraining_outline .inner {}

	.employeeTraining_outline .blk {}

	.employeeTraining_outline .headBlk {}

	.employeeTraining_outline .head {}

	.employeeTraining_outline .descBlk {}

	.employeeTraining_outline .desc {
		text-align: justify;
	}

	.employeeTraining_outline .imgBlk {
		margin: 30px 0 0;
	}

	.employeeTraining_outline .imgBlk img {}

	.employeeTraining_main {
		padding: 30px 0 !important;
	}

	.employeeTraining_main .inner {}

	.employeeTraining_main .blk {
		padding: 30px 15px;
	}

	.employeeTraining_main .headBlk {}

	.employeeTraining_main .head {
		font-size: 20px;
	}

	.employeeTraining_main .mainBlk {
		margin: 25px 0 0;
	}

	.employeeTraining_main .mainBlk>div {}

	.employeeTraining_main .mainBlk>div:not(:first-child) {
		margin: 35px 0 0;
	}

	.employeeTraining_main .mainHead {
		font-size: 18px;
	}

	.employeeTraining_main .mainContentBlk {}

	.employeeTraining_main .mainContentBlk img {
		min-width: var(--maxWidthM);
	}

	.employeeTraining_main .mainContentBlk table {
		min-width: var(--maxWidthS);
	}

	.employeeTraining_main .mainContentBlk table th {
		padding: 6px 10px;
	}

	.employeeTraining_main .mainContentBlk table th:nth-child(1) {}

	.employeeTraining_main .mainContentBlk table th:nth-child(2) {}

	.employeeTraining_main .mainContentBlk table th:nth-child(3) {}

	.employeeTraining_main .mainContentBlk table th:not(:nth-child(3)) {}

	.employeeTraining_main .mainContentBlk table td {
		padding: 16px 10px;
		font-size: 1rem;
	}

	.employeeTraining_main .mainContentBlk table td:nth-child(3) {}

	.employeeTraining_main .mainContentBlk table td:not(:nth-child(3)) {}

	.employeeTraining_main .mainContentBlk table tr:nth-child(even) td {}

	.employeeTraining_main .mainContentBlk table tr:nth-child(odd) td {}

	.employeeTraining_main .mainContentBlk table,
	.employeeTraining_main .mainContentBlk table td,
	.employeeTraining_main .mainContentBlk table th {}

	.employeeTraining_main .mainContentBlk table th,
	.employeeTraining_main .mainContentBlk table dt {}
}

/*
interview
====================================*/
/*common start*/
/*common end*/
.interview_info {
	padding: 90px 0 0;
}

.interview_info .inner {}

.interview_info .blk {}

.interview_info .mainBlk {
	position: relative;
}

.interview_info .mainTextBlk {
	position: absolute;
	top: 50%;
	left: 58px;
	transform: translate(0%, -50%);
	color: #fff;
	text-shadow: 0px 1px 6px #000;
}

.interview_info .mainTextOccupation {
	display: inline-block;
	padding: 0 16px;
	font-size: 17px;
	line-height: 25px;
	text-shadow: initial;
	background: #1b5fb2;
}

.interview_info .mainTextHead {
	margin: 14px 0 0;
	font-size: 24px;
	line-height: 39px;
}

.interview_info .mainTextNote {
	margin: 35px 0 0;
	font-size: 15px;
	line-height: 23px;
}

.interview_info .mainTextName {
	margin: 5px 0 0;
	font-size: 22px;
	line-height: inherit;
}

.interview_info .mainImgBlk {}

.interview_info .mainImgBlk img {}

.interview_info .businessBlk {
	padding: 30px 58px;
	background: var(--contentsBg);
}

.interview_info .businessBlk dl {}

.interview_info .businessBlk dl dt {
	font-size: 16px;
	color: #1b5fb2;
	font-weight: 700;
}

.interview_info .businessBlk dl dd {
	margin: 5px 0 0;
}

.interview_main {
	padding: 90px 0 0;
}

.interview_main .inner {}

.interview_main .blk {}

.interview_main .mainBlk {
	display: grid;
	gap: 90px;
}

.interview_main .mainBlk>div {}

.interview_main .mainHeadBlk {}

.interview_main .mainHead {
	display: flex;
	font-size: 27px;
	line-height: 53px;
}

.interview_main .mainHead span {
	margin-right: 14px;
	font-family: "Roboto";
	font-size: 55px;
	color: #36a3f2;
	line-height: 1;
	font-weight: 300;
}

.interview_main .mainContentBlk {
	gap: 50px;
	margin: 30px 0 0;
}

.interview_main .mainContentBlk._reverse {
	flex-flow: row-reverse;
}

.interview_main .mainContentTextBlk {
	flex: 1;
}

.interview_main .mainContentDesc {}

.interview_main .mainContentImgBlk {
	width: min(518px, 100%);
}

.interview_main .mainContentImgBlk img {}

.interview_links {
	padding: 140px 0 0;
}

.interview_links .inner {}

.interview_links .blk {}

.interview_links .headBlk {
	margin: 0 0 25px;
}

.interview_links .head {
	font-size: 23px;
	text-align: center;
}

@media screen and (max-width: 1024px) {

	/*common start*/
	/*common end*/
	.interview_info {
		padding: 60px 0 0 !important;
	}

	.interview_info .inner {}

	.interview_info .blk {}

	.interview_info .mainBlk {
		display: flex;
		flex-flow: column-reverse;
	}

	.interview_info .mainTextBlk {
		position: initial;
		transform: initial;
		margin: 25px 0 0;
		color: #000;
		text-shadow: initial;
	}

	.interview_info .mainTextOccupation {
		padding: 0 10px;
		font-size: 14px;
		line-height: 25px;
		color: #fff;
	}

	.interview_info .mainTextHead {
		font-size: 18px;
		line-height: inherit;
	}

	.interview_info .mainTextNote {
		margin: 20px 0 0;
		font-size: 1rem;
		line-height: inherit;
	}

	.interview_info .mainTextName {
		font-size: 18px;
		font-weight: 600;
	}

	.interview_info .mainImgBlk {}

	.interview_info .mainImgBlk img {}

	.interview_info .businessBlk {
		margin: 25px 0 0;
		padding: 20px 15px;
	}

	.interview_info .businessBlk dl {}

	.interview_info .businessBlk dl dt {}

	.interview_info .businessBlk dl dd {}

	.interview_main {
		padding: 60px 0 0 !important;
	}

	.interview_main .inner {}

	.interview_main .blk {}

	.interview_main .mainBlk {
		gap: 45px;
	}

	.interview_main .mainBlk>div {}

	.interview_main .mainHeadBlk {}

	.interview_main .mainHead {
		font-size: 18px;
		line-height: inherit;
	}

	.interview_main .mainHead span {
		font-size: 30px;
		margin-right: 10px;
	}

	.interview_main .mainContentBlk {
		flex-flow: column;
		gap: 30px;
		margin: 20px 0 0;
	}

	.interview_main .mainContentBlk._reverse {
		flex-flow: column;
	}

	.interview_main .mainContentTextBlk {}

	.interview_main .mainContentDesc {}

	.interview_main .mainContentImgBlk {
		width: 100%;
		text-align: center;
	}

	.interview_main .mainContentImgBlk img {
		width: 100%;
		max-width: 500px;
	}

	.interview_links {
		padding: 60px 0 0 !important;
	}

	.interview_links .inner {}

	.interview_links .blk {}

	.interview_links .headBlk {}

	.interview_links .head {
		font-size: 20px;
	}
}

/*
talk
====================================*/
/*common start*/
/*common end*/
.talk_top {
	padding: 0;
}

.talk_top .inner {}

.talk_top .blk {
	position: relative;
}

.talk_top .textBlk {
	position: absolute;
	z-index: 1;
	display: inline-flex;
	flex-flow: column;
	justify-content: center;
	height: 100%;
	padding: 0 23px 0 6%;
	color: #fff;
}

.talk_top .textBlk::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	display: inline-block;
	width: 100%;
	height: 100%;
	background: linear-gradient(#0bd9f4 0%, #625ce8 100%);
	opacity: 0.8;
}

.talk_top .textHead {
	font-size: 30px;
	border-bottom: 1px solid #fff;
}

.talk_top .textLead {
	margin: 40px 0 0;
	font-size: 17px;
	line-height: 33px;
}

.talk_top .imgBlk {}

.talk_top .imgBlk img {}

.talk_info {}

.talk_info .inner {}

.talk_info .blk {}

.talk_info .mainBlk {
	justify-content: space-between;
}

.talk_info .mainBlk>div {
	width: min(176px, 100%);
}

.talk_info .mainImgBlk {}

.talk_info .mainImgBlk img {
	border-radius: 50%;
}

.talk_info .mainImgName {
	margin: 10px 0 0;
	font-size: 19px;
	line-height: inherit;
	text-align: center;
}

.talk_info .mainImgNote {
	margin: 5px 0 0;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
}

.talk_main {
	background: linear-gradient(#bcc1ff 0%, #9ad0ff 100%);
}

.talk_main .inner {}

.talk_main .blk {
	padding: 70px 83px;
	background: #fff;
}

.talk_main .mainBlk {
	display: grid;
	gap: 90px;
}

.talk_main .mainBlk>div {}

.talk_main .mainHeadBlk {}

.talk_main .mainHead {
	display: flex;
	font-size: 27px;
	line-height: 53px;
}

.talk_main .mainHead span {
	margin-top: -5px;
	margin-right: 14px;
	font-family: "Roboto";
	font-size: 55px;
	color: #36a3f2;
	line-height: 1;
	font-weight: 300;
}

.talk_main .mainContentBlk {
	display: grid;
	gap: 60px;
	margin: 50px 0 0;
}

.talk_main .mainContentBlk>div {
	gap: 27px;
}

.talk_main .mainContentIconBlk {
	width: min(84px, 100%);
}

.talk_main .mainContentIconBlk img {
	border-radius: 50%;
}

.talk_main .mainContentIconBlk figcaption {
	margin: 5px 0 0;
	font-size: 15px;
	text-align: center;
}

.talk_main .mainContentTextBlk {
	flex: 1;
}

.talk_main .mainContentDesc {}

.talk_main .mainImgBlk {
	gap: 24px;
	align-items: stretch;
}

.talk_main .mainImgBlk>div {
	flex: 1;
	text-align: center;
}

.talk_main .mainImgBlk img {}

@media screen and (max-width: 1024px) {

	/*common start*/
	/*common end*/
	.talk_top {
		padding: 0 !important;
	}

	.talk_top .inner {}

	.talk_top .blk {
		display: flex;
		flex-flow: column;
	}

	.talk_top .textBlk {
		position: relative;
		padding: 20px 15px;
	}

	.talk_top .textBlk::before {
		position: absolute;
	}

	.talk_top .textHead {
		font-size: 22px;
	}

	.talk_top .textLead {
		margin: 20px 0 0;
		font-size: 1rem;
		line-height: inherit;
	}

	.talk_top .imgBlk {}

	.talk_top .imgBlk img {}

	.talk_info {}

	.talk_info .inner {}

	.talk_info .blk {}

	.talk_info .mainBlk {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
		gap: 36px 0;
		max-width: 600px;
		margin: auto;
	}

	.talk_info .mainBlk>div {
		width: 100%;
	}

	.talk_info .mainImgBlk {
		text-align: center;
	}

	.talk_info .mainImgBlk img {
		width: 80%;
	}

	.talk_info .mainImgName {
		font-size: 16px;
		font-weight: 700;
	}

	.talk_info .mainImgNote {
		line-height: inherit;
	}

	.talk_main {
		padding: 30px 0 !important;
	}

	.talk_main .inner {}

	.talk_main .blk {
		padding: 30px 15px;
	}

	.talk_main .mainBlk {
		gap: 45px;
	}

	.talk_main .mainBlk>div {}

	.talk_main .mainHeadBlk {}

	.talk_main .mainHead {
		font-size: 18px;
		line-height: inherit;
	}

	.talk_main .mainHead span {
		margin-top: -2px;
		margin-right: 10px;
		font-size: 30px;
	}

	.talk_main .mainContentBlk {
		gap: 30px;
		margin: 30px 0 0;
	}

	.talk_main .mainContentBlk>div {
		gap: 15px;
	}

	.talk_main .mainContentIconBlk {
		width: 55px;
	}

	.talk_main .mainContentIconBlk img {
		width: 98px;
	}

	.talk_main .mainContentIconBlk figcaption {
		font-size: 14px;
	}

	.talk_main .mainContentTextBlk {}

	.talk_main .mainContentDesc {}

	.talk_main .mainImgBlk {
		gap: 15px;
	}

	.talk_main .mainImgBlk>div {
		flex: initial;
		width: 100%;
	}

	.talk_main .mainImgBlk img {}
}

/*
requirements
====================================*/
/*common start*/
/*common end*/
.requirements_main {
	padding: 90px 0 0;
}

main._hsgraduate .requirements_main {
	padding: 140px 0 0;
}

.requirements_main .inner {
	display: grid;
	gap: 90px;
}

.requirements_main .blk {
	padding: 90px 80px;
	border: 1px solid #c2c6cb;
}

.requirements_main .head {}

.requirements_main .mainBlk {
	display: grid;
	gap: 90px;
	margin: 35px 0 0;
}

.requirements_main .mainBlk dl {}

.requirements_main .mainBlk dl>div {}

.requirements_main .mainBlk dl dt {
	width: min(184px, 100%);
	font-weight: 500;
}

.requirements_main .mainBlk dl dd {}

.requirements_main .mainBlk dl dd a {}

.requirements_main .bannerBlk {
	margin: 45px 0 0;
	text-align: center;
}

.requirements_main .bannerLead {
	text-align: center;
	margin: 0 0 12px;
}

.requirements_main .bannerBlk a {}

.requirements_main .linkBlk {
	margin: 60px 0 0;
	text-align: center;
}

.requirements_main .linkBlk a {
	display: inline-grid;
	place-items: center;
	width: min(305px, 100%);
	height: 60px;
	font-size: 18px;
	color: #fff;
	font-weight: 600;
	border-radius: 8px;
	background: var(--recruitColor);
}

@media screen and (min-width: 1025px) {
	.requirements_main .linkBlk a {
		opacity: 1;
	}
}

.requirements_forParents {
	padding: 90px 0 0;
}

.requirements_forParents._adjustment {
	padding: 140px 0 0;
}

.requirements_forParents .inner {}

.requirements_forParents .blk {}

.requirements_forParents .mainBlk {
	overflow: hidden;
	align-items: stretch;
	border-radius: 12px;
}

.requirements_forParents .mainTextBlk {
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	flex: 1;
	color: #fff;
	background: var(--recruitHSGraduateColor);
}

.requirements_forParents .mainTextLinkBlk {
	width: min(415px, 100%);
}

.requirements_forParents .mainTextLinkBlk a {
	display: grid;
	place-items: center;
	width: 100%;
	font-size: 22px;
	line-height: 61px;
	border-radius: 10px;
	border: 1px solid #fff;
	background: rgb(255 255 255 / .2);
}

@media screen and (min-width: 1025px) {
	.requirements_forParents .mainTextLinkBlk a {
		opacity: 1;
	}
}

.requirements_forParents .mainTextLinkBlk a span {
	position: relative;
	padding-right: 36px;
	background-image: url(./images/icon_arrow01_bgWhite.svg);
	background-repeat: no-repeat;
	background-position: right top 51%;
	background-size: 22px;
}

.requirements_forParents .mainTextDesc {
	margin: 10px 0 0;
	font-size: 16px;
	line-height: inherit;
}

.requirements_forParents .mainImgBlk {
	width: min(518px, 100%);
}

.requirements_forParents .mainImgBlk img {}

@media screen and (max-width: 1024px) {

	/*common start*/
	/*common end*/
	.requirements_main {
		padding: 60px 0 0 !important;
	}

	main._hsgraduate .requirements_main {}

	.requirements_main .inner {
		gap: 60px;
	}

	.requirements_main .blk {
		padding: 35px 15px;
	}

	.requirements_main .head {}

	.requirements_main .mainBlk {
		gap: 60px;
		margin: 30px 0 0;
	}

	.requirements_main .mainBlk dl {}

	.requirements_main .mainBlk dl>div {}

	.requirements_main .mainBlk dl dt {
		width: 100%;
		font-weight: 600;
	}

	.requirements_main .mainBlk dl dd {}

	.requirements_main .mainBlk dl dd a {}

	.requirements_main .bannerBlk {
		margin: 35px 0 0;
	}

	.requirements_main .bannerBlk a {}

	.requirements_main .linkBlk {
		margin: 35px 0 0;
	}

	.requirements_main .linkBlk a {
		width: 100%;
		max-width: var(--maxWidthXS);
		height: 55px;
		font-size: 18px;
	}

	.requirements_forParents {
		padding: 60px 0 0 !important;
	}

	.requirements_forParents._adjustment {}

	.requirements_forParents .inner {}

	.requirements_forParents .blk {}

	.requirements_forParents .mainBlk {
		flex-flow: column-reverse;
	}

	.requirements_forParents .mainTextBlk {
		padding: 25px 15px;
	}

	.requirements_forParents .mainTextLinkBlk {}

	.requirements_forParents .mainTextLinkBlk a {
		max-width: var(--maxWidthXS);
		margin: auto;
		font-size: 18px;
		line-height: 55px;
	}

	.requirements_forParents .mainTextLinkBlk a span {}

	.requirements_forParents .mainTextDesc {
		margin: 15px 0 0;
		font-size: 1rem;
		text-align: center;
	}

	.requirements_forParents .mainImgBlk {
		width: 100%;
	}

	.requirements_forParents .mainImgBlk img {}
}

/*
faq
====================================*/
/*common start*/
/*common end*/
.faq_lead {
	padding: 90px 0 0;
}

.faq_lead .inner {}

.faq_lead .blk {}

.faq_lead .mainBlk {}

.faq_lead .mainLead {}

.faq_main {
	margin: 35px 0 0;
	background: linear-gradient(#e8e9fd 0%, #e7ebfe 26.11%, #e3f2ff 77.83%, #e3f2ff 100%);
}

.faq_main .inner {}

.faq_main .blk {}

.faq_main .mainBlk {
	display: grid;
	gap: 70px;
}

.faq_main .mainBlk>div {}

.faq_main .mainHead {}

.faq_main .mainMainBlk {
	margin: 37px 0 0;
}

.faq_main .mainMainBlk dl {
	display: grid;
	gap: 15px;
}

.faq_main .mainMainBlk dl>div {
	border-radius: 10px;
	filter: drop-shadow(0px 1px 10px rgba(51, 51, 51, 0.15));
	background: #fff;
}

.faq_main .mainMainBlk dl>div>* {
	display: flex;
	gap: 20px;
	padding: 30px 47px;
}

.faq_main .mainMainBlk dl dt {
	position: relative;
	cursor: pointer;
}

.faq_main .mainMainTitle {
	padding-top: 9px;
	font-size: 19px;
	line-height: 28px;
	font-weight: 700;
}

.faq_main .mainMainBtn {
	position: absolute;
	top: 50%;
	right: 47px;
	transform: translate(0%, -50%);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	transition: all .3s;
	background: #719cde;
}

.faq_main .mainMainBlk dl dt._open .mainMainBtn {
	transform: translate(0%, -50%) rotate(45deg);
}

.faq_main .mainMainBtn::before,
.faq_main .mainMainBtn::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline-block;
	background: #fff;
}

.faq_main .mainMainBtn:before {
	height: 3px;
	width: calc(100% - 12px);
}

.faq_main .mainMainBtn:after {
	width: 3px;
	height: calc(100% - 12px);
}

.faq_main .mainMainBlk dl dd {
	position: relative;
}

.faq_main .mainMainBlk dl dd::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	width: calc(100% - (47px * 2));
	height: 1px;
	margin: auto;
	background: #c4def8;
}

.faq_main .mainMainDesc {
	padding-top: 8px;
	font-size: 17px;
	line-height: 28px;
}

.faq_main .mainMainTitle,
.faq_main .mainMainDesc {
	flex: 1;
}

.faq_main .mainMainMarc {
	font-family: Roboto;
	content: '';
	display: grid;
	place-items: center;
	width: 45px;
	height: 45px;
	font-size: 30px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	border-radius: 50%;
}

.faq_main .mainMainBlk dl dt .mainMainMarc {
	background: #4fb6ed;
}

.faq_main .mainMainBlk dl dt .mainMainMarc::before {
	content: 'Q';
}

.faq_main .mainMainBlk dl dd .mainMainMarc {
	background: #bb82eb;
}

.faq_main .mainMainBlk dl dd .mainMainMarc::before {
	content: 'A';
}

@media screen and (max-width: 1024px) {

	/*common start*/
	/*common end*/
	.faq_lead {
		padding: 60px 0 0 !important;
	}

	.faq_lead .inner {}

	.faq_lead .blk {}

	.faq_lead .mainBlk {}

	.faq_lead .mainLead {
		text-align: justify;
	}

	.faq_main {
		margin: 60px 0 0;
	}

	.faq_main .inner {}

	.faq_main .blk {}

	.faq_main .mainBlk {
		gap: 45px;
	}

	.faq_main .mainBlk>div {}

	.faq_main .mainHead {}

	.faq_main .mainMainBlk {
		margin: 35px 0 0;
	}

	.faq_main .mainMainBlk dl {}

	.faq_main .mainMainBlk dl>div {}

	.faq_main .mainMainBlk dl>div>* {
		gap: 20px;
		padding: 20px 15px;
	}

	.faq_main .mainMainBlk dl dt {
		gap: 15px;
		padding: 20px 45px 20px 15px;
	}

	.faq_main .mainMainTitle {
		padding-top: 6px;
		font-size: 16px;
		line-height: inherit;
	}

	.faq_main .mainMainBtn {
		right: 15px;
		width: 25px;
		height: 25px;
	}

	.faq_main .mainMainBlk dl dt._open .mainMainBtn {}

	.faq_main .mainMainBtn::before,
	.faq_main .mainMainBtn::after {}

	.faq_main .mainMainBtn:before {
		height: 2px;
	}

	.faq_main .mainMainBtn:after {
		width: 2px;
	}

	.faq_main .mainMainBlk dl dd {
		gap: 15px;
	}

	.faq_main .mainMainBlk dl dd::before {
		width: calc(100% - (15px * 2));
	}

	.faq_main .mainMainDesc {
		font-size: 1rem;
		line-height: inherit;
	}

	.faq_main .mainMainTitle,
	.faq_main .mainMainDesc {}

	.faq_main .mainMainMarc {
		width: 35px;
		height: 35px;
		font-size: 25px;
	}

	.faq_main .mainMainBlk dl dt .mainMainMarc {}

	.faq_main .mainMainBlk dl dt .mainMainMarc::before {}

	.faq_main .mainMainBlk dl dd .mainMainMarc {}

	.faq_main .mainMainBlk dl dd .mainMainMarc::before {}
}

/*
採用フロー
====================================*/
/*common start*/
/*common end*/
.flow_lead {
	padding: 90px 0 0;
}

.flow_lead .inner {}

.flow_lead .blk {}

.flow_lead .mainBlk {}

.flow_lead .mainLead {}

.flow_main {
	padding: 50px 0 0;
}

.flow_main .inner {}

.flow_main .blk {}

.flow_main .mainBlk {
	display: grid;
	gap: 140px;
}

.flow_main .mainBlk>div {
	padding: 75px 100px;
	border: 1px solid #e2e6eb;
}

.flow_main .mainHead {}

.flow_main .mainBlk>div._hsgraduate .mainHead {
	border-bottom: 1px solid #006e54;
}

.flow_main .mainBlk>div._carrier .mainHead {}

.flow_main .mainMainBlk {
	display: grid;
	gap: 57px;
	margin: 37px 0 0;
}

.flow_main .mainMainBlk>div {
	position: relative;
	gap: 30px;
	align-items: center;
	padding: 35px 34px;
	border-radius: 10px;
	background: #e6f4ff;
}

.flow_main .mainBlk>div._hsgraduate .mainMainBlk>div {
	background: #d8f2ec;
}

.flow_main .mainBlk>div._carrier .mainMainBlk>div {
	background: #e2ecf7;
}

.flow_main .mainMainBlk>div::before {
	content: '';
	position: absolute;
	top: calc(100% + 13px);
	left: 50%;
	transform: translate(-50%, 0%);
	display: inline-block;
	width: 147px;
	height: 34px;
	background: linear-gradient(#007ad3 0%, #53c3ff 100%);
	clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.flow_main .mainBlk>div._hsgraduate .mainMainBlk>div::before {
	background: linear-gradient(#006e54 0%, #07b58d 100%);
}

.flow_main .mainBlk>div._carrier .mainMainBlk>div::before {
	background: linear-gradient(#00397b 0%, #046be2 100%);
}

.flow_main .mainMainBlk>div:last-child::before {
	display: none;
}

.flow_main .mainMainImgBlk {
	width: min(130px, 100%);
}

.flow_main .mainMainImgBlk img {
	border-radius: 50%;
}

.flow_main .mainMainTextBlk {
	flex: 1;
}

.flow_main .mainMainHead {
	font-size: 22px;
}

.flow_main .mainMainDesc {
	margin: 3px 0 0;
}

@media screen and (max-width: 1024px) {

	/*common start*/
	/*common end*/
	.flow_lead {
		padding: 60px 0 0 !important;
	}

	.flow_lead .inner {}

	.flow_lead .blk {}

	.flow_lead .mainBlk {}

	.flow_lead .mainLead {}

	.flow_main {
		padding: 60px 0 0 !important;
	}

	.flow_main .inner {}

	.flow_main .blk {}

	.flow_main .mainBlk {
		gap: 45px;
	}

	.flow_main .mainBlk>div {
		padding: 30px 15px;
	}

	.flow_main .mainHead {}

	.flow_main .mainBlk>div._hsgraduate .mainHead {}

	.flow_main .mainBlk>div._carrier .mainHead {}

	.flow_main .mainMainBlk {
		gap: 57px;
		margin: 35px 0 0;
	}

	.flow_main .mainMainBlk>div {
		gap: 15px;
		padding: 25px 15px;
	}

	.flow_main .mainBlk>div._hsgraduate .mainMainBlk>div {}

	.flow_main .mainBlk>div._carrier .mainMainBlk>div {}

	.flow_main .mainMainBlk>div::before {}

	.flow_main .mainBlk>div._hsgraduate .mainMainBlk>div::before {}

	.flow_main .mainBlk>div._carrier .mainMainBlk>div::before {}

	.flow_main .mainMainBlk>div:last-child::before {}

	.flow_main .mainMainImgBlk {
		width: min(70px, 100%);
	}

	.flow_main .mainMainImgBlk img {}

	.flow_main .mainMainTextBlk {}

	.flow_main .mainMainHead {
		font-size: 18px;
	}

	.flow_main .mainMainDesc {
		margin: 5px 0 0;
	}
}

/*
forParent
====================================*/
/*common start*/
/*common end*/
.forParent_lead {
	padding: 90px 0 0;
}

.forParent_lead .inner {}

.forParent_lead .blk {}

.forParent_lead .mainBlk {}

.forParent_lead .mainLead {}

.forParent_lead .imgBlk {
	margin: 60px 0 0;
	text-align: center;
}

.forParent_lead .imgBlk img {
	width: min(735px, 100%);
}

.forParent_voice {
	margin: 90px 0 0;
	background: linear-gradient(#f2f5ff 0%, #bbcafd 100%);
}

.forParent_voice .inner {}

.forParent_voice .blk {}

.forParent_voice .head {
	font-size: 28px;
	text-align: center;
}

.forParent_voice .mainBlk {
	margin: 30px 0 0;
}

.forParent_voice .mainBlk dl {
	display: grid;
	gap: 25px;
}

.forParent_voice .mainBlk dl>div {
	padding: 55px 60px;
	border-radius: 15px;
	background: #fff;
}

.forParent_voice .mainBlk dl dt {
	padding-bottom: 8px;
	font-size: 22px;
	line-height: 35px;
	border-bottom: 1px solid #99bfef;
	font-weight: 700;
}

.forParent_voice .mainBlk dl dd {
	margin: 25px 0 0;
}

.forParent_voice .mainBlk dl dd ul {
	display: grid;
	gap: 20px;
}

.forParent_voice .mainBlk dl dd ul>li {
	text-indent: -1em;
	margin-left: 1em;
}

.forParent_voice .mainBlk dl dd ul>li span {
	color: #53C3FF;
}

.forParent_flow {
	padding: 140px 0 0;
}

.forParent_company {
	padding: 140px 0 0;
}

.forParent_company .inner {}

.forParent_company .blk {}

.forParent_company .head {
	font-size: 28px;
	text-align: center;
}

.forParent_company .mainBlk {
	display: grid;
	gap: 70px;
	margin: 30px 0 0;
}

.forParent_company .mainBlk>div {}

.forParent_company .mainBlk>div>div {}

.forParent_company .mainBlk a {
	height: 259px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.forParent_company .mainBlk a._companyIntroduction::after {
	background-image: url(./images/forParent_companyLink01.webp);
}

.forParent_company .mainBlk a._keyword::after {
	background-image: url(./images/forParent_companyLink02.webp);
}

.forParent_company .mainBlk a._youthYell::after {
	background-image: url(./images/forParent_companyLink03.webp);
}

.forParent_company .mainBlk a._welfare::after {
	background-image: url(./images/forParent_companyLink04.webp);
}

.forParent_company .mainBlk a._jobIntroduction::after {
	background-image: url(./images/forParent_companyLink05.webp);
}

.forParent_company .mainBlk a._employeeTraining::after {
	background-image: url(./images/forParent_companyLink06.webp);
}

.forParent_company .mainDesc {
	margin: 10px 0 0;
	text-align: justify;
}

@media screen and (max-width: 1024px) {

	/*common start*/
	/*common end*/
	.forParent_lead {
		padding: 60px 0 0 !important;
	}

	.forParent_lead .inner {}

	.forParent_lead .blk {}

	.forParent_lead .mainBlk {}

	.forParent_lead .mainLead {
		text-align: justify;
	}

	.forParent_lead .imgBlk {
		margin: 30px 0 0;
	}

	.forParent_lead .imgBlk img {}

	.forParent_voice {
		margin: 60px 0 0;
	}

	.forParent_voice .inner {}

	.forParent_voice .blk {}

	.forParent_voice .head {
		font-size: 20px;
	}

	.forParent_voice .mainBlk {}

	.forParent_voice .mainBlk dl {}

	.forParent_voice .mainBlk dl>div {
		padding: 25px 15px;
	}

	.forParent_voice .mainBlk dl dt {
		font-size: 16px;
		line-height: inherit;
	}

	.forParent_voice .mainBlk dl dd {
		margin: 20px 0 0;
	}

	.forParent_voice .mainBlk dl dd ul {
		gap: 15px;
	}

	.forParent_voice .mainBlk dl dd ul>li {}

	.forParent_voice .mainBlk dl dd ul>li span {}

	.forParent_flow {}

	.forParent_company {
		padding: 60px 0 0 !important;
	}

	.forParent_company .inner {}

	.forParent_company .blk {}

	.forParent_company .head {
		font-size: 20px;
	}

	.forParent_company .mainBlk {
		gap: 30px;
	}

	.forParent_company .mainBlk>div {
		gap: 30px;
	}

	.forParent_company .mainBlk>div>div {}

	.forParent_company .mainBlk a {}

	.forParent_company .mainBlk a._companyIntroduction::after {}

	.forParent_company .mainBlk a._keyword::after {}

	.forParent_company .mainBlk a._youthYell::after {}

	.forParent_company .mainBlk a._welfare::after {}

	.forParent_company .mainBlk a._jobIntroduction::after {}

	.forParent_company .mainBlk a._employeeTraining::after {}

	.forParent_company .mainDesc {}
}

/*
contact
====================================*/
/*common start*/
/*common end*/
.contact_lead {
	padding: 70px 0 0;
}

.contact_lead .inner {}

.contact_lead .blk {}

.contact_lead .mainBlk {}

.contact_lead .mainLead {
	font-size: 20px;
}

.contact_form {}

.contact_form._contact {
	margin: 40px 0 0;
	background: #ebf1ff;
}

.contact_form._entry {
	background: #e3f1fd;
}

.contact_form .inner {}

.contact_form .blk {
	width: min(866px, 100%);
	margin: auto;
}

.contact_form .head {
	line-height: 50px;
	text-align: center;
	border-radius: 7px;
	font-size: 22px;
	color: #fff;
	background: #1466c6;
}

.contact_form._contact .head {
	background: #1466c6;
}

.contact_form._entry .head {
	background: #53b0ff;
}

.contact_form .mainBlk {
	margin: 30px 0 0;
	padding: 70px 85px;
	border-radius: 10px;
	background: #fff;
}

.contact_form .mainPrivacyBlk {}

.contact_form .mainPrivacyBlk dl {}

.contact_form .mainPrivacyBlk dl dt {}

.contact_form .mainPrivacyBlk dl dd {}

.contact_privacy {
	margin: 140px 0;
	background: linear-gradient(#f4f9ff 0%, #c4def8 100%);
}

.contact_privacy .inner {}

.contact_privacy .blk {}

.contact_privacy .mainBlk {
	padding: 85px 90px;
	filter: drop-shadow(0px 3px 15px rgba(0, 0, 0, 0.15));
	background: #fff;
}

.contact_privacy .mainBlk dl {}

.contact_privacy .mainBlk dl dt {
	padding: 0 0 10px;
	color: var(--textColorBlue);
	font-size: 25px;
	line-height: inherit;
	border-bottom: 1px solid rgba(17, 65, 139, 0.9);
}

.contact_privacy .mainBlk dl dd {
	margin: 35px 0 0;
	line-height: 27px;
}

.contact_privacy .mainBlk dl dd span {
	display: inline-block;
	margin: 1em 0 0;
	font-size: 1rem;
	color: var(--textColorBlue);
	font-weight: 600;
}

.contact_entry {}

.contact_entry .inner {}

.contact_entry .blk {
	padding: 80px 117px;
	border: 1px solid #a4a8ad;
}

.contact_entry .head {}

.contact_entry .linkBlk {
	gap: 30px;
	margin: 35px 0 0;
}

.contact_entry .linkBlk a {
	flex: 1;
}

.contact_entry .desc {
	margin: 35px 0 0;
	text-align: center;
	font-size: 17px;
}

@media screen and (max-width: 1024px) {

	/*common start*/
	/*common end*/
	.contact_lead {}

	.contact_lead .inner {}

	.contact_lead .blk {}

	.contact_lead .mainBlk {}

	.contact_lead .mainLead {
		font-size: 16px;
	}

	.contact_form {}

	.contact_form._contact {
		margin: 0;
	}

	.contact_form._entry {}

	.contact_form .inner {}

	.contact_form .blk {}

	.contact_form .head {
		font-size: 20px;
	}

	.contact_form._contact .head {}

	.contact_form._entry .head {}

	.contact_form .mainBlk {
		margin: 25px 0 0;
		padding: 30px 15px;
	}

	.contact_form .mainPrivacyBlk {}

	.contact_form .mainPrivacyBlk dl {}

	.contact_form .mainPrivacyBlk dl dt {}

	.contact_form .mainPrivacyBlk dl dd {}

	.contact_privacy {
		margin: 60px 0 90px;
	}

	.contact_privacy .inner {}

	.contact_privacy .blk {}

	.contact_privacy .mainBlk {
		padding: 25px 15px;
	}

	.contact_privacy .mainBlk dl {}

	.contact_privacy .mainBlk dl dt {
		padding: 0 0 5px;
		font-size: 20px;
	}

	.contact_privacy .mainBlk dl dd {
		margin: 30px 0 0;
		line-height: inherit;
	}

	.contact_privacy .mainBlk dl dd span {}

	.contact_entry {}

	.contact_entry .inner {}

	.contact_entry .blk {
		padding: 25px 15px;
	}

	.contact_entry .head {}

	.contact_entry .linkBlk {
		align-items: center;
		flex-flow: column;
		gap: 15px;
		margin: 30px 0 0;
	}

	.contact_entry .linkBlk a {
		flex: unset;
	}

	.contact_entry .desc {
		display: table;
		margin: 25px auto 0;
		font-size: 1rem;
		text-align: left;
	}
}

/*
Information
====================================*/
/*common start*/
/*common end*/
.info_category {
	padding: 90px 0 0px;
}

.info_category .inner {}

.info_category .blk {}

.info_category .categoryBlk {}

.info_category .categoryBlk ul {
	justify-content: flex-start;
	gap: 11px;
}

.info_category .categoryBlk ul li {
	flex: 1;
	max-width: 150px;
}

.info_category .categoryBlk ul li a {
	display: block;
	line-height: 40px;
	text-align: center;
	border-radius: 35px;
	font-size: 15px;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.16);
}

.info_category .categoryBlk ul li.current-cat a {
	color: #fff !important;
}

.info_category .categoryBlk ul li.cat-item-1 a {
	color: var(--mainColor);
	border: solid 1px var(--mainColor);
}

.info_category .categoryBlk ul li.cat-item-1.current-cat a {
	background: var(--mainColor);
}

.info_category .categoryBlk ul li.cat-item-10 a {
	color: var(--infoCatCompany);
	border: solid 1px var(--infoCatCompany);
}

.info_category .categoryBlk ul li.cat-item-10.current-cat a {
	background: var(--infoCatCompany);
}

.info_category .categoryBlk ul li.cat-item-11 a {
	color: var(--infoCatSustainability);
	border: solid 1px var(--infoCatSustainability);
}

.info_category .categoryBlk ul li.cat-item-11.current-cat a {
	background: var(--infoCatSustainability);
}

.info_category .categoryBlk ul li.cat-item-12 a {
	color: var(--infoCatProducts);
	border: solid 1px var(--infoCatProducts);
}

.info_category .categoryBlk ul li.cat-item-12.current-cat a {
	background: var(--infoCatProducts);
}

.info_category .categoryBlk ul li.cat-item-69 a {
	color: var(--infoCatTechnical);
	border: solid 1px var(--infoCatTechnical);
}

.info_category .categoryBlk ul li.cat-item-69.current-cat a {
	background: var(--infoCatTechnical);
}

.info_category .categoryBlk ul li.cat-item-70 a {
	color: var(--infoCatProductsDevelopment);
	border: solid 1px var(--infoCatProductsDevelopment);
}

.info_category .categoryBlk ul li.cat-item-70.current-cat a {
	background: var(--infoCatProductsDevelopment);
}

.info_category .categoryBlk ul li.cat-item-71 a {
	color: var(--infoCatRecruit);
	border: solid 1px var(--infoCatRecruit);
}

.info_category .categoryBlk ul li.cat-item-71.current-cat a {
	background: var(--infoCatRecruit);
}

@media screen and (min-width: 1025px) {
	.info_category .categoryBlk ul li a:hover {
		color: #fff;
		opacity: 1;
	}

	.info_category .categoryBlk ul li.cat-item-1 a:hover {
		background: var(--mainColor);
	}

	.info_category .categoryBlk ul li.cat-item-10 a:hover {
		background: var(--infoCatCompany);
	}

	.info_category .categoryBlk ul li.cat-item-11 a:hover {
		background: var(--infoCatSustainability);
	}

	.info_category .categoryBlk ul li.cat-item-12 a:hover {
		background: var(--infoCatProducts);
	}

	.info_category .categoryBlk ul li.cat-item-69 a:hover {
		background: var(--infoCatTechnical);
	}

	.info_category .categoryBlk ul li.cat-item-70 a:hover {
		background: var(--infoCatProductsDevelopment);
	}

	.info_category .categoryBlk ul li.cat-item-71 a:hover {
		background: var(--infoCatRecruit);
	}
}

.info_list {
	padding: 60px 0 140px;
}

.info_list .inner {}

.info_list .blk {}

.info_list .articleBlk {
	padding: 86px 68px;
	border: 1px solid #d7dce2;
}

.info_list .articleBlk article {
	border-top: solid 1px #d7dce2;
}

.info_list .articleBlk article:last-child {
	border-bottom: solid 1px #d7dce2;
}

.info_list .articleBlk article a {
	position: relative;
	overflow: hidden;
	align-items: center;
	gap: 26px;
	padding: 25px;
}

.info_list .articleBlk article a::before {
	content: '';
	position: absolute;
	top: 0;
	left: -125%;
	z-index: -1;
	display: inline-block;
	width: 100%;
	height: 100%;
	background: #f5f7f89c;
	transition: .5s;
}

@media screen and (min-width: 1025px) {
	.info_list .articleBlk article a:hover {
		opacity: 1;
	}

	.info_list .articleBlk article a:hover::before {
		left: 0;
	}
}

.info_list .articleImgBlk {
	width: min(162px, 100%);
}

.info_list .articleImgBlk img {
	width: 100%;
	height: 115px;
	border: 1px solid #e2e6eb;
}

.info_list .articleTxtBlk {
	justify-content: flex-start;
	align-items: center;
	flex: 1;
	width: 100%;
}

.info_list .articleDate {
	font-size: 15px;
	line-height: inherit;
	color: #8294a0;
}

.info_list .articleCat {
	min-width: 128px;
	margin-left: 18px;
	padding: 1px 6px;
	font-size: 14px;
	text-align: center;
	color: white;
	line-height: 23px;
	background: var(--mainColor);
}

.info_list .articleCat._company {
	background: var(--infoCatCompany);
}

.info_list .articleCat._sustainability {
	background: var(--infoCatSustainability);
}

.info_list .articleCat._products {
	background: var(--infoCatProducts);
}

.info_list .articleCat._technical {
	background: var(--infoCatTechnical);
}

.info_list .articleCat._products-development {
	background: var(--infoCatProductsDevelopment);
}

.info_list .articleCat._recruit {
	background: var(--infoCatRecruit);
}

.info_list .articleNew {
	margin: 0 0 0 25px;
	color: #ff0117;
}

.info_list .articleTtl {
	width: 100%;
	margin: 10px 0 0;
	line-height: inherit;
}

.info_list .paginationBlk {}

.info_detail {
	padding: 90px 0px 140px;
}

.info_detail .inner {}

.info_detail .blk {}

.info_detail .articleBlk {
	padding: 86px 68px;
	border: 1px solid #d7dce2;
}

.info_detail .articleBlk article {}

.info_detail .articleDate {
	display: inline-block;
	font-size: 15px;
	color: #8294a0;
	line-height: inherit;
}

.info_detail .articleCat {
	display: inline-flex;
	justify-content: center;
	min-width: 129px;
	margin-left: 25px;
	padding: 0 10px;
	font-size: 14px;
	color: white;
	line-height: 28px;
	background: var(--mainColor);
}

.info_detail .articleCat._company {
	background: var(--infoCatCompany);
}

.info_detail .articleCat._sustainability {
	background: var(--infoCatSustainability);
}

.info_detail .articleCat._products {
	background: var(--infoCatProducts);
}

.info_detail .articleCat._technical {
	background: var(--infoCatTechnical);
}

.info_detail .articleCat._products-development {
	background: var(--infoCatProductsDevelopment);
}

.info_detail .articleCat._recruit {
	background: var(--infoCatRecruit);
}

.info_detail .articleHead {
	margin: 40px 0 0;
	font-size: 30px;
	line-height: 1.4;
	font-weight: 700;
	padding: 0 0 15px;
	background-image: radial-gradient(circle farthest-side, #11418B, #11418B 30%, transparent 50%, transparent);
	background-size: 5px 2px;
	background-position: left bottom;
	background-repeat: repeat-x;
}

.info_detail .articleContentBlk {
	margin: 40px 0 0;
}

.info_detail .articleContentBlk>*:first-child,
.info_detail .articleContentBlk>*:first-child *:first-child {
	margin-top: 0;
}

.info_detail .articleContentBlk h2 {
	/* margin-bottom: calc(-1em + .7em)!important; */
	padding-bottom: .2em;
	font-size: 1.25rem;
	font-weight: 700;
	border-bottom: solid 1px #e2e2e2;
}

.info_detail .articleContentBlk p {}

.info_detail .articleContentBlk img {
	display: table;
	margin: auto !important;
	border-radius: 25px;
}

.info_detail .articleContentBlk div,
.info_detail .articleContentBlk h2,
.info_detail .articleContentBlk hr,
.info_detail .articleContentBlk p,
.info_detail .articleContentBlk img {
	margin: calc(1rem * 1.6) 0 0;
	line-height: 1.6;
}

.info_detail .articleContentBlk a {
	color: var(--linktextColor);
	text-decoration: underline;
}

.info_detail .paginationBlk {}

@media screen and (max-width: 1024px) {

	/*common start*/
	/*common end*/
	.info_category {
		padding: 60px 0 0 !important;
	}

	.info_category .inner {}

	.info_category .blk {}

	.info_category .categoryBlk {}

	.info_category .categoryBlk ul {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
		gap: 6px;
	}

	.info_category .categoryBlk ul li {
		width: 100%;
		max-width: initial;
	}

	.info_category .categoryBlk ul li a {
		display: grid;
		place-items: center;
		height: 40px;
		padding: 0 8px;
		font-size: 14px;
		line-height: 1.2;
		border-radius: 5px;
	}

	.info_category .categoryBlk ul li.current-cat a {}

	.info_category .categoryBlk ul li.cat-item-1 a {}

	.info_category .categoryBlk ul li.cat-item-1.current-cat a {}

	.info_category .categoryBlk ul li.cat-item-10 a {}

	.info_category .categoryBlk ul li.cat-item-10.current-cat a {}

	.info_category .categoryBlk ul li.cat-item-11 a {}

	.info_category .categoryBlk ul li.cat-item-11.current-cat a {}

	.info_category .categoryBlk ul li.cat-item-12 a {}

	.info_category .categoryBlk ul li.cat-item-12.current-cat a {}

	.info_category .categoryBlk ul li.cat-item-69 a {}

	.info_category .categoryBlk ul li.cat-item-69.current-cat a {}

	.info_category .categoryBlk ul li.cat-item-70 a {}

	.info_category .categoryBlk ul li.cat-item-70.current-cat a {}

	.info_category .categoryBlk ul li.cat-item-71 a {}

	.info_category .categoryBlk ul li.cat-item-71.current-cat a {}

	.info_list {
		padding: 60px 0 90px !important;
	}

	.info_list .inner {}

	.info_list .blk {}

	.info_list .articleBlk {
		display: grid;
		gap: 35px 15px;
		grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
		padding: initial;
		border: initial;
	}

	.info_list .articleBlk article {
		border: initial;
	}

	.info_list .articleBlk article:last-child {
		border: initial;
	}

	.info_list .articleBlk article a {
		gap: 10px;
		padding: 0;
	}

	.info_list .articleBlk article a::before {}

	.info_list .articleImgBlk {
		width: 100%;
		text-align: center;
	}

	.info_list .articleImgBlk img {
		width: 100%;
		aspect-ratio: 16/9;
		max-width: var(--maxWidthS);
		height: initial;
	}

	.info_list .articleTxtBlk {}

	.info_list .articleDate {
		width: 100%;
		font-size: 1rem;
	}

	.info_list .articleCat {
		min-width: 85px;
		margin-top: 3px;
		margin-left: 0;
		padding: 1px 6px;
		font-size: 13px;
		line-height: 20px;
		text-align: center;
	}

	.info_list .articleCat._company {}

	.info_list .articleCat._sustainability {}

	.info_list .articleCat._products {}

	.info_list .articleCat._technical {}

	.info_list .articleCat._products-development {}

	.info_list .articleCat._recruit {}

	.info_list .articleNew {}

	.info_list .articleTtl {
		margin: 8px 0 0;
	}

	.info_list .paginationBlk {}

	.info_detail {}

	.info_detail .inner {}

	.info_detail .blk {}

	.info_detail .articleBlk {
		padding: 35px 15px;
	}

	.info_detail .articleBlk article {}

	.info_detail .articleDate {
		font-size: 1rem;
	}

	.info_detail .articleCat {
		margin-left: 13px;
		font-size: 13px;
		line-height: 22px;
	}

	.info_detail .articleCat._company {}

	.info_detail .articleCat._sustainability {}

	.info_detail .articleCat._products {}

	.info_detail .articleCat._technical {}

	.info_detail .articleCat._products-development {}

	.info_detail .articleCat._recruit {}

	.info_detail .articleHead {
		margin: 25px 0 0;
		font-size: 20px;
		padding: 0 0 8px;
	}

	.info_detail .articleContentBlk {
		margin: 30px 0 0;
	}

	.info_detail .articleContentBlk>*:first-child,
	.info_detail .articleContentBlk>*:first-child *:first-child {}

	.info_detail .articleContentBlk h2 {
		font-size: 1.125rem;
	}

	.info_detail .articleContentBlk p {}

	.info_detail .articleContentBlk img {}

	.info_detail .articleContentBlk div,
	.info_detail .articleContentBlk h2,
	.info_detail .articleContentBlk hr,
	.info_detail .articleContentBlk p,
	.info_detail .articleContentBlk img {}

	.info_detail .articleContentBlk a {}

	.info_detail .paginationBlk {}
}

/*テスト*/