/*
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

####################################*/
/*====================================

0. Font

====================================*/

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
/*====================================

1. General

====================================*/
/*
Root
====================================*/
:root {
	/* メインカラー */
	--mainColor: #76CB2E;
	--mainColor2: #2B8A0F;
	/*====== 背景カラー ======*/
	/* コンテンツ背景カラー */
	--contentsBg: #F2F9DD;
	/* 下層ページトップ背景カラー */
	--lowerTopBg: #D7E1FA;
	/* 表組み項目名背景カラー */
	--tableItemBg: #F0F5FA;
	/* フォーム項目名背景カラー */
	--formItemBg: #F0F5FA;
	/* カテゴリーリンク背景カラー */
	--categoryLinkBg: #D7E1FA;
	/* メール問い合わせボタン背景カラー */
	--mailBtnBg: #FDA237;
	/*====== テキストカラー ======*/
	/* テキストカラー */
	--textColor: #343434;
	/* リンクテキストカラー */
	--linkTextColor: #0c4876;
	/*====== ページネーションカラー ======*/
	/* ページネーションテキスト、矢印カラー */
	--pnColor: #878e93;
	/* ページネーションhoverテキスト、矢印カラー */
	--pnHoverColor: #333;
	/* ページネーションCurrentテキスト、矢印カラー */
	--pnCurrentColor: #fff;
	/* ページネーションhover背景カラー */
	--pnHoverBg: #f6f6f6;
	/* ページネーションCurrent背景カラー */
	--pnCurrentBg: #76CB2E;
	/*====== フォント ======*/
	--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);
}
/*
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;
	}
}
/* 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: #fff;
}
.top_mv .slick-dots li.slick-active button {
	background: var(--mainColor);
}
/*
default.css Overwrite
====================================*/
/*
Other
====================================*/
/*====================================

2. Site Common Style

====================================*/
/*
Pagination
====================================*/
/*
List
---------------------------------------------------------------*/
.pn_list {
	display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 56px;
    border-radius: 50px;
    border: 1px solid #D7DCE2;
    background: #fff;
    margin: 45px 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;
	font-size: 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: 30px;
	width: 30px;
	color: var(--pnColor);
	border-radius: 18px;
}
.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;
	border-radius: 50px 0 0 50px;
}
.pn_list .listFirstBlk a::before {
	border-bottom: solid 2px var(--mainColor);
	border-left: solid 2px var(--mainColor);
	left: 50%;
}
.pn_list .listFirstBlk a::after {
	border-bottom: solid 2px var(--mainColor);
	border-left: solid 2px var(--mainColor);
	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;
	    border-radius: 0 50px 50px 0;
}
.pn_list .listLastBlk a::before {
	border-top: solid 2px var(--mainColor);
	border-right: solid 2px var(--mainColor);
	right: 50%;
}
.pn_list .listLastBlk a::after {
	border-top: solid 2px var(--mainColor);
	border-right: solid 2px var(--mainColor);
	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: 50px 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: 30px;
		font-size: 14px;
	}
	.pn_list .listPagerBlk span.listPagerNum {}
	.pn_list .listPagerNext::before {}
	.pn_list .listFirstBlk, .pn_list .listLastBlk {
		width: 45px;
	}
	.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;
	border: 1px solid #D7DCE2;
    border-radius: 50px;
}
.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 {
	background: #fff;
}
@media screen and (min-width: 1025px) {
	.pn_detail a:hover {
		background: var(--pnHoverBg);
		opacity: 1;
	}
}
.pn_detail .detailpreviousBlk {
	border-right: 1px solid #D7DCE2;
}
.pn_detail .detailpreviousBlk a {
	border-radius: 50px 0 0 50px;
}
.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 {
	border-left: 1px solid #D7DCE2;
}
.pn_detail .detailNextBlk a {
	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: 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;
	gap: 20px;
	width: 300px;
	height: 100%;
	font-size: 13px;
	color: var(--pnColor)
}
.pn_detail .detailBackBlk .detailBackArrow{
	position: relative;
	display: inline-block;
	width: 20px;
	height: 1px;
	margin-top: 6.4px;
	background-color: #878e93;
}
.pn_detail .detailBackBlk .detailBackArrow::before{
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #878e93;
  transform: rotate(45deg);
  transform-origin: calc(100% - 0.5px) 50%;
}
@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;
		gap: 15px;
	}
}
/*
Form
====================================*/
/*
Input
----------------------------------------------------------------*/
.form_input {
	display: grid;
    gap: 30px;
}
.form_input .inputRow {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}
.form_input .inputItem {
    position: relative;
    display: flex;
    align-items: center;
    width: 165px;
    font-size: 14px;
    font-weight: 600;
	gap: 5px;
}
.form_input .inputRow:first-child .inputItem,
.form_input .inputRow:last-child .inputItem{
	align-items: initial;
}
.form_input .inputItem ._must {
	display: flex;
	justify-content: center;
    align-items: center;
    font-size: 10px;
	width: 45px;
    height: 20px;
    color: var(--mainColor2);
    border: 1px solid;
    border-radius: 5px;
}
.form_input .inputItem ._optional {
	display: flex;
	justify-content: center;
    align-items: center;
	width: 45px;
    height: 20px;
    font-size: 10px;
    color: #AFAFAF;
    border: 1px solid;
    border-radius: 5px;
}
.form_input .inputValue {
	flex: 1;
	display: flex;
	align-items: center;
}
.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: 40px;
	border-radius: 6px;
	border: solid #D5D5D5 1px;
	padding: 0px 10px;
	font-size: 13px;
}
.form_input textarea {
	width: 100% !important;
	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: 10px 0;
}
.form_input .wpcf7-list-item {
	margin: 0;
}
.form_input .wpcf7-list-item label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}
.form_input .wpcf7-list-item-label {
	font-size: 14px;
}
/* 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 {}
.form_agree input[type="checkbox"] {
	width: 20px;
	height: 20px;
}
/* submit */
.form_submit {
	position: relative;
	width: 350px;
	text-align: center;
	margin: 35px auto 0;
}
.form_submit input[type="submit"] {
	width: 100%;
	height: 70px;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	transition: .3s;
	background: var(--mailBtnBg);
	border-radius: 35px;
}
@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 {
	}
	.form_input .inputRow {
		flex-flow: wrap;
		gap: 15px;
	}
	.form_input .inputRow:last-child {
		border-bottom: transparent;
	}
	.form_input .inputItem {
		justify-content: flex-start;
		width: 100%;
		padding: initial;
		border-right: transparent;
		gap: 10px;
	}
	.form_input .inputItem ._must {
    margin: 2px 0 0;
}
	.form_input .inputValue {
    flex: initial;
    width: 100%;
}
	.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: 15px;
	}
	.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 {
    gap: 7px;
}
	.form_input .wpcf7-list-item {}
	.form_input .wpcf7-list-item label {}
	.form_input .wpcf7-list-item-label {
    font-size: 13px;
}
	/* 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(--maxWidth300);
	}
	.form_submit input[type="submit"]{
    font-size: 18px;
}
	.form_submit input[type="submit"] {
		height: 55px;
	}
	.form_submit .wpcf7-spinner {}
}
/*
Privacy Policy
----------------------------------------------------------------*/
.form_pp {
	margin: 50px 0 0;
	width: 100%;
	height: 228px;
	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: 60px 0 90px;
}
.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;
	}
	.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: 80px;
	height: clamp(4.063rem, -5.089rem + 14.29vw, 5.625rem);
	box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
	background: white;
}
header .inner {
	height: 100%;
	padding: 0 15px 0 30px;
}
header .blk {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0 30px;
	height: 100%;
}
header .logoBlk {
	flex-shrink: 0;
	display: flex;
}
header .logoBlk a {}
header .logoBlk a p {
	font-size: 24px;
	font-weight: 700;
}
header .logoBlk a img {
	height: 46px;
	height: clamp(2.375rem, 0.977rem + 2.18vw, 2.75rem);
}
@media screen and (min-width: 1025px) {
	header .menuBlk {
		display: flex;
		flex-shrink: 0;
		height: 100%;
	}
	header .menuBlk nav {}
	header .menuBlk nav > ul {
		display: flex;
		height: 100%;
	}
	header .menuBlk nav > ul > li {
		position: relative;
		display: flex;
		align-items: center;
		height: 100%;
	}
	header .menuBlk nav > ul > li._main{
	padding: 0 clamp(0.313rem, -3.348rem + 5.71vw, 0.938rem);
	}
	header .menuBlk nav > ul > li > a {
		font-size: 17px;
		font-size: clamp(0.938rem, 0.472rem + 0.73vw, 1.063rem);
	}
	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: var(--mainColor);
		}
	}
	header .menuBlk nav > ul > li._main._home > a span{
		background-image: url(./images/icon_menu01.svg);
	}
	header .menuBlk nav > ul > li._main._company > a span{
		background-image: url(./images/icon_menu02.svg);
	}
	header .menuBlk nav > ul > li._main._service > a span{
		background-image: url(./images/icon_menu03.svg);
	}
	header .menuBlk nav > ul > li._main._info > a span{
		background-image: url(./images/icon_menu04.svg);
	}
	header .menuBlk nav > ul > li._main._access > a span{
		background-image: url(./images/icon_menu05.svg);
	}
	header .menuBlk nav > ul > li._main > a span{
		display: inline-block;
        padding: 38px 0 0;
        background-repeat: no-repeat;
        background-position: center top;
        background-size: 40px;
		font-weight: 500;
	}
	header .menuBlk nav > ul > li > ul {
		position: absolute;
		top: 80%;
		left: -30px;
		left: clamp(-1.25rem, 1.08rem + -3.64vw, -1.875rem);
		display: flex;
		gap: 15px;
		flex-direction: column;
		background: #fff;
		box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
		z-index: 1;
		padding: clamp(1.25rem, -1.08rem + 3.64vw, 1.875rem);
		min-width: 190px;
		opacity: 0;
		visibility: hidden;
		transition: .3s;
		pointer-events: none;
	}
	header .menuBlk > nav > ul > li._parent:hover > ul {
		top: 100%;
		opacity: 1;
		visibility: visible;
		pointer-events: initial;
	}
	header .menuBlk nav > ul > li > ul > li {}
	header .menuBlk nav > ul > li > ul > li > a {
		font-size: 14px;
	}
	header .menuBlk nav > ul > li > ul > li > a:hover {}
	header .menuBlk nav > ul > li._contact {}
	header .menuBlk nav > ul > li._contact._tel {
		margin: 0 clamp(0.5rem, -2.429rem + 4.57vw, 1rem);
	}
	header .menuBlk nav > ul > li._contact._mail {
		display: flex;
		gap: 8px;
	}
	header .menuBlk nav > ul > li._contact a {
		display: flex;
		align-items: center;
	}
	header .menuBlk nav > ul > li._contact._tel a {
		line-height: 1;
		font-size: 26px;
	}
	header .menuBlk nav > ul > li._contact._tel a ._num{
		font-size: 23px;
		font-weight: 700;
	}
	header .menuBlk nav > ul > li._contact._tel a ._num span{
		font-size: 18px;
	}
	header .menuBlk nav > ul > li._contact._mail a {
		display: grid;
		place-items: center;
		width: 170px;
		width: clamp(9.375rem, 4.716rem + 7.27vw, 10.625rem);
		height: 50px;
		height: clamp(2.813rem, 1.648rem + 1.82vw, 3.125rem);
		font-size: 16px;
		font-size: clamp(0.875rem, 0.409rem + 0.73vw, 1rem);
		color: white;
		background: var(--mainColor);
		border-radius: 30px;
	}
	header .menuBlk nav > ul > li._contact._mail a._recruitBtn {
		background: var(--mailBtnBg);
	}
	header .menuBlk nav > ul > li._contact._mail > a > span {
		padding: 0 0 0 27px;
		/* line-height: 1; */
		background-image: url(./images/icon_mail01.svg);
		background-repeat: no-repeat;
		background-position: left top 40%;
		background-size: 24px;
		/* background-size: clamp(1.125rem, 0.696rem + 0.67vw, 1.5rem); */
	}
	header .menuBlk nav > ul > li._contact._mail > a._recruitBtn > span {
		padding: 0 0 0 27px;
		line-height: 2;
		background: var(--mailBtnBg);
		background-image: url(./images/icon_recruit01.svg);
		background-repeat: no-repeat;
		background-position: left top 40%;
		background-size: 24px;
	}
}
@media screen and (max-width: 1024px) {
	header {
		height: 55px;
		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 {}
	header .logoBlk a {}
	header .logoBlk a p {
		font-size: 16px;
	}
	header .logoBlk a img {
		height: 30px;
	}
	header .menuBlk {
		position: absolute;
		top: var(--headerH, 55px);
		left: 0;
		height: calc(100dvh - var(--headerH, 55px));
		z-index: -1;
		width: 100%;
		background: white;
		overflow: auto;
		padding: 20px 0 60px;
		opacity: 0;
		visibility: hidden;
		transition: .3s;
		display: block;
		flex-shrink: unset;
	}
	header .menuBlk::-webkit-scrollbar {
		display: none;
	}
	header._menuOpen .menuBlk {
		opacity: 1;
		visibility: visible;
	}
	header .menuBlk > * {
		width: 92%;
		max-width: var(--maxWidth768);
		margin: auto;
	}
	header .menuBlk nav {}
	header .menuBlk nav > ul {
		display: block;
		height: auto;
	}
	header .menuBlk nav > ul > li {
		position: relative;
		display: block;
		height: auto;
		border-bottom: 1px solid #ccc;
	}
	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: 16px;
		padding: 15px 10px;
	}
	header .menuBlk nav > ul > li._parent > a {
		position: relative;
	}
	header .menuBlk nav > ul > li._parent::before {
		content: '';
		border-style: solid;
		border-width: 8px 8px 0px 8px;
		border-color: var(--mainColor) transparent transparent transparent;
		position: absolute;
		top: 25px;
		right: 15px;
		transform: translateY(0%);
		transition: .3s;
	}
	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: 15px 0;
		margin: 5px 0 20px;
	}
	header .menuBlk nav > ul > li > ul > li {
		position: relative;
		height: 0;
		transition: .3s;
		padding: 0 0 0 18px;
	}
	header .menuBlk nav > ul > li._childOpen > ul > li {
		height: auto;
	}
	header .menuBlk nav > ul > li > ul > li > a {
		font-size: 15px;
		opacity: 0;
		visibility: hidden;
	}
	header .menuBlk nav > ul > li > ul > li > a::before {
		content: '';
		position: absolute;
		top: 50%;
		left: 0;
		transform: translate(0, -50%);
		width: 10px;
		height: 10px;
		background: var(--mainColor);
		border-radius: 50%;
	}
	header .menuBlk nav > ul > li._childOpen > ul > li > a {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
	}
	header .menuBlk nav > ul > li._contact {
		border-bottom: none;
	}
	header .menuBlk nav > ul > li._contact > a {
		width: 100%;
		max-width: 480px;
		height: 60px;
		margin: auto;
		border-radius: 30px;
	}
	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;
		gap: 5px 0;
		flex-flow: wrap;
		padding: 15px 0;
		font-size: 26px;
		line-height: 23px;
		font-weight: 500;
		color: var(--mainColor2);
		border: 1px solid;
	}
	header .menuBlk nav > ul > li._contact._tel > a > ._num {
		/* padding: 0 0 0 20px; */
		/* background-image: url(./images/icon_tel01_black.svg); */
		/* background-repeat: no-repeat; */
		/* background-position: left top 100%; */
		/* background-size: 15px; */
		font-weight: 700;
	}
	header .menuBlk nav > ul > li._contact._tel > a > ._num > span{
		font-size: 20px;
	}
	header .menuBlk nav > ul > li._contact._tel > a > ._time {
		width: 100%;
		font-size: 14px;
		text-align: center;
		color: black;
		line-height: 1;
		margin: 7px 0 0;
	}
	header .menuBlk nav > ul > li._contact._tel > a > img {
		height: 20px;
		margin: 4px 0 0;
		margin: 0 2px 0 0;
	}
	header .menuBlk nav > ul > li._contact._mail {
		display: grid;
		gap: 15px;
		margin: 15px auto 0;
	}
	header .menuBlk nav > ul > li._contact._mail > a {
		display: grid;
		place-items: center;
		padding: 15px 0;
		color: white;
		background: var(--mainColor);
	}
	header .menuBlk nav > ul > li._contact._mail a._recruitBtn {
		background: var(--mailBtnBg);
	}
	header .menuBlk nav > ul > li._contact._mail > a > img {
		height: 20px;
	}
	header .menuBlk nav > ul > li._contact._mail > a > span {
		padding: 0px 0 0 30px;
		background-image: url(./images/icon_mail01.svg);
		background-repeat: no-repeat;
		background-position: left top 50%;
		background-size: 25px;
	}
	header .menuBlk nav > ul > li._contact._mail > a._recruitBtn > span {
		padding: 0px 0 0 30px;
		background-image: url(./images/icon_recruit01.svg);
		background-repeat: no-repeat;
		background-position: left top 50%;
		background-size: 25px;
	}
	header .mbMenuBlk {
		position: relative;
		height: 100%;
		aspect-ratio: 1/1;
		cursor: pointer;
		background: var(--mainColor);
	}
	/*header .mbMenuBlk::before {
	content: 'MENU';
	color: #363A4D;
	font-size: 10px;
	position: absolute;
	top: 0;
	right: 0;
	right: 14px;
	top: 11px;
}*/
	header .mbMenuBdrBlk, .mbMenuBdrBlk span {
		display: inline-block;
		box-sizing: border-box;
	}
	header .mbMenuBdrBlk {
		position: absolute;
		top: 50%;
		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: 2px;
		background: #fff;
		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, clamp(4.063rem, 0.568rem + 5.45vw, 5rem)) 0 0;
}
@media screen and (max-width: 1024px) {
	main {
		margin: var(--headerH, 55px) 0 0;
	}
}
/*====================================

5. Footer

====================================*/
footer {
	padding: 50px 0 30px;
	background: #fff;
}
footer .inner {}
footer .blk {}
footer .mainBlk {
	justify-content: space-between;
	padding: 0 0 30px;
	gap: clamp(2.5rem, -4.821rem + 11.43vw, 3.75rem);
}
footer .mainLeftBlk {
	flex: 1;
}
footer .mainLogoBlk {}
footer .mainLogoBlk a {}
footer .mainLogoBlk a p {
	font-size: 28px;
    font-weight: 700;
}
footer .mainLogoBlk img {
	height: 45px;
}
footer .mainInfoBlk {
	margin: 16px 0 0;
}
footer .mainInfoBlk p {
	font-size: clamp(0.875rem, 0.143rem + 1.14vw, 1rem);
	line-height: 26px;
}
footer .mainInfoBlk p a {}
footer .mainLinkBlk{
	max-width: 460px;
	margin: 15px 0 0;
}
footer .menuBlk {}
footer .menuBlk > ul {
	gap: 0px;
}
footer .menuBlk > ul > li {
	width: 160px;
}
footer .menuBlk > ul > li:last-child {
	display: grid;
	width: auto;
	gap: 20px;
}
footer .menuBlk > ul > li > a {}
footer .menuBlk > ul > li a {
	font-weight: 700;
}
footer .menuBlk .snslinkBlk > a {
    display: flex;
    align-items: center;
    gap: 8px;
	font-size: 15px;
}
footer .menuBlk > ul > li > ul {
	display: grid;
	gap: 5px;
	margin: 9px 0 0;
	line-height: 21px;
}
footer .menuBlk > ul > li > ul > li {}
footer .menuBlk > ul > li > ul > li > a {
	font-size: 15px;
	font-weight: 400;
}
footer .mapBlk {
	width: 100%;
	height: 324px;
}
footer .mapBlk > iframe{
	width: 100%;
	height: 324px;
}
footer .snsBlk {
	margin: 90px 0 0;
}
footer .snsBlk > ul {
	gap: 20px;
	justify-content: center;
}
footer .snsBlk > ul > li {}
footer .snsBlk > ul > li > a {}
footer .snsBlk > ul > li > a img {
	height: 25px;
}
footer .btmBlk {}
footer .copyrightBlk {
	margin: 30px 0 0;
}
footer .copyrightBlk p {
	text-align: center;
}
footer .recaptchaBlk {
	    padding: 0 0 15px;
}
footer .recaptchaBlk p {
	font-size: 10px;
	text-align: center;
}
@media screen and (max-width: 1024px) {
	footer {
	}
	footer .inner {}
	footer .blk {}
	footer .mainBlk {
		justify-content: center;
		gap: 30px;
		padding: 0 0 30px;
	}
	footer .mainLeftBlk {
		order: 2;
		width: 100%;
	}
	footer .mainLogoBlk {
		text-align: center;
	}
	footer .mainLogoBlk a {}
	footer .mainLogoBlk a p {
    font-size: 22px;
    text-align: center;
}
	footer .mainLogoBlk img {
		height: 40px;
	}
	footer .mainInfoBlk {
		margin: 15px 0 0;
	}
	footer .mainInfoBlk p {
		line-height: 1.6;
		text-align: center;
	}
	footer .mainInfoBlk p a {}
	footer .mainLinkBlk{
		margin: 15px auto 0;
	}
	footer .menuBlk {
		display: grid;
        gap: 20px;
        text-align: center;
		order: 1;
		width: 100%;
		flex: unset;
	}
	footer .menuBlk {
		text-align: center;
	}
	footer .menuBlk > ul {
		justify-content: center;
		margin: auto;
		gap: 15px 30px;
	}
	footer .menuBlk > ul > li {
		text-align: center;
		width: initial;
	}
	footer .menuBlk > ul > li:last-child {
	display: flex;
	}
	footer .menuBlk > ul > li a {}
	footer .menuBlk > ul > li > a {}
	footer .menuBlk > ul > li > ul {
		display: none;
	}
	footer .menuBlk > ul > li > ul > li {}
	footer .menuBlk > ul > li > ul > li > a {}
	footer .topSnsBlk {
		margin: 35px 0 0;
	}
	footer .topSnsBlk > ul {
		gap: 20px;
	}
	footer .topSnsBlk > ul > li {}
	footer .topSnsBlk > ul > li > a {}
	footer .topSnsBlk > ul > li > a img {
		height: 24px;
	}
	footer .snsBlk {
		margin: 50px 0 0;
	}
	footer .copyrightBlk {
		margin: 30px 0 0;
	}
	footer .copyrightBlk p {}
	footer .recaptchaBlk {}
	footer .recaptchaBlk p {}
}
/*====================================

6. Common Style

====================================*/
/*
6.1 Single
====================================*/
.cmn_bgColor {
	background-color: var(--contentsBg);
}
.cmn_outer {
	padding: 90px 0;
}
.cmn_outer2{
	padding: 70px 0 80px;
}
.cmn_inner {
	max-width: 1180px;
	padding: 0 40px;
	margin: auto;
}
.cmn_inner._small {
	max-width: 750px;
	padding: 0;
}
.cmn_link1 {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 220px;
    height: 60px;
    font-size: 16px;
    color: #fff;
    background: var(--mainColor);
    border-radius: 30px;
    font-weight: 700;
}
.cmn_link1:before {
}
@media screen and (min-width: 1025px) {
	.cmn_link1:hover::before {
		right: 0px;
		opacity: 0;
	}
}
/*head*/
.cmn_head1 {
	position: relative;
	font-size: 30px;
	text-align: center;
	font-weight: 700;
}
.cmn_head1::after{
	content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 60px;
    height: 5px;
    background: var(--mainColor);
    border-radius: 15px;
}
.cmn_head1 span{
	display: flex;
	justify-content: center;
	font-size: 16px;
	color: var(--mainColor2);
}

/*title*/
.cmn_title1 {
	font-size: 24px;
}
/*text*/
.cmn_text1 {
	line-height: 1.6;
}
@media screen and (max-width: 1024px) {
	.cmn_outer {
		padding: 60px 0;
	}
	.cmn_outer2{
    padding: 50px 0 60px;
}
	.cmn_inner {
		width: 92%;
		max-width: var(--maxWidth768);
		padding: 0;
	}
	.cmn_link1 {
		width: 100%;
		max-width: 200px;
		height: 50px;
		font-size: 1rem;
	}
	.cmn_link1:before {
	}
	/*head*/
	.cmn_head1 {
		font-size: 22px;
	}
	.cmn_head1::after{bottom: -15px;width: 50px;height: 4px;}
	.cmn_head1 span{
    font-size: 14px;
}
	/*title*/
	.cmn_title1 {
		font-size: 18px;
	}
	/*text*/
	.cmn_text1 {
		font-size: 14px;
		line-height: 1.6;
	}
}
/*
6.2 Section
====================================*/
/* lower top */
.cmn_top {
	height: 300px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#company .cmn_top {
	background-image: url(./images/company_header.webp);
}
#service .cmn_top {
	background-image: url(./images/service_header.webp);
}
#recruit .cmn_top {
	background-image: url(./images/recruit_header.webp);
}
#info .cmn_top,#informationDetail .cmn_top,#contact .cmn_top,#thanks .cmn_top {
	background-image: url(./images/illust_mv.webp);
}
.cmn_top._small {
	height: 150px;
	background: var(--lowerTopBg);
}
.cmn_top .inner {
	height: 100%;
}
.cmn_top .blk {
	height: 100%;
}
.cmn_top .headBlk {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.cmn_top .head {
	font-size: 40px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
}
#info .cmn_top .head,#informationDetail .cmn_top .head,#contact .cmn_top .head,#thanks .cmn_top .head {
	color: var(--mainColor2);
}
.cmn_top .head span {
    display: block;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    margin: 15px 0 0;
}
/* table */
.cmn_table > dl {
}
.cmn_table > dl > div {
	display: flex;
}
.cmn_table > dl > div:last-child {
}
.cmn_table > dl > div > * {
	padding: 25px 0px;
	line-height: 26px;
	font-size: 14px;
}
.cmn_table > dl > div > dt {
	text-align: center;
    width: 210px;
	font-size: 18px;
	font-weight: 700;
    border-bottom: 1px solid var(--mainColor);
}
.cmn_table > dl > div > dd {
	flex: 1;
	font-size: 16px;
	border-bottom: 1px solid #DDD;
	padding: 25px 40px;
}
.cmn_table > dl > div > dd a {
	color: var(--linkTextColor);
}
.cmn_table > dl > div > dd a:not([href^="tel"]) {
	text-decoration: underline;
}
.cmn_table > dl > div > dd a[href^="tel"] {
	color: inherit;
}
.cmn_table > dl > div > dd > ul {}
.cmn_table > dl > div > dd > ul > li {
	position: relative;
	padding: 0 0 0 15px;
}
.cmn_table > dl > div > dd > ul > li::before {
    content: '・';
    position: absolute;
	left: 0; 
}
@media screen and (max-width: 1024px) {
	.cmn_top {
		height: 150px;
	}
	.cmn_top._small {
		height: 100px;
	}
	.cmn_top .inner {}
	.cmn_top .blk {}
	.cmn_top .headBlk {}
	.cmn_top .head {
		font-size: 24px;
		line-height: 1;
	}
	.cmn_top .head span {
		font-size: 14px;
		margin: 8px 0 0;
	}
	/* table */
	.cmn_table > dl {
	}
	.cmn_table > dl > div {
	flex-wrap: wrap;
	border-bottom: 1px solid var(--mainColor);
	}
	.cmn_table > dl > div:last-child {
	}
	.cmn_table > dl > div > * {
		padding: 15px 15px;
		line-height: 24px;
		font-size: 14px;
	}
	.cmn_table > dl > div > dt {
		width: 100%;
		padding: 15px 15px 5px;
		font-size: 15px;
		text-align: start;
		border: initial;
	}
	.cmn_table > dl > div > dd {
		flex: unset;
		width: 100%;
		padding: 0 15px 15px;
		font-size: 14px;
		border: initial;
	}
	.cmn_table > dl > div > dd a {}
	.cmn_table > dl > div > dd a[href^="tel"] {}
	.cmn_table > dl > div > dd > ul {}
	.cmn_table > dl > div > dd > ul > li {}
}
/* anker link */
.cmn_ankerMenu{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}
.cmn_ankerLink{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 250px;
	height: 60px;
	font-weight: 700;
	color: var(--mainColor);
	background: #fff;
	border: 1px solid var(--mainColor);
	border-radius: 30px;
}
.cmn_ankerLink::before{
	content: '';
	position: absolute;
	right: 25px;
	display: inline-block;
	border-style: solid;
	border-width: 10px 7px 0;
	border-color: var(--mainColor) transparent transparent;
}
@media screen and (max-width: 1024px) {
	.cmn_ankerMenu{
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 10px;
	}
	.cmn_ankerLink{
		font-size: 16px;
	}
	.cmn_ankerLink::before{}
}
/*====================================

7. Module

====================================*/
.mod_modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999;
	width: 100%;
	height: 100dvh;
	background-color: rgb(51, 51, 51, 65%);
	transition: all .5s;
	opacity: 0;
	visibility: hidden;
}
.mod_modal._open {
	opacity: 1;
	visibility: visible;
}
.mod_modal .layer {
	width: 100%;
	height: 100%;
}
.mod_modal .inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: calc(100% - 80px);
	max-height: 85%;
	min-height: 400px;
	padding: 90px 60px 60px;
	border-radius: 10px;
	background: #fff;
}
.mod_modal .blk {
	overflow-y: auto;
	height: 100%;
}
.mod_modal .closeBtn {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid #989EA7;
	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: 45%;
	height: 2px;
	background: #989EA7;
	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: #989EA7;
		opacity: 1;
	}
	.mod_modal .closeBtn:hover::before, .mod_modal .closeBtn:hover::after {
		background: #fff;
	}
}
.mod_contact {
	padding: 75px 0 80px;
}
.mod_contact .inner {}
.mod_contact .blk {}
.mod_contact .headBlk {}
.mod_contact .head {
	border: none;
}
.mod_contact .headTxt {
	text-align: center;
    margin: 30px 0 0;
}
.mod_contact .mainBlk {
	justify-content: center;
    gap: 25px;
    margin: 30px 0 0;
}
.mod_contact .mainLinkBlk {
	justify-content: center;
    gap: 25px;
    margin: 40px 0 0;
}
.mod_contact .mainLink {}
.mod_contact .mainCttBlk {
	justify-content: center;
    align-items: center;
    width: 400px;
    height: 90px;
    background: var(--mainColor2);
    border-radius: 45px;
}
.mod_contact .mainCttBlk._cttMl {
	background: var(--mainColor);
}
.mod_contact .mainCttImgBlk {}
.mod_contact .mainCttTxtBlk {
	color: #fff;
}
.mod_contact .mainCttTxtBlk{
	padding: 0 15px 0 70px;
    background-image: url(./images/modCtt_icon01.webp);
    background-repeat: no-repeat;
    background-position: left top 40%;
    background-size: 56px;
}
.mod_contact ._cttMl  .mainCttTxtBlk {
    background-image: url(./images/modCtt_icon02.webp);
}
.mod_contact .mainCttTxt {
	font-size: 32px;
    font-weight: 700;
    line-height: 1;
}
.mod_contact ._cttMl .mainCttTxt {
	font-size: 22px;
	line-height: 3;
}
.mod_contact .mainCttTime {
	font-size: 15px;
}
.mod_float{
	position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 100;
}
.mod_float .linkBlk{
	display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    box-shadow: rgb(0 0 0 / 10%) 0px 2px 3px;
    background-color: #ffcf30;
}
.mod_float .linkBlk::before{
	content: "";
	position: absolute;
	bottom: -3px;
	right: -5px;
	border: 15px solid transparent;
	border-left: 18px solid #ffcf30;
	z-index: 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.mod_float .linkBlkTxt{
	font-size: 18px;
    font-weight: 700;
    line-height: 23px;
    text-align: center;
    padding: 30px 0 0;
    background-image: url(./images/icon_float.svg);
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: top;
}
.mod_float .linkBlkTxt > span{
	font-size: 15px;
}
@media screen and (max-width: 1024px) {
	.mod_modal {}
	.mod_modal._open {}
	.mod_modal .layer {
	}
	.mod_modal .inner {
		width: 92%;
		min-height: 45%;
		max-height: 85%;
		padding: 60px 15px 40px;
	}
	.mod_modal .blk {
	}
	.mod_modal .closeBtn {
		position: absolute;
		top: 15px;
		right: 15px;
		width: 30px;
		height: 30px;
		border-radius: 50%;
		border: 2px solid #989EA7;
		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: 45%;
		height: 2px;
		background: #989EA7;
		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);
	}
	.mod_modal .mainBlk {}
	.mod_contact {
    	padding: 40px 0;
	}
	.mod_contact .inner {}
	.mod_contact .blk {}
	.mod_contact .headBlk {}
	.mod_contact .head {}
	.mod_contact .headTxt {
    	margin: 20px 0 0;
	}
	.mod_contact .mainBlk {
    	gap: 20px;
    	margin: 20px 0 0;
	}
	.mod_contact .mainLinkBlk {
    	gap: 10px;
		margin: 30px 0 0;
	}
	.mod_contact .mainLink {}
	.mod_contact .mainCttBlk {
    	width: 100%;
    	height: 80px;
    	max-width: 400px;
	}
	.mod_contact .mainCttBlk._cttMl {
    	height: 75px;
	}
	.mod_contact .mainCttImgBlk {}
	.mod_contact .mainCttTxtBlk {
    	padding: 0 15px 0 55px;
    	background-size: 45px;
	}
	.mod_contact .mainCttTxtBlk{
	}
	.mod_contact ._cttMl  .mainCttTxtBlk {
    	padding: 0 15px 0 50px;
    	background-size: 45px;
	}
	.mod_contact .mainCttTxt {
    	font-size: 28px;
	}
	.mod_contact ._cttMl .mainCttTxt {
    	font-size: 20px;
	}
	.mod_contact .mainCttTime {
    	font-size: 14px;
	}
	.mod_float{
		right: 10px;
        bottom: 10px;
	}
	.mod_float .linkBlk{
		width: 120px;
		height: 120px;
	}
	.mod_float .linkBlkTxt{
		font-size: 16px;
		line-height: 18px;
		padding: 28px 0 0;
		background-size: 25px;
	}
	.mod_float .linkBlkTxt > span{
		font-size: 13px;
	}
}
/*====================================

8. Page

====================================*/
/*
Top
====================================*/
/*common start*/
.top_cmn_head {
	font-size: 40px;
	text-align: center;
	font-weight: 700;
}
.top_cmn_head span {}
.top_cmn_colorSpan{
	color: var(--mainColor2)
}
/*common end*/
.top_mv {
	height: calc(100vh - var(--headerH));
	background-image: url(./images/top_mv_bg01.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.top_mv .inner {
	height: 100%;
}
.top_mv .blk {
	position: relative;
	height: 100%;
}
.top_mv .catchBlk {
	display: grid;
	place-items: center;
	height: 100%;
}
.top_mv .catch {
	font-weight: 700;
	font-size: 60px;
}
/*slider*/
.top_mv._slider {
	background: initial;
}
.top_mv._slider .catchBlk {
	position: relative;
	z-index: 1;
	place-items: initial;
	justify-content: center;
	align-items: center;
	pointer-events: none;
}
.top_mv._slider .catch {
	font-size: 49px;
	color: var(--mainColor);
	line-height: 71px;
	display: flex;
    flex-direction: column;
    gap: 10px;
}
.top_mv._slider .catch .catchLine{
	background: #fff;
	padding: 4px 20px;
	border-radius: 12px;
}
.top_mv._slider .catch .catchLine span{
	color: var(--mainColor2);
}
.top_mv .slideBlk {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.top_mv .slideBlk img {}
.top_overview {}
.top_overview .inner {}
.top_overview .blk {}
.top_overview .headBlk {}
.top_overview .head {
	text-align: center;
}
.top_overview .mainBlk {
	margin: 35px 0 0;
}
.top_overview .mainDesc {
	display: table;
	margin: auto;
}
.top_common {}
.top_common .inner {}
.top_common .blk {}
.top_common .headBlk {}
.top_common .head {}
.top_common .mainBlk {
	gap: clamp(2.5rem, -2.138rem + 7.25vw, 3.75rem);
	margin: 60px 0 0;
}
.top_common .mainTextBlk {
	flex: 1;
}
.top_common .mainTextHead {}
.top_common .mainTextDesc {
	margin: 30px 0 0;
}
.top_common .mainLinkBlk {
	margin: 35px 0 0;
}
.top_common .mainLinkBlk a {}
.top_common .mainImgWrap {
	position: relative;
	width: 50%;
}
.top_common .mainImgBlk {
	position: relative;
	top: 0;
	left: 0;
	width: calc(var(--vw)* 50);
}
.top_common .mainImgBlk img {
	width: 100%;
	aspect-ratio: 16 / 10;
	min-height: 460px;
}
/*reverse*/
.top_common .mainBlk._reverse {
	flex-flow: row-reverse;
}
.top_common .mainBlk._reverse .mainImgWrap {
	transform: scale(-1, 1);
}
.top_common .mainBlk._reverse .mainImgBlk {
	left: initial;
	right: 0;
	transform: scale(-1, 1);
}
.top_common .mainBlk._reverse .mainImgBlk img {

}
/*single*/
.top_common._single .mainHead {
	text-align: center;
}
.top_common._single .mainImgBlk {
	width: 100%;
	margin: 35px auto 0;
}
.top_common._single .mainImgBlk img {min-height: initial;}
.top_common._single .mainLinkBlk {
	text-align: center;
}
.top_info {
	position: relative;
	padding: 60px 0;
}
.top_info .inner {}
.top_info .blk {
	gap: 190px;
	gap: clamp(6.25rem, -26.696rem + 51.43vw, 11.875rem);
}
.top_info .headBlk {}
.top_info .head {
	text-align: left;
}
.top_info .leftBlk{
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.top_info .mainBlk {
	flex: 1;
}
.top_info .mainBlk article {
	display: flex;
	gap: 30px;
	padding: 25px 0;
	border-top: solid 1px #9b9b9b;
}
.top_info .mainBlk article:last-child {
	border-bottom: solid 1px #9b9b9b;
}
.top_info .mainImgBlk{
    width: 150px;
}
.top_info .mainImgBlk img{}
.top_info .mainBlk a {
	justify-content: start;
	align-items: center;
	flex: 1;
}
.top_info .mainDate {
	display: inline-block;
	font-weight: 700;
	color: #575757;
}
.top_info .mainCat {
    display: inline-block;
    text-align: center;
    min-width: 85px;
    font-size: 14px;
    padding: 3px 14px;
    color: #fff;
    background: var(--mainColor);
    border-radius: 15px;
    margin: 0 0 0 15px;
}
.top_info .mainTitle {
	width: 100%;
}
.top_info .linkBlk {
}
.top_info .linkBlk a {
	font-weight: 700;
	position: relative;
}
.top_info .linkBlk a:before{
	content: '';
	position: absolute;
    right: -48px;
    top: 50%;
    transform: translate(0%, -50%);
    width: 32px;
    height: 32px;
    background-color: var(--mainColor);
    background-image: url(./images/topInfo_arrow.webp);
    background-repeat: no-repeat;
    background-position: left 50% top 50%;
    background-size: 20px;
    border-radius: 50px;
}
.top_info .illustBlk {
	position: absolute;
	bottom: 0;
    width: 250px;
    left: 40px;
}
.top_info .illustBlk._right{
	width: 120px;
    right: 40px;
    left: initial;
}
.top_company{}
.top_company .inner{}
.top_company .blk{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 70px;
}
.top_company .leftBlk{
	width: 480px;
}
.top_company .headBlk{}
.top_company .headBlk .head{
	line-height: 58px;
	text-align: left;
}
.top_company .mainTextBlk{
	margin: 30px 0 0;
}
.top_company .mainTextDesc{
}
.top_company .mainLinkBlk{
	margin: 30px 0 0 0;
}
.top_company .mainImgWrap{
	flex: 1;
}
.top_company .mainImgBlk{
	max-width: 550px;
}
.top_service {
	position: relative;
	margin: 110px 0 0;
	padding: 0 0 100px;
}
.top_service .decoBlk {
   position: absolute;
   bottom: 100%;
}
.top_service .inner{}
.top_service .blk{}
.top_service .headBlk{}
.top_service .headBlk .head{}
.top_service .mainBlk{
	margin: 60px 0 0;
	gap: 60px
}
.top_service .mainImgBlk{
	position: relative;
}
.top_service .mainImgBlk img{
	border-radius: 20px;
}
.top_service .mainImgBtn{
	position: absolute;
	display: flex;
	justify-content: center;
    align-items: center;
    bottom: 0;
    right: 0;
    width: 70px;
    height: 70px;
    background: var(--mainColor);
    border-radius: 24px 0 20px 0;
}
.top_service .mainImgBtn::after{
	content: '';
    width: 40px;
    height: 40px;
    background-color: var(--mainColor);
    background-image: url(./images/topSvc_arrow.webp);
    background-repeat: no-repeat;
    background-position: left 50% top 50%;
    background-size: 40px;
    border-radius: 50px;
}
.top_service .mainItemBlk{
	width: calc((100% - 60px) / 2);
}
.top_service .mainTextHead {
	font-size: 30px;
    font-weight: 700;
    margin: 20px 0 0;
}
.top_service .mainTextDesc {
	margin: 10px 0 0;
}
.top_service .otherBlk{
    margin: 60px 0 0;
    padding: 40px 90px 55px;
    background: #fff;
    border-radius: 20px;
}
.top_service .otherHead{
	text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--mainColor2);
}
.top_service .otherFlexBlk{
	margin: 30px 0 0;
	gap: 60px;
}
.top_service .otherItemBlk{
    width: calc((100% - 60px) / 2);
}
.top_service .otherImgBlk{}
.top_service .otherImgBlk img{
	border-radius: 12px;
}
.top_service .otherTextHead{
	font-size: 22px;
    font-weight: 700;
    margin: 20px 0 0;
}
.top_service .otherTextDesc{
	margin: 10px 0 0;
}
.top_service .mainLinkBlk{
	text-align: center;
    margin: 60px 0 0;
}
.top_service .illustBlk{
	position: absolute;
	bottom: 0;
	left: 40px;
	width: 230px;
}
.top_service .illustBlk._right{
	left: initial;
	right: 40px;
	width: 150px;
}
.top_strenghs{}
.top_strenghs .cmn_outer{
	padding: 90px 0 100px;
}
.top_strenghs .inner{}
.top_strenghs .blk{}
.top_strenghs .headBlk{}
.top_strenghs .head{}
.top_strenghs .mainBlk{
	display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 60px 0 0;
}
.top_strenghs .mainItemBlk {
	display: flex;
    gap: 30px;
    width: calc((100% - 40px) / 2);
    padding: 40px;
    background: var(--contentsBg);
    border-radius: 20px;
}
.top_strenghs .mainItemImg {}
.top_strenghs .mainItemTxtBlk {}
.top_strenghs .mainTextHead {
	font-size: 20px;
    font-weight: 700;
    color: var(--mainColor2);
}
.top_strenghs .mainTextDesc {
	    margin: 10px 0 0;
}
.top_recruit {
	padding: 90px 0 100px;
	background-color: var(--mainColor);
	border-radius: 0 90px 0 0;
}
.top_recruit .inner {}
.top_recruit .blk {
	align-items: center;
	gap: 60px;
}
.top_recruit .leftBlk {
	position: relative;
    width: 56%;
    transform: scale(-1, 1);
}
.top_recruit .leftImgBlk {}
.top_recruit .LeftImgItemBlk {
	position: relative;
    top: 0;
	left: initial;
    right: 0;
    width: calc(var(--vw) * 56);
    transform: scale(-1, 1);
}
.top_recruit .leftImgFlexBlk {
}
.top_recruit .LeftImgFlexItemBlk {}
.top_recruit .top_recruit .mainImgBlk {}
.top_recruit .mainBlk {
	flex: 1;
	color: #fff;
}
.top_recruit .headBlk {}
.top_recruit .head {
	text-align: left;
}
.top_recruit .top_cmn_head {}
.top_recruit .mainText {
	font-weight: 700;
    margin: clamp(1.25rem, -2.411rem + 5.71vw, 1.875rem) 0 0;
}
.top_recruit .mainSubText {
	margin: 20px 0 0;
}
.top_recruit .mainLinkBlk {
	margin: 30px 0 0;
}
.top_recruit .mainLinkBlk a {
	color: var(--mainColor);
	background: #fff;
}
@media screen and (max-width: 1024px) {
	/*common start*/
	.top_cmn_head {
		font-size: 24px;
	}
	.top_cmn_head span {
	}
	/*common end*/
	.top_mv {
		width: 100%;
		aspect-ratio: 16/ 10;
		height: calc(100vh - var(--headerH));
	}
	.top_mv .inner {}
	.top_mv .blk {}
	.top_mv .catchlk {}
	.top_mv .catch {
		font-size: 28px;
		line-height: 38px;
	}
	/*slider*/
	.top_mv._slider {
	}
	.top_mv._slider .catchBlk {
		width: 100%;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		padding: initial;
	}
	.top_mv._slider .catch {
		font-size: 22px;
		font-size: clamp(1.375rem, 0.906rem + 2vw, 2.188rem);
		line-height: 1.7;
	}
	.top_mv .slideBlk {}
	.top_mv .slideBlk img {}
	.top_company{
    padding: 60px 0 0;
}
	.top_company .inner{}
	.top_company .blk{
    flex-flow: column;
    gap: 35px;
}
	.top_company .leftBlk{
    width: 100%;
}
	.top_company .headBlk{}
	.top_company .headBlk .head{line-height: 1.6;}
	.top_company .mainTextBlk{
    margin: 20px 0 0;
}
	.top_company .mainTextDesc{}
	.top_company .mainLinkBlk{
    margin: 25px 0 0;
    text-align: center;
}
	.top_company .mainImgWrap{
    flex: initial;
}
	.top_company .mainImgBlk{}
	.top_service {
    margin: 80px 0 0;
    padding: 0 0 95px;
}
	.top_service .decoBlk {}
	.top_service .inner{}
	.top_service .blk{}
	.top_service .headBlk{
    padding: 25px 0 0;
}
	.top_service .headBlk .head{}
	.top_service .mainBlk{
    flex-flow: column;
    gap: 35px;
    margin: 30px 0 0;
}
	.top_service .mainImgBlk{}
	.top_service .mainImgBlk img{}
	.top_service .mainImgBtn{
    width: 55px;
    height: 55px;
}
	.top_service .mainImgBtn::after{
    width: 30px;
    height: 30px;
    background-size: 30px;
}
	.top_service .mainItemBlk{
    width: 100%;
}
	.top_service .mainTextHead {
    font-size: 18px;
    margin: 10px 0 0;
}
	.top_service .mainTextDesc {
    margin: 5px 0 0;
}
	.top_service .otherBlk{
    margin: 40px 0 0;
    padding: 25px 15px;
}
	.top_service .otherHead{
    font-size: 22px;
}
	.top_service .otherFlexBlk{
    flex-flow: column;
    margin: 20px 0 0;
    gap: 25px;
}
	.top_service .otherItemBlk{
    width: 100%;
}
	.top_service .otherImgBlk{}
	.top_service .otherImgBlk img{}
	.top_service .otherTextHead{
    font-size: 18px;
    margin: 10px 0 0;
}
	.top_service .otherTextDesc{
    margin: 5px 0 0;
}
	.top_service .mainLinkBlk{
    margin: 30px 0 0;
}
	.top_service .illustBlk{
    left: 0px;
    width: 130px;
}
	.top_service .illustBlk._right{
    right: 0;
    width: 100px;
}
	.top_strenghs{
    padding: 70px 0 60px;
}
	.top_strenghs .cmn_outer{}
	.top_strenghs .inner{}
	.top_strenghs .blk{}
	.top_strenghs .headBlk{}
	.top_strenghs .head{}
	.top_strenghs .mainBlk{
    flex-flow: column;
    gap: 15px;
    margin: 30px 0 0;
}
	.top_strenghs .mainItemBlk {
    gap: 10px;
    width: 100%;
    padding: 20px 15px;
    align-items: center;
}
	.top_strenghs .mainItemImg {
    width: 80px;
}
	.top_strenghs .mainItemTxtBlk {
    flex: 1;
}
	.top_strenghs .mainTextHead {
    font-size: 17px;
}
	.top_strenghs .mainTextDesc {
    margin: 5px 0 0;
}
	.top_recruit {
    padding: 40px 0 60px;
    border-radius: 0 60px 0 0;
}
	.top_recruit .inner {}
	.top_recruit .blk {
    flex-flow: column-reverse;
    gap: 40px;
}
	.top_recruit .leftBlk {
    width: 100%;
}
	.top_recruit .leftImgBlk {}
	.top_recruit .LeftImgItemBlk {width: calc(var(--vw) * 100);}
	.top_recruit .leftImgFlexBlk {}
	.top_recruit .LeftImgFlexItemBlk {}
	.top_recruit .top_recruit .mainImgBlk {}
	.top_recruit .mainBlk {
    flex: initial;
}
	.top_recruit .headBlk {}
	.top_recruit .head {}
	.top_recruit .top_cmn_head {}
	.top_recruit .mainText {
    margin: 10px 0 0;
    font-size: 17px;
}
	.top_recruit .mainSubText {
    margin: 15px 0 0;
}
	.top_recruit .mainLinkBlk {
    text-align: center;
    margin: 20px 0 0;
}
	.top_recruit .mainLinkBlk a {}
	.top_common {}
	.top_common .inner {}
	.top_common .blk {}
	.top_common .headBlk {}
	.top_common .head {}
	.top_common .mainBlk {
		gap: 30px;
		margin: 30px 0 0;
		flex-flow: wrap-reverse;
	}
	.top_common .mainImgWrap {
		width: 100%;
		transform: initial;
	}
	.top_common .mainTextBlk {
		flex: unset;
	}
	.top_common .mainTextHead {}
	.top_common .mainTextDesc {
		margin: 20px 0 0;
	}
	.top_common .mainLinkBlk {
		margin: 30px 0 0;
		text-align: center;
	}
	.top_common .mainLinkBlk a {}
	.top_common .mainImgBlk {
		position: unset;
		width: 100%;
		aspect-ratio: unset;
	}

	.top_common .mainImgBlk img {
		width: 100%;
		aspect-ratio: 16/10;
		min-height: unset;
	}
	/*reverse*/
	.top_common .mainBlk._reverse {
		flex-flow: wrap-reverse;
	}
	.top_common .mainBlk._reverse .mainImgBlk {
		transform: unset;
	}
	/*single*/
	.top_common._single .mainHead {}
	.top_common._single .mainLinkBlk {	}
	.top_common._single .mainImgBlk {
		margin: 30px 0 0;
	}
	.top_common._single .mainImgBlk img {
		height: auto;
	}
	.top_info {
    padding: 40px 0 75px;
}
	.top_info .illustBlk{
    left: 10px;
    width: 135px;
}
	.top_info .illustBlk._right{
    width: 70px;
    right: 5px;
}
	.top_info .inner {}
	.top_info .blk {
    flex-flow: column;
    gap: 20px;
}
	.top_info .leftBlk{
    flex-flow: initial;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
	.top_info .headBlk {}
	.top_info .head {}
	.top_info .mainBlk {
	flex: initial;
	width: 100%;
	}
	.top_info .mainBlk article {gap: 15px;align-items: center;padding: 20px 0;}
	.top_info .mainBlk article:last-child {}
	.top_info .mainImgBlk{
    width: 140px;
}
	.top_info .mainBlk a {
		gap: 10px 0;
	}
	.top_info .mainDate {
		font-size: 14px;
	}
	.top_info .mainCat {
		min-width: 80px;
		margin: 0 0 0 10px;
		padding: 2px 5px;
		font-size: 12px;
	}
	.top_info .mainTitle {
		flex: unset;
		width: 100%;
		margin: 0;
	}
	.top_info .linkBlk {
	}
	.top_info .linkBlk a {
    display: flex;
    align-items: center;
    padding: 0 30px 0 0;
    height: 100%;
}
	.top_info .linkBlk a:before{
    right: 0;
    width: 25px;
    height: 25px;
    background-size: 17px;
}
}
	
/*
Company
====================================*/
.company_message {}
.company_message .inner {}
.company_message .blk {}
.company_message .headBlk {}
.company_message .head {}
.company_message .mainBlk {
	margin: 65px 0 0;
	gap: 40px;
}
.company_message .mainImgBlk {
	flex: 1;
}
.company_message .mainImgBlk img {
	width: 100%;
	border-radius: 16px;
}
.company_message .mainTextBlk {
	width: calc(50% - 10px);
	margin: 15px 0 0;
}
.company_message .mainTextHead {}
.company_message .mainTextDesc {
}
.company_message .mainTextName {
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 10px;
	font-size: 18px;
	margin: 20px auto 0;
	font-weight: 600;
}
.company_message .mainTextName span {
	font-size: 14px;
}
.company_philosophy {}
.company_philosophy .cmn_outer {}
.company_philosophy .inner {}
.company_philosophy .blk {}
.company_philosophy .headBlk {}
.company_philosophy .head {}
.company_philosophy .mainBlk {
	padding: 40px 0;
    margin: 65px 0 0;
    background: #fff;
    border-radius: 20px;
}
.company_philosophy .mainHead {
	font-size: 24px;
    font-weight: 700;
    text-align: center;
}
.company_philosophy .mainDesc {
	text-align: center;
    margin: 20px 0 0;
}
.company_outline {}
.company_outline .inner {
    max-width: 880px;
}
.company_outline .blk {}
.company_outline .headBlk {}
.company_outline .head {}
.company_outline .imgBlk {
	margin: 40px 0 0;
}
.company_outline .imgBlk img {
	width: 100%;
}
.company_outline .mainBlk {
	margin: 65px 0 0;
}
.company_history {
	padding: 70px 0 185px;
	background-image: url(./images/company_history_bg.webp);
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: 100%;
}
.company_history .inner {
    max-width: 880px;
	bottom:0;
    /* position: relative; */
    /* padding: 70px 0 185px; */
    /* background-image: url(./images/company_history_bg.webp); */
    /* background-repeat: no-repeat; */
    /* background-position: center; */
}
.company_history .blk {}
.company_history .headBlk {}
.company_history .head {}
.company_history .mainBlk {
	margin: 65px 0 0;
}
.company_history .imgBlk {
	margin: 90px 0 0;
}
.company_access {
	padding: 90px 0 140px;
}
.company_access .inner {
    max-width: 1030px;
}
.company_access .blk {}
.company_access .headBlk {}
.company_access .head {}
.company_access .mainBlk {
	align-items: flex-end;
    gap: 60px;
	margin: 65px 0 0;
}
.company_access .leftBlk {}
.company_access .leftHeadBlk {
	font-size: 20px;
    font-weight: 700;
}
.company_access .leftDescBlk {
	line-height: 24px;
    margin: 15px 0 0;
}
.company_access .leftImgBlk {
	width: 340px;
    margin: 15px 0 0;
}
.company_access .leftImgBlk img {
    border-radius: 10px;
}
.company_access .mapBlk {
	flex: 1;
}
.company_access .mapBlk iframe{
	height: 385px;
    border-radius: 10px;
}
.company_iso {}
.company_iso .inner {}
.company_iso .blk {}
.company_iso .headBlk {}
.company_iso .head {}
.company_iso .mainBlk {
	padding: 50px;
    margin: 60px 0 0;
    background: #fff;
    border-radius: 20px;
}
.company_iso .mainDesc {
	text-align: center;
}
.company_iso .mainFlexBlk {
	gap: 5px;
    margin: 30px 0 0;
}
.company_iso .mainImgBlk {
	width: calc((100% - (5px * 2)) / 3);
}
.company_iso .mainImgTxt {
	font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin: 10px 0 0;
}
.company_certificate {}
.company_certificate .inner {}
.company_certificate .blk {}
.company_certificate .headBlk {}
.company_certificate .head {}
.company_certificate .tabBlk {
	position: relative;
    margin: 120px 0 0;
}
.company_certificate .tabBtnBlk {
	position: absolute;
	bottom: calc(100% + -1px);
}
.company_certificate .tabBtnBlk ul{
	display: flex;
    gap: 10px;
}
.company_certificate .tabBtnBlk ul > li{
	display: flex;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 55px;
    font-size: 18px;
    font-weight: 700;
    color: var(--mainColor);
    border: 1px solid;
    border-bottom: transparent;
    border-radius: 15px 15px 0 0;
	cursor: pointer;
}
.company_certificate .tabBtnBlk ul > li._active{
	background-color: var(--contentsBg);
}
.company_certificate .panelFlexBlk {
	padding: 45px 50px;
    background: var(--contentsBg);
    border: 1px solid var(--mainColor);
    border-radius: 0 10px 10px 10px;
}
.company_certificate .panelBlk {}
.company_certificate .panelCtnBlk {
	align-items: stretch;
	justify-content: initial;
	gap: 20px;
}
.company_certificate .panelItemBlk {
	width: calc((100% - (20px * 2)) / 3);
    padding: 20px;
    background: #fff;
    border: 1px solid var(--mainColor);
    border-radius: 10px;
}
.company_certificate .panelItemImgBlk {
}
.company_certificate .panelItemTxtBlk {
	text-align: center;
    font-weight: 700;
	margin: 15px 0 0;
}
@media screen and (max-width: 1024px) {
	.company_message {
    padding: 40px 0 50px;
}
	.company_message .inner {}
	.company_message .blk {}
	.company_message .headBlk {}
	.company_message .head {}
	.company_message .mainBlk {
    margin: 45px 0 0;
    gap: 20px;
    flex-flow: column;
}
	.company_message .mainImgBlk {}
	.company_message .mainImgBlk img {}
	.company_message .mainTextBlk {
    width: 100%;
    margin: initial;
}
	.company_message .mainTextHead {}
	.company_message .mainTextDesc {}
	.company_message .mainTextName {
    margin: 15px 0 0;
    font-size: 17px;
}
	.company_message .mainTextName span {
    font-size: 13px;
    padding: 2px 0 0;
}
	.company_philosophy {
    padding: 50px 0;
}
	.company_philosophy .cmn_outer {}
	.company_philosophy .inner {}
	.company_philosophy .blk {}
	.company_philosophy .headBlk {}
	.company_philosophy .head {}
	.company_philosophy .mainBlk {
    margin: 55px 0 0;
    padding: 25px 15px;
}
	.company_philosophy .mainHead {
    font-size: 18px;
}
	.company_philosophy .mainDesc {
    margin: 15px 0 0;
}
	.company_outline {}
	.company_outline .inner {}
	.company_outline .blk {}
	.company_outline .headBlk {}
	.company_outline .head {}
	.company_outline .imgBlk {}
	.company_outline .imgBlk img {}
	.company_outline .mainBlk {
    margin: 40px 0 0;
}
	.company_history {
    padding: 50px 0 80px;
}
	.company_history .inner {}
	.company_history .blk {}
	.company_history .headBlk {}
	.company_history .head {}
	.company_history .mainBlk {
    margin: 50px 0 0;
}
	.company_history .imgBlk {}
	.company_access {
    padding: 60px 0 70px;
}
	.company_access .inner {}
	.company_access .blk {}
	.company_access .headBlk {}
	.company_access .head {}
	.company_access .mainBlk {
    margin: 55px 0 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
	.company_access .leftBlk {}
	.company_access .leftHeadBlk {
    font-size: 16px;
}
	.company_access .leftDescBlk {
    margin: 5px 0 0;
}
	.company_access .leftImgBlk {
}
	.company_access .leftImgBlk img {}
	.company_access .mapBlk {
    min-width: 340px;
}
	.company_access .mapBlk iframe{}
	.company_iso {
    padding: 50px 0;
}
	.company_iso .inner {}
	.company_iso .blk {}
	.company_iso .headBlk {}
	.company_iso .head {}
	.company_iso .mainBlk {
    padding: 25px 15px 35px;
    margin: 50px 0 0;
}
	.company_iso .mainDesc {
    text-align: start;
}
	.company_iso .mainFlexBlk {
    flex-flow: column;
    align-items: center;
    gap: 25px;
}
	.company_iso .mainImgBlk {
    width: 100%;
    max-width: 300px;
}
	.company_iso .mainImgTxt {
    margin: 5px 0 0;
    font-size: 14px;
}
	.company_certificate {}
	.company_certificate .inner {}
	.company_certificate .blk {}
	.company_certificate .headBlk {}
	.company_certificate .head {}
	.company_certificate .tabBlk {
    margin: 60px 0 0;
}
	.company_certificate .tabBtnBlk {
    position: initial;
    bottom: initial;
}
	.company_certificate .tabBtnBlk ul{
    flex-wrap: wrap;
    justify-content: center;
}
	.company_certificate .tabBtnBlk ul > li{
    width: 200px;
    font-size: 14px;
    border-radius: 10px;
    border-bottom: initial;
    border: 1px solid;
}
	.company_certificate .tabBtnBlk ul > li._active{}
	.company_certificate .panelFlexBlk {
    padding: 20px 15px 25px;
    margin: 25px 0 0;
}
	.company_certificate .panelBlk {}
	.company_certificate .panelCtnBlk {
    gap: 10px;
}
	.company_certificate .panelItemBlk {
    width: 100%;
    padding: 15px;
}
	.company_certificate .panelItemImgBlk {
    max-width: 400px;
    margin: 0 auto;
}
	.company_certificate .panelItemTxtBlk {
    margin: 5px 0 0;
}
}
/*
Service
====================================*/
.service_outline {
	padding: 70px 0 60px;
}
.service_outline .inner {}
.service_outline .blk {}
.service_outline .headBlk {}
.service_outline .head {
	font-size: 32px;
    font-weight: 700;
    text-align: center;
}
.service_outline .head span{
	color: var(--mainColor2);
}
.service_outline .headTxt {
	text-align: center;
	margin: 30px 0 0;
}
.service_outline .cmn_ankerMenu {
    margin: 50px 0 0;
}
.service_cmn {}
.service_cmn .inner {}
.service_cmn .blk {}
.service_cmn .headBlk {}
.service_cmn .head {}
.service_cmn .headTxt {
	text-align: center;
	margin: 55px 0 0;
}
.service_cmn .mainBlk {
	align-items: center;
	gap: 60px;
	margin: 65px 0 0;
}
.service_cmn .mainLeftBlk {
	width: 48%;
	transform: scale(-1, 1);
}
.service_cmn .mainImgBlk {
	position: relative;
	top: 0;
	right: 0;
	width: calc(var(--vw) * 49);
	transform: scale(-1, 1);
}
.service_cmn .mainImgBlk img{
	min-height: 445px;
	border-radius: 0 14px 14px 0;
}
.service_cmn .mainRightBlk {
	flex: 1;
}
.service_cmn .mainTextBlk {}
.service_cmn .mainTextDesc {}
.service_cmn .mainExBlk {
	padding: 20px 30px;
    margin: 20px 0 0;
    background: #fff;
    border-radius: 14px;
}
.service_cmn .mainExBlk._exCivil{
    background: var(--contentsBg);
}
.service_cmn .mainExHead {
	font-size: 18px;
    font-weight: 700;
}
.service_cmn .mainExList {
	display: grid;
    gap: 6px;
    margin: 10px 0 0;
}
.service_cmn .mainExList > li{
	position: relative;
	padding: 0 0 0 20px;
}
.service_cmn .mainExList > li::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0, -50%);
	width: 8px;
	height: 8px;
	background: var(--mainColor);
	border-radius: 4px;
}
.service_cmn .workBlk {
	margin: 60px 0 0;
}
.service_cmn .workBlk._service2 {
	margin: 40px 0 0;
}
.service_cmn .workHeadBlk {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    background: var(--mainColor);
    border-radius: 8px;
}
.service_cmn .workHead {
	text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}
.service_cmn .workFlexBlk {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    margin: 40px 0 0;
}
.service_cmn .workItemBlk {}
.service_cmn .workItemImgBlk {
	position: relative;
}
.service_cmn .workItemImgBlk img {
	border-radius: 16px;
}
.service_cmn .workItemFlg {
	position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 82px;
    font-size: 18px;
    font-weight: 700;
    height: 32px;
    background: #FFF;
    color: var(--mainColor2);
    border-radius: 16px;
}
.service_cmn .workItemFlg._private {
	color: #fff;
	background: var(--mainColor2);
}
.service_cmn .workItemTxt {
	font-size: 18px;
	font-weight: 700;
	margin: 15px 0 0;
}
.service_cmn .restorationBlk {
	display: grid;
    gap: 40px 60px;
    margin: 40px 0 0;
}
.service_cmn .restorationItemBlk {
    /* padding: 30px 45px 40px; */
    padding: 40px;
    background: #fff;
    border-radius: 12px;
}
.service_cmn .restorationItemTxt {
	margin: 0;
    padding: 0 0 20px;
	font-weight: 700;
    background-image: repeating-linear-gradient(90deg, var(--mainColor), var(--mainColor) 6px, transparent 6px, transparent 12px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 1px;
}
.service_cmn .restorationItemImgWrap {
	/* margin: 25px 0 0; */
	position: relative;
}
.service_cmn .restorationItemImgWrap::before{
	content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 35px;
    background-image: url(./images/service_restoration_arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
}
.service_cmn .restorationItemImgBlk {
	width: calc((100% - 60px)/2);
}
.service_cmn .restorationItemImgBlk img {
	border-radius: 15px;
}
@media screen and (max-width: 1024px) {
	.service_outline {
		padding: 50px 0;
	}
	.service_outline .inner {}
	.service_outline .blk {}
	.service_outline .headBlk {}
	.service_outline .head {
		font-size: 24px;
	}
	.service_outline .head span{}
	.service_outline .headTxt {
		margin: 20px 0 0;
	}
	.service_outline .cmn_ankerMenu {
		margin: 40px 0 0;
	}
	.service_cmn {}
	.service_cmn .inner {}
	.service_cmn .blk {}
	.service_cmn .headBlk {}
	.service_cmn .head {}
	.service_cmn .headTxt {
		margin: 40px 0 0;
	}
	.service_cmn .mainBlk {
		flex-flow: column;
		gap: 25px;
		margin: 40px 0 0;
	}
	.service_cmn .mainLeftBlk {
		width: 100%;
		transform: scale(-1, 1);
	}
	.service_cmn .mainImgBlk {
		width: calc(var(--vw) * 100);
	}
	.service_cmn .mainImgBlk img{
		min-height: auto;
	}
	.service_cmn .mainRightBlk {
	}
	.service_cmn .mainTextBlk {}
	.service_cmn .mainTextDesc {}
	.service_cmn .mainExBlk {
		padding: 20px;
		margin: 15px 0 0;
	}
	.service_cmn .mainExBlk._exCivil{
	}
	.service_cmn .mainExHead {
		font-size: 16px;
	}
	.service_cmn .mainExList {
	}
	.service_cmn .mainExList > li{
		padding: 0 0 0 18px;
	}
	.service_cmn .mainExList > li::before{
		top: 12px;
	}
	.service_cmn .workBlk {
		margin: 40px 0 0;
	}
	.service_cmn .workBlk._service2 {
		margin: 30px 0 0;
	}
	.service_cmn .workHeadBlk {
		height: 45px;
	}
	.service_cmn .workHead {
		font-size: 20px;
	}
	.service_cmn .workFlexBlk {
		grid-template-columns: initial;
		gap: 30px;
		margin: 25px 0 0;
	}
	.service_cmn .workItemBlk {}
	.service_cmn .workItemImgBlk {
	}
	.service_cmn .workItemImgBlk img {
	}
	.service_cmn .workItemFlg {
		top: 15px;
		right: 15px;
		font-size: 16px;
		width: 70px;
		height: 30px;
	}
	.service_cmn .workItemFlg._private {
	}
	.service_cmn .workItemTxt {
		font-size: 15px;
		margin: 10px 0 0;
	}
	.service_cmn .restorationBlk {
		gap: 25px;
		margin: 25px 0 0;
	}
	.service_cmn .restorationItemBlk {
		padding: 20px;
	}
	.service_cmn .restorationItemTxt {
		margin: 0;
		padding: 0 0 20px;
		font-weight: 700;
		background-image: repeating-linear-gradient(90deg, var(--mainColor), var(--mainColor) 6px, transparent 6px, transparent 12px);
		background-position: left bottom;
		background-repeat: repeat-x;
		background-size: 100% 1px;
	}
	.service_cmn .restorationItemImgWrap {
		flex-flow: column;
		gap: 45px;
		background-position: center;
		background-size: 16px;
	}
	.service_cmn .restorationItemImgWrap::before {
		transform: translate(-50%, -50%) rotate(90deg);
	}
	.service_cmn .restorationItemImgBlk {
		width: 100%;
	}
	.service_cmn .restorationItemImgBlk img {
		border-radius: 10px;
}
}
/*
Recruit
====================================*/
.recruit_top {
	height: 600px;
	background-image: url(./images/dummy.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.recruit_top .inner {
	height: 100%;
}
.recruit_top .blk {
	height: 100%;
}
.recruit_top .mainBlk {
	height: 100%;
	display: flex;
	align-items: center;
}
.recruit_top .mainTitle {
	font-weight: 600;
	font-size: 50px;
	line-height: 80px;
}
.recruit_message {
	padding: 90px 0 100px;
	overflow: hidden;
}
.recruit_message .inner {}
.recruit_message .blk {}
.recruit_message .headBlk {}
.recruit_message .head {}
.recruit_message .mainBlk {
	gap: clamp(2.5rem, -26.786rem + 45.71vw, 7.5rem);
	align-items: center;
	gap: clamp(2.5rem, -2.138rem + 7.25vw, 3.75rem);
	gap: 120px;
}
.recruit_message .mainRightBlk{
	position: relative;
	width: 45%;
}
.recruit_message .mainImgBlk {
	position: relative;
	top: 0;
	left: 0;
	width: calc(var(--vw) * 50);
}
.recruit_message .mainImgBlk img {
	border-radius: 35px 0 0 35px;
	width: 100%;
	aspect-ratio: 16 / 10;
	min-height: 450px;
}
.recruit_message .mainIllustBlk {
	position: absolute;
    bottom: -30px;
    left: -55px;
    width: 360px;
}
.recruit_message .mainTextBlk {
	flex: 1;
}
.recruit_message .mainTextHead {
	font-size: 40px;
	font-size: clamp(2.188rem, 0.357rem + 2.86vw, 2.5rem);
	font-weight: 700;
}
.recruit_message .mainTextHead > span {
	color: var(--mainColor2)
}
.recruit_message .mainTextDesc {
	margin: 40px 0 0;
}
.recruit_message .mainTextName {
	display: flex;
	align-items: center;
	justify-content: end;
	font-size: 18px;
	margin: 20px auto 0;
	font-weight: 600;
}
.recruit_message .mainTextName span {
	font-size: 14px;
	margin: 0 10px 0 0;
}
.recruit_point {}
.recruit_point .inner {}
.recruit_point .blk {}
.recruit_point .headBlk {}
.recruit_point .head {}
.recruit_point .mainBlk {
	display: grid;
	gap: 60px;
	margin: 85px 0 0;
}
.recruit_point .mainBlk .mainFlexBlk {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(2.5rem, -4.821rem + 11.43vw, 3.75rem);
}
.recruit_point .mainBlk .mainFlexBlk:nth-child(odd) {
	flex-direction: row-reverse;
}
.recruit_point .mainImgBlk{
	flex: 1;
}
.recruit_point .mainImgBlk > img{
    border-radius: 15px;
}
.recruit_point .mainTxtBlk {
	width: calc(50% - 40px);
}
.recruit_point .mainTxtNmb{
	font-size: 55px;
	font-weight: 700;
	color: var(--mainColor);
}
.recruit_point .mainTxtHead {
	font-size: 26px;
    font-weight: 700;
}
.recruit_point .mainTxtDesc {
	margin: 20px 0 0;
}
.recruit_welfare {}
.recruit_welfare .inner {}
.recruit_welfare .blk {}
.recruit_welfare .headBlk {}
.recruit_welfare .head {}
.recruit_welfare .mainBlk {
	gap: 40px;
    margin: 65px 0 0;
}
.recruit_welfare .mainItemBlk {
	width: calc((100% - 40px) / 2);
    padding: 30px;
    background: var(--contentsBg);
    border-radius: 24px;
}
.recruit_welfare .mainImgBlk {}
.recruit_welfare .mainImgBlk img {
	width: 100%;
    height: 260px;
    border-radius: 20px;
}
.recruit_welfare .mainTxtBlk {
	margin: 20px 0 0;
}
.recruit_welfare .mainTxtHead {
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	color: var(--mainColor2);
}
.recruit_welfare .mainTxtDesc {
	margin: 15px 0 0;
}
.recruit_welfare .mainOtrBlk {
	justify-content: flex-start;
    align-items: center;
    gap: clamp(3.125rem, -4.196rem + 11.43vw, 4.375rem);
	width: 100%;
    background: var(--contentsBg);
    border-radius: 24px;
    padding: 40px 70px;
}
.recruit_welfare .mainListHead {
	font-size: 24px;
    font-weight: 700;
}
.recruit_welfare .mainListBlk {
	display: flex;
    gap: clamp(1.563rem, -7.589rem + 14.29vw, 3.125rem);
}
.recruit_welfare .mainList {
	display: grid;
	gap: 10px;
}
.recruit_welfare .mainList > li {
	position: relative;
	padding: 0 0 0 15px;
}
.recruit_welfare .mainList > li::before {
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 8px;
    height: 8px;
    background: var(--mainColor);
    border-radius: 4px;
}
.recruit_number {}
.recruit_number .inner {}
.recruit_number .blk {}
.recruit_number .headBlk {}
.recruit_number .head {}
.recruit_number .mainBlk {
	align-items: stretch;
	gap: 40px;
    margin: 65px 0 0;
}
.recruit_number .mainItemBlk {
	display: flex;
	flex-direction: column;
    align-items: center;
	width: calc((100% - (40px * 2)) / 3);
    padding: 20px 40px;
    background: #fff;
    border-radius: 20px;
}
.recruit_number .mainItemHead {
	font-size: 24px;
    font-weight: 700;
    color: var(--mainColor2);
}
.recruit_number .mainItemTxtBlk{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	/* width: 230px; */
	height: 230px;
	margin: 15px 0 0;
	background-image: url(./images/recruit_number01.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 150px;
}
.recruit_number .mainItemTxt{
	font-size: 28px;
    font-weight: 700;
	z-index: 1;
}
.recruit_number .mainItemTxt ._number{
	font-size: 100px;
    color: var(--mainColor);
}
.recruit_number .mainItemTxt ._day{
	font-size: 35px;
}
.recruit_number .mainItemTxtBlk::before{
	/* content: ''; */
	position: absolute;
	width: 152px;
	height: 100%;
	background-image: url(./images/recruit_number01.svg);
	background-repeat: no-repeat;
	background-position: left top 50%;
	background-size: 152px;
}
.recruit_number .mainItemImgBlk {
	width: 230px;
    margin: 16px auto 0;
}
.recruit_number .mainItemDesc {
	margin: 20px 0 0;
}
.recruit_image {}
.recruit_image .inner {}
.recruit_image .blk {}
.recruit_image .mainBlk {}
.recruit_image .mainImgBlk {
	width: calc(100% / 3);
}
.recruit_voice {}
.recruit_voice .inner {}
.recruit_voice .blk {}
.recruit_voice .headBlk {}
.recruit_voice .head {}
.recruit_voice .headTxt {
	text-align: center;
    margin: 65px 0 0;
}
.recruit_voice .mainBlk {
	margin: 40px 0 0;
	gap: clamp(0.625rem, -10.357rem + 17.14vw, 2.5rem);
}
.recruit_voice .mainItemBlk {
	width: calc((100% - clamp(0.625rem, -10.357rem + 17.14vw, 2.5rem) * 2) / 3);
}
.recruit_voice .mainItemTxt {
	position: relative;
	padding: 40px 30px;
    background: var(--contentsBg);
    border-radius: 20px;
}
.recruit_voice .mainItemTxt::before {
	content: "";
  	position: absolute;
  	bottom: 0;
  	left: 50%;
  	border-style: solid;
 	border-width: 20px 20px 0 20px;
 	border-color: var(--contentsBg) transparent transparent;
 	translate: -50% 100%;
}
.recruit_voice .mainItemImgBlk {
	margin: 34px auto 0;
    width: 130px;
}
.recruit_wrap._requirement {}
.recruit_requirement {}
.recruit_requirement .inner {}
.recruit_requirement .blk {}
.recruit_requirement .headBlk {}
.recruit_requirement .head {}
.recruit_requirement .headTxt {
	margin: 65px 0 0;
    text-align: center;
}
.recruit_requirement .cmn_ankerMenu {
    margin: 40px 0 0;
}
.recruit_requirement .linkBtnTxt {}
.recruit_requirement .mainBlk {
	display: grid;
	gap: 80px;
	margin: 40px 0 0;
}
.recruit_requirement .mainItemBlk {}
.recruit_requirement .mainTblHeadBlk {
	padding: 20px 25px;
	background: var(--mainColor);
	border-radius: 15px 15px 0 0;
}
.recruit_requirement .mainTblHead {
	font-size: 20px;
    font-weight: 700;
    color: #fff;
}
.recruit_requirement .cmn_table {
	padding: 35px 60px 60px;
    background: #fff;
	border-radius: 0 0 16px 16px;
}
.recruit_requirement .mainLinkBlk {
	justify-content: center;
    gap: 25px;
    margin: 40px 0 0;
}
.recruit_requirement .mainLink {}
.recruit_requirement .mainCttBlk {
	justify-content: center;
    align-items: center;
    width: 400px;
    height: 90px;
    background: var(--mainColor2);
    border-radius: 45px;
}
.recruit_requirement .mainCttBlk._cttMl {
	background: var(--mainColor);
}
.recruit_requirement .mainCttImgBlk {}
.recruit_requirement .mainCttTxtBlk {
	color: #fff;
}
.recruit_requirement .mainCttTxtBlk{
	padding: 0 15px 0 70px;
    background-image: url(./images/modCtt_icon01.webp);
    background-repeat: no-repeat;
    background-position: left top 40%;
    background-size: 56px;
}
.recruit_requirement ._cttMl  .mainCttTxtBlk {
    background-image: url(./images/modCtt_icon02.webp);
}
.recruit_requirement .mainCttTxt {
	font-size: 32px;
    font-weight: 700;
    line-height: 1;
}
.recruit_requirement ._cttMl .mainCttTxt {
	font-size: 22px;
	line-height: 3;
}
.recruit_requirement .mainCttTime {
	font-size: 15px;
}
@media screen and (max-width: 1024px) {
	.recruit_top {
		position: relative;
		width: 100%;
		height: auto;
		min-height: 300px;
		aspect-ratio: 16 / 9;
	}
	.recruit_top .inner {
		height: 100%;
	}
	.recruit_top .blk {
		height: 100%;
	}
	.recruit_top .mainBlk {
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translate(-50%, 0%);
		width: 100%;
		height: auto;
		padding: 10px 4%;
	}
	.recruit_top .mainBlk::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		display: inline-block;
		height: 100%;
		width: 100%;
		background: var(--mainColor);
		opacity: 0.7;
	}
	.recruit_top .mainTitle {
		position: relative;
		z-index: 1;
		font-weight: bold;
		font-size: 20px;
		line-height: 30px;
		text-align: center;
		color: #fff;
		width: 100%;
	}
	.recruit_message {
    padding: 40px 0 70px;
}
	.recruit_message .inner {}
	.recruit_message .blk {}
	.recruit_message .headBlk {}
	.recruit_message .head {}
	.recruit_message .mainBlk {
    flex-flow: column;
    gap: 30px;
}
	.recruit_message .mainRightBlk{
    flex: initial;
    width: 100%;
}
	.recruit_message .mainImgBlk {
    width: calc(var(--vw) * 100);
}
	.recruit_message .mainImgBlk img {
    min-height: initial;
    max-height: 580px;
    border-radius: 35px 0 0 35px;
}
	.recruit_message .mainIllustBlk {
    bottom: -20px;
    left: -30px;
    width: 180px;
}
	.recruit_message .mainTextBlk {
    width: 100%;
}
	.recruit_message .mainTextHead {
    font-size: 22px;
}
	.recruit_message .mainTextHead > span {}
	.recruit_message .mainTextDesc {
    margin: 15px 0 0;
}
	.recruit_message .mainTextName {}
	.recruit_message .mainTextName span {}
	.recruit_point {}
	.recruit_point .inner {}
	.recruit_point .blk {}
	.recruit_point .headBlk {}
	.recruit_point .head {}
	.recruit_point .mainBlk {
    gap: 35px;
    margin: 45px 0 0;
}
	.recruit_point .mainBlk .mainFlexBlk {flex-flow: column;gap: 15px;}
	.recruit_point .mainBlk .mainFlexBlk:nth-child(odd) {
    flex-direction: initial;
    flex-direction: column;
}
	.recruit_point .mainImgBlk{}
	.recruit_point .mainImgBlk > img{}
	.recruit_point .mainTxtBlk {
    width: 100%;
}
	.recruit_point .mainTxtNmb{
    font-size: 35px;
    line-height: 1;
}
	.recruit_point .mainTxtHead {
    font-size: 18px;
}
	.recruit_point .mainTxtDesc {
    margin: 10px 0 0;
}
	.recruit_welfare {}
	.recruit_welfare .inner {}
	.recruit_welfare .blk {}
	.recruit_welfare .headBlk {}
	.recruit_welfare .head {}
	.recruit_welfare .mainBlk {
    flex-flow: column;
    gap: 20px;
    margin: 55px 0 0;
}
	.recruit_welfare .mainItemBlk {
    width: 100%;
    padding: 20px 15px;
    border-radius: 15px;
}
	.recruit_welfare .mainImgBlk {}
	.recruit_welfare .mainImgBlk img {
    border-radius: 15px;
}
	.recruit_welfare .mainTxtBlk {
    margin: 15px 0 0;
}
	.recruit_welfare .mainTxtHead {
    font-size: 18px;
}
	.recruit_welfare .mainTxtDesc {
    margin: 10px 0 0;
}
	.recruit_welfare .mainOtrBlk {
    gap: 10px;
    flex-flow: column;
    align-items: start;
    padding: 20px 15px;
    border-radius: 15px;
}
	.recruit_welfare .mainListHead {
    font-size: 18px;
}
	.recruit_welfare .mainListBlk {
    flex-flow: column;
    gap: 10px;
}
	.recruit_welfare .mainList {}
	.recruit_welfare .mainList > li {}
	.recruit_welfare .mainList > li::before {}
	.recruit_number {}
	.recruit_number .inner {}
	.recruit_number .blk {}
	.recruit_number .headBlk {}
	.recruit_number .head {}
	.recruit_number .mainBlk {
    flex-flow: column;
    gap: 20px;
    margin: 55px 0 0;
}
	.recruit_number .mainItemBlk {
    width: 100%;
    padding: 20px 15px;
}
	.recruit_number .mainItemHead {
    font-size: 18px;
}
	.recruit_number .mainItemTxtBlk{
    height: 120px;
    background-size: 100px;
}
	.recruit_number .mainItemTxt{
    font-size: 18px;
}
	.recruit_number .mainItemTxt ._number{
    font-size: 60px;
}
	.recruit_number .mainItemTxt ._day{
    font-size: 28px;
}
	.recruit_number .mainItemTxtBlk::before{}
	.recruit_number .mainItemImgBlk {
    width: 180px;
}
	.recruit_number .mainItemDesc {
    margin: 10px 0 0;
}
	.recruit_image {}
	.recruit_image .inner {}
	.recruit_image .blk {}
	.recruit_image .mainBlk {
    flex-flow: wrap;
}
	.recruit_image .mainImgBlk {
    width: 50%;
}
	.recruit_image .mainImgBlk:last-child{
    /* width: 100%; */
}
	.recruit_voice {
    padding: 60px 0;
}
	.recruit_voice .inner {}
	.recruit_voice .blk {}
	.recruit_voice .headBlk {}
	.recruit_voice .head {}
	.recruit_voice .headTxt {
    margin: 45px 0 0;
}
	.recruit_voice .mainBlk {
    margin: 30px 0 0;
    flex-flow: column;
    gap: 25px;
}
	.recruit_voice .mainItemBlk {
    width: 100%;
}
	.recruit_voice .mainItemTxt {
    padding: 20px 15px;
}
	.recruit_voice .mainItemTxt::before {
    border-width: 15px 15px 0 15px;
}
	.recruit_voice .mainItemImgBlk {
    margin: 25px auto 0;
    width: 100px;
}
	.recruit_wrap._requirement {}
	.recruit_requirement {}
	.recruit_requirement .inner {}
	.recruit_requirement .blk {}
	.recruit_requirement .headBlk {}
	.recruit_requirement .head {}
	.recruit_requirement .headTxt {
    margin: 40px 0 0;
}
	.recruit_requirement .cmn_ankerMenu {
    margin: 30px 0 0;
}
	.recruit_requirement .linkBtnTxt {}
	.recruit_requirement .mainBlk {
    display: flex;
    flex-flow: column;
    gap: 25px;
    margin: 30px 0 0;
}
	.recruit_requirement .mainItemBlk {
}
	.recruit_requirement .mainTblHeadBlk {
    padding: 10px 15px;
    border-radius: 10px 10px 0 0;
}
	.recruit_requirement .mainTblHead {
    font-size: 18px;
}
	.recruit_requirement .cmn_table {
    padding: 10px 15px 35px;
}
	.recruit_requirement .mainLinkBlk {
    gap: 10px;
}
	.recruit_requirement .mainLink {}
	.recruit_requirement .mainCttBlk {
    width: 100%;
    height: 80px;
    max-width: 400px;
}
	.recruit_requirement .mainCttBlk._cttMl {
    height: 75px;
}
	.recruit_requirement .mainCttImgBlk {}
	.recruit_requirement .mainCttTxtBlk {
    padding: 0 15px 0 55px;
    background-size: 45px;
}
	.recruit_requirement .mainCttTxtBlk{
}
	.recruit_requirement ._cttMl  .mainCttTxtBlk {
    padding: 0 15px 0 50px;
    background-size: 45px;
}
	.recruit_requirement .mainCttTxt {
    font-size: 28px;
}
	.recruit_requirement ._cttMl .mainCttTxt {
    font-size: 20px;
}
	.recruit_requirement .mainCttTime {
    font-size: 14px;
}
}
/*
Information
====================================*/
.info_category {
	padding: 50px 0 0px;
}
.info_category .inner {}
.info_category .blk {}
.info_category .mainBlk {}
.info_category .mainBlk ul {
	justify-content: center;
	gap: 15px;
}
.info_category .mainBlk ul li {
	width: calc((100% - (15px * 5)) / 6);
}
.info_category .mainBlk ul li a {
	display: block;
	line-height: 50px;
	text-align: center;
	color: var(--mainColor2);
	font-size: 18px;
	font-weight: 700;
	border: 1px solid;
	border-radius: 7px;
}
@media screen and (min-width: 1025px) {
	.info_category .mainBlk ul li a:hover {
		opacity: 1;
		color: white;
		background: var(--mainColor);
	}
}
.info_category .mainBlk ul li.current-cat a {
	background-color: var(--contentsBg);
    color: var(--mainColor2);
    border-radius: 7px;
    border: 1px solid;
    font-size: 18px;
    font-weight: 700;
}
.info_list {
	padding: 60px 0 80px;
}
.info_list .inner {}
.info_list .blk {}
.info_list .mainBlk {}
.info_list .mainBlk article {
	border-top: solid 1px #DDDDDD;
	display: flex;
    align-items: center;
    justify-content: space-between;
}
.info_list .mainBlk article:last-child {
	border-bottom: solid 1px #DDDDDD;
}
.info_list .mainBlk article a {
	padding: 25px 0;
	align-items: center;
	gap: 26px;
	width: 100%;
}
.info_list .mainBlk article .info_arrow{
	position: absolute;
	width: 10px;
	height: 20px;
	right: 20px;
}
.info_list .mainBlk article .info_arrow::before,
.info_list .mainBlk article .info_arrow::after {
	content: "";
	position: absolute;
	top: calc(50% - 1.5px);
	right: 0;
	width: 14px;
	height: 3px;
	border-radius: 3px;
	background-color: var(--mainColor);
	transform-origin: calc(100% - 1.5px) 50%;
}
.info_list .mainBlk article .info_arrow::before {
  transform: rotate(45deg);
}
.info_list .mainBlk article .info_arrow::after {
  transform: rotate(-45deg);
}
.info_list .mainImgBlk {
	width: 150px;
}
.info_list .mainImgBlk img {
	width: 100%;
	height: 92px;
}
.info_list .mainTextBlk {
	position: relative;
	flex: 1;
	display: flex;
	flex-flow: wrap;
	align-items: center;
}
.info_list .mainTextDate {
	font-size: 14px;
}
.info_list .mainTextCat {
	margin: 0 0 0 15px;
	display: inline-flex;
	font-size: 14px;
	padding: 1px 10px;
	background: var(--mainColor);
	color: white;
	align-items: center;
    border-radius: 20px;
    padding: 2px 22px;
}
.info_list .mainTextTitle {
	line-height: 26px;
	width: 100%;
	margin: 10px 0 0;
	font-size: 18px;
}
.info_list .paginationBlk {}
.info_detail {
	padding: 90px 0px;
}
.info_detail .inner {}
.info_detail .blk {}
.info_detail .mainBlk {}
.info_detail .mainBlk article {}
.info_detail .mainDate {
	display: inline-flex;
	font-size: 14px;
}
.info_detail .mainCat {
	margin: 0 0 0 10px;
	display: inline-flex;
	font-size: 14px;
	padding: 4px 22px;
	background: var(--mainColor);
	color: white;
	border-radius: 14px;
}
.info_detail .mainHead {
	font-size: 24px;
	line-height: 26px;
    margin: 15px 0 0;
    border-bottom: 1px solid var(--mainColor2);
    padding-bottom: 15px;
}
.info_detail .mainContentBlk {
	margin: 40px 0 0;
	padding: 0 0 20px;
	border-bottom: 1px solid var(--mainColor2);
}
.info_detail .mainContentBlk > *:first-child,
.info_detail .mainContentBlk > * *:first-child {
	margin-top: 0;
}
.info_detail .mainContentBlk p {}
.info_detail .mainContentBlk img {
	display: table;
	margin: auto!important;
}
.info_detail .mainContentBlk :not(ul):not(li):not(iframe):not(table *) {
	margin: calc(1rem* 1.6) 0 0;
}
.info_detail .mainContentBlk a {
	color: #128bea;
	text-decoration: underline;
}
.info_detail .paginationBlk {}
@media screen and (max-width: 1024px) {
	.info_category {
		padding: 60px 0 0px;
	}
	.info_category .inner {}
	.info_category .blk {}
	.info_category .mainBlk {
		max-width: 400px;
		margin: auto;
	}
	.info_category .mainBlk ul {
		gap: 5px;
		justify-content: flex-start;
	}
	.info_category .mainBlk ul li {
		width: calc((100% - (5px * 1)) / 2);
	}
	.info_category .mainBlk ul li a {
		display: block;
		line-height: 44px;
		text-align: center;
		font-size: 16px;
	}
	.info_category .mainBlk ul li.current-cat a{
    font-size: 16px;
}
	.info_list {
		padding: 50px 0 70px;
	}
	.info_list .inner {}
	.info_list .blk {}
	.info_list .mainBlk {}
	.info_list .mainBlk article {
		position: relative;
	}
	.info_list .mainBlk article:last-child {
		border-bottom: solid 1px #DDDDDD;
	}
	.info_list .mainBlk article a {
		padding: 20px 0;
		align-items: center;
		gap: 20px;
	}
	.info_list .mainBlk article .info_arrow{
    right: 0px;
}
	.info_list .mainImgBlk {
		width: 100%;
	}
	.info_list .mainImgBlk img {
		width: 100%;
		height: auto;
		aspect-ratio: 16 /10;
	}
	.info_list .mainTextBlk {
		flex: unset;
		width: 100%;
		padding: 0 25px 0 0;
	}
	.info_list .mainTextDate {
		font-size: 13px;
	}
	.info_list .mainTextCat {
		margin: 0 0 0 15px;
		font-size: 13px;
		padding: 2px 10px;
	}
	.info_list .mainTextTitle {
		line-height: 24px;
		width: 100%;
		margin: 7px 0 0;
		font-size: 16px;
	}
	.info_list .paginationBlk {}
	.info_detail {
		padding: 60px 0px 90px;
	}
	.info_detail .inner {}
	.info_detail .blk {}
	.info_detail .mainBlk {}
	.info_detail .mainBlk article {}
	.info_detail .mainDate {
		display: inline-flex;
		font-size: 13px;
	}
	.info_detail .mainCat {
		margin: 0 0 0 15px;
		display: inline-flex;
		font-size: 13px;
		padding: 2px 10px;
		background: var(--mainColor);
		color: white;
	}
	.info_detail .mainHead {
		font-size: 20px;
		line-height: 28px;
		margin: 20px 0 0;
	}
	.info_detail .mainContentBlk {
		margin: 30px 0 0;
	}
	.info_detail .mainContentBlk > *:first-child,
	.info_detail .mainContentBlk > * *:first-child {}
	.info_detail .mainContentBlk :not(ul):not(li):not(iframe):not(table *) {
		margin: calc(0.875rem* 1.6) 0 0;
	}
	.info_detail .mainContentBlk a {}
	.info_detail .paginationBlk {
		max-width: 360px;
		margin: auto;
	}
}
/*
Contact
====================================*/
.contact_outline {
	padding: 90px 0 0;
}
.contact_outline .inner {}
.contact_outline .blk {}
.contact_outline .mainBlk {}
.contact_outline .mainDesc {
	font-size: 24px;
	line-height: 40px;
	text-align: center;
	font-weight: 500;
}
.contact_tel {
	padding: 105px 0 0;
}
.contact_tel .inner {}
.contact_tel .blk {
	position: relative;
    margin: auto;
    padding: 75px 0 60px;
	background: var(--contentsBg);
    border-radius: 20px;
}
.contact_cmn{
	position: absolute;
    top: -35px;
	left: 50%;
	transform: translate(-50%, 0);
    display: flex;
    align-items: center;
    justify-content: center;
	padding: 15px 70px; 
    background: var(--mainColor2);
	border-radius: 25px 25px 25px 0;
}
.contact_tel .head {
	color: #FFF;
    font-size: 28px;
}
.contact_tel .mainBlk {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 600px;
	padding: 28px 0 32px;
    margin: auto;
	background: #fff;
    border-radius: 20px;
}
.contact_tel .mainBlk a {
	font-size: 35px;
    font-weight: 700;
    line-height: 1.4;
	color: var(--mainColor2);
    background-image: url(./images/icon_tel02.svg);
    background-repeat: no-repeat;
    background-position: left top calc(50% + 3px);
    background-size: 40px;
    padding: 0 0 0 48px;
}
.contact_tel .mainTime {
	margin: 10px 0 0;
	font-weight: bold;
}
.contact_form {
	padding: 110px 0 10px;
}
.contact_form .inner {}
.contact_form .blk {
	position: relative;
	padding: 80px 175px 70px;
	border-radius: 20px;
	background: var(--contentsBg);
}
.contact_form .headBlk {
}
.contact_form .head {
	color: #fff;
	font-size: 28px;
	min-width: 560px;
}
.contact_form .mainBlk{
	max-width: 750px;
    margin: auto;
}
.contact_form .mainBlk .mainFormBlk {
	background: #fff;
    padding: 45px 55px;
    border-radius: 20px;
}
@media screen and (max-width: 1024px) {
	.contact_outline {
    padding: 50px 0  0;
}
	.contact_outline .inner {}
	.contact_outline .blk {}
	.contact_outline .mainBlk {}
	.contact_outline .mainDesc {
		font-size: 17px;
		line-height: 29px;
		text-align: center;
	}
	.contact_tel {
    padding: 80px 0 0;
}
	.contact_tel .inner {}
	.contact_tel .blk {
    padding: 25px 15px 30px;
}
	.contact_cmn{
    top: -25px;
    padding: 10px 15px;
    border-radius: 15px 15px 15px 0;
}
	.contact_tel .headBlk {}
	.contact_tel .head {
    font-size: 17px;
    min-width: 270px;
}
	.contact_tel .mainBlk {
		padding: 20px 0;
		margin: 20px auto 0;
		width: 100%;
		max-width: 550px;
	}
	.contact_tel .mainBlk a {
		font-size: 28px;
		background-position: left top calc(50% + 2px);
		background-size: 25px;
		padding: 0 0 0 35px;
	}
	.contact_tel .mainTime {
	margin: 5px 0 0;
	}
	.contact_form {
		padding: 60px 0 20px;
	}
	.contact_form .inner {}
	.contact_form .blk {
    padding: 25px 15px 35px;
}
	.contact_form .headBlk {}
	.contact_form .head {
    font-size: 17px;
    min-width: 310px;
}
	.contact_form .mainBlk {
		margin: 25px 0 0;
	}
	.contact_form .mainBlk .mainFormBlk{
    padding: 25px 15px;
    border-radius: 15px;
    max-width: 550px;
    margin: 0 auto;
}
}
/* テスト */