/*
Theme Name:ba-template
*/
@charset "UTF-8";
/*####################################

1. General.top_mv .mvImgBlk
┣ 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: #022993;
	/*====== 背景カラー ======*/
	/* コンテンツ背景カラー */
	--contentsBg: #F4F5F7;
	/* 下層ページトップ背景カラー */
	--lowerTopBg: #D7E1FA;
	/* 表組み項目名背景カラー */
	--tableItemBg: #F0F5FA;
	/* フォーム項目名背景カラー */
	--formItemBg: #F0F5FA;
	/* カテゴリーリンク背景カラー */
	--categoryLinkBg: #D7E1FA;
	/* メール問い合わせボタン背景カラー */
	--mailBtnBg: #022993;
	/*====== テキストカラー ======*/
	/* テキストカラー */
	--textColor: #333;
	/* リンクテキストカラー */
	--linkTextColor: #0c4876;
	/*====== ページネーションカラー ======*/
	/* ページネーションテキスト、矢印カラー */
	--pnColor: #aaa;
	/* ページネーションhoverテキスト、矢印カラー */
	--pnHoverColor: #333;
	/* ページネーションCurrentテキスト、矢印カラー */
	--pnCurrentColor: #333;
	/* ページネーションhover背景カラー */
	--pnHoverBg: #f6f6f6;
	/* ページネーションCurrent背景カラー */
	--pnCurrentBg: #f6f6f6;
	/*====== フォント ======*/
	--gothic: "NotoSansJp", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	--mincho: "NotoSerifJp", "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	/*====== width ======*/
	--maxWidth768: 768px;
	--maxWidth500: 500px;
	--maxWidth375: 375px;
	--maxWidth300: 300px;
	/*====== other ======*/
}
/*
Element
====================================*/
body {
	color: var(--textColor);
}
/*
Decoration
====================================*/
/*
Css Animation
====================================*/
/* fade */
.css_fade {
	opacity: 0;
	animation-name: css_fade;
	animation-duration: 3s;
	animation-timing-function: ease;
	animation-delay: 1s;
	animation-direction: normal;
	animation-fill-mode: forwards;
}
@keyframes css_fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/* text fade */
.css_textSplitFade {
	opacity: 0;
}
.css_textSplitFade > span {
	opacity: 0;
	animation: css_textSplitFade 1s ease-out forwards;
}
@keyframes css_textSplitFade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/*
Plugin Overwrite
====================================*/
/*
Slick
---------------------------------------------------------------*/
.top_mv .slick-arrow::before {
	border-color: var(--mainColor);
}
.top_mv .slick-dots li.slick-active button {
	background: var(--mainColor);
}
/*
default.css Overwrite
====================================*/
/*
Other
====================================*/
/*====================================

2. Site Common Style

====================================*/
/*
Pagination
====================================*/
/*
List
---------------------------------------------------------------*/
.pn_list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 45px;
	margin: 60px 0 0;
}
.pn_list .listArrow::before, .pn_list .listArrow::after {
	content: '';
	position: absolute;
	top: calc(50% + 3px);
	width: 9px;
	height: 9px;
	-webkit-transform: rotate(45deg) translate(-50%, -50%);
	transform: rotate(45deg) translate(-50%, -50%);
	transition: .3s;
}
.pn_list .listPagerBlk {
	display: flex;
	align-items: center;
	gap: 20px;
}
.pn_list .listPagerPrevious::before {
	border-bottom: solid 2px #f5820f;
	border-left: solid 2px #f5820f;

	left: calc(50% - 2px);
}
.pn_list .listPagerBlk a, .pn_list .listPagerBlk span {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	border: 1px solid #f5820f;
	color: #f5820f;
	font-weight: 700;
	font-size: 16px;
}
.pn_list .listPagerBlk span.listPagerNum {
	color: #FFF;
	background: #f5820f;
}
.pn_list .listPagerNext::before {
	border-top: solid 2px #f5820f;
	border-right: solid 2px #f5820f;
	right: calc(50% - 2px);
}
@media screen and (min-width: 1025px) {
	.pn_list .listPagerPrevious:hover::before {
		border-bottom: solid 2px #FFF;
		border-left: solid 2px #FFF;
	}
	.pn_list .listPagerBlk a:hover {
		color: #FFF;
		background: #f5820f;
		opacity: 1;
	}
	.pn_list .listPagerNext:hover::before {
		border-top: solid 2px #FFF;
		border-right: solid 2px #FFF;
	}
}
.pn_list .listFirstBlk, .pn_list .listLastBlk {
	width: 100px;
	height: 100%;
}
.pn_list .listFirstBlk a, .pn_list .listLastBlk a {
	display: none;
	position: relative;
	width: 100%;
	height: 100%;
}
@media screen and (min-width: 1025px) {
	.pn_list .listFirstBlk a:hover, .pn_list .listLastBlk a:hover {
		background: var(--pnHoverBg);
	}
}
.pn_list .listFirstBlk a {
	border-right: solid 1px #E2E6EB;
}
.pn_list .listFirstBlk a::before {
	border-bottom: solid 2px var(--pnColor);
	border-left: solid 2px var(--pnColor);
	left: 50%;
}
.pn_list .listFirstBlk a::after {
	border-bottom: solid 2px var(--pnColor);
	border-left: solid 2px var(--pnColor);
	left: calc(50% - 7px);
}
@media screen and (min-width: 1025px) {
	.pn_list .listFirstBlk a:hover::before {
		border-bottom: solid 2px var(--pnHoverColor);
		border-left: solid 2px var(--pnHoverColor);
	}
	.pn_list .listFirstBlk a:hover::after {
		border-bottom: solid 2px var(--pnHoverColor);
		border-left: solid 2px var(--pnHoverColor);
	}
}
.pn_list .listLastBlk a {
	border-left: solid 1px #E2E6EB;
}
.pn_list .listLastBlk a::before {
	border-top: solid 2px var(--pnColor);
	border-right: solid 2px var(--pnColor);
	right: 50%;
}
.pn_list .listLastBlk a::after {
	border-top: solid 2px var(--pnColor);
	border-right: solid 2px var(--pnColor);
	right: calc(50% - 7px);
}
@media screen and (min-width: 1025px) {
	.pn_list .listLastBlk a:hover::before {
		border-top: solid 2px var(--pnHoverColor);
		border-right: solid 2px var(--pnHoverColor);
	}
	.pn_list .listLastBlk a:hover::after {
		border-top: solid 2px var(--pnHoverColor);
		border-right: solid 2px var(--pnHoverColor);
	}
}
@media screen and (max-width: 1024px) {
	.pn_list {
		margin: 30px 0 0;
	}
	.pn_list .listArrow::before, .pn_list .listArrow::after {
		top: calc(50% + 2px);
	}
	.pn_list .listPagerBlk {
		gap: 10px;
	}
	.pn_list .listPagerPrevious::before {
		left: calc(50% - 2px);
	}
	.pn_list .listPagerBlk a, .pn_list .listPagerBlk span {
		height: 35px;
		width: 35px;
		font-size: 14px;
	}
	.pn_list .listPagerBlk span.listPagerNum {}
	.pn_list .listPagerNext::before {}
	.pn_list .listFirstBlk, .pn_list .listLastBlk {
		width: 40px;
	}
	.pn_list .listFirstBlk a, .pn_list .listLastBlk a {}
	.pn_list .listFirstBlk a {}
	.pn_list .listFirstBlk a::before {
		left: calc(50% + 2px);
	}
	.pn_list .listFirstBlk a::after {
		left: calc(50% - 5px);
	}
	.pn_list .listLastBlk a {}
	.pn_list .listLastBlk a::before {
		right: calc(50% + 2px);
	}
	.pn_list .listLastBlk a::after {
		right: calc(50% - 5px);
	}
}
/*
Detail
---------------------------------------------------------------*/
.pn_detail {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 850px;
	height: 65px;
	margin: 60px auto 0;
}
.pn_detail > * {
	height: 100%;
}
.pn_detail .detailpreviousBlk, .pn_detail .detailNextBlk {
	width: 135px;
}
.pn_detail .detailpreviousBlk a, .pn_detail .detailNextBlk a {
	position: relative;
	display: flex;
	gap: 0 15px;
	align-items: center;
	height: 100%;
}
.pn_detail .detailpreviousBlk a::before{
	content: '';
	width: 40px;
	height: 40px;
	border-radius: 20px;
	background: #fff;
	border: 1px solid #f5820f;
}
.pn_detail .detailpreviousBlk a::after {
	content: "";
    display: block;
    width: 17px;
    height: 14px;
    -webkit-mask-image: url(images/icon_arrow.svg);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #f5820f;
	position: absolute;
	top: 50%;
	left: 11px;
	transform: translateY(-50%) scale(-1, 1);
}
.pn_detail .detailpreviousBlk a:hover::before{
	background: #f5820f;
}
.pn_detail .detailpreviousBlk a:hover::after{
	-webkit-mask-image: url(images/icon_arrow.svg);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #FFF;
}
.pn_detail .detailNextBlk a::after {
	content: '';
	width: 40px;
	height: 40px;
	border-radius: 20px;
	background: #fff;
	border: 1px solid #f5820f;
}
.pn_detail .detailNextBlk a::before {
	content: "";
    display: block;
    width: 17px;
    height: 14px;
    -webkit-mask-image: url(images/icon_arrow.svg);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #f5820f;
	position: absolute;
	top: 50%;
	right: 11px;
	transform: translateY(-50%);
}
.pn_detail .detailNextBlk a:hover::after{
	background: #f5820f;
}
.pn_detail .detailNextBlk a:hover::before{
	-webkit-mask-image: url(images/icon_arrow.svg);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #FFF;
}
.pn_detail .detailBackBlk {}
.pn_detail .detailBackBlk a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 280px;
	height: 100%;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	background: linear-gradient(to right, #f5820f 0%, #fed53b 100%);
	border-radius: 9999px;
}
@media screen and (max-width: 1024px) {
	.pn_detail {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		max-width: 850px;
		height: 45px;
		margin: 40px auto 0;
		position: relative;
	}
	.pn_detail > * {
		height: 100%;
	}
	.pn_detail .detailpreviousBlk, .pn_detail .detailNextBlk {
		width: auto;
	}
	.pn_detail .detailpreviousBlk a, .pn_detail .detailNextBlk a {
		position: relative;
		display: flex;
		gap: 0 10px;
		align-items: center;
		height: 100%;
	}
	.pn_detail .detailpreviousBlk a::before{
		content: '';
		width: 30px;
		height: 30px;
		border-radius: 15px;
		background: #fff;
		border: 1px solid #f5820f;
	}
	.pn_detail .detailpreviousBlk a::after {
		content: "";
		display: block;
		width: 13px;
		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: #f5820f;
		position: absolute;
		top: 50%;
		left: 8px;
		transform: translateY(-50%) scale(-1, 1);
	}
	.pn_detail .detailpreviousBlk a:hover::before{
		background: #f5820f;
	}
	.pn_detail .detailpreviousBlk a:hover::after{
		-webkit-mask-image: url(images/icon_arrow.svg);
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #FFF;
	}

	.pn_detail .detailNextBlk a::after {
		content: '';
		width: 30px;
		height: 30px;
		border-radius: 15px;
		background: #fff;
		border: 1px solid #f5820f;
	}
	.pn_detail .detailNextBlk a::before {
		content: "";
		display: block;
		width: 13px;
		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: #f5820f;
		position: absolute;
		top: 50%;
		right: 8px;
		transform: translateY(-50%);
	}
	.pn_detail .detailNextBlk a:hover::after{
		background: #f5820f;
	}
	.pn_detail .detailNextBlk a:hover::before{
		-webkit-mask-image: url(images/icon_arrow.svg);
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #FFF;
	}
	.pn_detail .detailBackBlk {
		position: absolute;
		bottom: calc(-100% - 10px);
		left: 50%;
		transform: translateX(-50%);
	}
	.pn_detail .detailBackBlk a {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 200px;
		height: 100%;
		font-weight: 700;
		font-size: 14px;
		line-height: 20px;
		padding: 0 15px;
		color: #fff;
		background: linear-gradient(to right, #f5820f 0%, #fed53b 100%);
		border-radius: 9999px;
	}
}
/*
Form
====================================*/
/*
Input
----------------------------------------------------------------*/
.form_input {
}
.form_input .inputRow {
	display: flex;
	justify-content: space-between;
	gap: 0 30px;
}
.form_input .inputItem {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 260px;
	padding: 25px 22px 25px 22px;
	font-weight: 700;
	font-size: 16px;
	color: #272e37;
}
.form_input .inputItem ._must {
	width: 60px;
	height: 25px;
	border-radius: 9999px;
	background: #f5820f;
	font-weight: 700;
	font-size: 15px;
	line-height: 21px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.form_input .inputValue {
	flex: 1;
	padding: 15px;
	display: flex;
	align-items: center;
}
.form_input .wpcf7-form-control-wrap {
	width: 100%;
}
/* input[text, tel, email], textarea */
.form_input input[type="text"], .form_input input[type="tel"], .form_input input[type="email"], .form_input textarea {
	width: 100%;
	height: 45px;
	border-radius: 6px;
	border: solid #707070 1px;
	padding: 0px 10px;
	font-size: 16px;
}
.form_input textarea {
	width: 100% !important;
	height: 157px;
	padding: 10px;
}
.form_input input::placeholder, .form_input textarea::placeholder {
	font-size: 14px;
	color: #b4b7bc;
}
/* input[checkbox, radio] */
.form_input input[type="checkbox"], .form_input input[type="radio"] {
	width: 16px;
	height: 16px;
	cursor: pointer;
}
.form_input .wpcf7-form-control {
	display: flex;
	flex-direction: column;
	gap: 5px 0;
}
.form_input .wpcf7-list-item {
	margin: 0;
}
.form_input .wpcf7-list-item label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.form_input .wpcf7-list-item-label {
	font-size: 16px;
}
/* input[file] */
.form_input input[type="file"] {
	font-size: 14px;
}
/* validation */
.form_input .wpcf7-not-valid-tip {
	width: 100%;
	font-size: 14px;
	margin: 10px 0 0;
}
/* turnstile */
.form_turnstile {
	
display: flex;
	
justify-content: center;
	
margin-top: 40px;
}
/* agree */
.form_agree {
	margin: 35px 0 0;
	text-align: center;
}
.form_agree .wpcf7-list-item {
	margin: 0;
}
.form_agree label {
	display: flex;
	align-items: center;
	gap: 10px;
}
.form_agree .wpcf7-list-item-label {
	font-size: 16px;
}
.form_agree input[type="checkbox"] {
	width: 23px;
	height: 23px;
}
/* submit */
.form_submit {
	position: relative;
	width: fit-content;
	text-align: center;
	margin: 40px auto 0;
}
.form_submit input[type="submit"] {
	width: 280px;
	height: 65px;
	border-radius: 9999px;
	background: #CCC;
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
	color: #fff;
}
@media screen and (min-width: 1025px) {
	.form_submit input[type="submit"]:hover {
		opacity: .7;
	}
}
.form_submit.active input[type="submit"]{
	background: linear-gradient(to right, #f5820f 0%, #fed53b 100%);
}
.form_submit .wpcf7-spinner {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
	.form_input {
	}
	.form_input .inputRow {
		display: flex;
		flex-flow: column;
		justify-content: space-between;
	}
	.form_input .inputItem {
		position: relative;
		display: flex;
		justify-content: flex-start;
		gap: 0 12px;
		align-items: center;
		width: 100%;
		padding: 10px 0px 7px 0px;
		font-weight: 700;
		font-size: 15px;
		color: #272e37;
	}
	.form_input .inputItem ._must {
		width: 50px;
		height: 21px;
		border-radius: 9999px;
		background: #f5820f;
		font-weight: 700;
		font-size: 13px;
		line-height: 19px;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.form_input .inputValue {
		flex: 1;
		padding: 0px 0px 10px;
		display: flex;
		align-items: center;
	}
	.form_input .wpcf7-form-control-wrap {
		width: 100%;
	}
	/* input[text, tel, email], textarea */
	.form_input input[type="text"], .form_input input[type="tel"], .form_input input[type="email"], .form_input textarea {
		width: 100%;
		height: 45px;
		border-radius: 6px;
		border: solid #707070 1px;
		padding: 0px 10px;
		font-size: 16px;
	}
	.form_input textarea {
		width: 100% !important;
		height: 157px;
		padding: 10px;
	}
	.form_input input::placeholder, .form_input textarea::placeholder {
		font-size: 14px;
		color: #b4b7bc;
	}
	/* input[checkbox, radio] */
	.form_input input[type="checkbox"], .form_input input[type="radio"] {
		width: 16px;
		height: 16px;
		cursor: pointer;
	}
	.form_input .wpcf7-form-control {
		display: flex;
		flex-direction: column;
		gap: 5px 0;
	}
	.form_input .wpcf7-list-item {
		margin: 0;
	}
	.form_input .wpcf7-list-item label {
		display: inline-flex;
		align-items: center;
		gap: 7px;
	}
	.form_input .wpcf7-list-item-label {
		font-size: 14px;
	}
	/* input[file] */
	.form_input input[type="file"] {
		font-size: 14px;
	}
	/* validation */
	.form_input .wpcf7-not-valid-tip {
		width: 100%;
		font-size: 14px;
		margin: 10px 0 0;
	}
	/* turnstile */
	.form_turnstile {
		
	display: flex;
		
	justify-content: center;
		
	margin-top: 40px;
	}
	/* agree */
	.form_agree {
		margin: 25px 0 0;
		text-align: center;
	}
	.form_agree .wpcf7-list-item {
		margin: 0;
	}
	.form_agree label {
		display: flex;
		align-items: center;
		gap: 8px;
	}
	.form_agree .wpcf7-list-item-label {
		font-size: 14px;
	}
	.form_agree input[type="checkbox"] {
		width: 20px;
		height: 20px;
	}
	/* submit */
	.form_submit {
		position: relative;
		width: auto;
		text-align: center;
		margin: 30px auto 0;
	}
	.form_submit input[type="submit"] {
		width: 230px;
		height: 50px;
		border-radius: 9999px;
		background: #CCC;
		font-weight: 700;
		font-size: 16px;
		line-height: 21px;
		color: #fff;
	}
	.form_submit.active input[type="submit"]{
		background: linear-gradient(to right, #f5820f 0%, #fed53b 100%);
	}
	.form_submit .wpcf7-spinner {
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}
}
/*
Privacy Policy
----------------------------------------------------------------*/
.form_pp {
	margin: 30px 0 0;
	width: 100%;
	height: 157px;
	border-radius: 5px;
	background: #fff;
	border: 1px solid #cecece;
	padding: 30px 30px;
	overflow: auto;
}
.form_pp dt {
	font-size: 15px;
}
.form_pp dd {
	font-size: 13px;
	line-height: 22px;
	margin: 20px 0 0;
}
@media screen and (max-width: 1024px) {
	.form_pp {
		margin: 20px 0 0;
		width: 100%;
		height: 120px;
		border-radius: 5px;
		background: #fff;
		border: 1px solid #cecece;
		padding: 15px 15px;
		overflow: auto;
	}
	.form_pp dt {
		font-size: 13px;
	}
	.form_pp dd {
		font-size: 11px;
		line-height: 18px;
		margin: 10px 0 0;
	}
}
/*
Thanks & 404
====================================*/
.thanks_section {
	overflow: hidden;
	padding: 80px 0 150px;
	border-bottom: 1px solid #0c4876;
}
.thanks_section .inner {}
.thanks_section .blk {}
.thanks_section .headBlk {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	padding: 20px 0;
	background: var(--contentsBg);
}
.thanks_section .head {
	text-align: center;
	font-size: 24px;
}
.thanks_section .mainBlk {
	margin: 35px 0 0;
}
.thanks_section .mainDesc {
	font-size: 14px;
	line-height: 26px;
	text-align: center;
}
.error_section {
	overflow: hidden;
	padding: 80px 0 150px;
	border-bottom: 1px solid #0c4876;
}
.error_section .inner {}
.error_section .blk {}
.error_section .headBlk {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	padding: 20px 0;
	background: var(--contentsBg);
}
.error_section .head {
	text-align: center;
	font-size: 30px;
	font-weight: 600;
}
.error_section .head span {
	font-size: 22px;
	display: block;
}
.error_section .mainBlk {
	margin: 35px 0 0;
}
.error_section .mainDesc {
	font-size: 14px;
	line-height: 26px;
	text-align: center;
}
.thanks_section .linkBlk, .error_section .linkBlk {
	text-align: center;
	margin: 45px 0 0;
}
.thanks_section .linkBlk a, .error_section .linkBlk a {
	display: inline-block;
	width: 250px;
	line-height: 40px;
	font-size: 14px;
	border: solid 1px #134F95;
	border-radius: 30px;
}
@media screen and (min-width: 1025px) {
	.thanks_section .linkBlk a:hover, .error_section .linkBlk a:hover {
		opacity: 1;
		background: #134F95;
		color: #fff;
	}
}
@media screen and (max-width: 1024px) {
	.thanks_section {
		padding: 60px 0 90px;
	}
	.thanks_section .inner {}
	.thanks_section .blk {}
	.thanks_section .headBlk {
		padding: 15px 0;
	}
	.thanks_section .head {
		text-align: center;
		font-size: 20px;
	}
	.thanks_section .mainBlk {
		margin: 30px 0 0;
	}
	.thanks_section .mainDesc {
		line-height: 24px;
	}
	.thanks_section .linkBlk {
		margin: 40px 0 0;
	}
	.error_section {
		padding: 40px 0 90px;
	}
	.error_section .inner {}
	.error_section .blk {}
	.error_section .headBlk {}
	.error_section .head {
		font-size: 24px;
	}
	.error_section .head span {
		font-size: 16px;
	}
	.error_section .mainBlk {
		margin: 30px 0 0;
	}
	.error_section .mainDesc {
		line-height: 24px;
	}
	.thanks_main .linkBlk a, .error_section .linkBlk a {}
}
/*====================================

3. Header

====================================*/
.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
	width: 100%;
	height: 70px;
	height: clamp(4.375rem, -2.946rem + 11.43vw, 5.625rem);
	/* box-shadow: 0 3px 6px rgb(0 0 0 / 16%); */
	background: white;
}
.header .inner {
	height: 100%;
	padding: 0 0px 0 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0 30px;
}
.header .logoBlk {
	flex-shrink: 0;
	display: flex;
}
.header .logoBlk a img {
	height: 66px;
	height: clamp(3.438rem, -0.589rem + 6.29vw, 4.125rem);
}
.header .menuBlk {
	display: flex;
	flex-shrink: 0;
	height: 100%;
}
.header .menuBlk > ul {
	display: flex;
	gap: 30px;
	gap: clamp(1.25rem, -1.08rem + 3.64vw, 1.875rem);
	height: 100%;
}
.header .menuBlk > ul > li {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
}
.header .menuBlk > ul > li > a {
	font-weight: 700;
	font-size: 17px;
	font-size: clamp(0.938rem, 0.472rem + 0.73vw, 1.063rem);
}
.header .menuBlk > ul > li > a._active {
	color: #134F95;
}
.header .menuBlk > ul > li a:hover {
	color: #134F95;
}
.header .menuBlk > 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: 200px;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	pointer-events: none;
}
.header .menuBlk > ul > li._parent:hover > ul {
	top: 100%;
	opacity: 1;
	visibility: visible;
	pointer-events: initial;
}
.header .menuBlk > ul > li > ul > li > a {
	font-size: 14px;
}
.header .menuBlk > ._contact a {
	display: flex;
	align-items: center;
}
.header .menuBlk > ._contact._tel{
	padding-left: 30px;
	padding-left: clamp(1.25rem, -1.08rem + 3.64vw, 1.875rem);
	display: flex;
	flex-flow: column;
    justify-content: center;
}
.header .menuBlk > ._contact._tel a {
	padding: 0 0 0 20px;
	line-height: 1;
	font-size: 22px;
	font-size: clamp(1.125rem, -0.339rem + 2.29vw, 1.375rem);
	font-weight: 700;
	background-image: url('images/icon_tel.svg');
	background-repeat: no-repeat;
	background-position: left top 80%;
	background-size: 18px;
	background-size: clamp(0.938rem, -0.161rem + 1.71vw, 1.125rem);
	color: #f5820f;
}
.header .menuBlk > ._contact._tel ._time{
	font-size: 15px;
	font-size: clamp(0.625rem, -1.205rem + 2.86vw, 0.938rem);
	color: #272e37;
	text-align: center;
}
.header .menuBlk > ._contact._insta{
	padding-left: 20px;
	padding-left: clamp(0.938rem, -0.893rem + 2.86vw, 1.25rem);
}
.header .menuBlk > ._contact._insta a {
	display: grid;
	place-items: center;
	width: 125px;
	width: clamp(7.5rem, 0.179rem + 11.43vw, 8.75rem);
	height: 100%;
	font-weight: 700;
	font-size: 16px;
	font-size: clamp(0.875rem, 0.409rem + 0.73vw, 1rem);
	color: white;
	background: #f5820f;
}
.header .menuBlk > ._contact._insta > a > span {
	padding: 38px 0 0 0px;
	line-height: 1;
	background-image: url(./images/icon_insta2.svg);
	background-repeat: no-repeat;
	background-position: center top 0%;
	background-size: 26px;
	background-size: clamp(1.125rem, -1.804rem + 4.57vw, 1.625rem);
}
.header .menuBlk > ._contact._mail{
	padding-left: 0px;
}
.header .menuBlk > ._contact._mail a {
	display: grid;
	place-items: center;
	width: 125px;
	width: clamp(7.5rem, 0.179rem + 11.43vw, 8.75rem);
	height: 100%;
	font-weight: 700;
	font-size: 16px;
	font-size: clamp(0.875rem, 0.409rem + 0.73vw, 1rem);
	color: white;
	background: #134F95;
}
.header .menuBlk > ._contact._mail > a > span {
	padding: 38px 0 0 0px;
	line-height: 1;
	background-image: url(./images/icon_mail.svg);
	background-repeat: no-repeat;
	background-position: center top 0%;
	background-size: 26px;
	background-size: clamp(1.125rem, -1.804rem + 4.57vw, 1.625rem);
}
.linkBorder{
	position: fixed;
	top: clamp(4.375rem, -2.946rem + 11.43vw, 5.625rem);
	left: 0;
	width: 100%;
	height: 50px;
	background: #ececec;
	z-index: 99998;
	box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 500;
	font-size: 18px;
	color: #0b70f3;
	text-decoration: underline;
}
@media screen and (max-width: 1024px) {
	.header {
		height: 55px;
		box-shadow: none;
	}
	.header .inner {
		background: white;
		padding: 0 5px 0 2%;
		/* box-shadow: 0 2px 10px rgb(0 0 0 / 5%); */
		margin: auto;
	}
	.header .logoBlk a img {
		height: 40px;
	}
	.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 > ul {
		display: block;
		height: auto;
	}
	.header .menuBlk > ul > li {
		position: relative;
		display: block;
		height: auto;
		border-bottom: 1px solid #ccc;
	}
	.header .menuBlk > ul > li > span {
		position: absolute;
		top: 0;
		right: 0;
		height: 100%;
		width: 70px;
	}
	.header .menuBlk > ul > li > a {
		display: flex;
		font-size: 15px;
		padding: 15px 10px;
	}
	.header .menuBlk > ul > li._parent > a {
		position: relative;
	}
	.header .menuBlk > 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 > ul > li._parent::before {
		transform: translateY(0%);
	}
	.header .menuBlk > ul > li._parent._childOpen::before {
		transform: rotateX(180deg);
	}
	.header .menuBlk > 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 > ul > li > ul {
		overflow-y: scroll;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	.header .menuBlk > ul > li > ul::-webkit-scrollbar {
		display: none;
	}
	.header .menuBlk > ul > li._parent:hover > ul {
		top: 100%;
		opacity: unset;
		visibility: unset;
	}
	.header .menuBlk > ul > li._childOpen > ul {
		gap: 15px 0;
		margin: 5px 0 20px;
	}
	.header .menuBlk > ul > li > ul > li {
		height: 0;
		transition: .3s;
	}
	.header .menuBlk > ul > li._childOpen > ul > li {
		height: auto;
	}
	.header .menuBlk > ul > li > ul > li > a {
		font-size: 15px;
		opacity: 0;
		visibility: hidden;
	}
	.header .menuBlk > ul > li._childOpen > ul > li > a {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
	.header .menuBlk > ._contact a {
		display: flex;
		align-items: center;
	}
	.header .menuBlk > ._contact._tel{
		padding-left: 0px;
		display: flex;
		flex-flow: column;
		align-items: center;
		justify-content: center;
		margin-top: 20px;
	}
	.header .menuBlk > ._contact._tel a {
		padding: 0 0 0 30px;
		line-height: 1;
		font-size: 28px;
		font-weight: 700;
		background-image: url('images/icon_tel.svg');
		background-repeat: no-repeat;
		background-position: left top 80%;
		background-size: 22px;
		color: #f5820f;
	}
	.header .menuBlk > ._contact._tel ._time{
		font-size: 15px;
		color: #272e37;
		text-align: center;
		margin-top: 5px;
	}
	.header .menuBlk > ._contact._insta{
		padding-left: 0px;
	}
	.header .menuBlk > ._contact._insta a {
		display: grid;
		place-items: center;
		display: flex;
		justify-content: center;
		padding: 0 35px;
		width: 250px;
		margin: 20px auto 0;
		border-radius: 9999px;
		height: 100%;
		font-weight: 700;
		font-size: 20px;
		color: white;
		background: #f5820f;
	}
	.header .menuBlk > ._contact._insta > a > span {
		padding: 20px 0 20px 35px;
		line-height: 1;
		background-image: url(./images/icon_insta2.svg);
		background-repeat: no-repeat;
		background-position: left top 53%;
		background-size: 22px;
		font-size: 18px;
	}
	.header .menuBlk > ._contact._mail{
		padding-left: 0px;
	}
	.header .menuBlk > ._contact._mail a {
		display: grid;
		place-items: center;
		display: flex;
		justify-content: center;
		padding: 0 35px;
		width: 250px;
		margin: 15px auto 0;
		border-radius: 9999px;
		height: 100%;
		font-weight: 700;
		font-size: 20px;
		color: white;
		background: #134F95;
	}
	.header .menuBlk > ._contact._mail > a > span {
		padding: 20px 0 20px 35px;
		line-height: 1;
		background-image: url(./images/icon_mail.svg);
		background-repeat: no-repeat;
		background-position: left top 53%;
		background-size: 22px;
		font-size: 18px;
	}
	.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;
	}
	.linkBorder{
		position: fixed;
		top: 55px;
		left: 0;
		width: 100%;
		height: auto;
		padding: 5px 15px 7px;
		background: #ececec;
		z-index: 99998;
		box-shadow: 0 2px 10px rgb(0 0 0 / 5%);
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 500;
		font-size: 12px;
		line-height: 20px;
		color: #0b70f3;
		text-decoration: underline;
	}
}
/*====================================

4. Main

====================================*/
main {
	margin: calc(var(--headerH, clamp(4.063rem, 0.568rem + 5.45vw, 5rem)) + 50px) 0 0;
}
@media screen and (max-width: 1024px) {
	main {
		margin: calc(var(--headerH, 55px) + 32px) 0 0;
	}
}
/*====================================

5. Footer

====================================*/
.footer {
	padding: 60px 0 15px;
}
.footer .mainBlk {
	display: flex;
	justify-content: space-between;
	gap: 0 50px;
}
.footer .mainLogoBlk img {
	width: 245px;
}
.footer .mainInfoBlk{
	margin-top: 15px;
}
.footer .mainInfoBlk .infoTxt {
	font-size: 16px;
	line-height: 24px;
	color: #272e37;
}
.footer .mainInfoBlk .infoSns{
	width: 180px;
	height: 45px;
	border-radius: 9999px;
	background: #fff;
	border: 1px solid #f5820f;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 5px;
	font-weight: 700;
	font-size: 15px;
	line-height: 21px;
	color: #f5820f;
	margin-top: 15px;
}
.footer .mainInfoBlk .infoSns::before{
	content: "";
	width: 18px;
	height: 18px;
	background: url('images/icon_insta.svg') no-repeat;
	background-size: contain;
	margin-top: 1px;
}
.footer .mainInfoBlk .infoItem{
	border-radius: 5px;
	background: #fef4dc;
	padding: 15px;
	display: flex;
	gap: 0 10px;
	margin-top: 25px;
}
.footer .mainInfoBlk .infoItem .itemImg{
	width: 175px;
}
.footer .mainInfoBlk .infoItem .itemTxt{
	font-weight: 500;
	font-size: 13px;
	line-height: 20px;
	color: #223750;
}
.footer .menuBlk {
	gap: 40px;
	display: flex;
}
.footer .menuBlk > ul > li:not(:first-of-type){
	margin-top: 25px;
}
.footer .menuBlk > ul > li > a {
	font-weight: 700;
	font-size: 16px;
	font-size: clamp(0.875rem, 0.148rem + 1.14vw, 1rem);
	line-height: 24px;
	color: #272e37;
}
.footer .menuBlk > ul > li > ul {
	display: grid;
	gap: 5px;
	margin: 15px 0 0;
}
.footer .menuBlk > ul > li > ul > li{
	line-height: 21px;
}
.footer .menuBlk > ul > li > ul > li > a {
	font-weight: 500;
	font-size: 15px;
	font-size: clamp(0.813rem, 0.085rem + 1.14vw, 0.938rem);
	line-height: 21px;
	color: #272e37;
}
.footer .copyrightBlk {
	margin: 40px 0 0;
}
.footer .copyrightBlk p {
	font-weight: 600;
	font-size: 16px;
	text-align: center;
	color: #707070;
}
@media screen and (max-width: 1024px) {
	.footer {
		padding: 40px 0 15px;
	}
	.footer .mainBlk {
		display: flex;
		flex-flow: row;
		justify-content: space-between;
		gap: 35px clamp(0.625rem, -2.913rem + 9.43vw, 3.125rem);
	}
	.footer .mainLeftBlk{
		order: 2;
		width: 70%;
	}
	.footer .mainLogoBlk img {
		width: 200px;
	}
	.footer .mainInfoBlk{
		margin-top: 20px;
	}
	.footer .mainInfoBlk .infoTxt {
		font-size: 14px;
		line-height: 21px;
		color: #272e37;
	}
	.footer .mainInfoBlk .infoSns{
		width: 160px;
		height: 40px;
		border-radius: 9999px;
		background: #fff;
		border: 1px solid #f5820f;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 0 5px;
		font-weight: 700;
		font-size: 13px;
		line-height: 18px;
		color: #f5820f;
		margin-top: 15px;
	}
	.footer .mainInfoBlk .infoSns::before{
		content: "";
		width: 16px;
		height: 16px;
		background: url('images/icon_insta.svg') no-repeat;
		background-size: contain;
		margin-top: 1px;
	}
	.footer .mainInfoBlk .infoItem{
		border-radius: 5px;
		background: #fef4dc;
		padding: 15px;
		display: flex;
		gap: 0 10px;
		margin-top: 20px;
	}
	.footer .mainInfoBlk .infoItem .itemImg{
		width: 125px;
	}
	.footer .mainInfoBlk .infoItem .itemTxt{
		font-weight: 500;
		font-size: 11px;
		line-height: 16px;
		color: #223750;
	}
	.footer .menuBlk {
		gap: 15px 25px;
		display: flex;
		flex-wrap: wrap;
	}
	.footer .menuBlk > ul{
		display: flex;
		flex-flow: column;
		gap: 10px 0;
	}
	.footer .menuBlk > ul:last-of-type{
		width: 100%;
		display: flex;
		flex-flow: row;
		flex-wrap: wrap;
		gap: 0 20px;
	}
	.footer .menuBlk > ul > li:not(:first-of-type){
		margin-top: 0px;
	}
	.footer .menuBlk > ul > li > a {
		font-weight: 700;
		font-size: 16px;
		font-size: clamp(0.875rem, 0.148rem + 1.14vw, 1rem);
		line-height: 24px;
		color: #272e37;
	}
	.footer .menuBlk > ul > li > ul {
		display: grid;
		gap: 3px;
		margin: 7px 0 0;
	}
	.footer .menuBlk > ul > li > ul > li{
		line-height: 20px;
	}
	.footer .menuBlk > ul > li > ul > li > a {
		font-weight: 500;
		font-size: 15px;
		font-size: clamp(0.813rem, 0.085rem + 1.14vw, 0.938rem);
		line-height: 20px;
		color: #272e37;
	}
	.footer .copyrightBlk {
		margin: 20px 0 0;
	}
	.footer .copyrightBlk p {
		font-weight: 600;
		font-size: 13px;
		text-align: center;
	}
}
@media screen and (max-width:600px) {
	.footer .mainBlk {
		display: flex;
		flex-flow: column;
		justify-content: space-between;
		gap: 35px 50px;
	}
	.footer .mainLeftBlk{
		width: 100%;
	}
}
/*====================================

6. Common Style

====================================*/
/*
6.1 Single
====================================*/
.cmn_outer {
	padding: 90px 0;
}
.cmn_inner {
	max-width: 1180px;
	padding: 0 40px;
	margin: auto;
}
@media screen and (max-width: 1024px) {
	.cmn_outer {
		padding: 60px 0;
	}
	.cmn_inner {
		width: 92%;
		max-width: var(--maxWidth768);
		padding: 0;
	}
}
/*
6.2 Section
====================================*/
.cmn_top {
	height: 280px;
	background: linear-gradient(to right, #f5820f 0%, #fed53b 100%);
	position: relative;
}
.cmn_top.top2{
	height: 250px;
}
.cmn_top .inner {
	height: 100%;
	display: flex;
}
.cmn_top .headBlk {
	height: 100%;
	display: flex;
	flex-flow: column;
	justify-content: center;
	padding-top: 20px;
}
.cmn_top .head {
	font-weight: 700;
	font-size: 50px;
	line-height: 70px;
	color: #fff;
}
.cmn_top .head span {
	font-family: Montserrat;
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
	color: #fff;
	display: block;
	margin-top: 15px;
}
.cmn_top .headImg{
	width: 60vw;
	height: 310px;
	border-radius: 30px;
	overflow: hidden;
	position: absolute;
	top: 40px;
	right: 40px;
}
.cmn_top .headImg img{
	width: 100%;
	height: 100%;
}
.cmn_top .headImg2{
	width: 340px;
	height: 250px;
	position: absolute;
	top: 0px;
	right: 0px;
}
.anchorNav{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	max-width: 1100px;
    padding: 0 25px;
	margin: 45px auto 0;
}
.anchorNav .anchorLink{
	width: calc((100% - 45px) / 4);
	height: 60px;
	border-radius: 9999px;
	background: #fef4dc;
	font-weight: 600;
	font-size: clamp(0.875rem, 0.606rem + 0.42vw, 1rem);
	line-height: 21px;
	color: #272e37;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	text-align: center;
}
.anchorNav .anchorLink.empty{
	background: inherit;
}
.anchorNav .anchorLink .arrow{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 24px;
	height: 24px;
	border-radius: 9999px;
	background: #fff;
	border: 1px solid #f5820f;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}
.anchorNav .anchorLink .arrow::before{
	content: "";
    display: block;
    width: 14px;
    height: 12px;
    background: url(images/icon_arrow2.svg) no-repeat;
    background-size: contain;
	transform: rotate(90deg);
}
.cmn_head{
	font-weight: 700;
	font-size: 50px;
	line-height: 72px;
	color: #272e37;
	text-align: center;
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 15px 0;
}
.cmn_head:after{
	content: "";
	display: block;
	width: 80px;
	height: 5px;
	background: linear-gradient(to right, #f5820f 0%, #fed53b 100%);
}
.cmn_head2{
	font-weight: 700;
	font-size: 40px;
	line-height: 58px;
	color: #272e37;
	text-align: center;
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 15px 0;
}
.cmn_head2:after{
	content: "";
	display: block;
	width: 60px;
	height: 5px;
	background: linear-gradient(to right, #f5820f 0%, #fed53b 100%);
}
@media screen and (max-width: 1024px) {
	.cmn_top {
		height: 150px;
		background: linear-gradient(to right, #f5820f 0%, #fed53b 100%);
		position: relative;
	}
	.cmn_top.top2{
		height: 150px;
	}
	.cmn_top .inner {
		height: 100%;
		display: flex;
	}
	.cmn_top .headBlk {
		height: 100%;
		display: flex;
		flex-flow: column;
		justify-content: center;
		padding-top: 0;
		padding-bottom: 25px;
	}
	.cmn_top .head {
		font-weight: 700;
		font-size: 30px;
		line-height: 34px;
		color: #fff;
		z-index: 1;
	}
	.cmn_top .head span {
		font-family: Montserrat;
		font-weight: 600;
		font-size: 15px;
		line-height: 18px;
		color: #fff;
		display: block;
		margin-top: 10px;
	}
	.cmn_top .headImg{
		width: calc(100% - 20px);
		max-width: 778px;
        height: 170px;
        border-radius: 20px;
        overflow: hidden;
        position: absolute;
        top: 110px;
        left: 50%;
        transform: translateX(-50%);
	}
	.cmn_top .headImg img{
		width: 100%;
		height: 100%;
	}
	.cmn_top .headImg2{
		width: 205px;
		height: 150px;
		position: absolute;
		top: 0px;
		right: 0px;
	}
	.anchorNav{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 10px;
		max-width: 768px;
		margin: 25px auto 0;
		padding: 0 10px;
	}
	.anchorNav .anchorLink{
		width: calc((100% - 10px) / 2);
		height: 45px;
		border-radius: 9999px;
		background: #fef4dc;
		font-weight: 600;
		font-size: 13px;
		line-height: 18px;
		color: #272e37;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		text-align: center;
		padding-right: 10px;
	}
	.anchorNav .anchorLink.empty{
		display: none;
	}
	.anchorNav .anchorLink .arrow{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 20px;
		height: 20px;
		border-radius: 9999px;
		background: #fff;
		border: 1px solid #f5820f;
		position: absolute;
		top: 50%;
		right: 10px;
		transform: translateY(-50%);
	}
	.anchorNav .anchorLink .arrow::before{
		content: "";
		display: block;
		width: 12px;
		height: 10px;
		background: url(images/icon_arrow2.svg) no-repeat;
		background-size: contain;
		transform: rotate(90deg);
	}
	.cmn_head{
		font-weight: 700;
		font-size: 26px;
		line-height: 34px;
		color: #272e37;
		text-align: center;
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 10px 0;
	}
	.cmn_head:after{
		content: "";
		display: block;
		width: 60px;
		height: 4px;
		background: linear-gradient(to right, #f5820f 0%, #fed53b 100%);
	}
	.cmn_head2{
		font-weight: 700;
		font-size: 30px;
		line-height: 45px;
		color: #272e37;
		text-align: center;
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 10px 0;
	}
	.cmn_head2:after{
		content: "";
		display: block;
		width: 50px;
		height: 4px;
		background: linear-gradient(to right, #f5820f 0%, #fed53b 100%);
	}
}
/*====================================

7. Module

====================================*/
/*====================================

8. Page

====================================*/
/*
Top
====================================*/
.top_cmn_head {
	font-weight: 700;
	font-size: 50px;
	line-height: 70px;
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 12px 0;
}
.top_cmn_head span {
	font-family: 'Montserrat', "Noto Sans JP", sans-serif !important;
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
	color: #f5820f;
}
.top_cmn_txt {
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	text-align: center;
	margin-top: 40px;
}
.top_mv {
	height: auto;
	background-image: url('images/top_mvBg_over.webp');
	background-repeat: no-repeat;
	background-size: contain;
    background-position: bottom;
	overflow: hidden;
}
@media screen and (max-width: 1500px) {
	.top_mv{
		height: auto;
		background-image: url('images/top_mvBg.webp');
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		overflow: hidden;
	}
}
.top_mv .inner {
	height: 100%;
}
.top_mv .mvImgBlk{
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	display: flex;
	padding-top: 20px;
}
.top_mv .mvImgBlk .slick-track {
	display: flex !important;
	animation: mvLoop 30s linear infinite;
}
@keyframes mvLoop {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-2064px);
	}
}
.top_mv .mvImg.img01{
	width: 400px;
	margin-left: 70px;
}
.top_mv .mvImg.img02{
	width: 570px;
	margin-left: 85px;
	margin-top: 105px;
}
.top_mv .mvImg.img03{
	width: 309px;
	margin-left: 60px;
	margin-top: 45px;
}
.top_mv .mvImg.img04{
	width: 500px;
	margin-left: 70px;
	margin-top: 125px;
}
.top_mv .mvImg img{
	border-radius: 15px;
	overflow: hidden;
}
.scrollLink{
	display: block;
	position: relative;
  	width: 160px;
  	height: 160px;
  	color: #fff;
  	font-family: Montserrat;
  	text-decoration: none;
	margin-left: auto;
    margin-right: 20px;
    margin-top: -110px;
}
.scrollLink .scrollText{
	position: absolute;
  	width: 100%;
  	height: 100%;
  	animation: rotate 20s linear infinite;
}
.scrollLink .scrollText span {
  position: absolute;
  left: 50%;
  font-size: 14px;
  line-height: 17px;
  transform-origin: 0 80px;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.scrollLink .scrollArrow{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}
.scrollLink .scrollArrow::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0%;
	width: 100%;
	height: 100%;
	background: url('images/scrollArrow.svg') no-repeat;
	background-size: contain;
}
.top_mv .catchBlk {
	display: flex;
	gap: 0 clamp(2.5rem, -26.591rem + 45.45vw, 7.5rem);
	align-items: flex-end;
	justify-content: center;
	height: 100%;
	padding: 0 40px 70px;
	margin: 0px calc(50% - 50vw) 0;
}
.top_mv .catch {
	font-weight: 700;
	font-size: 60px;
	line-height: 85px;
	color: #fff;
	text-shadow: 0px 3px 10px rgba(227, 124, 21, 0.5);
	white-space: nowrap;
}
.top_mv .catchTxt{
	font-weight: 600;
	font-size: 18px;
	line-height: 30px;
	color: #fff;
	text-shadow: 0px 3px 10px rgba(227, 124, 21, 0.5);
	padding-bottom: 15px;
}
.top_info {
	padding: 51px 0 50px;
	background: #F5820F;
	margin-top: -1px;
}
.top_info .inner{
	display: flex;
}
.top_info .headBlk{
	padding-right: 50px;
	border-right: 1px solid #fff;
	display: flex;
	flex-flow: column;
	gap: 30px 0;
}
.top_info .head{
	font-weight: 700;
	font-size: 25px;
	line-height: 36px;
	color: #fff;
}
.top_info .linkBlk {
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 0 10px;
}
.top_info .linkBlk::after{
	content: "";
	display: block;
	width: 18px;
	height: 18px;
	background: url('images/icon_arrow.svg') no-repeat;
	background-size: contain;
	background-position: center;
}
.top_info .infoBlk {
	flex: 1;
	padding-left: 50px;
}
.top_info .infoBlk a {
	justify-content: flex-start;
	align-items: center;
	gap: 0 15px;
	padding: 7.5px 0;
}
.top_info .infoDate {
	display: inline-block;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
}
.top_info .infoCat {
	display: inline-block;
	width: fit-content;
	height: 28px;
	border-radius: 9999px;
	background: transparent;
	border: 1px solid #fff;
	padding: 0 15px;
	font-weight: 500;
	font-size: 15px;
	line-height: 24px;
	color: #fff;
}
.top_info .infoTitle {
	flex: 1;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
}
.top_strengths{
	padding: 90px 0;
	background: #fef4dc;
}
.top_strengths .itemBlk{
	margin-top: 60px;
	display: flex;
    align-items: center;
	gap: 0 clamp(3.125rem, -0.236rem + 5.25vw, 4.688rem);
}
.top_strengths .itemImgBlk{
	width: 47%;
	border-radius: 30px;
	overflow: hidden;
}
.top_strengths .itemTextBlk{
	flex: 1;
}
.top_strengths .itemTextIndex{
	font-family: Montserrat;
	width: 99px;
	height: 99px;
	border-radius: 49.5px 49.5px 49.5px 5.96px;
	background: #f5820f;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 50px;
	line-height: 60px;
	color: #fff;
}
.top_strengths .itemTextHead{
	font-weight: 700;
	font-size: 30px;
	line-height: 44px;
	color: #272e37;
	margin-top: 20px;
}
.top_strengths .itemTextHead .color{
	display: block;
	color: #F5820F;
}
.top_strengths .itemTextDesc{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	color: #272e37;
	margin-top: 30px;
}
.top_strengths .itemLink{
	margin: 60px auto 0;
	width: 300px;
	height: 80px;
	border-radius: 9999px;
	background: linear-gradient(to right, #f5820f 0%, #fed53b 100%);
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	color: #fff;
}
.top_business{
	position: relative;
}
.top_business::before{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: url('images/top_businessBg_top.webp') no-repeat;
	background-size: contain;
	background-position: top;
	z-index: -1;
}
.top_business::after{
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: url('images/top_businessBg_bottom.webp') no-repeat;
	background-size: contain;
	background-position: bottom;
	z-index: -1;
}
.top_business .itemWrap{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
	margin-top: 50px;
}
.top_business .itemWrap .itemBlk{
	width: calc((100% - 40px) / 2);
}
.top_business .itemWrap .itemImg{
	border-radius: 20px 20px 0 0;
	overflow: hidden;
}
.top_business .itemWrap .itemTxtBlk{
	padding: 20px 35px 25px 30px;
	background: #FEF4DC;
	border-radius: 0 0 20px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.top_business .itemWrap .itemTtl{
	font-weight: 700;
	font-size: 25px;
	line-height: 36px;
	color: #272e37;
	display: flex;
	flex-flow: column;
	gap: 5px 0;
}
.top_business .itemWrap .itemTtl span{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #272e37;
}
.top_business .itemWrap .itemArrow{
	width: 54px;
	height: 54px;
	border-radius: 9999px;
	background: #fff;
	border: 1px solid #f5820f;
	display: flex;
	justify-content: center;
	align-items: center;
}
.top_business .itemWrap .itemArrow::before{
	content: "";
	display: block;
	width: 28px;
	height: 25px;
	background: url('images/icon_arrow2.svg') no-repeat;
	background-size: contain;
}
.top_business .itemLink{
	margin: 60px auto 0;
	width: 300px;
	height: 80px;
	border-radius: 9999px;
	background: linear-gradient(to right, #f5820f 0%, #fed53b 100%);
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	color: #fff;
}
.top_products{
	padding: 85px 0 165px;
	background: url('images/top_productBg.webp') no-repeat;
	background-size: cover;
	background-position: bottom center;
}
.top_products .head{
	color: #FFF;
}
.top_products .head span{
	color: #FFF;
}
.top_products .top_cmn_txt{
	color: #FFF;
	font-weight: 700;
}
.top_products .itemWrap{
	max-width: 940px;
	margin: 40px auto 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.top_products .itemWrap .itemBlk{
	width: 300px;
	height: 215px;
	border-radius: 15px;
	background: #FFF;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: flex-end;
	padding-bottom: 30px;
}
.top_products .itemWrap .itemImg{
	flex: 1;
	display: flex;
    align-items: center;
}
.top_products .itemWrap .itemTxt{
	font-weight: 700;
	font-size: 20px;
	line-height: 30px;
	color: #272e37;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 6px;
}
.top_products .itemWrap .itemTxt .arrow{
	width: 23px;
	height: 23px;
	border-radius: 50%;
	border: 1px solid #f5820f;
	display: flex;
	justify-content: center;
	align-items: center;
}
.top_products .itemWrap .itemTxt .arrow::before{
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	border-top: solid 3px #F5820F;
	border-right: solid 3px #F5820F;
	transform: rotate(45deg);
	margin-right: 2px;
}
.top_company{
	padding: 60px 0 100px;
}
.top_company .itemBlk{
	display: flex;
	align-items: center;
	gap: 0 clamp(2.5rem, -15.682rem + 28.41vw, 5.625rem);
}
.top_company .itemTextBlk{
	flex: 1;
}
.top_company .head{
	align-items: flex-start;
}
.top_company .itemTextHead{
	font-weight: 700;
	font-size: 30px;
	line-height: 48px;
	color: #272e37;
	margin-top: 30px;
}
.top_company .itemTextDesc{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	color: #272e37;
	margin-top: 30px;
}
.top_company .itemTextLink{
	margin: 40px 0 0 0;
	width: 300px;
	height: 80px;
	border-radius: 9999px;
	background: linear-gradient(to right, #f5820f 0%, #fed53b 100%);
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	color: #fff;
}
.top_company .itemImgBlk{
	width: 550px;
	height: fit-content;
	border-radius: 30px;
	overflow: hidden;
}
.top_company .calenderBlk{
	background: url('images/top_calendar.webp') no-repeat;
	background-size: cover;
	margin-top: 70px;
	border-radius: 20px;
	padding: 50px 0;
}
.top_company .calenderItem{
	max-width: 480px;
	margin: 0 auto;
	border-radius: 15px;
	background: #fff;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.08);
	position: relative;
	display: flex;
	flex-flow: column;
	align-items: center;
	padding: 36px 0 42px;
}
.top_company .calenderItem::before{
	content: "";
	display: block;
	width: 440px;
	height: 26px;
	background: url('images/icon_calendar.svg') no-repeat;
	background-size: contain;
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
}
.top_company .calenderItem .itemTtl{
	font-weight: 700;
	font-size: 30px;
	line-height: 44px;
	color: #223750;
}
.top_company .calenderItem .itemSubTtl{
	font-family: Montserrat;
	font-weight: 600;
	font-size: 15px;
	line-height: 20px;
	color: #f5820f;
	margin-top: 5px;
}
.top_company .calenderItem .itemTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	text-align: center;
	color: #272e37;
	margin-top: 10px;
}
.top_company .calenderItem .itemLink{
	width: 260px;
	height: 50px;
	border-radius: 25px;
	background: #f5820f;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 15px;
}
.top_recruit{
	padding: 0;
	position: relative;
	overflow: hidden;
}
.top_recruit .itemImg.img01{
	position: absolute;
	top: 0;
	left: 0;
	width: 45vw;
	height: calc((100% - 8px) / 2);
}
.top_recruit .itemImg.img02{
	position: absolute;
	top: 0;
	right: 0;
	width: 45vw;
	height: calc((100% - 8px) / 2);
}
.top_recruit .itemImg.img03{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 45vw;
	height: calc((100% - 8px) / 2);
}
.top_recruit .itemImg.img04{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 45vw;
	height: calc((100% - 8px) / 2);
}
.top_recruit .itemImg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.top_recruit .itemBlk{
	width: 790px;
	margin: 0 auto;
	padding: 60px 0 70px;
	position: relative;
}
.top_recruit .itemBlk::before{
	content: "";
	width: 100%;
	height: 790px;
	border-radius: 50%;
	display: flex;
	background: #fef4dc;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}
.top_recruit .itemTtl{
	font-weight: 700;
	font-size: 60px;
	line-height: 82px;
	color: #272e37;
	text-align: center;
}
.top_recruit .itemSubTtl{
	font-family: Montserrat;
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
	color: #f5820f;
	text-align: center;
	margin-top: 10px;
}
.top_recruit .itemHead{
	font-weight: 700;
	font-size: 30px;
	line-height: 48px;
	text-align: center;
	color: #272e37;
	margin-top: 30px;
}
.top_recruit .itemTxt{
	max-width: 450px;
	margin: 0 auto;
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	color: #272e37;
	margin-top: 30px;
}
.top_recruit .itemLink{
	margin: 40px auto 0;
    width: 300px;
    height: 80px;
    border-radius: 9999px;
    background: linear-gradient(to right, #f5820f 0%, #fed53b 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    color: #fff;
}
.top_contact{
	background: #f5820f;
	padding: 90px 0 90px;
}
.top_contact .inner{
	display: flex;
	justify-content: space-between;
}
.top_contact .itemTxtBlk{
	margin-top: 25px;
}
.top_contact .itemTtl{
	font-weight: 700;
	font-size: 45px;
	line-height: 65px;
	color: #fff;
	position: relative;
}
.top_contact .itemTtl::before{
	content: "CONTACT";
	display: block;
	width: max-content;
	position: absolute;
	top: -65px;
	left: -40px;
	font-weight: 600;
	font-family: Montserrat;
	font-size: 130px;
	line-height: 160px;
	color: rgba(255,255,255,0.12);
}
.top_contact .itemTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	color: #fff;
	margin-top: 30px;
}
.top_contact .itemLinkBlk{
	display: flex;
	flex-flow: column;
	gap: 10px 0;
}
.top_contact .itemLinkBlk .formLink{
	width: 390px;
	height: 100px;
	border-radius: 9999px;
	background: #134f95;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 8px;
	font-weight: 700;
	font-size: 20px;
	line-height: 30px;
	color: #fff;
}
.top_contact .itemLinkBlk .formLink::before{
	content: "";
	display: block;
	width: 26px;
    height: 23px;
	background: url('images/icon_mail.svg') no-repeat;
	background-size: contain;
	margin-top: 1px;
}
.top_contact .itemLinkBlk .telLink{
	width: 390px;
	height: 100px;
	border-radius: 9999px;
	background: #fff;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
}
.top_contact .itemLinkBlk .telLink .num{
	font-weight: 700;
	font-size: 32px;
	line-height: 46px;
	color: #f5820f;
	display: flex;
	align-items: center;
	gap: 0 5px;
}
.top_contact .itemLinkBlk .telLink .num::before{
	content: "";
	display: block;
	width: 25px;
    height: 25px;
	background: url('images/icon_tel.svg') no-repeat;
	background-size: contain;
	margin-top: 2px;
}
.top_contact .itemLinkBlk .telLink .txt{
	font-weight: 700;
	font-size: 15px;
	line-height: 21px;
	color: #272e37;
}
@media screen and (max-width: 1024px) {
	.top_cmn_head {
		font-weight: 700;
		font-size: 30px;
		line-height: 40px;
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 6px 0;
	}
	.top_cmn_head span {
		font-family: Montserrat;
		font-weight: 600;
		font-size: 16px;
		line-height: 20px;
		color: #f5820f;
	}
	.top_cmn_txt {
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		text-align: justify;
		margin-top: 30px;
	}
	.top_mv {
		height: auto;
		background-image: url('images/top_mvBg.webp');
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		overflow: hidden;
	}
	.top_mv .inner {
		height: 100%;
	}
	.top_mv .mvImgBlk{
		width: 100vw;
		margin: 0 calc(50% - 50vw);
		display: flex;
		padding-top: 20px;
	}
	.top_mv .mvImgBlk .slick-track {
		display: flex !important;
		animation: mvLoop 30s linear infinite;
	}
	@keyframes mvLoop {
		0% {
			transform: translateX(0);
		}
		100% {
			transform: translateX(-1044px);
		}
	}
	.top_mv .mvImg.img01{
		width: 200px;
		margin-left: 30px;
	}
	.top_mv .mvImg.img02{
		width: 285px;
		margin-left: 55px;
		margin-top: 45px;
	}
	.top_mv .mvImg.img03{
		width: 154px;
		margin-left: 30px;
		margin-top: 25px;
	}
	.top_mv .mvImg.img04{
		width: 250px;
		margin-left: 40px;
		margin-top: 65px;
	}
	.top_mv .mvImg img{
		border-radius: 10px;
		overflow: hidden;
	}
	.scrollLink{
		display: block;
		position: relative;
		width: 110px;
		height: 110px;
		color: #fff;
		font-family: Montserrat;
		text-decoration: none;
		margin-left: auto;
		margin-right: 0px;
		margin-top: -70px;
	}
	.scrollLink .scrollText{
		position: absolute;
		width: 100%;
		height: 100%;
		animation: rotate 20s linear infinite;
	}
	.scrollLink .scrollText span {
		position: absolute;
		left: 50%;
		font-size: 11px;
		line-height: 15px;
		transform-origin: 0 55px;
	}
	@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
	}
	.scrollLink .scrollArrow{
		position: absolute;
		top: 50%;
		left: 50%;
		width: 70px;
		height: 70px;
		border-radius: 50%;
		transform: translate(-50%, -50%);
	}
	.scrollLink .scrollArrow::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0%;
		width: 100%;
		height: 100%;
		background: url('images/scrollArrow.svg') no-repeat;
		background-size: contain;
	}
	.top_mv .catchBlk {
		display: flex;
		gap: 0 clamp(2.5rem, -26.591rem + 45.45vw, 7.5rem);
		flex-flow: column;
		align-items: flex-start;
		justify-content: center;
		height: 100%;
		padding: 10px 0px 50px;
		margin: 0px auto 0;
	}
	.top_mv .catch {
		font-weight: 700;
		font-size: 30px;
        line-height: 42px;
		color: #fff;
		text-shadow: 0px 3px 10px rgba(227, 124, 21, 0.5);
		white-space: nowrap;
	}
	.top_mv .catchTxt{
		font-weight: 600;
		font-size: 15px;
		line-height: 26px;
		margin-top: 20px;
		color: #fff;
		text-shadow: 0px 3px 10px rgba(227, 124, 21, 0.5);
		padding-bottom: 0px;
	}
	.top_info {
		padding: 0px 0 30px;
		background: #F5820F;
	}
	.top_info .inner{
		display: flex;
		flex-flow: column;
	}
	.top_info .headBlk{
		padding-right: 0px;
		border-right: none;
		display: flex;
		flex-flow: row;
		justify-content: space-between;
		align-items: center;
		gap: 0px 0;
	}
	.top_info .head{
		font-weight: 700;
		font-size: 22px;
		line-height: 30px;
		align-items: flex-start;
		color: #fff;
	}
	.top_info .linkBlk {
		font-weight: 700;
		font-size: 14px;
		line-height: 20px;
		color: #fff;
		display: flex;
		align-items: center;
		gap: 0 10px;
	}
	.top_info .linkBlk::after{
		content: "";
		display: block;
		width: 18px;
		height: 18px;
		background: url('images/icon_arrow.svg') no-repeat;
		background-size: contain;
		background-position: center;
	}
	.top_info .infoBlk {
		flex: 1;
		padding-left: 0px;
		margin-top: 15px;
	}
	.top_info .infoBlk a {
		justify-content: flex-start;
		align-items: center;
		gap: 0 8px;
		padding: 6px 0;
	}
	.top_info .infoDate {
		display: inline-block;
		font-weight: 700;
		font-size: 14px;
		line-height: 24px;
		color: #fff;
	}
	.top_info .infoCat {
		display: inline-block;
		width: fit-content;
		height: 24px;
		border-radius: 9999px;
		background: transparent;
		border: 1px solid #fff;
		padding: 0 15px;
		font-weight: 500;
		font-size: 13px;
		line-height: 21px;
		color: #fff;
	}
	.top_info .infoTitle {
		flex: 1;
		font-weight: 500;
		font-size: 15px;
		line-height: 21px;
		color: #fff;
	}
	.top_strengths{
		padding: 50px 0 60px;
		background: #fef4dc;
	}
	.top_strengths .itemBlk{
		margin-top: 35px;
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 20px 0;
	}
	.top_strengths .itemImgBlk{
		width: 100%;
		border-radius: 20px;
		overflow: hidden;
		order: 1;
	}
	.top_strengths .itemTextBlk{
		flex: 1;
		display: flex;
		flex-wrap: wrap;
		gap: 0 15px;
		order: 2;
	}
	.top_strengths .itemTextIndex{
		font-family: Montserrat;
		width: 60px;
		height: 60px;
		border-radius: 30px 30px 30px 4px;
		background: #f5820f;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 600;
		font-size: 30px;
		line-height: 40px;
		color: #fff;
	}
	.top_strengths .itemTextHead{
		font-weight: 700;
		font-size: 20px;
        line-height: 28px;
		color: #272e37;
		margin-top: 2px;
	}
	.top_strengths .itemTextHead .color{
		display: block;
		color: #F5820F;
	}
	.top_strengths .itemTextDesc{
		width: 100%;
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		color: #272e37;
		margin-top: 15px;
	}
	.top_strengths .itemLink{
		margin: 40px auto 0;
		width: 250px;
		height: 55px;
		border-radius: 9999px;
		background: linear-gradient(to right, #f5820f 0%, #fed53b 100%);
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #fff;
	}
	.top_business{
		position: relative;
	}
	.top_business::before{
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 220px;
		background: url('images/top_businessBg_top.webp') no-repeat;
		background-size: contain;
		background-position: top;
		z-index: -1;
	}
	.top_business::after{
		content: "";
		display: block;
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 200px;
		background: url('images/top_businessBg_bottom.webp') no-repeat;
		background-size: contain;
		background-position: bottom;
		z-index: -1;
	}
	.top_business .itemWrap{
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
		margin-top: 30px;
	}
	.top_business .itemWrap .itemBlk{
		width: calc((100% - 20px) / 2);
	}
	.top_business .itemWrap .itemImg{
		border-radius: 10px 10px 0 0;
		overflow: hidden;
	}
	.top_business .itemWrap .itemTxtBlk{
		padding: 15px 15px 20px 15px;
		background: #FEF4DC;
		border-radius: 0 0 10px 10px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.top_business .itemWrap .itemTtl{
		font-weight: 700;
		font-size: 18px;
		line-height: 26px;
		color: #272e37;
		display: flex;
		flex-flow: column;
		gap: 5px 0;
	}
	.top_business .itemWrap .itemTtl span{
		font-weight: 500;
		font-size: 14px;
		line-height: 20px;
		color: #272e37;
	}
	.top_business .itemWrap .itemArrow{
		width: 40px;
		height: 40px;
		border-radius: 9999px;
		background: #fff;
		border: 1px solid #f5820f;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.top_business .itemWrap .itemArrow::before{
		content: "";
		display: block;
		width: 21px;
		height: 18px;
		background: url('images/icon_arrow2.svg') no-repeat;
		background-size: contain;
	}
	.top_business .itemLink{
		margin: 40px auto 0;
		width: 250px;
		height: 55px;
		border-radius: 9999px;
		background: linear-gradient(to right, #f5820f 0%, #fed53b 100%);
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #fff;
	}
	.top_products{
		padding: 45px 0 60px;
		background: url('images/top_productBg_sp.webp') no-repeat;
		background-size: cover;
		background-position: bottom;
	}
	.top_products .head{
		color: #FFF;
	}
	.top_products .head span{
		color: #FFF;
	}
	.top_products .top_cmn_txt{
		color: #FFF;
		font-weight: 700;
	}
	.top_products .itemWrap{
		max-width: 940px;
		margin: 30px auto 0;
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
	}
	.top_products .itemWrap .itemBlk{
		width: calc((100% - 10px) / 2);
		height: auto;
		border-radius: 10px;
		background: #FFF;
		display: flex;
		flex-flow: column;
		align-items: center;
		justify-content: flex-end;
		padding: 12px 15px 15px;
		gap: 10px 0;
	}
	.top_products .itemWrap .itemImg{
		flex: 1;
		margin: 0 10px;
		display: flex;
		align-items: center;
	}
	.top_products .itemWrap .itemTxt{
		font-weight: 700;
		font-size: 15px;
		line-height: 20px;
		color: #272e37;
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
		gap: 7px 0;
	}
	.top_products .itemWrap .itemTxt .arrow{
		width: 21px;
		height: 21px;
		border-radius: 50%;
		border: 1px solid #f5820f;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.top_products .itemWrap .itemTxt .arrow::before{
		content: '';
		display: block;
		width: 7px;
		height: 7px;
		border-top: solid 2px #F5820F;
		border-right: solid 2px #F5820F;
		transform: rotate(45deg);
		margin-right: 2px;
	}
	.top_company{
		padding: 50px 0 60px;
	}
	.top_company .itemBlk{
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 0 clamp(2.5rem, -15.682rem + 28.41vw, 5.625rem);
	}
	.top_company .itemTextBlk{
		flex: 1;
	}
	.top_company .head{
		align-items: flex-start;
	}
	.top_company .itemTextHead{
		font-weight: 700;
		font-size: 20px;
		line-height: 30px;
		color: #272e37;
		margin-top: 15px;
	}
	.top_company .itemTextDesc{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		color: #272e37;
		margin-top: 15px;
	}
	.top_company .itemTextLink{
		margin: 30px auto 0;
		width: 250px;
		height: 55px;
		border-radius: 9999px;
		background: linear-gradient(to right, #f5820f 0%, #fed53b 100%);
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 700;
		font-size: 16px;
        line-height: 24px;
		color: #fff;
		text-align: center;
		padding: 15px 0;
	}
	.top_company .itemImgBlk{
		width: 100%;
		height: fit-content;
		border-radius: 20px;
		overflow: hidden;
		margin-top: 20px;
	}
	.top_company .itemImgBlk img{
		aspect-ratio: 11 / 7;
	}
	.top_company .calenderBlk{
		background: url('images/top_calendar.webp') no-repeat;
		background-size: cover;
		margin-top: 50px;
		border-radius: 10px;
		padding: 30px 0;
	}
	.top_company .calenderItem{
		max-width: 480px;
		width: 90%;
		margin: 0 auto;
		border-radius: 15px;
		background: #fff;
		box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.08);
		position: relative;
		display: flex;
		flex-flow: column;
		align-items: center;
		padding: 25px 0 30px;
	}
	.top_company .calenderItem::before{
		content: "";
		display: block;
		width: 85%;
		height: 26px;
		background: url('images/icon_calendar.svg') no-repeat;
		background-size: contain;
		position: absolute;
		top: -13px;
		left: 50%;
		transform: translateX(-50%);
	}
	.top_company .calenderItem .itemTtl{
		font-weight: 700;
		font-size: 22px;
		line-height: 34px;
		color: #223750;
	}
	.top_company .calenderItem .itemSubTtl{
		font-family: Montserrat;
		font-weight: 600;
		font-size: 14px;
		line-height: 18px;
		color: #f5820f;
		margin-top: 5px;
	}
	.top_company .calenderItem .itemTxt{
		font-weight: 500;
		font-size: 14px;
		line-height: 24px;
		text-align: center;
		color: #272e37;
		margin-top: 10px;
	}
	.top_company .calenderItem .itemLink{
		width: 230px;
		height: 45px;
		border-radius: 25px;
		background: #f5820f;
		font-weight: 700;
		font-size: 14px;
		line-height: 22px;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 20px;
	}
	.top_recruit{
		padding: 0;
		position: relative;
		overflow: hidden;
	}
	.top_recruit .itemImg.img01{
		position: relative;
		top: 0%;
		left: 0;
		width: 100%;
		height: auto;
	}
	.top_recruit .itemImg.img02{
		position: relative;
		top: 0;
		right: 0;
		width: 100%;
		height: auto;
	}
	.top_recruit .itemImg img{
		height: auto;
	}
	.top_recruit .itemBlk{
		width: 100%;
		margin: 0 auto;
		padding: 50px 0 50px;
		position: relative;
	}
	.top_recruit .itemBlk::before{
		content: "";
		width: 100vw;
		height: 100%;
		border-radius: 0%;
		display: flex;
		background: #fef4dc;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		z-index: -1;
	}
	.top_recruit .itemTtl{
		font-weight: 700;
		font-size: 30px;
		line-height: 45px;
		color: #272e37;
		text-align: center;
	}
	.top_recruit .itemSubTtl{
		font-family: Montserrat;
		font-weight: 600;
		font-size: 16px;
		line-height: 20px;
		color: #f5820f;
		text-align: center;
		margin-top: 5px;
	}
	.top_recruit .itemHead{
		font-weight: 700;
		font-size: 18px;
		line-height: 32px;
		text-align: center;
		color: #272e37;
		margin-top: 30px;
	}
	.top_recruit .itemTxt{
		width: 100%;
		max-width: 600px;
		margin: 0 auto;
		font-weight: 500;
		font-size: 14px;
		line-height: 22px;
		color: #272e37;
		margin-top: 30px;
	}
	.top_recruit .itemLink{
		margin: 30px auto 0;
		width: 250px;
		height: 55px;
		border-radius: 9999px;
		background: linear-gradient(to right, #f5820f 0%, #fed53b 100%);
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #fff;
	}
	.top_contact{
		background: #f5820f;
		padding: 50px 0 50px;
	}
	.top_contact .inner{
		display: flex;
		flex-flow: column;
		justify-content: space-between;
	}
	.top_contact .itemTxtBlk{
		margin-top: 25px;
	}
	.top_contact .itemTtl{
		font-weight: 700;
		font-size: 30px;
		line-height: 45px;
		color: #fff;
		position: relative;
	}
	.top_contact .itemTtl::before{
		content: "CONTACT";
		display: block;
		width: max-content;
		position: absolute;
		top: -45px;
		left: -10px;
		font-weight: 600;
		font-family: Montserrat;
		font-size: 65px;
		line-height: 100px;
		color: rgba(255,255,255,0.12);
	}
	.top_contact .itemTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		color: #fff;
		margin-top: 20px;
	}
	.top_contact .itemLinkBlk{
		display: flex;
		flex-flow: column;
		gap: 10px 0;
		margin-top: 30px;
	}
	.top_contact .itemLinkBlk .formLink{
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
		height: 65px;
		border-radius: 9999px;
		background: #134f95;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 0 8px;
		font-weight: 700;
		font-size: 18px;
		line-height: 24px;
		color: #fff;
	}
	.top_contact .itemLinkBlk .formLink::before{
		content: "";
		display: block;
		width: 24px;
		height: 21px;
		background: url('images/icon_mail.svg') no-repeat;
		background-size: contain;
		margin-top: 1px;
	}
	.top_contact .itemLinkBlk .telLink{
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
		height: 65px;
		border-radius: 9999px;
		background: #fff;
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
	}
	.top_contact .itemLinkBlk .telLink .num{
		font-weight: 700;
		font-size: 24px;
		line-height: 30px;
		color: #f5820f;
		display: flex;
		align-items: center;
		gap: 0 5px;
	}
	.top_contact .itemLinkBlk .telLink .num::before{
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		background: url('images/icon_tel.svg') no-repeat;
		background-size: contain;
		margin-top: 2px;
	}
	.top_contact .itemLinkBlk .telLink .txt{
		font-weight: 700;
		font-size: 12px;
		line-height: 18px;
		color: #272e37;
	}
}
@media screen and (max-width: 750px) {
	.top_business::before{
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 220px;
		background: url('images/top_businessBg_top_sp.webp') no-repeat;
		background-size: contain;
		background-position: top;
		z-index: -1;
	}
	.top_business::after{
		content: "";
		display: block;
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 200px;
		background: url('images/top_businessBg_bottom_sp.webp') no-repeat;
		background-size: contain;
		background-position: bottom;
		z-index: -1;
	}
}
@media screen and (max-width: 700px) {
	.top_business .itemWrap .itemBlk {
        width: 100%;
    }
}


/*
Strengths
====================================*/
.strengths_lead{

}
.strengths_lead .leadTtl{
	font-weight: 700;
	font-size: 40px;
	line-height: 62px;
	text-align: center;
	color: #272e37;
}
.strengths_lead .leadTtl .color{
	color: #f5820f;
}
.strengths_lead .leadTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 28px;
	text-align: center;
	color: #272e37;
	margin-top: 35px;
}
.strengths_case{
	background: #fef4dc;
	padding: 100px 0 160px;
}
.strengths_case .caseItem{
	display: flex;
	align-items: center;
	gap: 0 clamp(2.5rem, -0.189rem + 4.2vw, 3.75rem);
}
.strengths_case .caseItem:not(:first-of-type){
	margin-top: 160px;
}
.strengths_case .caseItem .itemImg{
	width: 47%;
	height: 350px;
	border-radius: 30px;
	overflow: hidden;
}
.strengths_case .caseItem .itemImg img{
	width: 100%;
	height: 100%;
}
.strengths_case .caseItem .itemTxtBlk{
	flex: 1;
}
.strengths_case .caseItem .itemTtl{
	font-weight: 700;
	font-size: clamp(1.625rem, 1.087rem + 0.84vw, 1.875rem);
	line-height: 48px;
	color: #272e37;
	display: flex;
	gap: 0 15px;
}
.strengths_case .caseItem .itemIndex{
	width: 99px;
	height: 99px;
	border-radius: 49.5px 49.5px 49.5px 5.96px;
	background: #f5820f;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: Montserrat;
	font-weight: 600;
	font-size: 50px;
	line-height: 60px;
	color: #fff;
}
.strengths_case .caseItem .itemTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 27px;
	color: #272e37;
	margin-top: 30px;
}
.strengths_case .caseItem .itemTxt .color{
	color: #EF6E0B;
	font-weight: 700;
}
.strengths_case .caseItem .itemPoint{
	border-radius: 5px;
	background: #fff;
	border: 1px solid #f5820f;
	padding: 18px 20px 19px;
	margin-top: 30px;
}
.strengths_case .caseItem .itemPoint .pointTtl{
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #f5820f;
}
.strengths_case .caseItem .itemPoint .pointTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #272e37;
	margin-top: 5px;
}
.strengths_case .caseNote{
	padding: 50px;
	border-radius: 30px;
	background: #fff;
	margin-top: 60px;
	display: flex;
	gap: 0 40px;
}
.strengths_case .caseNote .noteTxtBlk{
	flex: 1;
}
.strengths_case .caseNote .noteTtl{
	font-weight: 700;
	font-size: 28px;
	line-height: 40px;
	color: #272e37;
	display: flex;
	align-items: center;
	gap: 0 15px;
}
.strengths_case .caseNote .noteIndex{
	width: 90px;
	height: 32px;
	border-radius: 9999px;
	background: #f5820f;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
}
.strengths_case .caseNote .noteTalk{
	display: flex;
	align-items: center;
	gap: 0 20px;
	margin-top: 30px;
}
.strengths_case .caseNote .talkIcon{
	width: 86px;
	height: 86px;
	border-radius: 9999px;
}
.strengths_case .caseNote .talkTxt{
	flex: 1;
	min-height: 80px;
	display: flex;
    align-items: center;
	height: fit-content;
	border-radius: 10px;
	background: #fef4dc;
	padding: 15px 23px 16px;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	position: relative;
}
.strengths_case .caseNote .talkTxt::before{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 11px solid transparent;
	border-bottom: 11px solid transparent;
	border-right: 13px solid #fef4dc;
	border-left: 0;
	position: absolute;
	top: 50%;
	left: -12px;
	transform: translateY(-50%);
}
.strengths_case .caseNote .noteTxt{
	font-weight: 500;
	font-size: 18px;
	line-height: 28px;
	color: #272e37;
	margin-top: 25px;
}
.strengths_case .noteImg{
	width: 40%;
	height: fit-content;
	border-radius: 10px;
	overflow: hidden;
}
.strengths_flow{
	padding: 90px 0 90px;
}
.strengths_flow .flowBlk{
	display: flex;
	gap: 0 50px;
	margin-top: 50px;
}
.strengths_flow .flowItem{
	position: relative;
	width: calc((100% - 200px) / 5);
	text-align: center;
}
.strengths_flow .flowItem::after{
	content: "";
    display: block;
    width: 26px;
    height: 23px;
    background: url(images/icon_arrow2.svg) no-repeat;
    background-size: contain;
	position: absolute;
	top: calc((clamp(9.375rem, 5.341rem + 6.3vw, 11.25rem) - 26px) / 2);
	right: -38px;
}
.strengths_flow .flowItem:last-of-type::after{
	display: none;
}
.strengths_flow .flowItem .itemImg{
	width: clamp(9.375rem, 5.341rem + 6.3vw, 11.25rem);
	height: clamp(9.375rem, 5.341rem + 6.3vw, 11.25rem);
	border-radius: 9999px;
	background: #fef4dc;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}
.strengths_flow .flowItem .itemTtl{
	font-weight: 700;
	font-size: 20px;
	line-height: 30px;
	color: #272e37;
	margin-top: 20px;
	text-align: center;
}
.strengths_flow .flowItem .itemTxt{
	font-weight: 500;
	font-size: 15px;
	line-height: 22px;
	color: #272e37;
	text-align: center;
	margin-top: 10px;
	display: flex;
	justify-content: center;
    white-space: nowrap;
}
@media screen and (max-width: 1024px) {
	.strengths_lead{
		padding: 50px 0 50px;
	}
	.strengths_lead .leadTtl{
		font-weight: 700;
		font-size: 26px;
		line-height: 36px;
		text-align: center;
		color: #272e37;
	}
	.strengths_lead .leadTtl .color{
		color: #f5820f;
	}
	.strengths_lead .leadTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		text-align: justify;
		color: #272e37;
		margin-top: 20px;
	}
	.strengths_case{
		background: #fef4dc;
		padding: 50px 0 60px;
	}
	.strengths_case .caseItem{
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 0 60px;
	}
	.strengths_case .caseItem:not(:first-of-type){
		margin-top: 60px;
	}
	.strengths_case .caseItem .itemImg{
		width: 100%;
		height: auto;
		border-radius: 20px;
		overflow: hidden;
	}
	.strengths_case .caseItem .itemImg img{
		width: 100%;
		height: 100%;
	}
	.strengths_case .caseItem .itemTxtBlk{
		flex: 1;
		margin-top: 20px;
	}
	.strengths_case .caseItem .itemTtl{
		font-weight: 700;
		font-size: 20px;
        line-height: 28px;
		color: #272e37;
		display: flex;
		gap: 0 15px;
	}
	.strengths_case .caseItem .itemIndex{
		width: 60px;
        height: 60px;
        border-radius: 30px 30px 30px 4px;
		background: #f5820f;
		display: flex;
		justify-content: center;
		align-items: center;
		font-family: Montserrat;
		font-weight: 600;
		font-size: 30px;
		line-height: 40px;
		color: #fff;
	}
	.strengths_case .caseItem .itemTxt{
		font-weight: 500;
		font-size: 15px;
        line-height: 24px;
		color: #272e37;
		margin-top: 15px;
	}
	.strengths_case .caseItem .itemTxt .color{
		color: #EF6E0B;
		font-weight: 700;
	}
	.strengths_case .caseItem .itemPoint{
		border-radius: 5px;
		background: #fff;
		border: 1px solid #f5820f;
		padding: 10px 15px 12px;
		margin-top: 20px;
	}
	.strengths_case .caseItem .itemPoint .pointTtl{
		font-weight: 700;
		font-size: 15px;
		line-height: 20px;
		color: #f5820f;
	}
	.strengths_case .caseItem .itemPoint .pointTxt{
		font-weight: 500;
		font-size: 14px;
		line-height: 20px;
		color: #272e37;
		margin-top: 5px;
	}
	.strengths_case .caseNote{
		padding: 20px 20px;
		border-radius: 30px;
		background: #fff;
		margin-top: 30px;
		display: flex;
		flex-flow: column;
		gap: 20px 0;
	}
	.strengths_case .caseNote .noteTxtBlk{
		flex: 1;
	}
	.strengths_case .caseNote .noteTtl{
		font-weight: 700;
		font-size: 18px;
		line-height: 26px;
		color: #272e37;
		display: flex;
		align-items: center;
		gap: 0 10px;
	}
	.strengths_case .caseNote .noteIndex{
		width: 80px;
		height: 28px;
		border-radius: 9999px;
		background: #f5820f;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 700;
		font-size: 14px;
		line-height: 20px;
		color: #fff;
	}
	.strengths_case .caseNote .noteTalk{
		display: flex;
		align-items: center;
		gap: 0 15px;
		margin-top: 20px;
	}
	.strengths_case .caseNote .talkIcon{
		width: 75px;
		height: 75px;
		border-radius: 9999px;
	}
	.strengths_case .caseNote .talkTxt{
		flex: 1;
		min-height: auto;
		height: fit-content;
		border-radius: 10px;
		background: #fef4dc;
		padding: 13px 15px 14px;
		font-weight: 500;
		font-size: 14px;
		line-height: 20px;
		position: relative;
	}
	.strengths_case .caseNote .talkTxt::before{
		content: "";
		display: block;
		width: 0;
		height: 0;
		border-style: solid;
		border-top: 10px solid transparent;
		border-bottom: 10px solid transparent;
		border-right: 12px solid #fef4dc;
		border-left: 0;
		position: absolute;
		top: 50%;
		left: -12px;
		transform: translateY(-50%);
	}
	.strengths_case .caseNote .noteTxt{
		font-weight: 500;
		font-size: 14px;
		line-height: 22px;
		color: #272e37;
		margin-top: 20px;
	}
	.strengths_case .noteImg{
		width: 100%;
		height: fit-content;
		border-radius: 10px;
		overflow: hidden;
	}
	.strengths_flow{
		padding: 50px 0 50px;
	}
	.strengths_flow .flowBlk{
		width: fit-content;
		display: flex;
		flex-flow: column;
		gap: 35px 0;
		margin: 30px auto 0;
	}
	.strengths_flow .flowItem{
		position: relative;
		width: fit-content;
		text-align: center;
		display: flex;
		flex-wrap: wrap;
		gap: 0 15px;
	}
	.strengths_flow .flowItem::after{
		content: "";
		display: block;
		width: 20px;
		height: 17px;
		background: url(images/icon_arrow2.svg) no-repeat;
		background-size: contain;
		position: absolute;
		top: calc(100% + 9px);
		right: auto;
		left: 30px;
		transform: rotate(90deg);
	}
	.strengths_flow .flowItem:last-of-type::after{
		display: none;
	}
	.strengths_flow .flowItem .itemImg{
		width: 80px;
		height: 80px;
		border-radius: 9999px;
		background: #fef4dc;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 20px;
		margin: 0;
	}
	.strengths_flow .flowItem .itemTtl{
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #272e37;
		margin-top: 0px;
		text-align: justify;
	}
	.strengths_flow .flowItem .itemTxt{
		width: 100%;
		font-weight: 500;
		font-size: 14px;
		line-height: 21px;
		color: #272e37;
		text-align: justify;
		margin-top: 5px;
		display: flex;
		justify-content: center;
		white-space: nowrap;
	}
}


/*
Company
====================================*/
.company_message{

}
.company_message .messageBlk{
	display: flex;
	gap: 0 clamp(2.5rem, -0.189rem + 4.2vw, 3.75rem);
	margin-top: 45px;
}
.company_message .messageBlk .itemImg{
	width: 47%;
	height: fit-content;
	border-radius: 20px;
	overflow: hidden;
}
.company_message .messageBlk .itemTxtBlk{
	flex: 1;
}
.company_message .messageBlk .itemTxt{
	font-weight: 500;
	font-size: clamp(0.938rem, 0.803rem + 0.21vw, 1rem);
	line-height: 26px;
	color: #272e37;
}
.company_message .messageBlk .itemPost{
	width: 175px;
	margin: 30px 0 0 auto;
}
.company_motto{
	padding: 85px 0 90px;
	background: #FEF4DC;
}
.company_motto .mottoBlk{
	width: 850px;
	border-radius: 20px;
	background: #fff;
	margin: 45px auto 0;
}
.company_motto .mottoBlk .itemTxt{
	width: 350px;
	margin: 0 auto;
	padding: 30px 0;
	font-weight: 700;
	font-size: 25px;
	line-height: 40px;
	color: #272e37;
}
.company_motto .mottoTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 27px;
	text-align: center;
	color: #272e37;
	margin-top: 40px;
}
.overviewDl{
	display: flex;
	flex-wrap: wrap;
	margin-top: 60px;
}
.overviewDl .overviewDt{
	width: calc(100% * 2 / 11);
	font-weight: 700;
	font-size: 16px;
	line-height: 32px;
	color: #f5820f;
	padding: 20px 25px;
	border-bottom: 1px solid #f5820f;
}
.overviewDl .overviewDt:first-of-type{
	border-top: 1px solid #f5820f;
}
.overviewDl .overviewDd{
	width: calc(100% * 9 / 11);
	font-weight: 500;
	font-size: 16px;
	line-height: 32px;
	color: #272e37;
	padding: 20px 35px;
	border-bottom: 1px solid #c4c4c4;
}
.overviewDl .overviewDd:first-of-type{
	border-top: 1px solid #c4c4c4;
}
.overviewDl .overviewDd .map{
	margin-top: 20px;
	border-radius: 15px;
	overflow: hidden;
}
.overviewDl .overviewDd .map iframe{
	aspect-ratio: 10 / 3;
}
.company_virtual{
	padding: 60px 0 85px;
	background: url('images/company_virtualBg.webp') no-repeat;
	background-size: cover;
}
.company_virtual .virtualTtl{
	color: #fff;
	font-size: 40px;
	line-height: 58px;
}
.company_virtual .virtualTtl::after{
	background: #FFF;
	width: 60px;
    height: 5px;
}
.company_virtual .virtualBlk{
	max-width: 895px;
	margin: 45px auto 0;
	border-radius: 20px;
	overflow: hidden;
}
.company_cert{
	background: #FEF4DC;
}
.company_cert .certTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	text-align: center;
	color: #272e37;
	padding-top: 30px;
}
.company_cert .certBlk{
	background: #FFF;
	border-radius: 20px;
	padding: 40px 50px;
	margin-top: 40px;
}
.company_cert .certBlk .itemTtl{
	font-weight: 700;
	font-size: 30px;
	line-height: 45px;
	color: #272e37;
	display: flex;
	gap: 0 15px;
}
.company_cert .certBlk .itemTtl::before{
	content: "";
	display: block;
	width: 6px;
	height: 45px;
	background: #f5820f;
	border-radius: 9999px;
}
.company_cert .certBlk .itemBlk{
	display: flex;
	gap: 0 clamp(1.875rem, 0.53rem + 2.1vw, 2.5rem);
	margin-top: 30px;
}
.company_cert .certBlk .itemDl{
	flex: 1;
	display: flex;
	flex-wrap: wrap;
}
.company_cert .certBlk .itemDt{
	width: calc(100% * 13 /65);
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #f5820f;
	padding: 10px clamp(0.5rem, -1.113rem + 2.52vw, 1.25rem);
	border-bottom: 1px solid #f5820f;
}
.company_cert .certBlk .itemDt:first-of-type{
	border-top: 1px solid #f5820f;
}
.company_cert .certBlk .itemDd{
	width: calc(100% * 52 /65);
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #272e37;
	padding: 10px clamp(0.5rem, -1.113rem + 2.52vw, 1.25rem);
	border-bottom: 1px solid #c4c4c4;
}
.company_cert .certBlk .itemDd:first-of-type{
	border-top: 1px solid #c4c4c4;
}
.company_cert .certBlk .itemImg{
	width: 310px;
}
.company_cert .certLinkBlk{
	margin-top: 30px;
	display: flex;
	gap: 0 30px;

}
.company_cert .certLink{
	width: calc((100% - 60px) / 3);
}
.company_cert .certLink .linkImg{
	height: 238px;
	border-radius: 20px;
	background: #fff;
	overflow: hidden;
	display: flex;
    justify-content: center;
    align-items: center;
	padding: 0 30px;
}
.company_cert .certLink .linkTxt{
	font-weight: 700;
	font-size: clamp(1.125rem, 0.856rem + 0.42vw, 1.25rem);
	line-height: 32px;
	color: #272e37;
	margin-top: 10px;
	text-align: center;
}
.company_policy{
	padding: 90px 0 145px;
}
.company_policy .policyItem{
	padding: 30px 0 40px;
	border-bottom: 1px solid #c4c4c4;
}
.company_policy .policyItem:first-of-type{
	padding-top: 45px;
}
.company_policy .policyItem:last-of-type{
	border: none;
	padding-bottom: 30px;
}
.company_policy .policyItem .itemTtl{
	font-weight: 700;
    font-size: 30px;
    line-height: 45px;
    color: #272e37;
    display: flex;
    gap: 0 15px;
}
.company_policy .policyItem .itemTtl::before{
    content: "";
    display: block;
    width: 6px;
    height: 45px;
    background: #f5820f;
    border-radius: 9999px;
}
.company_policy .policyItem .itemTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 27px;
	color: #272e37;
	margin-top: 20px;
}
.company_history{
	background: #fef4dc;
}
.company_history .historyTab{
	display: flex;
	justify-content: center;
	gap: 0 15px;
	margin: 50px auto 0;
}
.company_history .historyTab .itemTab{
	width: 260px;
	height: 65px;
	border-radius: 15px 15px 0px 0px;
	background: #d2d2d2;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	font-size: 22px;
	line-height: 32px;
	color: #fff;
	cursor: pointer;
}
.company_history .historyTab .itemTab.active{
	background: #f5820f;
}
.company_history .historyBlk{
	border-radius: 20px;
	background: #fff;
	padding: 60px clamp(3.75rem, 1.061rem + 4.2vw, 5rem) 100px;
	display: none;
}
.company_history .historyBlk.active{
	display: block;
}
.company_history .historyDl{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 25px 0;
}
.company_history .historyDt{
	width: 140px;
	height: -webkit-fill-available;
	font-family: Montserrat;
	font-weight: 700;
	font-size: 25px;
	line-height: 26px;
	color: #f5820f;
	display: flex;
	gap: 0 24px;
	position: relative;
}
.company_history .historyDt::before{
	content: "";
	display: block;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: #fed53b;
	z-index: 1;
	margin-top: 7px;
}
.company_history .historyDt::after{
	content: "";
	display: block;
	width: 1px;
	height: 180%;
	background: #bbb;
	position: absolute;
	top: 15px;
	left: 6.2px;
}
.company_history .historyDd{
	width: calc(100% - 140px);
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	color: #272e37;
}
.company_activity .activityItem{
	display: flex;
	align-items: center;
	gap: 0 40px;
	border-radius: 30px;
	background: #fef4dc;
	padding: 60px;
	margin-top: 25px;
}
.company_activity .activityItem:first-of-type{
	margin-top: 45px;
}
.company_activity .activityItem .itemTxtBlk{
	flex: 1;
	margin-top: 20px;
}
.company_activity .activityItem .itemTtl{
	font-weight: 700;
    font-size: 30px;
    line-height: 45px;
    color: #272e37;
    display: flex;
    gap: 0 15px;
}
.company_activity .activityItem .itemTtl::before{
	content: "";
    display: block;
    width: 6px;
    height: 45px;
    background: #f5820f;
    border-radius: 9999px;
}
.company_activity .activityItem .itemTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 27px;
	color: #272e37;
	margin-top: 25px;
}
.company_activity .activityItem .itemImg{
	width: 46.5%;
	height: fit-content;
	border-radius: 20px;
	overflow: hidden;
}
@media screen and (max-width: 1024px) {
	.company_message{

	}
	.company_message .messageBlk{
		display: flex;
		flex-flow: column;
		gap: 20px 0;
		margin-top: 30px;
	}
	.company_message .messageBlk .itemImg{
		width: 100%;
		height: fit-content;
		border-radius: 15px;
		overflow: hidden;
	}
	.company_message .messageBlk .itemTxtBlk{
		flex: 1;
	}
	.company_message .messageBlk .itemTxt{
		font-weight: 500;
		font-size: 14px;
		line-height: 22px;
		color: #272e37;
	}
	.company_message .messageBlk .itemPost{
		width: 125px;
		margin: 20px 0 0 auto;
	}
	.company_motto{
		padding: 50px 0 60px;
		background: #FEF4DC;
	}
	.company_motto .mottoBlk{
		width: fit-content;
		border-radius: 10px;
		background: #fff;
		margin: 30px auto 0;
		padding:  0 50px;
	}
	.company_motto .mottoBlk .itemTxt{
		width: fit-content;
		margin: 0 auto;
		padding: 20px 0;
		font-weight: 700;
		font-size: 17px;
		line-height: 30px;
		color: #272e37;
	}
	.company_motto .mottoTxt{
		font-weight: 500;
		font-size: 14px;
		line-height: 24px;
		text-align: justify;
		color: #272e37;
		margin-top: 25px;
	}
	.company_overview {
		padding: 50px 0 60px;
	}
	.overviewDl{
		display: flex;
		flex-wrap: wrap;
		margin-top: 40px;
	}
	.overviewDl .overviewDt{
		width: calc(100% * 3 / 12);
		font-weight: 700;
		font-size: 14px;
		line-height: 21px;
		color: #f5820f;
		padding: 12px 8px;
		border-bottom: 1px solid #f5820f;
	}
	.overviewDl .overviewDt:first-of-type{
		border-top: 1px solid #f5820f;
	}
	.overviewDl .overviewDd{
		width: calc(100% * 9 / 12);
		font-weight: 500;
		font-size: 14px;
		line-height: 21px;
		color: #272e37;
		padding: 12px 8px;
		border-bottom: 1px solid #c4c4c4;
	}
	.overviewDl .overviewDd:first-of-type{
		border-top: 1px solid #c4c4c4;
	}
	.overviewDl .overviewDd .map{
		margin-top: 12px;
		border-radius: 10px;
		overflow: hidden;
	}
	.overviewDl .overviewDd .map iframe{
		aspect-ratio: 10 / 5;
	}
	.company_virtual{
		padding: 40px 0 55px;
		background: url('images/company_virtualBg.webp') no-repeat;
		background-size: cover;
	}
	.company_virtual .virtualTtl{
		color: #fff;
		font-size: 22px;
		line-height: 40px;
	}
	.company_virtual .virtualTtl::after{
		background: #FFF;
		width: 60px;
    	height: 4px;
	}
	.company_virtual .virtualBlk{
		max-width: 895px;
		margin: 35px auto 0;
		border-radius: 10px;
		overflow: hidden;
	}
	.company_cert{
		background: #FEF4DC;
		padding: 50px 0 60px;
	}
	.company_cert .certTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		text-align: justify;
		color: #272e37;
		padding-top: 20px;
	}
	.company_cert .certBlk{
		background: #FFF;
		border-radius: 10px;
		padding: 25px 20px;
		margin-top: 30px;
	}
	.company_cert .certBlk .itemTtl{
		font-weight: 700;
		font-size: 20px;
		line-height: 30px;
		color: #272e37;
		display: flex;
		gap: 0 10px;
	}
	.company_cert .certBlk .itemTtl::before{
		content: "";
		display: block;
		width: 6px;
		height: 30px;
		background: #f5820f;
		border-radius: 9999px;
	}
	.company_cert .certBlk .itemBlk{
		display: flex;
		flex-flow: column;
		gap: 0 40px;
		margin-top: 20px;
	}
	.company_cert .certBlk .itemDl{
		flex: 1;
		display: flex;
		flex-wrap: wrap;
	}
	.company_cert .certBlk .itemDt{
		width: calc(100% * 19 /65);
		font-weight: 600;
		font-size: 14px;
		line-height: 21px;
		color: #f5820f;
		padding: 8px 6px;
		border-bottom: 1px solid #f5820f;
	}
	.company_cert .certBlk .itemDt:first-of-type{
		border-top: 1px solid #f5820f;
	}
	.company_cert .certBlk .itemDd{
		width: calc(100% * 46 /65);
		font-weight: 500;
		font-size: 14px;
		line-height: 21px;
		color: #272e37;
		padding: 8px 6px;
		border-bottom: 1px solid #c4c4c4;
	}
	.company_cert .certBlk .itemDd:first-of-type{
		border-top: 1px solid #c4c4c4;
	}
	.company_cert .certBlk .itemImg{
		width: 90%;
		margin: 0 auto;
		margin-top: 20px;
	}
	.company_cert .certLinkBlk{
		margin-top: 20px;
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 15px 10px;
	}
	.company_cert .certLink{
		width: calc((100% - 10px) / 2);
		display: flex;
        flex-flow: column;
        height: auto;
	}
	.company_cert .certLink .linkImg{
		max-height: 210px; 
		height: 100%;
		padding: 20px clamp(0.625rem, -0.82rem + 6.16vw, 3.125rem);
		border-radius: 20px;
		background: #fff;
		overflow: hidden;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.company_cert .certLink .linkImg img{
		width: 70%;
	}
	.company_cert .certLink .linkTxt{
		font-weight: 700;
		font-size: 15px;
		line-height: 22px;
		color: #272e37;
		margin-top: 5px;
		text-align: center;
	}
	.company_policy{
		padding: 50px 0 60px;
	}
	.company_policy .policyItem{
		padding: 20px 0 30px;
		border-bottom: 1px solid #c4c4c4;
	}
	.company_policy .policyItem:first-of-type{
		padding-top: 45px;
	}
	.company_policy .policyItem .itemTtl{
		font-weight: 700;
		font-size: 18px;
		line-height: 28px;
		color: #272e37;
		display: flex;
		gap: 0 10px;
	}
	.company_policy .policyItem .itemTtl::before{
		content: "";
		display: block;
		width: 5px;
		height: 28px;
		background: #f5820f;
		border-radius: 9999px;
	}
	.company_policy .policyItem .itemTxt{
		font-weight: 500;
		font-size: 14px;
		line-height: 24px;
		color: #272e37;
		margin-top: 20px;
	}
	.company_history{
		background: #fef4dc;
		padding: 50px 0 60px;
	}
	.company_history .historyTab{
		display: flex;
		justify-content: center;
		gap: 0 10px;
		margin: 35px auto 0;
		padding: 0 10px;
	}
	.company_history .historyTab .itemTab{
		width: calc((100% - 10px) / 2);
		height: 45px;
		border-radius: 10px 10px 0px 0px;
		background: #d2d2d2;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 700;
		font-size: 16px;
		line-height: 26px;
		color: #fff;
		cursor: pointer;
	}
	.company_history .historyTab .itemTab.active{
		background: #f5820f;
	}
	.company_history .historyBlk{
		border-radius: 0px 0px 10px 10px;
		background: #fff;
		padding: 30px 20px 50px;
		display: none;
	}
	.company_history .historyBlk.active{
		display: block;
	}
	.company_history .historyDl{
		display: flex;
		align-items: stretch;
		flex-wrap: wrap;
		gap: 15px 0;
	}
	.company_history .historyDt{
		width: 90px;
		height: inherit;
		font-family: Montserrat;
		font-weight: 700;
		font-size: 22px;
		line-height: 24px;
		color: #f5820f;
		display: flex;
		gap: 0 10px;
		position: relative;
	}
	.company_history .historyDt::before{
		content: "";
		display: block;
		width: 11px;
		height: 11px;
		border-radius: 50%;
		background: #fed53b;
		z-index: 1;
		margin-top: 5px;
	}
	.company_history .historyDt::after{
		content: "";
		display: block;
		width: 1px;
		height: 120%;
		background: #bbb;
		position: absolute;
		top: 15px;
		left: 5px;
	}
	.company_history .historyDd{
		width: calc(100% - 90px);
		font-weight: 500;
		font-size: 14px;
		line-height: 21px;
		color: #272e37;
	}
	.company_activity {
		padding: 50px 0 60px;
	}
	.company_activity .activityItem{
		display: flex;
		flex-flow: column;
		gap: 0 20px;
		border-radius: 20px;
		background: #fef4dc;
		padding: 30px 15px 30px;
		margin-top: 20px;
	}
	.company_activity .activityItem:first-of-type{
		margin-top: 35px;
	}
	.company_activity .activityItem .itemTxtBlk{
		flex: 1;
		margin-top: 0px;
	}
	.company_activity .activityItem .itemTtl{
		font-weight: 700;
		font-size: 18px;
		line-height: 28px;
		color: #272e37;
		display: flex;
		gap: 0 10px;
	}
	.company_activity .activityItem .itemTtl::before{
		content: "";
		display: block;
		width: 5px;
		height: 28px;
		background: #f5820f;
		border-radius: 9999px;
	}
	.company_activity .activityItem .itemTxt{
		font-weight: 500;
		font-size: 14px;
		line-height: 23px;
		color: #272e37;
		margin-top: 20px;
	}
	.company_activity .activityItem .itemImg{
		width: 100%;
		margin-top: 20px;
		height: fit-content;
		border-radius: 10px;
		overflow: hidden;
	}
}


/*
Business
====================================*/
.business_cmn{
	padding: 0px 0 80px;
}
.business_cmn:first-of-type{
	padding: 90px 0 80px;
}
.business_cmn .cmnBg img{
	min-height: 300px;
}
.business_cmn .inner{
	width: 96%;
	background: #FFF;
    border-radius: 20px;
    margin-top: -80px;
    position: relative;
    z-index: 1;
	padding-top: 80px;
}
.business_cmn .cmnIndex{
	width: 84px;
	height: 84px;
	margin: 0 auto 0px;
	border-radius: 50%;
	background: #f5820f;
	font-family: Montserrat;
	font-weight: 600;
	font-size: 40px;
	line-height: 50px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: -42px;
	left: 50%;
	transform: translateX(-50%);
}
.business_cmn .cmnblk{
	display: flex;
	align-items: center;
	gap: 0 clamp(2.5rem, -0.189rem + 4.2vw, 3.75rem);
	margin-top: 60px;
}
.business_cmn .cmnblk .blkImg{
	border-radius: 30px;
	overflow: hidden;
	width: 47%;
}
.business_cmn .cmnblk .blkTxt{
	flex: 1;
	font-weight: 500;
	font-size: 16px;
	line-height: 27px;
	color: #272e37;
}
.business_cmn .cmnNote{
	border-radius: 15px;
	overflow: hidden;
	margin-top: 60px;
	border: 1px solid #f5820f;
}
.business_cmn .cmnNote .noteTtl{
	width: 100%;
	height: 70px;
	background: #f5820f;
	font-weight: 700;
	font-size: 30px;
	line-height: 45px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.business_cmn .cmnNote .noteBlk{
	padding: 30px clamp(1.875rem, -0.814rem + 4.2vw, 3.125rem) 50px;
}
.business_cmn .cmnNote .noteUl{
	display: flex;
	flex-wrap: wrap;
	gap: 17px 0;
}
.business_cmn .cmnNote .noteUl.column4 .noteLi{
	width: calc(100% / 4);
}
.business_cmn .cmnNote .noteLi{
	width: calc(100% / 2);
	font-weight: 500;
	font-size: clamp(0.938rem, 0.803rem + 0.21vw, 1rem);
	line-height: 24px;
	color: #272e37;
	display: flex;
	align-items: center;
	gap: 0 clamp(0.375rem, -0.432rem + 1.26vw, 0.75rem);
}
.business_cmn .cmnNote .noteLi::before{
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #f5820f;
}
.business_cmn .cmnNote .noteBorder{
	display: block;
	width: 100%;
	height: 1px;
	border-bottom: 1px solid #9e9e9e;
	margin: 30px 0;
}
.business_cmn .cmnNote .noteFlex{
	display: flex;
	gap: 0 20px;
}
.business_cmn .cmnNote .noteItem{
	flex: 1;
}
.business_cmn .cmnNote .noteItem .itemImg{
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
}
.business_cmn .cmnNote .noteItem .itemTxt{
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #272e37;
	margin-top: 15px;
	text-align: center;
}
.business_cmn2{
	background: #FEF4DC;
	padding: 90px 0 120px;
}
.business_cmn2 .cmn2Ttl::after{
	background: #f5820f;
}
.business_cmn2 .cmn2Blk{
	display: flex;
	gap: 0 40px;
	margin-top: 40px;
}
.business_cmn2 .cmn2Item{
	width: calc((100% - 80px) / 2);
}
.business_cmn2 .cmn2Item .itemImg{
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
}
.business_cmn2 .cmn2Item .itemTtl{
	font-weight: 700;
	font-size: 20px;
	line-height: 32px;
	text-align: center;
	color: #f5820f;
	margin-top: 15px;
}
.business_cmn2 .cmn2Item .itemTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	color: #272e37;
	margin-top: 15px;
}
@media screen and (max-width: 1024px) {
	.business_cmn{
		padding: 0px 0 60px;
	}
	.business_cmn:first-of-type{
		padding: 50px 0 60px;
	}
	.business_cmn .inner{
		width: 94%;
		background: #FFF;
		border-radius: 20px;
		margin-top: -50px;
		position: relative;
		z-index: 1;
		padding: 50px 2% 0;
	}
	.business_cmn .cmnBg img{
		width: 100%;
		aspect-ratio: 11 / 6;
		min-height: auto;
		max-height: 300px;
	}
	.business_cmn .cmn_head{
		font-size: 22px;
		line-height: 32px;
	}
	.business_cmn .cmnIndex{
		width: 64px;
		height: 64px;
		margin: 0 auto 0px;
		border-radius: 50%;
		background: #f5820f;
		font-family: Montserrat;
		font-weight: 600;
		font-size: 30px;
		line-height: 40px;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		position: absolute;
		top: -32px;
		left: 50%;
		transform: translateX(-50%);
	}
	.business_cmn .cmnblk{
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 20px 0;
		margin-top: 30px;
	}
	.business_cmn .cmnblk .blkImg{
		border-radius: 15px;
		overflow: hidden;
		width: 100%;
	}
	.business_cmn .cmnblk .blkTxt{
		flex: 1;
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		color: #272e37;
	}
	.business_cmn .cmnNote{
		border-radius: 15px;
		overflow: hidden;
		margin-top: 30px;
		border: 1px solid #f5820f;
	}
	.business_cmn .cmnNote .noteTtl{
		width: 100%;
		height: 50px;
		background: #f5820f;
		font-weight: 700;
		font-size: 18px;
		line-height: 30px;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.business_cmn .cmnNote .noteBlk{
		padding: 15px 15px 30px;
	}
	.business_cmn .cmnNote .noteUl{
		display: flex;
		flex-wrap: wrap;
		gap: 6px 0px;
	}
	.business_cmn .cmnNote .noteUl.column4 .noteLi{
		/* width: calc((100% - 5px) / 2); */
	}
	.business_cmn .cmnNote .noteUl.column4 .noteLi:nth-of-type(odd){
		width: 60%;
	}
	.business_cmn .cmnNote .noteUl.column4 .noteLi:nth-of-type(even){
		width: 40%;
	}
	.business_cmn .cmnNote .noteLi{
		width: 100%;
		font-weight: 500;
		font-size: 13px;
		line-height: 20px;
		color: #272e37;
		display: flex;
		align-items: center;
		gap: 0 5px;
	}
	.business_cmn .cmnNote .noteLi::before{
		content: "";
		display: block;
		width: 10px;
		height: 10px;
		border-radius: 50%;
		background: #f5820f;
	}
	.business_cmn .cmnNote .noteBorder{
		display: block;
		width: 100%;
		height: 1px;
		border-bottom: 1px solid #9e9e9e;
		margin: 20px 0;
	}
	.business_cmn .cmnNote .noteFlex{
		display: flex;
		gap: 10px 10px;
	}
	.business_cmn .cmnNote .noteItem{
		flex: 1;
	}
	.business_cmn .cmnNote .noteItem .itemImg{
		width: 100%;
		border-radius: 10px;
		overflow: hidden;
	}
	.business_cmn .cmnNote .noteItem .itemImg img{
		width: 100%;
	}
	.business_cmn .cmnNote .noteItem .itemTxt{
		font-weight: 700;
		font-size: 13px;
		line-height: 18px;
		color: #272e37;
		margin-top: 5px;
		text-align: center;
	}
	.business_cmn2{
		background: #FEF4DC;
		padding: 50px 0 50px;
	}
	.business_cmn2 .cmn2Ttl{
		font-size: 20px;
		line-height: 30px;
	}
	.business_cmn2 .cmn2Blk{
		display: flex;
		gap: 30px 20px;
		margin-top: 30px;
	}
	.business_cmn2 .cmn2Item{
		width: 100%;
	}
	.business_cmn2 .cmn2Item .itemImg{
		width: 100%;
		border-radius: 20px;
		overflow: hidden;
	}
	.business_cmn2 .cmn2Item .itemImg img{
		width: 100%;
	}
	.business_cmn2 .cmn2Item .itemTtl{
		font-weight: 700;
		font-size: 17px;
		line-height: 24px;
		text-align: center;
		color: #f5820f;
		margin-top: 15px;
	}
	.business_cmn2 .cmn2Item .itemTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		color: #272e37;
		margin-top: 10px;
	}
}
@media screen and (max-width: 700px) {
	.business_cmn2 .cmn2Blk{
		display: flex;
		flex-flow: column;
		gap: 30px 20px;
		margin-top: 30px;
	}
	.business_cmn .cmnNote .noteFlex{
		display: flex;
		flex-flow: column;
		gap: 10px 0;
	}
}


/*
Products
====================================*/
.products_lead{
	background: #fefbf2;
	position: relative;
	padding: 120px 0 100px;
	margin-top: 45px;
}
.products_lead::before{
	content: "";
	display: block;
	width: 27.3%;
	aspect-ratio: 41 / 32;
	background: url('images/products_lead01.webp') no-repeat;
	background-size: cover;
	position: absolute;
	top: 0;
	right: 0;
}
.products_lead::after{
	content: "";
	display: block;
	width: 27.3%;
	aspect-ratio: 41 / 32;
	background: url('images/products_lead02.webp') no-repeat;
	background-size: cover;
	position: absolute;
	bottom: 0;
	left: 0;
}
.products_lead .leadTtl{
	font-weight: 700;
	font-size: 40px;
	line-height: 48px;
	text-align: center;
	color: #272e37;
	position: relative;
	z-index: 2;
}
.products_lead .leadTtl .color{
	color: #F5820F;
}
.products_lead .leadTxt{
	font-weight: 500;
	font-size: 18px;
	line-height: 30px;
	text-align: center;
	color: #272e37;
	margin-top: 25px;
	position: relative;
	z-index: 2;
	text-shadow: 0 0 4px rgba(255, 255, 255, 0.9), 0 0 8px rgba(255, 255, 255, 0.8);
}
.products_cmn{

}
.products_cmn.cmnBg{
	background: #FEFBF2;
}
.products_cmn .cmnBlk{
	display: flex;
	flex-wrap: wrap;
	gap: 60px 20px;
	margin-top: 45px;
}
.products_cmn .cmnItem{
	width: calc((100% - 60px) / 4);
}
.products_cmn .cmnItem .itemImg{
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
}
.products_cmn .cmnItem .itemTtl{
	font-weight: 700;
	font-size: clamp(1rem, 0.731rem + 0.42vw, 1.125rem);
	line-height: 26px;
	color: #272e37;
	margin-top: 15px;
}
.products_cmn .cmnItem .itemTxt{
	font-weight: 500;
	font-size: clamp(0.938rem, 0.803rem + 0.21vw, 1rem);
	line-height: 24px;
	color: #272e37;
	margin-top: clamp(0.375rem, -0.163rem + 0.84vw, 0.625rem);
}
.products_cmn .cmnLink{
	width: 300px;
	height: 80px;
	margin: 60px auto 0;
	border-radius: 40px;
	background: linear-gradient(to right, #f5820f 0%, #fed53b 100%);
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.products_cmn .cmnItem .itemDl{
	display: flex;
	flex-wrap: wrap;
	margin-top: 15px;
}
.products_cmn .cmnItem .itemDt{
	width: 30%;
	border-bottom: 1px solid #f5820f;
	padding: 10px 0 10px 10px;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #f5820f;
}
.products_cmn .cmnItem .itemDt:first-of-type{
	border-top: 1px solid #f5820f;
}
.products_cmn .cmnItem .itemDd{
	width: 70%;
	border-bottom: 1px solid #C4C4C4;
	padding: 10px 0 10px 10px;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #272e37;
}
.products_cmn .cmnItem .itemDd:first-of-type{
	border-top: 1px solid #C4C4C4;
}
.products_cmn .cmnTableBlk{
	width: 100%;
	border-radius: 30px;
	background: #fff;
	overflow: hidden;
	margin-top: 50px;
	padding: 40px;
}
.products_cmn .cmnTableBlk .tableTtl{
	font-weight: 700;
	font-size: 30px;
	line-height: 45px;
	color: #272e37;
	display: flex;
	gap: 0 15px;
}
.products_cmn .cmnTableBlk .tableTtl::before{
	content: "";
	display: block;
	width: 6px;
	height: 45px;
	border-radius: 9999px;
	background: #f5820f;
}
.products_cmn .cmnTableBlk .cmnTable{
	margin-top: 30px;
	width: 100%;
	border-collapse: separate;
  	border-spacing: 0;
}
.products_cmn .cmnTableBlk .cmnTable tr{
	
}
.products_cmn .cmnTableBlk .cmnTable th{
	height: 74px;
	background: #fef4dc;
	border-top: 1px solid #d5d5d5;
	border-bottom: 1px solid #d5d5d5;
	border-right: 1px solid #d5d5d5;
	font-weight: 700;
	font-size: clamp(1rem, 0.731rem + 0.42vw, 1.125rem);
	line-height: 24px;
	text-align: center;
	vertical-align: middle;
	color: #272e37;
}
.products_cmn .cmnTableBlk .cmnTable th:first-child {
	border-left: 1px solid #d5d5d5;
  	border-top-left-radius: 8px;
}

.products_cmn .cmnTableBlk .cmnTable th:last-child {
  	border-top-right-radius: 8px;
}
.products_cmn .cmnTableBlk .cmnTable th span{
	display: block;
	font-size: clamp(0.875rem, 0.606rem + 0.42vw, 1rem);
	line-height: 22px;
}
.products_cmn .cmnTableBlk .cmnTable td{
	height: auto;
	background: #fff;
	border-right: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
	font-weight: 500;
	font-size: clamp(0.938rem, 0.803rem + 0.21vw, 1rem);
	line-height: 24px;
	vertical-align: middle;
	color: #272e37;
	padding: 20px;
}
.products_cmn .cmnTableBlk .cmnTable td:first-child{
	border-left: 1px solid #dcdcdc;
}
.products_cmn .cmnTableBlk .cmnTable tr:last-child td:first-child{
	border-bottom-left-radius: 8px;
}
.products_cmn .cmnTableBlk .cmnTable tr:last-child td:last-child{
	border-bottom-right-radius: 8px;
}
.products_cmn .cmnPoint{
	width: 100%;
	height: auto;
	border-radius: 30px;
	background: #fff;
	border: 1px solid #f5820f;
	margin-top: 95px;
	padding: 0 70px 60px;
}
.products_cmn .cmnPoint .pointTtl{
	width: 480px;
	height: 70px;
	margin: -35px auto 0;
	border-radius: 9999px;
	background: #f5820f;
	font-weight: 700;
	font-size: 30px;
	line-height: 44px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.products_cmn .cmnPoint .pointTxt{
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #f5820f;
	text-align: center;
	margin-top: 25px;
}
.products_cmn .cmnPoint .pointBlk{
	display: flex;
	gap: 0 40px;
	margin-top: 40px;
}
.products_cmn .cmnPoint .pointItem{
	width: calc((100% - 120px) / 4);
}
.products_cmn .cmnPoint .pointItem .itemImg{
	width: 100%;
	padding: 0 5px;
	border-radius: 50%;
	overflow: hidden;
}
.products_cmn .cmnPoint .pointItem .itemTtl{
	font-weight: 700;
	font-size: clamp(1rem, 0.731rem + 0.42vw, 1.125rem);
	line-height: 26px;
	color: #272e37;
	margin-top: 15px;
	text-align: center;
}
.products_cmn .cmnPoint .pointItem .itemTxt{
	font-weight: 500;
	font-size: clamp(0.938rem, 0.803rem + 0.21vw, 1rem);
	line-height: 24px;
	color: #272e37;
	margin-top: 15px;
}
.products_cmn .cmnPoint .pointItem .itemDl{
	display: flex;
	flex-wrap: wrap;
	margin-top: 15px;
}
.products_cmn .cmnPoint .pointItem .itemDt{
	width: 37%;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #f5820f;
	padding: 10px 0;
	border-bottom: 1px solid #f5820f;
}
.products_cmn .cmnPoint .pointItem .itemDt:first-of-type{
	border-top: 1px solid #f5820f;
}
.products_cmn .cmnPoint .pointItem .itemDd{
	width: 63%;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #272e37;
	padding: 10px 0;
	border-bottom: 1px solid #c4c4c4;
}
.products_cmn .cmnPoint .pointItem .itemDd:first-of-type{
	border-top: 1px solid #c4c4c4;
}
.products_download{
	padding: 90px 0;
}
.products_download .downloadItem{
	max-width: 950px;
	margin: 0 auto;
	border-radius: 30px;
	background: #fff;
	border: 1px solid #f5820f;
	box-shadow: 0px 0px 20px rgba(242, 189, 136, 0.32);
	padding: 15px 85px 15px 80px;
	display: flex;
	align-items: center;
}
.products_download .downloadItem .itemTxtBlk{
	flex: 1;
}
.products_download .downloadItem .itemTtl{
	font-weight: 700;
	font-size: 30px;
	line-height: 45px;
	color: #f5820f;
}
.products_download .downloadItem .itemTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	color: #272e37;
	margin-top: 25px;
}
.products_download .downloadItem .itemLink{
	width: 280px;
	height: 65px;
	border-radius: 9999px;
	background: #f5820f;
	font-weight: 700;
	font-size: 16px;
	line-height: 26px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 10px;
	margin-top: 25px;
}
.products_download .downloadItem .itemLink::before{
	content: "";
	display: block;
	width: 26px;
	height: 26px;
	background: url('images/icon_download.svg') no-repeat;
}
.products_download .downloadItem .itemImg{
	width: 43%;
}
@media screen and (max-width: 1024px) {
	.products_lead{
		background: #fefbf2;
		position: relative;
		padding: 70px 0 80px;
	}
	.products_lead::before{
		content: "";
		display: block;
		width: 45%;
		max-width: 250px;
		aspect-ratio: 41 / 32;
		background: url('images/products_lead01.webp') no-repeat;
		background-size: cover;
		position: absolute;
		top: 0;
		right: 0;
	}
	.products_lead::after{
		content: "";
		display: block;
		width: 45%;
		max-width: 250px;
		aspect-ratio: 41 / 32;
		background: url('images/products_lead02.webp') no-repeat;
		background-size: cover;
		position: absolute;
		bottom: 0;
		left: 0;
	}
	.products_lead .leadTtl{
		font-weight: 700;
		font-size: 24px;
		line-height: 32px;
		text-align: center;
		color: #272e37;
		position: relative;
		z-index: 2;
	}
	.products_lead .leadTtl .color{
		color: #F5820F;
	}
	.products_lead .leadTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		text-align: justify;
		color: #272e37;
		margin-top: 20px;
		position: relative;
		z-index: 2;
		text-shadow: 0 0 4px rgba(255, 255, 255, 0.9), 0 0 8px rgba(255, 255, 255, 0.8);
	}
	.products_cmn{
		padding: 50px 0 60px;
	}
	.products_cmn .cmnTtl{
		font-size: 22px;
		line-height: 28px;
	}
	.products_cmn.cmnBg{
		background: #FEFBF2;
	}
	.products_cmn .cmnBlk{
		display: flex;
		flex-wrap: wrap;
		gap: 15px 15px;
		margin-top: 35px;
	}
	.products_cmn .cmnItem{
		width: calc((100% - 15px) / 2);
	}
	.products_cmn .cmnItem .itemImg{
		width: 100%;
		border-radius: 15px;
		overflow: hidden;
	}
	.products_cmn .cmnItem .itemTtl{
		font-weight: 700;
		font-size: 14px;
		line-height: 20px;
		color: #272e37;
		margin-top: 10px;
	}
	.products_cmn .cmnItem .itemTxt{
		font-weight: 500;
		font-size: 13px;
		line-height: 18px;
		color: #272e37;
		margin-top: 6px;
	}
	.products_cmn .cmnLink{
		width: 250px;
        height: 55px;
		margin: 40px auto 0;
		border-radius: 40px;
		background: linear-gradient(to right, #f5820f 0%, #fed53b 100%);
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.products_cmn .cmnItem .itemDl{
		display: flex;
		flex-wrap: wrap;
		margin-top: 10px;
	}
	.products_cmn .cmnItem .itemDt{
		width: 30%;
		border-bottom: 1px solid #f5820f;
		padding: 7px 0 7px 5px;
		font-weight: 500;
		font-size: 13px;
		line-height: 18px;
		color: #f5820f;
	}
	.products_cmn .cmnItem .itemDt:first-of-type{
		border-top: 1px solid #f5820f;
	}
	.products_cmn .cmnItem .itemDd{
		width: 70%;
		border-bottom: 1px solid #C4C4C4;
		padding: 7px 0 7px 5px;
		font-weight: 500;
		font-size: 13px;
		line-height: 18px;
		color: #272e37;
	}
	.products_cmn .cmnItem .itemDd:first-of-type{
		border-top: 1px solid #C4C4C4;
	}
	.products_cmn .cmnTableBlk{
		width: 100%;
		border-radius: 15px;
		background: #fff;
		overflow: hidden;
		margin-top: 40px;
		padding: 25px 10px;
	}
	.products_cmn .cmnTableBlk .tableTtl{
		font-weight: 700;
		font-size: 20px;
		line-height: 30px;
		color: #272e37;
		display: flex;
		gap: 0 10px;
	}
	.products_cmn .cmnTableBlk .tableTtl::before{
		content: "";
		display: block;
		width: 5px;
		height: 30px;
		border-radius: 9999px;
		background: #f5820f;
	}
	.products_cmn .cmnTableBlk .cmnTable{
		margin-top: 20px;
		width: 100%;
		border-collapse: separate;
		border-spacing: 0;
	}
	.products_cmn .cmnTableBlk .cmnTable tr{
		
	}
	.products_cmn .cmnTableBlk .cmnTable th{
		height: 54px;
		background: #fef4dc;
		border-top: 1px solid #d5d5d5;
		border-bottom: 1px solid #d5d5d5;
		border-right: 1px solid #d5d5d5;
		font-weight: 700;
		font-size: 12px;
		line-height: 16px;
		text-align: center;
		vertical-align: middle;
		color: #272e37;
	}
	.products_cmn .cmnTableBlk .cmnTable th:first-child {
		border-left: 1px solid #d5d5d5;
		border-top-left-radius: 8px;
	}

	.products_cmn .cmnTableBlk .cmnTable th:last-child {
		border-top-right-radius: 8px;
	}
	.products_cmn .cmnTableBlk .cmnTable th span{
		display: block;
		font-size: 10px;
		line-height: 12px;
	}
	.products_cmn .cmnTableBlk .cmnTable td{
		height: auto;
		background: #fff;
		border-right: 1px solid #dcdcdc;
		border-bottom: 1px solid #dcdcdc;
		font-weight: 500;
		font-size: 11px;
		line-height: 18px;
		vertical-align: middle;
		color: #272e37;
		padding: 5px;
	}
	.products_cmn .cmnTableBlk .cmnTable td:first-child{
		border-left: 1px solid #dcdcdc;
	}
	.products_cmn .cmnTableBlk .cmnTable tr:last-child td:first-child{
		border-bottom-left-radius: 8px;
	}
	.products_cmn .cmnTableBlk .cmnTable tr:last-child td:last-child{
		border-bottom-right-radius: 8px;
	}
	.products_cmn .cmnPoint{
		width: 100%;
		height: auto;
		border-radius: 30px;
		background: #fff;
		border: 1px solid #f5820f;
		margin-top: 45px;
		padding: 0 20px 35px;
	}
	.products_cmn .cmnPoint .pointTtl{
		width: fit-content;
		height: 45px;
		margin: -25px auto 0;
		padding: 0 20px;
		border-radius: 9999px;
		background: #f5820f;
		font-weight: 700;
		font-size: 18px;
		line-height: 24px;
		white-space: nowrap;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.products_cmn .cmnPoint .pointTxt{
		font-weight: 700;
		font-size: 15px;
		line-height: 24px;
		color: #f5820f;
		text-align: center;
		margin-top: 25px;
	}
	.products_cmn .cmnPoint .pointBlk{
		display: flex;
		flex-wrap: wrap;
		gap: 25px 20px;
		margin-top: 20px;
	}
	.products_cmn .cmnPoint .pointItem{
		width: calc((100% - 20px) / 2);
	}
	.products_cmn .cmnPoint .pointItem .itemImg{
		width: 90%;
		margin: 0 auto 10px;
		padding: 0 5px;
		border-radius: 50%;
		overflow: hidden;
	}
	.products_cmn .cmnPoint .pointItem .itemTtl{
		font-weight: 700;
		font-size: 15px;
		line-height: 24px;
		color: #272e37;
		margin-top: 15px;
		text-align: center;
	}
	.products_cmn .cmnPoint .pointItem .itemTxt{
		font-weight: 500;
		font-size: 13px;
		line-height: 20px;
		color: #272e37;
		margin-top: 10px;
	}
	.products_cmn .cmnPoint .pointItem .itemDl{
		display: flex;
		flex-wrap: wrap;
		margin-top: 10px;
	}
	.products_cmn .cmnPoint .pointItem .itemDt{
		width: 25%;
		font-weight: 500;
		font-size: 14px;
		line-height: 21px;
		color: #f5820f;
		padding: 7px 0;
		border-bottom: 1px solid #f5820f;
	}
	.products_cmn .cmnPoint .pointItem .itemDt:first-of-type{
		border-top: 1px solid #f5820f;
	}
	.products_cmn .cmnPoint .pointItem .itemDd{
		width: 75%;
		font-weight: 500;
		font-size: 14px;
		line-height: 21px;
		color: #272e37;
		padding: 7px 0;
		border-bottom: 1px solid #c4c4c4;
	}
	.products_cmn .cmnPoint .pointItem .itemDd:first-of-type{
		border-top: 1px solid #c4c4c4;
	}
	.products_download{
		padding: 50px 0;
	}
	.products_download .downloadItem{
		max-width: 950px;
		margin: 0 auto;
		border-radius: 20px;
		background: #fff;
		border: 1px solid #f5820f;
		box-shadow: 0px 0px 20px rgba(242, 189, 136, 0.32);
		padding: 25px 15px 25px 15px;
		display: flex;
		align-items: center;
	}
	.products_download .downloadItem .itemTxtBlk{
		flex: 1;
	}
	.products_download .downloadItem .itemTtl{
		font-weight: 700;
		font-size: 20px;
		line-height: 30px;
		color: #f5820f;
	}
	.products_download .downloadItem .itemTxt{
		font-weight: 500;
		font-size: 14px;
		line-height: 22px;
		color: #272e37;
		margin-top: 15px;
	}
	.products_download .downloadItem .itemLink{
		width: 250px;
		height: 45px;
		border-radius: 9999px;
		background: #f5820f;
		font-weight: 700;
		font-size: 14px;
		line-height: 22px;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 0 5px;
		margin: 25px auto 0;
	}
	.products_download .downloadItem .itemLink::before{
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		background: url('images/icon_download.svg') no-repeat;
		background-size: contain;
	}
	.products_download .downloadItem .itemImg{
		width: 50%;
		margin: 25px auto 0;
	}
}

/*
Recruit
====================================*/
.recruit_lead{
	background: linear-gradient(#fff 0%, #fef4dc 100%);
	padding: 0 0 165px;
	margin-top: 90px;
	position: relative;
	overflow: hidden;
}
.recruit_lead .leadTtl{
	font-weight: 700;
	font-size: 60px;
	line-height: 85px;
	text-align: center;
	color: #f5820f;
	margin-bottom: 45px;
	position: relative;
	z-index: 1;
}
.recruit_lead .leadTxt{
	max-width: clamp(34.375rem, -1.989rem + 56.82vw, 40.625rem);
	margin: 0 auto;
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	color: #272e37;
	position: relative;
	z-index: 1;
}
.recruit_lead .leadHead{
	font-weight: 700;
	font-size: 30px;
	line-height: 45px;
	color: #272e37;
	text-align: center;
	margin: 45px 0 30px;
	position: relative;
	z-index: 1;
}
.recruit_lead .leadImg.img01{
	position: absolute;
	top: 20px;
	left: 20px;
	width: 17vw;
	border-radius: 30px;
	overflow: hidden;
}
.recruit_lead .leadImg.img02{
	position: absolute;
	bottom: 70px;
	/* left: clamp(1.25rem, -13.295rem + 22.73vw, 3.75rem); */
	right: 78%;
	width: clamp(9.375rem, -30.625rem + 62.5vw, 16.25rem);
	border-radius: 30px;
	overflow: hidden;
}
.recruit_lead .leadImg.img03{
	position: absolute;
	top: 40%;
	left: 77%;
	width: clamp(12.5rem, -26.409rem + 60.8vw, 19.188rem);
	border-radius: 30px;
	overflow: hidden;
}
@media screen and (max-width: 1450px) {
	.recruit_lead .leadImg.img03{
		/* display: none; */
	}
}
.recruit_know .knowTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #272e37;
	text-align: center;
	margin-top: 45px;
}
.recruit_know .knowBlk{
	display: flex;
	flex-flow: column;
	gap: 50px 0;
	margin-top: 60px;
}
.recruit_know .knowItem{
	display: flex;
	align-items: center;
	gap: 0 clamp(1.875rem, -0.814rem + 4.2vw, 3.125rem);
}
.recruit_know .knowItem .itemImg{
	width: 46%;
	border-radius: 30px;
	overflow: hidden;
}
.recruit_know .knowItem .itemTxtBlk{
	flex: 1;
}
.recruit_know .knowItem .itemTtl{
	font-weight: 700;
    font-size: 30px;
    line-height: 45px;
    color: #272e37;
    display: flex;
    gap: 0 15px;
}
.recruit_know .knowItem .itemTtl::before{
	content: "";
    display: block;
    width: 6px;
    height: auto;
    background: #f5820f;
    border-radius: 9999px;
}
.recruit_know .knowItem .itemTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	color: #272e37;
	margin-top: 25px;
}
.recruit_env{
	background: #fef4dc;
}
.recruit_env .envBlk{
	display: flex;
	gap: 0 25px;
	margin-top: 45px;
}
.recruit_env .envItem{
	width: calc((100% - 50px) / 3);
	border-radius: 20px;
	background: #fff;
	padding: 40px 0 35px;
}
.recruit_env .envItem .itemTtl{
	font-weight: 700;
	font-size: clamp(1rem, 0.731rem + 0.42vw, 1.125rem);
	line-height: 26px;
	color: #272E37;
	text-align: center;
}
.recruit_env .envItem .itemTtl span{
	font-weight: 700;
	font-size: clamp(1.5rem, 0.962rem + 0.84vw, 1.75rem);
	line-height: 40px;
	color: #f5820f;
}
.recruit_env .envItem .itemImg{
	width: 160px;
	margin: 25px auto 0;
}
.recruit_env .envItem .itemTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	color: #272e37;
	margin-top: 20px;
	padding: 0 35px;
}
.recruit_desc{
	padding: 90px 0 100px;
}
.recruit_desc .descTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
	color: #272e37;
	margin-top: 45px;
}
.recruit_desc .descNum{
	width: 400px;
	height: 95px;
	margin: 30px auto 0;
	border-radius: 10px;
	background: #fef4dc;
	font-weight: 700;
	font-size: 25px;
	line-height: 30px;
	color: #272e37;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 15px;
}
.recruit_desc .descNum span{
	font-weight: 500;
	font-size: 16px;
	line-height: 30px;
	color: #272e37;
}
.recruit_desc .descLink{
	margin: 30px auto 0;
    width: 350px;
    height: 65px;
    border-radius: 9999px;
    background: linear-gradient(to right, #f5820f 0%, #fed53b 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
}
.recruit_desc .descImg{
	width: 850px;
	margin: 50px auto 0;
}
@media screen and (max-width: 1024px) {
	.recruit_lead{
		background: linear-gradient(#fff 0%, #fef4dc 100%);
		padding: 0 0 60px;
		margin-top: 50px;
		position: relative;
	}
	.recruit_lead .leadTtl{
		font-weight: 700;
		font-size: 26px;
		line-height: 36px;
		text-align: center;
		color: #f5820f;
		margin-bottom: 25px;
		position: relative;
		z-index: 1;
	}
	.recruit_lead .leadTxt{
		max-width: 650px;
		margin: 0 auto;
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		color: #272e37;
		position: relative;
		z-index: 1;
	}
	.recruit_lead .leadHead{
		font-weight: 700;
		font-size: 18px;
		line-height: 26px;
		color: #272e37;
		text-align: center;
		margin: 25px 0 20px;
		position: relative;
		z-index: 1;
	}
	.recruit_lead .leadImg.img01{
		position: relative;
		top: 0px;
        left: -8%;
        width: 45vw;
		max-width: 300px;
		border-radius: 10px;
		overflow: hidden;
		margin-top: 40px;
	}
	.recruit_lead .leadImg.img02{
		position: relative;
		top: 0px;
        left: 55%;
		width: 49vw;
		max-width: 320px;
		border-radius: 10px;
		overflow: hidden;
		margin-top: -30%;
	}
	.recruit_lead .leadImg.img03{
		position: relative;
		top: 0px;
        left: 10px;
		width: 40vw;
		max-width: 280px;
		border-radius: 10px;
		overflow: hidden;
	}
	.recruit_know{
		padding: 50px 0 60px;
	}
	.recruit_know .knowTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		color: #272e37;
		text-align: justify;
		margin-top: 45px;
	}
	.recruit_know .knowBlk{
		display: flex;
		flex-flow: row;
		flex-wrap: wrap;
		gap: 50px 20px;
		margin-top: 30px;
	}
	.recruit_know .knowItem{
		width: calc((100% - 20px) / 2);
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 0 50px;
	}
	.recruit_know .knowItem .itemImg{
		width: 100%;
		border-radius: 15px;
		overflow: hidden;
	}
	.recruit_know .knowItem .itemTxtBlk{
		flex: 1;
	}
	.recruit_know .knowItem .itemTtl{
		font-weight: 700;
		font-size: 18px;
		line-height: 28px;
		color: #272e37;
		display: flex;
		gap: 0 15px;
		margin-top: 15px;
	}
	.recruit_know .knowItem .itemTtl::before{
		content: "";
		display: block;
		width: 5px;
		height: auto;
		background: #f5820f;
		border-radius: 9999px;
	}
	.recruit_know .knowItem .itemTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		color: #272e37;
		margin-top: 20px;
	}
	.recruit_env{
		background: #fef4dc;
		padding: 50px 0 60px;
	}
	.recruit_env .envBlk{
		display: flex;
		flex-wrap: wrap;
		gap: 20px 20px;
		margin-top: 35px;
	}
	.recruit_env .envItem{
		width: calc((100% - 20px) / 2);
		border-radius: 20px;
		background: #fff;
		padding: 30px 0 30px;
	}
	.recruit_env .envItem .itemTtl{
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #272E37;
		text-align: center;
	}
	.recruit_env .envItem .itemTtl span{
		font-weight: 700;
		font-size: 24px;
		line-height: 34px;
		color: #f5820f;
	}
	.recruit_env .envItem .itemImg{
		width: 125px;
		margin: 25px auto 0;
	}
	.recruit_env .envItem .itemTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		color: #272e37;
		margin-top: 20px;
		padding: 0 35px;
	}
	.recruit_desc{
		padding: 60px 0 60px;
	}
	.recruit_desc .descTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		text-align: center;
		color: #272e37;
		margin-top: 45px;
	}
	.recruit_desc .descNum{
		width: 100%;
		height: 75px;
		margin: 30px auto 0;
		border-radius: 10px;
		background: #fef4dc;
		font-weight: 700;
		font-size: 22px;
		line-height: 30px;
		color: #272e37;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 0 15px;
	}
	.recruit_desc .descNum span{
		font-weight: 500;
		font-size: 15px;
		line-height: 30px;
		color: #272e37;
	}
	.recruit_desc .descLink{
		margin: 30px auto 0;
		width: 300px;
		height: 55px;
		border-radius: 9999px;
		background: linear-gradient(to right, #f5820f 0%, #fed53b 100%);
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 700;
		font-size: 15px;
		line-height: 21px;
		color: #fff;
	}
	.recruit_desc .descImg{
		width: 100%;
		max-width: 475px;
		margin: 50px auto 0;
	}
}
@media screen and (max-width: 700px) {
	.recruit_know .knowItem{
		width: 100%;
	}
	.recruit_env .envItem{
		width: 100%;
	}
}


/*
Information
====================================*/
.info_category {
	padding: 90px 0 0px;
}
.info_category .mainBlk ul {
	justify-content: center;
	gap: 15px;
}
.info_category .mainBlk ul li {
	width: calc((100% - (15px * 4)) / 5);
}
.info_category .mainBlk ul li a {
	display: block;
	line-height: 44px;
	text-align: center;
	background: #FEF4DC;
	font-size: 16px;
	border-radius: 9999px;
}
.info_category .mainBlk ul li a:hover {
	opacity: 1;
	color: white;
	background: #F5820F;
}
.info_category .mainBlk ul li.current-cat a {
	background: #f5820f;
	color: white;
}
.info_list {
	padding: 60px 0 90px;
}
.info_list .mainBlk{
	max-width: 850px;
	margin: 0 auto;
}
.info_list .mainBlk article {
	border-top: solid 1px #DDDDDD;
}
.info_list .mainBlk article:last-child {
	border-bottom: solid 1px #DDDDDD;
}
.info_list .mainBlk article a {
	padding: 25px 0;
	align-items: center;
	gap: 26px;
}
.info_list .mainBlk article a::after{
	content: "";
    display: block;
    width: 28px;
    height: 25px;
    background: url('images/icon_arrow2.svg') no-repeat;
    background-size: contain;
	margin-right: 10px;
}
.info_list .mainImgBlk {
	width: 150px;
}
.info_list .mainImgBlk img {
	width: 100%;
	height: 92px;
}
.info_list .mainTextBlk {
	flex: 1;
	display: flex;
	flex-flow: wrap;
	align-items: center;
}
.info_list .mainTextDate {
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #797f85;
}
.info_list .mainTextCat {
	margin: 0 0 0 15px;
	display: inline-flex;
	font-weight: 500;
	font-size: 15px;
	line-height: 21px;
	color: #f5820f;
	padding: 2px 15px;
	border: 1px solid #f5820f;
	border-radius: 9999px;
}
.info_list .mainTextTitle {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	width: auto;
	flex: 1;
	margin: 0px 0 0 15px;
}
.info_detail {
	padding: 60px 0px 90px;
}
.info_detail .mainBlk{
	max-width: 850px;
	margin: 0 auto;
	padding-bottom: 40px;
	border-bottom: 1px solid #c4c4c4;
}
.info_detail .mainDate {
	display: inline-flex;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #797f85;
}
.info_detail .mainCat {
	margin: 0 0 0 15px;
	display: inline-flex;
	font-weight: 500;
	font-size: 15px;
	line-height: 21px;
	color: #f5820f;
	border: 1px solid #f5820f;
	padding: 2px 15px;
	border-radius: 9999px;
}
.info_detail .mainHead {
	font-weight: 700;
	font-size: 30px;
	color: #272e37;
	line-height: 30px;
	margin: 15px 0 0;
}
.info_detail .mainContentBlk {
	margin: 45px 0 0;
}
.info_detail .mainContentBlk > *:first-child,
.info_detail .mainContentBlk > * *:first-child {
	margin-top: 0;
}
.info_detail .mainContentBlk img {
	display: table;
	margin: auto!important;
}
.info_detail .mainContentBlk :not(ul):not(li):not(iframe):not(table *) {
	margin: calc(1rem* 1.6) 0 0;
}
.info_detail .mainContentBlk a {
	color: var(--mainColor);
	text-decoration: underline;
}
@media screen and (max-width: 1024px) {
	.info_category {
		padding: 30px 0 0px;
	}
	.info_category .mainBlk ul {
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 10px;
	}
	.info_category .mainBlk ul li {
		width: calc((100% - 10px) /2);
	}
	.info_category .mainBlk ul li a {
		display: block;
		line-height: 44px;
		text-align: center;
		background: #FEF4DC;
		font-size: 14px;
		border-radius: 9999px;
	}
	.info_category .mainBlk ul li a:hover {
		opacity: 1;
		color: white;
		background: #F5820F;
	}
	.info_category .mainBlk ul li.current-cat a {
		background: #f5820f;
		color: white;
	}
	.info_list {
		padding: 40px 0 60px;
	}
	.info_list .mainBlk{
		max-width: 850px;
		margin: 0 auto;
	}
	.info_list .mainBlk article {
		border-top: solid 1px #DDDDDD;
	}
	.info_list .mainBlk article:last-child {
		border-bottom: solid 1px #DDDDDD;
	}
	.info_list .mainBlk article a {
		padding: 15px 0;
		align-items: center;
		gap: 26px;
	}
	.info_list .mainBlk article a::after{
		content: "";
		display: block;
		width: 23px;
		height: 20px;
		background: url('images/icon_arrow2.svg') no-repeat;
		background-size: contain;
		margin-right: 10px;
	}
	.info_list .mainImgBlk {
		width: 150px;
	}
	.info_list .mainImgBlk img {
		width: 100%;
		height: 92px;
	}
	.info_list .mainTextBlk {
		flex: 1;
		display: flex;
		flex-flow: wrap;
		align-items: center;
	}
	.info_list .mainTextDate {
		font-weight: 700;
		font-size: 14px;
		line-height: 20px;
		color: #797f85;
	}
	.info_list .mainTextCat {
		margin: 0 0 0 10px;
		display: inline-flex;
		font-weight: 500;
		font-size: 12px;
		line-height: 16px;
		color: #f5820f;
		padding: 2px 10px;
		border: 1px solid #f5820f;
		border-radius: 9999px;
	}
	.info_list .mainTextTitle {
		font-weight: 500;
		font-size: 14px;
		line-height: 20px;
		width: 100%;
		flex: auto;
		margin: 3px 0 0 0px;
	}
	.info_detail {
		padding: 60px 0px 100px;
	}
	.info_detail .mainBlk{
		max-width: 850px;
		margin: 0 auto;
		padding-bottom: 30px;
		border-bottom: 1px solid #c4c4c4;
	}
	.info_detail .mainDate {
		display: inline-flex;
		font-weight: 700;
		font-size: 14px;
		line-height: 21px;
		color: #797f85;
	}
	.info_detail .mainCat {
		margin: 0 0 0 10px;
		display: inline-flex;
		font-weight: 500;
		font-size: 12px;
		line-height: 18px;
		color: #f5820f;
		border: 1px solid #f5820f;
		padding: 2px 10px;
		border-radius: 9999px;
	}
	.info_detail .mainHead {
		font-weight: 700;
		font-size: 22px;
		color: #272e37;
		line-height: 30px;
		margin: 10px 0 0;
	}
	.info_detail .mainContentBlk {
		margin: 35px 0 0;
	}
	.info_detail .mainContentBlk > *:first-child,
	.info_detail .mainContentBlk > * *:first-child {
		margin-top: 0;
	}
	.info_detail .mainContentBlk img {
		display: table;
		margin: auto!important;
	}
	.info_detail .mainContentBlk :not(ul):not(li):not(iframe):not(table *) {
		margin: calc(1rem* 1.6) 0 0;
	}
	.info_detail .mainContentBlk a {
		color: var(--mainColor);
		text-decoration: underline;
	}
}
/*
Contact
====================================*/
.contact_lead{
	padding: 45px 0 60px;
}
.contact_lead .leadTxt {
	font-weight: 500;
	font-size: 18px;
	line-height: 30px;
	text-align: center;
	color: #272e37;
}
.contact_tel{
	padding: 0 0 60px;
}
.contact_tel .mainBlk {
	width: 680px;
	height: 170px;
	border-radius: 20px;
	background: #fef4dc;
	margin: 40px auto 0;
    display: flex;
    flex-flow: column;
    justify-content: center;
}
.contact_tel .mainBlk a{
	font-weight: 700;
	font-size: 40px;
	line-height: 58px;
	color: #f5820f;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 6px;
}
.contact_tel .mainBlk a:before{
	content: "";
    display: block;
    width: 32px;
    height: 32px;
    background: url(images/icon_tel.svg) no-repeat;
    background-size: contain;
    margin-top: 4px;
}
.contact_tel .mainBlk .mainTime{
	font-weight: 500;
	font-size: 20px;
	line-height: 30px;
	color: #272e37;
	text-align: center;
}
.contact_form {
	padding: 60px 0 90px;
	background: #fef4dc;
}
.contact_form .mainBlk {
	max-width: 950px;
	margin: 45px auto 0;
	background: #FFF;
	border-radius: 30px;
	padding: 60px 50px;
}
@media screen and (max-width: 1024px) {
	.contact_lead{
		padding: 35px 0 50px;
	}
	.contact_lead .leadTxt {
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		text-align: justify;
		color: #272e37;
	}
	.contact_tel{
		padding: 0 0 40px;
	}
	.contact_tel .cmnTtl{
		font-size: 24px;
		line-height: 30px;
	}
	.contact_tel .mainBlk {
		width: 100%;
		height: 120px;
		border-radius: 15px;
		background: #fef4dc;
		margin: 30px auto 0;
		display: flex;
		flex-flow: column;
		justify-content: center;
	}
	.contact_tel .mainBlk a{
		font-weight: 700;
		font-size: 32px;
		line-height: 46px;
		color: #f5820f;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 0 6px;
	}
	.contact_tel .mainBlk a:before{
		content: "";
		display: block;
		width: 24px;
		height: 24px;
		background: url(images/icon_tel.svg) no-repeat;
		background-size: contain;
		margin-top: 4px;
	}
	.contact_tel .mainBlk .mainTime{
		font-weight: 500;
		font-size: 16px;
		line-height: 26px;
		color: #272e37;
		text-align: center;
	}
	.contact_form {
		padding: 60px 0 60px;
		background: #fef4dc;
	}
	.contact_form .cmnTtl{
		font-size: 24px;
		line-height: 30px;
	}
	.contact_form .mainBlk {
		max-width: 950px;
		margin: 30px auto 0;
		background: #FFF;
		border-radius: 20px;
		padding: 20px 15px 40px;
	}
}