/*
Theme Name:ba-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 {
	/* メインカラー */
	--mainColor: #0f3552;
	--gradColor: linear-gradient(#dcb968 0%, #b58801 100%);
	/*====== 背景カラー ======*/
	/* コンテンツ背景カラー */
	--contentsBg: #ecf5fc;
	/* 下層ページトップ背景カラー */
	--lowerTopBg: #D7E1FA;
	/* 表組み項目名背景カラー */
	--tableItemBg: #f5f8fc;
	/* フォーム項目名背景カラー */
	--formItemBg: #F0F5FA;
	/* カテゴリーリンク背景カラー */
	--categoryLinkBg: #D7E1FA;
	/* メール問い合わせボタン背景カラー */
	--mailBtnBg: #022993;
	/*====== テキストカラー ======*/
	/* テキストカラー */
	--textColor: #333;
	/* リンクテキストカラー */
	--linkTextColor: #0c4876;
	/*====== ページネーションカラー ======*/
	/* ページネーションテキスト、矢印カラー */
	--pnColor: #aaa;
	/* ページネーションhoverテキスト、矢印カラー */
	--pnHoverColor: #fff;
	/* ページネーションCurrentテキスト、矢印カラー */
	--pnCurrentColor: #fff;
	/* ページネーションhover背景カラー */
	--pnHoverBg: #6188a5;
	/* ページネーションCurrent背景カラー */
	--pnCurrentBg: #6188a5;
	/*====== フォント ======*/
	--gothic: "NotoSansJp", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	--mincho: "NotoSerifJp", "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	/*====== width ======*/
	--maxWidth768: 768px;
	--maxWidth500: 500px;
	--maxWidth375: 375px;
	--maxWidth300: 300px;
	/*====== other ======*/
}
/*
Element
====================================*/
body {
	color: var(--textColor);
}
@media screen and (max-width: 1024px) {
	p, dd {
		line-height: 1.6!important;
	}
}
/*
Decoration
====================================*/
/*
Css Animation
====================================*/
/* fade */
.css_fade {
	opacity: 0;
	animation-name: css_fade;
	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;
	}
}
.css_fadeUp {
	opacity: 0;
	animation-name: css_fadeUp;
	animation-duration: 1100ms;
	animation-timing-function: ease;
	animation-delay: 1700ms;
	animation-direction: normal;
	animation-fill-mode: forwards;
}
.css_fadeUp._delay {
	animation-delay: 2000ms;
}
@keyframes css_fadeUp {
	0% {
		opacity: 0;
		transform: translate(0, 30px);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}
/* 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;
	}
}
/*
Plugin Overwrite
====================================*/
/*
Slick
---------------------------------------------------------------*/
.top_mv .slick-arrow::before {
	border-color: var(--mainColor);
	display: none;
}
.top_mv .slick-dots li.slick-active button {
	background: var(--mainColor);
}
/*
default.css Overwrite
====================================*/
/*
Other
====================================*/
/*====================================

2. Site Common Style

====================================*/
/*
Pagination
====================================*/
/*
List
---------------------------------------------------------------*/
.pn_list {
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 56px;
	margin: 50px 0 0;
	border-radius: 50px;
	background: #fff;
	border: 1px solid #dde0e3;
}
.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: 11px;
}
.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: 50%;
}
.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 a:hover {
		opacity: 1;
	}
	.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-top: clamp(2.5rem, 1.932rem + 2.42vw, 3.75rem);
		border-radius: 10px;
	}
	.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: 26px;
		width: 26px;
	}
	.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: 100%;
	height: 55px;
	margin: 75px 0 0;
}
.pn_detail > * {
	height: 100%;
}
.pn_detail .detailpreviousBlk, .pn_detail .detailNextBlk {
	width: 100px;
}
.pn_detail .detailpreviousBlk a, .pn_detail .detailNextBlk a {
	position: relative;
	display: block;
	height: 100%;
}
.pn_detail a {
	border: 1px solid #d0d3da;
	background: #fff;
}
@media screen and (min-width: 1025px) {
	.pn_detail a:hover {
		background: var(--pnHoverBg);
		opacity: 1;
	}
}
.pn_detail .detailpreviousBlk {}
.pn_detail .detailpreviousBlk a {
    border-radius: 50px 0 0 50px;
    border-right: initial;
}
.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: calc(50% - -3px);
}
.pn_detail .detailpreviousBlk a::after {
	left: calc(50% - 4px);
}
@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 {
	border-left: initial;
	border-radius: 0 50px 50px 0;
}
.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: calc(50% - -3px);
}
.pn_detail .detailNextBlk a::after {
	right: calc(50% - 4px);
}
@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 {
    flex: 1;
}
.pn_detail .detailBackBlk a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: #878e93;
}
@media screen and (min-width: 1025px){
	.pn_detail .detailBackBlk a:hover {
		color: #fff;
	}
}
@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 {
    flex: 1;
}
	.pn_detail .detailBackBlk a {
		width: initial;
	}
}
/*
Form
====================================*/
/*
Input
----------------------------------------------------------------*/
.form_input,
.form_input .h-adr{
	display: grid;
	gap: 35px;
	/* border: 1px solid #D7DCE2; */
	/* border-bottom: transparent; */
}
.form_input .inputRow {
	display: flex;
	align-items: center;
	/* border-bottom: 1px solid #D7DCE2; */
}
.form_input .inputRow._yourAffiliation {
	margin-bottom: 2em;
}
.form_input .inputRow._schoolInfo,
.form_input .inputRow._address,
.form_input .inputRow._desiredNumberOfPeople, 
.form_input .inputRow._mt {
	margin-top: 1.5em;
}
.form_input .inputRow._mt2 {
	margin-top: 3em;
}
.form_input .inputRow._address .inputValue,
.form_input .inputRow._schoolInfo .inputValue,
.form_input .inputRow._desiredNumberOfPeople .inputValue,
.form_input .inputRow._mt .inputValue,
.form_input .inputRow._mt2 .inputValue {
	align-items: flex-start;
	flex-flow: column-reverse;
}

.form_input .inputRow._itemTop {
	align-items: flex-start;
}
.form_input .inputItem {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 200px;
	padding: 0 0 0 50px;
	/* background: var(--formItemBg); */
	font-weight: 600;
	/* border-right: 1px solid #D7DCE2; */
	line-height: 1.563;
	font-size: 14px;
}
.form_input .inputRow._yourAffiliation .inputItem {}
.form_input .inputItem._textarea {
	margin: 10px 0 0;
}
@media screen and (max-width: 1024px) {
	.form_input .inputItem._textarea {
		margin: 0;
	}
}
.form_input .inputItem ._must {
	position: absolute;
	top: 1px;
	left: 0;
	width: 41px;
	line-height: 20px;
	font-size: 12px;
	text-align: center;
	color: #fff;
	background: #3989c6;
}
.form_input .inputRow._yourAffiliation .inputItem ._must {
	top: 2px;
}
.contact_form._contact .form_input .inputItem ._must {
	background: #1466C6;
}
.contact_form._entry .form_input .inputItem ._must {
	background: #53B0FF;
}
.form_input .inputItem ._note {
	position: absolute;
	top: 100%;
	left: 50px;
	padding-right: 20px;
	font-size: 0.75rem;
	color: #525252;
}
.form_input .inputValue {
	position: relative;
	flex: 1;
	display: flex;
	flex-flow: wrap;
	align-items: center;
}
.form_input .inputValueNote {
	position: absolute;
	bottom: 100%;
	left: 0;
	font-size: 12px;
	margin-bottom: 5px;
}
.form_input .wpcf7-form-control-wrap[data-name="your-contact-type"] .wpcf7-not-valid-tip {
	position: relative;
}
.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 #d5d5d5;
	padding: 0px 10px;
	background: #fff;
}
.form_input .inputValue._notMax input {
	max-width: 176px;
}
.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_agree input[type="checkbox"] {
	position: relative;
	border: 1px solid #d5d5d5;
	border-radius: 4px;
	background: #fff;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.form_input input[type="checkbox"]:checked:before,
.form_agree input[type="checkbox"]:checked:before {
	content: '';
	position: absolute;
	top: calc(50% - 1px);
	left: 50%;
	transform: translate(-50%, -50%) rotate(50deg);
	width: 6px;
	height: 10px;
	border-right: 2px solid #3989c6;
	border-bottom: 2px solid #3989c6;
}
.form_input input[type="checkbox"], .form_input input[type="radio"] {
	width: 20px;
	height: 20px;
	cursor: pointer;
}
.form_input .wpcf7-form-control {
	display: flex;
	flex-flow: wrap;
	gap: 10px 30px;
}
.form_input .inputValue._row .wpcf7-form-control {
	flex-flow: column;
}
.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: 10px;
	cursor: pointer;
	font-size: 14px;
}
.form_input .wpcf7-list-item-label {
	font-weight: 600;
}
/* input[file] */
.form_input input[type="file"] {
	font-size: 14px;
}
/* validation */
.form_input .wpcf7-not-valid-tip {
	font-size: 0.875rem;
	margin: 5px 0 0;
}
/* agree */
.form_agree {
	text-align: center;
	margin: 35px 0 0;
	font-size: 14px;
}
.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: 0.813rem;
}
.form_agree .wpcf7-form-control-wrap {
	margin-right: 8px;
}
.form_agree a {
	color: #3989C6;
	text-decoration: underline;
}
.form_agree input[type="checkbox"] {
	width: 21px;
	height: 21px;
	cursor: pointer;
}
/* turnstile */
.form_turnstile {
	display: flex;
	justify-content: center;
	margin-top: 35px;
}
/* submit */
.form_submit {
	position: relative;
	width: min(350px, 100%);
	text-align: center;
	margin: 45px auto 0;
}
.form_submit input[type="submit"] {
	position: relative;
	width: 100%;
	height: 65px;
	border-radius: 10px;
	font-size: 18px;
	color: #fff;
	transition: .3s;
	border-radius: 5px;
	background: linear-gradient(#3989c6 0%, #0f3552 100%);
}
@media screen and (min-width: 1025px){
	.form_submit input[type="submit"]:hover {
		background: linear-gradient(#0e66a8 0%, #01101c 100%);
	}
}
.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: 25px!important;
	}
	.form_input .inputRow._yourAffiliation {
		margin-bottom: initial;
	}
	.form_input .inputRow._address {
		gap: 5px;
	}
	.form_input .inputRow {
		flex-flow: column;
		align-items: flex-start;
		gap: 10px;
		border-bottom: transparent;
	}
	.form_input .inputRow:last-child {
		border-bottom: transparent;
	}
	.form_input .inputRow._schoolInfo,
	.form_input .inputRow._address,
	.form_input .inputRow._desiredNumberOfPeople, 
	.form_input .inputRow._mt,
	.form_input .inputRow._mt2 {
		margin-top: initial;
	}
	.form_input .inputItem {
		display: inline-flex;
		justify-content: flex-start;
		width: auto;
		padding: 0px;
		border-right: transparent;
		gap: 0;
	}
	.form_input .inputItem ._must {
		top: 1px;
		right: -52px;
		left: unset;
	}
	.form_input .inputItem ._note {
		position: initial;
		max-width: 157px;
		margin-top: 5px;
		padding: initial;
		left: 0;
	}
	.form_input .inputValue {
		flex: unset;
		width: 100%;
	}
	.form_input .inputValueNote {
		position: initial;
		margin-bottom: 10px;
	}
	.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 {
		font-size: 1rem;
	}
	.form_input .inputValue._notMax input,
	.form_input .inputValue._notMax2 {
		max-width: 400px;
	}
	.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 {margin: 7px 0 0;}
	/* 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(--maxWidth300);
	}
	.form_submit input[type="submit"] {
		height: 55px;
		font-size: 1.125rem;
		font-weight: 600;
		border-radius: 10px;
	}
	.form_submit .wpcf7-spinner {}
}
/*
Privacy Policy
----------------------------------------------------------------*/
.form_pp {
	margin: 60px 0 0;
	width: 100%;
	height: 270px;
	border-radius: 5px;
	background: #fff;
	border: 1px solid #cecece;
	padding: 30px 33px;
	overflow: auto;
}
.form_pp dl {}
.form_pp dt {
	font-size: 15px;
}
.form_pp dd {
	font-size: 13px;
	line-height: 22px;
	margin: 20px 0 0;
}
@media screen and (max-width: 1024px) {
	.form_pp {
		margin: 60px 0 0;
		width: 100%;
		height: 250px;
		padding: 30px 15px;
	}
	.form_pp dl {}
	.form_pp dt {
		font-size: 15px;
	}
	.form_pp dd {}
}
/*
Thanks & 404
====================================*/
.thanks_section {
	overflow: hidden;
	padding: 80px 0 150px;
}
.thanks_section .inner {}
.thanks_section .blk {}
.thanks_section .headBlk {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	padding: 20px 0;
	background: var(--contentsBg);
}
.thanks_section .head {
	text-align: center;
	font-size: 24px;
}
.thanks_section .mainBlk {
	margin: 35px 0 0;
}
.thanks_section .mainDesc {
	font-size: 14px;
	line-height: 26px;
	text-align: center;
}
.error_section {
	overflow: hidden;
	padding: 80px 0 150px;
}
.error_section .inner {}
.error_section .blk {}
.error_section .headBlk {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	padding: 20px 0;
	background: var(--contentsBg);
}
.error_section .head {
	text-align: center;
	font-size: 30px;
	font-weight: 600;
}
.error_section .head span {
	font-size: 22px;
	display: block;
}
.error_section .mainBlk {
	margin: 35px 0 0;
}
.error_section .mainDesc {
	font-size: 14px;
	line-height: 26px;
	text-align: center;
}
.thanks_section .linkBlk, .error_section .linkBlk {
	text-align: center;
	margin: 45px 0 0;
}
.thanks_section .linkBlk a, .error_section .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_section .linkBlk a:hover, .error_section .linkBlk a:hover {
		opacity: 1;
		background: var(--mainColor);
		color: #fff;
	}
}
@media screen and (max-width: 1024px) {
	.thanks_section {
		padding: 60px 0 90px;
	}
	.thanks_section .inner {}
	.thanks_section .blk {}
	.thanks_section .headBlk {
		padding: 15px 0;
	}
	.thanks_section .head {
		text-align: center;
		font-size: 20px;
	}
	.thanks_section .mainBlk {
		margin: 30px 0 0;
	}
	.thanks_section .mainDesc {
		line-height: 24px;
	}
	.thanks_section .linkBlk {
		margin: 40px 0 0;
	}
	.error_section {
		padding: 40px 0 90px;
	}
	.error_section .inner {}
	.error_section .blk {}
	.error_section .headBlk {}
	.error_section .head {
		font-size: 24px;
	}
	.error_section .head span {
		font-size: 16px;
	}
	.error_section .mainBlk {
		margin: 30px 0 0;
	}
	.error_section .mainDesc {
		line-height: 24px;
	}
	.thanks_main .linkBlk a, .error_section .linkBlk a {}
}
/*====================================

3. Header

====================================*/
.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
	width: 100%;
	height: 90px;
	box-shadow: 0px 2px 7px rgba(51, 51, 51, 0.1);
	background: white;
}
.header .inner {
	height: 100%;
}
.header .blk {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0 30px;
	height: 100%;
}
.header .logoBlk {
	position: relative;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	height: 100%;
	padding: clamp(0.313rem, 0.17rem + 0.61vw, 0.625rem) clamp(5rem, 3.352rem + 7.03vw, 8.625rem) 0 clamp(0.938rem, -0.057rem + 4.24vw, 3.125rem);
	background: var(--mainColor);
}
.header .logoBlk::before {
	content: '';
	position: absolute;
	top: 0;
	right: -1px;
	display: inline-block;
	width: clamp(4.063rem, 3.011rem + 4.48vw, 6.375rem);
	height: 100%;
	background: #fff;
	clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
.header .logoBlk a {}
.header .logoBlk a img {
	height: clamp(1.25rem, 1.023rem + 0.97vw, 1.75rem);
}
@media screen and (min-width: 1025px) {
	.header .menuBlk {
		display: flex;
		flex-shrink: 0;
		height: 100%;
	}
	.header .menuBlk nav {}
	.header .menuBlk nav > ul {
		position: relative;
		display: flex;
		gap: 43px;
		height: 100%;
	}
	.header .menuBlk nav > ul > li {
		display: flex;
		align-items: center;
		height: 100%;
		padding-top: 10px;
	}
	.header .menuBlk nav > ul > li > a {
		font-size: 15px;
	}
	.header .menuBlk nav > ul > li > a._active {
		color: var(--mainColor);
	}
	.header .menuBlk nav > ul > li > a:hover {}
	@media screen and (min-width: 1025px) {
		.header .menuBlk nav > ul > li a:hover {
			color: #dcb968;
			opacity: 1;
		}
	}
	.header .menuBlk nav > ul > li > ul {
		position: absolute;
		top: 100%;
		right: 0;
		z-index: 1;
		display: flex;
		flex-flow: wrap;
		row-gap: 15px;
		width: calc(100% + 130px);
		padding: 25px 45px;
		background: var(--mainColor);
		opacity: 0;
		visibility: hidden;
		transition: .3s;
		pointer-events: none;
	}
	.header .menuBlk > nav > ul > li._parent:hover > ul {
		opacity: 1;
		visibility: visible;
		pointer-events: initial;
	}
	.header .menuBlk nav > ul > li > ul > li {
    width: calc(100% / 3);
}
	.header .menuBlk nav > ul > li > ul > li._top {
		width: 100%;margin-bottom: 7px;
	}
	.header .menuBlk nav > ul > li > ul > li._top a {
	    display: block;
	    padding-bottom: 2px;
	    font-size: 16px;
	}
	.header .menuBlk nav > ul > li > ul > li._top a::before {
		content: '';
		position: absolute;
		top: unset;
		transform: unset;
		bottom: 0;
		left: 0;
		height: 1px;
		width: 100%;
		background: #fff;
	}
	.header .menuBlk nav > ul > li > ul > li._top a::after {
		content: '';
		position: absolute;
		bottom: 0;
		right: 0;
		height: 1px;
		width: 0%;
		background:#dcb968;
		transition: .5s;
	}
	.header .menuBlk nav > ul > li > ul > li._top a:hover::after {
		left: 0;
		right: unset;
		width: 100%;
		background: #dcb968;
	}
	.header .menuBlk nav > ul > li > ul > li > a {
		position: relative;
		font-size: 15px;
		color: #fff;
	}
	.header .menuBlk nav > ul > li > ul > li:not(._top) > a {
		padding-left: .7em;
	}
	.header .menuBlk nav > ul > li > ul > li:not(._top) > a::before {
		content:'';
		position: absolute;
		top: 50%;
		left: 0;
		transform: translate(0%, -50%);
		width: 5px;
		height: 2px;
		background: #fff;
		transition: .3s;
	}
	.header .menuBlk nav > ul > li > ul > li:not(._top) > a:hover::before {
		background: #dcb968;
	}
	.header .menuBlk nav > ul > li._contact {
		padding: initial;
	}
	.header .menuBlk nav > ul > li._contact._tel {}
	.header .menuBlk nav > ul > li._contact._mail {}
	.header .menuBlk nav > ul > li._contact a {
		display: flex;
		align-items: center;
	}
	.header .menuBlk nav > ul > li._contact._mail a {
		position: relative;
		z-index: 0;
		display: grid;
		place-items: center;
		width: 150px;
		height: 100%;
		padding-top: 10px;
		color: white;
		background: var(--gradColor);
	}
	.header .menuBlk nav > ul > li._contact._mail a::before {
		content: '';
		position: absolute;
		z-index: -1;
		width: 100%;
		height: 100%;
		transition: .3s;
		opacity: 0;
		background: linear-gradient(#d99800 0%, #956d02 100%);
	}
	.header .menuBlk nav > ul > li._contact._mail a:hover {
		opacity: 1;
	}
	.header .menuBlk nav > ul > li._contact._mail a:hover::before {
		opacity: 1;
	}
}
@media screen and (max-width: 1024px) {
	.header {
		height: 58px;
		box-shadow: none;
	}
	.header .inner {
		background: white;
		box-shadow: 0 2px 10px rgb(0 0 0 / 5%);
		margin: auto;
	}
	.header .blk {}
	.header .logoBlk {
	}
	.header .logoBlk a {}
	.header .logoBlk a img {
	}
	.header .menuBlk {
		position: absolute;
		top: var(--headerH, 58px);
		left: 0;
		height: calc(100dvh - var(--headerH, 58px));
		z-index: -1;
		width: 100%;
		background: white;
		overflow: auto;
		padding: 0 0 60px;
		opacity: 0;
		visibility: hidden;
		transition: .3s;
		display: block;
		flex-shrink: unset;
		background: #f7f8f8;
	}
	.header .menuBlk::-webkit-scrollbar {
		display: none;
	}
	.header._menuOpen .menuBlk {
		opacity: 1;
		visibility: visible;
	}
	.header .menuBlk > * {}
	.header .menuBlk nav {}
	.header .menuBlk nav > ul {
		display: block;
	}
	.header .menuBlk nav > ul > li {
		position: relative;
		display: block;
		height: auto;
		border-bottom: 1px solid #c6d6e5;
	}
	.header .menuBlk nav > ul > li > span {
		position: absolute;
		top: 0;
		right: 0;
		height: 100%;
		width: 70px;
	}
	.header .menuBlk nav > ul > li > a {
		display: flex;
		font-size: 15px;
		padding: 15px 4%;
		color: #fff;
		background: #265274;
	}
	.header .menuBlk nav > ul > li._parent > a {
		position: relative;
	}
	.header .menuBlk nav > ul > li._parent::before {
		content: '';
		position: absolute;
		top: 23px;
		right: 4%;
		z-index: 1;
		width: 18px;
		aspect-ratio: 14.32 / 7.94;
		background-image: url(./images/icon_arrow01_white.svg);
		background-repeat: no-repeat;
		background-position: left top 50%;
		background-size: 100%;
		pointer-events: none;
		transition: .3s;
	}
	.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;
		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 {
	}
	.header .menuBlk nav > ul > li > ul > li {
		height: 0;
		transition: .3s;
	}
	.header .menuBlk nav > ul > li._childOpen > ul > li {
		height: 55px;
	}
	.header .menuBlk nav > ul > li > ul > li > a {
		position: relative;
		display: flex;
		align-items: center;
		height: 100%;
		padding: 0 calc(4% + 30px);
		font-size: 14px;
		color: var(--mainColor);
		background: #ecf5fc;
		opacity: 0;
		visibility: hidden;
		transition: .3s;
	}
	.header._menuOpen .menuBlk nav > ul > li._childOpen > ul > li > a {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
	.header .menuBlk nav > ul > li > ul > li > a::before {
		content: '';
		position: absolute;
		top: 50%;
		left: calc(4% + 17px);
		transform: translateY(-50%);
		width: 7px;
		height: 1px;
		background: var(--mainColor);
	}
	.header .menuBlk nav > ul > li > ul > li:not(:first-child) > a {
		border-top: 1px solid #c6d6e5;
	}
	.header .menuBlk nav > ul > li._contact {
		border-bottom: none;
	}
	.header .menuContactBlk {}
	.header .menuContactBlk > ._title {
		font-size: 18px;
		font-weight: 700;
		text-align: center;
	}
	.header .menuContactBlk > ._desc {
		margin-top: 8px;
		font-size: 14px;
		text-align: center;
	}
	.header .menuBlk nav > ul > li._contact > a {
		width: min(300px, 100%);
		margin: auto;
	}
	.header .menuBlk nav > ul > li._contact._mail {
		padding: 45px 0 20px;
	}
	.header .menuBlk nav > ul > li._contact._mail > a {
		justify-content: center;
		margin-top: 13px;
		padding: 14px 0;
		font-size: 14px;
		color: white;
		border-radius: 7px;
		background: var(--gradColor);
	}
	.header .menuBlk nav > ul > li._contact._mail > a > span {
		position: relative;
		padding-right: 1.2em;
	}
	.header .menuBlk nav > ul > li._contact._mail > a > span::before {
		content: '';
		position: absolute;
		top: calc(50% + 1px);
		right: -3px;
		transform: translate(0, -50%) rotate(-90deg);
		z-index: 1;
		width: 13px;
		aspect-ratio: 14.32 / 7.94;
		background-image: url(
			./images/icon_arrow01_white.svg);
		background-repeat: no-repeat;
		background-position: left top 50%;
		background-size: 100%;
		pointer-events: none;
		transition: .3s;
	}
	.header .mbMenuBlk {
		position: relative;
		height: 100%;
		aspect-ratio: 1/1;
		cursor: pointer;
	}
	.header .mbMenuBlk::before {
		content: 'MENU';
		color: var(--mainColor);
		font-size: 11px;
		position: absolute;
		top: 9px;
		right: 14px;
	}
	.header .mbMenuBdrBlk, .mbMenuBdrBlk span {
		display: inline-block;
		box-sizing: border-box;
	}
	.header .mbMenuBdrBlk {
		position: absolute;
		top: calc(50% + 8px);
		left: 50%;
		transform: translate(-50%, -50%);
		width: 30px;
		height: auto;
	}
	.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: var(--mainColor);
		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;
	}
}
/*====================================

4. Main

====================================*/
main {
	margin: var(--headerH, 90px) 0 0;
}
@media screen and (max-width: 1024px) {
	main {
		margin: var(--headerH, 55px) 0 0;
	}
}
/*====================================

5. Footer

====================================*/
.footer {
	overflow: hidden;
	padding: clamp(1.563rem, 0.994rem + 2.42vw, 2.813rem) 0 0;
	background: var(--mainColor);
}
.footer .inner {}
.footer .blk {}
.footer .mainBlk {
}
.footer .mainLogoBlk {
	padding: 0 0 15px;
}
.footer .mainLogoBlk a {}
.footer .mainLogoBlk img {
	height: clamp(1.563rem, 1.449rem + 0.48vw, 1.813rem);
}
.footer .borderBox {
	height: 1px;
	margin: 0 calc(50% - 50vw);
	padding: 0 calc(50vw - 50%);
	background: #fff;
}
.footer .mainBottomBlk {
	align-items: stretch;
	gap: clamp(1.875rem, -25.58rem + 42.86vw, 6.563rem);
	padding: clamp(0.625rem, 0.057rem + 2.42vw, 1.875rem) 0 clamp(1.25rem, 0.966rem + 1.21vw, 1.875rem);
}
.footer .mainInfoBlk {
	display: flex;
	flex-flow: column;
	justify-content: space-between;
}
.footer .mainInfoBlk p {
	font-size: 14px;
	line-height: 26px;
	color: #fff;
}
.footer .mainInfoLinkBlk {}
.footer .mainInfoLinkBlk a {
	font-size: 14px;
	color: #dde0e3;
}
@media screen and (min-width: 1025px) {
	.footer .mainInfoLinkBlk a:hover {
		color: #dcb968;
		opacity: 1;
	}
}
.footer .menuBlk {flex: 1;}
.footer .menuBlk > ul {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0 33px;
}
.footer .menuBlk > ul > li {}
.footer .menuBlk > ul > li._any1,
.footer .menuBlk > ul > li._any2 {
	grid-area: 1/4/3/5;
}
.footer .menuBlk > ul > li._any2 {
	transform: translateY(75px)
}
.footer .menuBlk > ul > li > a {
	padding-bottom: 4px;
	border-bottom: 1px dashed #fff;
	font-weight: 700;
	color: #fff!important;
}
.footer .menuBlk > ul > li a {
	display: block;
	color: #dde0e3;
}
@media screen and (min-width: 1025px) {
	.footer .menuBlk > ul > li a:hover {
		color: #dcb968!important;;
		opacity: 1;
	}
}
.footer .menuBlk > ul > li > ul {
	display: grid;
	gap: 8px;
	margin: 15px 0 0;
}
.footer .menuBlk > ul > li > ul > li {}
.footer .menuBlk > ul > li > ul > li > a {
	font-size: 14px;
}
.footer .otherBox {
	margin: 0 calc(50% - 50vw);
	padding: clamp(1.25rem, 0.966rem + 1.21vw, 1.875rem) calc(50vw - 50%) 40px;
	background: #333;
}
.footer .copyrightBlk {}
.footer .copyrightBlk p {
	font-size: 13px;
	color: #fff;
	text-align: center;
}
.footer .recaptchaBlk {
	margin: 6px 0 0;
}
.footer .recaptchaBlk p {
	font-size: 13px;
	color: #fff;
	text-align: center;
}
@media screen and (max-width: 1024px) {
	.footer {
		padding-bottom: 50px;
	}
	.footer .mainLogoBlk {
		padding: initial;
		text-align: center;
	}
	.footer .mainBottomBlk {
		justify-content:center;
	}
	.footer .mainInfoBlk p {
		text-align: center;
	}
	.footer .otherBox {
		padding-bottom: 60px;
	}
}
/*====================================

6. Common Style

====================================*/
/*
6.1 Single
====================================*/
.cmn_bgColor {
	background-color: var(--contentsBg);
}
.cmn_outer {
	padding: clamp(3.75rem, 2.898rem + 3.64vw, 5.625rem) 0;
}
.cmn_outer._top {
	padding: clamp(3.75rem, 2.898rem + 3.64vw, 5.625rem) 0 0;
}
.cmn_outer._bottom {
	padding: 0 0 clamp(3.75rem, 2.898rem + 3.64vw, 5.625rem);
}
.cmn_inner {
	max-width: 1180px;
	padding: 0 40px;
	margin: auto;
}
@media screen and (max-width: 1024px) {
	.cmn_inner {
		width: 92%;
		max-width: var(--maxWidth768);
		padding: 0;
	}
}
/* link1 */
.cmn_link1 {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 100%;
	max-width: 267px;
	min-height: 53px;
	padding: 5px;
	border-radius: 100px;
	color: #fff;
	font-size: 16px;
	background: var(--gradColor);
}
.cmn_link1::before {
	content: '';
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 100px;
	transition: .3s;
	opacity: 0;
	background: linear-gradient(#d99800 0%, #956d02 100%);
}
@media screen and (min-width: 1025px){
	.cmn_link1:hover {
		opacity: 1;
	}
	.cmn_link1:hover::before {
		opacity: 1;
	}
}
@media screen and (max-width: 1024px) {
	.cmn_link1 {
		margin: auto;
	}
}
.cmn_link1 span {
	position: relative;
	padding-right: 1.3em;
}
.cmn_link1 span::before {
	content:'';
	position: absolute;
	top: calc(50% + 0px);
	right: -4px;
	transform: translateY(-50%) rotate(-90deg);
	width: 16px;
	aspect-ratio: 14.32 / 7.94;
	background-image: url(
		./images/icon_arrow01_white.svg);
	background-repeat: no-repeat;
	background-size: 100%;
}
/* head1 */
.cmn_head1 {
	font-size: clamp(1.75rem, 1.551rem + 0.85vw, 2.188rem);
	line-height: calc(44/35);
	color: #4c7593;
	text-align: center;
	font-weight: 500;
}
.cmn_head1 span {
	display: block;
	margin-top: 4px;
	font-size: clamp(1.063rem, 0.949rem + 0.48vw, 1.313rem);
	color: #333;
	font-weight: 700;
}
/* head2 */
.cmn_head2 {
	font-size: clamp(1.25rem, 1.108rem + 0.61vw, 1.563rem);
}
.cmn_head2._type2 {
	margin-bottom: clamp(1.563rem, 0.994rem + 2.42vw, 2.813rem);
	padding-bottom: 5px;
	border-bottom: 1px solid #3989c6;
}
/* lead1 */
.cmn_lead1 {
	margin-bottom: clamp(1.563rem, 1.278rem + 1.21vw, 2.188rem);
	line-height: 2;
}
/*
6.2 Section
====================================*/
/* top */
.cmn_top {
	height: clamp(7.5rem, 1.96rem + 23.64vw, 19.688rem);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#company .cmn_top {
	background-image: url(./images/company_top_bg01.webp);
}
#business .cmn_top {
	background-image: url(./images/business_top_bg01.webp);
}
#recruit .cmn_top {
	background-image: url(./images/recruit_top_bg01.webp);
}
#news .cmn_top {
	background-image: url(./images/news_top_bg01.webp);
}
#contact .cmn_top {
	background-image: url(./images/contact_top_bg01.webp);
}
.cmn_top .inner {
	height: 100%;
}
.cmn_top .box {
	height: 100%;
}
.cmn_top .headBox {
	height: 100%;
	display: flex;
	align-items: center;
}
.cmn_top .headBox > ._head {
	font-size: clamp(1.5rem, 1.33rem + 0.73vw, 1.875rem);
	font-weight: 700;
}
.cmn_top .headBox > ._head._white {
	color: #fff;
}
/*in-page-link*/
.cmn_inPageLink {
	padding: clamp(2.5rem, 0.694rem + 7.7vw, 5.625rem) 0 clamp(2.5rem, 1.932rem + 2.42vw, 3.75rem)!important;
}
.cmn_inPageLink .inner {}
.cmn_inPageLink .box {}
.cmn_inPageLink .box > ul {
	display: flex;
	flex-flow: wrap;
	gap: 14px;
}
@media screen and (max-width: 1024px) {
	.cmn_inPageLink .box > ul {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
		gap: initial;
		margin-left: 1px;
	}
}
.cmn_inPageLink .box > ul._center {
	justify-content: center;
}
.cmn_inPageLink .box > ul > li {
	flex: 1;
	max-width: calc((100% - (14px * 5)) / 6);
}
.cmn_inPageLink .box > ul > li > a {
	display: block;
	padding: 7px 5px;
	font-size: clamp(0.813rem, 0.08rem + 1.14vw, 0.938rem);
	text-align: center;
	color: var(--mainColor);
	border: 1px solid #6188a5;
}
@media screen and (max-width: 1024px) {
	.cmn_inPageLink .box > ul > li {
		max-width: initial;
		margin-bottom: -1px;
		margin-left: -1px;
	}
	.cmn_inPageLink .box > ul > li > a {
		font-size: 14px;
	}
}
.cmn_inPageLink .box > ul._recruit > li > a {
	color: #1249a3;
	background: #ddf5ff;
}
/* table */
.cmn_table > dl {
	border: 1px solid #d7dce2;
	background: white;
}
.cmn_table > dl > div {
	display: flex;
	flex-flow: wrap;
	border-bottom: 1px solid #d7dce2;
	line-height: calc(30/16);
}
.cmn_table > dl > div:last-child {
	border-bottom: transparent;
}
.cmn_table > dl > div > * {
}
.cmn_table > dl > div > dt {
	width: 225px;
	padding: clamp(0.938rem, 0.653rem + 1.21vw, 1.563rem) clamp(0.938rem, -0.227rem + 4.97vw, 3.5rem);
	background: var(--tableItemBg);
	border-right: 1px solid #D7DCE2;
}
.cmn_table > dl > div > dd {
	padding: clamp(1.25rem, 1.108rem + 0.61vw, 1.563rem) clamp(0.938rem, 0.057rem + 3.76vw, 2.875rem);
	flex: 1;
}
.cmn_table > dl > div > dd a {
	color: var(--linkTextColor);
}
.cmn_table > dl > div > dd a:not([href^="tel"]):(.-notTel) {
	text-decoration: underline;
}
.cmn_table > dl > div > dd a[href^="tel"] {
	color: inherit;
}
@media screen and (max-width: 1024px) {
	/* table */
	.cmn_table > dl > div > dt {
		width: 100%;
		border-right: transparent;
	}
	.cmn_table > dl > div > dd {
		width: 100%;
	}
}
.cmn_section1 {}
.cmn_section1 .inner {}
.cmn_section1 .box {}
.cmn_section1 .mainBox {}
.cmn_section1 .mainBox > ._title {
	font-size: clamp(1.25rem, 0.781rem + 2vw, 2.063rem);
	font-weight: 600;
}
.cmn_section1 .mainBox > ._desc {
	margin-top: 15px;
	line-height: 2;
}
/*====================================

7. Module

====================================*/
.mod_modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100dvh;
	padding: 0 40px;
	background-color: rgb(51, 51, 51, 65%);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
@media screen and (max-width: 1024px) {
	.mod_modal {
		padding: initial;
	}
}
.mod_modal._open {
	transition: all .5s;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.mod_modal .inner {
	position: relative;
	min-width: 50%;
	max-height: 90%;
	padding: 60px clamp(0.938rem, 0.795rem + 0.61vw, 1.25rem);
	border-radius: 10px;
	background: #fff;
}
@media screen and (max-width: 1024px) {
	.mod_modal .inner {
		max-width: initial;
	}
}
.mod_modal .blk {
	position: relative;
}
.mod_modal .closeBtn {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 2px solid #000;
	background: #fff;
	pointer-events: auto;
	cursor: pointer;
	transition: all .3s;
}
.mod_modal .closeBtn::before, .mod_modal .closeBtn::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50%;
	height: 2px;
	background: #000;
	border-radius: 4px;
	transition: all .3s;
}
.mod_modal .closeBtn::before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.mod_modal .closeBtn::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (min-width: 1025px) {
	.mod_modal .closeBtn:hover {
		background: #000;
		opacity: 1;
	}
	.mod_modal .closeBtn:hover::before, .mod_modal .closeBtn:hover::after {
		background: #fff;
	}
}
.mod_modal .mainBlk {
	display: none;
	max-height: calc((100dvh - 10dvh) - 120px);
	padding: 0 clamp(0rem, -0.568rem + 2.42vw, 1.25rem);
	overflow: auto;
}
.mod_modal .mainBlk._active {
	display: block;
}
/* contact */
.mod_contact {
	padding: 35px 0;
	background: #f7f8f8;
}
.mod_contact .inner {}
.mod_contact .box {}
.mod_contact .headBox {}
.mod_contact .headBox > ._head {}
.mod_contact .mainBox {
	margin-top: 20px;
}
.mod_contact .mainBox p {
	font-size: clamp(0.875rem, 0.847rem + 0.12vw, 0.938rem);
	text-align: center;
}
.mod_contact .mainLinkBlk {
	width: min(585px, 100%);
	margin: 15px auto 0;
}
.mod_contact .mainLinkBlk a {
	max-width: initial;
	border-radius: 15px;
}
@media screen and (min-width: 1025px){
	.mod_contact .mainLinkBlk a::before {
		border-radius: 15px;
	}
}
.mod_fixedLink a {
	display: grid;
	place-items: center;
	width: 50px;
	height: 113px;
	color: #fff;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
	letter-spacing: 4px;
}
.mod_fixedLink a._jobDescription {
	background: #0fa3ff;
}
.mod_fixedLink a._applicationForEmployment {
	background: #0672de;
}
/* page top */
.mod_pageTop {
	position: fixed;
	right: 50px;
	bottom: -90px;
	z-index: 1;
	transition: .3s;
}
.mod_pageTop._active {
	bottom: 90px;
}
.mod_pageTop a {
	display: inline-grid;
	place-items: center;
	width: 65px;
	height: 65px;
	border-radius: 50%;
	color: #fff;
	border: solid 1px #fff;
	background: var(--mainColor);
}
@media screen and (max-width: 1024px) {
	.mod_pageTop {
		position: fixed;
		right: 4%;
		bottom: -90px;
		transition: .3s;
	}
	.mod_pageTop._active {
		bottom: clamp(3.75rem, 3.324rem + 1.82vw, 4.688rem);
	}
	.mod_pageTop a {
		width: 50px;
		height: 50px;
	}
}
/* fixed Link */
.mod_fixedLink {
	position: fixed;
	top: calc(90px + 107px);
	right: 0;
	z-index: 1;
	display: flex;
	flex-flow: column;
	gap: 7px;
}
.mod_fixedLink a {
	display: grid;
	place-items: center;
	width: 50px;
	height: 133px;
	color: #fff;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
	letter-spacing: 3px;
}
.mod_fixedLink a._recruit {
	background: #11beef;
}
.mod_fixedLink a._recruitApply {
	background: #078bde;
}
@media screen and (min-width: 1025px){
	.mod_fixedLink a._recruit:hover {
		opacity:1;
		background: #00abdb;
	}
	.mod_fixedLink a._recruitApply:hover {
		opacity:1;
		background: #0275BE;
	}
}
/* fixed Link Mb */
@media screen and (max-width: 1024px) {
	.mod_fixedLinkMb {
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: 99999;
		display: flex!important;
		flex-flow: nowrap;
		align-items: center;
		width: 100%;
		height: 50px;
		background: rgb(255 255 255 / 72%);
	}
	.mod_fixedLinkMb a {
		all: initial;
	}
	.mod_fixedLinkMb a {
		display: grid;
		place-items: center;
		flex-grow: 1;
		height: 100%;
		color: #fff;
		font-size: clamp(0.875rem, 0.818rem + 0.24vw, 1rem);
	}
	.mod_fixedLinkMb a._contact {
		background: var(--gradColor);
	}
	.mod_fixedLinkMb a._recruit {
		background: linear-gradient(#11beef 0%, #0093c9 100%);
	}
	.mod_fixedLinkMb a._recruitApply {
		background: linear-gradient(#078bde 0%, #016aac 100%);
	}
	.mod_fixedLinkMb a span {
		position: relative;
		padding-left: 24px;
		background-image: url(./images/icon_mail01_white.svg);
		background-repeat: no-repeat;
		background-position: left top 50%;
		background-size: 18px;
	}
	.mod_fixedLinkMb a._recruit span {
		position: relative;
		padding-left: 24px;
		background-image: url(./images/icon_human01_white.svg);
		background-repeat: no-repeat;
		background-position: left top 50%;
		background-size: 18px;
	}
}
/*====================================

8. Page

====================================*/
/*
Top
====================================*/
/*common start*/
#top .cmnBox {
	margin-top: clamp(1.563rem, 0.852rem + 3.03vw, 3.125rem);
}
#top .cmnBox > ._head {
	font-size: clamp(1.125rem, 0.784rem + 1.45vw, 1.875rem);
	text-align: center;
}
#top .cmnBox > ._desc {
	margin-top: 20px;
	text-align: center;
	line-height: calc(35/16);
}
@media screen and (max-width: 1024px) {
	#top .cmnBox > ._desc {
		text-align: justify;
		line-height: calc(23 / 13);
	}
}
#top .cmnBox .cmnLinkBox {
	margin: clamp(1.563rem, 1.278rem + 1.21vw, 2.188rem) auto 0;
}
#top .cmnBox .cmnLinkBox a {
	margin: auto;
}
#top .cmnBox._type2 {
	margin-top: clamp(1.563rem, 0.426rem + 4.85vw, 4.063rem);
}
#top .cmnBox._type2 > ._head {
	text-align: justify;
}
@media screen and (max-width: 1024px) {
	#top .cmnBox._type2 > ._head {
		text-align: center;
	}
}
#top .cmnBox._type2 > ._desc {
	text-align: justify;
}
#top .cmnBox._type2 .cmnLinkBox {
	margin: clamp(1.875rem, 1.023rem + 3.64vw, 3.75rem) 0 0;
}
#top .cmnBox._type2 .cmnLinkBox a {
	margin: initial;
}
@media screen and (max-width: 1024px) {
	#top .cmnBox._type2 .cmnLinkBox a {
		margin: auto;
	}
}
/*common end*/
.top_mv {
	position: relative;
	height: calc(100vh - var(--headerH));
}
@media screen and (max-width: 1024px) {
	.top_mv {
		height: initial;
		aspect-ratio: 375/362;
	}
}
.top_mv .inner {
	height: 100%;
}
.top_mv .box {
	height: 100%;
}
.top_mv .catchBox {
	position: relative;
	z-index: 1;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	padding-bottom: 70px;
}
@media screen and (max-width: 1024px) {
	.top_mv .catchBox {
		padding-bottom: 0px;
	}
}
.top_mv .catchBox ._title {
	font-size: clamp(2.5rem, 1.506rem + 4.24vw, 4.688rem);
	line-height: calc(85/75);
	text-align: center;
	color: #fff;
	font-weight: 700;
	text-shadow: 0px 1px 10px #0f3552;
}
.top_mv .catchBox ._desc {
	margin-top: 10px;
	font-size: clamp(0.938rem, 0.653rem + 1.21vw, 1.563rem);
	line-height: calc(35/25);
	text-align: center;
	color: #fff;
	text-shadow: 0px 1px 6px #0f3552;
}
@media screen and (max-width: 1024px) {
	.top_mv .catchBox ._title {
		line-height: calc(43/40)!important;
	}
	.top_mv .catchBox ._desc {
	    line-height: calc(21/15)!important;
	}
}
.top_mv .slideBox {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
100% {
    transform: scale(1.05); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s ease-out 0s normal both;
}
.top_mv .slideBox img {}

.top_news {}
.top_news .inner {}
.top_news .box {
	align-items: stretch;
	gap: clamp(0.75rem, -0.045rem + 3.39vw, 2.5rem);
	min-height: 186px;
}
.top_news .leftBox {
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	gap: 32px;
	width: min(267px, 100%);
}
.top_news .headBox {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	background: linear-gradient(#dfeaf5 0%, rgba(223, 234, 245, 0) 100%);
}
.top_news .headBox > ._head {}
.top_news .headBox > ._head span {}
.top_news .linkBox {}
.top_news .linkBox a {}
.top_news .linkBox a span {}
.top_news .mainBox {
	flex: 1;
	border-top: 1px solid #c6d6e5;
	border-bottom: 1px solid #c6d6e5;
}
@media screen and (max-width: 1024px) {
	.top_news .leftBox {
		width: 100%;
	}
	.top_news .headBox {
		padding: 15px 0;
	}
	.top_news .linkBox {
		width: 100%;
		margin-top: 13px;
	}
}
.top_news .mainBox article {}
.top_news .mainBox article:not(:first-child){
	border-top: 1px dashed #dde0e3;
}
.top_news .mainBox a {
	justify-content: flex-start;
	align-items: center;
	gap: clamp(0.938rem, 0.682rem + 1.09vw, 1.5rem);
	padding: 8px 0;
}
@media screen and (min-width: 1025px){
	.top_news .mainBox a:hover {
		opacity: 1;
	}
	.top_news .mainTextBox:hover > ._title {
		opacity: 1;
		color: #1162a0;
	}
}
.top_news .mainImgBox {
	width: clamp(6.875rem, 6.477rem + 1.7vw, 7.75rem);
	aspect-ratio: 167/118;
}
.top_news .mainImgBox img {
	width: 100%;
	height: 100%;
}
.top_news .mainTextBox {
	justify-content: flex-start;
	flex: 1;
}
.top_news .mainTextBox ._date {
	font-size: 14px;
	color: #3989c6;
}
.top_news .mainTextBox > ._category {
	display: grid;
	place-content: center;
	min-width: clamp(4.688rem, 4.119rem + 2.42vw, 5.938rem);
	min-height: 23px;
	margin-left: 13px;
	border-radius: 15px;
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	color: #0f3552;
	border: 1px solid #6188a5;
}
.top_news .mainTextBox > ._new {
	font-size: 14px;
	margin-left: 13px;
	color: #f00;
}
.top_news .mainTextBox > ._title {
	width: 100%;
	margin-top: 7px;
	font-size: clamp(0.875rem, 0.847rem + 0.12vw, 0.938rem);
	transition: .3s;
}
.top_img {}
.top_img img {}
.top_company {
	position: relative;
	margin-top: calc(0px - clamp(7.75rem, 5.989rem + 7.52vw, 11.625rem));
}
.top_company .inner {}
.top_company .box {
	padding: 40px clamp(0.938rem, 0.227rem + 3.03vw, 2.5rem);
	filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.16));
	background: linear-gradient(rgba(255, 255, 255, 0.5) 0px, #fff clamp(7.75rem, 5.989rem + 7.52vw, 11.625rem));
}
.top_company .headBox {}
.top_company .headBox > ._head {}
.top_company .mainBox {}
.top_company .mainBox > ._head {}
.top_company .mainBox > ._desc {}
.top_company .mainLinkBox {}
.top_company .mainLinkBox a {}
.top_business {}
.top_business .inner {}
.top_business .box {}
.top_business .headBox {}
.top_business .headBox > ._head {}
.top_business .mainBox {
	align-items: flex-end;
	gap: clamp(1.875rem, 0.824rem + 4.48vw, 4.188rem);
}
.top_business .mainImgBox {
	width: calc(50% - 11px);
}
@media screen and (max-width: 1024px) {
	.top_business .mainImgBox {
		width: 100%;
		aspect-ratio: 327/231;
	}
}
.top_business .mainImgBox img {
	width: 100%;
	height: 100%;
	object-position: 0 15%;
}
.top_business .mainTextBox {
	flex: 1;
}
.top_business .mainTextHeadBox {}
.top_business .mainTextHeadBox > ._head {
	text-align: left;
}
@media screen and (max-width: 1024px) {
	.top_business .mainTextHeadBox > ._head {
		text-align: center;
	}
}
.top_business .mainTextDescBox {}
.top_business .mainTextDescBox > ._head {}
.top_business .mainTextDescBox > ._desc {}
.top_business .mainTextDescLinkBox {}
.top_business .mainTextDescLinkBox a {}
.top_recruit {}
.top_recruit .inner {}
.top_recruit .box {}
.top_recruit .headBox {}
.top_recruit .headBox > ._head {}
.top_recruit .mainBox {
	align-items: stretch;
	gap: clamp(2.813rem, 2.188rem + 2.67vw, 4.188rem);
}
.top_recruit .mainImgBox {
	position: relative;
	z-index: -1;
	width: calc(50% - 11px);
	aspect-ratio: 539 / 534;
}
.top_recruit .mainImgBox > div {
	position: absolute;
	left: calc(0px - var(--ohw));
	width: calc(100% + var(--ohw) + 174px);
	height: 100%;
}
.top_recruit .mainImgBox > div::before {
	content:'';
	position: absolute;
	top: 0;
	right: 0;
	display: inline-block;
	width: 40%;
	height: 100%;
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #fff 100%);
}
.top_recruit .mainImgBox img {
	width: 100%;
	max-width: initial;
	height: 100%;
}
@media screen and (max-width: 1024px) {
	.top_recruit .mainImgBox {
		width: 100%;
		aspect-ratio: 327 / 231;
	}
	.top_recruit .mainImgBox > div {
		position: initial;
		width: 100%;
	}
	.top_recruit .mainImgBox > div::before {
		position: absolute;
		top: initial;
		bottom: 0px;
		right: 0;
		display: inline-block;
		width: 100%;
		height: 74px;
		background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 100%);
	}
}
.top_recruit .mainTextBox {
	flex: 1;
	padding: 47px 0;
}
@media screen and (max-width: 1024px) {
	.top_recruit .mainTextBox {
		padding: initial;
	}
}
.top_recruit .mainTextHeadBox {}
.top_recruit .mainTextHeadBox > ._head {
	text-align: left;
}
@media screen and (max-width: 1024px) {
	.top_recruit .mainTextHeadBox > ._head {
		text-align: center;
	}
}
.top_recruit .mainTextDescBox {}
.top_recruit .mainTextDescBox > ._head {}
.top_recruit .mainTextDescBox > ._desc {}
.top_recruit .mainTextDescLinkBox {}
.top_recruit .mainTextDescLinkBox a {}
.top_other {}
.top_other .inner {}
.top_other .box {}
.top_other .mainBox {
	gap: clamp(0.938rem, 0.54rem + 1.7vw, 1.813rem);
}
.top_other .mainBox a {
	overflow: hidden;
	position: relative;
	flex: 1;
	padding: 15px 20px;
	aspect-ratio: 348/215;
}
@media screen and (min-width: 1025px) {
	.top_other .mainBox a:hover {
		opacity: 1;
	}
}
@media screen and (max-width: 1024px) {
	.top_other .mainBox {
		flex-flow: column;
		width: min(500px, 100%);
		margin: auto;
	}
	.top_other .mainBox a {
		width: 100%;
	}
}
.top_other .mainBox a > ._title {
	display: flex;
	flex-flow: column;
	font-size: 30px;
	text-align: justify;
}
.top_other .mainBox a > ._title span {
	font-size: 16px;
}
.top_other .mainBox a img {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media screen and (min-width: 1025px) {
	.top_other .mainBox a:hover img {
		transform: scale(1.1);
		opacity: 1;
	}
}
/*
company
====================================*/
/*common start*/
/*common end*/
.company_greeting {}
.company_greeting .inner {}
.company_greeting .box {}
.company_greeting .headBox {}
.company_greeting .headBox > ._head {}
.company_greeting .mainBox {
	gap: clamp(1.563rem, 0.568rem + 4.24vw, 3.75rem);
}
.company_greeting .mainImgBox {
	width: calc(50% - 25px);
}
.company_greeting .mainImgBox img {}
@media screen and (max-width: 1024px) {
	.company_greeting .mainImgBox {
		width: 100%;
		text-align: center;
	}
	.company_greeting .mainImgBox img {
		width: 100%;
		max-width: var(--maxWidth500);
	}
}
.company_greeting .mainTextBox {
	flex: 1;
}
.company_greeting .mainTextBox > ._head {}
.company_greeting .mainTextBox > ._desc {
	margin-top: clamp(0.938rem, 0.795rem + 0.61vw, 1.25rem);
	line-height: calc(32 / 16);
}
.company_greeting .mainTextBox > ._name {
	display: flex;
	align-items: center;
	margin-top: clamp(1.25rem, 1.108rem + 0.61vw, 1.563rem);
}
.company_greeting .mainTextBox > ._name span {
	margin-left: 1em;
	font-size: clamp(1.188rem, 1.131rem + 0.24vw, 1.313rem);
}
.company_philosophy {
	padding: clamp(5.625rem, 4.205rem + 6.06vw, 8.75rem) 0;
	background-image: url(./images/company_philosophy_bg01.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.company_philosophy .inner {}
.company_philosophy .box {
	width: min(764px, 100%);
	margin: auto;
	padding: clamp(1.563rem, 1.136rem + 1.82vw, 2.5rem) clamp(0.938rem, -0.909rem + 7.88vw, 5rem);
	background: #fff;
}
.company_philosophy .headBox {}
.company_philosophy .headBox > ._head {
	padding-bottom: 6px;
	text-align: center;
	border-bottom: 4px dotted #3989c6;
}
.company_philosophy .mainBox {
	margin-top: clamp(1.563rem, 1.42rem + 0.61vw, 1.875rem);
}
.company_philosophy .mainBox ul {
	display: table;
	margin: auto;
}
.company_philosophy .mainBox ul > li {
	position: relative;
	padding-left: 1em;
	font-size: clamp(1rem, 0.744rem + 1.09vw, 1.563rem);
}
.company_philosophy .mainBox ul > li::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0%, -50%);
	width: .6em;
	height: .6em;
	border-radius: 50%;
	background: #000;
}
.company_guideline {}
.company_guideline .inner {}
.company_guideline .box {}
.company_guideline .mainBox {
	align-items: stretch;
}
.company_guideline .mainImgBox {
	width: calc(50% - 171px);
}
@media screen and (max-width: 1024px) {
	.company_guideline .mainImgBox {
		width: 100%;
		aspect-ratio: 16/10;
	}
}
.company_guideline .mainImgBox img {
	width: 100%;
	height: 100%;
}
.company_guideline .mainTextBox {
	flex: 1;
	padding: clamp(1.563rem, 0.568rem + 4.24vw, 3.75rem) clamp(0.938rem, -0.852rem + 7.64vw, 4.875rem);
	color: #fff;
	background: var(--mainColor);
}
.company_guideline .mainTextBox > ._head {
	padding-bottom: 7px;
	border-bottom: 1px solid #fff;
}
.company_guideline .mainTextBox ul {
	margin-top: clamp(1.25rem, 0.824rem + 1.82vw, 2.188rem);
}
.company_guideline .mainTextBox ul > li {
	font-weight: bold;
	font-size: clamp(0.875rem, 0.705rem + 0.73vw, 1.25rem);
	line-height: calc(35/ 20);
}
.company_overview {}
.company_overview .inner {}
.company_overview .box {}
.company_overview .headBox {}
.company_overview .headBox > ._head {}
.company_overview .mainBox {}
.company_access {}
.company_access .inner {}
.company_access .box {}
.company_access .headBox {}
.company_access .headBox > ._head {}
.company_access .mainBox {}
.company_access .mainImgBox {}
.company_access .mainImgBox img {}
.company_access .mainTextBox {}
.company_access .mainTextBox p {}
.company_access .mainMapBox {}
.company_access .mainMapBox iframe {
	aspect-ratio: 1100/457;
}
@media screen and (max-width: 1024px) {
	.company_access .mainMapBox iframe {
		aspect-ratio: 1/1;
	}
}
.company_access .mainTextBox,
.company_access .mainMapBox {
	margin-top: clamp(1.875rem, 1.307rem + 2.42vw, 3.125rem);
}
.company_history {}
.company_history .inner {}
.company_history .box {}
.company_history .headBox {}
.company_history .headBox > ._head {}
.company_history .mainBox {}
.company_affiliatedCompanies {}
.company_affiliatedCompanies .inner {}
.company_affiliatedCompanies .box {}
.company_affiliatedCompanies .headBox {}
.company_affiliatedCompanies .headBox > ._head {}
.company_affiliatedCompanies .leadBox {}
.company_affiliatedCompanies .leadBox p {}
.company_affiliatedCompanies .mainBox {
    display: grid;
    gap: clamp(2.188rem, 1.619rem + 2.42vw, 3.438rem);
}
.company_affiliatedCompanies .mainBox > div {}
.company_affiliatedCompanies .mainBox > div > ._head {
    font-size: clamp(1.125rem, 1.04rem + 0.36vw, 1.313rem);
}
.company_affiliatedCompanies .mainTableBox {
    margin-top: 15px;
}
.company_affiliatedCompanies .linkBox {
    margin-top: clamp(2.5rem, 2.216rem + 1.21vw, 3.125rem);
    text-align: center;
}
.company_affiliatedCompanies .linkBox a {
    display: inline-grid;
    place-items: center;
    width: min(358px, 100%);
    height: 60px;
    text-align: center;
    border: 1px solid #345e7e;
    font-size: clamp(0.938rem, 0.881rem + 0.24vw, 1.063rem);
    color: #345e7e;
}
@media screen and (min-width: 1025px){
	.company_affiliatedCompanies .linkBox a:hover {
		color: #fff;
		border: 1px solid #345e7e;
	    background: #345e7e;
		opacity: 1;
	}
}
/*
business
====================================*/
/*common start*/
/*common end*/
.business_overview {}
.business_overview .inner {}
.business_overview .box {}
.business_overview .headBox {}
.business_overview .headBox > ._head {}
.business_overview .mainBox {
	display: grid;
	gap: 17px;
}
.business_overview .mainBox dl {
	align-items: stretch;
}
.business_overview .mainBox dl dt {
	display: flex;
	align-items: center;
	width: min(231px, 100%);
	padding: clamp(0.625rem, -0.82rem + 6.16vw, 3.125rem) clamp(0.938rem, 0.035rem + 3.85vw, 2.5rem);
	padding-right: 0;
	color: #fff;
	font-size: clamp(1.125rem, 0.944rem + 0.77vw, 1.438rem);
	background: #345E7E;
}
.business_overview .mainBox dl dd {
	flex: 1;
	padding: clamp(1.25rem, 0.682rem + 2.42vw, 2.5rem) clamp(0.938rem, -0.057rem + 4.24vw, 3.125rem);
	line-height: 2;
	background: #f7f8f8;
}
@media screen and (max-width: 1024px) {
	.business_overview .mainBox dl dt {
		width: 100%;
		padding: clamp(0.938rem, 0.795rem + 0.61vw, 1.25rem) clamp(0.938rem, 0.227rem + 3.03vw, 2.5rem);
	}
}
.business_paddyRice {}
.business_paddyRice .inner {}
.business_paddyRice .box {}
.business_paddyRice .headBox {}
.business_paddyRice .headBox > ._head {}
.business_paddyRice .mainBox {
	gap: clamp(1.875rem, 1.023rem + 3.64vw, 3.75rem);
}
.business_paddyRice .mainImgBox {
	display: grid;
	gap: clamp(0.938rem, 0.653rem + 1.21vw, 1.563rem);
	width: calc(50% - 25px);
}
@media screen and (max-width: 1024px) {
	.business_paddyRice .mainImgBox {
		width: 100%;
	}
}
.business_paddyRice .mainImgBox img {}
.business_paddyRice .mainTextBox {
	flex: 1;
}
.business_paddyRice .mainTextBox > *:not(:first-child) {
	margin-top: clamp(1.563rem, 1.42rem + 0.61vw, 1.875rem);
}
.business_paddyRice .mainTextBox p {
	line-height: 2;
}
.business_paddyRice .mainTextBox dl {
	padding: 20px clamp(0.938rem, 0.369rem + 2.42vw, 2.188rem);
	background: #ecf5fc;
}
.business_paddyRice .mainTextBox dl dt {}
.business_paddyRice .mainTextBox dl dd {
	margin-top: 10px;
}
.business_paddyRice .mainTextBox ul {}
.business_paddyRice .mainTextBox ul > li {
	line-height: calc(30/16);
}
.business_efficiency {}
.business_efficiency .inner {}
.business_efficiency .box {}
.business_efficiency .headBox {}
.business_efficiency .headBox > ._head {}
.business_efficiency .leadBox {}
.business_efficiency .leadBox p {}
.business_efficiency .mainBox {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(400px, 100%), 1fr));
	gap: 35px;
}
.business_efficiency .mainImgBox {}
.business_efficiency .mainImgBox img {
	width: 100%;
}
.business_efficiency .mainBox dl {
	background: #f7f8f8;
}
.business_efficiency .mainBox dt {
	display: grid;
	place-items: center;
	min-height: clamp(3.438rem, 2.926rem + 2.18vw, 4.563rem);
	padding: 15px;
	font-size: clamp(1.125rem, 1.011rem + 0.48vw, 1.375rem);
	text-align: center;
	color: #Fff;
	background: var(--mainColor);
}
.business_efficiency .mainBox dd {
	padding: clamp(1.563rem, 1.278rem + 1.21vw, 2.188rem) clamp(0.938rem, 0.369rem + 2.42vw, 2.188rem);
}
.business_efficiency .mainBox p {
	margin-top: clamp(1.25rem, 1.108rem + 0.61vw, 1.563rem);
	line-height: 2;
}
.business_safety {}
.business_safety .inner {}
.business_safety .box {}
.business_safety .headBox {}
.business_safety .headBox > ._head {}
.business_safety .leadBox {}
.business_safety .leadBox p {}
.business_safety .mainBox {
	display: grid;
	gap: clamp(2.188rem, 1.761rem + 1.82vw, 3.125rem);
}
.business_safety .mainBox > div > ._head {
	font-size: clamp(1.125rem, 1.011rem + 0.48vw, 1.375rem);
}
.business_safety .mainBox > div > div {
	gap: clamp(1.563rem, 0.568rem + 4.24vw, 3.75rem);
	margin-top: 15px;
}
.business_safety .mainImgBox {
	width: min(50% - 25px);
}
@media screen and (max-width: 1024px) {
	.business_safety .mainImgBox {
		width: 100%;
	}
}
.business_safety .mainImgBox img {}
.business_safety .mainTextBox {
	flex: 1;
}
.business_safety .mainTextBox p {}
.business_faq {}
.business_faq .inner {}
.business_faq .box {}
.business_faq .headBox {}
.business_faq .headBox > ._head {}
.business_faq .leadBox {}
.business_faq .leadBox p {}
.business_faq .mainBox {}
.business_faq .mainBox dl {
	display: grid;
	gap: clamp(0.938rem, 0.739rem + 0.85vw, 1.375rem);
}
.business_faq .mainBox dl > div {
	padding: clamp(0.938rem, 0.795rem + 0.61vw, 1.25rem) clamp(0.625rem, 0.341rem + 1.21vw, 1.25rem);
	background: #ecf5fc;
}
.business_faq .mainBox dl dt {
	position: relative;
	padding-top: 0px!important;
	padding-bottom: 0px !important;
}
.business_faq .mainBox dl dt::before,
.business_faq .mainBox dl dt::after {
	content:'';
	position: absolute;
	top: 50%;
	right: clamp(0.625rem, 0.341rem + 1.21vw, 1.25rem);
	transform: translate(0%, -50%);
	width: 20px;
	height: 2px;
	background: #345e7e;
}
.business_faq .mainBox dl dt::after {
	transform: translate(0%, -50%) rotate(90deg);
}
.business_faq .mainBox dl dt._open::after {
	display: none;
}
.business_faq .mainBox dl dt span {
	color: #345e7e;
}
.business_faq .mainBox dl dt p {
	padding-top: 6px;
	padding-right: 2.5em;
	font-size: clamp(1rem, 0.858rem + 0.61vw, 1.313rem);
}
.business_faq .mainBox dl dd {
	margin-top: clamp(0.938rem, 0.795rem + 0.61vw, 1.25rem);
	background: #fff;
}
.business_faq .mainBox dl dd span {
	color: #3989c6;
}
.business_faq .mainBox dl dd p {
	padding-top: 9px;
}
.business_faq .mainBox dl dt,
.business_faq .mainBox dl dd {
	padding: clamp(0.938rem, 0.795rem + 0.61vw, 1.25rem) clamp(0.625rem, 0.341rem + 1.21vw, 1.25rem);
}
.business_faq .mainBox dl dt span,
.business_faq .mainBox dl dd span {
	width: clamp(2.125rem, 1.699rem + 1.82vw, 3.063rem);
	font-size: clamp(1.75rem, 1.466rem + 1.21vw, 2.375rem);
	line-height: 1;
}
.business_faq .mainBox dl dt p,
.business_faq .mainBox dl dd p {
	flex: 1;
}
/*
recruit
====================================*/
/*common start*/
/*common end*/
.recruit_message {}
.recruit_message .inner {}
.recruit_message .box {}
.recruit_message .headBox {}
.recruit_message .headBox > ._head {}
.recruit_message .mainBox {
	gap: clamp(1.563rem, 0.568rem + 4.24vw, 3.75rem);
}
.recruit_message .mainBox > ._leftBox {
	width: calc(50% - 25px);
}
@media screen and (max-width: 1024px) {
	.recruit_message .mainBox > ._leftBox {
		width: 100%;
	}
}
.recruit_message .mainBox dl {
	margin-top: 20px;
	padding: clamp(0.938rem, 0.653rem + 1.21vw, 1.563rem);
	border: 1px solid #078bde;
}
.recruit_message .mainBox dl dt {
	margin-bottom: 6px;
	font-size: clamp(1rem, 0.943rem + 0.24vw, 1.125rem);
	color: #078bde;
}
.recruit_message .mainBox dl dd {
	line-height: calc(32 / 16);
}
.recruit_message .mainBox dl dd:first-letter {
	color: #078bde;
}
.recruit_message .mainImgBox {}
.recruit_message .mainImgBox img {}
.recruit_message .mainTextBox {
	flex: 1;
}
.recruit_message .mainTextBox > ._head {}
.recruit_message .mainTextBox > ._desc {
	margin-top: clamp(0.938rem, 0.795rem + 0.61vw, 1.25rem);
	line-height: calc(32 / 16);
}
.recruit_message .mainTextBox > ._name {
	display: flex;
	align-items: center;
	margin-top: clamp(1.25rem, 1.108rem + 0.61vw, 1.563rem);
}
.recruit_message .mainTextBox > ._name span {
	margin-left: 1em;
	font-size: clamp(1.188rem, 1.131rem + 0.24vw, 1.313rem);
}
.recruit_interview {
	background: #d3f5ff;
}
.recruit_interview .inner {}
.recruit_interview .box {}
.recruit_interview .headBox {}
.recruit_interview .headBox > ._head {}
.recruit_interview .mainBox {
	display: grid;
	gap: 25px;
}
.recruit_interview .mainBox > div {
	transform: translateX(-50px);
	width: calc(100% + 100px);
	gap: clamp(1.875rem, 1.023rem + 3.64vw, 3.75rem);
	padding: clamp(1.875rem, 0.17rem + 7.27vw, 5.625rem) clamp(0.938rem, -0.057rem + 4.24vw, 3.125rem);
	background: #fff;
}
.recruit_interview .mainImgBox {
	display: grid;
	gap: 5px;
	width: calc(50% - 125px);
}
@media screen and (max-width: 1024px) {
	.recruit_interview .mainBox > div {
		transform: initial;
		width: 100%;
	}
	.recruit_interview .mainImgBox {
		order: 2;
		width: 100%;
	}
}
.recruit_interview .mainImgBox > div {}
.recruit_interview .mainImgBox img {}
.recruit_interview .mainTextBox {
	flex: 1;
}
.recruit_interview .mainTextInfoBox {
	overflow: hidden;
	justify-content: flex-start;
	align-items: center;
}
@media screen and (max-width: 1024px) {
	.recruit_interview .mainTextInfoBox {
		margin-bottom: 20px;
	}
}
.recruit_interview .mainTextInfoBox ._info1 {
	display: grid;
	place-items: center;
	min-width: clamp(7.188rem, 6.761rem + 1.82vw, 8.125rem);
	min-height: clamp(1.875rem, 1.705rem + 0.73vw, 2.25rem);
	padding: 5px clamp(0.938rem, 0.795rem + 0.61vw, 1.25rem);
	font-size: clamp(0.875rem, 0.847rem + 0.12vw, 0.938rem);
	color: #fff;
	background: #11beef;
}
.recruit_interview .mainTextInfoBox ._info2 {
	margin-left: 25px;
	font-size: clamp(0.875rem, 0.847rem + 0.12vw, 0.938rem);
}
.recruit_interview .mainTextInfoBox ._info3 {
	margin-left: clamp(0.625rem, 0.483rem + 0.61vw, 0.938rem);
	padding-left: clamp(0.625rem, 0.483rem + 0.61vw, 0.938rem);
	font-size: clamp(1rem, 0.886rem + 0.48vw, 1.25rem);
	border-left: 1px solid #11beef;
}
@media screen and (max-width: 1024px) {
	.recruit_interview .mainTextInfoBox ._info1 {
		margin-right: 100%;
		margin-bottom: 10px;
	}
	.recruit_interview .mainTextInfoBox ._info2 {
		margin-left: 0;
	}
}
.recruit_interview .mainTextBox > ._head {
	margin-top: clamp(1.25rem, 1.108rem + 0.61vw, 1.563rem);
	font-size: clamp(1.125rem, 0.784rem + 1.45vw, 1.875rem);
}
.recruit_interview .mainTextBox > ._desc {
	margin-top: clamp(1.25rem, 1.108rem + 0.61vw, 1.563rem);
	line-height: calc(30/16);
}
.recruit_yearlyWork {}
.recruit_yearlyWork .inner {}
.recruit_yearlyWork .box {}
.recruit_yearlyWork .headBox {}
.recruit_yearlyWork .headBox > ._head {}
.recruit_yearlyWork .mainBox {
	display: grid;
	gap: 25px;
}
.recruit_yearlyWork .mainBox > div {
	align-items: stretch;
}
.recruit_yearlyWork .mainImgBox {
	width: calc(50% - 193px);
}
.recruit_yearlyWork .mainImgBox img {}
@media screen and (max-width: 1024px) {
	.recruit_yearlyWork .mainImgBox {
		width: 100%;
	}
	.recruit_yearlyWork .mainImgBox img {
	}
}
.recruit_yearlyWork .mainTextBox {
	padding: clamp(1.563rem, 0.994rem + 2.42vw, 2.813rem) clamp(0.938rem, 0.085rem + 3.64vw, 2.813rem);
	flex: 1;
	background: #f7f8f8;
}
.recruit_yearlyWork .mainTextBox > ._head {
	font-size: clamp(1.125rem, 0.983rem + 0.61vw, 1.438rem);
	color: #345e7e;
}
.recruit_yearlyWork .mainTextBox p {
	margin-top: clamp(0.625rem, 0.483rem + 0.61vw, 0.938rem);
	line-height: calc(32/16);
}
.recruit_employeeBenefits {
    background: #d3f5ff;
}
.recruit_employeeBenefits .inner {}
.recruit_employeeBenefits .box {}
.recruit_employeeBenefits .headBox {}
.recruit_employeeBenefits .headBox > ._head {}
.recruit_employeeBenefits .leadBox {}
.recruit_employeeBenefits .leadBox p {}
.recruit_employeeBenefits .mainBox {}
.recruit_employeeBenefits .mainBox dl {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
    gap: clamp(0.938rem, 0.653rem + 1.21vw, 1.563rem);
}
.recruit_employeeBenefits .mainBox dl > div {
    padding: clamp(1.563rem, 1.278rem + 1.21vw, 2.188rem) clamp(0.938rem, 0.511rem + 1.82vw, 1.875rem);
    background: #fff;
}
.recruit_employeeBenefits .mainBox dl dt {
    font-size: clamp(1.125rem, 1.068rem + 0.24vw, 1.25rem);
    text-align: center;
    color: #078bde;
}
.recruit_employeeBenefits .mainBox dl dd {
    margin-top: 10px;
    font-size: 15px;
    line-height: calc(26/15);
}
.recruit_entry {}
.recruit_entry .inner {}
.recruit_entry .box {
    padding: clamp(1.875rem, 0.455rem + 6.06vw, 5rem) clamp(0.938rem, -0.341rem + 5.45vw, 3.75rem);
    box-shadow: 0px 2px 10px #dde0e3;
    background: #fff;
}
.recruit_entry .headBox {}
.recruit_entry .headBox > ._head {
    padding-bottom: 7px;
    text-align: center;
    border-bottom: 1px solid #3989c6;
}
.recruit_entry .leadBox {
    margin-top: 25px;
}
.recruit_entry .leadBox p {
    text-align: center;
}
.recruit_entry .linkBox {}
.recruit_entry .linkBox a {
    max-width: 600px;
    min-height: clamp(4.375rem, 3.665rem + 3.03vw, 5.938rem);
    margin: auto;
    border-radius: initial;
    font-size: clamp(1rem, 0.744rem + 1.09vw, 1.563rem);
    background: linear-gradient(#11beef 0%, #078bde 100%);
}
.recruit_entry .linkBox a::before {
	border-radius: initial;
	background: linear-gradient(#1191ef 0%, #0762de 100%);
}
.recruit_entry .linkBox a span {
    padding-right: 1.6em;
}
.recruit_entry .linkBox a span::before {
    width: clamp(1rem, 0.858rem + 0.61vw, 1.313rem);
}
/*
news
====================================*/
/*common start*/
/*common end*/
.news_list {}
.news_list .inner {}
.news_list .box {}
.news_list .mainBox {}
.news_list .mainBox article {
    border-top: 1px solid #c6d6e5;
}
.news_list .mainBox article a {
    align-items: center;
    gap: clamp(1.25rem, 0.881rem + 1.58vw, 2.063rem);
    padding: 25px 0;
}
.news_list .mainImgBox {
    width: min(167px, 100%);
    aspect-ratio: 167/ 118;
}
@media screen and (max-width: 1024px) {
	.news_list .mainImgBox {
	    width: 100%;
	}
}
.news_list .mainImgBox img {
    width: 100%;
    height: 100%;
}
.news_list .mainTextBox {
    justify-content: flex-start;
    align-items: baseline;
    flex: 1;
}
.news_list .mainTextBox > ._date {
    font-size: clamp(0.875rem, 0.847rem + 0.12vw, 0.938rem);
    color: #3989c6;
}
.news_list .mainTextBox > ._category {
    display: inline-grid;
    place-items: center;
    min-height: clamp(1.5rem, 1.386rem + 0.48vw, 1.75rem);
    min-width: clamp(6.25rem, 5.852rem + 1.7vw, 7.125rem);
    margin-left: clamp(0.938rem, 0.795rem + 0.61vw, 1.25rem);
    padding: 2px 5px;
    border-radius: 30px;
    border: 1px solid #6188a5;
    font-size: 13px;
    color: #0f3552;
}
.news_list .mainTextBox > ._new {
    margin-left: clamp(0.938rem, 0.881rem + 0.24vw, 1.063rem);
    font-size: 15px;
    color: #e80303;
}
.news_list .mainTextBox > ._title {
    width: 100%;
    margin-top: 13px;
    font-size: 15px;
}
.news_detail {}
.news_detail .inner {}
.news_detail .box {
    padding: clamp(1.875rem, 0.881rem + 4.24vw, 4.063rem) clamp(0.938rem, -1.477rem + 10.3vw, 6.25rem);
    border: 1px solid #c6d6e5;
}
.news_detail .headBox {}
.news_detail .headBox > ._head {}
.news_detail .mainBox {}
.news_detail .mainBox article {}
.news_detail .mainTopBox {}
.news_detail .mainTopBox > ._date {}
.news_detail .mainTopBox > ._category {}
.news_detail .mainTopBox > ._new {}
.news_detail .mainBox article > ._head {
    margin-top: 20px;
    padding: clamp(1.25rem, 0.824rem + 1.82vw, 2.188rem) 0;
    font-size: clamp(1.125rem, 1.011rem + 0.48vw, 1.375rem);
    border-top: 1px solid #c6d6e5;
    border-bottom: 1px solid #c6d6e5;
}
.news_detail .mainContentBox {
    margin-top: clamp(1.875rem, 1.307rem + 2.42vw, 3.125rem);
}
.news_detail .mainContentBox > *:first-child,
.news_detail .mainContentBox > * *:first-child {
	margin-top: 0;
}
.news_detail .mainContentBox p {
    line-height: calc(30/14);
}
.news_detail .mainContentBox img {
	display: table;
	margin: auto!important;
}
.news_detail .mainContentBox :not(ul):not(li):not(iframe):not(table *) {
	margin: calc(clamp(0.875rem, 0.818rem + 0.24vw, 1rem) * 1.6) 0 0;
}
.news_detail .mainContentBox a {
	color: var(--mainColor);
	text-decoration: underline;
}
.info_detail .pnBox {}
.news_detail .paginationBox {}
/* , */
.news_list .box,
.news_detail .wrap {
    padding: clamp(1.875rem, 0.17rem + 7.27vw, 5.625rem) clamp(0.938rem, -2.33rem + 13.94vw, 8.125rem);
    box-shadow: 0px 2px 10px #dde0e3;
    background: #fff;
}
.news_list .mainTextBox,
.news_detail .mainTopBox {
    justify-content: flex-start;
    align-items: center;
    flex: 1;
}
.news_list .mainTextBox > ._date,
.news_detail .mainTopBox > ._date {
    font-size: clamp(0.875rem, 0.847rem + 0.12vw, 0.938rem);
    color: #3989c6;
}
.news_list .mainTextBox > ._category,
.news_detail .mainTopBox > ._category {
    display: inline-grid;
    place-items: center;
    min-height: clamp(1.5rem, 1.386rem + 0.48vw, 1.75rem);
    min-width: clamp(6.25rem, 5.852rem + 1.7vw, 7.125rem);
    margin-left: clamp(0.938rem, 0.795rem + 0.61vw, 1.25rem);
    padding: 2px 5px;
    border-radius: 30px;
    border: 1px solid #6188a5;
    font-size: 13px;
    color: #0f3552;
}
.news_list .mainTextBox > ._new,
.news_detail .mainTopBox > ._new {
    margin-left: clamp(0.938rem, 0.881rem + 0.24vw, 1.063rem);
    font-size: 15px;
    color: #e80303;
}
/*
contact
====================================*/
/*common start*/
/*common end*/
.contact_form {
    margin-top: clamp(3.75rem, 2.898rem + 3.64vw, 5.625rem);
    background: #ecf5fc;
}
.contact_form .inner {}
.contact_form .box {}
.contact_form .headBox {}
.contact_form .headBox > ._head {}
.contact_form .leadBox {}
.contact_form .leadBox p {}
.contact_form .mainBox {
    padding: clamp(1.875rem, 0.597rem + 5.45vw, 4.688rem) clamp(0.938rem, -2.756rem + 15.76vw, 9.063rem);
    box-shadow: 0px 2px 6px rgba(196, 201, 208, 0.5);
    background: #fff;
}
.contact_form .mainFormBox {
    padding: clamp(1.875rem, 0.739rem + 4.85vw, 4.375rem) clamp(0.938rem, -0.625rem + 6.67vw, 4.375rem);
    border: 1px solid #c6d6e5;
}
.contact_privacyPolicy {}
.contact_privacyPolicy .inner {}
.contact_privacyPolicy .box {}
.contact_privacyPolicy .headBox {}
.contact_privacyPolicy .headBox > ._head {}
.contact_privacyPolicy .mainBox {
    padding: clamp(1.875rem, -0.114rem + 8.48vw, 6.25rem) clamp(0.938rem, -1.477rem + 10.3vw, 6.25rem);
    border: 1px solid #c6d6e5;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}
.contact_privacyPolicy .mainBox p {
    font-size: 14px;
}
/*テスト*/