/*
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: #0FC979;
	/*====== 背景カラー ======*/
	/* コンテンツ背景カラー */
	--contentsBg: #F4F5F7;
	/* 下層ページトップ背景カラー */
	--lowerTopBg: #D7E1FA;
	/* 表組み項目名背景カラー */
	--tableItemBg: #F0F5FA;
	/* フォーム項目名背景カラー */
	--formItemBg: #F0F5FA;
	/* カテゴリーリンク背景カラー */
	--categoryLinkBg: #D7E1FA;
	/* メール問い合わせボタン背景カラー */
	--mailBtnBg: #022993;
	/*====== テキストカラー ======*/
	/* テキストカラー */
	--textColor: #333;
	/* リンクテキストカラー */
	--linkTextColor: #0c4876;
	/*====== ページネーションカラー ======*/
	/* ページネーションテキスト、矢印カラー */
	--pnColor: #0FC979;
	/* ページネーションhoverテキスト、矢印カラー */
	--pnHoverColor: #f6f6f6;
	/* ページネーションCurrentテキスト、矢印カラー */
	--pnCurrentColor: #f6f6f6;
	/* ページネーションhover背景カラー */
	--pnHoverBg: #0FC979;
	/* ページネーションCurrent背景カラー */
	--pnCurrentBg: #0FC979;
	/*====== フォント ======*/
	--gothic: "NotoSansJp", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	--mincho: "NotoSerifJp", "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	/*====== width ======*/
	--maxWidth768: 768px;
	--maxWidth500: 500px;
	--maxWidth375: 375px;
	--maxWidth300: 300px;
	/*====== other ======*/
}
/*
Element
====================================*/
body {
	color: var(--textColor);
}
/*
Decoration
====================================*/
/*
Css Animation
====================================*/
/* fade */
.css_fade {
	opacity: 0;
	animation-name: css_fade;
	animation-duration: 3s;
	animation-timing-function: ease;
	animation-delay: 1s;
	animation-direction: normal;
	animation-fill-mode: forwards;
}
@keyframes css_fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/* text fade */
.css_textSplitFade {
	opacity: 0;
}
.css_textSplitFade > span {
	opacity: 0;
	animation: css_textSplitFade 1s ease-out forwards;
}
@keyframes css_textSplitFade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/*
Plugin Overwrite
====================================*/
/*
Slick
---------------------------------------------------------------*/
/*
default.css Overwrite
====================================*/
/*
Other
====================================*/
/*====================================

2. Site Common Style

====================================*/
/*
Pagination
====================================*/
/*
List
---------------------------------------------------------------*/
.pn_list {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 40px;
	margin: 80px 0 0;
}
.pn_list .listArrow::before, .pn_list .listArrow::after {
	content: '';
	position: absolute;
	top: calc(50% + 3px);
	width: 9px;
	height: 9px;
	-webkit-transform: rotate(45deg) translate(-50%, -50%);
	transform: rotate(45deg) translate(-50%, -50%);
	transition: .3s;
}
.pn_list .listPagerBlk {
	display: flex;
	align-items: center;
	gap: 15px;
}
.pn_list .listPagerPrevious::before {
	border-bottom: solid 2px var(--pnColor);
	border-left: solid 2px var(--pnColor);
	left: calc(50% - 0px);
}
.pn_list .listPagerPrevious::after {
	border-bottom: solid 2px var(--pnColor);
	border-left: solid 2px var(--pnColor);
	left: calc(50% - 6px);
}
.pn_list .listPagerBlk a, .pn_list .listPagerBlk span {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 40px;
	width: 40px;
	color: #0fc979;
	border-radius: 5px;
	background: #fff;
	border: 1px solid #0fc979;
}
.pn_list .listPagerBlk span.listPagerNum {
	color: var(--pnCurrentColor);
	background: var(--pnCurrentBg);
}
.pn_list .listPagerNext::before {
	border-top: solid 2px var(--pnColor);
	border-right: solid 2px var(--pnColor);
	right: calc(50% - 0px);
}
.pn_list .listPagerNext::after {
	border-top: solid 2px var(--pnColor);
	border-right: solid 2px var(--pnColor);
	right: calc(50% - 6px);
}
.pn_list .listPagerPrevious:hover::before {
	border-bottom: solid 2px var(--pnHoverColor);
	border-left: solid 2px var(--pnHoverColor);
}
.pn_list .listPagerPrevious:hover::after {
	border-bottom: solid 2px var(--pnHoverColor);
	border-left: solid 2px var(--pnHoverColor);
}
.pn_list .listPagerBlk a:hover {
	color: var(--pnHoverColor);
	background: var(--pnHoverBg);
	opacity: 1;
}
.pn_list .listPagerNext:hover::before {
	border-top: solid 2px var(--pnHoverColor);
	border-right: solid 2px var(--pnHoverColor);
}
.pn_list .listPagerNext:hover::after {
	border-top: solid 2px var(--pnHoverColor);
	border-right: solid 2px var(--pnHoverColor);
}
.pn_list .listFirstBlk, .pn_list .listLastBlk {
	width: 100px;
	height: 100%;
	display: none;
}
.pn_list .listFirstBlk a, .pn_list .listLastBlk a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}
.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);
}
.pn_list .listFirstBlk a:hover::before {
	border-bottom: solid 2px var(--pnHoverColor);
	border-left: solid 2px var(--pnHoverColor);
}
.pn_list .listFirstBlk a:hover::after {
	border-bottom: solid 2px var(--pnHoverColor);
	border-left: solid 2px var(--pnHoverColor);
}
.pn_list .listLastBlk a {
	border-left: solid 1px #E2E6EB;
}
.pn_list .listLastBlk a::before {
	border-top: solid 2px var(--pnColor);
	border-right: solid 2px var(--pnColor);
	right: 50%;
}
.pn_list .listLastBlk a::after {
	border-top: solid 2px var(--pnColor);
	border-right: solid 2px var(--pnColor);
	right: calc(50% - 7px);
}
.pn_list .listLastBlk a:hover::before {
	border-top: solid 2px var(--pnHoverColor);
	border-right: solid 2px var(--pnHoverColor);
}
.pn_list .listLastBlk a:hover::after {
	border-top: solid 2px var(--pnHoverColor);
	border-right: solid 2px var(--pnHoverColor);
}
@media screen and (max-width: 1024px) {
	.pn_list {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 40px;
		margin: 30px 0 0;
	}
	.pn_list .listArrow::before, .pn_list .listArrow::after {
		content: '';
		position: absolute;
		top: calc(50% + 3px);
		width: 8px;
        height: 8px;
		-webkit-transform: rotate(45deg) translate(-50%, -50%);
		transform: rotate(45deg) translate(-50%, -50%);
		transition: .3s;
	}
	.pn_list .listPagerBlk {
		display: flex;
		align-items: center;
		gap: 10px;
	}
	.pn_list .listPagerPrevious::before {
		border-bottom: solid 2px var(--pnColor);
		border-left: solid 2px var(--pnColor);
		left: calc(50% - 0px);
	}
	.pn_list .listPagerPrevious::after {
		border-bottom: solid 2px var(--pnColor);
		border-left: solid 2px var(--pnColor);
		left: calc(50% - 6px);
	}
	.pn_list .listPagerBlk a, .pn_list .listPagerBlk span {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		height: 35px;
		width: 35px;
		color: #0fc979;
		border-radius: 5px;
		background: #fff;
		border: 1px solid #0fc979;
	}
	.pn_list .listPagerBlk span.listPagerNum {
		color: var(--pnCurrentColor);
		background: var(--pnCurrentBg);
	}
	.pn_list .listPagerNext::before {
		border-top: solid 2px var(--pnColor);
		border-right: solid 2px var(--pnColor);
		right: calc(50% - 0px);
	}
	.pn_list .listPagerNext::after {
		border-top: solid 2px var(--pnColor);
		border-right: solid 2px var(--pnColor);
		right: calc(50% - 6px);
	}
	.pn_list .listPagerPrevious:hover::before {
		border-bottom: solid 2px var(--pnHoverColor);
		border-left: solid 2px var(--pnHoverColor);
	}
	.pn_list .listPagerPrevious:hover::after {
		border-bottom: solid 2px var(--pnHoverColor);
		border-left: solid 2px var(--pnHoverColor);
	}
	.pn_list .listPagerBlk a:hover {
		color: var(--pnHoverColor);
		background: var(--pnHoverBg);
		opacity: 1;
	}
	.pn_list .listPagerNext:hover::before {
		border-top: solid 2px var(--pnHoverColor);
		border-right: solid 2px var(--pnHoverColor);
	}
	.pn_list .listPagerNext:hover::after {
		border-top: solid 2px var(--pnHoverColor);
		border-right: solid 2px var(--pnHoverColor);
	}
	.pn_list .listFirstBlk, .pn_list .listLastBlk {
		width: 100px;
		height: 100%;
		display: none;
	}
	.pn_list .listFirstBlk a, .pn_list .listLastBlk a {
		display: block;
		position: relative;
		width: 100%;
		height: 100%;
	}
	.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);
	}
	.pn_list .listFirstBlk a:hover::before {
		border-bottom: solid 2px var(--pnHoverColor);
		border-left: solid 2px var(--pnHoverColor);
	}
	.pn_list .listFirstBlk a:hover::after {
		border-bottom: solid 2px var(--pnHoverColor);
		border-left: solid 2px var(--pnHoverColor);
	}
	.pn_list .listLastBlk a {
		border-left: solid 1px #E2E6EB;
	}
	.pn_list .listLastBlk a::before {
		border-top: solid 2px var(--pnColor);
		border-right: solid 2px var(--pnColor);
		right: 50%;
	}
	.pn_list .listLastBlk a::after {
		border-top: solid 2px var(--pnColor);
		border-right: solid 2px var(--pnColor);
		right: calc(50% - 7px);
	}
	.pn_list .listLastBlk a:hover::before {
		border-top: solid 2px var(--pnHoverColor);
		border-right: solid 2px var(--pnHoverColor);
	}
	.pn_list .listLastBlk a:hover::after {
		border-top: solid 2px var(--pnHoverColor);
		border-right: solid 2px var(--pnHoverColor);
	}
}
/*
Detail
---------------------------------------------------------------*/
.pn_detail {
	max-width: 850px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 60px;
	margin: 40px auto 0;
}
.pn_detail > * {
	height: 100%;
}
.pn_detail .detailpreviousBlk, .pn_detail .detailNextBlk {
	width: 108px;
}
.pn_detail .detailpreviousBlk a, .pn_detail .detailNextBlk a {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0 10px;
	height: 100%;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #25282b;
}
.pn_detail .detailpreviousBlk a::before, .pn_detail .detailNextBlk a::after{
	content: "";
	display: block;
    width: 34px;
    height: 34px;
    border: 1px solid #0fc979;
    border-radius: 50%;
    margin: auto 0;
	background: #0fc979;
	transition: all 0.5s ease;
}
.pn_detail .detailpreviousBlk a::after{
	content: "";
    display: block;
    width: 12px;
    height: 10px;
    -webkit-mask-image: url('images/icon_arrow.svg');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #FFF;
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translate(-50%, -50%) scale(-1, -1);
	transition: all 0.5s ease;
}
.pn_detail .detailNextBlk a::before{
	content: "";
    display: block;
    width: 12px;
    height: 10px;
    -webkit-mask-image: url('images/icon_arrow.svg');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #FFF;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translate(-50%, -50%);
	transition: all 0.5s ease;
}
.pn_detail .detailpreviousBlk a:hover::before{
	background: #FFF;
}
.pn_detail .detailpreviousBlk a:hover::after{
	background-color: #0fc979;
}
.pn_detail .detailNextBlk a:hover::before{
	background-color: #0fc979;
}
.pn_detail .detailNextBlk a:hover::after{
	background: #FFF;
}
.pn_detail .detailBackBlk a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 15px 0 30px;
	width: 280px;
	height: 100%;
	border-radius: 9999px;
	border: 1px solid #0fc979;
	background: #0fc979;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
}
.pn_detail .detailBackBlk a .arrow{
	content: "";
    width: 34px;
    height: 34px;
    border: 1px solid #FFF;
    border-radius: 50%;
	position: relative;
}
.pn_detail .detailBackBlk a .arrow::before {
    content: "";
    display: block;
    width: 12px;
    height: 10px;
    -webkit-mask-image: url('images/icon_arrow.svg');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #FFF;
    position: absolute;
    top: 50%;
    left: calc(50% + 1px);
    transform: translate(-50%, -50%);
}
.pn_detail .detailBackBlk a:hover{
	background: #FFF;
	color: #0fc979;
}
.pn_detail .detailBackBlk a:hover .arrow{
	border: 1px solid #0fc979;
}
.pn_detail .detailBackBlk a:hover .arrow::before{
	background-color: #0fc979;
}
@media screen and (max-width: 1024px) {
	.pn_detail {
		max-width: 850px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		height: 50px;
		margin: 20px auto 0;
	}
	.pn_detail > * {
		height: 100%;
	}
	.pn_detail .detailpreviousBlk, .pn_detail .detailNextBlk {
		width: 95px;
	}
	.pn_detail .detailpreviousBlk a, .pn_detail .detailNextBlk a {
		position: relative;
		display: flex;
		align-items: center;
		gap: 0 5px;
		height: 100%;
		font-weight: 700;
		font-size: 14px;
		line-height: 21px;
		color: #25282b;
	}
	.pn_detail .detailpreviousBlk a::before, .pn_detail .detailNextBlk a::after{
		content: "";
		display: block;
		width: 30px;
		height: 30px;
		border: 1px solid #0fc979;
		border-radius: 50%;
		margin: auto 0;
		background: #0fc979;
		transition: all 0.5s ease;
	}
	.pn_detail .detailpreviousBlk a::after{
		content: "";
		display: block;
		width: 12px;
		height: 10px;
		-webkit-mask-image: url('images/icon_arrow.svg');
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #FFF;
		position: absolute;
		top: 50%;
		left: 16px;
		transform: translate(-50%, -50%) scale(-1, -1);
		transition: all 0.5s ease;
	}
	.pn_detail .detailNextBlk a::before{
		content: "";
		display: block;
		width: 12px;
		height: 10px;
		-webkit-mask-image: url('images/icon_arrow.svg');
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #FFF;
		position: absolute;
		top: 50%;
		right: 7px;
		transform: translate(-50%, -50%);
		transition: all 0.5s ease;
	}
	.pn_detail .detailpreviousBlk a:hover::before{
		background: #FFF;
	}
	.pn_detail .detailpreviousBlk a:hover::after{
		background-color: #0fc979;
	}
	.pn_detail .detailNextBlk a:hover::before{
		background-color: #0fc979;
	}
	.pn_detail .detailNextBlk a:hover::after{
		background: #FFF;
	}
	.detailBackBlk a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 10px 0 15px;
		margin: 10px auto 0;
		width: 200px;
		height: 45px;
		border-radius: 9999px;
		border: 1px solid #0fc979;
		background: #0fc979;
		font-weight: 700;
		font-size: 14px;
		line-height: 21px;
		color: #fff;
	}
	.detailBackBlk a .arrow{
		content: "";
		width: 28px;
		height: 28px;
		border: 1px solid #FFF;
		border-radius: 50%;
		position: relative;
	}
	.detailBackBlk a .arrow::before {
		content: "";
		display: block;
		width: 11px;
		height: 9px;
		-webkit-mask-image: url('images/icon_arrow.svg');
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #FFF;
		position: absolute;
		top: 50%;
		left: calc(50% + 1px);
		transform: translate(-50%, -50%);
	}
	.detailBackBlk a:hover{
		background: #FFF;
		color: #0fc979;
	}
	.detailBackBlk a:hover .arrow{
		border: 1px solid #0fc979;
	}
	.detailBackBlk a:hover .arrow::before{
		background-color: #0fc979;
	}
}
/*
Form
====================================*/
/*
Input
----------------------------------------------------------------*/
.form_input {
	width: 100%;
}
.form_input .inputRow {
	display: flex;
}
.form_input .inputItem {
	position: relative;
	display: flex;
	align-items: center;
	width: 300px;
	padding: calc(40px / 2) 0;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #25282b;
}
.form_input .inputItem.vertical-top{
	align-items: flex-start;
}
.form_input .inputItem ._must {
	width: 60px;
	height: 25px;
	font-weight: 700;
	font-size: 15px;
	line-height: 21px;
	color: #fff;
	border-radius: 9999px;
	background: #0fc979;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 15px;
}
.form_input .inputItem ._any {
	width: 60px;
	height: 25px;
	font-weight: 700;
	font-size: 15px;
	line-height: 21px;
	color: #fff;
	border-radius: 9999px;
	background: #a1a1a1;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 15px;
}
.form_input .inputValue {
	flex: 1;
	padding: calc(40px / 2) 0;
	display: flex;
	align-items: center;
}
.form_input .inputValue.radio{
	margin-bottom: 0px;
}
.form_input .wpcf7-form-control-wrap {
	width: 100%;
}
.form_input input[type="text"],
.form_input input[type="tel"],
.form_input input[type="email"],
.form_input textarea {
	width: 100%;
	height: 45px;
	border-radius: 7px;
	border: solid #707070 1px;
	background: #FFF;
	padding: 0px 10px;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
}
.form_input textarea {
	width: 100% !important;
	height: 230px;
	padding: 10px;
}
.form_input input::placeholder,
.form_input textarea::placeholder {
	font-size: 16px;
	color: #b4b7bc;
}
.form_input input[type="checkbox"],
.form_input input[type="radio"] {
	width: 18px;
	height: 18px;
	cursor: pointer;
}
.form_input .wpcf7-form-control {
	display: flex;
	flex-direction: column;
	gap: 10px 0;
}
.form_input .wpcf7-list-item {
	margin: 0;
	height: 24px;
}
.form_input .wpcf7-list-item label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.form_input .wpcf7-list-item-label {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
}
.form_input input[type="file"] {
	font-size: 14px;
}
.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: 35px;
}
.form_agree {
	margin: 50px 0 0;
	text-align: center;
}
.form_agree .wpcf7-list-item {
	margin: 0;
	display: flex;
	justify-content: center;
    align-items: center;
}
.form_agree label {
	display: flex;
	align-items: center;
	gap: 8px;
}
.form_agree .wpcf7-list-item-label {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
}
.form_agree input[type="checkbox"] {
	width: 25px;
	height: 25px;
}
.form_submit {
	position: relative;
	width: 350px;
	text-align: center;
	margin: 35px auto 0;
}
.form_submit input[type="submit"] {
	width: 100%;
	height: 80px;
	font-weight: 700;
	font-size: 18px;
	line-height: 30px;
	color: #fff;
	transition: .3s;
	border-radius: 9999px;
	background: #DDD;
}
.form_submit input[type="submit"]:hover {
	opacity: .7;
}
.form_submit .wpcf7-spinner {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
.form_submit .arrow{
	content: "";
    width: 34px;
    height: 34px;
    border: 1px solid #FFF;
    border-radius: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 25px;
    margin: auto 0;
}
.form_submit .arrow::before{
	content: "";
    display: block;
    width: 12px;
    height: 10px;
    -webkit-mask-image: url('images/icon_arrow.svg');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #FFF;
    position: absolute;
    top: 50%;
    left: calc(50% + 1px);
    transform: translate(-50%, -50%);
}
@media screen and (max-width: 1024px) {
	.form_input {
		max-width: 750px;
		margin: 15px auto 0;
	}
	.form_input .inputRow {
		display: flex;
		flex-flow: column;
	}
	.form_input .inputItem {
		position: relative;
		display: flex;
		align-items: center;
		width: 100%;
		padding: 5px 0 0px;
		font-weight: 600;
		font-size: 16px;
		line-height: 22px;
	}
	.form_input .inputItem.vertical-top{
		align-items: flex-start;
	}
	.form_input .inputItem ._must {
		width: 50px;
		height: 22px;
		font-weight: 700;
		font-size: 13px;
		line-height: 21px;
		color: #fff;
		border-radius: 9999px;
		background: #0fc979;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-right: 7px;
	}
	.form_input .inputItem ._any {
		width: 50px;
		height: 22px;
		font-weight: 700;
		font-size: 13px;
		line-height: 21px;
		color: #fff;
		border-radius: 9999px;
		background: #a1a1a1;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-right: 7px;
		margin-bottom: -1px;
	}
	.form_input .inputValue {
		flex: 1;
		padding: 5px 0 15px;
		display: flex;
		align-items: center;
		margin-left: 10px;
	}
	.form_input .inputValue.radio{
		margin-bottom: 10px;
	}
	.form_input .wpcf7-form-control-wrap {
		width: 100%;
	}
	.form_input input[type="text"],
	.form_input input[type="tel"],
	.form_input input[type="email"],
	.form_input textarea {
		width: 100%;
		height: 40px;
		border-radius: 7px;
		border: solid #707070 1px;
		background: #FFF;
		padding: 0px 10px;
		font-weight: 500;
		font-size: 16px;
		line-height: 24px;
	}
	.form_input textarea {
		width: 100% !important;
		height: 160px;
		padding: 10px;
	}
	.form_input input::placeholder,
	.form_input textarea::placeholder {
		font-size: 16px;
		color: #b4b7bc;
	}
	.form_input input[type="checkbox"],
	.form_input input[type="radio"] {
		width: 18px;
		height: 18px;
		cursor: pointer;
	}
	.form_input .wpcf7-form-control {
		display: flex;
		flex-direction: column;
		gap: 10px 0;
		margin-top: 10px;
	}
	.form_input .wpcf7-list-item {
		margin: 0;
		height: 24px;
	}
	.form_input .wpcf7-list-item label {
		display: inline-flex;
		align-items: center;
		gap: 8px;
	}
	.form_input .wpcf7-list-item-label {
		font-weight: 600;
		font-size: 16px;
		line-height: 22px;
	}
	.form_input input[type="file"] {
		font-size: 14px;
	}
	.form_input .wpcf7-not-valid-tip {
		width: 100%;
		font-size: 14px;
		margin: 10px 0 0;
	}
	/* turnstile */
	.form_turnstile {
		display: block;
		text-align: center;
		margin-top: 25px;
	}
	.form_agree {
		margin: 20px 0 0;
		text-align: center;
	}
	.form_agree .wpcf7-list-item {
		margin: 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.form_agree label {
		display: flex;
		align-items: center;
		gap: 8px;
	}
	.form_agree .wpcf7-list-item-label {
		font-weight: 600;
		font-size: 14px;
		line-height: 18px;
	}
	.form_agree input[type="checkbox"] {
		width: 18px;
		height: 18px;
	}
	.form_submit {
		position: relative;
		width: 250px;
		text-align: center;
		margin: 35px auto 0;
	}
	.form_submit input[type="submit"] {
		width: 100%;
		height: 55px;
		font-weight: 600;
		font-size: 18px;
		line-height: 28px;
		color: #fff;
		transition: .3s;
		border-radius: 10px;
		background: #007DC8;
		background: #cdcdcd;
	}
	.form_submit input[type="submit"]:hover {
		opacity: .7;
	}
	.form_submit .wpcf7-spinner {
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}
	.form_submit .arrow{
		content: "";
		width: 30px;
		height: 30px;
		border: 1px solid #FFF;
		border-radius: 50%;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 15px;
		margin: auto 0;
	}
	.form_submit .arrow::before{
		content: "";
		display: block;
		width: 12px;
		height: 10px;
		-webkit-mask-image: url('images/icon_arrow.svg');
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #FFF;
		position: absolute;
		top: 50%;
		left: calc(50% + 1px);
		transform: translate(-50%, -50%);
	}
}
/*
Privacy Policy
----------------------------------------------------------------*/
.form_pp {
	margin: 35px auto 0;
	width: 100%;
	height: 230px;
	border-radius: 5px;
	background: #fff;
	border: 1px solid #a1a1a1;
	padding: 30px 40px 30px 30px;
	overflow: auto;
}
.form_pp dt {
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
}
.form_pp dd {
	font-weight: 600;
	font-size: 14px;
	line-height: 24px;
	margin-top: 5px;
}
@media screen and (max-width: 1024px) {
	.form_pp {
		margin: 25px auto 0;
		max-width: 750px;
		height: 200px;
		border-radius: 5px;
		background: #fff;
		border: 1px solid #cecece;
		padding: 17px 20px 17px 15px;
		overflow: auto;
	}
	.form_pp dt {
		font-weight: 700;
		font-size: 15px;
		line-height: 20px;
		margin-bottom: 20px;
	}
	.form_pp dd {
		font-weight: 600;
		font-size: 14px;
		line-height: 22px;
		margin-top: 5px;
	}
}
/*
Thanks & 404
====================================*/
.thanks_section .linkBlk,
.error_section .linkBlk {
	text-align: center;
	margin: 45px 0 0;
}
.thanks_section .linkBlk a,
.error_section .linkBlk a {
	display: inline-block;
	width: 250px;
	line-height: 50px;
	font-size: 16px;
	border: solid 1px var(--mainColor);
	border-radius: 9999px;
}
.thanks_section .linkBlk a:hover,
.error_section .linkBlk a:hover {
	opacity: 1;
	background: var(--mainColor);
	color: #fff;
}
.thanks_section {
	overflow: hidden;
	padding: 60px 0 130px;
}
.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: 16px;
	line-height: 26px;
	text-align: center;
}
.error_section {
	overflow: hidden;
	padding: 60px 0 130px;
}
.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: 16px;
	line-height: 26px;
	text-align: center;
}
@media screen and (max-width: 1024px) {
	.thanks_section {
		padding: 40px 0 80px;
	}
	.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 {
		font-size: 14px;
		line-height: 24px;
	}
	.thanks_section .linkBlk {
		margin: 40px 0 0;
	}
	.error_section {
		padding: 40px 0 80px;
	}
	.error_section .head {
		font-size: 24px;
	}
	.error_section .head span {
		font-size: 16px;
	}
	.error_section .mainBlk {
		margin: 30px 0 0;
	}
	.error_section .mainDesc {
		font-size: 14px;
		line-height: 24px;
	}
	.thanks_section .linkBlk a,
	.error_section .linkBlk a {
		display: inline-block;
		width: 250px;
		line-height: 40px;
		font-size: 15px;
		border: solid 1px var(--mainColor);
		border-radius: 9999px;
	}
}
/*====================================

3. Header

====================================*/
.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
	width: 100%;
	height: 90px;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
	background: white;
}
.header .inner {
	height: 100%;
	padding: 0 20px 0 30px;
	display: flex;
	align-items: center;
	min-width: 1100px;
	gap: 0 25px;
}
.header .logoBlk {
	flex-shrink: 0;
	display: flex;
}
.header .logoBlk a img {
	width: 260px;
}
.header .menuBlk {
	display: flex;
	flex: 1;
	flex-shrink: 0;
	height: 100%;
}
.header .menuBlk nav {
	display: flex;
	flex: 1;
	justify-content: right;
	gap: 0 50px;
}
.header .menuBlk nav > ul {
	display: flex;
	gap: 30px;
	height: 100%;
}
.header .menuBlk nav > ul > li {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
}
.header .menuBlk nav > ul > li > a {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
}
.header .menuBlk nav > ul > li > a._active {
	color: var(--mainColor);
}
.header .menuBlk nav > ul > li > ul {
	position: absolute;
	top: 80%;
	left: -30px;
	left: clamp(-1.25rem, 1.08rem + -3.64vw, -1.875rem);
	display: flex;
	gap: 15px;
	flex-direction: column;
	background: #fff;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
	z-index: 1;
	padding: clamp(1.25rem, -1.08rem + 3.64vw, 1.875rem);
	min-width: 190px;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	pointer-events: none;
}
.header .menuBlk > nav > ul > li._parent:hover > ul {
	top: 100%;
	opacity: 1;
	visibility: visible;
	pointer-events: initial;
}
.header .menuBlk nav > ul > li > ul > li > a {
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
}
.header .menuBlk .menuContact{
	display: flex;
	align-items: center;
	gap: 0 20px;
	flex-shrink: 0;
}
.header .menuBlk .menuContact > ._tel{
	display: flex;
	align-items: self-end;
	gap: 0 7px;
}
.header .menuBlk .menuContact > ._tel > ._icon{
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: #13659b;
	display: flex;
	justify-content: center;
	align-items: center;
}
.header .menuBlk .menuContact > ._tel > ._icon img{
	width: 18px;
	height: 22px;
}
.header .menuBlk .menuContact > ._tel > ._txtBlk > ._num{
	font-weight: 900;
	font-size: 24px;
	line-height: 32px;
}
.header .menuBlk .menuContact > ._tel > ._txtBlk > ._time{
	font-weight: 500;
	font-size: 15px;
	line-height: 21px;
}
.header .menuBlk .menuContact > ._mail{
	width: 200px;
	height: 55px;
	border-radius: 99999px;
	background: #0fc979;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
}
.header .menuBlk .menuContact > ._mail > ._txt{
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
	color: #fff;
}
@media screen and (max-width: 1024px) {
	.header {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 99999;
		width: 100%;
		height: 60px;
		box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
	}
	.header .inner {
		background: white;
		padding: 0 5px 0 10px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-width: initial;
		gap: 0 25px;
	}
	.header .logoBlk {
		flex-shrink: 0;
		display: flex;
	}
	.header .logoBlk a img {
		width: 180px;
	}
	.header .menuBlk {
		position: absolute;
		top: var(--headerH, 55px);
		left: 0;
		height: calc(100dvh - var(--headerH, 55px));
		z-index: -1;
		width: 100%;
		background: white;
		overflow: auto;
		padding: 20px 0 60px;
		opacity: 0;
		visibility: hidden;
		transition: .3s;
		display: block;
		flex-shrink: unset;
	}
	.header .menuBlk::-webkit-scrollbar {
		display: none;
	}
	.header._menuOpen .menuBlk {
		opacity: 1;
		visibility: visible;
	}
	.header .menuBlk > * {
		width: 92%;
		max-width: var(--maxWidth768);
		margin: auto;
	}
	.header .menuBlk nav{
		display: flex;
		flex-flow: column;
    	flex: 1;
    	justify-content: space-between;
    	gap: 0 30px;
	}
	.header .menuBlk nav > ul {
		display: block;
		height: auto;
	}
	.header .menuBlk nav > ul > li {
		position: relative;
		display: block;
		height: auto;
		border-bottom: 1px solid #ccc;
	}
	.header .menuBlk nav > ul > li > span {
		position: absolute;
		top: 0;
		right: 0;
		height: 100%;
		width: 70px;
	}
	.header .menuBlk nav > ul > li > a {
		display: flex;
		font-size: 15px;
		padding: 15px 10px;
	}
	.header .menuBlk nav > ul > li._parent > a {
		position: relative;
	}
	.header .menuBlk nav > ul > li._parent::before {
		content: '';
		border-style: solid;
		border-width: 5px 5px 0px 5px;
		border-color: var(--mainColor) transparent transparent transparent;
		position: absolute;
		top: 25px;
		right: 15px;
		transform: translateY(0%);
		transition: .3s;
	}
	.header .menuBlk nav > ul > li._parent::before {
		transform: translateY(0%);
	}
	.header .menuBlk nav > ul > li._parent._childOpen::before {
		transform: rotateX(180deg);
	}
	.header .menuBlk nav > ul > li > ul {
		display: flex;
		flex-direction: column;
		gap: 0;
		margin: 0;
		padding: 0 0 0 20px;
		transition: .3s;
		position: unset;
		background: unset;
		box-shadow: unset;
		min-width: unset;
		opacity: unset;
		visibility: unset;
	}
	header .menuBlk nav > ul > li > ul {
		overflow-y: scroll;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	.header .menuBlk nav > ul > li > ul::-webkit-scrollbar {
		display: none;
	}
	.header .menuBlk > nav > ul > li._parent:hover > ul {
		top: 100%;
		opacity: unset;
		visibility: unset;
	}
	.header .menuBlk nav > ul > li._childOpen > ul {
		gap: 15px 0;
		margin: 5px 0 20px;
	}
	.header .menuBlk nav > ul > li > ul > li {
		height: 0;
		transition: .3s;
	}
	.header .menuBlk nav > ul > li._childOpen > ul > li {
		height: auto;
	}
	.header .menuBlk nav > ul > li > ul > li > a {
		font-size: 15px;
		opacity: 0;
		visibility: hidden;
	}
	.header .menuBlk nav > ul > li._childOpen > ul > li > a {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
	.header .menuBlk .menuContact{
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 20px 0;
		flex-shrink: 0;
		margin-top: 35px;
	}
	.header .menuBlk .menuContact > ._tel{
		display: flex;
		align-items: self-end;
		gap: 0 7px;
	}
	.header .menuBlk .menuContact > ._tel > ._icon{
		width: 46px;
		height: 46px;
		border-radius: 50%;
		background: #13659b;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.header .menuBlk .menuContact > ._tel > ._icon img{
		width: 18px;
		height: 22px;
	}
	.header .menuBlk .menuContact > ._tel > ._txtBlk > ._num{
		font-weight: 900;
		font-size: 24px;
		line-height: 32px;
	}
	.header .menuBlk .menuContact > ._tel > ._txtBlk > ._time{
		font-weight: 500;
		font-size: 15px;
		line-height: 21px;
	}
	.header .menuBlk .menuContact > ._mail{
		width: 200px;
		height: 55px;
		border-radius: 99999px;
		background: #0fc979;
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
	}
	.header .menuBlk .menuContact > ._mail > ._txt{
		font-weight: 600;
		font-size: 18px;
		line-height: 24px;
		color: #fff;
	}
	.header .mbMenuBlk {
		position: relative;
		height: 100%;
		aspect-ratio: 1/1;
		cursor: pointer;
	}
	.header .mbMenuBdrBlk, .mbMenuBdrBlk span {
		display: inline-block;
		box-sizing: border-box;
	}
	.header .mbMenuBdrBlk {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 25px;
		height: auto;
		transform: translate(-50%, -50%);
	}
	.header .mbMenuBdrBlk:focus:not(:focus-visible) {
		outline: none;
	}
	.header .mbMenuBdrBlk::before, .mbMenuBdrBlk::after {
		content: '';
	}
	.header .mbMenuBdrBlk::before, .mbMenuBdrBlk::after, .mbMenuBdrBlk span {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 1px;
		background: #333;
		border-radius: 4px;
		transition: .2s;
	}
	.header .mbMenuBdrBlk::before {
		transform: rotate(45deg) scaleX(0);
	}
	.header .mbMenuBdrBlk::after {
		transform: rotate(-45deg) scaleX(0);
	}
	.header .mbMenuBdrBlk span:nth-of-type(1) {
		top: -8px;
		transition-delay: .2s;
	}
	.header .mbMenuBdrBlk span:nth-of-type(2) {
		top: 0px;
		transition-delay: .2s;
	}
	.header .mbMenuBdrBlk span:nth-of-type(3) {
		top: 8px;
		transition-delay: .2s;
	}
	.header._menuOpen .mbMenuBdrBlk::before {
		transform: rotate(45deg) scaleX(1);
		transition-delay: .2s;
	}
	.header._menuOpen .mbMenuBdrBlk::after {
		transform: rotate(-45deg) scaleX(1);
		transition-delay: .2s;
	}
	.header._menuOpen .mbMenuBdrBlk span {
		transform: scaleX(0);
		transition-delay: 0s;
	}
}
/*====================================

4. Main

====================================*/
main {
	margin: var(--headerH, clamp(4.063rem, 0.568rem + 5.45vw, 5rem)) 0 0;
	overflow: hidden;
}
@media screen and (max-width: 1024px) {
	main {
		margin: var(--headerH, 55px) 0 0;
	}
}
/*====================================

5. Footer

====================================*/
.footer {
	padding: 50px 0 0px;
}
.footer .footerBlk{
	display: flex;
	justify-content: space-between;
	gap: 0 30px;
	padding-bottom: 40px;
	border-bottom: 1px solid #bebebe;
}
.footer .footerBlk .logoBlk{
	display: block;
	width: 260px;
}
.footer .footerBlk .addressDl{
	display: flex;
	flex-flow: column;
	margin-top: 20px;
}
.footer .footerBlk .addressDt{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	display: flex;
	align-items: center;
	gap: 0 5px;
	margin-top: 15px;
}
.footer .footerBlk .addressDt::before{
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #0fc979;
}
.footer .footerBlk .addressDt:first-of-type{
	margin-top: 0px;
}
.footer .footerBlk .addressDd{
	font-weight: 500;
	font-size: 15px;
	line-height: 24px;
	margin-top: 4px;
}
.footer .footerBlk .navUl{
	width: 500px;
	display: flex;
	flex-wrap: wrap;
	gap: 40px 55px;
}
.footer .footerBlk .navLi{
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	display: flex;
	flex-flow: column;
}
.footer .footerBlk .navLiChild{
	display: flex;
	flex-flow: column;
	margin-top: 12px;
	gap: 6px 0;
}
.footer .footerBlk .navLiChild a {
	display: block;
	width: fit-content;
	font-weight: 500;
	font-size: 15px;
	line-height: 21px;
	color: #25282b;
}
.footer .copyrightBlk{
	border-top: 1px solid #fff;
	padding: 20px 0 30px;
}
.footer .copyrightBlk .copyright{
	font-weight: 500;
	font-size: 13px;
	line-height: 20px;
	text-align: center;
}
@media screen and (max-width: 1024px) {
	.footer {
		padding: 40px 0 0px;
	}
	.footer .footerBlk{
		display: flex;
		flex-flow: column;
		justify-content: space-between;
		gap: 40px 0;
		padding-bottom: 30px;
		border-bottom: 1px solid #bebebe;
	}
	.footer .footerBlk .addressBlk{
		order: 2;
	}
	.footer .footerBlk .addressDl{
		display: flex;
		flex-flow: column;
		margin-top: 20px;
	}
	.footer .footerBlk .addressDt{
		font-weight: 500;
		font-size: 16px;
		line-height: 24px;
		display: flex;
		align-items: center;
		gap: 0 5px;
		margin-top: 15px;
	}
	.footer .footerBlk .addressDt::before{
		content: "";
		display: block;
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: #0fc979;
	}
	.footer .footerBlk .addressDt:first-of-type{
		margin-top: 0px;
	}
	.footer .footerBlk .addressDd{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		margin-top: 4px;
	}
	.footer .footerBlk .navUl{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		gap: 30px 40px;
		order: 1;
	}
	.footer .footerBlk .navLi{
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
		display: flex;
		flex-flow: column;
	}
	.footer .footerBlk .navLiChild{
		display: flex;
		flex-flow: column;
		margin-top: 12px;
		gap: 6px 0;
	}
	.footer .footerBlk .navLiChild a {
		display: block;
		width: fit-content;
		font-weight: 500;
		font-size: 15px;
		line-height: 21px;
		color: #25282b;
	}
	.footer .copyrightBlk{
		border-top: 1px solid #fff;
		padding: 20px 0 30px;
	}
	.footer .copyrightBlk .copyright{
		font-weight: 500;
		font-size: 13px;
		line-height: 20px;
		text-align: center;
	}
}
/*====================================

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 {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 350px;
	height: 70px;
	font-size: 20px;
	color: #fff;
	background: var(--mainColor);
}
.cmn_link1:before {
	content: '';
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translate(0%, -50%);
	width: 15px;
	height: 1px;
	background: white;
	transition: .3s;
}
@media screen and (min-width: 1025px) {
	.cmn_link1:hover::before {
		right: 0px;
		opacity: 0;
	}
}
/*head*/
.cmn_head1 {
	font-size: 30px;
	text-align: center;
}
/*title*/
.cmn_title1 {
	font-size: 24px;
}
/*text*/
.cmn_text1 {
	font-size: 15px;
	line-height: 2;
}
@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;
	}
	.cmn_link1:before {
	}
	/*head*/
	.cmn_head1 {
		font-size: 20px;
	}
	/*title*/
	.cmn_title1 {
		font-size: 18px;
	}
	/*text*/
	.cmn_text1 {
		font-size: 14px;
		line-height: 1.6;
	}
}
/*
6.2 Section
====================================*/
.cmn_headBlk1{
	position: relative;
}
.cmn_headBlk1 .subHead{
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 65px;
	line-height: 85px;
	color: #FFF;
}
.cmn_headBlk1 .head{
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	margin-top: 5px;
	color: #fff;
}
.cmn_headBlk1 .head .txtBold{
	font-weight: 600;
	font-size: 60px;
	color: #009FFF;
	position: relative;
}
.cmn_headBlk1 .head .txtBold::before{
	content: "";
	display: block;
	width: 78px;
	height: 30px;
	background: url('images/icon_highlight.svg') no-repeat;
	position: absolute;
	top: -20px;
	left: -23px;
}
.cmn_headBlk1.green .subHead{
	color: #0fc979;
}
.cmn_headBlk1.green .head{
	color: #25282b;
}
.cmn_headBlk2{
	position: relative;
}
.cmn_headBlk2 .subHead{
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
	color: #0fc979;
}
.cmn_headBlk2 .head{
	font-weight: 700;
	font-size: 40px;
	line-height: 54px;
	color: #25282b;
	margin-top: 6px;
}
.cmn_headBlk2.white .subHead{
	color: #fff;
}
.cmn_headBlk2.white .head{
	color: #fff;
}
.cmn_headBlk2Wrap{
	display: flex;
	gap: 0 70px;
}
.cmn_headBlk2Wrap .headTxt{
	flex: 1;
	margin-top: auto;
	margin-bottom: 1px;
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	color: #25282b;
}
.cmn_headBlk2Wrap .headTxt.txt02{
	margin-bottom: 10px;
}
.cmn_headBlk2Wrap .headTxt.white{
	color: #fff;
	font-weight: 600;
}
.cmn_mv{
	width: 100%;
	height: 230px;
	position: relative;
	border-radius: 0 0 30px 30px;
	overflow: hidden;
}
.cmn_mv .inner{
	height: 100%;
}
.cmn_mv .headBlk{
	height: 100%;
	display: flex;
	flex-flow: column;
	justify-content: center;
	position: relative;
}
.cmn_mv .headBlk .subHead{
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 65px;
	line-height: 85px;
	color: #fff;
}
.cmn_mv .headBlk .head{
	font-weight: 700;
    font-size: 18px;
	line-height: 30px;
    color: #fff;
	margin-top: 5px;
}
.cmn_mv .mvBg{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.cmn_mv .mvBg img{
	width: 100%;
	height: 100%;
}
.cmn_contact{
	padding: 0 0 125px;
	position: relative;
	background: #E7FBF1;
}
.cmn_contact::before{
	content: "";
	display: block;
	width: 100%;
	height: calc(100% - 120px);
	position: absolute;
	top: 120px;
	left: 0;
	background: url('images/top_contactBg.webp') no-repeat;
	background-size: cover;
	background-position: bottom;
}
.cmn_contact .contactBlk{
	border-radius: 20px;
	background: #fff;
	box-shadow: 0px 3px 6px rgba(19, 101, 155, 0.16);
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	padding: 60px 0 60px;
}
.cmn_contact .contactBlk .itemTtl{
	font-weight: 700;
	font-size: 40px;
	line-height: 58px;
	color: #0fc979;
}
.cmn_contact .contactBlk .itemTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	text-align: center;
	color: #25282b;
	margin-top: 25px;
}
.cmn_contact .contactBlk .btnBlk{
	display: flex;
	align-items: center;
	margin-top: 30px;
}
.cmn_contact .contactBlk .itemTel{
    display: flex;
    align-items: self-end;
    gap: 0 15px;
	border-right: 1px solid #7B7B7B;
	padding: 10px 75px 10px 0;
}
.cmn_contact .contactBlk .itemTel ._icon{
	width: 63px;
    height: 63px;
    border-radius: 50%;
    background: #13659b;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cmn_contact .contactBlk .itemTel ._icon img{
	width: 25px;
}
.cmn_contact .contactBlk .itemTel ._num{
	font-weight: 600;
	font-size: 32px;
	line-height: 50px;
	color: #25282b;
}
.cmn_contact .contactBlk .itemTel ._time{
	font-weight: 500;
	font-size: 20px;
	line-height: 30px;
	color: #25282b;
}
.cmn_contact .contactBlk .itemMail{
	margin-left: 60px;
	background: #0FC979;
	color: #FFF;
}
.cmn_contact .contactBlk .itemMail .arrow{
	border: 1px solid #FFF;
}
.cmn_contact .contactBlk .itemMail .arrow::before{
	background-color: #FFF;
}
.anchorNav{
	display: flex;
	justify-content: center;
	margin: 55px auto 0;
}
.anchorLink{
	display: flex;
	align-items: center;
	gap: 0 5px;
	font-weight: 600;
	font-size: 16px;
	line-height: 25px;
	padding: 0 30px;
	border-left: 1px solid #c4c4c4;
}
.anchorLink:last-of-type{
	border-right: 1px solid #c4c4c4;
}
.anchorLink .arrow{
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #0fc979;
	display: flex;
	justify-content: center;
	align-items: center;
}
.anchorLink .arrow::before{
	content: "";
	width: 10px;
	height: 10px;
	display: block;
	-webkit-mask-image: url('images/icon_arrow2.svg');
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
    background-color: #FFF;
}
@media screen and (max-width: 1024px) {
	.cmn_headBlk1{
		position: relative;
	}
	.cmn_headBlk1 .subHead{
		font-family: Poppins;
		font-weight: 500;
		font-size: 40px;
		line-height: 55px;
		color: #FFF;
	}
	.cmn_headBlk1 .head{
		font-weight: 700;
		font-size: 15px;
        line-height: 24px;
        margin-top: 2px;
		color: #fff;
	}
	.cmn_headBlk1 .head .txtBold{
		font-weight: 600;
		font-size: 60px;
		color: #009FFF;
		position: relative;
	}
	.cmn_headBlk1 .head .txtBold::before{
		content: "";
		display: block;
		width: 78px;
		height: 30px;
		background: url('images/icon_highlight.svg') no-repeat;
		position: absolute;
		top: -20px;
		left: -23px;
	}
	.cmn_headBlk1.green .subHead{
		color: #0fc979;
	}
	.cmn_headBlk1.green .head{
		color: #25282b;
	}
	.cmn_headBlk2{
		position: relative;
	}
	.cmn_headBlk2 .subHead{
		font-weight: 500;
		font-size: 15px;
		line-height: 20px;
		color: #0fc979;
	}
	.cmn_headBlk2 .head{
		font-weight: 700;
		font-size: 28px;
		line-height: 32px;
		color: #25282b;
		margin-top: 6px;
	}
	.cmn_headBlk2.white .subHead{
		color: #fff;
	}
	.cmn_headBlk2.white .head{
		color: #fff;
	}
	.cmn_headBlk2Wrap{
		display: flex;
		flex-flow: column;
		gap: 20px 0;
	}
	.cmn_headBlk2Wrap .headTxt{
		flex: 1;
		margin-top: auto;
		margin-bottom: 1px;
		font-weight: 500;
		font-size: 15px;
		line-height: 26px;
		color: #25282b;
	}
	.cmn_headBlk2Wrap .headTxt.txt02{
		margin-bottom: 10px;
	}
	.cmn_headBlk2Wrap .headTxt.white{
		color: #fff;
		font-weight: 600;
	}
	.cmn_mv{
		width: 100%;
		height: 150px;
		position: relative;
		border-radius: 0 0 30px 30px;
		overflow: hidden;
	}
	.cmn_mv .inner{
		height: 100%;
	}
	.cmn_mv .headBlk{
		height: 100%;
		display: flex;
		flex-flow: column;
		justify-content: center;
		position: relative;
	}
	.cmn_mv .headBlk .subHead{
		font-family: Poppins;
		font-weight: 500;
		font-size: 40px;
		line-height: 50px;
		color: #fff;
	}
	.cmn_mv .headBlk .head{
		font-weight: 700;
		font-size: 15px;
		line-height: 20px;
		color: #fff;
		margin-top: 5px;
	}
	.cmn_mv .mvBg{
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}
	.cmn_mv .mvBg img{
		width: 100%;
		height: 100%;
	}
	.cmn_contact{
		padding: 0 0 100px;
		position: relative;
		background: #E7FBF1;
	}
	.cmn_contact::before{
		content: "";
		display: block;
		width: 100%;
		height: calc(100% - 200px);
		position: absolute;
		top: 200px;
		left: 0;
		background: url('images/top_contactBg.webp') no-repeat;
		background-size: cover;
	}
	.cmn_contact .contactBlk{
		border-radius: 20px;
		background: #fff;
		box-shadow: 0px 3px 6px rgba(19, 101, 155, 0.16);
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
		padding: 25px 20px 30px;
	}
	.cmn_contact .contactBlk .itemTtl{
		font-weight: 700;
		font-size: 24px;
        line-height: 32px;
		color: #0fc979;
	}
	.cmn_contact .contactBlk .itemTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		text-align: justify;
		color: #25282b;
		margin-top: 16px;
	}
	.cmn_contact .contactBlk .btnBlk{
		display: flex;
		flex-flow: column;
		align-items: center;
		margin-top: 10px;
		gap: 20px 0;
	}
	.cmn_contact .contactBlk .itemTel{
		display: flex;
		align-items: self-end;
		gap: 0 10px;
		border-right: none;
		padding: 10px 0px 10px 0;
	}
	.cmn_contact .contactBlk .itemTel ._icon{
		width: 48px;
		height: 48px;
		border-radius: 50%;
		background: #13659b;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.cmn_contact .contactBlk .itemTel ._icon img{
		width: 20px;
	}
	.cmn_contact .contactBlk .itemTel ._num{
		font-weight: 600;
		font-size: 25px;
		line-height: 32px;
		color: #25282b;
	}
	.cmn_contact .contactBlk .itemTel ._time{
		font-weight: 500;
		font-size: 15px;
		line-height: 22px;
		color: #25282b;
	}
	.cmn_contact .contactBlk .itemMail{
		margin-left: 0px;
		background: #0FC979;
		color: #FFF;
	}
	.cmn_contact .contactBlk .itemMail .arrow{
		border: 1px solid #FFF;
	}
	.cmn_contact .contactBlk .itemMail .arrow::before{
		background-color: #FFF;
	}
	.anchorNav{
		width: 92%;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin: 30px auto 0;
		border-top: 1px solid #c4c4c4;
	}
	.anchorLink{
		width: calc(50%);
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 0 10px;
		font-weight: 600;
		font-size: 14px;
		line-height: 21px;
		padding: 15px 10px;
		border-left: 1px solid #c4c4c4;
		border-bottom: 1px solid #c4c4c4;
	}
	.anchorLink:last-of-type{
		border-right: none;
	}
	.anchorLink:nth-of-type(odd){
		border-left: none;
	}
	.anchorLink .arrow{
		flex-shrink: 0;
		width: 18px;
		height: 18px;
		border-radius: 50%;
		background: #0fc979;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.anchorLink .arrow::before{
		content: "";
		width: 10px;
		height: 10px;
		display: block;
		-webkit-mask-image: url('images/icon_arrow2.svg');
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #FFF;
	}
}
/*====================================

7. Module

====================================*/
/*====================================

8. Page

====================================*/
/*
Top
====================================*/
.top_link{
	width: 280px;
	height: 60px;
	border-radius: 9999px;
	background: #fff;
	font-weight: 700;
	font-size: 16px;
	line-height: 30px;
	color: #0fc979;
	display: flex;
	align-items: center;
	padding: 0 30px;
	position: relative;
}
.top_link .arrow{
	content: "";
	width: 34px;
	height: 34px;
	border: 1px solid #0fc979;
	border-radius: 50%;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	margin: auto 0;
}
.top_link .arrow::before {
    content: "";
    display: block;
    width: 12px;
    height: 10px;
	-webkit-mask-image: url('images/icon_arrow.svg');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #0FC979;
	position: absolute;
    top: 50%;
    left: calc(50% + 1px);
    transform: translate(-50%, -50%);
}
.top_mv {
	height: calc(85vh - var(--headerH) - 15px);
	position: relative;
}
.top_mv::before{
	content: "";
	display: block;
	width: 100%;
	height: calc(85vh - var(--headerH) + 120px + 191px);
	background: linear-gradient(#fbfffd 0%, #e4f9f0 100%);
	position: absolute;
	top: 0;
	left: 0;
}
.top_mv::after{
	content: "";
	display: block;
	background: url('images/watermark.svg') no-repeat;
	background-size: contain;
	width: 445px;
	height: 445px;
	position: absolute;
	bottom: -108px;
	left: -28px;
}
.top_mv .inner {
	height: 100%;
}
.top_mv .txtBlk {
	height: auto;
	display: flex;
	flex-flow: column;
	justify-content: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 65px;
    z-index: 10;
}
.top_mv .txtBlk .ttl {
	font-weight: 700;
	font-size: 60px;
	line-height: 85px;
	letter-spacing: 0.04em;
	color: #25282b;
	text-shadow: 0px 3px 8px rgba(255, 255, 255, 0.4);
}
.top_mv .txtBlk .ttl span{
	color: #0FC979;
}
.top_mv .txtBlk .txt {
	font-weight: 600;
	font-size: 18px;
	line-height: 32px;
	color: #25282b;
	text-shadow: 0px 3px 8px rgba(255, 255, 255, 1);
	margin-top: 30px;
}
.top_mv .slideBlk {
	position: absolute;
	top: 0;
	right: 0;
	width: calc(100% - 200px);
	height: calc(85vh - var(--headerH));
	border-radius: 0px 0px 0px 90px;
	overflow: hidden;
}
.top_news{
	position: relative;
	display: block;
	height: 90px;
}
.top_news .newsBlk{
	width: 535px;
	height: 100%;
	margin: 0 auto;
	border-radius: 10px;
	background: #fff;
	box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.1);
	position: absolute;
	top: 0;
	right: 30px;
    z-index: 15;
	display: flex;
}
.top_news .arrow{
	content: "";
	width: 34px;
	height: 34px;
	border: 1px solid #0fc979;
	border-radius: 50%;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	margin: auto 0;
}
.top_news .arrow::before {
    content: "";
    display: block;
    width: 12px;
    height: 10px;
    background: url('images/icon_arrow.svg') no-repeat;
	background-size: contain;
    position: absolute;
    top: 50%;
    left: calc(50% + 1px);
    transform: translate(-50%, -50%);
}
.top_news .newsArticle{
	width: 100%;
	display: flex;
	flex-flow: column;
	justify-content: center;
	gap: 0 20px;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	padding: 0 55px 0px 25px;
}
.top_news .newsArticle .newsTxtBlk{
	display: flex;
	align-items: center;
	gap: 0 10px;
}
.top_news .newsArticle .newsDate{
	font-weight: 700;
	font-size: 16px;
	line-height: 25px;
	color: #a1a1a1;
}
.top_news .newsArticle .newsCat{
	width: 84px;
	height: 25px;
	border-radius: 9999px;
	background: #fff;
	border: 1px solid #0fc979;
	font-weight: 700;
	font-size: 13px;
	line-height: 21px;
	color: #0fc979;
	display: flex;
	justify-content: center;
	align-items: center;
}
.top_news .newsArticle .newsTtl{
	font-weight: 600;
	font-size: 16px;
	line-height: 30px;
	color: #25282b;
	margin-top: 5px;
}
.top_aboutus{
	padding: 45px 0 0;
	overflow: hidden;
}
.top_aboutus .aboutBlk{
	width: 100%;
	padding: 90px 80px 90px 0;
	position: relative;
	display: flex;
	gap: 0 115px;
}
.top_aboutus .aboutBlk::before{
	content: "";
	display: block;
	width: calc(100% + var(--ohw));
	border-radius: 0px 20px 20px 0px;
	height: 100%;
	background: #0FC979;
	position: absolute;
	top: 0;
	left: 0;
	margin-left: calc(var(--ohw) * -1);
	z-index: -1;
}
.top_aboutus .aboutBlk .itemLink{
	margin-top: 80px;
}
.top_aboutus .aboutBlk .txtBlk{
	flex: 1;
}
.top_aboutus .aboutBlk .itemTtl{
	font-weight: 700;
	font-size: 30px;
	line-height: 45px;
	color: #fff;
}
.top_aboutus .aboutBlk .itemTxt{
	font-weight: 500;
	font-size: 18px;
	line-height: 30px;
	color: #fff;
	margin-top: 40px;
}
.top_aboutus .aboutBg{
	width: calc(100% + var(--ohw));
	border-radius: 0px 0px 0px 20px;
	height: 100%;
	margin-right: calc(var(--ohw) * -1);
	overflow: hidden;
	margin-top: -245px;
	position: relative;
	z-index: -2;
}
.top_service{
	padding: 100px 0 100px;
	position: relative;
	overflow: hidden;
}
.top_service::before{
	content: "";
	display: block;
	width: 110vw;
	height: 435px;
	background: url('images/top_serviceBg.webp') no-repeat;
	background-size: cover;
	background-position: center bottom;
	position: absolute;
	top: 100px;
	left: 50%;
  	transform: translate(-50%, 0%);
}
.top_service .serviceBlk{
	display: flex;
	gap: 0 60px;
}
.top_service .headBlk{
	flex: 1;
}
.top_service .serviceTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	color: #25282b;
	margin-top: 40px;
}
.top_service .linkBlk{
	display: flex;
	gap: 0 25px;
}
.top_service .linkBlk .linkItem{
	width: 330px;
	height: fit-content;
	position: relative;
	border-radius: 15px;
}
.top_service .linkBlk .linkItem:nth-of-type(2){
	margin-top: 20px;
}
.top_service .linkItem .itemTtl{
	border-radius: 5px;
	background: #0fc979;
	padding: 12px 13px 16px;
	position: absolute;
	top: -20px;
	left: 20px;
	font-weight: 700;
	font-size: 28px;
	line-height: 34px;
	color: #fff;
	display: flex;
	flex-flow: column;
}
.top_service .linkItem .itemTxt{
	width: 150px;
	height: 52px;
	border-radius: 10px 0px 0px 0px;
	background: #fff;
	position: absolute;
	bottom: 0;
	right: 0;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #25282b;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 15px;
	padding-left: 10px;
}
.top_service .linkItem .itemTxt .arrow{
	content: "";
    display: block;
    width: 12px;
    height: 10px;
    background: url('images/icon_arrow.svg') no-repeat;
	background-size: contain;
}
.top_service .linkItem .itemImg{
	border-radius: 15px;
	overflow: hidden;
}
.top_service .btnBlk{
	display: flex;
	justify-content: center;
	gap: 0 25px;
	margin-top: 60px;
}
.top_service .btnLink.link01{
	background: #0FC979;
    color: #FFF;
}
.top_service .btnLink.link02{
	background: #13659B;
    color: #FFF;
}
.top_service .btnLink .arrow{
	border: 1px solid #FFF;
}
.top_service .btnLink .arrow::before{
	background-color: #FFF;
}
.top_recruit{
	padding: 0 0 100px;
	position: relative;
}
.top_recruit::before{
	content: "";
    display: block;
    width: 100%;
    height: calc(100% + 220px + 220px);
    background: linear-gradient(#fbfffd 0%, #e4f9f0 100%);
    position: absolute;
    top: -220px;
    left: 0;
	z-index: -1;
}
.top_recruit .recruitBlk{
	width: 100%;
    padding: 130px 0px 100px 0;
    position: relative;
    display: flex;
	justify-content: space-between;
    gap: 0 115px;
}
.top_recruit .recruitBlk::before{
	content: "";
    display: block;
    width: calc(100% + var(--ohw) + 100px);
    border-radius: 0px 20px 20px 0px;
    height: 100%;
    background: url('images/top_recruitBg.webp') no-repeat;
	background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    margin-left: calc(var(--ohw) * -1);
    z-index: -1;
}
.top_recruit .recruitBlk .txt{
	font-weight: 700;
	font-size: 18px;
	line-height: 29px;
	color: #fff;
	margin-top: 40px;
}
.top_recruit .recruitBlk .itemLink{
	margin-top: 40px;
}
.top_recruit .recruitBlk .recruitImg{
	width: 545px;
	margin-top: -30px;
}
@media screen and (max-width: 1024px) {
	.top_link{
		width: 250px;
		height: 55px;
		border-radius: 9999px;
		background: #fff;
		font-weight: 700;
		font-size: 15px;
		line-height: 28px;
		color: #0fc979;
		display: flex;
		align-items: center;
		padding: 0 25px;
		position: relative;
	}
	.top_link .arrow{
		content: "";
		width: 30px;
		height: 30px;
		border: 1px solid #0fc979;
		border-radius: 50%;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 10px;
		margin: auto 0;
	}
	.top_link .arrow::before {
		content: "";
		display: block;
		width: 10px;
        height: 8px;
		-webkit-mask-image: url('images/icon_arrow.svg');
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #0FC979;
		position: absolute;
		top: 50%;
		left: calc(50% + 1px);
		transform: translate(-50%, -50%);
	}
	.top_mv {
		height: calc(65vh - var(--headerH) - 15px);
		position: relative;
	}
	.top_mv::before{
		content: "";
		display: block;
		width: 100%;
		height: calc(65vh - var(--headerH) + 120px + 191px);
		background: linear-gradient(#fbfffd 0%, #e4f9f0 100%);
		position: absolute;
		top: 0;
		left: 0;
	}
	.top_mv::after{
		content: "";
		display: block;
		background: url('images/watermark.svg') no-repeat;
		background-size: contain;
		width: 370px;
		height: 370px;
		position: absolute;
		bottom: -90px;
		left: -30px;
	}
	.top_mv .inner {
		height: 100%;
	}
	.top_mv .txtBlk {
		height: auto;
		display: flex;
		flex-flow: column;
		justify-content: center;
		position: absolute;
		top: 50px;
		bottom: 0;
		left: 0%;
		z-index: 10;
		padding: 0 4%;
	}
	.top_mv .txtBlk .ttl {
		font-weight: 700;
		font-size: 35px;
		line-height: 50px;
		letter-spacing: 0.04em;
		color: #25282b;
		text-shadow: 0px 2px 4px rgba(255, 255, 255, 0.5);
	}
	.top_mv .txtBlk .ttl span{
		color: #0FC979;
	}
	.top_mv .txtBlk .txt {
		font-weight: 600;
		font-size: 16px;
		line-height: 26px;
		color: #25282b;
		text-shadow: 0px 2px 4px rgba(255, 255, 255, 0.6);
		margin-top: 15px;
	}
	.top_mv .slideBlk {
		position: absolute;
		top: 0;
		right: 0;
		width: calc(100% - 10%);
		height: calc(65vh - var(--headerH));
		border-radius: 0px 0px 0px 60px;
		overflow: hidden;
	}
	.top_mv .slideBlk img:first-of-type{
		object-position: 25%;
	}
	.top_news{
		position: relative;
		display: block;
		height: 70px;
	}
	.top_news .newsBlk{
		width: 92%;
		height: 100%;
		margin: 0 auto;
		border-radius: 10px;
		background: #fff;
		box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.1);
		position: absolute;
		top: 0;
		right: 4%;
		z-index: 15;
		display: flex;
	}
	.top_news .arrow{
		content: "";
		width: 30px;
		height: 30px;
		border: 1px solid #0fc979;
		border-radius: 50%;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 10px;
		margin: auto 0;
	}
	.top_news .arrow::before {
		content: "";
		display: block;
		width: 10px;
		height: 8px;
		background: url('images/icon_arrow.svg') no-repeat;
		background-size: contain;
		position: absolute;
		top: 50%;
		left: calc(50% + 1px);
		transform: translate(-50%, -50%);
	}
	.top_news .newsArticle{
		width: 100%;
		display: flex;
		flex-flow: column;
		justify-content: center;
		gap: 0 20px;
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		padding: 0 50px 0px 15px;
	}
	.top_news .newsArticle .newsTxtBlk{
		display: flex;
		align-items: center;
		gap: 0 10px;
	}
	.top_news .newsArticle .newsDate{
		font-weight: 700;
		font-size: 14px;
		line-height: 21px;
		color: #a1a1a1;
	}
	.top_news .newsArticle .newsCat{
		width: 84px;
		height: 21px;
		border-radius: 9999px;
		background: #fff;
		border: 1px solid #0fc979;
		font-weight: 700;
		font-size: 12px;
		line-height: 21px;
		color: #0fc979;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.top_news .newsArticle .newsTtl{
		font-weight: 600;
		font-size: 14px;
		line-height: 24px;
		color: #25282b;
		margin-top: 5px;
	}
	.top_aboutus{
		padding: 45px 0 0;
		overflow: hidden;
	}
	.top_aboutus .aboutBlk{
		width: 100%;
		padding: 30px 20px 30px 0;
		position: relative;
		display: flex;
		flex-flow: column;
		gap: 20px 0;
	}
	.top_aboutus .aboutBlk::before{
		content: "";
		display: block;
		width: calc(100% + var(--ohw));
		border-radius: 0px 20px 20px 0px;
		height: 100%;
		background: #0FC979;
		position: absolute;
		top: 0;
		left: 0;
		margin-left: calc(var(--ohw) * -1);
		z-index: -1;
	}
	.top_aboutus .aboutBlk .itemLink{
		margin-top: 80px;
	}
	.top_aboutus .aboutBlk .txtBlk{
		flex: 1;
	}
	.top_aboutus .aboutBlk .itemTtl{
		font-weight: 700;
		font-size: 20px;
		line-height: 30px;
		color: #fff;
	}
	.top_aboutus .aboutBlk .itemTxt{
		font-weight: 500;
		font-size: 16px;
		line-height: 25px;
		color: #fff;
		margin-top: 20px;
	}
	.top_aboutus .aboutBg{
		width: calc(100% + (var(--ohw) / 2));
		border-radius: 0px 0px 0px 20px;
		height: 100%;
		margin-right: calc(var(--ohw) * -1);
		overflow: hidden;
		margin-top: -60px;
		position: relative;
		z-index: -2;
	}
	.top_aboutus .aboutBg img{
		aspect-ratio: 16 / 10;
		object-position: right;
	}
	.top_service{
		padding: 50px 0 60px;
		position: relative;
		overflow: hidden;
	}
	.top_service::before{
		content: "";
		display: block;
		width: 110vw;
		height: 435px;
		background: url('images/top_serviceBg.webp') no-repeat;
		background-size: cover;
		position: absolute;
		top: 100px;
		left: 50%;
		transform: translate(-50%, 0%);
	}
	.top_service::after{
		content: "";
		display: block;
		width: 220vw;
		height: 460px;
		background: url('images/top_serviceBg.webp') no-repeat;
		background-size: cover;
		position: absolute;
		bottom: 200px;
		left: 0%;
		transform: translate(-50%, 0%);
	}
	.top_service .inner{
		position: relative;
        z-index: 1;
	}
	.top_service .serviceBlk{
		display: flex;
		flex-flow: column;
		gap: 50px 0;
	}
	.top_service .headBlk{
		flex: 1;
	}
	.top_service .serviceTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 25px;
		color: #25282b;
		margin-top: 25px;
	}
	.top_service .linkBlk{
		display: flex;
		flex-flow: column;
		gap: 30px 0;
	}
	.top_service .linkBlk .linkItem{
		width: 80%;
		height: fit-content;
		position: relative;
		border-radius: 15px;
	}
	.top_service .linkBlk .linkItem:nth-of-type(2){
		margin-top: 20px;
		margin-left: auto;
	}
	.top_service .linkItem .itemTtl{
		border-radius: 5px;
		background: #0fc979;
		padding: 8px 10px 12px;
		position: absolute;
		top: -15px;
		left: 10px;
		font-weight: 700;
		font-size: 22px;
		line-height: 28px;
		letter-spacing: 0em;
		color: #fff;
		display: flex;
		flex-flow: column;
	}
	.top_service .linkItem .itemTxt{
		width: 150px;
		height: 50px;
		border-radius: 10px 0px 0px 0px;
		background: #fff;
		position: absolute;
		bottom: 0;
		right: 0;
		font-weight: 700;
		font-size: 15px;
		line-height: 24px;
		color: #25282b;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0 15px;
		padding-left: 10px;
	}
	.top_service .linkItem .itemTxt .arrow{
		content: "";
		display: block;
		width: 12px;
		height: 10px;
		background: url('images/icon_arrow.svg') no-repeat;
		background-size: contain;
	}
	.top_service .btnBlk{
		display: flex;
		flex-flow: column;
		align-items: center;
		justify-content: center;
		gap: 20px 0;
		margin-top: 30px;
	}
	.top_service .btnLink.link01{
		background: #0FC979;
		color: #FFF;
	}
	.top_service .btnLink.link02{
		background: #13659B;
		color: #FFF;
	}
	.top_service .btnLink .arrow{
		border: 1px solid #FFF;
	}
	.top_service .btnLink .arrow::before{
		background-color: #FFF;
	}
	.top_recruit{
		padding: 0 0 50px;
		position: relative;
	}
	.top_recruit::before{
		content: "";
		display: block;
		width: 100%;
		height: calc(100% + 220px + 220px);
		background: linear-gradient(#fbfffd 0%, #e4f9f0 100%);
		position: absolute;
		top: -220px;
		left: 0;
		z-index: -1;
	}
	.top_recruit .recruitBlk{
		width: 100%;
		padding: 30px 0px 40px 0;
		position: relative;
		display: flex;
		flex-flow: column;
		justify-content: space-between;
		gap: 40px 0;
	}
	.top_recruit .recruitBlk::before{
		content: "";
		display: block;
		width: calc(100% + var(--ohw) + 100px);
		border-radius: 0px 20px 20px 0px;
		height: 100%;
		background: url('images/top_recruitBg.webp') no-repeat;
		background-size: cover;
		position: absolute;
		top: 0;
		left: 0;
		margin-left: calc(var(--ohw) * -1);
		z-index: -1;
	}
	.top_recruit .recruitBlk .txt{
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #fff;
		margin-top: 25px;
	}
	.top_recruit .recruitBlk .itemLink{
		margin-top: 30px;
	}
	.top_recruit .recruitBlk .recruitImg{
		width: 100%;
		margin-top: 0px;
	}
}

/*
Company
====================================*/
.company_greeting{
	padding: 90px 0 100px;
}
.company_greeting .greetingItem{
	display: flex;
	justify-content: space-between;
	gap: 0 40px;
	margin-top: 40px;
}
.company_greeting .greetingItem .itemBlk{
	max-width: 550px;
	flex: 1;
}
.company_greeting .greetingItem .itemTtl{
	font-weight: 700;
	font-size: 25px;
	line-height: 40px;
	color: #25282b;
}
.company_greeting .greetingItem .itemTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #25282b;
	margin-top: 30px;
}
.company_greeting .greetingItem .itemName{
	font-weight: 700;
	font-size: 15px;
	line-height: 24px;
	color: #25282b;
	display: flex;
	align-items: center;
	gap: 0 10px;
	margin-top: 30px;
}
.company_greeting .greetingItem .itemName span{
	font-weight: 700;
	font-size: 20px;
	line-height: 35px;
	color: #25282b;
}
.company_greeting .greetingItem .itemImg{
	width: 457px;
	border-radius: 10px;
	overflow: hidden;
}
.company_philosophy{
	padding: 60px 0 75px;
	background: url('images/company_philosophy.webp') no-repeat;
	background-size: cover;
}
.company_philosophy .headBlk .subHead{
	text-align: center;
}
.company_philosophy .headBlk .head{
	text-align: center;
}
.company_philosophy .philosophyItem{
	max-width: 900px;
	margin: 0 auto;
	border-radius: 10px;
	background: #fff;
	padding: 50px 75px;
	margin-top: 25px;
}
.company_philosophy .philosophyItem .itemTxt{
	font-weight: 500;
	font-size: 18px;
	line-height: 36px;
	text-align: center;
	color: #25282b;
}
.company_philosophy .philosophyItem .itemTxt:not(:first-of-type){
	margin-top: 20px;
}
.company_plofile{
	background: #E7FBF1;
	padding: 90px 0 100px;
}
.company_plofile .plofileDl{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-top: 40px;
}
.company_plofile .plofileDt{
	width: 200px;
	background: #0FC979;
	border-bottom: 1px solid #fff;
	padding: 20px 10px 20px 25px;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
}
.company_plofile .plofileDd{
	width: calc(100% - 200px);
	background: #fff;
	border-bottom: 1px solid #C4C4C4;
	padding: 20px 50px 20px 40px;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #25282b;
}
.company_plofile .plofileDd p.mt15{
	margin-top: 15px;
}
.company_plofile .plofileDd p.mt10{
	margin-top: 10px;
}
.company_plofile .plofileAccordion{
	width: 100%;
	margin-top: 60px;
}
.company_plofile .plofileAccordion .accordionSummary{
	position: relative;
  	border-radius: 10px;
  	width: 100%;
  	height: 85px;
  	cursor: pointer;
  	background: #fff;
  	padding: 0 30px 0 40px;
  	display: flex;
	justify-content: space-between;
  	align-items: center;
  	font-weight: 700;
	font-size: 25px;
	line-height: 36px;
}
.company_plofile .plofileAccordion[open] .accordionSummary{
	border-radius: 10px 10px 0 0;
}
.company_plofile .plofileAccordion .accordionSummary::-webkit-details-marker {
  	display:none;
}
.company_plofile .plofileAccordion .accordionSummary .toggle{
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #0fc979;
	position: relative;
}
.company_plofile .plofileAccordion .accordionSummary .toggle::before{
	content: "+";
	height: 100%;
	display: block;
	position: absolute;
	top: calc(50% - 3px);
	left: calc(50% + 1px);
	transform: translate(-50%, -50%);
	color: #fff;
	font-weight: 600;
	font-size: 40px;
	line-height: 50px;
}
.company_plofile .plofileAccordion[open] .accordionSummary .toggle::before{
	font-size: 45px;
	top: calc(50% - 2px);
    left: calc(50% + 2.5px);
    transform: translate(-50%, -50%) rotate(45deg);
}
.company_plofile .plofileAccordion .accordionItem {
	padding: 25px 40px  60px;
	background: #FFF;
	border-radius: 0 0 10px 10px;
}
.company_plofile .plofileAccordion .accordionItem .itemTtl{
	font-weight: 700;
	font-size: 20px;
	line-height: 29px;
	color: #0fc979;
	display: flex;
	align-items: center;
	gap: 0 10px;
}
.company_plofile .plofileAccordion .accordionItem .itemTtl.ttl2{
	margin-top: 60px;
}
.company_plofile .plofileAccordion .accordionItem .itemTtl::before{
	content: "";
	display: block;
	width: 20px;
	height: 0px;
	background: transparent;
	border: 3px solid #0fc979;
}
.company_plofile .plofileAccordion .accordionItem .itemTableBlk{
	display: flex;
	gap: 0 20px;
	margin-top: 20px;
}
.company_plofile .plofileAccordion .accordionItem .itemTable{
	width: calc((100% - 20px) / 2);
	height: fit-content;
}
.company_plofile .plofileAccordion .accordionItem .itemTable th{
	height: 50px;
	background: #0fc979;
	text-align: center;
	vertical-align: middle;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
}
.company_plofile .plofileAccordion .accordionItem .itemTable th:last-child{
	width: 120px;
	border-left: 1px solid #FFF;
}
.company_plofile .plofileAccordion .accordionItem .itemTable td{
	height: 50px;
	font-weight: 500;
	text-align: center;
	vertical-align: middle;
	font-size: 16px;
	line-height: 24px;
	color: #25282b;
	border-bottom: 1px solid #C8C8C8;
}
.company_plofile .plofileAccordion .accordionItem .itemTable td:first-child{
	text-align: left;
	padding: 0 15px;
}
.company_plofile .plofileAccordion .accordionItem .itemTable td:last-child{
	border-left: 1px solid #C8C8C8;
}
.company_plofile .plofileAccordion .accordionItem .itemTable.table2{
	width: 100%;
	height: fit-content;
}
.company_plofile .plofileAccordion .accordionItem .itemTable.table2 th:last-child{
	width: 210px;
}
.company_location{
	padding: 90px 0 100px;
}
.company_location .locationTtl{
	font-weight: 700;
	font-size: 30px;
	line-height: 44px;
	color: #25282b;
	padding-bottom: 15px;
	border-bottom: 1px solid #c4c4c4;
	display: flex;
	align-items: center;
	gap: 0 15px;
	margin-top: 40px;
}
.company_location .locationTtl::before{
	content: "";
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: #0fc979;
}
.company_location .locationTtl.ttl2{
	margin-top: 60px;
}
.company_location .locationItem{
	display: flex;
	gap: 0 60px;
	margin-top: 25px;
}
.company_location .locationItem .itemImgBlk{
	flex: 1;
}
.company_location .locationItem .itemImg{
	border-radius: 10px;
	overflow: hidden;
}
.company_location .locationItem .itemTxt{
	margin-top: 15px;
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
	color: #25282b;
}
.company_location .locationItem .itemTel{
	margin-top: 5px;
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
	color: #25282b;
	display: flex;
	flex-wrap: wrap;
	gap: 0 10px;
}
.company_location .locationItem .itemMap{
	width: 53%;
}
.company_location .locationAffiliate{
	width: 100%;
	border-radius: 10px;
	background: #e7fbf1;
	padding: 40px 60px 60px;
	margin-top: 60px;
}
.company_location .locationAffiliate .affiliateTtl{
	font-weight: 700;
	font-size: 30px;
	line-height: 44px;
	color: #0fc979;
	text-align: center;
}
.company_location .locationAffiliate .affiliateBlk{
	margin-top: 30px;
	display: flex;
	gap: 0 60px;
}
.company_location .locationAffiliate .affiliateItem{
	width: calc((100% - 60px) / 2);
}
.company_location .locationAffiliate .affiliateItem .itemImg{
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
}
.company_location .locationAffiliate .affiliateItem .itemTtl{
	font-weight: 700;
	font-size: 20px;
	line-height: 29px;
	color: #25282b;
	margin-top: 15px;
}
.company_location .locationAffiliate .affiliateItem .itemTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #25282b;
	margin-top: 5px;
}
.company_iso{
	padding: 90px 0 100px;
	background: linear-gradient(to bottom, #fff 0%, #e7fbf2 100%) no-repeat;
	background-size: 100% 200px;
	background-position: bottom;
}
.company_iso .inner{
	position: relative;
	z-index: 1;
}
.company_iso .inner::before{
	content: "";
    display: block;
    width: calc(100% + var(--ohw));
	height: calc(100% + 90px + 100px);
	background: #0FC979;
	border-radius: 0px 20px 20px 0px;
	position: absolute;
	top: -90px;
	left: calc(var(--ohw) * -1);
	z-index: -1;
}
.company_iso .isoItem{
	width: 100%;
	border-radius: 10px;
	background: #fff;
	display: flex;
	gap: 0 60px;
	padding: 60px;
	margin-top: 40px;
}
.company_iso .isoItem .itemTxtBlk{
	width: 54%;
}
.company_iso .isoItem .itemTtl{
	font-weight: 700;
	font-size: 30px;
	line-height: 44px;
	color: #25282b;
	display: flex;
	align-items: center;
	gap: 0 15px;
}
.company_iso .isoItem .itemTtl::before{
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #0fc979;
}
.company_iso .isoItem .itemTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #25282b;
	margin-top: 20px;
}
.company_iso .isoItem .itemDl{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #c8c8c8;
	margin-top: 30px;
}
.company_iso .isoItem .itemDt{
	width: 30%;
	height: 55px;
	background: #E7FBF1;
	border-bottom: 1px solid #c8c8c8;
	display: flex;
	align-items: center;
	padding: 0 10px 0 20px;
}
.company_iso .isoItem .itemDd{
	width: 70%;
	height: 55px;
	border-bottom: 1px solid #c8c8c8;
	display: flex;
	align-items: center;
	padding: 0 10px 0 20px;
}
.company_iso .isoItem .itemImg{
	flex: 1;
}
.company_history{
	background: #e7fbf1;
	padding: 90px 0 100px;
}
.company_history .historyBlk{
	display: flex;
	gap: 0 20px;
	margin-top: 40px;
}
.company_history .historyItem{
	width: calc((100% - 20px) / 2);
}
.company_history .historyLine{
	display: flex;
	align-items: flex-start;
	padding-bottom: 25px;
	position: relative;
}
.company_history .historyLine::before{
	content: "";
	display: block;
	width: 0px;
	height: 100%;
	border-left: 1px solid #0fc979;
	position: absolute;
	top: 15px;
	left: 5px;
}
.company_history .historyLine:last-of-type::before{
	height: 50%;
}
.company_history .historyLine.lastLine::before{
	display: none;
}
.company_history .historyLine .lineYear{
	font-weight: 600;
	font-size: 25px;
	line-height: 34px;
	color: #0fc979;
	display: flex;
	align-items: center;
	gap: 0 15px;
}
.company_history .historyLine .lineYear::before{
	content: "";
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #0fc979;
}
.company_history .historyLine .lineMonth{
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #25282b;
	padding: 0 25px 0 28px;
	margin-top: 6px;
}
.company_history .historyLine .lineTxt{
	flex: 1;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #25282b;
	margin-top: 6px;
}
@media screen and (max-width: 1024px) {
	.company_greeting{
		padding: 50px 0 40px;
	}
	.company_greeting .greetingItem{
		display: flex;
		flex-flow: column;
		justify-content: space-between;
		gap: 20px 0;
		margin-top: 30px;
	}
	.company_greeting .greetingItem .itemBlk{
		max-width: 550px;
		flex: 1;
		order: 2;
	}
	.company_greeting .greetingItem .itemTtl{
		font-weight: 700;
		font-size: 20px;
		line-height: 34px;
		color: #25282b;
	}
	.company_greeting .greetingItem .itemTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 26px;
		color: #25282b;
		margin-top: 15px;
	}
	.company_greeting .greetingItem .itemName{
		font-weight: 700;
		font-size: 14px;
		line-height: 22px;
		color: #25282b;
		display: flex;
		align-items: center;
		gap: 0 10px;
		margin-top: 20px;
	}
	.company_greeting .greetingItem .itemName span{
		font-weight: 700;
		font-size: 18px;
		line-height: 28px;
		color: #25282b;
	}
	.company_greeting .greetingItem .itemImg{
		width: 100%;
		border-radius: 10px;
		overflow: hidden;
		order: 1;
	}
	.company_philosophy{
		padding: 40px 0 55px;
		background: url('images/company_philosophy.webp') no-repeat;
		background-size: cover;
	}
	.company_philosophy .headBlk .subHead{
		text-align: center;
	}
	.company_philosophy .headBlk .head{
		text-align: center;
	}
	.company_philosophy .philosophyItem{
		max-width: 900px;
		margin: 0 auto;
		border-radius: 10px;
		background: #fff;
		padding: 25px 5%;
		margin-top: 20px;
	}
	.company_philosophy .philosophyItem .itemTxt{
		font-weight: 500;
		font-size: 16px;
		line-height: 28px;
		text-align: justify;
		color: #25282b;
	}
	.company_philosophy .philosophyItem .itemTxt:not(:first-of-type){
		margin-top: 20px;
	}
	.company_plofile{
		background: #E7FBF1;
		padding: 50px 0 60px;
	}
	.company_plofile .plofileDl{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		margin-top: 30px;
	}
	.company_plofile .plofileDt{
		width: 100%;
		background: #0FC979;
		border-bottom: 1px solid #fff;
		padding: 15px 15px 15px 10px;
		font-weight: 700;
		font-size: 15px;
		line-height: 21px;
		color: #fff;
	}
	.company_plofile .plofileDd{
		width: calc(100% - 0px);
		background: #fff;
		border-bottom: none;
		padding: 15px 15px 17px 15px;
		font-weight: 500;
		font-size: 15px;
		line-height: 21px;
		color: #25282b;
	}
	.company_plofile .plofileDd p.mt15{
		margin-top: 15px;
	}
	.company_plofile .plofileDd p.mt10{
		margin-top: 10px;
	}
	.company_plofile .plofileAccordion{
		width: 100%;
		margin-top: 30px;
	}
	.company_plofile .plofileAccordion .accordionSummary{
		position: relative;
		border-radius: 10px;
		width: 100%;
		height: 60px;
		cursor: pointer;
		background: #fff;
		padding: 0 15px 0 20px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-weight: 700;
		font-size: 18px;
		line-height: 26px;
	}
	.company_plofile .plofileAccordion[open] .accordionSummary{
		border-radius: 10px 10px 0 0;
	}
	.company_plofile .plofileAccordion .accordionSummary::-webkit-details-marker {
		display:none;
	}
	.company_plofile .plofileAccordion .accordionSummary .toggle{
		width: 35px;
		height: 35px;
		border-radius: 50%;
		background: #0fc979;
		position: relative;
	}
	.company_plofile .plofileAccordion .accordionSummary .toggle::before{
		content: "+";
		height: 100%;
		display: block;
		position: absolute;
		top: calc(50% - 3px);
		left: calc(50% + 0px);
		transform: translate(-50%, -50%);
		color: #fff;
		font-weight: 600;
		font-size: 30px;
		line-height: 36px;
	}
	.company_plofile .plofileAccordion[open] .accordionSummary .toggle::before{
		font-size: 35px;
		top: calc(50% - 2px);
		left: calc(50% + 2px);
		transform: translate(-50%, -50%) rotate(45deg);
	}
	.company_plofile .plofileAccordion .accordionItem {
		padding: 15px 4% 30px;
		background: #FFF;
		border-radius: 0 0 10px 10px;
	}
	.company_plofile .plofileAccordion .accordionItem .itemTtl{
		font-weight: 700;
		font-size: 18px;
		line-height: 24px;
		color: #0fc979;
		display: flex;
		align-items: center;
		gap: 0 10px;
	}
	.company_plofile .plofileAccordion .accordionItem .itemTtl.ttl2{
		margin-top: 30px;
	}
	.company_plofile .plofileAccordion .accordionItem .itemTtl::before{
		content: "";
		display: block;
		width: 15px;
		height: 0px;
		background: transparent;
		border: 2px solid #0fc979;
	}
	.company_plofile .plofileAccordion .accordionItem .itemTableBlk{
		display: flex;
		flex-flow: column;
		gap: 30px 0;
		margin-top: 15px;
	}
	.company_plofile .plofileAccordion .accordionItem .itemTable{
		width: 100%;
		display: table;
		height: fit-content;
	}
	.company_plofile .plofileAccordion .accordionItem .itemTable th{
		height: 45px;
		background: #0fc979;
		text-align: center;
		vertical-align: middle;
		font-weight: 700;
		font-size: 15px;
		line-height: 21px;
		color: #fff;
	}
	.company_plofile .plofileAccordion .accordionItem .itemTable th:last-child{
		width: 90px;
		border-left: 1px solid #FFF;
	}
	.company_plofile .plofileAccordion .accordionItem .itemTable td{
		height: 45px;
		font-weight: 500;
		text-align: center;
		vertical-align: middle;
		font-size: 15px;
		line-height: 21px;
		color: #25282b;
		border-bottom: 1px solid #C8C8C8;
	}
	.company_plofile .plofileAccordion .accordionItem .itemTable td:first-child{
		text-align: left;
		padding: 5px 10px;
	}
	.company_plofile .plofileAccordion .accordionItem .itemTable td:last-child{
		border-left: 1px solid #C8C8C8;
	}
	.company_plofile .plofileAccordion .accordionItem .itemTable.table2{
		width: 100%;
		height: fit-content;
	}
	.company_plofile .plofileAccordion .accordionItem .itemTable.table2 th:last-child{
		width: 90px;
	}
	.company_location{
		padding: 50px 0 60px;
	}
	.company_location .locationTtl{
		font-weight: 700;
		font-size: 20px;
		line-height: 28px;
		color: #25282b;
		padding-bottom: 10px;
		border-bottom: 1px solid #c4c4c4;
		display: flex;
		align-items: center;
		gap: 0 10px;
		margin-top: 30px;
	}
	.company_location .locationTtl::before{
		content: "";
		width: 13px;
		height: 13px;
		border-radius: 50%;
		background: #0fc979;
	}
	.company_location .locationTtl.ttl2{
		margin-top: 35px;
	}
	.company_location .locationItem{
		display: flex;
		flex-flow: column;
		gap: 15px 0;
		margin-top: 20px;
	}
	.company_location .locationItem .itemImgBlk{
		flex: 1;
	}
	.company_location .locationItem .itemImg{
		border-radius: 10px;
		overflow: hidden;
	}
	.company_location .locationItem .itemTxt{
		margin-top: 10px;
		font-weight: 500;
		font-size: 15px;
		line-height: 21px;
		color: #25282b;
	}
	.company_location .locationItem .itemTel{
		margin-top: 5px;
		font-weight: 500;
		font-size: 15px;
		line-height: 21px;
		color: #25282b;
		display: flex;
		flex-wrap: wrap;
		gap: 0 10px;
	}
	.company_location .locationItem .itemMap{
		width: 100%;
	}
	.company_location .locationAffiliate{
		width: 100%;
		border-radius: 10px;
		background: #e7fbf1;
		padding: 20px 4% 25px;
		margin-top: 40px;
	}
	.company_location .locationAffiliate .affiliateTtl{
		font-weight: 700;
		font-size: 20px;
		line-height: 28px;
		color: #0fc979;
		text-align: center;
	}
	.company_location .locationAffiliate .affiliateBlk{
		margin-top: 20px;
		display: flex;
		flex-flow: column;
		gap: 20px 0;
	}
	.company_location .locationAffiliate .affiliateItem{
		width: 100%;
	}
	.company_location .locationAffiliate .affiliateItem .itemImg{
		width: 100%;
		border-radius: 10px;
		overflow: hidden;
	}
	.company_location .locationAffiliate .affiliateItem .itemTtl{
		font-weight: 700;
		font-size: 16px;
		line-height: 22px;
		color: #25282b;
		margin-top: 10px;
	}
	.company_location .locationAffiliate .affiliateItem .itemTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 22px;
		color: #25282b;
		margin-top: 5px;
	}
	.company_iso{
		padding: 30px 0 30px;
		background: linear-gradient(to bottom, #fff 0%, #e7fbf2 100%) no-repeat;
		background-size: 100% 200px;
		background-position: bottom;
	}
	.company_iso .inner{
		position: relative;
		z-index: 1;
	}
	.company_iso .inner::before{
		content: "";
		display: block;
		width: calc(100% + var(--ohw));
		height: calc(100% + 30px + 30px);
		background: #0FC979;
		border-radius: 0px 20px 20px 0px;
		position: absolute;
		top: -30px;
		left: calc(var(--ohw) * -1);
		z-index: -1;
	}
	.company_iso .isoItem{
		width: 96%;
		border-radius: 10px;
		background: #fff;
		display: flex;
		flex-flow: column;
		gap: 25px 0;
		padding: 20px 4%;
		margin-top: 20px;
	}
	.company_iso .isoItem .itemTxtBlk{
		width: 100%;
	}
	.company_iso .isoItem .itemTtl{
		font-weight: 700;
		font-size: 20px;
		line-height: 32px;
		color: #25282b;
		display: flex;
		align-items: center;
		gap: 0 10px;
	}
	.company_iso .isoItem .itemTtl::before{
		content: "";
		width: 13px;
		height: 13px;
		border-radius: 50%;
		background: #0fc979;
	}
	.company_iso .isoItem .itemTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		color: #25282b;
		margin-top: 10px;
	}
	.company_iso .isoItem .itemDl{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		border-top: 1px solid #c8c8c8;
		margin-top: 15px;
	}
	.company_iso .isoItem .itemDt{
		width: 30%;
		height: 45px;
		background: #E7FBF1;
		border-bottom: 1px solid #c8c8c8;
		display: flex;
		align-items: center;
		padding: 0 10px 0 10px;
	}
	.company_iso .isoItem .itemDd{
		width: 70%;
		height: 45px;
		border-bottom: 1px solid #c8c8c8;
		display: flex;
		align-items: center;
		padding: 0 10px 0 10px;
	}
	.company_iso .isoItem .itemImg{
		flex: 1;
	}
	.company_history{
		background: #e7fbf1;
		padding: 55px 0 35px;
	}
	.company_history .historyBlk{
		display: flex;
		flex-flow: column;
		gap: 0px 0;
		margin-top: 25px;
	}
	.company_history .historyItem{
		width: 100%;
	}
	.company_history .historyLine{
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		padding-bottom: 20px;
		position: relative;
	}
	.company_history .historyLine::before{
		content: "";
		display: block;
		width: 0px;
		height: 100%;
		border-left: 1px solid #0fc979;
		position: absolute;
		top: 15px;
		left: 5px;
	}
	.company_history .historyLine:last-of-type::before{
		height: 100%;
	}
	.company_history .historyLine.lastLine::before{
		display: none;
	}
	.company_history .historyLine .lineYear{
		width: 100%;
		font-weight: 600;
		font-size: 22px;
		line-height: 30px;
		color: #0fc979;
		display: flex;
		align-items: center;
		gap: 0 5px;
	}
	.company_history .historyLine .lineYear::before{
		content: "";
		width: 10px;
		height: 10px;
		border-radius: 50%;
		background: #0fc979;
	}
	.company_history .historyLine .lineMonth{
		font-weight: 700;
		font-size: 15px;
        line-height: 22px;
		color: #25282b;
		padding: 0 10px 0 20px;
		margin-top: 6px;
	}
	.company_history .historyLine .lineTxt{
		flex: 1;
		font-weight: 500;
		font-size: 15px;
		line-height: 22px;
		color: #25282b;
		margin-top: 6px;
        text-align: left;
	}
}

/*
Service
====================================*/
.service_lead{
	margin-top: 40px;
	padding: 60px 0;
	background: #e7fbf1;
}
.service_lead .leadItem{
	display: flex;
	align-items: center;
	gap: 0 70px;
	padding: 0 75px;
}
.service_lead .leadItem .itemTxtBlk{
	width: 53%;
	margin: auto 0;
}
.service_lead .leadItem .itemTtl{
	font-weight: 700;
	font-size: 30px;
	line-height: 48px;
	color: #0fc979;
}
.service_lead .leadItem .itemTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	color: #25282b;
	margin-top: 35px;
}
.service_lead .leadItem .itemImg{
	flex: 1;
}
.service_const{
	padding: 150px 0 0;
}
.service_const .constBlk{
	display: flex;
	gap: 0 55px;
}
.service_const .headBlk{
	display: flex;
}
.service_const .headBlk .head{
	display: flex;
    flex-flow: column;
	line-height: 46px;
}
.service_const .headBlk .subHead{
	writing-mode: vertical-rl;
	margin-left: 10px;
	margin-top: 10px;
}
.service_const .constItem{
	flex: 1;
}
.service_const .constItem .itemImg{
	margin-right: calc(var(--ohw) * -1);
	border-radius: 15px 0px 0px 15px;
	overflow: hidden;
}
.service_const .constItem .itemTxtBlk{
	display: flex;
	gap: 0 100px;
	margin-top: 30px;
}
.service_const .constItem .itemTxt{
	flex: 1;
}
.service_const .constItem .itemLink{
	width: 280px;
	height: 60px;
	border-radius: 9999px;
	background: #0fc979;
	padding: 0 15px 0 30px;
	display: flex;
	align-items: center;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	position: relative;
}
.service_const .constItem .itemLink .arrow{
	width: 34px;
    height: 34px;
    border: 1px solid #FFF;
    border-radius: 50%;
	position: absolute;
    top: 0;
    bottom: 0;
	right: 15px;
    margin: auto 0;
}
.service_const .constItem .itemLink .arrow::before {
    content: "";
    display: block;
    width: 12px;
    height: 10px;
    -webkit-mask-image: url('images/icon_arrow.svg');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #FFF;
    position: absolute;
    top: 50%;
    left: calc(50% + 1px);
    transform: translate(-50%, -50%);
}
.service_civil{
	padding: 100px 0 100px;
}
.service_civil .civilBlk{
	display: flex;
	gap: 0 55px;
}
.service_civil .headBlk{
	display: flex;
}
.service_civil .headBlk .head{
	display: flex;
    flex-flow: column;
	line-height: 46px;
}
.service_civil .headBlk .subHead{
	writing-mode: vertical-rl;
	margin-left: 10px;
	margin-top: 10px;
}
.service_civil .civilItem{
	flex: 1;
}
.service_civil .civilItem .itemImg{
	margin-left: calc(var(--ohw) * -1);
	border-radius: 0px 15px 15px 0px;
	overflow: hidden;
}
.service_civil .civilItem .itemTxtBlk{
	display: flex;
	gap: 0 100px;
	margin-top: 30px;
}
.service_civil .civilItem .itemTxt{
	flex: 1;
}
.service_civil .civilItem .itemLink{
	width: 280px;
	height: 60px;
	border-radius: 9999px;
	background: #0fc979;
	padding: 0 15px 0 30px;
	display: flex;
	align-items: center;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	position: relative;
}
.service_civil .civilItem .itemLink .arrow{
	width: 34px;
    height: 34px;
    border: 1px solid #FFF;
    border-radius: 50%;
	position: absolute;
    top: 0;
    bottom: 0;
	right: 15px;
    margin: auto 0;
}
.service_civil .civilItem .itemLink .arrow::before {
    content: "";
    display: block;
    width: 12px;
    height: 10px;
    -webkit-mask-image: url('images/icon_arrow.svg');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #FFF;
    position: absolute;
    top: 50%;
    left: calc(50% + 1px);
    transform: translate(-50%, -50%);
}
.service_plant{
	padding: 90px 0 90px;
	background: url('images/service_plantBg.webp') no-repeat;
	background-size: cover;
}
.service_plant .plantBlk{
	max-width: 900px;
	background: #fff;
	border-radius: 15px;
	margin: 0 auto;
	padding: 55px 60px 20px;
	display: flex;
	gap: 0 88px;
}
.service_plant .plantBlk .plantTxtBlk{
	flex: 1;
}
.service_plant .plantBlk .plantTtl{
	font-weight: 700;
	font-size: 30px;
	line-height: 44px;
	color: #0fc979;
}
.service_plant .plantBlk .plantTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 25px;
	color: #25282b;
	margin-top: 20px;
	margin-bottom: 35px;
}
.service_plant .plantBlk .plantImg{
	width: 241px;
	position: relative;
}
.service_plant .plantBlk .plantImg img{
	position: absolute;
	bottom: 0;
	left: 0;;
}
.service_works{
	background: #E7FBF1;
	padding: 85px 0 100px;
}
.service_works .worksBlk{
	border-radius: 15px;
	background: #fff;
	padding: 45px 50px 65px;
	margin-top: 40px;
}
.service_works .worksBlk .worksTtl{
	font-weight: 700;
	font-size: 30px;
	line-height: 44px;
	color: #25282b;
	display: flex;
	align-items: center;
	gap: 0 15px;
}
.service_works .worksBlk .worksTtl::before{
	content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #0fc979;
}
.service_works .worksBox{
	display: flex;
	flex-wrap: wrap;
	gap: 45px 40px;
	margin-top: 35px;
}
.service_works .worksBox .worksItem{
	width: calc((100% - 40px) / 2);
}
.service_works .worksBox .worksItem .itemImg{
	border-radius: 15px;
	overflow: hidden;
}
.service_works .worksBox .worksItem .itemTtl{
	font-weight: 700;
	font-size: 20px;
	line-height: 30px;
	color: #25282b;
	margin-top: 15px;
}
.service_works .worksBox .worksItem .itemCatBlk{
	display: flex;
	gap: 0 8px;
	margin-top: 10px;
}
.service_works .worksBox .worksItem .itemCat{
	width: fit-content;
	padding: 3px 16px;
	border-radius: 15px;
	background: #0fc979;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
}
@media screen and (max-width: 1024px) {
	.service_lead{
		margin-top: 40px;
		padding: 30px 0 40px;
		background: #e7fbf1;
	}
	.service_lead .leadItem{
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 0 70px;
		padding: 0 0px;
	}
	.service_lead .leadItem .itemTxtBlk{
		width: 100%;
		margin: auto 0;
	}
	.service_lead .leadItem .itemTtl{
		font-weight: 700;
		font-size: 22px;
		line-height: 34px;
		color: #0fc979;
	}
	.service_lead .leadItem .itemTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 26px;
		color: #25282b;
		margin-top: 20px;
	}
	.service_lead .leadItem .itemImg{
		flex: 1;
		width: 80%;
		margin: 15px auto 0;
	}
	.service_const{
		padding: 50px 0 0;
	}
	.service_const .constBlk{
		display: flex;
		flex-flow: column;
		gap: 0 55px;
		position: relative;
	}
	.service_const .headBlk{
		display: flex;
		background: #FFF;
		padding: 10px 5px 10px 0px;
        width: fit-content;
        position: absolute;
		border-radius: 0 0 10px 0;
	}
	.service_const .headBlk .head{
		display: flex;
		flex-flow: column;
		line-height: 36px;
	}
	.service_const .headBlk .subHead{
		writing-mode: vertical-rl;
		margin-left: 6px;
		margin-top: 12px;
	}
	.service_const .constItem{
		flex: 1;
	}
	.service_const .constItem .itemImg{
		margin-right: calc(var(--ohw) * -1);
		border-radius: 15px 0px 0px 15px;
		overflow: hidden;
	}
	.service_const .constItem .itemImg img{
		aspect-ratio: 16 / 10;
	}
	.service_const .constItem .itemTxtBlk{
		display: flex;
		flex-flow: column;
		gap: 25px 0;
		margin-top: 20px;
	}
	.service_const .constItem .itemTxt{
		flex: 1;
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
	}
	.service_const .constItem .itemLink{
		width: 250px;
        height: 55px;
		margin: 0 auto;
		border-radius: 9999px;
		background: #0fc979;
		padding: 0 25px 0 25px;
		display: flex;
		align-items: center;
		font-weight: 700;
		font-size: 15px;
        line-height: 24px;
		color: #fff;
		position: relative;
	}
	.service_const .constItem .itemLink .arrow{
		width: 30px;
		height: 30px;
		border: 1px solid #FFF;
		border-radius: 50%;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 10px;
		margin: auto 0;
	}
	.service_const .constItem .itemLink .arrow::before {
		content: "";
		display: block;
		width: 10px;
		height: 8px;
		-webkit-mask-image: url('images/icon_arrow.svg');
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #FFF;
		position: absolute;
		top: 50%;
		left: calc(50% + 1px);
		transform: translate(-50%, -50%);
	}
	.service_civil{
		padding: 50px 0 60px;
	}
	.service_civil .civilBlk{
		display: flex;
        flex-flow: column;
        gap: 0 55px;
        position: relative;
	}
	.service_civil .headBlk{
		display: flex;
        background: #FFF;
        padding: 10px 0px 12px 7px;
        width: fit-content;
        position: absolute;
		right: 0;
        border-radius: 0 0 0 10px;
	}
	.service_civil .headBlk .head{
		display: flex;
		flex-flow: column;
		line-height: 34px;
	}
	.service_civil .headBlk .subHead{
		writing-mode: vertical-rl;
		margin-left: 3px;
        margin-top: 12px;
	}
	.service_civil .civilItem{
		flex: 1;
	}
	.service_civil .civilItem .itemImg{
		margin-left: calc(var(--ohw) * -1);
		border-radius: 0px 15px 15px 0px;
		overflow: hidden;
	}
	.service_civil .civilItem .itemImg img{
		aspect-ratio: 16 / 10;
	}
	.service_civil .civilItem .itemTxtBlk{
		display: flex;
		flex-flow: column;
        gap: 25px 0;
        margin-top: 20px;
	}
	.service_civil .civilItem .itemTxt{
		flex: 1;
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
	}
	.service_civil .civilItem .itemLink{
		width: 250px;
		height: 55px;
		margin: 0 auto;
		border-radius: 9999px;
		background: #0fc979;
		padding: 0 15px 0 30px;
		display: flex;
		align-items: center;
		font-weight: 700;
		font-size: 15px;
		line-height: 21px;
		color: #fff;
		position: relative;
	}
	.service_civil .civilItem .itemLink .arrow{
		width: 30px;
		height: 30px;
		border: 1px solid #FFF;
		border-radius: 50%;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 10px;
		margin: auto 0;
	}
	.service_civil .civilItem .itemLink .arrow::before {
		content: "";
		display: block;
		width: 10px;
		height: 8px;
		-webkit-mask-image: url('images/icon_arrow.svg');
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #FFF;
		position: absolute;
		top: 50%;
		left: calc(50% + 1px);
		transform: translate(-50%, -50%);
	}
	.service_plant{
		padding: 60px 0 50px;
		background: url('images/service_plantBg.webp') no-repeat;
		background-size: cover;
	}
	.service_plant .plantBlk{
		max-width: 900px;
		background: #fff;
		border-radius: 15px;
		margin: 0 auto;
		padding: 0px 5% 25px;
		display: flex;
		flex-flow: column;
		gap: 20px 0;
	}
	.service_plant .plantBlk .plantTxtBlk{
		flex: 1;
		order: 2;
	}
	.service_plant .plantBlk .plantTtl{
		font-weight: 700;
		font-size: 22px;
		line-height: 32px;
		color: #0fc979;
	}
	.service_plant .plantBlk .plantTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		color: #25282b;
		margin-top: 15px;
		margin-bottom: 0px;
	}
	.service_plant .plantBlk .plantImg{
		width: 80%;
		position: relative;
		order: 1;
		margin: -30px auto 0;
	}
	.service_plant .plantBlk .plantImg img{
		position: relative;
		top: 0;
		left: 0;;
	}
	.service_works{
		background: #E7FBF1;
		padding: 40px 0 60px;
	}
	.service_works .worksBlk{
		border-radius: 15px;
		background: #fff;
		padding: 25px 4% 25px;
		margin-top: 30px;
	}
	.service_works .worksBlk .worksTtl{
		font-weight: 700;
		font-size: 20px;
        line-height: 28px;
		color: #25282b;
		display: flex;
		align-items: center;
		gap: 0 10px;
	}
	.service_works .worksBlk .worksTtl::before{
		content: "";
		width: 13px;
        height: 13px;
		border-radius: 50%;
		background: #0fc979;
	}
	.service_works .worksBox{
		display: flex;
		flex-wrap: wrap;
		gap: 30px 40px;
		margin-top: 15px;
	}
	.service_works .worksBox .worksItem{
		width: 100%;
	}
	.service_works .worksBox .worksItem .itemImg{
		border-radius: 15px;
		overflow: hidden;
	}
	.service_works .worksBox .worksItem .itemTtl{
		font-weight: 700;
		font-size: 15px;
		line-height: 26px;
		color: #25282b;
		margin-top: 10px;
	}
	.service_works .worksBox .worksItem .itemCatBlk{
		display: flex;
		gap: 0 6px;
		margin-top: 10px;
	}
	.service_works .worksBox .worksItem .itemCat{
		width: fit-content;
		padding: 3px 16px;
		border-radius: 15px;
		background: #0fc979;
		font-weight: 700;
		font-size: 14px;
		line-height: 20px;
		color: #fff;
	}
}

/*
Recruit
====================================*/
.recruit_message{
	margin-top: 65px;
	padding: 0;
	position: relative;
}
.recruit_message::before{
	content: "";
    display: block;
	width: 100%;
	height: 200px;
	background: linear-gradient(#fff 0%, #e7fbf2 100%);
	position: absolute;
	left: 0;
	bottom: 60px;
	z-index: -2;
}
.recruit_message::after{
	content: "";
    display: block;
	width: 100%;
	height: 60px;
	background: #e7fbf2;
	position: absolute;
	left: 0;
	bottom: 0px;
	z-index: -2;
}
.recruit_message .messageBlk{
	display: flex;
	position: relative;
	gap: 0 10px;
	justify-content: space-between;
	padding: 80px 0 0px;
}
.recruit_message .messageBlk::before{
	content: "";
    display: block;
    width: calc(100% + var(--ohw) + 100px);
    border-radius: 0px 20px 20px 0px;
    height: calc(100% - 60px);
    background: url('images/recruit_messageBg.webp') no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
	margin-left: calc(var(--ohw) * -1);
    z-index: -1;
}
.recruit_message .messageTxtBlk{
	max-width: 500px;
}
.recruit_message .messageTtl{
	font-weight: 700;
	font-size: 30px;
	line-height: 48px;
	color: #fff;
}
.recruit_message .messageTxt{
	font-weight: 600;
	font-size: 16px;
	line-height: 26px;
	color: #fff;
	margin-top: 35px;
}
.recruit_message .messageImgBlk{
	width: 630px;
	flex-shrink: 0;
	margin-right: -40px;
	margin-top: -50px;
}
.recruit_message .messageBubble{
	width: 442px;
	height: 442px;
	margin-left: auto;
}
.recruit_message .messageBubble2{
	width: 248px;
	height: 248px;
	margin-top: -70px;
}
.recruit_members{
	background: #E7FBF1;
	padding: 30px 0 100px;
}
.recruit_members .membersBlk{
	margin-top: 40px;
	display: flex;
	flex-flow: column;
	gap: 60px 0;
}
.recruit_members .memnersItem{
	display: flex;
	position: relative;
}
.recruit_members .memnersItem .itemImg{
	width: calc(39% + 45px);
	margin-right: -45px;
	border-radius: 15px;
	overflow: hidden;
	margin-top: 30px;
}
.recruit_members .memnersItem.item02 .itemImg{
	margin-right: 0px;
	margin-left: 0px;
}
.recruit_members .memnersItem .itemTxtBlk{
	width: 61%;
	height: fit-content;
	padding: 45px;
	margin-left: 0px;
	border-radius: 30px 30px 30px 0px;
	background: #fff;
	z-index: 1;
}
.recruit_members .memnersItem.item02 .itemTxtBlk{
	width: calc(61% + 45px);
	border-radius: 30px 30px 0px 30px;
	margin-left: 0px;
	margin-right: -45px;
}
.recruit_members .memnersItem .itemTtl{
	font-weight: 700;
	font-size: 22px;
	line-height: 32px;
	color: #25282b;
	padding-bottom: 20px;
	border-bottom: 1px solid #c4c4c4;
}
.recruit_members .memnersItem .itemTtl span{
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #0fc979;
	margin-left: 15px;
}
.recruit_members .memnersItem .itemTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	color: #25282b;
	margin-top: 20px;
}
.recruit_welfare{
	background: url('images/recruit_welfareBg.webp') no-repeat;
	background-size: cover;
	padding: 90px 0 100px;
}
.recruit_welfare .welfareBlk{
	display: flex;
	gap: 0 44px;
	margin-top: 60px;
}
.recruit_welfare .welfareItem{
	width: calc((100% - 44px) / 3);
	border-radius: 10px;
	background: #fff;
	padding: 30px 29px;
}
.recruit_welfare .welfareItem .itemImg{
	width: 164px;
	height: 164px;
	border-radius: 50%;
	margin: 0 auto;
}
.recruit_welfare .welfareItem .itemTtl{
	font-weight: 700;
	font-size: 20px;
	line-height: 30px;
	color: #25282b;
	margin-top: 25px;
	text-align: center;
}
.recruit_welfare .welfareItem .itemTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	color: #25282b;
	margin-top: 10px;
}
.recruit_description{
	background: #E7FBF1;
	padding: 90px 0 100px;
}
.recruit_description .descriptionTtl{
	font-weight: 700;
	font-size: 30px;
	line-height: 44px;
	color: #25282b;
	display: flex;
	align-items: center;
	gap: 0 15px;
	margin-top: 50px;
}
.recruit_description .descriptionTtl::before{
	content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #0fc979;
}
.recruit_description .descriptionDl{
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
}
.recruit_description .descriptionDt{
	width: 200px;
	background: #0fc979;
	padding: 20px 25px;
	border-bottom: 1px solid #fff;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
}
.recruit_description .descriptionDd{
	width: calc(100% - 200px);
	background: #FFFFFF;
	padding: 20px 40px;
	border-bottom: 1px solid #c4c4c4;
	display: flex;
	flex-flow: column;
	gap: 9px 0;
	font-weight: 500;
	font-size: 16px;
	line-height: 25px;
	color: #25282b;
}
.recruit_description .descriptionLink{
	width: 350px;
    height: 80px;
    border-radius: 9999px;
    background: #0fc979;
    padding: 0 15px 0 90px;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    color: #fff;
    position: relative;
	margin: 50px auto 0;
}
.recruit_description .descriptionLink .arrow {
    width: 34px;
    height: 34px;
    border: 1px solid #FFF;
    border-radius: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 25px;
    margin: auto 0;
}
.recruit_description .descriptionLink .arrow::before {
    content: "";
    display: block;
    width: 12px;
    height: 10px;
    -webkit-mask-image: url('images/icon_arrow.svg');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #FFF;
    position: absolute;
    top: 50%;
    left: calc(50% + 1px);
    transform: translate(-50%, -50%);
}
@media screen and (max-width: 1024px) {
	.recruit_message{
		margin-top: 45px;
		padding: 0;
		position: relative;
	}
	.recruit_message::before{
		content: "";
		display: block;
		width: 100%;
		height: 200px;
		background: linear-gradient(#fff 0%, #e7fbf2 100%);
		position: absolute;
		left: 0;
		bottom: 60px;
		z-index: -2;
	}
	.recruit_message::after{
		content: "";
		display: block;
		width: 100%;
		height: 60px;
		background: #e7fbf2;
		position: absolute;
		left: 0;
		bottom: 0px;
		z-index: -2;
	}
	.recruit_message .messageBlk{
		display: flex;
		flex-flow: column;
		position: relative;
		gap: 15px 0;
		justify-content: space-between;
		padding: 40px 0 0px;
	}
	.recruit_message .messageBlk::before{
		content: "";
		display: block;
		width: calc(100% + var(--ohw) + 100px);
		border-radius: 0px 20px 20px 0px;
		height: calc(100% - 40px);
		background: url('images/recruit_messageBg.webp') no-repeat;
		background-size: cover;
		position: absolute;
		top: 0;
		left: 0;
		margin-left: calc(var(--ohw) * -1);
		z-index: -1;
	}
	.recruit_message .messageTxtBlk{
		max-width: 500px;
	}
	.recruit_message .messageTtl{
		font-weight: 700;
		font-size: 22px;
		line-height: 34px;
		color: #fff;
	}
	.recruit_message .messageTxt{
		font-weight: 600;
		font-size: 15px;
        line-height: 24px;
		color: #fff;
		margin-top: 25px;
	}
	.recruit_message .messageImgBlk{
		width: 100%;
		flex-shrink: 0;
		margin-right: 0px;
		margin-top: 0px;
	}
	.recruit_message .messageBubble{
		width: 230px;
		height: 230px;
		margin-left: auto;
		margin-right: -40px
	}
	.recruit_message .messageBubble2{
		width: 150px;
		height: 150px;
		margin-top: -80px;
	}
	.recruit_members{
		background: #E7FBF1;
		padding: 50px 0 60px;
	}
	.recruit_members .membersBlk{
		margin-top: 30px;
		display: flex;
		flex-flow: column;
		gap: 40px 0;
	}
	.recruit_members .memnersItem{
		display: flex;
		flex-flow: column;
		position: relative;
	}
	.recruit_members .memnersItem .itemImg{
		width: calc(90%);
		margin-right: -45px;
		border-radius: 15px;
		overflow: hidden;
		margin-top: 0px;
		z-index: 2;
		order: 1;
	}
	.recruit_members .memnersItem.item02 .itemImg{
		margin-right: 0px;
		margin-left: 0px;
	}
	.recruit_members .memnersItem .itemTxtBlk{
		width: 93%;
		height: fit-content;
		padding: 160px 5% 20px 5%;
		margin-left: auto;
		margin-top: -145px;
		border-radius: 30px 30px 30px 0px;
		background: #fff;
		z-index: 1;
		order: 2;
	}
	.recruit_members .memnersItem.item02 .itemTxtBlk{
		width: 90%;
		border-radius: 30px 30px 0px 30px;
		margin-left: auto;
		margin-right: 0px;
	}
	.recruit_members .memnersItem .itemTtl{
		font-weight: 700;
		font-size: 17px;
		line-height: 26px;
		color: #25282b;
		padding-bottom: 10px;
		border-bottom: 1px solid #c4c4c4;
	}
	.recruit_members .memnersItem .itemTtl span{
		display: block;
		font-weight: 700;
		font-size: 15px;
		line-height: 24px;
		color: #0fc979;
		margin-left: 0px;
	}
	.recruit_members .memnersItem .itemTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 26px;
		color: #25282b;
		margin-top: 15px;
	}
	.recruit_welfare{
		background: url('images/recruit_welfareBg.webp') no-repeat;
		background-size: cover;
		padding: 40px 0 60px;
	}
	.recruit_welfare .welfareBlk{
		display: flex;
		flex-flow: column;
		gap: 20px 0;
		margin-top: 25px;
	}
	.recruit_welfare .welfareItem{
		width: 100%;
		border-radius: 10px;
		background: #fff;
		padding: 25px 20px;
	}
	.recruit_welfare .welfareItem .itemImg{
		width: 124px;
		height: 124px;
		border-radius: 50%;
		margin: 0 auto;
	}
	.recruit_welfare .welfareItem .itemTtl{
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #25282b;
		margin-top: 15px;
		text-align: center;
	}
	.recruit_welfare .welfareItem .itemTxt{
		font-weight: 500;
		font-size: 14px;
		line-height: 24px;
		color: #25282b;
		margin-top: 10px;
	}
	.recruit_description{
		background: #E7FBF1;
		padding: 40px 0 60px;
	}
	.recruit_description .descriptionTtl{
		font-weight: 700;
		font-size: 20px;
		line-height: 30px;
		color: #25282b;
		display: flex;
		align-items: center;
		gap: 0 10px;
		margin-top: 35px;
	}
	.recruit_description .descriptionTtl::before{
		content: "";
		width: 13px;
		height: 13px;
		border-radius: 50%;
		background: #0fc979;
	}
	.recruit_description .descriptionDl{
		display: flex;
		flex-wrap: wrap;
		margin-top: 20px;
	}
	.recruit_description .descriptionDt{
		width: 90px;
		background: #0fc979;
		padding: 12px 10px;
		border-bottom: 1px solid #fff;
		font-weight: 700;
		font-size: 14px;
		line-height: 20px;
		color: #fff;
	}
	.recruit_description .descriptionDd{
		width: calc(100% - 90px);
		background: #FFFFFF;
		padding: 12px 12px;
		border-bottom: 1px solid #c4c4c4;
		display: flex;
		flex-flow: column;
		gap: 10px 0;
		font-weight: 500;
		font-size: 14px;
		line-height: 21px;
		color: #25282b;
	}
	.recruit_description .descriptionLink{
		width: 90%;
		height: 55px;
		border-radius: 9999px;
		background: #0fc979;
		padding: 0 15px 0 0px;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 700;
		font-size: 16px;
		line-height: 26px;
		color: #fff;
		position: relative;
		margin: 40px auto 0;
	}
	.recruit_description .descriptionLink .arrow {
		width: 30px;
		height: 30px;
		border: 1px solid #FFF;
		border-radius: 50%;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 15px;
		margin: auto 0;
	}
	.recruit_description .descriptionLink .arrow::before {
		content: "";
		display: block;
		width: 11px;
		height: 9px;
		-webkit-mask-image: url('images/icon_arrow.svg');
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #FFF;
		position: absolute;
		top: 50%;
		left: calc(50% + 1px);
		transform: translate(-50%, -50%);
	}
}

/*
News
====================================*/
.newsAnchor{
	display: flex;
	justify-content: center;
	gap: 0 15px;
	margin: 60px 0 40px;
}
.newsAnchor li{
	width: 200px;
	height: 45px;
	border-radius: 9999px;
	background: #fff;
	border: 1px solid #0fc979;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #0fc979;
}
.newsAnchor li.current-cat{
	background: #0fc979;
	color: #FFF;
}
.newsAnchor a{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.news_list{
	padding: 60px 0 80px;
	background: #E7FBF1;
}
.news_list .listBlk{
	display: flex;
	flex-flow: column;
	gap: 20px 0;
}
.news_list .listItem{
	width: 100%;
	position: relative;
	background: #fff;
	border-radius: 15px;
}
.news_list .listItem .itemLink{
	display: flex;
	padding: 29px 70px 29px 25px;
}
.news_list .listItem .itemDate{
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #a1a1a1;
	margin-right: 10px;
}
.news_list .listItem .itemCat{
	width: fit-content;
	height: 25px;
	border-radius: 9999px;
	background: #fff;
	border: 1px solid #0fc979;
	padding: 0 15px;
	font-weight: 700;
	font-size: 13px;
	line-height: 24px;
	color: #0fc979;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 15px;
}
.news_list .listItem .itemTtl{
	flex: 1;
	font-weight: 600;
	font-size: 18px;
	line-height: 25px;
	color: #333;
}
.news_list .listItem .itemArrow{
	content: "";
    width: 34px;
    height: 34px;
    border: 1px solid #0fc979;
    border-radius: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 25px;
    margin: auto 0;
}
.news_list .listItem .itemArrow::before {
    content: "";
    display: block;
    width: 12px;
    height: 10px;
    background: url('images/icon_arrow.svg') no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: calc(50% + 1px);
    transform: translate(-50%, -50%);
}
.news_list .listEmpty{
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
	text-align: center;
}
@media screen and (max-width: 1024px) {
	.newsAnchor{
		width: 92%;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: center;
		gap: 10px 10px;
		margin: 35px auto 30px;
	}
	.newsAnchor li{
		width: calc((100% - 10px) / 2);
		height: 40px;
		border-radius: 9999px;
		background: #fff;
		border: 1px solid #0fc979;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 700;
		font-size: 15px;
		line-height: 21px;
		color: #0fc979;
	}
	.newsAnchor li.current-cat{
		background: #0fc979;
		color: #FFF;
	}
	.newsAnchor a{
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.news_list{
		padding: 40px 0 60px;
		background: #E7FBF1;
	}
	.news_list .listBlk{
		display: flex;
		flex-flow: column;
		gap: 12px 0;
	}
	.news_list .listItem{
		width: 100%;
		position: relative;
		background: #fff;
		border-radius: 15px;
	}
	.news_list .listItem .itemLink{
		display: flex;
		flex-wrap: wrap;
        padding: 15px 50px 17px 15px;
	}
	.news_list .listItem .itemDate{
		font-weight: 700;
		font-size: 14px;
		line-height: 21px;
		color: #a1a1a1;
		margin-right: 10px;
	}
	.news_list .listItem .itemCat{
		width: fit-content;
		height: 21px;
		border-radius: 9999px;
		background: #fff;
		border: 1px solid #0fc979;
		padding: 0 10px;
		font-weight: 700;
		font-size: 12px;
		line-height: 21px;
		color: #0fc979;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-right: 15px;
	}
	.news_list .listItem .itemTtl{
		flex: auto;
		width: 100%;
		font-weight: 600;
		font-size: 16px;
		line-height: 20px;
		color: #333;
		margin-top: 8px;
	}
	.news_list .listItem .itemArrow{
		content: "";
		width: 30px;
		height: 30px;
		border: 1px solid #0fc979;
		border-radius: 50%;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 12px;
		margin: auto 0;
	}
	.news_list .listItem .itemArrow::before {
		content: "";
		display: block;
		width: 11px;
		height: 9px;
		background: url('images/icon_arrow.svg') no-repeat;
		background-size: contain;
		position: absolute;
		top: 50%;
		left: calc(50% + 1px);
		transform: translate(-50%, -50%);
	}
	.news_list .listEmpty{
		font-weight: 600;
		font-size: 18px;
		line-height: 24px;
		text-align: center;
	}
}

/*
NewsPost
====================================*/
.newsPost_article{
	padding: 60px 0 200px;
	position: relative;
}
.newsPost_article::before{
	content: "";
    display: block;
    width: 100%;
    height: 200px;
    background: linear-gradient(#fff 0%, #e7fbf2 100%);
    position: absolute;
    left: 0;
    bottom: 0px;
    z-index: -2;
}
.newsPost_article .inner{
	position: relative;
}
.newsPost_article .inner::before{
	content: "";
	display: block;
	background: url('images/watermark.svg') no-repeat;
    background-size: contain;
	width: 380px;
    height: 380px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}
.newsPost_article .articleItem{
	width: 100%;
	max-width: 850px;
	margin: 0 auto;
	padding-bottom: 60px;
	border-bottom: 1px solid #c4c4c4;
}
.newsPost_article .itemBlk{
	display: flex;
	gap: 0 10px;
}
.newsPost_article .articleItem .itemDate{
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #a1a1a1;
}
.newsPost_article .articleItem .itemCat{
	width: fit-content;
    height: 25px;
    border-radius: 9999px;
    background: #fff;
    border: 1px solid #0fc979;
    padding: 0 15px;
    font-weight: 700;
    font-size: 13px;
    line-height: 24px;
    color: #0fc979;
    display: flex;
    justify-content: center;
    align-items: center;
}
.newsPost_article .articleItem .itemTtl{
	font-weight: 600;
	font-size: 25px;
	line-height: 36px;
	color: #333;
	margin-top: 15px;
}
.newsPost_article .articleItem .itemContent {
	margin: 50px 0 0;
}
.newsPost_article .articleItem .itemContent > *:first-child,
.newsPost_article .articleItem .itemContent > * *:first-child {
	margin-top: 0;
}
.newsPost_article .articleItem .itemContent img {
	display: table;
	margin: auto!important;
}
.newsPost_article .articleItem .itemContent :not(ul):not(li):not(iframe):not(table *) {
	margin: calc(1rem * 1.6) 0 0;
}
.newsPost_article .articleItem .itemContent a {
	color: var(--mainColor);
	text-decoration: underline;
}
@media screen and (max-width: 1024px) {
	.newsPost_article{
		padding: 40px 0 80px;
		position: relative;
	}
	.newsPost_article::before{
		content: "";
		display: block;
		width: 100%;
		height: 100px;
		background: linear-gradient(#fff 0%, #e7fbf2 100%);
		position: absolute;
		left: 0;
		bottom: 0px;
		z-index: -2;
	}
	.newsPost_article .inner{
		position: relative;
	}
	.newsPost_article .inner::before{
		content: "";
		display: block;
		background: url('images/watermark.svg') no-repeat;
		background-size: contain;
		width: 300px;
		height: 300px;
		position: absolute;
		top: 0;
		right: -15%;
		z-index: -1;
	}
	.newsPost_article .articleItem{
		width: 100%;
		max-width: 850px;
		margin: 0 auto;
		padding-bottom: 40px;
		border-bottom: 1px solid #c4c4c4;
	}
	.newsPost_article .itemBlk{
		display: flex;
		gap: 0 10px;
	}
	.newsPost_article .articleItem .itemDate{
		font-weight: 700;
		font-size: 14px;
		line-height: 21px;
		color: #a1a1a1;
	}
	.newsPost_article .articleItem .itemCat{
		width: fit-content;
		height: 21px;
		border-radius: 9999px;
		background: #fff;
		border: 1px solid #0fc979;
		padding: 0 15px;
		font-weight: 700;
		font-size: 12px;
		line-height: 21px;
		color: #0fc979;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.newsPost_article .articleItem .itemTtl{
		font-weight: 600;
		font-size: 20px;
        line-height: 30px;
		color: #333;
		margin-top: 15px;
	}
	.newsPost_article .articleItem .itemContent {
		margin: 30px 0 0;
	}
	.newsPost_article .articleItem .itemContent > *:first-child,
	.newsPost_article .articleItem .itemContent > * *:first-child {
		margin-top: 0;
	}
	.newsPost_article .articleItem .itemContent img {
		display: table;
		margin: auto!important;
	}
	.newsPost_article .articleItem .itemContent :not(ul):not(li):not(iframe):not(table *) {
		margin: calc(1rem * 1.6) 0 0;
	}
	.newsPost_article .articleItem .itemContent a {
		color: var(--mainColor);
		text-decoration: underline;
	}
}

/*
Contact
====================================*/
.contact_tel{
	padding: 50px 0 100px;
}
.contact_tel .telTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	text-align: center;
	color: #25282b;
}
.contact_tel .telBlk{
	margin-top: 45px;
	border-radius: 20px;
	background: #13659b;
	padding: 40px 20px 45px;
}
.contact_tel .blkTtl{
	font-weight: 700;
	font-size: 30px;
	line-height: 44px;
	color: #fff;
	text-align: center;
}
.contact_tel .telFlex{
	display: flex;
	justify-content: center;
	gap: 0 35px;
	margin-top: 30px;
}
.contact_tel .telItem{
	width: 450px;
	border-radius: 20px;
	background: #fff;
	padding: 30px 0;
}
.contact_tel .telItem .itemTxt{
	font-weight: 700;
	font-size: 20px;
	line-height: 29px;
	color: #13659b;
	text-align: center;
}
.contact_tel .telItem .itemNum{
	font-weight: 600;
	font-size: 30px;
	line-height: 40px;
	color: #25282b;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 10px;
	margin-top: 11px;
}
.contact_tel .telItem .itemNum .icon{
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #13659B;
	position: relative;
	display: flex;
    justify-content: center;
    align-items: center;
}
.contact_tel .telItem .itemNum .icon img{
	width: 16px;
	height: 20px;
}
.contact_tel .telItem .itemTime{
	font-weight: 500;
	font-size: 15px;
	line-height: 21px;
	color: #25282b;
	text-align: center;
	margin-top: 5px;
}
.contact_mail{
	background: #e7fbf1;
	padding: 90px 0 120px;
}
.contact_mail .mailTtl{
	font-weight: 700;
	font-size: 30px;
	line-height: 44px;
	text-align: center;
	color: #25282b;
}
.contact_mail .mailForm{
	border-radius: 20px;
	background: #fff;
	padding: 40px 60px 80px;
	margin-top: 45px;
}
@media screen and (max-width: 1024px) {
	.contact_tel{
		padding: 40px 0 50px;
	}
	.contact_tel .telTxt{
		font-weight: 500;
		font-size: 16px;
		line-height: 26px;
		text-align: center;
		color: #25282b;
	}
	.contact_tel .telBlk{
		margin-top: 30px;
		border-radius: 20px;
		background: #13659b;
		padding: 30px 15px 25px;
	}
	.contact_tel .blkTtl{
		font-weight: 700;
		font-size: 20px;
        line-height: 28px;
		color: #fff;
		text-align: center;
	}
	.contact_tel .telFlex{
		display: flex;
		flex-flow: column;
		justify-content: center;
		gap: 20px 0;
		margin-top: 20px;
	}
	.contact_tel .telItem{
		width: 100%;
		border-radius: 20px;
		background: #fff;
		padding: 20px 0;
	}
	.contact_tel .telItem .itemTxt{
		font-weight: 700;
		font-size: 19px;
		line-height: 25px;
		color: #13659b;
		text-align: center;
	}
	.contact_tel .telItem .itemNum{
		font-weight: 600;
		font-size: 28px;
		line-height: 34px;
		color: #25282b;
		text-align: center;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 0 7px;
		margin-top: 7px;
	}
	.contact_tel .telItem .itemNum .icon{
		width: 36px;
		height: 36px;
		border-radius: 50%;
		background: #13659B;
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.contact_tel .telItem .itemNum .icon img{
		width: 14px;
		height: 18px;
	}
	.contact_tel .telItem .itemTime{
		font-weight: 500;
		font-size: 14px;
		line-height: 18px;
		color: #25282b;
		text-align: center;
		margin-top: 5px;
	}
	.contact_mail{
		background: #e7fbf1;
		padding: 50px 0 60px;
	}
	.contact_mail .mailTtl{
		font-weight: 700;
		font-size: 20px;
        line-height: 28px;
		text-align: center;
		color: #25282b;
	}
	.contact_mail .mailForm{
		border-radius: 20px;
		background: #fff;
		padding: 10px 20px 35px 10px;
		margin-top: 25px;
	}
}