/*
Theme Name:ba-template
*/
@charset "UTF-8";
/*####################################

1. General
┣ Root
┣ Element
┣ Decoration
┣ Css Animation
┣ Plugin Overwrite
┣ default.css Overwrite
┣ Other
2. Site Common Style
┣ Pagination
┣ Form
┣ 404 & Thanks
3. Header
4. Main
5. Footer
6. Common Style
┣ Single
┣ Section 
7.Module
8. Page

####################################*/
/*====================================

1. General

====================================*/
/*
Root
====================================*/
:root {
	/* メインカラー */
	--mainColor: linear-gradient(to right, #3AB199 0%,  #1A836F 100%);
	/*====== 背景カラー ======*/
	/* コンテンツ背景カラー */
	--mainColor2: #1A836F;
	--contentsBg: #D6F0EB;
	/* 下層ページトップ背景カラー */
	--lowerTopBg: #D7E1FA;
	/* 表組み項目名背景カラー */
	--tableItemBg: #F7F7F7;
	/* フォーム項目名背景カラー */
	--formItemBg: #F0F5FA;
	/* カテゴリーリンク背景カラー */
	--categoryLinkBg: #D7E1FA;
	/* メール問い合わせボタン背景カラー */
	--mailBtnBg: #333;
	/*====== テキストカラー ======*/
	/* テキストカラー */
	--textColor: #333;
	/* リンクテキストカラー */
	--linkTextColor: #0c4876;
	/*====== ページネーションカラー ======*/
	/* ページネーションテキスト、矢印カラー */
	--pnColor: #aaa;
	/* ページネーションhoverテキスト、矢印カラー */
	--pnHoverColor: #333;
	/* ページネーションCurrentテキスト、矢印カラー */
	--pnCurrentColor: #333;
	/* ページネーションhover背景カラー */
	--pnHoverBg: #f6f6f6;
	/* ページネーションCurrent背景カラー */
	--pnCurrentBg: #f6f6f6;
	/*====== フォント ======*/
	--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: 250px;
	/*====== 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: var(--mainColor);
}
.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: 6px;
	background: #fff;
	box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
	margin: 75px 0 0;
	border-radius: 100px;
	overflow: hidden;
}
.pn_list .listArrow::before, .pn_list .listArrow::after {
	content: '';
	position: absolute;
	top: calc(50% + 3px);
	width: 9px;
	height: 9px;
	-webkit-transform: rotate(45deg) translate(-50%, -50%);
	transform: rotate(45deg) translate(-50%, -50%);
	transition: .3s;
}
.pn_list .listPagerBlk {
	display: flex;
	align-items: center;
	gap: 11px;
}
.pn_list .listPagerPrevious::before {
	border-bottom: solid 2px var(--pnColor);
	border-left: solid 2px var(--pnColor);
	left: calc(50% - 2px);
}
.pn_list .listPagerBlk a, .pn_list .listPagerBlk span {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 35px;
	width: 35px;
	color: var(--pnColor);
	border-radius: 50px;
}
.pn_list .listPagerBlk span.listPagerNum {
	color: #fff;
	background: #68B1A2;
}
.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(--mainColor2);
		border-left: solid 2px var(--mainColor2);
	}
	.pn_list .listPagerBlk a:hover {
		color: var(--mainColor2);
		/* background: #68B1A2; */
		background: initial;
		opacity: 1;
	}
	.pn_list .listPagerNext:hover::before {
		border-top: solid 2px var(--mainColor2);
		border-right: solid 2px var(--mainColor2);
	}
}
.pn_list .listFirstBlk, .pn_list .listLastBlk {
	width: 100px;
	height: 100%;
}
.pn_list .listFirstBlk a, .pn_list .listLastBlk a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}
@media screen and (min-width: 1025px) {
	.pn_list .listFirstBlk a:hover, .pn_list .listLastBlk a:hover {
		background: var(--pnHoverBg);
	}
}
.pn_list .listFirstBlk a {
	border-right: solid 1px #E2E6EB;
}
.pn_list .listFirstBlk a::before {
	border-bottom: solid 2px var(--pnColor);
	border-left: solid 2px var(--pnColor);
	left: 50%;
}
.pn_list .listFirstBlk a::after {
	border-bottom: solid 2px var(--pnColor);
	border-left: solid 2px var(--pnColor);
	left: calc(50% - 7px);
}
@media screen and (min-width: 1025px) {
	.pn_list .listFirstBlk a:hover::before {
		border-bottom: solid 2px var(--mainColor2);
		border-left: solid 2px var(--mainColor2);
	}
	.pn_list .listFirstBlk a:hover::after {
		border-bottom: solid 2px var(--mainColor2);
		border-left: solid 2px var(--mainColor2);
	}
}
.pn_list .listLastBlk a {
	border-left: solid 1px #E2E6EB;
}
.pn_list .listLastBlk a::before {
	border-top: solid 2px var(--pnColor);
	border-right: solid 2px var(--pnColor);
	right: 50%;
}
.pn_list .listLastBlk a::after {
	border-top: solid 2px var(--pnColor);
	border-right: solid 2px var(--pnColor);
	right: calc(50% - 7px);
}
@media screen and (min-width: 1025px) {
	.pn_list .listLastBlk a:hover::before {
		border-top: solid 2px var(--mainColor2);
		border-right: solid 2px var(--mainColor2);
	}
	.pn_list .listLastBlk a:hover::after {
		border-top: solid 2px var(--mainColor2);
		border-right: solid 2px var(--mainColor2);
	}
}
@media screen and (max-width: 1024px) {
	.pn_list {
		margin: 60px 0 0;
	}
	.pn_list .listArrow::before, .pn_list .listArrow::after {
		top: calc(50% + 2px);
	}
	.pn_list .listPagerBlk {
		gap: 5px;
	}
	.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: 50px;
	}
	.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: 45px 0 0;
	background: #fff;
	/* box-shadow: 0px 3px 10px rgb(0 0 0 / 10%); */
	border-radius: 100px;
	overflow: hidden;
	border: 1px solid #E2E6EB;
}
.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; */
	/* box-shadow: 0px 3px 10px rgb(0 0 0 / 10%); */
	/* border-radius: 6px; */
}
@media screen and (min-width: 1025px) {
	.pn_detail a:hover {
		/* background: var(--pnHoverBg); */
		opacity: 1;
	}
}
.pn_detail .detailpreviousBlk {}
.pn_detail .detailpreviousBlk a {
    border-right: solid 1px #E2E6EB;
}
.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 #AFB6BE;
	border-left: solid 2px #AFB6BE;
	-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 #68B1A2;
		border-left: solid 2px #68B1A2;
	}
}
.pn_detail .detailNextBlk {
    /* border-left: solid 1px #E2E6EB; */
}
.pn_detail .detailNextBlk a {
    border-left: solid 1px #E2E6EB;
}
.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 #AFB6BE;
	border-right: solid 2px #AFB6BE;
	-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 #68B1A2;
		border-right: solid 2px #68B1A2;
	}
}
.pn_detail .detailBackBlk {}
.pn_detail .detailBackBlk a {
	position:relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 300px;
	height: 100%;
	font-size: 14px;
	color: #CCCCCC;
}
@media screen and (min-width: 1025px) {
	.pn_detail .detailBackBlk a:hover {
		color: var(--mainColor2);
	}
}
.pn_detail .detailBackBlk a::before{
	content: "";
    position: absolute;
    right: 50px;
    width: 26px;
    height: 6px;
    border-bottom: 1px solid #878E93;
    border-right: 2px solid #878E93;
    transform: skew(45deg);
}
@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 {
		justify-content: start;
		width: 200px;
		font-size: 13px;
		padding: 0 0 0 10px;
	}
	.pn_detail .detailBackBlk a::before{
    right: 45px;
    width: 20px;
    height: 5px;
}
}
/*
Form
====================================*/
/*
Input
----------------------------------------------------------------*/
.form_input {
	display: grid;
	gap: 40px;
}
.form_input .inputRow {
	display: flex;
	gap: 35px;
	justify-content: space-between;
}
.form_input .inputRow:first-child, .form_input .inputRow:last-child{
    align-items: start;
}
.form_input .inputItem {
	position: relative;
	display: flex;
	flex-flow: wrap;
	gap: 5px;
	justify-content: start;
	align-items: center;
	width: 155px;
	font-size: 14px;
}
.form_input .inputItem ._must {
	font-size: 11px;
	color: #fff;
	background-color: var(--mainColor2);
	padding: 2px 5px;
}
.form_input .inputItem ._minTxt{
    width: 100%;
    font-size: 12px;
    margin: 10px 0 0;
}
.form_input .inputValue {
	flex: 1;
	display: flex;
	flex-flow: column;
}
.form_input .inputValue span._minTxt{
    display: inline-block;
    font-size: 12px;
    margin: 0 0 10px;
}
.form_input .wpcf7-form-control-wrap {
	width: 100%;
}
/* input[text, tel, email], textarea */
.form_input input[type="text"], .form_input input[type="tel"], .form_input input[type="email"], .form_input textarea {
	width: 100%;
	height: 44px;
	border-radius: 5px;
	border: solid #D5D5D5 1px;
	padding: 0px 10px;
	font-size: 14px;
}
.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;
}
/* turnstile */
.form_turnstile {
	
display: flex;
	
justify-content: center;
	
margin-top: 40px;
}
/* agree */
.form_agree {
	margin: 45px 0 0;
	text-align: center;
}
.form_agree a{
    color: #0454C1;
    padding: 0 0 2px;
    border-bottom: 1px solid #0454C1;
}
.form_agree .wpcf7-list-item {
	margin: 0;
}
.form_agree label {
	display: flex;
	align-items: center;
	gap: 12px;
}
.form_agree .wpcf7-list-item-label {
	font-size: 13px;
}
.form_agree input[type="checkbox"] {
	width: 20px;
	height: 20px;
}
/* submit */
.form_submit {
	position: relative;
	width: 280px;
	text-align: center;
	margin: 50px auto 0;
}
.form_submit input[type="submit"] {
	width: 100%;
	height: 55px;
	font-size: 15px;
	color: #fff;
	transition: .3s;
	background: var(--mailBtnBg);
	background: linear-gradient(to left, #333 50%, #126A59 50%);
	background-size: 200% 100%;
	background-position: right bottom;
}
@media screen and (min-width: 1025px) {
	.form_submit input[type="submit"]:hover{
	    color: #fff;
	    background-position: left bottom;
	}
}
@media screen and (min-width: 1025px) {
	.form_submit input[type="submit"]:hover {
		opacity: 1;
	}
}
.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 {
	gap: 30px;
	}
	.form_input .inputRow {
		flex-flow: wrap;
		gap: 10px;
	}
	.form_input .inputRow:last-child {
		border-bottom: transparent;
	}
	.form_input .inputItem {
		justify-content: flex-start;
		width: 100%;
		padding: initial;
		font-size: 13px;
	}
	.form_input .inputItem ._must {
    font-size: 10px;
}
	.form_input .inputItem ._minTxt{
    margin: initial;
}
	.form_input .inputValue {}
	.form_input .inputValue span._minTxt{
    font-size: 10px;
    margin: 0 0 5px;
}
	.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: 14px;
	}
	.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: 5px 0;
}
	.form_input .wpcf7-list-item {}
	.form_input .wpcf7-list-item label {
    gap: 5px;
}
	.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 {
    margin: 30px 0 0;
}
	.form_agree .wpcf7-list-item {}
	.form_agree label {
    gap: 5px;
}
	.form_agree .wpcf7-list-item-label {
    font-size: 12px;
}
	.form_agree input[type="checkbox"] {
    width: 18px;
    height: 18px;
}
	/* submit */
	.form_submit {
		margin: 30px auto 0;
		width: 100%;
		max-width: var(--maxWidth300);
	}
	.form_submit input[type="submit"] {
		height: 55px;
	}
	.form_submit .wpcf7-spinner {}
}
/*
Privacy Policy
----------------------------------------------------------------*/
.form_pp {
	width: 100%;
	/* height: 270px; */
	border-radius: 5px;
	background: #fff;
	/* border: 1px solid #cecece; */
	/* overflow: auto; */
}
.form_pp dl {}
.form_pp dt {
	font-size: 15px;
}
.form_pp dd {
	font-size: 14px;
	line-height: 26px;
}
@media screen and (max-width: 1024px) {
	.form_pp {
	}
	.form_pp dl {}
	.form_pp dt {
		font-size: 15px;
	}
	.form_pp dd {
    font-size: 13px;
    line-height: 25px;
}
}
/*
Thanks & 404
====================================*/
.thanks_section {
	overflow: hidden;
	padding: 110px 0;
}
.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 110px;
}
.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: 300px;
	line-height: 60px;
	font-size: 16px;
	background: var(--mainColor);
	color: #fff;
}
@media screen and (min-width: 1025px) {
	.thanks_section .linkBlk a:hover, .error_section .linkBlk a:hover {
		opacity: 1;
		background: linear-gradient(to right,#066754 0%, #18957B 100%);
		color: #fff;
	}
}
@media screen and (max-width: 1024px) {
	.thanks_section {
		padding: 60px 0 90px;
	}
	.thanks_section .inner {}
	.thanks_section .blk {}
	.thanks_section .headBlk {
		padding: 15px 0;
	}
	.thanks_section .head {
		text-align: center;
		font-size: 20px;
	}
	.thanks_section .mainBlk {
		margin: 30px 0 0;
	}
	.thanks_section .mainDesc {
		line-height: 24px;
	}
	.thanks_section .linkBlk {
		margin: 40px 0 0;
	}
	.error_section {
		padding: 40px 0 90px;
	}
	.error_section .inner {}
	.error_section .blk {}
	.error_section .headBlk {}
	.error_section .head {
		font-size: 24px;
	}
	.error_section .head span {
		font-size: 16px;
	}
	.error_section .mainBlk {
		margin: 30px 0 0;
	}
	.error_section .mainDesc {
		line-height: 24px;
	}
	.thanks_main .linkBlk a, .error_section .linkBlk a {
    color: #fff;
}
}
/*====================================

3. Header

====================================*/
.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
	width: 100%;
	height: 80px;
	height: clamp(4.063rem, 0.568rem + 5.45vw, 5rem);
	box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
	background: linear-gradient(#3AB199 0%,  #1A836F 100%);
}
.header .inner {
	height: 100%;
	padding: initial;
}
.header .blk {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0 30px;
	height: 100%;
}
.header .logoBlk {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	height: 100%;
	background-color: #fff;
	padding: 0 50px;
	padding: 0 clamp(1.25rem, -9.732rem + 17.14vw, 3.125rem);
	max-width: 425px;
}
.header .logoBlk a {margin: 10px 0 0;}
.header .logoBlk a img {
}
@media screen and (min-width: 1025px) {
	.header .menuBlk {
		display: flex;
		flex-shrink: 0;
		height: 100%;
	}
	.header .menuBlk nav {}
	.header .menuBlk nav > ul {
		display: flex;
		/* gap: 30px; */
		/* gap: clamp(1.25rem, -1.08rem + 3.64vw, 1.875rem); */
		height: 100%;
	}
	.header .menuBlk nav > ul > li {
		position: relative;
		display: flex;
		align-items: center;
		height: 100%;
	}
	.header .menuBlk nav > ul > li > a {
		color: #fff;
	}
	.header .menuBlk nav > ul > li:not(:last-child) > a {
	    position: relative;
	    padding: 0 20px;
	}
	.header .menuBlk nav > ul > li:not(:last-child) > a::before,
	.header .menuBlk nav > ul > li:not(:last-child) > a._after::after{
		content:"";
		position:absolute;
		width: 1px;
		height: 100%;
		background-color: #6DBA79;
	}
	.header .menuBlk nav > ul > li:not(:last-child) > a::before{left: 0px;}
	.header .menuBlk nav > ul > li:not(:last-child) > a._after::after{right:0px}
	.header .menuBlk nav > ul > li > a._active {
		color: #47E68A;
	}
	.header .menuBlk nav > ul > li > a:hover {}
	@media screen and (min-width: 1025px) {
		.header .menuBlk nav > ul > li a:hover {
			color: #47E68A;
		}
	}
	.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(0.938rem, -2.723rem + 5.71vw, 1.563rem);
		min-width: 200px;
		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 {
		position: relative;
		font-size: 14px;
	}
	.header .menuBlk nav > ul > li > ul > li > a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px; /* 文字との距離はお好みで */
	width: 100%;
	height: 1px;
	background-color: #137B67;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}
	.header .menuBlk nav > ul > li > ul > li > a:hover::after {
		transform: scaleX(1);
	}
	.header .menuBlk nav > ul > li > ul > li > a:hover {
    color: #137B67;
    opacity: 1;
}
	.header .menuBlk nav > ul > li._contact {
    padding: 0 50px;
}
	.header .menuBlk nav > ul > li._contact._tel {}
	.header .menuBlk nav > ul > li._contact._mail {
    overflow: hidden;
}
	.header .menuBlk nav > ul > li._contact a {
		display: flex;
		align-items: center;
	}
	.header .menuBlk nav > ul > li._contact._tel a {
		padding: 0 0 0 20px;
		line-height: 1;
		font-size: 26px;
		font-size: clamp(1.5rem, 1.034rem + 0.73vw, 1.625rem);
		font-weight: 300;
		background-image: url(./images/icon_tel01_black.svg);
		background-repeat: no-repeat;
		background-position: left top 80%;
		background-size: 16px;
		background-size: clamp(0.938rem, 0.705rem + 0.36vw, 1rem);
	}
	.header .menuBlk nav > ul > li._contact._mail a {
		position: relative;
		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(--mailBtnBg);
		overflow: hidden;
	}
	.btn-flash a::before {
	  content: '';
	  position: absolute;
	  top: 0;
	  left: -100%;
	  width: 100%;
	  height: 100%;
	  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 80%);
	  transition: .5s;
	}
	@media screen and (min-width: 1025px) {
		.header .menuBlk nav > ul > li._contact._mail a:hover{
			opacity:1;
		}
		/* ホバー時のスタイル */
		.btn-flash a:hover::before {
		  top: 0;
		  left: 100%;
		}
	}
	.header .menuBlk nav > ul > li._contact._mail > a > span {
		line-height: 1;
	}
}
@media screen and (max-width: 1024px) {
	.header {
		height: 60px;
		box-shadow: none;
	}
	.header .inner {
		background: white;
		padding: 0px 0px 0 25px;
		box-shadow: 0 2px 10px rgb(0 0 0 / 5%);
		margin: auto;
	}
	.header .blk {}
	.header .logoBlk {
    max-width: initial;
    padding: initial;
}
	.header .logoBlk a {
    margin: 5px 0 0;
}
	.header .logoBlk a img {
		height: 23px;
	}
	.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: 0px 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 {
    width: 100%;
}
	.header .menuBlk nav > ul {
		display: block;
		height: auto;
	}
	.header .menuBlk nav > ul > li {
		position: relative;
		display: block;
		height: auto;
		border-bottom: 1px solid #ccc;
		/* background: linear-gradient(#3AB199 0%, #1A836F 100%); */
	}
	.header .menuBlk nav > ul > li > span {
		position: absolute;
		top: 0;
		right: 0;
		height: 100%;
		width: 70px;
	}
	.header .menuBlk nav > ul > li > a {
		display: flex;
		font-size: 15px;
		padding: 15px 25px;
		color: #fff;
		background: linear-gradient(#3AB199 0%, #1A836F 100%);
	}
	.header .menuBlk nav > ul > li._parent > a {
		position: relative;
	}
	.header .menuBlk nav > ul > li._parent::before {
		content: '';
		border-style: solid;
		border-width: 5px 5px 0px 5px;
		border-color: #fff transparent transparent transparent;
		position: absolute;
		top: 25px;
		right: 15px;
		transform: translateY(0%);
		transition: .3s;
		z-index: 1;
	}
	.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;
		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; */
		background-color: #F4FFFD;
	}
	.header .menuBlk nav > ul > li > ul > li {
		height: 0;
		transition: .3s;
	}
	.header .menuBlk nav > ul > li._childOpen > ul > li {
		height: auto;
		/* padding: 15px 25px; */
	}
	.header .menuBlk nav > ul > li._childOpen > ul > li:not(:last-child) {
		border-bottom:1px solid #C6D6E5;
	}
	.header .menuBlk nav > ul > li > ul > li > a {
		font-size: 14px;
		opacity: 0;
		visibility: hidden;
	}
	.header .menuBlk nav > ul > li._childOpen > ul > li > a {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		display: inline-block;
		width: 100%;
		height: 100%;
		padding: 15px 25px;
	}
	.header .menuBlk nav > ul > li._contact {
		border-bottom: none;
	}
	.header .menuBlk nav > ul > li._contact > a {
		width: 250px !important;
		margin: auto;
	}
	.header .menuBlk nav > ul > li._contact._tel {
		margin: 40px 0 0;
	}
	.header .menuBlk nav > ul > li._contact._tel > a {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 5px 0;
		flex-flow: wrap;
		padding: 15px 0;
		font-size: 26px;
		line-height: 23px;
		font-weight: 500;
		border: 1px solid;
		background: unset;
	}
	.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;
	}
	.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 {
		margin: 15px auto 0;
	}
	.header .menuBlk nav > ul > li._contact._mail > a {
		display: grid;
		place-items: center;
		padding: 15px 0;
		box-shadow: 0 3px 6px rgb(0 0 0 / 18%);
		height: auto;
		color: white;
		background: var(--mailBtnBg);
	}
	.header .menuBlk nav > ul > li._contact._mail > a > img {
		height: 20px;
	}
	.header .menuBlk nav > ul > li._contact._mail > a > span {
		padding: 27px 0 0;
		background-image: url(./images/icon_mail01_white.svg);
		background-repeat: no-repeat;
		background-position: left 50% top;
		background-size: 25px;
	}
	.header .mbMenuBlk {
		position: relative;
		width: 80px;
		height: 100%;
		aspect-ratio: 1/1;
		cursor: pointer;
		background: linear-gradient(#3AB199 0%, #1A836F 100%);
	}
	.header .mbMenuBlk::before {
	content: 'MENU';
	color: #fff;
	font-size: 10px;
	position: absolute;
	top: 0;
	right: 0;
	right: 26px;
	top: 10px;
}
	.header .mbMenuBdrBlk, .mbMenuBdrBlk span {
		display: inline-block;
		box-sizing: border-box;
	}
	.header .mbMenuBdrBlk {
		position: absolute;
		top: 36px;
		left: 50%;
		width: 30px;
		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: 1.5px;
		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: -9px;
		transition-delay: .2s;
	}
	.header .mbMenuBdrBlk span:nth-of-type(2) {
		top: 0px;
		transition-delay: .2s;
	}
	.header .mbMenuBdrBlk span:nth-of-type(3) {
		top: 9px;
		transition-delay: .2s;
	}
	.header._menuOpen .mbMenuBdrBlk::before {
		transform: rotate(45deg) scaleX(1);
		transition-delay: .2s;
	}
	.header._menuOpen .mbMenuBdrBlk::after {
		transform: rotate(-45deg) scaleX(1);
		transition-delay: .2s;
	}
	.header._menuOpen .mbMenuBdrBlk span {
		transform: scaleX(0);
		transition-delay: 0s;
	}
	.header .contactBlk {
    width: initial;
    padding: 50px 0 30px;
    background: #F7F8F8;
}
	.header .contactHeadBlk {}
	.header .contactTitle {}
	.header .top_cmn_head {}
	.header .contactMainBlk {
    margin: 10px 0 0;
}
	.header .contactMainText {
    text-align: center;
    font-size: 13px;
}
	.header .contactMainLinkBlk {
    margin: 15px 0 0;
    text-align: center;
}
	.header .contactMainLinkBlk .cmn_link1{
    padding: 0 0 0 25px;
    max-width: 270px;
    height: 50px;
    font-size: 13px;
    background: #000;
}
	.header .contactMainLinkBlk .cmn_link1:before{
    right: 25px;
}
}
/*====================================

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 {
	position: relative;
	display: grid;
}
.footer::before{
	content:"";
	position:absolute;
	top: 70px;
	width: 100%;
	height: 1px;
	background-color: #fff;
}
.footer .topBlk{
    padding: 75px 0 40px;
    background: linear-gradient(#3AB199 0%, #126A59 100%);
}
.footer .bottomBlk{
    background: #333;
    padding: 30px 0 40px;
}
.footer .inner {position: relative;margin: 35px auto 0;}
.footer .linkBtnBlk{
    position: absolute;
    bottom: -25px;
    right: -35px;
    width: 65px;
    height: 65px;
} 
.footer .linkBtn {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    width: 65px;
    height: 65px;
    background-color: #333;
}
.footer .linkBtn::before {
	content: 'TOP';
	position: absolute;
	right: 50%;
	bottom: 5px;
	transform: translate(50%, 0%);
	color: #fff;
	font-size: 14px;
}
.footer .linkBtn::after{
	content:"";
	position: absolute;
	top: 10px;
	left: calc(50% - 2px);
	width: 6px;
	height: 26px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: translate(-50%, 0) rotate(0deg) translateY(2px) skewY(-30deg);
}
.footer .blk {}
.footer .mainBlk {
	justify-content: space-between;
	overflow: hidden;
}
.footer .mainLeftBlk {
    height: 100%;
}
.footer .mainLogoBlk {}
.footer .mainLogoBlk a {}
.footer .mainLogoBlk img {
	height: 55px;
	height: clamp(2.813rem, -0.848rem + 5.71vw, 3.438rem);
}
.footer .mainInfoBlk {
	margin: 15px 0 0;
}
.footer .mainInfoBlk p {
	font-size: 12px;
	line-height: 19px;
	color: #fff;
	font-weight: 300;
}
.footer .mainInfoBlk p a {}
.footer .mainPolicyBlk{
    margin: 100px 0 0;
}
.footer .mainPolicy{
    color: #fff;
    font-size: 14px;
    FONT-WEIGHT: 300;
}
.footer .menuBlk {
}
.footer .menuBlk > ul {
	gap: 30px;
}
.footer .menuBlk > ul > li {
    width: 145px;
    width: clamp(8.438rem, 4.777rem + 5.71vw, 9.063rem);
}
.footer .menuBlk > ul > li > a {
	font-weight: 400;
}
.footer .menuBlk > ul > li a, .footer .menuBlk > ul > div > li a {
	color: #fff;
}
@media screen and (min-width: 1025px){
	.footer .menuBlk > ul > li a:hover,  .footer .menuBlk > ul > div > li a:hover{
		color: #47E68A;
	}
}
.footer .menuBlk > ul > li > a, .footer .menuBlk > ul > div > li a{
    position: relative;
}
.footer .menuBlk > ul > li> a::before, .footer .menuBlk > ul > div > li a::before{
	content:"";
	position:absolute;
	bottom: -6px;
	width: 145px;
	width: clamp(8.438rem, 4.777rem + 5.71vw, 9.063rem);
	height: 1px;
	background-image: repeating-linear-gradient(90deg, #ffffff, #ffffff 2px, transparent 2px, transparent 4px);
	background-position: left bottom;
	background-repeat: repeat-x;
	background-size: 100% 1px;
}
.footer .menuFlexBlk{
    display: grid;
    gap: 55px;
}
.footer .menuBlk > ul > li > ul {
	display: grid;
	gap: 8px;
	margin: 15px 0 0;
}
.footer .menuBlk > ul > li > ul > li {}
.footer .menuBlk > ul > li > ul > li > a {
	font-size: 14px;
	FONT-WEIGHT: 300;
	color: #DDE0E3;
}
.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 {
}
.footer .copyrightBlk p {
	font-size: 13px;
	color: #fff;
	text-align: center;
	FONT-WEIGHT: 300;
}
.footer .recaptchaBlk {
	    margin: 6px 0 0;
}
.footer .recaptchaBlk p {
	font-size: 10px;
	color: #fff;
	text-align: center;
}
@media screen and (max-width: 1024px) {
	.footer {
	padding: 0 0 50px;
	}
	.footer::before{
		content:initial;
	}
	.footer .topBlk{
    padding: 20px;
}
	.footer .bottomBlk{
    padding: 10px;
}
	.footer .inner {
    margin: 0 auto;
}
	.footer .blk {}
	.footer .mainBlk {
		justify-content: center;
		gap: 35px;
	}
	.footer .mainLeftBlk {
		order: 2;
		width: 100%;
	}
	.footer .mainLogoBlk {
		text-align: center;
	}
	.footer .mainLogoBlk a {}
	.footer .mainLogoBlk img {
		height: 35px;
	}
	.footer .mainInfoBlk {
		margin: 5px 0 0;
	}
	.footer .mainInfoBlk p {
		line-height: 1.6;
		text-align: center;
	}
	.footer .mainInfoBlk p a {}
	.footer .menuBlk {
		order: 1;
		width: 100%;
		flex: unset;
	}
	.footer .menuBlk {
		text-align: center;
	}
	.footer .menuBlk > ul {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		max-width: var(--maxWidth375);
		margin: auto;
		gap: 15px 0;
	}
	.footer .menuBlk > ul > li {
		text-align: center;
	}
	.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 {
	}
	.footer .copyrightBlk p {
    font-size: 11px;
}
	.footer .recaptchaBlk {}
	.footer .recaptchaBlk p {}
}
/*====================================

6. Common Style

====================================*/
/*
6.1 Single
====================================*/
.cmn_bgColor {
	background-color: var(--contentsBg);
}
.cmn_outer {
	padding: 90px 0;
}
.cmn_inner {
	max-width: 1180px;
	padding: 0 40px;
	margin: auto;
}
.cmn_inner._small {
	max-width: 750px;
	padding: 0;
}
.cmn_link1 {
	overflow: hidden;
	z-index: 1;
	position: relative;
	display: inline-flex;
	align-items: center;
	width: 240px;
	height: 50px;
	color: #fff;
	background: var(--mainColor);
	padding: 0 0 0 70px;
	FONT-WEIGHT: 400;
	transition: .3s;
}
.cmn_link1:before {
	content:"";
	position: absolute;
	right: 70px;
	width: 26px;
	height: 4px;
	border-bottom: 1px solid #fff;
	border-right: 2px solid #fff;
	transform: skew(45deg);
}
.cmn_link1::after {
	content: '';
	position: absolute;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	transition: .3s;
	opacity: 0;
	background: linear-gradient(to right,#066754 0%, #18957B 100%);
}
.cmn_link1:hover::after {
	opacity: 1;
}
@media screen and (min-width: 1025px) {
	.cmn_link1:hover{
		opacity:1;
	}
	.cmn_link1:hover::before {}
}
/*head*/
.cmn_head1 {
	position: relative;
	font-size: 24px;
	FONT-WEIGHT: 400;
	padding: 0 0 10px;
}
.cmn_head1::before, .cmn_head1::after {
	content:"";
	position:absolute;
	bottom: 0;
	left: 0;
	height: 1px;
}
.cmn_head1::before {
    width: 100%;
    background-color: #C0E3DC;
}
.cmn_head1::after {
    left: 0;
    width: 95px;
    background-color: #137B67;
}
/*title*/
.cmn_title1 {
	margin: 30px 0 0;
	font-size: 30px;
	line-height: 44px;
	font-weight: bold;
}
/*text*/
.cmn_text1 {
	margin: 25px 0 0;
	font-size: 16px;
	line-height: 35px;
}
/*content*/
.cmn_menu {
    padding: 140px 0 75px;
}
.cmn_menu .inner {}
.cmn_menu .mainBlk {
    gap: 15px;
    justify-content: center;
    align-items: center;
}
.cmn_menu .mainLink {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 170px;
    height: 40px;
    border: 1px solid #90CBBF;
    font-size: 15px;
}
@media screen and (min-width: 1025px) {
	.cmn_menu .mainLink:hover{
	    color: var(--mainColor2);
	}
}
@media screen and (max-width: 1024px) {
	.cmn_outer {
		padding: 60px 0;
	}
	.cmn_inner {
		width: 92%;
		max-width: var(--maxWidth768);
		padding: 0;
	}
	.cmn_link1 {
		width: 100%;
		max-width: var(--maxWidth300);
		height: 55px;
		font-size: 1rem;
		padding: 0 0 0 75px;
	}
	.cmn_link1:before {
	right: 75px;
	width: 20px;
	height: 5px;
	}
	.cmn_link1:after{
		content:initial;
	} 
	/*head*/
	.cmn_head1 {
		font-size: 18px;
		padding: 0 0 5px;
	}
	.cmn_head1::before, .cmn_head1::after {}
	.cmn_head1::before {}
	.cmn_head1::after {
    width: 75px;
}
	/*title*/
	.cmn_title1 {
		margin: 20px 0 0;
		font-size: 18px;
		line-height: 24px;
		text-align: center;
		font-weight: bold;
	}
	/*text*/
	.cmn_text1 {
		font-size: 13px;
		line-height: 23px;
	}
	.cmn_menu {}
	.cmn_menu .inner {}
	.cmn_menu .mainBlk {
    gap: 10px;
}
	.cmn_menu .mainLink {
    width: 150px;
    height: 35px;
    font-size: 13px;
}
}
/*
6.2 Section
====================================*/
/* lower top */
.cmn_top {
	height: 325px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#company .cmn_top {
}
#service .cmn_top {
	background-image: url(./images/dummy.jpg);
}
.cmn_top._small {
	height: 150px;
	background: var(--lowerTopBg);
}
.cmn_top .inner {
	height: 100%;
}
.cmn_top .blk {
	display: flex;
	height: 100%;
}
.cmn_top .headBlk {
	position: relative;
	height: 100%;
	display: flex;
	width: 425px;
	width: clamp(22.875rem, 1.277rem + 33.71vw, 26.563rem);
	background: linear-gradient(#3AB199 0%,  #1A836F 100%);
	padding: 105px 0 0 150px;
}
.cmn_top .headBlk::before{
	content:"";
	position:absolute;
	top: 0;
	left: 135px;
	width: 1px;
	height: 190px;
	background: #90CBBF;
}
.cmn_top .head {
	font-size: 27px;
	line-height: 44px;
	font-weight: 400;
	color: #fff;
}
.cmn_top .head span {
	font-weight: 400;
	font-size: 35px;
	line-height: 44px;
	display: block;
	padding: 5px 0 0;
	color: #90CBBF;
}
.cmn_top .mainImgBlk{
    flex: 1;
}
.cmn_top .mainImgBlk img{
    width: 100%;
    height: 100%;
}
/* table */
.cmn_table > dl {
	border-top: 1px solid #DDE0E3;
	background: white;
}
.cmn_table > dl > div {
	display: flex;
	flex-flow: wrap;
	border-bottom: 1px solid #DDE0E3;
}
.cmn_table > dl > div:last-child {
}
.cmn_table > dl > div > * {
	padding: 25px 55px;
}
.cmn_table > dl > div > dt {
	width: 225px;
	background: var(--tableItemBg);
	FONT-WEIGHT: 500;
}
.cmn_table > dl > div > dd {
	flex: 1;
	padding: 25px 45px;
	font-weight: normal;
}
.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;
}
@media screen and (max-width: 1024px) {
	.cmn_top {
		height: 150px;
	}
	.cmn_top._small {
		height: 100px;
	}
	.cmn_top .inner {}
	.cmn_top .blk {}
	.cmn_top .headBlk {
    width: 135px;
    /* width: clamp(8.438rem, 0.131rem + 35.44vw, 22.813rem); */
    padding: 50px 0 0 25px;
}
	.cmn_top .headBlk::before{
    left: 15px;
    height: 105px;
}
	.cmn_top .head {
		font-size: 15px;
		line-height: 1;
	}
	.cmn_top .head span {
		font-size: 20px;
		line-height: 1.6;
	}
	.cmn_top .mainImgBlk{}
	/* table */
	.cmn_table > dl {
		border: 1px solid #d7dce2;
		background: white;
	}
	.cmn_table > dl > div {
		display: flex;
		flex-flow: wrap;
		border-bottom: 1px solid #d7dce2;
	}
	.cmn_table > dl > div:last-child {
		border-bottom: transparent;
	}
	.cmn_table > dl > div > * {
		padding: 10px 15px;
	}
	.cmn_table > dl > div > dt {
		width: 100%;
		border-right: transparent;
	}
	.cmn_table > dl > div > dd {
		flex: unset;
		width: 100%;
		padding: 10px 15px;
	}
	.cmn_table > dl > div > dd a {}
	.cmn_table > dl > div > dd a[href^="tel"] {}
}
/*====================================

7. Module

====================================*/
/*modal*/
.mod_modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100dvh;
	padding: 0 40px;
	background-color: rgb(51, 51, 51, 65%);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
@media screen and (max-width: 1024px) {
	.mod_modal {
		padding: initial;
	}
}
.mod_modal._open {
	transition: all .5s;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.mod_modal .inner {
	position: relative;
	min-width: 50%;
	max-height: 90%;
	padding: 60px clamp(0.938rem, 0.795rem + 0.61vw, 1.25rem);
	border-radius: 10px;
	background: #fff;
}
@media screen and (max-width: 1024px) {
	.mod_modal .inner {
		max-width: initial;
	}
}
.mod_modal .blk {
    position: relative;
}
.mod_modal .closeBtn {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 2px solid #000;
	background: #fff;
	pointer-events: auto;
	cursor: pointer;
	transition: all .3s;
}
.mod_modal .closeBtn::before, .mod_modal .closeBtn::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50%;
	height: 2px;
	background: #000;
	border-radius: 4px;
	transition: all .3s;
}
.mod_modal .closeBtn::before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.mod_modal .closeBtn::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (min-width: 1025px) {
	.mod_modal .closeBtn:hover {
		background: #000;
		opacity: 1;
	}
	.mod_modal .closeBtn:hover::before, .mod_modal .closeBtn:hover::after {
		background: #fff;
	}
}
.mod_modal .mainBlk {
    display: none;
    max-height: calc((100dvh - 10dvh) - 120px);
    padding: 0 clamp(0rem, -0.568rem + 2.42vw, 1.25rem);
    overflow: auto;
}
.mod_modal .mainBlk._active {
	display: block;
}
/* float link */
.mod_floatLink {
	position: fixed !important;
	display: flex;
	flex-flow: column;
	gap: 10px;
	top: 200px !important;
	z-index: 1;
}
.mod_floatLink a {
    display: grid;
    place-items: center;
    padding: 30px 0;
    width: 50px;
    font-size: 15px;
    letter-spacing: 2px;
    color: white;
    background: #139AFD;
    FONT-WEIGHT: 400;
}
@media screen and (min-width: 1025px) {
	.mod_floatLink a:hover{
		background-color: #008BF0;
		opacity:1;
	}
}
.mod_floatLink a._color{
    background-color: #0454C1;
}
@media screen and (min-width: 1025px) {
	.mod_floatLink a._color:hover{
		background-color: #0247A5;
	}
}
.mod_contact_outer {
    padding: 45px 0 35px;
    background-color: #EFEFEF;
}
.mod_contact_outer .inner {}
.mod_contact_outer .blk {
    background-color: #fff;
    padding: 10px 0 30px;
}
.mod_contact_outer .headBlk {}
.mod_contact_outer .mainTextTitle {
    text-align: center;
}
.mod_contact_outer .mainBlk {
    margin: 25px 0 0;
}
.mod_contact_outer .mainText {
    font-size: 15px;
    text-align: center;
}
.mod_contact_outer .mainLinkBlk {
    margin: 15px 0 0;
    text-align: center;
}
.mod_contact_outer .cmn_link1{
    display: flex;
    width: 585px;
    height: 70px;
    background: #161A1A;
    padding: 0 0 0 120px;
    font-size: 20px;
    overflow: hidden;
    /* text-decoration: none; */
    margin: 0 auto;
}
.mod_contact_outer .cmn_link1:before{
    right: 120px;
}
.mod_contact_outer .cmn_link1::after{
    background: initial;
}
.mod_contact_outer .cmn_link1:hover::after{
    background: var(--mailBtnBg);
}
.mod_contact_outer .cmn_link1:hover {
  background-position: right center;
  background-size: 200% auto;
  -webkit-animation: pulse 2s infinite;
  animation: ripple 1.5s infinite;
  color: #fff;
}
@keyframes ripple {
  0% {box-shadow: 0 0 0 0 #333;}
  70% {box-shadow: 0 0 0 10px rgb(51 51 51 / 0%);}
  100% {box-shadow: 0 0 0 0 rgb(51 51 51 / 0%);}
}

@media screen and (max-width: 1024px){
	.mod_spFixed{
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: 99999;
		height: 50px;
		display: flex !important;
		width: 100%;
	}
	.mod_spFixed .inner{
		width: 100%;
	}
	.mod_spFixed .blk{
		height: 100%;
	}
	.mod_spFixed .mainBlk{
		height: 100%;
	}
	.mod_spFixed .telLinkBlk{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 16%;
		height: 100%;
		background: linear-gradient(#1CAD59 0%,  #02642B 100%);
	}
	.mod_spFixed .telLink{
		display: inline-block;
		width: 100%;
		text-align: center;
	}
	.mod_spFixed .telLink img{
		width: 15px;
	}
	.mod_spFixed .mailLinkBlk{
		width: 49%;
		height: 100%;
		color: #fff;
		background: linear-gradient(#5A5A5A 0%, #333333 100%);
	}
	.mod_spFixed .telLinkTxt{
		color: var(--mainColor);
		font-size: 13px;
		line-height: 17px;
		text-align: center;
		margin: 3px 0 0;
	}
	.mod_spFixed .telLinkTxt > span._color{
		color:var(--mailBtnBg);
		font-weight: bold;
	}
	.mod_spFixed .mailLink{
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 4px;
		height: 100%;
	}
	.mod_spFixed .mailLinkImgBlk{}
	.mod_spFixed .mailLinkImgBlk img{
		width: 20px;
		margin: 0 0 3px;
	}
	.mod_spFixed .mailLinkTxt{
		font-size: 13px;
	}
	.mod_spFixed .recruitLinkBlk{
    width: 35%;
    height: 100%;
    color: #fff;
    background: linear-gradient(#139AFD 0%, #137BC7 100%);
}
	.mod_spFixed .recruitLink{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    height: 100%;
}
	.mod_spFixed .recruitLink img{
    width: 17px;
}
	.mod_spFixed .recruitLinkTxt{
    font-size: 13px;
    FONT-WEIGHT: 500;
}
}
/*====================================

8. Page

====================================*/
/*
Top
====================================*/
/*common start*/
.top_cmn_head {
	font-size: 19px;
	line-height: 1;
	FONT-WEIGHT: 500;
}
.top_cmn_head span {
	display: block;
	font-size: 55px;
	font-weight: 500;
	color: var(--mainColor2);
	padding: 0 0 10px;
}
/*common end*/
/* ====================================
   TOP MV
==================================== */
.top_mv {
	position: relative;
	height: calc(100vh - var(--headerH));
	background-image: url(./images/top_mv_bg01.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-color: #000;
}

.top_mv .inner {
	height: 100%;
}

.top_mv .blk {
	height: 100%;
}

/* ====================================
   Catch Copy
==================================== */
.top_mv .catchBlk {
}
.top_mv._slider .catchBlk {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
.top_mv .catch {
	font-weight: 500;
	font-size: 60px;
}
.top_mv._slider .catch {
	font-size: 29px;
	background-color: rgba(255, 255, 255, 0.75);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
	padding: 26px 28px;
	letter-spacing: 1px;
	font-weight: 500;
}
.top_mv._slider .catchSpan {
	position: relative;
	display: inline-flex;
	padding: 0 15px;
	line-height: 31px;
	text-shadow: 0 0.7px 0.7px #333;
}
.top_mv._slider .catchSpan:nth-of-type(2) {
	padding: 0 23px 0 17px;
}
.top_mv._slider .catchSpan::before,
.top_mv._slider .catchSpan:first-of-type::before {
	content: "";
	position: absolute;
	right: 0;
	width: 2px;
	height: 100%;
	background-image: radial-gradient(circle, #3ab199 1px, transparent 1px);
	background-repeat: repeat-y;
	background-size: 3px 5px;
}
.top_mv._slider .catchSpan:first-of-type::before {
    right: 0;
}
.top_mv._slider .catchSpan:nth-of-type(3)::before{
	content:initial;
}
.top_mv._slider .catchSpan:nth-of-type(2)::after {
	content: "";
	position: absolute;
	left: 0;
	width: 2px;
	height: 100%;
	background-image: radial-gradient(circle, #3ab199 1px, transparent 1px);
	background-repeat: repeat-y;
	background-size: 3px 5px;
}
.top_mv._slider .catchSpan:last-of-type::after {
	content: "";
	position: absolute;
	left: 0;
	width: 2px;
	height: 100%;
	background-image: radial-gradient(circle, #3ab199 1px, transparent 1px);
	background-repeat: repeat-y;
	background-size: 3px 5px;
}
.top_mv._slider {
	background: none;
}
.top_mv .flexBlk {width: 100%;height: 100%;}
.top_mv .slideSet {
	display: flex;
	width: 100%;
	height: 100%;
}
.top_mv .slideBlk {
	width: 50%;
	height: 100%;
	overflow: hidden;
}
.top_mv .slideBlk img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* ====================================
   Slick fade 安定化
==================================== */
.top_mv .slick-list,
.top_mv .slick-track {
	height: 100%;
}
.top_mv .slick-slide {
	height: 100%;
	opacity: 0;
	transition: opacity 3.5s ease-in-out;
}
.top_mv .slick-slide > div {
	height: 100%;
}
/* ====================================
   左右フェード時間差演出
==================================== */
.top_mv .slick-active .slideBlk {
	animation: mvFadeLeft 5.5s ease both;
}
.top_mv .slick-active .slideBlk:last-child {
	animation: mvFadeRight 4s ease both;
	animation-delay: 1.5s;
}
@keyframes mvFadeLeft {
	0% {
		opacity: 0;
	}
	10% {
		opacity: 0.3; /* ← 白がかかっている時間を作る */
	}
	100% {
		opacity: 1;
	}
}
@keyframes mvFadeRight {
	0% {
		opacity: 0.06;
	}
	100% {
		opacity: 1;
	}
}
.slick-prev,
.slick-next {
	display: none !important;
}
.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 {
    padding: 125px 0 0;
}
.top_common .inner {}
.top_common .blk {}
.top_common .headBlk {}
.top_common .head {}
.top_common .mainBlk {
	gap: 75px;
}
.top_common .mainTextBlk {
	flex: 1;
	margin: 35px 0 0;
}
.top_common .mainTextTitle{}
.top_common .mainTextTitle span{}
.top_common .mainTextHead {}
.top_common .mainTextDesc {
}
.top_common .mainLinkBlk {
	margin: 50px 0 0;
}
.top_common .mainLinkBlk a {}
.top_common .mainImgWrap {
	position: relative;
	width: 50%;
	width: calc(50% - 10px);
}
.top_common .mainImgBlk {
	position: relative;
	top: 0;
	right: 100%;
	transform: translate(50%, 0px);
	width: calc(var(--vw)* 50);
}
.top_common .mainImgBlk img {
	width: 100%;
	aspect-ratio: 16 / 10;
	min-height: 680px;
}
/*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 {

}
.top_construction {
    background-color: #333333;
    padding: 50px 0 60px;
    margin: 125px 0 0;
}
.top_construction .inner {}
.top_construction .blk {}
.top_construction .headBlk {}
.top_construction .head {
    color: #fff;
    text-align: center;
}
.top_construction .mainBlk2 {
	overflow: hidden;
	display: flex;
    margin: 20px 0 0;
}
@keyframes infinitySlide {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}
.top_construction .mainBlk2 ul {
	display: flex;
	animation: infinitySlide 300s infinite linear 0.5s both;
}
.top_construction .mainBlk2 ul li {
	width: calc(100vw / 4);
}
.top_construction .mainBlk2 ul li img {}
@media screen and (max-width: 1024px) {
	.top_construction .mainBlk2 ul {
		display: flex;
		animation: infinitySlide 300s infinite linear 0.5s both;
	}
	.top_construction .mainBlk2 ul li {
		width: calc(100vw / 1.5);
	}
	.top_construction .mainBlk2 ul li img {}
}
.top_construction .mainBlk {
    margin: 20px 0 0;
}
.top_construction .mainImgBlk {
    width: calc(100% / 4);
}
.top_construction .mainImgBlk img{}
.top_construction .mainLinkBlk{
    margin: 40px 0 0;
    text-align: center;
}
.top_construction .mainLinkBlk a{}
.top_link {
    padding: 80px 0 125px;
}
.top_link .inner {}
.top_link .blk {}
.top_link .mainBlk {}
.top_link .mainLinkBlk {
    width: calc(100% / 3);
    overflow: hidden;
}
.top_link .mainLink{
    position: relative;
    display: inline-block;
    height: 100%;
}
.top_link .mainLink::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(51, 51, 51, 0.35); /* #333 の 35% 透過 */
	pointer-events: none; /* 画像クリックを邪魔しない */
}
.top_link .mainLink img{
    transition: 0.6s;
}
.top_link .mainLinkTxt {
    position: absolute;
    top: 25px;
    left: 20px;
    font-size: 19px;
    color: #fff;
    filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.5));
    z-index: 1;
}
@media screen and (min-width: 1025px) {
	.top_link .mainLink:hover{
		opacity:1;
	}
	.top_link .mainLink:hover img{
		transform: scale(1.08);
	}
	.top_link .mainLink:hover::after {
		background:initial;
	}
	.top_link .mainLink:hover .mainLinkTxt{
		filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 1));
	}
}
.top_info {
    padding: 100px 0 0;
}
.top_info .inner {}
.top_info .blk {gap: 115px;align-items: end;}
.top_info .headBlk {
    width: 240px;
}
.top_info .head {text-align: center;}
.top_info .headCategoryBlk{
    margin: 20px 0 0;
}
.top_info .headCategoryBlk ul{
    flex-flow: column;
}
.top_info .headCategoryBlk li{
    width: 100%;
    color: var(--mainColor2);
    text-align: center;
    padding: 15px 0;
    background-image: repeating-linear-gradient(90deg, #90cbbf, #90cbbf 2px, transparent 2px, transparent 4px), repeating-linear-gradient(90deg, #90cbbf, #90cbbf 2px, transparent 2px, transparent 4px);
    background-position: left top, left bottom;
    background-repeat: repeat-x, repeat-x;
    background-size: 100% 1px, 100% 1px;
}
.top_info .headCategoryBlk li:not(:first-child){
    background-image: repeating-linear-gradient(90deg, #90cbbf, #90cbbf 2px, transparent 2px, transparent 4px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 1px;
}
.top_info .mainBlk {
	flex: 1;
	border-top: 1px solid #DDE0E3;
	border-bottom: 1px solid #DDE0E3;
}
.top_info .mainBlk article {
}
.top_info .mainBlk article:not(:last-child){
    background-image: repeating-linear-gradient(90deg, #dde0e3, #dde0e3 2px, transparent 2px, transparent 4px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 1px;
}
.top_info .mainBlk a {
	justify-content: flex-start;
	align-items: center;
	gap: 25px;
	padding: 10px 0;
}
.top_info .mainImgBlk{}
.top_info .mainImgBlk img{
    width: 125px;
    height: 100%;
}
.top_info .mainTxtBlk{
    flex: 1;
}
.top_info .mainDate {
	display: inline-block;
	font-size: 14px;
	color: #126A59;
}
.top_info .mainCat {
	display: inline-block;
	width: 95px;
	height: 22px;
	margin-left: 15px;
	font-size: 12px;
	color: var(--mainColor2);
	border: 1px solid #90CBBF;
	border-radius: 100px;
	text-align: center;
}
.top_info .articleNew{
    font-size: 14px;
    color: red;
    padding: 0 0 0 15px;
}
.top_info .mainTitle {
	width: 100%;
	margin: 5px 0 0;
	font-size: 15px;
}
@media screen and (min-width: 1025px) {
	.top_info .mainBlk a:hover{
		opacity:1;
	}
	.top_info .mainBlk a:hover .mainTitle {
		color: var(--mainColor2);
	}
}
.top_info .linkBlk {
    margin: 75px 0 0;
}
.top_info .linkBlk a {
    padding: 0 0 0 55px;
}
.top_info .linkBlk .cmn_link1:before{
    right: 55px;
}
@media screen and (max-width: 1024px) {
	/*common start*/
	.top_cmn_head {
		font-size: 17px;
		text-align: center;
		font-weight: bold;
	}
	.top_cmn_head span {
		font-size: 30px;
	}
	/*common end*/
	.top_mv {
		width: 100%;
		aspect-ratio: 16/9;
		min-height: 370px;
		height: auto;
	}
	.top_mv .inner {}
	.top_mv .blk {}
	.top_mv .catchlk {}
	.top_mv .catch {
		font-size: 28px;
		line-height: 38px;
	}
	/*slider*/
	.top_mv._slider {
		background: unset;
	}
	.top_mv._slider .catchBlk {
	min-height: 370px;
	}
	.top_mv._slider .catch {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		min-height: 180px;
		font-size: 17px;
		padding: 10px 15px;
		line-height: 1;
	}
	.top_mv._slider .catchSpan{
	    padding: 0 10px;
	    line-height: 1;
	    text-shadow: 0 0.7px 0.7px #333;
	}
	.top_mv._slider .catchSpan:nth-of-type(2){
    padding: 0 10px;
}
	.top_mv._slider .catchSpan::before, .top_mv._slider .catchSpan:first-of-type::before{}
	.top_mv._slider .catchSpan::before{
    right: -2px;
}
	.top_mv._slider .catchSpan:nth-of-type(2)::after{
    left: -2px;
}
	.top_mv._slider .catchSpan:first-of-type::before{
}
	.top_mv._slider .catchSpan:last-of-type::after{left: initial;right: 100%;}
	.top_mv .flexBlk{min-height: 370px;}
	.top_mv .slideBlk {}
	.top_mv .slideBlk img {
    /* min-height: 375px; */
    object-position: left 30% top 50%;
}
	.top_mv .slideSet:nth-of-type(1) .slideBlk.-left img {
	object-position: bottom 100% left 20%;
}
.top_mv .slideSet:nth-of-type(1) .slideBlk.-right img {
	object-position: right 40% top 100%;
}
	.top_mv .slideSet:nth-of-type(2) .slideBlk.-left img {
	object-position: left 15% top 100%;
}
.top_mv .slideSet:nth-of-type(2) .slideBlk.-right img {
	object-position: left 20% top 100%;
}
	.top_mv .slideSet:nth-of-type(3) .slideBlk.-left img {
	object-position: bottom 100% left 30%;
}

.top_mv .slideSet:nth-of-type(3) .slideBlk.-right img {
	object-position: bottom 100% left 55%;
}
	.top_overview {}
	.top_overview .inner {}
	.top_overview .blk {}
	.top_overview .headBlk {}
	.top_overview .head {
	}
	.top_overview .mainBlk {
		margin: 30px 0 0;
	}
	.top_overview .mainDesc {}
	.top_common {
    padding: 75px 0 0;
}
	.top_common .inner {}
	.top_common .blk {}
	.top_common .headBlk {}
	.top_common .head {}
	.top_common .mainBlk {
		gap: 20px;
		flex-flow: wrap-reverse;
	}
	.top_common .mainImgWrap {
		width: 100%;
		transform: initial;
	}
	.top_common .mainTextBlk {
		flex: unset;
		margin: initial;
	}
	.top_common .mainTextTitle{}
	.top_common .mainTextTitle span{}
	.top_common .mainTextHead {}
	.top_common .mainTextDesc {
		margin: 20px 0 0;
	}
	.top_common .mainLinkBlk {
		margin: 20px 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: initial;
		min-height: unset;
	}
	/*reverse*/
	.top_common .mainBlk._reverse {
		flex-flow: wrap-reverse;
	}
	.top_common .mainBlk._reverse .mainImgBlk {
		/* transform: scale(-1, 1); */
		margin: 0 calc(50% - 50vw);
		width: 100vw;
	}
	/*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_construction {
    padding: 30px 0 50px;
    margin: 55px 0 0;
}
	.top_construction .inner {}
	.top_construction .blk {}
	.top_construction .headBlk {}
	.top_construction .head {}
	.top_construction .mainBlk {}
	.top_construction .mainImgBlk {}
	.top_construction .mainImgBlk img{}
	.top_construction .mainLinkBlk{}
	.top_construction .mainLinkBlk a{}
	.top_link {
    padding: 55px 0 75px;
}
	.top_link .inner {}
	.top_link .blk {}
	.top_link .mainBlk {
    flex-flow: column;
    gap: 20px;
}
	.top_link .mainLinkBlk {
    width: 100%;
    height: 200px;
}
	.top_link .mainLink{width: 100%;}
	.top_link .mainLink::after {}
	.top_link .mainLink img{
    width: 100%;
    height: 100%;
    transition: initial;
}
	.top_link .mainLinkTxt {
    top: 20px;
    font-size: 16px;
}
	.top_info {
    padding: 25px 0 0;
}
	.top_info .inner {}
	.top_info .blk {
    gap: 25px;
}
	.top_info .headBlk {
    width: 100%;
}
	.top_info .head {}
	.top_info .headCategoryBlk{
    margin: 20px 0 0;
}
.top_info .headCategoryBlk ul{
    gap: 10px;
    flex-flow: initial;
    justify-content: center;
}
.top_info .headCategoryBlk li{
    width: calc((100% - 10px) / 2);
    max-width: 115px;
    border: 1px solid #90CBBF;
    background-image: initial;
    padding: 5px 0;
}
.top_info .headCategoryBlk li:not(:first-child){
    background-image: initial;
}
.top_info .headCategoryBlk li a{
    font-size: 13px;
}
	.top_info .mainBlk {
	}
	.top_info .mainBlk article {}
	.top_info .mainBlk article:not(:last-child){
    background-image: initial;
    border-bottom: 1px solid #D7DCE2;
}
	.top_info .mainBlk a {
		gap: 10px;
		padding: 15px 0;
	}
	.top_info .mainImgBlk{}
	.top_info .mainImgBlk img{
    width: 105px;
}
	.top_info .mainDate {
		font-size: 13px;
	}
	.top_info .mainCat {
		width: 75px;
		height: 20px;
		margin-left: 10px;
		font-size: 11px;
	}
	.top_info .articleNew{
    font-size: 13px;
    padding: 0 0 0 10px;
}
	.top_info .mainTitle {
		flex: unset;
		width: 100%;
		margin: 10px 0 0;
	}
	.top_info .linkBlk {
		width: 100%;
		margin: initial;
		text-align: center;
	}
	.top_info .linkBlk a {
    padding: 0 0 0 60px;
}
}
/*
Company
====================================*/
.company_message {
    padding: 0 0 125px;
}
.company_message .inner {}
.company_message .blk {}
.company_message .headBlk {}
.company_message .head {}
.company_message .mainBlk {
	margin: 55px 0 0;
	gap: clamp(2.5rem, -2.138rem + 7.25vw, 3.75rem);
}
.company_message .mainImgBlk {
	flex: 1;
}
.company_message .mainImgBlk img {
	width: 100%;
}
.company_message .mainTextBlk {
	width: calc(50% - 25px);
}
.company_message .mainTextHead {
    font-size: 25px;
    font-weight: bold;
}
.company_message .mainTextDesc {
	margin: 20px 0 0;
	line-height: 2;
}
.company_message .mainTextName {
	display: flex;
	align-items: center;
	justify-content: end;
	font-size: 21px;
	margin: 20px auto 0;
	font-weight: 600;
}
.company_message .mainTextName span {
	font-size: 16px;
	margin: 0 20px 0 0;
}
.company_philosophy {
    padding: 65px 0;
    background-color: var(--contentsBg);
}
.company_philosophy .inner {}
.company_philosophy .blk {
    background-color: #fff;
    padding: 35px 90px;
}
.company_philosophy .headBlk {}
.company_philosophy .head {
    text-align: center;
}
.company_philosophy .cmn_head1::after, .recruit_statue .cmn_head1::after{
    left: 50%;
    transform: translate(-50%, 0px);
}
.company_philosophy .mainBlk {
    margin: 45px 0 0;
}
.company_philosophy .mainHead {
    font-size: 35px;
    FONT-WEIGHT: 500;
    text-align: center;
}
.company_philosophy .mainText {
    margin: 20px 0 0;
    line-height: 2;
    text-align: center;
}
.company_outline {
    padding: 125px 0 0;
}
.company_outline .inner {}
.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: 50px 0 0;
}
.company_iso {
    padding: 125px 0 0;
}
.company_iso .inner {}
.company_iso .blk {}
.company_iso .headBlk {}
.company_iso .head {}
.company_iso .aboutBlk {
    margin: 50px auto 0;
}
.company_iso .aboutImgBlk {width: 245px;margin: 0 auto;}
.company_iso .aboutTxt {
    margin: 50px 0 0;
    font-size: 15px;
}
.company_iso .mainBlk {
    display: grid;
    gap: 45px;
    margin: 50px 0 0;
}
.company_iso .mainItemBlk {
    border: 1px solid #3AB199;
    padding: 45px 55px 50px;
}
.company_iso .mainItemHeadBlk {}
.company_iso .mainItemHead {
    font-size: 20px;
    FONT-WEIGHT: 500;
}
.company_iso .mainItemSubHead {
    margin: 30px 0 0;
    font-size: 15px;
    font-weight: bold;
}
.company_iso .mainItemTxt {
    margin: 10px 0 0;
    font-size: 15px;
}
.company_iso .mainTableBlk {
    margin: 40px 0 0;
}
.company_iso .mainTableBlk .cmn_table > dl{
    border: 1px solid #DDE0E3;
}
.company_iso .mainTableBlk .cmn_table > dl > div:last-child{
    border-bottom: transparent;
}
.company_iso .mainTableBlk .cmn_table > dl > div > * {
    padding: 15px 40px;
    font-size: 14px;
}
.company_iso .mainTableBlk .cmn_table > dl > div > dt {
    width: 150px;
}
.company_iso .mainTableBlk .cmn_table > dl > div > dd {}
.company_history {}
.company_history .inner {}
.company_history .blk {}
.company_history .headBlk {}
.company_history .head {}
.company_history .mainBlk {
	margin: 40px 0 0;
}
.company_access {
	padding: 90px 0 0px;
}
.company_access .inner {}
.company_access .blk {}
.company_access .headBlk {}
.company_access .head {}
.company_access .readBlk{
    margin: 50px 0 0;
}
.company_access .readTxt{
    line-height: 33px;
}
.company_access .readImgBlk{
    max-width: 280px;
}
.company_access .mainBlk {
	margin: 50px 0 0;
}
.company_access .mainBlk iframe{
    height: 500px;
}
@media screen and (max-width: 1024px) {
	.company_message {
    padding: 0 0 90px;
}
	.company_message .inner {}
	.company_message .blk {}
	.company_message .headBlk {}
	.company_message .head {}
	.company_message .mainBlk {
		gap: 30px;
		margin: 30px 0 0;
	}
	.company_message .mainImgBlk {
		flex: initial;
		width: 100%;
		text-align: center;
	}
	.company_message .mainImgBlk img {
		max-width: var(--maxWidth375);
	}
	.company_message .mainTextBlk {
		width: 100%;
	}
	.company_message .mainTextHead {
    font-size: 20px;
}
	.company_message .mainTextDesc {
		margin: 15px 0 0;
	}
	.company_message .mainTextName {
		margin: 10px auto 0;
		font-size: 18px;
	}
	.company_message .mainTextName span {
		margin: 0 10px 0 0;
		font-size: 14px;
	}
	.company_philosophy {
    padding: 45px 0;
}
	.company_philosophy .inner {}
	.company_philosophy .blk {
    padding: 15px 45px;
}
	.company_philosophy .headBlk {}
	.company_philosophy .head {}
	.company_philosophy .cmn_head1::after, .recruit_statue .cmn_head1::after{}
	.company_philosophy .mainBlk {
    margin: 25px 0 0;
}
	.company_philosophy .mainHead {
    font-size: 25px;
}
	.company_philosophy .mainText {
    margin: 10px auto 0;
    text-align: start;
}
	.company_outline {
    padding: 60px 0 0;
}
	.company_outline .inner {}
	.company_outline .blk {}
	.company_outline .headBlk {}
	.company_outline .head {}
	.company_outline .imgBlk {
		margin: 30px 0 0;
	}
	.company_outline .imgBlk img {}
	.company_outline .mainBlk {
		margin: 25px 0 0;
	}
	.company_iso {
    padding: 75px 0 0;
}
	.company_iso .inner {}
	.company_iso .blk {}
	.company_iso .headBlk {}
	.company_iso .head {}
	.company_iso .aboutBlk {
    margin: 25px 0 0;
}
	.company_iso .aboutImgBlk {
    width: 200px;
}
	.company_iso .aboutTxt {
    margin: 20px 0 0;
    font-size: 13px;
}
	.company_iso .mainBlk {
    gap: 20px;
    margin: 25px 0 0;
}
	.company_iso .mainItemBlk {
    padding: 25px 15px 30px;
}
	.company_iso .mainItemHeadBlk {}
	.company_iso .mainItemHead {
    font-size: 17px;
}
	.company_iso .mainItemSubHead {
    margin: 15px 0 0;
    font-size: 14px;
}
	.company_iso .mainItemTxt {
    margin: 5px 0 0;
    font-size: 13px;
}
	.company_iso .mainTableBlk {
    margin: 20px 0 0;
}
	.company_iso .mainTableBlk .cmn_table > dl{}
	.company_iso .mainTableBlk .cmn_table > dl > div:last-child{}
	.company_iso .mainTableBlk .cmn_table > dl > div > * {
    padding: 10px 15px;
    font-size: 13px;
}
	.company_iso .mainTableBlk .cmn_table > dl > div > dt {
    width: 100%;
}
	.company_iso .mainTableBlk .cmn_table > dl > div > dd {}
	.company_history {
    padding: 75px 0;
}
	.company_history .inner {}
	.company_history .blk {}
	.company_history .headBlk {}
	.company_history .head {}
	.company_history .mainBlk {
		margin: 30px 0 0;
	}
	.company_access {
		padding: 75px 0 0;
	}
	.company_access .inner {}
	.company_access .blk {}
	.company_access .headBlk {}
	.company_access .head {}
	.company_access .readBlk{
    margin: 25px 0 0;
    gap: 10px;
    justify-content: center;
}
	.company_access .readTxt{
    line-height: 1.6;
}
	.company_access .readImgBlk{
    max-width: 240px;
}
	.company_access .mainBlk {
		margin: 20px 0 0;
	}
	.company_access .mainBlk iframe {
		aspect-ratio: 1 / 1;
		height: 300px;
	}
}
/*
Service
====================================*/
.service_outline {
	padding: initial;
}
.service_outline .inner {}
.service_outline .blk {}
.service_outline .mainBlk {}
.service_outline .mainHead {
    font-size: 33px;
    FONT-WEIGHT: 500;
}
.service_outline .mainText {
	margin: 20px 0 0;
	line-height: 2;
}
.service_business {
    padding: 75px 0 125px;
}
.service_business .inner {}
.service_business .blk {}
.service_business .headBlk {}
.service_business .head {}
.service_business .readBlk {
    margin: 35px 0 0;
}
.service_business .readTxt {
    line-height: 2;
}
.service_business .mainBlk {
    display: grid;
    gap: 55px;
    margin: 55px 0 0;
}
.service_business .mainItemBlk {
    gap: 50px;
    gap: clamp(1.25rem, -9.732rem + 17.14vw, 3.125rem);
    margin: 50px 0 0;
    align-items: center;
}
.service_business .mainItemImgBlk {
    width: calc(50% - 25px);
}
.service_business .mainItemImgBlk img{}
.service_business .mainItemImgTxt {
    display: flex;
    align-items: center;
    height: 50px;
    background-color: var(--mainColor2);
    color: #fff;
    font-size: 23px;
    FONT-WEIGHT: 400;
    padding: 0 30px;
}
.service_business .mainImgBlk {}
.service_business .mainItemTxtBlk {
    flex: 1;
}
.service_business .mainItemHead {
    font-size: 25px;
    FONT-WEIGHT: 500;
}
.service_business .mainItemText {
    margin: 35px 0 0;
    line-height: 2;
}
.service_main {
    padding: 90px 0 70px;
}
.service_main .inner {
    max-width: 1295px;
}
.service_main .blk {
    padding: 80px 60px;
    background-color: #fff;
}
.service_main .headBlk {}
.service_main .head {}
.service_main .readBlk{
    margin: 35px 0 0;
}
.service_main .readTxt{
    line-height: 2;
}
.service_main .mainBlk {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(1.25rem, -9.732rem + 17.14vw, 3.125rem);
	margin: 50px 0 0;
}
.service_main .mainBlk > div {
}
.service_main .mainImgBlk {}
.service_main .mainImgBlk img {
	width: 100%;
	aspect-ratio: 16 / 10;
}
.service_main .mainHead {
	font-size: 20px;
	FONT-WEIGHT: 500;
	margin: 25px 0 0;
}
.service_main .mainDesc {
	margin: 10px 0 0;
	line-height: 30px;
}
.service_ict {
    padding: 140px 0 0;
}
.service_ict .inner {}
.service_ict .blk {}
.service_ict .headBlk {}
.service_ict .head {}
.service_ict .readBlk {
    margin: 35px 0 0;
}
.service_ict .readTxt {
    line-height: 2;
}
.service_ict .mainBlk {
    gap: clamp(1.25rem, -9.732rem + 17.14vw, 3.125rem);
    margin: 50px 0 0;
}
.service_ict .mainImgBlk {
    width: calc(50% - 25px);
}
.service_ict .mainTxtBlk {
    display: grid;
    gap: 50px;
    gap: clamp(1.25rem, -9.732rem + 17.14vw, 3.125rem);
    flex: 1;
}
.service_ict .mainTxtItemBlk {}
.service_ict .mainHead {
    font-size: 20px;
    font-weight: bold;
}
.service_ict .mainText {
    margin: 10px 0 0;
    line-height: 2;
}
.service_license {
    padding: 125px 0;
}
.service_license .inner {}
.service_license .blk {}
.service_license .headBlk {}
.service_license .head {}
.service_license .readBlk {
    margin: 35px 0 0;
}
.service_license .readTxt {
    line-height: 2;
}
.service_license .mainBlk {
    display: grid;
    gap: 60px;
    margin: 60px 0 0;
}
.service_license .mainItemBlk {}
.service_license .mainItemHeadBlk {
    font-size: 21px;
    FONT-WEIGHT: 500;
}
.service_license .mainItemHead {
    font-weight: 400;
}
.service_license .mainItemFlexBlk {
    gap: clamp(1.25rem, -9.732rem + 17.14vw, 3.125rem);
    margin: 15px 0 0;
}
.service_license .mainItemFlexItem {
    width: calc((100% - 50px) / 2);
}
.service_license table , td, th {
	width: 100%;
}
.service_license tr:not(:first-child){
    border-bottom: 1px solid #DDE0E3;
}
.service_license td, th {
	padding: 15px 20px;
	width: 30px;
}
.service_license td{
    font-size: 17px;
}
.service_license td:first-child{
    border-right: 1px solid #D4D9DE;
}
.service_license tr:nth-child(odd) td {
  background-color: #F7F7F7; 
}
.service_license td:last-child{
    text-align: center;
}
.service_license th {
	min-width: 110px;
	background: var(--mainColor2);
	font-size: 19px;
	color: #fff;
	padding: 10px 20px;
}
.service_license th:first-child{
    width: 420px;
}
.service_license th:last-child{
    text-align: center;
}
@media screen and (max-width: 1024px) {
	.service_outline {
		position: relative;
	}
	.service_outline .inner {}
	.service_outline .blk {}
	.service_outline .mainBlk {}
	.service_outline .mainHead {
    font-size: 24px;
}
	.service_outline .mainText {
    margin: 10px 0 0;
}
	.service_business {
    padding: 50px 0 60px;
}
	.service_business .inner {}
	.service_business .blk {}
	.service_business .headBlk {}
	.service_business .head {}
	.service_business .readBlk {
    margin: 20px 0 0;
}
	.service_business .readTxt {}
	.service_business .mainBlk {
    gap: 30px;
    margin: 30px 0 0;
}
	.service_business .mainItemBlk {
    flex-flow: column;
    gap: 15px;
    margin: initial;
}
	.service_business .mainItemImgBlk {
    width: 100%;
}
	.service_business .mainItemImgBlk img{}
	.service_business .mainItemImgTxt {
    height: 35px;
    font-size: 17px;
    padding: 0 15px;
}
	.service_business .mainImgBlk {}
	.service_business .mainItemTxtBlk {}
	.service_business .mainItemHead {
    font-size: 18px;
}
	.service_business .mainItemText {
    margin: 10px 0 0;
}
	.service_wrap._main {}
	.service_main {}
	.service_main:not(:last-child) {
		padding: 35px 0 40px;
	}
	.service_main .inner {}
	.service_main .blk {
    padding: 20px 15px;
}
	.service_main .headBlk {}
	.service_main .head {}
	.service_main .readBlk{
    margin: 20px 0 0;
}
	.service_main .readTxt{}
	.service_main .mainBlk {
		margin: 30px 0 0;
		grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
		gap: 25px;
	}
	.service_main .mainBlk > div {
		width: 100%;
	}
	.service_main .mainImgBlk {}
	.service_main .mainImgBlk img {
		width: 100%;
		aspect-ratio: 16 / 10;
	}
	.service_main .mainHead {
		font-size: 16px;
		margin: 10px 0 0;
	}
	.service_main .mainDesc {
		margin: 5px 0 0;
		line-height: 1.6;
	}
	.service_ict {
    padding: 60px 0 0;
}
	.service_ict .inner {}
	.service_ict .blk {}
	.service_ict .headBlk {}
	.service_ict .head {}
	.service_ict .readBlk {
    margin: 20px 0 0;
}
	.service_ict .readTxt {}
	.service_ict .mainBlk {
    flex-flow: column;
    gap: 20px;
    margin: 30px 0 0;
}
	.service_ict .mainImgBlk {
    width: 100%;
}
	.service_ict .mainTxtBlk {flex: initial;}
	.service_ict .mainTxtItemBlk {}
	.service_ict .mainHead {
    font-size: 18px;
}
	.service_ict .mainText {
    margin: 5px 0 0;
}
	.service_license {
    padding: 75px 0;
}
	.service_license .inner {}
	.service_license .blk {}
	.service_license .headBlk {}
	.service_license .head {}
	.service_license .readBlk {
    margin: 30px 0 0;
}
	.service_license .readTxt {}
	.service_license .mainBlk {
    gap: 30px;
    margin: 30px 0 0;
}
	.service_license .mainItemBlk {}
	.service_license .mainItemHeadBlk {
    font-size: 18px;
}
	.service_license .mainItemHead {}
	.service_license .mainItemFlexBlk {
    flex-flow: column;
    margin: 10px 0 0;
}
	.service_license .mainItemFlexItem {
    width: 100%;
}
	.service_license table , td, th {}
	.service_license tr:not(:first-child){}
	.service_license td, th {padding: 10px 15px;width: 30px;}
	.service_license td{
    font-size: 14px;
    align-content: center;
}
	.service_license td:first-child{}
	.service_license tr:nth-child(odd) td {}
	.service_license td:last-child{}
	.service_license th {
    min-width: 80px;
    width: 20%;
    font-size: 15px;
    padding: 10px 15px;
}
	.service_license th:first-child{
    width: 80%;
}
	.service_license th:last-child{}
}
/*
Recruit
====================================*/
.recruit_outline {
    padding: initial;
}
.recruit_outline .inner {}
.recruit_outline .blk {}
.recruit_outline .mainBlk {}
.recruit_outline .mainHead {
    font-size: 33px;
    FONT-WEIGHT: 500;
}
.recruit_outline .mainText {
    margin: 20px 0 0;
    line-height: 2;
}
.recruit_message {
    padding: 75px 0 125px;
}
.recruit_message .inner {}
.recruit_message .blk {}
.recruit_message .headBlk {}
.recruit_message .head {}
.recruit_message .mainBlk {
	margin: 35px 0 0;
	gap: clamp(2.5rem, -2.138rem + 7.25vw, 3.75rem);
}
.recruit_message .mainImgBlk {
	flex: 1;
}
.recruit_message .mainImgBlk img {
	width: 100%;
}
.recruit_message .mainTextBlk {
	width: calc(50% + 10px);
}
.recruit_message .mainTextHead {
    font-size: 25px;
    line-height: 38px;
}
.recruit_message .mainTextDesc {
	margin: 20px 0 0;
	line-height: 2;
}
.recruit_message .mainTextName {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 21px;
	margin: 20px auto 0;
}
.recruit_message .mainTextName span {
	font-size: 16px;
	margin: 0 15px 0 0;
}
.recruit_statue {}
.recruit_statue .inner {
    max-width: 1000px;
}
.recruit_statue .blk {}
.recruit_statue .headBlk {}
.recruit_statue .head {
    text-align: center;
}
.recruit_statue .mainBlk {
	display: grid;
	gap: 20px;
	margin: 45px 0 0;
}
.recruit_statue .mainBlk > div {
	width: 100%;
	background: #fff;
	padding: 40px 65px 45px;
	box-shadow: 0px 2px 10px rgba(19, 123, 103, 0.2);
	margin: 0 auto;
}
.recruit_statue .mainHead{
    font-size: 22px;
    font-weight: bold;
    color: #137B67;
}
.recruit_statue .mainDesc {
	margin: 15px 0 0;
	line-height: 2;
}
.recruit_system {
    padding: 125px 0;
}
.recruit_system .inner {}
.recruit_system .blk {}
.recruit_system .headBlk {}
.recruit_system .head {}
.recruit_system .readBlk {
    margin: 40px 0 0;
}
.recruit_system .readTxt {
    line-height: 2;
}
.recruit_system .mainBlk {
    gap: 20px 35px;
    margin: 40px 0 0;
}
.recruit_system .mainItemBlk {
    width: calc((100% - (35px * 2)) / 3);
    height: 265px;
    background-color: #F7F7F7;
    padding: 40px 35px 20px;
}
.recruit_system .mainImgBlk {
    width: 60px;
    margin: 0 auto;
}
.recruit_system .mainHead {
    margin: 15px 0 0;
    text-align: center;
    font-size: 21px;
    FONT-WEIGHT: 500;
}
.recruit_system .mainTxt {
    margin: 20px 0 0;
    font-size: 15px;
}
.recruit_interview {
    padding: 75px 0;
}
.recruit_interview .inner {
    max-width: 1295px;
}
.recruit_interview .blk {}
.recruit_interview .headBlk {}
.recruit_interview .head {}
.recruit_interview .mainBlk {
    display: grid;
    gap: 30px;
    margin: 25px 0 0;
}
.recruit_interview .mainItemBlk {
    gap: clamp(2.5rem, -2.138rem + 7.25vw, 3.75rem);
    background-color: #fff;
    padding: 95px 55px;
    box-shadow: 0px 2px 6px rgba(221, 224, 227, 1);
}
.recruit_interview .mainImgFlexBlk {
    display: grid;
    gap: 15px;
    flex: 1;
}
.recruit_interview .mainImgBlk {}
.recruit_interview .mainItemTxtBlk {
    width: calc(50% + 60px);
}
.recruit_interview .mainItemTxtAboutBlk {
    gap: 25px;
    justify-content: start;
    align-items: center;
}
.recruit_interview .mainItemTxtAboutHead {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    height: 35px;
    background-color: #137B67;
    color: #fff;
    font-size: 15px;
    FONT-WEIGHT: 500;
}
.recruit_interview .mainItemTxtAboutName {
    display: flex;
    align-items: center;
    font-size: 20px;
    FONT-WEIGHT: 500;
}
.recruit_interview .mainItemTxtAboutName span{
    position: relative;
    font-size: 15px;
    padding: 0 15px 0 0;
    margin: 0 15px 0px 0;
}
.recruit_interview .mainItemTxtAboutName span::before{
	content:"";
	position:absolute;
	right: 0;
	width: 1px;
	height: 30px;
	background-color: #90CBBF;
}
.recruit_interview .mainItemHead {
    margin: 35px 0 0;
    font-size: 30px;
    line-height: 70px;
    FONT-WEIGHT: 500;
}
.recruit_interview .mainItemTxt {
    margin: 30px 0 0;
    line-height: 30px;
}
.recruit_wrap._requirements {}
.recruit_requirements {}
.recruit_wrap._requirements .recruit_requirements:not(:last-child){
	padding: 90px 0 0;
}
.recruit_wrap._requirements .recruit_requirements:last-child{
	padding: 90px 0 140px;
}
.recruit_requirements .inner {}
.recruit_requirements .blk {}
.recruit_requirements .headBlk {}
.recruit_requirements .head {}
.recruit_requirements .mainBlk {
	margin: 40px 0 0;
	background-color: #fff;
	padding: 95px 100px;
	box-shadow: 0px 2px 10px rgba(221, 224, 227, 1);
}
.recruit_requirements .cmn_table > dl > div > * {
    padding: 25px 45px;
}
.recruit_requirements .cmn_table > dl > div > dd > a{
    text-decoration: initial;
    color: var(--mainColor2);
}
.recruit_requirements .mainaviBlk{
    margin: 75px 0 0;
    text-align: center;
}
.recruit_requirements .mainaviBlk > a{}
.recruit_requirements .linkBlk {
	margin: 75px 0 0;
}
.recruit_requirements:first-of-type .linkBlk{
    margin: 30px auto 0;
}
.recruit_requirements .linkBlk a{
    position: relative;
    display: grid;
    place-items: center;
    justify-content: start;
    color: white;
    overflow: hidden;
    width: 375px;
    height: 75px;
    font-size: 22px;
    background: linear-gradient(#139AFD 0%, #0454C1 100%);
    margin: 0 auto;
    padding: 0 0 0 70px;
}
.recruit_requirements .linkBlk a:after {
	content:"";
	position: absolute;
	right: 70px;
	width: 26px;
	height: 4px;
	border-bottom: 1px solid #fff;
	border-right: 2px solid #fff;
	transform: skew(45deg);
}
@media screen and (min-width: 1025px){
	.recruit_requirements .linkBlk a:hover{
    opacity: 1;
}
}
@media screen and (max-width: 1024px) {
	.recruit_outline {}
	.recruit_outline .inner {}
	.recruit_outline .blk {}
	.recruit_outline .mainBlk {}
	.recruit_outline .mainHead {
    font-size: 24px;
}
	.recruit_outline .mainText {
    margin: 10px 0 0;
}
	.recruit_message {
    padding: 50px 0 60px;
}
	.recruit_message .inner {}
	.recruit_message .blk {}
	.recruit_message .headBlk {}
	.recruit_message .head {}
	.recruit_message .mainBlk {
		gap: 30px;
		margin: 30px 0 0;
	}
	.recruit_message .mainImgBlk {
		flex: initial;
		width: 100%;
		text-align: center;
	}
	.recruit_message .mainImgBlk img {
		max-width: var(--maxWidth375);
	}
	.recruit_message .mainTextBlk {
		width: 100%;
	}
	.recruit_message .mainTextHead {
    font-size: 18px;
    line-height: 1.6;
}
	.recruit_message .mainTextDesc {
		margin: 10px 0 0;
	}
	.recruit_message .mainTextName {
		margin: 20px auto 0;
		font-size: 17px;
	}
	.recruit_message .mainTextName span {
		margin: 0 10px 0 0;
		font-size: 13px;
	}
	.recruit_statue {
    padding: 50px 0 60px;
}
	.recruit_statue .inner {}
	.recruit_statue .blk {}
	.recruit_statue .headBlk {}
	.recruit_statue .head {}
	.recruit_statue .mainBlk {
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
		gap: 15px;
		margin: 30px auto 0;
	}
	.recruit_statue .mainBlk > div {
		width: 100%;
		min-height: unset;
		padding: 20px 15px;
	}
	.recruit_statue .mainHead{
    font-size: 18px;
}
	.recruit_statue .mainDesc {
	margin: 10px 0 0;
	line-height: 1.6;
	}
	.recruit_system {
    padding: 50px 0;
}
	.recruit_system .inner {}
	.recruit_system .blk {}
	.recruit_system .headBlk {}
	.recruit_system .head {}
	.recruit_system .readBlk {
    margin: 30px 0 0;
}
	.recruit_system .readTxt {}
	.recruit_system .mainBlk {
    gap: 10px;
    margin: 20px 0 0;
}
	.recruit_system .mainItemBlk {
    width: 100%;
    /* width: calc((100% - 10px) / 2); */
    height: auto;
    padding: 15px;
}
	.recruit_system .mainImgBlk {
    width: 50px;
}
	.recruit_system .mainHead {
    margin: 5px 0 0;
    font-size: 17px;
}
	.recruit_system .mainTxt {
    margin: 5px 0 0;
    font-size: 13px;
}
	.recruit_interview {
    padding: 50px 0;
}
	.recruit_interview .inner {}
	.recruit_interview .blk {}
	.recruit_interview .headBlk {}
	.recruit_interview .head {}
	.recruit_interview .mainBlk {
    gap: 20px;
    margin: 20px 0 0;
}
	.recruit_interview .mainItemBlk {
    flex-flow: column;
    gap: 20px;
    padding: 25px 15px;
}
	.recruit_interview .mainImgFlexBlk {
    gap: 10px;
    flex: initial;
}
	.recruit_interview .mainImgBlk {}
	.recruit_interview .mainItemTxtBlk {
    width: 100%;
}
	.recruit_interview .mainItemTxtAboutBlk {
    gap: 10px;
}
	.recruit_interview .mainItemTxtAboutHead {
    width: 90px;
    height: 30px;
    font-size: 13px;
}
	.recruit_interview .mainItemTxtAboutName {
    font-size: 16px;
}
	.recruit_interview .mainItemTxtAboutName span{
    font-size: 13px;
    padding: 0 10px 0 0;
    margin: 0 10px 0px 0;
}
	.recruit_interview .mainItemTxtAboutName span::before{
    height: 25px;
}
	.recruit_interview .mainItemHead {
    margin: 15px 0 0;
    font-size: 20px;
    line-height: 1.6;
}
	.recruit_interview .mainItemTxt {
    margin: 15px 0 0;
    line-height: 1.6;
}
	.recruit_wrap._requirements {}
	.recruit_wrap._requirements .recruit_requirements:not(:last-child){
		padding: 60px 0 0;
	}
	.recruit_wrap._requirements .recruit_requirements:last-child{
		padding: 60px 0 90px;
	}
	.recruit_requirements .inner {}
	.recruit_requirements .blk {}
	.recruit_requirements .headBlk {}
	.recruit_requirements .head {}
	.recruit_requirements .mainBlk {
		margin: 30px 0 0;
		padding: 25px 15px;
	}
	.recruit_requirements .cmn_table > dl > div > *{
    padding: 10px 15px;
}
	.recruit_requirements .mainaviBlk{
    margin: 30px 0 0;
}
.recruit_requirements .mainaviBlk > a{}
.recruit_requirements:first-of-type .linkBlk{
    margin: 15px auto 0;
}
	.recruit_requirements .linkBlk {
		margin: 40px auto 0;
		text-align: center;
	}
	.recruit_requirements .linkBlk a{
    width: 100%;
    height: 60px;
    font-size: 18px;
    padding: 0 0 0 45px;
    max-width: 300px;
}
	.recruit_requirements .linkBlk a:after{
    right: 60px;
}
}
/*
Information
====================================*/
.info_list {
	padding: 90px 0 140px;
}
.info_list .inner {}
.info_list .blk {
    padding: clamp(3.75rem, -7.232rem + 17.14vw, 5.625rem) clamp(5.625rem, -9.018rem + 22.86vw, 8.125rem);
    box-shadow: 0px 2px 10px rgba(221, 224, 227, 1);
}
.info_list {
	padding: 140px 0 125px;
}
.info_list .inner {}
.info_list .linkBlk {}
.info_list .linkBlk ul {
	justify-content: center;
	gap: 15px;
}
.info_list .linkBlk ul li {
	width: 170px;
	height: 40px;
}
.info_list .linkBlk ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	text-align: center;
	font-size: 15px;
	border: 1px solid #90CBBF;
}
@media screen and (min-width: 1025px) {
	.info_list .linkBlk ul li a:hover {
		opacity: 1;
		color: var(--mainColor2);
	}
}
.info_list .linkBlk ul li.current-cat a {
	color: var(--mainColor2);
}
.info_list .mainBlk {
    margin: 50px 0 0;
}
.info_list .mainBlk article {
	border-top: solid 1px #D4D9DE;
}
.info_list .mainBlk article:last-child {
	border-bottom: solid 1px #D4D9DE;
}
.info_list .mainBlk article a {
	padding: 25px 0;
	align-items: center;
	gap: 26px;
}
.info_list .mainImgBlk {
	width: 150px;
}
.info_list .mainImgBlk img {
	width: 100%;
	height: 100%;
	max-height: 106px;
}
.info_list .mainTextBlk {
	flex: 1;
	display: flex;
	flex-flow: wrap;
	align-items: center;
}
.info_list .mainTextDate {
	font-size: 15px;
	color: #126A59;
}
.info_list .mainTextCat {
	margin: 0 0 0 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 115px;
	height: 30px;
	border-radius: 50px;
	font-size: 13px;
	padding: 1px 10px;
	color: var(--mainColor2);
	border: 1px solid #90CBBF;
}
.info_list .articleNew{
    padding: 0 0 0 20px;
    font-size: 14px;
    color: red;
}
.info_list .mainTextTitle {
	font-size: 15px;
	line-height: 26px;
	width: 100%;
	margin: 15px 0 0;
}
@media screen and (min-width: 1025px) {
	.info_list .mainBlk article a:hover .mainTextTitle {
		color: var(--mainColor2);
	}
}
.info_list .paginationBlk {}
.info_detail {
	padding: 140px 0px 120px;
}
.info_detail .inner {}
.info_detail .blk {
    padding: clamp(3.75rem, -7.232rem + 17.14vw, 5.625rem) clamp(5.625rem, -9.018rem + 22.86vw, 8.125rem);
    box-shadow: 0px 2px 10px rgba(221, 224, 227, 1);
}
.info_detail .mainBlk {
    border: 1px solid #D4D9DE;
    padding: 65px 100px 95px;
    padding: clamp(3.125rem, -2.366rem + 8.57vw, 4.063rem) clamp(4.375rem, -6.607rem + 17.14vw, 6.25rem) clamp(4.063rem, -6.92rem + 17.14vw, 5.938rem);
}
.info_detail .mainBlk article {}
.info_detail .mainDate {
	display: inline-flex;
	font-size: 14px;
	color: #126A59;
}
.info_detail .mainCat {
	margin: 0 0 0 20px;
	width: 120px;
	height: 30px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 13px;
	color: var(--mainColor2);
	border: 1px solid #90CBBF;
	border-radius: 50px;
}
.info_detail .mainHead {
	font-size: 22px;
	line-height: 37px;
	margin: 20px 0 0;
	padding: 40px 0;
	border-top: 1px solid #C4C9D0;
	border-bottom: 1px solid #C4C9D0;
	font-weight: normal;
}
.info_detail .mainContentBlk {
	margin: 50px 0 0;
}
.info_detail .mainContentBlk > *:first-child,
.info_detail .mainContentBlk > * *:first-child {
	margin-top: 0;
}
.info_detail .mainContentBlk p {}
.info_detail .mainContentBlk .box._main {
	border: var(--mainColor2) solid 1px!important;
	border-left: var(--mainColor2) solid 10px!important;
}
.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;
	font-size: 14px;
}
.info_detail .mainContentBlk a {
	color: var(--mainColor);
	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;
		background: var(--categoryLinkBg);
		font-size: 14px;
	}
	.info_list {
		padding: 40px 0 70px;
	}
	.info_list .inner {
}
	.info_list .blk {
    padding: 30px 25px;
}
	.info_list .linkBlk {}
	.info_list .linkBlk ul {
    gap: 10px;
}
	.info_list .linkBlk ul li {
    width: 150px;
    height: 35px;
}
	.info_list .linkBlk ul li a {
    font-size: 13px;
}
	.info_list .linkBlk ul li.current-cat a {}
	.info_list .mainBlk {
    margin: 30px 0 0;
}
	.info_list .mainBlk article {
		border-top: solid 1px #DDDDDD;
	}
	.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 .mainImgBlk {
		width: 100%;
	}
	.info_list .mainImgBlk img {
		width: 100%;
		/* aspect-ratio: 16 /10; */
		min-height: 222px;
		max-height: initial;
	}
	.info_list .mainTextBlk {
		flex: unset;
		width: 100%;
	}
	.info_list .mainTextDate {
		font-size: 13px;
	}
	.info_list .mainTextCat {
		margin: 0 0 0 20px;
		width: 90px;
		height: 25px;
		font-size: 12px;
		padding: 1px 5px;
	}
	.info_list .articleNew{
    padding: 0 0 0 20px;
    font-size: 12px;
}
	.info_list .mainTextTitle {
		line-height: 24px;
		width: 100%;
		margin: 15px 0 0;
	}
	.info_list .paginationBlk {}
	.info_detail {
		padding: 40px 0px 70px;
	}
	.info_detail .inner {}
	.info_detail .blk {
    padding: 30px 15px;
}
	.info_detail .mainBlk {
    padding: 25px 15px;
}
	.info_detail .mainBlk article {}
	.info_detail .mainDate {
		display: inline-flex;
		font-size: 12px;
	}
	.info_detail .mainCat {
		margin: 0 0 0 10px;
		display: inline-flex;
		width: 95px;
		height: 30px;
		font-size: 11px;
		padding: 1px 10px;
	}
	.info_detail .mainHead {
		font-size: 18px;
		line-height: 26px;
		margin: 20px 0 0;
		padding: 15px 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_policy {}
.contact_policy .inner {}
.contact_policy .blk {}
.contact_policy .headBlk {}
.contact_policy .head {}
.contact_policy .mainBlk {
	padding: 95px 100px;
	margin: 40px 0 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #fff;
	border: 1px solid #DDE0E3;
}
.contact_policy .mainBlk a {
}
.contact_policy .mainTime {
	margin: 20px 0 0;
}
.contact_form {
	padding: 90px 0 140px;
}
.contact_form .inner {}
.contact_form .blk {}
.contact_form .headBlk {}
.contact_form .head {}
.contact_form .readBlk{
    margin: 30px 0 0;
}
.contact_form .readTxt{
    line-height: 2;
}
.contact_form .mainBlk {
	margin: 30px 0 0;
	background-color: #fff;
	padding: 75px 145px;
	padding: clamp(3.125rem, -6.027rem + 14.29vw, 4.688rem) clamp(6.25rem, -10.223rem + 25.71vw, 9.063rem);
	box-shadow: 0px 2px 6px rgba(196, 201, 208, 0.5);
}
.contact_form .mainBlk .wpcf7-form{
    border: 1px solid #D7DCE2;
    padding: 80px 70px;
    padding: clamp(3.125rem, -7.857rem + 17.14vw, 5rem) clamp(2.5rem, -8.482rem + 17.14vw, 4.375rem);
}
@media screen and (max-width: 1024px) {
	.contact_outline {}
	.contact_outline .inner {}
	.contact_outline .blk {}
	.contact_outline .mainBlk {}
	.contact_outline .mainDesc {
		font-size: 17px;
		line-height: 29px;
		text-align: center;
	}
	.contact_tel {}
	.contact_tel .inner {}
	.contact_tel .blk {}
	.contact_tel .headBlk {}
	.contact_tel .head {}
	.contact_tel .mainBlk {
		padding: 30px 0;
		margin: 25px 0 0;
	}
	.contact_tel .mainBlk a {
		font-size: 28px;
		background-position: left top calc(50% + 2px);
		background-size: 18px;
		padding: 0 0 0 22px;
	}
	.contact_tel .mainTime {
		margin: 10px 0 0;
	}
	.contact_form {
		padding: 50px 0;
	}
	.contact_form .inner {}
	.contact_form .blk {}
	.contact_form .headBlk {}
	.contact_form .head {}
	.contact_form .readBlk{
    margin: 20px 0 0;
}
	.contact_form .readTxt{}
	.contact_form .mainBlk {
		margin: 20px 0 0;
		padding: 25px 15px;
	}
	.contact_form .mainBlk .wpcf7-form{
    padding: 20px 15px;
}
	.contact_policy {
    padding: 50px 0;
}
	.contact_policy .inner {}
	.contact_policy .blk {}
	.contact_policy .headBlk {}
	.contact_policy .head {}
	.contact_policy .mainBlk {
    margin: 30px 0 0;
    padding: 25px 15px;
}
	.contact_policy .mainBlk a {}
	.contact_policy .mainTime {}
}
/*テスト*/