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

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

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

1. General

====================================*/
/*
Root
====================================*/
:root {
	/* メインカラー */
	--mainColor: #022993;
	/*====== 背景カラー ======*/
	/* コンテンツ背景カラー */
	--contentsBg: #F4F5F7;
	/* 下層ページトップ背景カラー */
	--lowerTopBg: #D7E1FA;
	/* 表組み項目名背景カラー */
	--tableItemBg: #F0F5FA;
	/* フォーム項目名背景カラー */
	--formItemBg: #F0F5FA;
	/* カテゴリーリンク背景カラー */
	--categoryLinkBg: #D7E1FA;
	/* メール問い合わせボタン背景カラー */
	--mailBtnBg: #f16252;
	/*====== テキストカラー ======*/
	/* テキストカラー */
	--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

====================================*/
/*
Form
====================================*/
/*
Input
----------------------------------------------------------------*/
.form_input {
	display: flex;
	flex-flow: column;
	gap: 25px 0;
}
.form_input .inputRow {
	display: flex;
	gap: 0 60px;
}
.form_input .inputItem {
	display: flex;
	justify-content: space-between;
	width: 240px;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	padding: 15px 0;
}
.form_input .inputItem ._must {
	width: 60px;
	height: 25px;
	border-radius: 5px;
	background: #f16252;
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.form_input .inputValue {
	flex: 1;
	display: flex;
	align-items: center;
}
.form_input .wpcf7-form-control-wrap {
	width: 100%;
}
/* input[text, tel, email], textarea */
.form_input input[type="text"], .form_input input[type="tel"], .form_input input[type="email"] {
	width: 100%;
	height: 55px;
	border-radius: 5px;
	background: #fff;
	border: 1px solid #c4c4c4;
	padding: 15px;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
}
.form_input select{
	width: 340px;
	height: 55px;
	border-radius: 5px;
	background: #fff;
	border: 1px solid #c4c4c4;
	padding: 15px;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
}
.form_input textarea {
	width: 100%;
	height: 240px;
	border-radius: 5px;
	background: #fff;
	border: 1px solid #c4c4c4;
	padding: 15px;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
}
.form_input input::placeholder, .form_input textarea::placeholder {
	font-size: 14px;
	color: #b4b7bc;
}
/* input[checkbox, radio] */
.form_input input[type="checkbox"], .form_input input[type="radio"] {
	width: 16px;
	height: 16px;
	cursor: pointer;
}
.form_input .wpcf7-form-control {
	display: flex;
	flex-direction: column;
	gap: 10px 0;
}
.form_input .wpcf7-list-item {
	margin: 0;
}
.form_input .wpcf7-list-item label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}
.form_input .wpcf7-list-item-label {
	font-size: 14px;
}
/* input[file] */
.form_input input[type="file"] {
	font-size: 14px;
}
/* validation */
.form_input .wpcf7-not-valid-tip {
	width: 100%;
	font-size: 14px;
	margin: 10px 0 0;
}
/* turnstile */
.form_turnstile {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}
/* agree */
.form_agree {
	margin: 35px 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-form-control{
	display: flex;
	margin: 0 auto;
	width: fit-content;
}
.form_agree .wpcf7-list-item-label {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
}
.form_agree .wpcf7-list-item-label a{
	font-weight: 700;
	color: #1A92EE;
	text-decoration: underline;
}
.form_agree input[type="checkbox"] {
	width: 24px;
	height: 24px;
	border-radius: 4px;
}
/* submit */
.form_submit {
	position: relative;
	width: 380px;
	text-align: center;
	margin: 40px auto 0;
}
.form_submit:after{
	content: "";
	display: block;
	width: 22px;
	height: 22px;
	-webkit-mask-image: url('images/icon_arrow.svg');
	background-color: #FFF;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	right: 27px;
}
.form_submit input[type="submit"] {
	width: 100%;
	height: 80px;
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	color: #fff;
	transition: .3s;
	background: var(--mailBtnBg);
	border-radius: 9999px;
}
@media screen and (min-width: 1025px) {
	.form_submit input[type="submit"]:hover {
		opacity: .7;
	}
}
.form_submit .wpcf7-spinner {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
	.form_input {
		display: flex;
		flex-flow: column;
		gap: 15px 0;
	}
	.form_input .inputRow {
		display: flex;
		flex-flow: column;
		gap: 0 60px;
	}
	.form_input .inputItem {
		display: flex;
		gap: 0 15px;
		justify-content: space-between;
		width: fit-content;
		font-weight: 600;
		font-size: 16px;
		line-height: 21px;
		padding: 12px 0;
	}
	.form_input .inputItem ._must {
		width: 60px;
		height: 24px;
		border-radius: 5px;
		background: #f16252;
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.form_input .inputValue {
		flex: 1;
		display: flex;
		align-items: center;
	}
	.form_input .wpcf7-form-control-wrap {
		width: 100%;
	}
	/* input[text, tel, email], textarea */
	.form_input input[type="text"], .form_input input[type="tel"], .form_input input[type="email"] {
		width: 100%;
		height: 50px;
		border-radius: 5px;
		background: #fff;
		border: 1px solid #c4c4c4;
		padding: 10px;
		font-weight: 500;
		font-size: 16px;
		line-height: 24px;
	}
	.form_input select{
		width: 100%;
		height: 50px;
		border-radius: 5px;
		background: #fff;
		border: 1px solid #c4c4c4;
		padding: 10px;
		font-weight: 500;
		font-size: 16px;
		line-height: 24px;
	}
	.form_input textarea {
		width: 100%;
		height: 200px;
		border-radius: 5px;
		background: #fff;
		border: 1px solid #c4c4c4;
		padding: 15px;
		font-weight: 500;
		font-size: 16px;
		line-height: 24px;
	}
	.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: 15px;
		height: 15px;
		cursor: pointer;
	}
	.form_input .wpcf7-form-control {
		display: flex;
		flex-direction: column;
		gap: 10px 0;
	}
	.form_input .wpcf7-list-item {
		margin: 0;
	}
	.form_input .wpcf7-list-item label {
		display: inline-flex;
		align-items: center;
		gap: 7px;
	}
	.form_input .wpcf7-list-item-label {
		font-size: 13px;
	}
	/* 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: 30px 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-form-control{
		display: flex;
		margin: 0 auto;
		width: fit-content;
	}
	.form_agree .wpcf7-list-item-label {
		font-weight: 500;
		font-size: 15px;
		line-height: 22px;
	}
	.form_agree .wpcf7-list-item-label a{
		font-weight: 700;
		color: #1A92EE;
		text-decoration: underline;
	}
	.form_agree input[type="checkbox"] {
		width: 22px;
		height: 22px;
		border-radius: 4px;
	}
	/* submit */
	.form_submit {
		position: relative;
		width: 100%;
		text-align: center;
		margin: 30px auto 0;
	}
	.form_submit:after{
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		-webkit-mask-image: url('images/icon_arrow.svg');
		-webkit-mask-size: contain;
		background-color: #FFF;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto 0;
		right: 27px;
	}	.form_submit input[type="submit"] {
		width: 90%;
		height: 60px;
		margin: 0 auto;
		font-weight: 600;
		font-size: 20px;
		line-height: 30px;
		color: #fff;
		transition: .3s;
		background: var(--mailBtnBg);
		border-radius: 9999px;
	}
	.form_submit .wpcf7-spinner {
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}
}
/*
Privacy Policy
----------------------------------------------------------------*/
.form_pp {
	margin: 60px 0 0;
	width: 100%;
	height: 270px;
	border-radius: 5px;
	background: #fff;
	border: 1px solid #cecece;
	padding: 30px 33px;
	overflow: auto;
}
.form_pp dl {}
.form_pp dt {
	font-size: 15px;
}
.form_pp dd {
	font-size: 13px;
	line-height: 22px;
	margin: 20px 0 0;
}
@media screen and (max-width: 1024px) {
	.form_pp {
		margin: 60px 0 0;
		width: 100%;
		height: 250px;
		padding: 30px 15px;
	}
	.form_pp dl {}
	.form_pp dt {
		font-size: 15px;
	}
	.form_pp dd {}
}
/*
Thanks & 404
====================================*/
.thanks_section {
	overflow: hidden;
	padding: 80px 0 150px;
}
.thanks_section .inner {}
.thanks_section .blk {}
.thanks_section .headBlk {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	padding: 20px 0;
	background: var(--contentsBg);
}
.thanks_section .head {
	text-align: center;
	font-size: 24px;
}
.thanks_section .mainBlk {
	margin: 35px 0 0;
}
.thanks_section .mainDesc {
	font-size: 14px;
	line-height: 26px;
	text-align: center;
}
.error_section {
	overflow: hidden;
	padding: 80px 0 150px;
}
.error_section .inner {}
.error_section .blk {}
.error_section .headBlk {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	padding: 20px 0;
	background: var(--contentsBg);
}
.error_section .head {
	text-align: center;
	font-size: 30px;
	font-weight: 600;
}
.error_section .head span {
	font-size: 22px;
	display: block;
}
.error_section .mainBlk {
	margin: 35px 0 0;
}
.error_section .mainDesc {
	font-size: 14px;
	line-height: 26px;
	text-align: center;
}
.thanks_section .linkBlk, .error_section .linkBlk {
	text-align: center;
	margin: 45px 0 0;
}
.thanks_section .linkBlk a, .error_section .linkBlk a {
	display: inline-block;
	width: 250px;
	line-height: 40px;
	font-size: 14px;
	border: solid 1px var(--mainColor);
	border-radius: 30px;
}
@media screen and (min-width: 1025px) {
	.thanks_section .linkBlk a:hover, .error_section .linkBlk a:hover {
		opacity: 1;
		background: var(--mainColor);
		color: #fff;
	}
}
@media screen and (max-width: 1024px) {
	.thanks_section {
		padding: 60px 0 90px;
	}
	.thanks_section .inner {}
	.thanks_section .blk {}
	.thanks_section .headBlk {
		padding: 15px 0;
	}
	.thanks_section .head {
		text-align: center;
		font-size: 20px;
	}
	.thanks_section .mainBlk {
		margin: 30px 0 0;
	}
	.thanks_section .mainDesc {
		line-height: 24px;
	}
	.thanks_section .linkBlk {
		margin: 40px 0 0;
	}
	.error_section {
		padding: 40px 0 90px;
	}
	.error_section .inner {}
	.error_section .blk {}
	.error_section .headBlk {}
	.error_section .head {
		font-size: 24px;
	}
	.error_section .head span {
		font-size: 16px;
	}
	.error_section .mainBlk {
		margin: 30px 0 0;
	}
	.error_section .mainDesc {
		line-height: 24px;
	}
	.thanks_main .linkBlk a, .error_section .linkBlk a {}
}
/*====================================

3. Header

====================================*/
.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
	width: 100%;
	height: 90px;
	height: clamp(4.063rem, 0.701rem + 5.25vw, 5.625rem);
	box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
	background: white;
}
.header.top{
	background: transparent;
	box-shadow: none;
}
.header .inner {
	height: 100%;
	padding: 0 15px 0 27px;
}
.header .blk {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0 30px;
	height: 100%;
}
.header .logoBlk {
	flex-shrink: 0;
	display: flex;
}
.header .logoBlk a {}
.header .logoBlk a img {
	height: 46px;
	height: clamp(2.188rem, 0.574rem + 2.52vw, 2.938rem);
}
@media screen and (min-width: 1025px) {
	.header .menuBlk {
		display: flex;
		flex-shrink: 0;
		height: 100%;
	}
	.header .menuBlk nav {
		display: flex;
		gap: 0 25px;
	}
	.header .menuBlk nav > ul._menu {
		display: flex;
		gap: 30px;
		gap: clamp(1.25rem, -1.08rem + 3.64vw, 1.875rem);
		height: 100%;
	}
	.header .menuBlk nav > ul._menu > li {
		position: relative;
		display: flex;
		align-items: center;
		height: 100%;
	}
	.header .menuBlk nav > ul._menu > li > a {
		font-weight: 700;
		font-size: 16px;
		font-size: clamp(0.875rem, 0.606rem + 0.42vw, 1rem);
	}
	.header.top .menuBlk nav > ul._menu > li > a{
		color: #FFF;

	}
	.header .menuBlk nav > ul._menu > li > a._active {
		color: #f16252;
	}
	.header .menuBlk nav > ul._menu > li > a:hover {}
	@media screen and (min-width: 1025px) {
		.header .menuBlk nav > ul > li a:hover {
			color: #f16252;
		}
	}
	.header .menuBlk nav > ul._menu > li > ul {
		position: absolute;
		top: 80%;
		left: -30px;
		left: clamp(-1.25rem, 1.08rem + -3.64vw, -1.875rem);
		display: flex;
		gap: 15px;
		flex-direction: column;
		background: #fff;
		box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
		z-index: 1;
		padding: clamp(1.25rem, -1.08rem + 3.64vw, 1.875rem);
		min-width: 190px;
		opacity: 0;
		visibility: hidden;
		transition: .3s;
		pointer-events: none;
		white-space: nowrap;
	}
	.header .menuBlk > nav > ul._menu > li._parent:hover > ul {
		top: 100%;
		opacity: 1;
		visibility: visible;
		pointer-events: initial;
	}
	.header .menuBlk nav > ul._menu > li > ul > li > a {
		font-size: 14px;
	}
	.header .menuBlk nav > ul > li > ul > li > a:hover {}
	.header .menuBlk nav > ul._button{
		display: flex;
		gap: 0 8px;
		align-items: center;
	}
	.header .menuBlk nav > ul > li._recruit a {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 170px;
		width: clamp(8.125rem, 2.747rem + 8.4vw, 10.625rem);
		height: 50px;
		height: clamp(2.813rem, 1.648rem + 1.82vw, 3.125rem);
		font-size: 16px;
		font-size: clamp(0.875rem, 0.409rem + 0.73vw, 1rem);
		font-weight: 700;
		border-radius: 9999px;
		color: white;
		background: #4ac1df;
	}
	.header .menuBlk nav > ul > li._contact a {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 170px;
		width: clamp(9.375rem, 4.716rem + 7.27vw, 10.625rem);
		height: 50px;
		height: clamp(2.813rem, 1.648rem + 1.82vw, 3.125rem);
		font-size: 16px;
		font-size: clamp(0.875rem, 0.409rem + 0.73vw, 1rem);
		font-weight: 700;
		border-radius: 9999px;
		color: white;
		background: var(--mailBtnBg);
	}
	.header .menuBlk nav > ul > li._entry a {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 220px;
		width: clamp(12.5rem, 9.811rem + 4.2vw, 13.75rem);
		height: 50px;
		height: clamp(2.813rem, 1.648rem + 1.82vw, 3.125rem);
		font-size: 16px;
		font-size: clamp(0.875rem, 0.409rem + 0.73vw, 1rem);
		font-weight: 700;
		border-radius: 9999px;
		color: white;
		background: var(--mailBtnBg);
	}
}
@media screen and (max-width: 1024px) {
	.header {
		height: 55px;
		box-shadow: none;
	}
	.header .inner {
		background: white;
		padding: 0 5px 0 4%;
		box-shadow: 0 2px 10px rgb(0 0 0 / 5%);
		margin: auto;
	}
	.header .blk {}
	.header .logoBlk {}
	.header .logoBlk a {}
	.header .logoBlk a img {
		height: 30px;
	}
	.header .menuBlk {
		position: absolute;
		top: var(--headerH, 55px);
		left: 0;
		height: calc(100dvh - var(--headerH, 55px));
		z-index: -1;
		width: 100%;
		background: white;
		overflow: auto;
		padding: 20px 0 60px;
		opacity: 0;
		visibility: hidden;
		transition: .3s;
		display: block;
		flex-shrink: unset;
	}
	.header .menuBlk::-webkit-scrollbar {
		display: none;
	}
	.header._menuOpen .menuBlk {
		opacity: 1;
		visibility: visible;
	}
	.header .menuBlk > * {
		width: 92%;
		max-width: var(--maxWidth768);
		margin: auto;
	}
	.header .menuBlk nav {}
	.header .menuBlk nav > ul {
		display: block;
		height: auto;
	}
	.header .menuBlk nav > ul > li {
		position: relative;
		display: block;
		height: auto;
		border-bottom: 1px solid #ccc;
	}
	.header .menuBlk nav > ul > li > span {
		position: absolute;
		top: 0;
		right: 0;
		height: 100%;
		width: 70px;
	}
	.header .menuBlk nav > ul > li > a {
		display: flex;
		font-size: 15px;
		padding: 15px 10px;
	}
	.header .menuBlk nav > ul > li._parent > a {
		position: relative;
	}
	.header .menuBlk nav > ul > li._parent::before {
		content: '';
		border-style: solid;
		border-width: 5px 5px 0px 5px;
		border-color: #f16252 transparent transparent transparent;
		position: absolute;
		top: 25px;
		right: 15px;
		transform: translateY(0%);
		transition: .3s;
	}
	.header .menuBlk nav > ul > li._parent::before {
		transform: translateY(0%);
	}
	.header .menuBlk nav > ul > li._parent._childOpen::before {
		transform: rotateX(180deg);
	}
	.header .menuBlk nav > ul > li > ul {
		display: flex;
		flex-direction: column;
		gap: 0;
		margin: 0;
		padding: 0 0 0 20px;
		transition: .3s;
		position: unset;
		background: unset;
		box-shadow: unset;
		min-width: unset;
		opacity: unset;
		visibility: unset;
	}
	.header .menuBlk nav > ul > li > ul {
		overflow-y: scroll;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	.header .menuBlk nav > ul > li > ul::-webkit-scrollbar {
		display: none;
	}
	.header .menuBlk > nav > ul > li._parent:hover > ul {
		top: 100%;
		opacity: unset;
		visibility: unset;
	}
	.header .menuBlk nav > ul > li._childOpen > ul {
		gap: 15px 0;
		margin: 5px 0 20px;
	}
	.header .menuBlk nav > ul > li > ul > li {
		height: 0;
		transition: .3s;
	}
	.header .menuBlk nav > ul > li._childOpen > ul > li {
		height: auto;
	}
	.header .menuBlk nav > ul > li > ul > li > a {
		font-size: 15px;
		opacity: 0;
		visibility: hidden;
	}
	.header .menuBlk nav > ul > li._childOpen > ul > li > a {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
	.header .menuBlk nav > ul._button{
		display: flex;
		flex-flow: column;
	}
	.header .menuBlk nav > ul > li._recruit{
		width: 200px;
		height: 50px;
		border-radius: 9999px;
		background: #4ac1df;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 700;
		font-size: 15px;
		line-height: 21px;
		color: #fff;
		margin: 30px auto 0;
	}
	.header .menuBlk nav > ul > li._recruit > a{
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 0;
	}
	.header .menuBlk nav > ul > li._contact {
		width: 200px;
		height: 50px;
		border-radius: 9999px;
		background: #f16252;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 700;
		font-size: 15px;
		line-height: 21px;
		color: #fff;
		margin: 15px auto 0;
	}
	.header .menuBlk nav > ul > li._contact > a{
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 0;
	}
	.header .mbMenuBlk {
		position: relative;
		height: 100%;
		aspect-ratio: 1/1;
		cursor: pointer;
	}
	.header .mbMenuBdrBlk, .mbMenuBdrBlk span {
		display: inline-block;
		box-sizing: border-box;
	}
	.header .mbMenuBdrBlk {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 25px;
		height: auto;
		transform: translate(-50%, -50%);
	}
	.header .mbMenuBdrBlk:focus:not(:focus-visible) {
		outline: none;
	}
	.header .mbMenuBdrBlk::before, .mbMenuBdrBlk::after {
		content: '';
	}
	.header .mbMenuBdrBlk::before, .mbMenuBdrBlk::after, .mbMenuBdrBlk span {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 1px;
		background: #333;
		border-radius: 4px;
		transition: .2s;
	}
	.header .mbMenuBdrBlk::before {
		transform: rotate(45deg) scaleX(0);
	}
	.header .mbMenuBdrBlk::after {
		transform: rotate(-45deg) scaleX(0);
	}
	.header .mbMenuBdrBlk span:nth-of-type(1) {
		top: -8px;
		transition-delay: .2s;
	}
	.header .mbMenuBdrBlk span:nth-of-type(2) {
		top: 0px;
		transition-delay: .2s;
	}
	.header .mbMenuBdrBlk span:nth-of-type(3) {
		top: 8px;
		transition-delay: .2s;
	}
	.header._menuOpen .mbMenuBdrBlk::before {
		transform: rotate(45deg) scaleX(1);
		transition-delay: .2s;
	}
	.header._menuOpen .mbMenuBdrBlk::after {
		transform: rotate(-45deg) scaleX(1);
		transition-delay: .2s;
	}
	.header._menuOpen .mbMenuBdrBlk span {
		transform: scaleX(0);
		transition-delay: 0s;
	}
}
/*====================================

4. Main

====================================*/
main#top{
	margin: 0;
}
main {
	margin: var(--headerH, clamp(4.063rem, 0.568rem + 5.45vw, 5rem)) 0 0;
}
@media screen and (max-width: 1024px) {
	main#top{
		margin: var(--headerH, 55px) 0 0;
	}
	main {
		margin: var(--headerH, 55px) 0 0;
	}
}
/*====================================

5. Footer

====================================*/
.footer {
	padding: 50px 0 30px;
	background: #FFF;
}
.footer .inner {}
.footer .blk {}
.footer .mainBlk {
	justify-content: space-between;
	padding: 0 0 40px;
	border-bottom: solid 1px white;
}
.footer .mainLeftBlk {}
.footer .mainLogoBlk {}
.footer .mainLogoBlk a {}
.footer .mainLogoBlk img {
	height: 47px;
}
.footer .mainInfoBlk {
	margin: 15px 0 0;
	display: flex;
	flex-flow: column;
	gap: 3px 0;
}
.footer .mainInfoBlk p {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
}
.footer .mainInfoBlk p a {}
.footer .mainLink{
	width: 250px;
	height: 50px;
	border-radius: 9999px;
	background: #fff;
	border: 1px solid #f16252;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #f16252;
	margin-top: 20px;
}
.footer .menuBlk {
}
.footer .menuBlk > ul {
	gap: 45px;
}
.footer .menuBlk > ul > li {}
.footer .menuBlk > ul > li > a {
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	display: block;
}
.footer .menuBlk > ul > li > a:not(:first-of-type){
	margin-top: 20px;
}
.footer .menuBlk > ul > li > ul {
	display: grid;
	gap: 12px;
	margin: 12px 0 0;
}
.footer .menuBlk > ul > li > ul > li {
	display: block;
}
.footer .menuBlk > ul > li > ul > li > a {
	display: block;
	width: 100%;
	height: 100%;
	font-weight: 500;
	font-size: 15px;
	line-height: 21px;
}
.footer .btmBlk {}
.footer .copyrightBlk {
}
.footer .copyrightBlk p {
	font-weight: 500;
	font-size: 16px;
	text-align: center;
}
@media screen and (max-width: 1024px) {
	.footer {
		padding: 40px 0 20px;
		background: #FFF;
	}
	.footer .inner {}
	.footer .blk {}
	.footer .mainBlk {
		justify-content: space-between;
		padding: 0 0 30px;
		border-bottom: solid 1px white;
		gap: 40px 0;
	}
	.footer .mainLeftBlk {
		order: 2;
	}
	.footer .mainLogoBlk {}
	.footer .mainLogoBlk a {}
	.footer .mainLogoBlk img {
		height: 40px;
	}
	.footer .mainInfoBlk {
		margin: 15px 0 0;
		display: flex;
		flex-flow: column;
		gap: 3px 0;
	}
	.footer .mainInfoBlk p {
		font-weight: 500;
		font-size: 15px;
		line-height: 22px;
	}
	.footer .mainInfoBlk p a {}
	.footer .mainLink{
		width: 220px;
		height: 40px;
		border-radius: 9999px;
		background: #fff;
		border: 1px solid #f16252;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 700;
		font-size: 15px;
		line-height: 22px;
		color: #f16252;
		margin-top: 20px;
	}
	.footer .menuBlk {
		margin-top: 0px;
		order: 1;
	}
	.footer .menuBlk > ul {
		gap: 35px;
		justify-content: flex-start;
	}
	.footer .menuBlk > ul > li {}
	.footer .menuBlk > ul > li > a {
		font-weight: 700;
		font-size: 15px;
		line-height: 22px;
		display: block;
	}
	.footer .menuBlk > ul > li > a:not(:first-of-type){
		margin-top: 15px;
	}
	.footer .menuBlk > ul > li > ul {
		display: grid;
		gap: 10px;
		margin: 12px 0 0;
	}
	.footer .menuBlk > ul > li > ul > li {
		display: block;
	}
	.footer .menuBlk > ul > li > ul > li > a {
		display: block;
		width: 100%;
		height: 100%;
		font-weight: 500;
		font-size: 15px;
		line-height: 21px;
	}
	.footer .btmBlk {}
	.footer .copyrightBlk {
	}
	.footer .copyrightBlk p {
		font-weight: 500;
		font-size: 14px;
		text-align: center;
	}
}
/*====================================

6. Common Style

====================================*/
/*
6.1 Single
====================================*/
.cmn_outer {
	padding: clamp(3.75rem, 2.898rem + 3.64vw, 5.625rem) 0;
}
.cmn_inner {
	max-width: 1200px;
	padding: 0 50px;
	margin: auto;
}
.cmn_contact{
	background: url('images/cmn_contactBg.webp') no-repeat;
	background-size: cover;
	background-position: right;
	padding: 65px 0 70px;
}
.cmn_contact .blk{
	display: flex;
	justify-content: space-between;
}
.cmn_contact .top_cmnHead{
	padding-top: 50px;
	border-bottom: none !important;
}
.cmn_contact .top_cmnHead span{
	font-size: 112px;
	line-height: 162px;
	color: #fff;
}
.cmn_contact .txt{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #323234;
	margin-top: 20px;
}
.cmn_contact .linkBlk{
	display: flex;
	flex-flow: column;
	gap: 15px 0;
	margin-right: 20px;
}
.cmn_contact .linkBlk .link01{
	width: clamp(22.5rem, 10.399rem + 18.91vw, 28.125rem);
	height: 90px;
	border-radius: 9999px;
	background: #fff;
	font-weight: 600;
	font-size: 20px;
	line-height: 40px;
	color: #323234;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cmn_contact .linkBlk .link01 .tel{
	font-weight: 600;
	font-size: 32px;
	line-height: 40px;
	color: #323234;
	margin-left: 5px;
}
.cmn_contact .linkBlk .link02{
	width: clamp(22.5rem, 10.399rem + 18.91vw, 28.125rem);
	height: 90px;
	border-radius: 9999px;
	background: #f16252;
	font-weight: 600;
	font-size: 21px;
	line-height: 30px;
	color: #FFF;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cmn_recruit{
	padding: 60px 0 90px;
	background: url('images/cmn_recruitBg.webp') no-repeat;
	background-size: cover;
}
.cmn_recruit .top_cmnHead{
	font-weight: 600;
	font-size: 35px;
	line-height: 50px;
	text-align: center;
	padding-top: 50px;
}
.cmn_recruit .top_cmnHead span{
	font-weight: 300;
	font-size: 108px;
	line-height: 157px;
	color: #FFF;
	left: 50%;
	transform: translateX(-50%);
}
.cmn_recruit .linkBlk{
	display: flex;
	gap: 0 32px;
	margin-top: 42px;
}
.cmn_recruit .linkBlk .link01{
	width: calc((100% - 64px) / 3);
	height: 100px;
	border-radius: 5px;
	background: #f16252;
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	color: #FFF;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cmn_recruit .linkBlk .link02{
	width: calc((100% - 64px) / 3);
	height: 100px;
	border-radius: 5px;
	background: #FFF;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cmn_recruit .linkBlk .link02 img{
	width: 220px;
}
.cmn_recruit .linkBlk .link03{
	width: calc((100% - 64px) / 3);
	height: 100px;
	border-radius: 5px;
	background: #FFF;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cmn_recruit .linkBlk .link03 img{
	width: 220px;
}
.cmn_inLink{
	background: #dcf0f8;
	padding: 85px 0;
}
.cmn_inLink .inLinkBlk{
	display: flex;
	gap: 0 clamp(2.5rem, -1.534rem + 6.3vw, 4.375rem);
}
.cmn_inLink .inLink{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: calc((100% - clamp(2.5rem, -1.534rem + 6.3vw, 4.375rem)) / 2);
	border-radius: 5px;
	background: #fff;
	box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.1);
	padding: 45px 40px 45px 45px;
}
.cmn_inLink .inLink .head{
	font-weight: 600;
	font-size: 15px;
	line-height: 20px;
	color: #4ac1df;
}
.cmn_inLink .inLink .txt{
	font-weight: 600;
	font-size: 25px;
	line-height: 36px;
	margin-top: 5px;
}
.cmn_inLink .inLink .arrow{
	width: 50px;
	height: 50px;
	border-radius: 9999px;
	background: #4AC1DF;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cmn_inLink .inLink .arrow:before{
	content: "";
	display: block;
	width: 23px;
	height: 22px;
	-webkit-mask-image: url('images/icon_arrow.svg');
	-webkit-mask-size: contain;
	background-color: #FFF;
}
@media screen and (max-width: 1024px) {
	.cmn_inner {
		width: 92%;
		max-width: var(--maxWidth768);
		padding: 0;
	}
	.cmn_contact{
		background: url('images/cmn_contactBg.webp') no-repeat;
		background-size: cover;
		padding: 50px 0 50px;
	}
	.cmn_contact .blk{
		display: flex;
		flex-flow: column;
		justify-content: space-between;
		gap: 20px 0;
	}
	.cmn_contact .top_cmnHead{
		padding-top: 40px;	
	}
	.cmn_contact .top_cmnHead span{
		font-size: 70px;
		line-height: 100px;
		color: #fff;
	}
	.cmn_contact .txt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		color: #323234;
		margin-top: 20px;
	}
	.cmn_contact .linkBlk{
		display: flex;
		flex-flow: column;
		gap: 15px 0;
		margin: 0 10px;
	}
	.cmn_contact .linkBlk .link01{
		width: 100%;
		height: 70px;
		border-radius: 9999px;
		background: #fff;
		font-weight: 600;
		font-size: 16px;
		line-height: 32px;
		color: #323234;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.cmn_contact .linkBlk .link01 .tel{
		font-weight: 600;
		font-size: 28px;
		line-height: 34px;
		color: #323234;
		margin-left: 5px;
	}
	.cmn_contact .linkBlk .link02{
		width: 100%;
		height: 70px;
		border-radius: 9999px;
		background: #f16252;
		font-weight: 600;
		font-size: 18px;
		line-height: 26px;
		color: #FFF;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.cmn_recruit{
		padding: 50px 0 60px;
		background: url('images/cmn_recruitBg.webp') no-repeat;
		background-size: cover;
	}
	.cmn_recruit .top_cmnHead{
		font-weight: 600;
		font-size: 30px;
		line-height: 37px;
		text-align: center;
		padding-top: 40px;
	}
	.cmn_recruit .top_cmnHead span{
		font-weight: 300;
		font-size: 70px;
		line-height: 110px;
		color: #FFF;
		left: 50%;
		transform: translateX(-50%);
	}
	.cmn_recruit .linkBlk{
		display: flex;
		flex-flow: column;
		gap: 15px 0;
		margin-top: 30px;
	}
	.cmn_recruit .linkBlk .link01{
		width: 100%;
		height: 60px;
		border-radius: 5px;
		background: #f16252;
		font-weight: 600;
		font-size: 18px;
		line-height: 28px;
		color: #FFF;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.cmn_recruit .linkBlk .link02{
		width: 100%;
		height: 60px;
		border-radius: 5px;
		background: #FFF;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.cmn_recruit .linkBlk .link02 img{
		width: 200px;
	}
	.cmn_recruit .linkBlk .link03{
		width: 100%;
		height: 60px;
		border-radius: 5px;
		background: #FFF;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.cmn_recruit .linkBlk .link03 img{
		width: 200px;
	}
	.cmn_inLink{
		background: #dcf0f8;
		padding: 40px 0;
	}
	.cmn_inLink .inLinkBlk{
		display: flex;
		flex-flow: column;
		gap: 20px 0;
	}
	.cmn_inLink .inLink{
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		border-radius: 5px;
		background: #fff;
		box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.1);
		padding: 25px 20px 25px 25px;
	}
	.cmn_inLink .inLink .head{
		font-weight: 600;
		font-size: 14px;
		line-height: 20px;
		color: #4ac1df;
	}
	.cmn_inLink .inLink .txt{
		font-weight: 600;
		font-size: 22px;
		line-height: 28px;
		margin-top: 5px;
	}
	.cmn_inLink .inLink .arrow{
		width: 40px;
		height: 40px;
		border-radius: 9999px;
		background: #4AC1DF;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.cmn_inLink .inLink .arrow:before{
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		-webkit-mask-image: url('images/icon_arrow.svg');
		-webkit-mask-size: contain;
		background-color: #FFF;
	}
}
/*
6.2 Section
====================================*/
.cmn_top {
	height: 250px;
	padding: 0 20px;
}
.cmn_top .inner {
	height: 100%;
}
.cmn_top .blk {
	height: 100%;
	position: relative;
	border-radius: 5px;
}
.cmn_top .headBlk {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.cmn_top .head {
	font-weight: 600;
	font-size: 40px;
	line-height: 58px;
	position: relative;
	color: #fff;
}
.cmn_top .head.black{
	color: #323234;
}
.cmn_top .head span {
	font-weight: 300;
	font-size: 135px;
	line-height: 140px;
	color: rgba(255,255,255,0.5);
	position: absolute;
	top: 25px;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
}
.cmn_top .bg{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.cmn_top .bg img{
	width: 100%;
	height: 100%;
}
.cmn_top._small {
	height: 150px;
	background: var(--lowerTopBg);
}
.cmn_nav{
	padding: 40px 0 0;
}
.cmn_nav .inner{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 0;
}
.cmn_nav .navLink{
	width: calc(100% / 5);
	font-weight: 600;
	font-size: clamp(0.875rem, 0.606rem + 0.42vw, 1rem);
	line-height: 24px;
	color: #323234;
	border-right: 1px solid #c4c4c4;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	gap: 0 clamp(0.313rem, -0.36rem + 1.05vw, 0.625rem);
}
.cmn_nav .navLink:nth-of-type(5n + 1){
	border-left: 1px solid #c4c4c4;
}
.cmn_nav .navLink:after{
	content: "";
	display: block;
	width: 17px;
	height: 17px;
	background: url('images/icon_navArrow.svg') no-repeat;
	background-size: contain;
}
.cmn_headBlk{
	display: flex;
	flex-flow: column;
	align-items: center;
}
.cmn_headBlk .subHead{
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #f16252;
}
.cmn_headBlk .head{
	font-weight: 600;
	font-size: 40px;
	line-height: 58px;
	margin-top: 10px;
}




/* table */
.cmn_table > dl {
	border: 1px solid #d7dce2;
	background: white;
}
.cmn_table > dl > div {
	display: flex;
	flex-flow: wrap;
	border-bottom: 1px solid #d7dce2;
}
.cmn_table > dl > div:last-child {
	border-bottom: transparent;
}
.cmn_table > dl > div > * {
	padding: 25px 20px;
}
.cmn_table > dl > div > dt {
	width: 225px;
	background: var(--tableItemBg);
	border-right: 1px solid #D7DCE2;
}
.cmn_table > dl > div > dd {
	flex: 1;
}
.cmn_table > dl > div > dd a {
	color: var(--linkTextColor);
}
.cmn_table > dl > div > dd a:not([href^="tel"]) {
	text-decoration: underline;
}
.cmn_table > dl > div > dd a[href^="tel"] {
	color: inherit;
}
@media screen and (max-width: 1024px) {
	.cmn_top {
		height: 120px;
		padding: 0 10px;
	}
	.cmn_top .inner {
		height: 100%;
	}
	.cmn_top .blk {
		height: 100%;
		position: relative;
		border-radius: 5px;
	}
	.cmn_top .headBlk {
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.cmn_top .head {
		font-weight: 600;
		font-size: 28px;
		line-height: 40px;
		position: relative;
		color: #fff;
	}
	.cmn_top .head.black{
		color: #323234;
	}
	.cmn_top .head span {
		font-weight: 300;
		font-size: 60px;
		line-height: 70px;
		color: rgba(255,255,255,0.5);
		position: absolute;
		top: 20px;
		left: 50%;
		transform: translateX(-50%);
		white-space: nowrap;
	}
	.cmn_top .bg{
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}
	.cmn_top .bg img{
		width: 100%;
		height: 100%;
	}
	.cmn_top._small {
		height: 150px;
		background: var(--lowerTopBg);
	}
	.cmn_nav{
		padding: 40px 0 0;
	}
	.cmn_nav .inner{
		display: flex;
		flex-wrap: wrap;
		gap: 15px 0;
	}
	.cmn_nav .navLink{
		width: calc(100% / 2);
		font-weight: 600;
		font-size: 14px;
		line-height: 20px;
		color: #323234;
		border-right: 1px solid #c4c4c4;
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 0 10px;
		padding: 0 15px 0 10px;
		flex-shrink: 0;
	}
	.cmn_nav .navLink:nth-of-type(5n + 1){
		border-left: none;
	}
	.cmn_nav .navLink:nth-of-type(odd){
		border-left: 1px solid #c4c4c4;
	}
	.cmn_nav .navLink:after{
		content: "";
		display: block;
		width: 16px;
		height: 16px;
		background: url('images/icon_navArrow.svg') no-repeat;
		background-size: contain;
		flex-shrink: 0;
	}
	.cmn_headBlk{
		display: flex;
		flex-flow: column;
		align-items: center;
	}
	.cmn_headBlk .subHead{
		font-weight: 600;
		font-size: 14px;
		line-height: 20px;
		color: #f16252;
	}
	.cmn_headBlk .head{
		font-weight: 600;
		font-size: 26px;
		line-height: 32px;
		margin-top: 10px;
		text-align: center;
	}
	/* table */
	.cmn_table > dl {
		border: 1px solid #d7dce2;
		background: white;
	}
	.cmn_table > dl > div {
		display: flex;
		flex-flow: wrap;
		border-bottom: 1px solid #d7dce2;
	}
	.cmn_table > dl > div:last-child {
		border-bottom: transparent;
	}
	.cmn_table > dl > div > * {
		padding: 20px 15px;
	}
	.cmn_table > dl > div > dt {
		width: 100%;
		border-right: transparent;
	}
	.cmn_table > dl > div > dd {
		flex: unset;
		width: 100%;
	}
	.cmn_table > dl > div > dd a {}
	.cmn_table > dl > div > dd a[href^="tel"] {}
}
/*====================================

7. Module

====================================*/
/*modal*/
.mod_modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100dvh;
	padding: 0 50px;
	background-color: rgb(51, 51, 51, 65%);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
@media screen and (max-width: 1024px) {
	.mod_modal {
		padding: initial;
	}
}
.mod_modal._open {
	transition: all .5s;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.mod_modal .inner {
	position: relative;
	min-width: 50%;
	max-height: 90%;
	padding: 60px clamp(0.938rem, 0.795rem + 0.61vw, 1.25rem);
	border-radius: 10px;
	background: #fff;
}
@media screen and (max-width: 1024px) {
	.mod_modal .inner {
		max-width: initial;
	}
}
.mod_modal .blk {
	position: relative;
}
.mod_modal .closeBtn {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 2px solid #000;
	background: #fff;
	pointer-events: auto;
	cursor: pointer;
	transition: all .3s;
}
.mod_modal .closeBtn::before, .mod_modal .closeBtn::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50%;
	height: 2px;
	background: #000;
	border-radius: 4px;
	transition: all .3s;
}
.mod_modal .closeBtn::before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.mod_modal .closeBtn::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (min-width: 1025px) {
	.mod_modal .closeBtn:hover {
		background: #000;
		opacity: 1;
	}
	.mod_modal .closeBtn:hover::before, .mod_modal .closeBtn:hover::after {
		background: #fff;
	}
}
.mod_modal .mainBlk {
	display: none;
	max-height: calc((100dvh - 10dvh) - 120px);
	padding: 0 clamp(0rem, -0.568rem + 2.42vw, 1.25rem);
	overflow: auto;
}
.mod_modal .mainBlk._active {
	display: block;
}
/* float link */
.mod_floatLink {
	top: 550px;
	z-index: 1;
}
.mod_floatLink a {
	display: grid;
	place-items: center;
	padding: 25px 0;
	width: 50px;
	font-size: 17px;
	color: white;
	background: var(--mailBtnBg);
}
/* contact */
.mod_contact {
	margin: 0 0 90px;
	padding: 70px 0;
	background: var(--contentsBg);
	.inner {}
	.blk {}
	.headBlk {
		.head {
			text-align:center;
			font-size: 50px;
			line-height: 1;
		}
		.headSpan {
			display: block;
			margin: 15px 0 0;
			font-size: 14px;
		}
		@media screen and (max-width: 1024px) {
			.head {
				font-size: 24px;
			}
			.headSpan {
				margin: 10px 0 0;
				font-size: 12px;
			}
		}
	}
	.mainBlk {
		margin: 30px 0 0;
		.mainDesc {
			text-align:center;
		}
	}
	.linkBlk {
		align-items:center;
		justify-content:center;
		gap:20px;
		margin:30px 0 0;
		a{
			display:flex;
			align-items:center;
			justify-content:center;
			width: 280px;
			height: 65px;
			border-radius: 50px;
			border: 1px solid #000;
		}
		a._tel{

		}
		a._mail{}
	}
}
/*====================================

8. Page

====================================*/
/*
Top
====================================*/
.top_cmnHead{
	font-weight: 600;
	font-size: 40px;
	line-height: 58px;
	color: #323234;
	position: relative;
	padding-top: 38px;
}
.top_cmnHead span{
	font-weight: 300;
	font-size: 84px;
	line-height: 140px;
	color: #ffd8d8;
	position: absolute;
	top: -45px;
	left: 0;
	z-index: -1;
	white-space: nowrap;
}
.top_cmnTxt{
	width: 450px;
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	color: #323234;
	margin-top: 40px;
}
.top_mv {
	height: calc(100vh);
	background-image: url(./images/top_mv_bg01.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.top_mv .inner {
	height: 100%;
}
.top_mv .blk {
	position: relative;
	height: 100%;
}
.top_mv .catchBlk {
	display: grid;
	place-items: center;
	height: 100%;
}
.top_mv	 .catchBlk .desc {
	font-weight: 700;
	font-size: 30px;
	font-size: clamp(1.875rem, -0.142rem + 3.15vw, 2.813rem);
	text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.09);
	color: #fff;
}
.top_mv._slider {
	background: initial;
	position: relative;
}
.top_mv._slider .catchBlk {
	position: relative;
	z-index: 1;
	place-items: initial;
	justify-content: flex-start;
	align-items: center;
	padding: 11% 0 0 6%;
	pointer-events: none;
}
.top_mv._slider .slideBlk {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
}
.top_mv .bannerBlk{
	position: absolute;
	bottom: 20px;
	right: 20px;
	width: 329px;
	height: 126px;
	border-radius: 5px;
	background: #fff;
	box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16);
	display: flex;
	gap: 0 15px;
	padding: 15px;
}
.top_mv .bannerBlk .img{
	width: 96px;
	height: 96px;
	border-radius: 4px;
	overflow: hidden;
}
.top_mv .bannerBlk .txtBlk{
	flex: 1;
	display: flex;
	flex-flow: column;
	justify-content: center;
}
.top_mv .bannerBlk .txtBlk .ttl{
	font-weight: 600;
	font-size: 19px;
	line-height: 28px;
	color: #f16252;
}
.top_mv .bannerBlk .txtBlk .txt{
	font-weight: 600;
	font-size: 15px;
	line-height: 21px;
	color: #323234;
	margin-top: 8px;
	display: flex;
	align-items: center;
	gap: 0 5px;
}
.top_mv .bannerBlk .txtBlk .txt:after{
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	-webkit-mask-image: url('images/icon_arrow.svg');
	background: #323234;
}
.top_news{
	padding: 80px 0 85px;
}
.top_news .blk{
	display: flex;
	gap: 0 clamp(3.125rem, -0.505rem + 5.67vw, 4.813rem);
}
.top_news .headBlk{
	display: flex;
	flex-flow: column;
}
.top_news .headBlk .link{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 203px;
	height: 60px;
	border-radius: 9999px;
	background: var(--mailBtnBg);
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	margin-top: auto;
	position: relative;
}
.top_news .headBlk .link:after{
	content: "";
	display: block;
	width: 22px;
	height: 22px;
	-webkit-mask-image: url(images/icon_arrow.svg);
	background-color: #FFF;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	right: 10px;
}
.top_news .mainBlk{
	flex: 1;
	border-top: 1px solid #c4c4c4;
}
.top_news .mainBlk a{
	display: flex;
	align-items: center;
	border-bottom: 1px solid #c4c4c4;
	min-height: 80px;
	padding-right: 40px;
	position: relative;
}
.top_news .mainBlk a:after{
	content: "";
	display: block;
	width: 22px;
	height: 22px;
	background: url('images/icon_arrow.svg') no-repeat;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	right: 10px;
}
.top_news .mainBlk .date{
	font-weight: 700;
	font-size: 15px;
	line-height: 21px;
	color: #707070;
}
.top_news .mainBlk .category{
	width: fit-content;
	height: 28px;
	border-radius: 9999px;
	border: 1px solid #f16252;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #f16252;
	padding: 0 18px;
	margin: 0 18px;
}
.top_news .mainBlk .title{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #323234;
	flex: 1;
}
.top_service{
	background: url('images/top_serviceBg.webp') no-repeat;
	background-size: cover;
	padding: 133px 0 120px;
}
.top_service .blk{
	display: flex;
	gap: 0 clamp(3.25rem, -0.38rem + 5.67vw, 4.938rem);
	align-items: center;
}
.top_service .headBlk .top_cmnHead{
	padding-top: 60px;
}
.top_service .headBlk .top_cmnHead span{
	font-size: 112px;
	line-height: 162px;
}
.top_service .headBlk .link{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 293px;
	height: 70px;
	border-radius: 9999px;
	background: var(--mailBtnBg);
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
	color: #fff;
	margin-top: auto;
	position: relative;
	margin-top: 40px;
}
.top_service .headBlk .link:after{
	content: "";
	display: block;
	width: 22px;
	height: 22px;
	-webkit-mask-image: url(images/icon_arrow.svg);
	background-color: #FFF;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	right: 18px;
}
.top_service .imgBlk{
	flex: 1;
	margin-right: calc(var(--ohw) * -1);
	display: grid;
	grid-template-rows: auto auto;
	grid-template-columns: 46% 51%;
	gap: 30px 3%;
	height: fit-content;
}
.top_service .imgBlk .img01{
	grid-row: 1 / 3;
	grid-column: 1 / 2;
	margin-top: 19%;
}
.top_service .imgBlk .img02{
	grid-row: 1 / 2;
	grid-column: 2 / 3;
}
.top_service .imgBlk .img03{
	grid-row: 2 / 3;
	grid-column: 2 / 3;
	margin-right: 6%;
}
.top_service .imgBlk img{
	border-radius: 5px;
}
.top_pharmacy{
	padding: 90px 0 100px;
}
.top_pharmacy .headBlk .top_cmnHead{
	padding-top: 60px;
	text-align: center;
}
.top_pharmacy .headBlk .top_cmnHead span{
	font-size: 112px;
	line-height: 162px;
	right: 0;
}
.top_pharmacy .pharmacyBlk{
	margin-top: 40px;
	display: flex;
	justify-content: space-between;
}
.top_pharmacy .pharmacyBlk .itemBlk{
	width: clamp(17.813rem, 9.745rem + 12.61vw, 21.563rem);
	position: relative;
}
.top_pharmacy .pharmacyBlk .itemBlk .img{
	width: 100%;
	border-radius: 5px;
	overflow: hidden;
}
.top_pharmacy .pharmacyBlk .itemBlk .txtBlk{
	width: 100%;
	padding: 22px 27px;
	position: absolute;
	bottom: 0;
	left: 0;
	font-weight: 700;
	font-size: 28px;
	line-height: 42px;
	color: #fff;
	display: flex;
	justify-content: space-between;
}
.top_pharmacy .pharmacyBlk .itemBlk .arrow{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid #fff;
}
.top_pharmacy .pharmacyBlk .itemBlk .arrow:before{
	content: "";
	display: block;
	width: 23px;
	height: 22px;
	-webkit-mask-image: url(images/icon_arrow.svg);
	-webkit-mask-size: contain;
	background-color: #FFF;
}
.top_recruit{
	position: relative;
	padding: 66px 0 93px;
	overflow: hidden;
}
.top_recruit:before{
	content: "";
	display: block;
	width: 92vw;
	height: 100%;
	background: #fff5f2;
	position: absolute;
	top: 0;
	right: 0;
}
.top_recruit .imgBlk{
	width: 100vw;
	margin: 0 calc(50% - 50vw);
}
.top_recruit .imgBlk .img{
	margin: 0 clamp(0.625rem, -0.72rem + 2.1vw, 1.25rem);
	border-radius: 5px;
	overflow: hidden;
}
.top_recruit .txtBlk{
	display: flex;
	justify-content: space-between;
	padding-top: 48px;
}
.top_recruit .txtBlk .txt{
	width: 51%;
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
}
.top_recruit .top_cmnHead span{
	font-size: 112px;
	line-height: 162px;
}
.top_recruit .top_cmnHead{
	padding-top: 60px;
}
.top_recruit .link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 293px;
	height: 70px;
	margin: 0 auto;
	border-radius: 9999px;
	background: var(--mailBtnBg);
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	color: #fff;
	margin-top: auto;
	position: relative;
	margin-top: 45px;
}
.top_recruit .link:after{
	content: "";
	display: block;
	width: 22px;
	height: 22px;
	-webkit-mask-image: url(images/icon_arrow.svg);
	background-color: #FFF;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	right: 18px;
}
.top_other{
	padding: 100px 0 90px;
}
.top_other .blk{
	display: flex;
	gap: 0 clamp(1.875rem, -2.159rem + 6.3vw, 3.75rem);
}
.top_other .itemBlk{
	flex: 1;
}
.top_other .itemImg{
	border-radius: 5px;
	overflow: hidden;
}
.top_other .itemTxtBlk{
	margin-top: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0 10px;
}
.top_other .itemTxtBlk .ttl{
	font-weight: 600;
	font-size: 30px;
	line-height: 44px;
	color: #323234;
}
.top_other .itemTxtBlk .txt{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #323234;
	margin-top: 6px;
}
.top_other .itemTxtBlk .arrow{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 59px;
	height: 59px;
	border-radius: 50%;
	background: #f16252;
}
.top_other .itemTxtBlk .arrow:before{
	content: "";
	display: block;
	width: 23px;
	height: 23px;
	-webkit-mask-image: url(images/icon_arrow.svg);
	-webkit-mask-size: contain;
	background-color: #FFF;
}
@media screen and (max-width: 1500px) {
	.top_mv .blk:before{
		content: "";
		display: block;
		width: 375px;
		height: 133px;
		background: url('images/top_mvDeco01.webp') no-repeat;
		background-size: contain;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 1;
	}
	.top_mv .blk:after{
		content: "";
		display: block;
		width: 375px;
		height: 284px;
		background: url('images/top_mvDeco02.webp') no-repeat;
		background-size: contain;
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: 1;
	}
}
@media screen and (max-width: 1024px) {
	.top_cmnHead{
		font-weight: 600;
		font-size: 26px;
		line-height: 40px;
		color: #323234;
		position: relative;
		padding-top: 20px;
	}
	.top_cmnHead span{
		font-weight: 300;
		font-size: 50px;
		line-height:90px;
		color: #ffd8d8;
		position: absolute;
		top: -30px;
		left: 0;
		z-index: -1;
		white-space: nowrap;
	}
	.top_cmnTxt{
		width: 100%;
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		color: #323234;
		margin-top: 30px;
	}
	.top_mv {
		height: calc(100vh - var(--headerH));
		background-image: url(./images/top_mv_bg01.webp);
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
	}
	.top_mv .inner {
		height: 100%;
	}
	.top_mv .blk {
		position: relative;
		height: 100%;
	}
	.top_mv .catchBlk {
		display: grid;
		place-items: center;
		height: 100%;
	}
	.top_mv	 .catchBlk .desc {
		font-weight: 700;
		font-size: 30px;
		font-size: clamp(1.625rem, 1.406rem + 1vw, 1.875rem);
		text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.09);
		color: #fff;
	}
	.top_mv._slider {
		background: initial;
		position: relative;
	}
	.top_mv._slider .catchBlk {
		height: 100%;
		position: relative;
		z-index: 1;
		place-items: initial;
		justify-content: flex-start;
		align-items: center;
		padding: 0% 0 0 6%;
		pointer-events: none;
	}
	.top_mv._slider .slideBlk {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: calc(100vh - var(--headerH));
	}
	.top_mv .bannerBlk{
		position: absolute;
		bottom: 20px;
		right: 20px;
		width: fit-content;
		height: auto;
		border-radius: 5px;
		background: #fff;
		box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16);
		display: flex;
		gap: 0 10px;
		padding: 10px 10px 10px;
	}
	.top_mv .bannerBlk .img{
		width: 80px;
		height: 80px;
		border-radius: 4px;
		overflow: hidden;
	}
	.top_mv .bannerBlk .txtBlk{
		flex: 1;
		display: flex;
		flex-flow: column;
		justify-content: center;
	}
	.top_mv .bannerBlk .txtBlk .ttl{
		font-weight: 600;
		font-size: 15px;
		line-height: 20px;
		color: #f16252;
	}
	.top_mv .bannerBlk .txtBlk .txt{
		font-weight: 600;
		font-size: 13px;
		line-height: 20px;
		color: #323234;
		margin-top: 8px;
		display: flex;
		align-items: center;
		gap: 0 5px;
	}
	.top_mv .bannerBlk .txtBlk .txt:after{
		content: "";
		display: block;
		width: 17px;
		height: 17px;
		-webkit-mask-image: url('images/icon_arrow.svg');
		-webkit-mask-size: contain;
		background: #323234;
		margin-top: 1px;
	}
	.top_news{
		padding: 50px 0 60px;
	}
	.top_news .blk{
		display: flex;
		flex-flow: column;
		gap: 20px 0;
	}
	.top_news .headBlk{
		display: flex;
		justify-content: space-between;
		flex-flow: row;
	}
	.top_news .headBlk .link{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 150px;
		height: 40px;
		border-radius: 9999px;
		background: var(--mailBtnBg);
		font-weight: 700;
		font-size: 14px;
		line-height: 18px;
		color: #fff;
		margin-top: auto;
		margin-bottom: auto;
		position: relative;
	}
	.top_news .headBlk .link:after{
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		-webkit-mask-image: url(images/icon_arrow.svg);
		-webkit-mask-size: contain;
		background-color: #FFF;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto 0;
		right: 10px;
	}
	.top_news .mainBlk{
		flex: 1;
		border-top: 1px solid #c4c4c4;
	}
	.top_news .mainBlk a{
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		border-bottom: 1px solid #c4c4c4;
		min-height: 60px;
		position: relative;
		gap: 10px 0;
		padding: 20px 40px 20px 0;
	}
	.top_news .mainBlk a:after{
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		background: url('images/icon_arrow.svg') no-repeat;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto 0;
		right: 10px;
	}
	.top_news .mainBlk .date{
		font-weight: 700;
		font-size: 15px;
		line-height: 21px;
		color: #707070;
	}
	.top_news .mainBlk .category{
		width: fit-content;
		height: 25px;
		border-radius: 9999px;
		border: 1px solid #f16252;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 500;
		font-size: 14px;
		line-height: 20px;
		color: #f16252;
		padding: 0 12px;
		margin: 0 12px;
	}
	.top_news .mainBlk .title{
		width: 100%;
		font-weight: 500;
		font-size: 16px;
		line-height: 24px;
		color: #323234;
		flex: auto;
	}
	.top_service{
		background: url('images/top_serviceBg.webp') no-repeat;
		background-size: cover;
		padding: 50px 0 80px;
	}
	.top_service .blk{
		display: flex;
		flex-flow: column;
		gap: 30px 0;
	}
	.top_service .headBlk .top_cmnHead{
		padding-top: 40px;
	}
	.top_service .headBlk .top_cmnHead span{
		font-size: 80px;
		line-height: 110px;
	}
	.top_service .headBlk .link{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 220px;
		height: 50px;
		border-radius: 9999px;
		background: var(--mailBtnBg);
		font-weight: 700;
		font-size: 15px;
		line-height: 20px;
		color: #fff;
		margin-top: auto;
		position: relative;
		margin: 30px auto 0;
	}
	.top_service .headBlk .link:after{
		content: "";
		display: block;
		width: 22px;
		height: 22px;
		-webkit-mask-image: url(images/icon_arrow.svg);
		background-color: #FFF;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto 0;
		right: 10px;
	}
	.top_service .imgBlk{
		flex: 1;
		margin-right: calc(var(--ohw) * -1);
		display: grid;
		grid-template-rows: auto auto;
		grid-template-columns: 46% 51%;
		gap: 15px 3%;
		height: fit-content;
	}
	.top_service .imgBlk .img01{
		grid-row: 1 / 3;
		grid-column: 1 / 2;
		margin-top: 19%;
	}
	.top_service .imgBlk .img02{
		grid-row: 1 / 2;
		grid-column: 2 / 3;
	}
	.top_service .imgBlk .img03{
		grid-row: 2 / 3;
		grid-column: 2 / 3;
		margin-right: 6%;
	}
	.top_pharmacy{
		padding: 50px 0 60px;
	}
	.top_pharmacy .headBlk .top_cmnHead{
		padding-top: 20px;
		text-align: center;
	}
	.top_pharmacy .headBlk .top_cmnHead span{
		font-size: 60px;
		line-height: 80px;
		right: 0;
	}
	.top_pharmacy .pharmacyBlk{
		margin-top: 40px;
		display: flex;
		flex-flow: column;
		justify-content: space-between;
		gap: 15px 0;
	}
	.top_pharmacy .pharmacyBlk .itemBlk{
		width: 100%;
		position: relative;
	}
	.top_pharmacy .pharmacyBlk .itemBlk .img{
		width: 100%;
		border-radius: 5px;
		overflow: hidden;
		aspect-ratio: 16 / 9;
	}
	.top_pharmacy .pharmacyBlk .itemBlk .txtBlk{
		width: 100%;
		padding: 20px 20px;
		position: absolute;
		bottom: 0;
		left: 0;
		font-weight: 700;
		font-size: 24px;
		line-height: 36px;
		color: #fff;
		display: flex;
		justify-content: space-between;
	}
	.top_pharmacy .pharmacyBlk .itemBlk .arrow{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 36px;
		height: 36px;
		border-radius: 50%;
		border: 1px solid #fff;
	}
	.top_pharmacy .pharmacyBlk .itemBlk .arrow:before{
		content: "";
		display: block;
		width: 23px;
		height: 22px;
		-webkit-mask-image: url(images/icon_arrow.svg);
		-webkit-mask-size: contain;
		background-color: #FFF;
	}
	.top_recruit{
		position: relative;
		padding: 60px 0 60px;
		overflow: hidden;
	}
	.top_recruit:before{
		content: "";
		display: block;
		width: 92vw;
		height: 100%;
		background: #fff5f2;
		position: absolute;
		top: 0;
		right: 0;
	}
	.top_recruit .imgBlk{
		width: 100vw;
		margin: 0 calc(50% - 50vw);
	}
	.top_recruit .imgBlk .img{
		margin: 0 10px;
		border-radius: 5px;
		overflow: hidden;
	}
	.top_recruit .txtBlk{
		display: flex;
		flex-flow: column;
		justify-content: space-between;
		padding-top: 45px;
	}
	.top_recruit .txtBlk .txt{
		width: 100%;
		font-weight: 500;
		font-size: 15px;
		line-height: 26px;
		margin-top: 20px;
	}
	.top_recruit .top_cmnHead span{
		font-size: 70px;
		line-height: 100px;
	}
	.top_recruit .top_cmnHead{
		padding-top: 40px;
	}
	.top_recruit .link {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 220px;
		height: 50px;
		margin: 0 auto;
		border-radius: 9999px;
		background: var(--mailBtnBg);
		font-weight: 700;
		font-size: 15px;
		line-height: 20px;
		color: #fff;
		margin-top: auto;
		position: relative;
		margin-top: 30px;
	}
	.top_recruit .link:after{
		content: "";
		display: block;
		width: 22px;
		height: 22px;
		-webkit-mask-image: url(images/icon_arrow.svg);
		background-color: #FFF;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto 0;
		right: 10px;
	}
	.top_other{
		padding: 70px 0 70px;
	}
	.top_other .blk{
		display: flex;
		flex-flow: column;
		gap: 40px 0;
	}
	.top_other .itemBlk{
		flex: 1;
	}
	.top_other .itemImg{
		border-radius: 5px;
		overflow: hidden;
	}
	.top_other .itemTxtBlk{
		margin-top: 15px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 0 10px;
	}
	.top_other .itemTxtBlk .ttl{
		font-weight: 600;
		font-size: 20px;
		line-height: 34px;
		color: #323234;
	}
	.top_other .itemTxtBlk .txt{
		font-weight: 500;
		font-size: 15px;
		line-height: 20px;
		color: #323234;
		margin-top: 6px;
	}
	.top_other .itemTxtBlk .arrow{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 40px;
		height: 40px;
		border-radius: 50%;
		background: #f16252;
		flex-shrink: 0;
	}
	.top_other .itemTxtBlk .arrow:before{
		content: "";
		display: block;
		width: 18px;
		height: 18px;
		-webkit-mask-image: url(images/icon_arrow.svg);
		-webkit-mask-size: contain;
		-webkit-mask-position: center;
		background-color: #FFF;
	}
}
@media screen and (max-width: 500px){
	.top_mv .blk:before{
		display: none;
	}
	.top_mv .blk:after{
		display: none;
	}
	.top_mv .slick-slide{
		object-position: top;
	}
} 

/*
Company
====================================*/
.company_philosophy{
	padding: 90px 0 100px;
}
.company_philosophy .txt{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
	margin-top: 25px;
}
.company_philosophy .cardBlk{
	display: flex;
	gap: 0 clamp(1.25rem, -0.363rem + 2.52vw, 2rem);
	margin-top: 40px;
}
.company_philosophy .cardItem{
	width: calc((100% - clamp(2.5rem, -0.727rem + 5.04vw, 4rem)) / 3);
	border-radius: 5px;
	background: #fff9f6;
	padding: 30px 10px;
	display: flex;
	flex-flow: column;
	gap: 16px 0;
	align-items: center;
}
.company_philosophy .cardItem .cardIcon{
	width: 110px;
	height: 110px;
}
.company_philosophy .cardItem .cardtxt{
	font-weight: 600;
	font-size: 18px;
	line-height: 29px;
	text-align: center;
	color: #323234;
}
.company_philosophy .sloganBlk{
	display: flex;
	gap: 0 clamp(4.375rem, -3.02rem + 11.55vw, 7.813rem);
	margin-top: 60px;
}
.company_philosophy .sloganBlk .sloganTtl{
	font-weight: 600;
	font-size: 30px;
	line-height: 45px;
	color: #323234;
	display: flex;
	align-items: center;
	gap: 0 10px;
	height: fit-content;
}
.company_philosophy .sloganBlk .sloganTtl:before{
	content: "";
	display: block;
	width: 25px;
	height: 25px;
	background: url('images/icon_cross.svg') no-repeat;
}
.company_philosophy .sloganBlk .sloganUl{
	border-top: 1px solid #c4c4c4;
	flex: 1;
}
.company_philosophy .sloganBlk .sloganLi{
	border-bottom: 1px solid #c4c4c4;
	display: flex;
	gap: 0 30px;
	padding: 30px 0;
}
.company_philosophy .sloganBlk .sloganLi .liTtl{
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #f16252;
	white-space: nowrap;
}
.company_philosophy .sloganBlk .sloganLi .liTxt{
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
	color: #323234;
}
.company_greeting{
	background: #fff9f6;
	padding: 90px 0 100px;
}
.company_greeting .greetingBlk{
	display: flex;
	gap: 0 clamp(2.5rem, -0.189rem + 4.2vw, 3.75rem);
	margin-top: 50px;
}
.company_greeting .greetingBlk:last-of-type{
	margin-top: 100px;
}
.company_greeting .greetingTxtBlk{
	flex: 1;
}
.company_greeting .greetingTxtBlk .ttl{
	font-weight: 600;
	font-size: 17px;
	line-height: 25px;
	color: #f16252;
}
.company_greeting .greetingTxtBlk .head{
	font-weight: 600;
	font-size: 25px;
	line-height: 40px;
	margin-top: 15px;
}
.company_greeting .greetingTxtBlk .txt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	margin-top: 30px;
}
.company_greeting .greetingTxtBlk .Note{
	font-weight: 600;
	font-size: 15px;
	line-height: 21px;
	margin-top: 30px;
}
.company_greeting .greetingTxtBlk .Note span{
	display: block;
	font-size: 24px;
	line-height: 35px;
}
.company_greeting .greetingImg.img01{
	width: 39vw;
	max-width: 590px;
	height: 100%;
	margin-right: calc(var(--ohw) * -1);
}
.company_greeting .greetingImg.img02{
	width: 46%;
	height: 100%;
}
.company_greeting .greetingImg img{
	width: 100%;
	height: 100%;	
}
.company_profile{
	padding: 90px 0 100px;
}
.company_profile .profileDl{
	border-top: 1px solid #c4c4c4;
	display: flex;
	flex-wrap: wrap;
	margin-top: 50px;
}
.company_profile .profileDt{
	width: 200px;
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	background: #f5f5f5;
	padding: 25px;
	border-bottom: 1px solid #c4c4c4;
}
.company_profile .profileDd{
	width: calc(100% - 200px);
	padding: 25px;
	border-bottom: 1px solid #c4c4c4;
}
.company_profile .profileDd .map{
	display: block;
	margin-top: 15px;
}
.company_profile .profileDd .map iframe{
	aspect-ratio: 16 / 4;
}
.company_profile .profileDd .url{
	display: flex;
	flex-flow: column;
	gap: 5px 0;
	margin-top: 10px;
}
.company_profile .profileDd .url a{
	width: fit-content;
	display: block;
	text-decoration: underline;
	color: #1a92ee;
}
.company_profile .profileDd .url:first-of-type{
	margin-bottom: 16px;
}
.company_profile .profileDd .snsLink{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 250px;
	height: 50px;
	border-radius: 25px;
	background: #fff;
	border: 1px solid #f16252;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #f16252;
	margin-right: 10px;
}
.company_profile .profileDd .snsLink.insta:before{
	content: "";
	display: block;
	width: 22px;
	height: 22px;
	background: url('images/icon_insta.svg') no-repeat;
	margin-right: 6px;
}
.company_profile .profileDd .snsLink.x:before{
	content: "";
	display: block;
	width: 18px;
	height: 18px;
	background: url('images/icon_x.svg') no-repeat;
	margin-right: 6px;
}
.company_efforts{
	background: #fff9f6;
	padding: 90px 0 100px;
}
.company_efforts .effortsTtl{
	font-weight: 600;
	font-size: 30px;
	line-height: 45px;
	display: flex;
	align-items: center;
	gap: 0 10px;
	margin-top: 60px;
}
.company_efforts .effortsTtl:before{
	content: "";
	display: block;
	width: 25px;
	height: 25px;
	background: url(images/icon_cross.svg) no-repeat;	
}
.company_efforts .effortsTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	margin-top: 20px;
}
.company_efforts .effortsBlk{
	background: #FFF;
	padding: 0 40px;
	border-radius: 5px;
	margin-top: 35px;
}
.company_efforts .effortsItem{
	width: 100%;
	display: flex;
	align-items: center;
	gap: 0 40px;
	padding: 40px 0;
	border-bottom: 1px solid #c4c4c4;
}
.company_efforts .effortsItem .itemImg{
	width: 34%;
	height: auto;
	border-radius: 5px;
	overflow: hidden;
}
.company_efforts .effortsItem .itemTxtBlk{
	flex: 1;
}
.company_efforts .effortsItem .itemTtl{
	font-weight: 600;
	font-size: 24px;
	line-height: 35px;
}
.company_efforts .effortsItem .itemTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	margin-top: 20px;
}
.company_efforts .effortsItem .itemLink{
	width: 250px;
	height: 50px;
	border-radius: 25px;
	background: #f16252;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
	position: relative;
}
.company_efforts .effortsItem .itemLink:after{
	content: "";
	display: block;
	width: 22px;
	height: 22px;
	-webkit-mask-image: url('images/icon_arrow.svg');
	background-color: #FFF;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	right: 10px;
}
.company_efforts .effortsSubBlk{
	display: flex;
	padding: 40px 0;
}
.company_efforts .effortsSubItem{
	width: calc(100% / 3);
	padding: 0 clamp(0.938rem, -1.079rem + 3.15vw, 1.875rem);
}
.company_efforts .effortsItem.item2{
	border-bottom: none;
}
.company_efforts .effortsSubItem:not(:last-of-type){
	border-right: 1px solid #c4c4c4;
}
.company_efforts .effortsSubItem .itemTtl{
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	margin-top: 15px;
}
.company_efforts .effortsSubItem .itemTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	margin-top: 10px;
}
.company_efforts .effortsUlTtl{
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	padding-bottom: 15px;
	border-bottom: 1px solid #c4c4c4;
}
.company_efforts .effortsUl{
	display: flex;
	flex-flow: column;
	gap: 15px 0;
	padding: 20px 0 40px;
}
.company_efforts .effortsLi{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	display: flex;
	align-items: flex-start;
	gap: 0 10px;
}
.company_efforts .effortsLi:before{
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background: url('images/icon_check.svg') no-repeat;
	margin-top: 2px;
}
.company_franchise{
	padding: 90px 0 100px;
}
.company_franchise .franchiseBlk{
	display: flex;
	align-items: center;
	gap: 0 50px;
	margin-top: 50px;
}
.company_franchise .franchiseImg{
	width: 52%;
	border-radius: 5px;
	overflow: hidden;
}
.company_franchise .franchiseTxtBlk{
	flex: 1;
}
.company_franchise .franchiseTtl{
	font-weight: 600;
	font-size: 20px;
	line-height: 32px;
}
.company_franchise .franchiseTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	margin-top: 20px;
}
.company_franchise .franchiseLink{
	width: 293px;
	height: 70px;
	border-radius: 9999px;
	background: #f16252;
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
	position: relative;
}
.company_franchise .franchiseLink:after{
	content: "";
	display: block;
	width: 22px;
	height: 22px;
	-webkit-mask-image: url('images/icon_arrow.svg');
	background-color: #FFF;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	right: 18px;
}
.company_policy{
	padding: 20px 0 100px;	
}
.company_policy .policyTtl{
	font-weight: 600;
	font-size: 24px;
	line-height: 35px;
	padding-bottom: 15px;
	border-bottom: 1px solid #c4c4c4;
	display: flex;
	align-items: center;
	gap: 0 10px;
	margin-top: 50px;
}
.company_policy .policyTtl:not(:first-of-type){
	margin-top: 45px;
}
.company_policy .policyTtl:before{
	content: "";
	display: block;
	width: 25px;
	height: 25px;
	background: url('images/icon_cross.svg') no-repeat;
}
.company_policy .policyTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	margin-top: 20px;
}
.company_policy .policyTxt.txtRight{
	text-align: right;
	margin-top: 45px;
}
.company_policy .policyDl{
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
}
.company_policy .policyDt{
	width: 26px;
	font-weight: 600;
	font-size: 16px;
	line-height: 26px;
}
.company_policy .policyDd{
	width: calc(100% - 26px);
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
}
.company_policy .policyDd .li{
	padding-left: 1em;
	text-indent: -1em;
	display: block;
}
@media screen and (max-width: 1024px) {
	.company_philosophy{
		padding: 60px 0 60px;
	}
	.company_philosophy .txt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		text-align: justify;
		margin-top: 20px;
	}
	.company_philosophy .cardBlk{
		display: flex;
		flex-flow: column;
		gap: 20px 0;
		margin-top: 30px;
	}
	.company_philosophy .cardItem{
		width: 90%;
		border-radius: 5px;
		background: #fff9f6;
		margin: 0 auto;
		padding: 25px 15px;
		display: flex;
		flex-flow: column;
		gap: 12px 0;
		align-items: center;
	}
	.company_philosophy .cardItem .cardIcon{
		width: 100px;
		height: 100px;
	}
	.company_philosophy .cardItem .cardtxt{
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
		text-align: center;
		color: #323234;
	}
	.company_philosophy .sloganBlk{
		display: flex;
		flex-flow: column;
		gap: 20px 0;
		margin-top: 30px;
	}
	.company_philosophy .sloganBlk .sloganTtl{
		font-weight: 600;
		font-size: 22px;
		line-height: 30px;
		color: #323234;
		display: flex;
		align-items: center;
		gap: 0 5px;
		height: fit-content;
	}
	.company_philosophy .sloganBlk .sloganTtl:before{
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		background: url('images/icon_cross.svg') no-repeat;
		background-size: contain;
	}
	.company_philosophy .sloganBlk .sloganUl{
		border-top: 1px solid #c4c4c4;
		flex: 1;
	}
	.company_philosophy .sloganBlk .sloganLi{
		border-bottom: 1px solid #c4c4c4;
		display: flex;
		flex-flow: column;
		gap: 10px 0;
		padding: 15px 0;
	}
	.company_philosophy .sloganBlk .sloganLi .liTtl{
		font-weight: 600;
		font-size: 15px;
		line-height: 20px;
		color: #f16252;
		white-space: nowrap;
	}
	.company_philosophy .sloganBlk .sloganLi .liTxt{
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
		color: #323234;
	}
	.company_greeting{
		background: #fff9f6;
		padding: 50px 0 70px;
	}
	.company_greeting .greetingBlk{
		display: flex;
		flex-flow: column;
		gap: 30px 0;
		margin-top: 30px;
	}
	.company_greeting .greetingBlk:last-of-type{
		margin-top: 50px;
	}
	.company_greeting .greetingTxtBlk{
		flex: 1;
		order: 2;
	}
	.company_greeting .greetingTxtBlk .ttl{
		font-weight: 600;
		font-size: 16px;
		line-height: 22px;
		color: #f16252;
	}
	.company_greeting .greetingTxtBlk .head{
		font-weight: 600;
		font-size: 18px;
		line-height: 28px;
		margin-top: 15px;
	}
	.company_greeting .greetingTxtBlk .txt{
		font-weight: 500;
		font-size: 15px;
		line-height: 26px;
		margin-top: 20px;
	}
	.company_greeting .greetingTxtBlk .Note{
		font-weight: 600;
		font-size: 14px;
		line-height: 20px;
		margin-top: 20px;
	}
	.company_greeting .greetingTxtBlk .Note span{
		display: block;
		font-size: 20px;
		line-height: 26px;
	}
	.company_greeting .greetingImg.img01{
		width: 100%;
		max-width: fit-content;
		height: 100%;
		margin-right: 0;
		order: 1;
	}
	.company_greeting .greetingImg.img02{
		width: 100%;
		height: 100%;
		order: 1;
	}
	.company_greeting .greetingImg img{
		width: 100%;
		height: 100%;	
	}
	.company_profile{
		padding: 50px 0 60px;
	}
	.company_profile .profileDl{
		border-top: 1px solid #c4c4c4;
		display: flex;
		flex-wrap: wrap;
		margin-top: 40px;
	}
	.company_profile .profileDt{
		width: 100%;
		font-weight: 600;
		font-size: 15px;
		line-height: 22px;
		background: #f5f5f5;
		padding: 15px 10px;
		border-bottom: 1px solid #c4c4c4;
	}
	.company_profile .profileDd{
		width: calc(100%);
		padding: 15px 10px;
		border-bottom: 1px solid #c4c4c4;
	}
	.company_profile .profileDd .map{
		display: block;
		margin-top: 15px;
	}
	.company_profile .profileDd .map iframe{
		aspect-ratio: 16 / 9;
	}
	.company_profile .profileDd .url{
		display: flex;
		flex-flow: column;
		gap: 5px 0;
		margin-top: 10px;
	}
	.company_profile .profileDd .url a{
		width: fit-content;
		display: block;
		text-decoration: underline;
		color: #1a92ee;
	}
	.company_profile .profileDd .url:first-of-type{
		margin-bottom: 15px;
	}
	.company_profile .profileDd .snsLink{
		display: inline-flex;
		justify-content: center;
		align-items: center;
		width: 150px;
		height: 40px;
		border-radius: 20px;
		background: #fff;
		border: 1px solid #f16252;
		font-weight: 700;
		font-size: 14px;
		line-height: 21px;
		color: #f16252;
		margin-right: 10px;
	}
	.company_profile .profileDd .snsLink.insta:before{
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		background: url('images/icon_insta.svg') no-repeat;
		background-size: contain;
		margin-right: 6px;
	}
	.company_profile .profileDd .snsLink.x:before{
		content: "";
		display: block;
		width: 16px;
		height: 16px;
		background: url('images/icon_x.svg') no-repeat;
		background-size: contain;
		margin-right: 6px;
	}
	.company_efforts{
		background: #fff9f6;
		padding: 50px 0 60px;
	}
	.company_efforts .effortsTtl{
		font-weight: 600;
		font-size: 22px;
		line-height: 30px;
		display: flex;
		align-items: center;
		gap: 0 5px;
		margin-top: 40px;
	}
	.company_efforts .effortsTtl:before{
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		background: url(images/icon_cross.svg) no-repeat;
		background-size: contain;
	}
	.company_efforts .effortsTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		margin-top: 20px;
	}
	.company_efforts .effortsBlk{
		background: #FFF;
		padding: 0 10px;
		border-radius: 5px;
		margin-top: 20px;
	}
	.company_efforts .effortsItem{
		width: 100%;
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 20px 0;
		padding: 25px 0;
		border-bottom: 1px solid #c4c4c4;
	}
	.company_efforts .effortsItem .itemImg{
		width: 100%;
		height: auto;
		border-radius: 5px;
	}
	.company_efforts .effortsItem .itemTxtBlk{
		flex: 1;
	}
	.company_efforts .effortsItem .itemTtl{
		font-weight: 600;
		font-size: 20px;
		line-height: 30px;
	}
	.company_efforts .effortsItem .itemTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		margin-top: 15px;
	}
	.company_efforts .effortsItem .itemLink{
		width: 200px;
		height: 50px;
		border-radius: 25px;
		background: #f16252;
		font-weight: 600;
		font-size: 15px;
		line-height: 21px;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 20px auto 0;
		position: relative;
	}
	.company_efforts .effortsItem .itemLink:after{
		content: "";
		display: block;
		width: 18px;
		height: 18px;
		-webkit-mask-image: url('images/icon_arrow.svg');
		-webkit-mask-size: contain;
		background-color: #FFF;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto 0;
		right: 10px;
	}
	.company_efforts .effortsSubBlk{
		display: flex;
		flex-flow: column;
		padding: 20px 0;
		gap: 10px 0;
	}
	.company_efforts .effortsSubItem{
		width: calc(100%);
		padding: 0 15px;
	}
	.company_efforts .effortsItem.item2{
		border-bottom: none;
	}
	.company_efforts .effortsSubItem:not(:last-of-type){
		border-right: none;
	}
	.company_efforts .effortsSubItem .itemTtl{
		font-weight: 600;
		font-size: 18px;
		line-height: 26px;
		margin-top: 10px;
	}
	.company_efforts .effortsSubItem .itemTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		margin-top: 10px;
	}
	.company_efforts .effortsUlTtl{
		font-weight: 600;
		font-size: 16px;
		line-height: 26px;
		padding-bottom: 10px;
		border-bottom: 1px solid #c4c4c4;
	}
	.company_efforts .effortsUl{
		display: flex;
		flex-flow: column;
		gap: 10px 0;
		padding: 15px 0 30px;
	}
	.company_efforts .effortsLi{
		font-weight: 500;
		font-size: 15px;
		line-height: 22px;
		display: flex;
		align-items: flex-start;
		gap: 0 10px;
	}
	.company_efforts .effortsLi:before{
		content: "";
		display: block;
		width: 18px;
		height: 18px;
		background: url('images/icon_check.svg') no-repeat;
		background-size: contain;
		flex-shrink: 0;
		margin-top: 4px;
	}
	.company_franchise{
		padding: 50px 0 60px;
	}
	.company_franchise .franchiseBlk{
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 20px 0;
		margin-top: 30px;
	}
	.company_franchise .franchiseImg{
		width: 100%;
	}
	.company_franchise .franchiseTxtBlk{
		flex: 1;
	}
	.company_franchise .franchiseTtl{
		font-weight: 600;
		font-size: 18px;
		line-height: 28px;
	}
	.company_franchise .franchiseTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		margin-top: 20px;
	}
	.company_franchise .franchiseLink{
		width: 200px;
		height: 50px;
		border-radius: 25px;
		background: #f16252;
		font-weight: 600;
		font-size: 15px;
		line-height: 21px;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 20px auto 0;
		position: relative;
	}
	.company_franchise .franchiseLink:after{
		content: "";
		display: block;
		width: 18px;
		height: 18px;
		-webkit-mask-image: url('images/icon_arrow.svg');
		-webkit-mask-size: contain;
		background-color: #FFF;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto 0;
		right: 10px;
	}
	.company_policy{
		padding: 0px 0 60px;	
	}
	.company_policy .policyTtl{
		font-weight: 600;
		font-size: 22px;
		line-height: 30px;
		padding-bottom: 10px;
		border-bottom: 1px solid #c4c4c4;
		display: flex;
		align-items: center;
		gap: 0 5px;
		margin-top: 25px;
	}
	.company_policy .policyTtl:not(:first-of-type){
		margin-top: 30px;
	}
	.company_policy .policyTtl:before{
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		background: url('images/icon_cross.svg') no-repeat;
		background-size: contain;
	}
	.company_policy .policyTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		margin-top: 15px;
	}
	.company_policy .policyTxt.txtRight{
		margin-top: 25px;
	}
	.company_policy .policyDl{
		margin-top: 20px;
		display: flex;
		flex-wrap: wrap;
	}
	.company_policy .policyDt{
		width: 22px;
		font-weight: 600;
		font-size: 14px;
		line-height: 24px;
	}
	.company_policy .policyDd{
		width: calc(100% - 22px);
		font-weight: 500;
		font-size: 14px;
		line-height: 24px;
	}
}


/*
Pharmacy
====================================*/
.pharmacy_lead{
	padding: 65px 0 80px;
}
.pharmacy_lead .blk{
	display: flex;
	justify-content: space-between;
	gap: 0 30px;
}
.pharmacy_lead .leadTtl{
	font-weight: 600;
	font-size: 30px;
	line-height: 48px;
	color: #f16252;
	flex-shrink: 0;
}
.pharmacy_lead .leadTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
}
.pharmacy_tab{
	padding: 0;
	margin-bottom: -1px;
}
.pharmacy_tab .inner{
	display: flex;
	gap: 0 33px;
}
.pharmacy_tab .tabItem{
	width: calc((100% - 66px) / 3);
	height: 70px;
	border-radius: 5px 5px 0px 0px;
	background: #fff;
	border: 1px solid #a9a9aa;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	cursor: pointer;
}
.pharmacy_tab .tabItem.active{
	background: #fff9f6;
	border-bottom: 1px solid #fff9f6;
}
.pharmacy_erea{
	background: #fff9f6;
	padding: 90px 0 100px;
	border-top: 1px solid #a9a9aa;
	display: none;
}
.pharmacy_erea.active{
	display: block;
}
.pharmacy_erea .headBlk{
	display: flex;
	align-items: center;
	gap: 0 15px;
}
.pharmacy_erea .headBlk .head{
	font-weight: 600;
	font-size: 40px;
	line-height: 58px;
}
.pharmacy_erea .headBlk .subHead{
	font-weight: 500;
	font-size: 19px;
	line-height: 27px;
	color: #f16252;
}
.pharmacy_erea .areaTtl{
	font-weight: 600;
	font-size: 30px;
	line-height: 44px;
	display: flex;
	align-items: center;
	gap: 0 10px;
	margin-top: 50px;
}
.pharmacy_erea .areaTtl:not(:first-of-type){
	margin-top: 80px;
}
.pharmacy_erea .areaTtl:before{
	content: "";
	display: block;
	width: 25px;
	height: 25px;
	background: url('images/icon_cross.svg') no-repeat;
}
.pharmacy_erea .areaBlk{
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.pharmacy_erea .areaItem{
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 0 20px;
	width: calc((100% - 20px) / 2);
	border-radius: 5px;
	background: #fff;
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}
.pharmacy_erea .areaItem .itemImg{
	width: 125px;
	aspect-ratio: 1 / 1;
	border-radius: 5px;
	overflow: hidden;
}
.pharmacy_erea .areaItem .itemImg img{
	width: 100%;
	height: 100%;
}
.pharmacy_erea .itemTxtBlk{
	flex: 1;
}
.pharmacy_erea .itemTtl{
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
}
.pharmacy_erea .itemTxt{
	font-weight: 500;
	font-size: 15px;
	line-height: 21px;
	margin-top: 10px;
}
.pharmacy_erea .areaItem .itemArrow{
	width: 35px;
	height: 35px;
	background: #f16252;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.pharmacy_erea .areaItem .itemArrow:before{
	content: "";
	display: block;
	width: 21px;
	height: 21px;
	-webkit-mask-image: url('images/icon_arrow.svg');
	-webkit-mask-size: contain;
	background-color: #FFF;
}
@media screen and (max-width: 1024px) {
	.pharmacy_lead{
		padding: 40px 0 60px;
	}
	.pharmacy_lead .blk{
		display: flex;
		flex-flow: column;
		justify-content: space-between;
		gap: 20px 0;
	}
	.pharmacy_lead .leadTtl{
		font-weight: 600;
		font-size: 22px;
		line-height: 32px;
		color: #f16252;
		text-align: center;
	}
	.pharmacy_lead .leadTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
	}
	.pharmacy_tab{
		padding: 0;
		margin-bottom: -1px;
	}
	.pharmacy_tab .inner{
		display: flex;
		gap: 0 10px;
	}
	.pharmacy_tab .tabItem{
		width: calc((100% - 20px) / 3);
		height: 50px;
		border-radius: 5px 5px 0px 0px;
		background: #fff;
		border: 1px solid #a9a9aa;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
		cursor: pointer;
	}
	.pharmacy_tab .tabItem.active{
		background: #fff9f6;
		border-bottom: 1px solid #fff9f6;
	}
	.pharmacy_erea{
		background: #fff9f6;
		padding: 40px 0 60px;
		border-top: 1px solid #a9a9aa;
		display: none;
	}
	.pharmacy_erea.active{
		display: block;
	}
	.pharmacy_erea .headBlk{
		display: flex;
		align-items: center;
		gap: 0 15px;
	}
	.pharmacy_erea .headBlk .head{
		font-weight: 600;
		font-size: 30px;
		line-height: 40px;
	}
	.pharmacy_erea .headBlk .subHead{
		font-weight: 500;
		font-size: 16px;
		line-height: 24px;
		color: #f16252;
	}
	.pharmacy_erea .areaTtl{
		font-weight: 600;
		font-size: 22px;
		line-height: 30px;
		display: flex;
		align-items: center;
		gap: 0 10px;
		margin-top: 30px;
	}
	.pharmacy_erea .areaTtl:not(:first-of-type){
		margin-top: 50px;
	}
	.pharmacy_erea .areaTtl:before{
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		background: url('images/icon_cross.svg') no-repeat;
		background-size: contain;
	}
	.pharmacy_erea .areaBlk{
		margin-top: 10px;
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
	}
	.pharmacy_erea .areaItem{
		padding: 15px 10px;
		display: flex;
		align-items: center;
		gap: 0 10px;
		width: 100%;
		border-radius: 5px;
		background: #fff;
		box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
	}
	.pharmacy_erea .areaItem .itemImg{
		width: 100px;
		border-radius: 5px;
		overflow: hidden;
	}
	.pharmacy_erea .areaItem .itemImg img{
		width: 100%;
	}
	.pharmacy_erea .itemTxtBlk{
		flex: 1;
	}
	.pharmacy_erea .itemTtl{
		font-weight: 600;
		font-size: 17px;
		line-height: 24px;
	}
	.pharmacy_erea .itemTxt{
		font-weight: 500;
		font-size: 14px;
		line-height: 21px;
		margin-top: 5px;
	}
	.pharmacy_erea .areaItem .itemArrow{
		width: 30px;
		height: 30px;
		background: #f16252;
		border-radius: 50%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.pharmacy_erea .areaItem .itemArrow:before{
		content: "";
		display: block;
		width: 18px;
		height: 18px;
		-webkit-mask-image: url('images/icon_arrow.svg');
		-webkit-mask-size: contain;
		background-color: #FFF;
	}
}


/*
PharmacyPost
====================================*/
.pharmacyPost_top{
	background: #fff9f6;
	border-radius: 0 0 5px 5px;
}
.pharmacyPost_top .headBlk{
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	height: 300px;
	padding-bottom: 50px;
}
.pharmacyPost_top .subHead{
	font-weight: 600;
	font-size: 19px;
	line-height: 27px;
	color: #f16252;
}
.pharmacyPost_top .head{
	font-weight: 600;
	font-size: 45px;
	line-height: 80px;
}
.pharmacyPost_shop{
	padding: 0px 0 60px;
	margin-top: -90px;
}
.pharmacyPost_shop .blk{
	background: #FFF;
	padding: clamp(2.5rem, -0.189rem + 4.2vw, 3.75rem);
	border-radius: 5px;
}
.pharmacyPost_shop .shopItem{
	display: flex;
	gap: 0 clamp(1.875rem, -0.814rem + 4.2vw, 3.125rem);
}
.pharmacyPost_shop .shopItem .itemImgBlk{
	width: 48%;
}
.pharmacyPost_shop .shopItem .itemImg{
	width: 100%;
	border-radius: 5px;
	overflow: hidden;
}
.pharmacyPost_shop .shopItem .itemImg img{
	aspect-ratio: 6 / 4;
}
.pharmacyPost_shop .shopItem .itemMap{
	width: 100%;
	margin-top: 15px;
}
.pharmacyPost_shop .shopItem .itemMap .map-container{
	height: 100%;
	margin-bottom: 0 !important;
}
.pharmacyPost_shop .shopItem .itemTxtBlk{
	flex: 1;
}
.pharmacyPost_shop .shopItem .itemDl{
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #c4c4c4;
	margin-top: 10px;
}
.pharmacyPost_shop .shopItem .itemDt{
	width: 27%;
	font-weight: 600;
	font-size: 16px;
	line-height: 26px;
	padding: 20px 0;
	border-bottom: 1px solid #c4c4c4;
}
.pharmacyPost_shop .shopItem .itemDt.center{
	display: flex;
	flex-flow: column;
	justify-content: center;
}
.pharmacyPost_shop .shopItem .itemDd{
	width: 73%;
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	padding: 20px 0;
	border-bottom: 1px solid #c4c4c4;
}
.pharmacyPost_shop .shopItem .itemDd .tel{
	font-weight: 600;
	font-size: 25px;
	line-height: 37px;
	display: flex;
	gap: 0 5px;
	align-items: center;
}
.pharmacyPost_shop .shopItem .itemDd .tel:before{
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	background: url('images/icon_tel.svg') no-repeat;
}
.pharmacyPost_shop .supportTtl{
	font-weight: 600;
	font-size: 25px;
	line-height: 40px;
	display: flex;
	align-items: center;
	gap: 0 10px;
	margin-top: 60px;
}
.pharmacyPost_shop .supportTtl:before{
	content: "";
	display: block;
	width: 25px;
	height: 25px;
	background: url('images/icon_cross.svg') no-repeat;
}
.pharmacyPost_shop .supportUl{
	display:flex;
	flex-wrap: wrap;
	gap: 15px 5px;
	margin-top: 30px;
}
.pharmacyPost_shop .supportLi{
	width: calc((100% - 15px) / 4);
	display: flex;
	align-items: center;
	gap: 0 5px;
	color: #b8b8b8;
}
.pharmacyPost_shop .supportLi.active{
	color: #f16252;
}
.pharmacyPost_shop .supportLi.item01:before{
	content: "";
	display: block;
	width: 50px;
	height: 50px;
	background: url('images/icon_parking01.svg') no-repeat;
}
.pharmacyPost_shop .supportLi.item01.active:before{
	background: url('images/icon_parking02.svg') no-repeat;
}
.pharmacyPost_shop .supportLi.item02:before{
	content: "";
	display: block;
	width: 50px;
	height: 50px;
	background: url('images/icon_credit01.svg') no-repeat;
}
.pharmacyPost_shop .supportLi.item02.active:before{
	background: url('images/icon_credit02.svg') no-repeat;
}
.pharmacyPost_shop .supportLi.item03:before{
	content: "";
	display: block;
	width: 50px;
	height: 50px;
	background: url('images/icon_qr01.svg') no-repeat;
}
.pharmacyPost_shop .supportLi.item03.active:before{
	background: url('images/icon_qr02.svg') no-repeat;
}
.pharmacyPost_shop .supportLi.item04:before{
	content: "";
	display: block;
	width: 50px;
	height: 50px;
	background: url('images/icon_barrier01.svg') no-repeat;
}
.pharmacyPost_shop .supportLi.item04.active:before{
	background: url('images/icon_barrier02.svg') no-repeat;
}
.pharmacyPost_shop .supportLi.item05:before{
	content: "";
	display: block;
	width: 50px;
	height: 50px;
	background: url('images/icon_license01.svg') no-repeat;
}
.pharmacyPost_shop .supportLi.item05.active:before{
	background: url('images/icon_license02.svg') no-repeat;
}
.pharmacyPost_shop .supportLi.item06:before{
	content: "";
	display: block;
	width: 50px;
	height: 50px;
	background: url('images/icon_online01.svg') no-repeat;
}
.pharmacyPost_shop .supportLi.item06.active:before{
	background: url('images/icon_online02.svg') no-repeat;
}
.pharmacyPost_shop .supportLi.item07:before{
	content: "";
	display: block;
	width: 50px;
	height: 50px;
	background: url('images/icon_prescription01.svg') no-repeat;
}
.pharmacyPost_shop .supportLi.item07.active:before{
	background: url('images/icon_prescription02.svg') no-repeat;
}
.pharmacyPost_shop .supportLi.item08:before{
	content: "";
	display: block;
	width: 50px;
	height: 50px;
	background: url('images/icon_drive01.svg') no-repeat;
}
.pharmacyPost_shop .supportLi.item08.active:before{
	background: url('images/icon_drive02.svg') no-repeat;
}
.pharmacyPost_shop .supportAst{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #323234;
	margin-top: 25px;
	border-bottom: 1px solid #c4c4c4;
	padding-bottom: 60px;
}
.pharmacyPost_shop .bannerTtl{
	font-weight: 600;
	font-size: 25px;
	line-height: 40px;
	display: flex;
	align-items: center;
	gap: 0 10px;
	margin-top: 60px;
}
.pharmacyPost_shop .bannerTtl:before{
	content: "";
	display: block;
	width: 25px;
	height: 25px;
	background: url('images/icon_cross.svg') no-repeat;
}
.pharmacyPost_shop .bannerBlk{
	display: flex;
	gap: 0 10px;
	margin-top: 30px;
}
.pharmacyPost_shop .matterBlk{
	border-radius: 5px;
	background: #fff9f6;
	padding: 40px clamp(2.5rem, -0.189rem + 4.2vw, 3.75rem) 50px;
	margin-top: 60px;
}
.pharmacyPost_shop .matterTtl{
	font-weight: 600;
	font-size: 25px;
	line-height: 36px;
	color: #f16252;
	text-align: center;
}
.pharmacyPost_shop .matterTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	text-align: center;
	margin-top: 10px;
}
.pharmacyPost_shop .matterUl{
	padding: 40px;
	background: #FFF;
	margin-top: 25px;
}
.pharmacyPost_shop .matterLi{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
}
.pharmacyPost_shop .backLink{
	width: 300px;
	height: 70px;
	border-radius: 9999px;
	background: #f16252;
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 60px auto 0;
	position: relative;
}
.pharmacyPost_shop .backLink:after{
	content: "";
	display: block;
	width: 22px;
	height: 22px;
	-webkit-mask-image: url('images/icon_arrow.svg');
	background-color: #FFF;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	right: 12px;
}
@media screen and (max-width: 1024px) {
	.pharmacyPost_top{
		background: #fff9f6;
		border-radius: 0 0 5px 5px;
	}
	.pharmacyPost_top .headBlk{
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
		height: 200px;
		padding-bottom: 50px;
	}
	.pharmacyPost_top .subHead{
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
		color: #f16252;
	}
	.pharmacyPost_top .head{
		font-weight: 600;
		font-size: 35px;
		line-height: 50px;
	}
	.pharmacyPost_shop{
		padding: 0px 0 50px;
		margin-top: -50px;
	}
	.pharmacyPost_shop .blk{
		background: #FFF;
		padding: 20px 10px;
		border-radius: 5px;
	}
	.pharmacyPost_shop .shopItem{
		display: flex;
		flex-flow: column;
		gap: 0 50px;
	}
	.pharmacyPost_shop .shopItem .itemImgBlk{
		width: 100%;
	}
	.pharmacyPost_shop .shopItem .itemImg{
		width: 100%;
		border-radius: 5px;
		overflow: hidden;
	}
	.pharmacyPost_shop .shopItem .itemMap{
		width: 100%;
		margin-top: 15px;
	}
	.pharmacyPost_shop .shopItem .itemTxtBlk{
		flex: 1;
	}
	.pharmacyPost_shop .shopItem .itemDl{
		display: flex;
		flex-wrap: wrap;
		border-top: 1px solid #c4c4c4;
		margin-top: 10px;
	}
	.pharmacyPost_shop .shopItem .itemDt{
		width: 22%;
		font-weight: 600;
		font-size: 15px;
		line-height: 22px;
		padding: 15px 0;
		border-bottom: 1px solid #c4c4c4;
	}
	.pharmacyPost_shop .shopItem .itemDt.center{
		display: flex;
		flex-flow: column;
		justify-content: center;
	}
	.pharmacyPost_shop .shopItem .itemDd{
		width: 78%;
		font-weight: 500;
		font-size: 15px;
		line-height: 22px;
		padding: 15px 0;
		border-bottom: 1px solid #c4c4c4;
	}
	.pharmacyPost_shop .shopItem .itemDd .tel{
		font-weight: 600;
		font-size: 22px;
		line-height: 30px;
		display: flex;
		gap: 0 5px;
		align-items: center;
	}
	.pharmacyPost_shop .shopItem .itemDd .tel:before{
		content: "";
		display: block;
		width: 26px;
		height: 26px;
		background: url('images/icon_tel.svg') no-repeat;
		background-size: contain;
	}
	.pharmacyPost_shop .supportTtl{
		font-weight: 600;
		font-size: 20px;
		line-height: 30px;
		display: flex;
		align-items: center;
		gap: 0 5px;
		margin-top: 40px;
	}
	.pharmacyPost_shop .supportTtl:before{
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		background: url('images/icon_cross.svg') no-repeat;
		background-size: contain;
	}
	.pharmacyPost_shop .supportUl{
		display:flex;
		flex-wrap: wrap;
		gap: 10px 10px;
		margin-top: 20px;
	}
	.pharmacyPost_shop .supportLi{
		width: calc((100% - 10px) / 2);
		display: flex;
		align-items: center;
		gap: 0 3px;
		color: #b8b8b8;
		font-size: 13px;
		line-height: 20px;
	}
	.pharmacyPost_shop .supportLi.active{
		color: #f16252;
	}
	.pharmacyPost_shop .supportLi.item01:before{
		content: "";
		display: block;
		width: 35px;
		height: 35px;
		background: url('images/icon_parking01.svg') no-repeat;
		background-size: contain;
	}
	.pharmacyPost_shop .supportLi.item01.active:before{
		background: url('images/icon_parking02.svg') no-repeat;
		background-size: contain;
	}
	.pharmacyPost_shop .supportLi.item02:before{
		content: "";
		display: block;
		width: 35px;
		height: 35px;
		background: url('images/icon_credit01.svg') no-repeat;
		background-size: contain;
	}
	.pharmacyPost_shop .supportLi.item02.active:before{
		background: url('images/icon_credit02.svg') no-repeat;
		background-size: contain;
	}
	.pharmacyPost_shop .supportLi.item03:before{
		content: "";
		display: block;
		width: 35px;
		height: 35px;
		background: url('images/icon_qr01.svg') no-repeat;
		background-size: contain;
	}
	.pharmacyPost_shop .supportLi.item03.active:before{
		background: url('images/icon_qr02.svg') no-repeat;
		background-size: contain;
	}
	.pharmacyPost_shop .supportLi.item04:before{
		content: "";
		display: block;
		width: 35px;
		height: 35px;
		background: url('images/icon_barrier01.svg') no-repeat;
		background-size: contain;
	}
	.pharmacyPost_shop .supportLi.item04.active:before{
		background: url('images/icon_barrier02.svg') no-repeat;
		background-size: contain;
	}
	.pharmacyPost_shop .supportLi.item05:before{
		content: "";
		display: block;
		width: 35px;
		height: 35px;
		background: url('images/icon_license01.svg') no-repeat;
		background-size: contain;
	}
	.pharmacyPost_shop .supportLi.item05.active:before{
		background: url('images/icon_license02.svg') no-repeat;
		background-size: contain;
	}
	.pharmacyPost_shop .supportLi.item06:before{
		content: "";
		display: block;
		width: 35px;
		height: 35px;
		background: url('images/icon_online01.svg') no-repeat;
		background-size: contain;
	}
	.pharmacyPost_shop .supportLi.item06.active:before{
		background: url('images/icon_online02.svg') no-repeat;
		background-size: contain;
	}
	.pharmacyPost_shop .supportLi.item07:before{
		content: "";
		display: block;
		width: 35px;
		height: 35px;
		background: url('images/icon_prescription01.svg') no-repeat;
		background-size: contain;
	}
	.pharmacyPost_shop .supportLi.item07.active:before{
		background: url('images/icon_prescription02.svg') no-repeat;
		background-size: contain;
	}
	.pharmacyPost_shop .supportLi.item08:before{
		content: "";
		display: block;
		width: 35px;
		height: 35px;
		background: url('images/icon_drive01.svg') no-repeat;
		background-size: contain;
	}
	.pharmacyPost_shop .supportLi.item08.active:before{
		background: url('images/icon_drive02.svg') no-repeat;
		background-size: contain;
	}
	.pharmacyPost_shop .supportAst{
		font-weight: 500;
		font-size: 14px;
		line-height: 22px;
		color: #323234;
		margin-top: 25px;
		border-bottom: 1px solid #c4c4c4;
		padding-bottom: 30px;
	}
	.pharmacyPost_shop .bannerTtl{
		font-weight: 600;
		font-size: 20px;
		line-height: 30px;
		display: flex;
		align-items: center;
		gap: 0 5px;
		margin-top: 40px;
	}
	.pharmacyPost_shop .bannerTtl:before{
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		background: url('images/icon_cross.svg') no-repeat;
		background-size: contain;
	}
	.pharmacyPost_shop .bannerBlk{
		display: flex;
		flex-flow: column;
		gap: 15px 0;
		margin-top: 20px;
	}
	.pharmacyPost_shop .bannerBlk img{
		width: 100%;
	}
	.pharmacyPost_shop .matterBlk{
		border-radius: 5px;
		background: #fff9f6;
		padding: 20px 10px 30px;
		margin-top: 30px;
	}
	.pharmacyPost_shop .matterTtl{
		font-weight: 600;
		font-size: 21px;
		line-height: 30px;
		color: #f16252;
		text-align: center;
	}
	.pharmacyPost_shop .matterTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		text-align: center;
		margin-top: 10px;
	}
	.pharmacyPost_shop .matterUl{
		padding: 20px 10px;
		background: #FFF;
		margin-top: 25px;
	}
	.pharmacyPost_shop .matterLi{
		font-weight: 500;
		font-size: 16px;
		line-height: 26px;
	}
	.pharmacyPost_shop .backLink{
		width: 250px;
		height: 60px;
		border-radius: 9999px;
		background: #f16252;
		font-weight: 600;
		font-size: 17px;
		line-height: 24px;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 30px auto 0;
		position: relative;
	}
	.pharmacyPost_shop .backLink:after{
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		-webkit-mask-image: url('images/icon_arrow.svg');
		-webkit-mask-size: contain;
		background-color: #FFF;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto 0;
		right: 10px;
	}
}


/*
Service
====================================*/
.service_lead{
	background: url('images/service_leadBg.webp') no-repeat;
	background-size: contain;
	background-position: center;
	padding: 85px 0 115px;
}
.service_lead .leadTtl{
	font-weight: 500;
	font-size: 35px;
	line-height: 50px;
	color: #f16252;
	text-align: center;
}
.service_lead .leadTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 32px;
	margin-top: 25px;
	text-align: center;
}
.service_what{
	padding: 0 0 120px;
}
.service_what .whatItem{
	display: flex;
	gap: 0 clamp(3.125rem, -0.909rem + 6.3vw, 5rem);
	margin-top: 100px;
}
.service_what .whatItem.first{
	margin-top: 60px;
}
.service_what .whatItem .itemTxtBlk{
	flex: 1;
	padding-top: 20px;
}
.service_what .whatItem .itemTtl{
	font-weight: 600;
	font-size: 35px;
	line-height: 48px;
	position: relative;
	padding-left: 40px;
}
.service_what .whatItem .itemTtl .index{
	font-family: Poppins;
	font-weight: 500;
	font-size: 124px;
	line-height: 160px;
	color: #ffd8d8;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: -1;
}
.service_what .whatItem .itemTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	margin-top: 50px;
}
.service_what .whatItem .itemLink{
	width: 300px;
	height: 70px;
	border-radius: 9999px;
	background: #f16252;
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 25px 0 0;
	position: relative;
}
.service_what .whatItem .itemLink:after{
	content: "";
	display: block;
	width: 22px;
	height: 22px;
	-webkit-mask-image: url('images/icon_arrow.svg');
	background-color: #FFF;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	right: 18px;
}
.service_what .whatItem .itemImg{
	width: 47%;
	border-radius: 5px;
	overflow: hidden;
}
.service_what .whatNote{
	padding: 70px clamp(2.5rem, -2.878rem + 8.4vw, 5rem) 90px;
	position: relative;
	margin-top: 60px;
}
.service_what .whatNote:before{
	content: "";
	display: block;
	width: calc(100% + var(--ohw));
	height: 100%;
	background: #fff9f6;
	border-radius: 5px 0 0 5px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.service_what .whatNote .noteHead{
	font-weight: 600;
	font-size: 30px;
	line-height: 45px;
	display: flex;
	align-items: center;
	gap: 0 10px;
}
.service_what .whatNote .noteHead:before{
	content: "";
	display: block;
	width: 25px;
	height: 25px;
	background: url('images/icon_cross.svg') no-repeat;	
}
.service_what .whatNote .noteBlk{
	display: flex;
	align-items: center;
	gap: 0 clamp(1.875rem, 0.53rem + 2.1vw, 2.5rem);
	margin-top: 50px;
}
.service_what .whatNote .noteImg{
	width: 345px;
	border-radius: 5px;
	overflow: hidden;
}
.service_what .whatNote .noteTxtBlk{
	flex: 1;
}
.service_what .whatNote .noteTtl{
	font-weight: 600;
	font-size: 24px;
	line-height: 48px;
	color: #f16252;
}
.service_what .whatNote .noteTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	margin-top: 20px;
}
.service_what .whatNote .noteAst{
	padding: 40px 50px;
	border-radius: 5px;
	background: #fff;
	display: flex;
	align-items: center;
	gap: 0 clamp(1.875rem, 0.53rem + 2.1vw, 2.5rem);
	margin-top: 40px;
}
.service_what .whatNote .noteAst .astImg{
	width: 41%;
	border-radius: 5px;
	overflow: hidden;
}
.service_what .whatNote .noteAst .astTxtBlk{
	flex: 1;
}
.service_what .whatNote .noteAst .astTtl{
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
}
.service_what .whatNote .noteAst .astTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	margin-top: 20px;
}
@media screen and (max-width: 1024px) {
	.service_lead{
		background: url('images/service_leadBg.webp') no-repeat;
		background-size: contain;
		background-position: center;
		padding: 55px 0 60px;
	}
	.service_lead .leadTtl{
		font-weight: 500;
		font-size: 25px;
		line-height: 36px;
		color: #f16252;
		text-align: center;
	}
	.service_lead .leadTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 28px;
		margin-top: 20px;
		text-align: left;
	}
	.service_what{
		padding: 0 0 60px;
	}
	.service_what .whatItem{
		display: flex;
		flex-flow: column;
		gap: 30px 0;
		margin-top: 30px;
	}
	.service_what .whatItem:not(:first-of-type){
		margin-top: 40px;
	}
	.service_what .whatItem .itemTxtBlk{
		flex: 1;
		padding-top: 20px;
		order: 2;
	}
	.service_what .whatItem .itemTtl{
		font-weight: 600;
		font-size: 28px;
		line-height: 36px;
		position: relative;
		padding-left: 30px;
	}
	.service_what .whatItem .itemTtl .index{
		font-family: Poppins;
		font-weight: 500;
		font-size: 100px;
		line-height: 120px;
		color: #ffd8d8;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		z-index: -1;
	}
	.service_what .whatItem .itemTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		margin-top: 40px;
	}
	.service_what .whatItem .itemLink{
		width: 250px;
		height: 60px;
		border-radius: 9999px;
		background: #f16252;
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 25px auto 0;
		position: relative;
	}
	.service_what .whatItem .itemLink:after{
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		-webkit-mask-image: url('images/icon_arrow.svg');
		-webkit-mask-size: contain;
		background-color: #FFF;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto 0;
		right: 10px;
	}
	.service_what .whatItem .itemImg{
		width: 100%;
		border-radius: 5px;
		overflow: hidden;
		order: 1;
	}
	.service_what .whatNote{
		padding: 30px 10px 30px;
		position: relative;
		margin-top: 60px;
	}
	.service_what .whatNote:before{
		content: "";
		display: block;
		width: calc(100% + var(--ohw));
		height: 100%;
		background: #fff9f6;
		border-radius: 5px 0 0 5px;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}
	.service_what .whatNote .noteHead{
		font-weight: 600;
		font-size: 22px;
		line-height: 30px;
		display: flex;
		align-items: center;
		gap: 0 5px;
	}
	.service_what .whatNote .noteHead:before{
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		background: url('images/icon_cross.svg') no-repeat;
		background-size: contain;
	}
	.service_what .whatNote .noteBlk{
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 15px 0;
		margin-top: 30px;
	}
	.service_what .whatNote .noteImg{
		width: 100%;
		border-radius: 5px;
		overflow: hidden;
	}
	.service_what .whatNote .noteTxtBlk{
		flex: 1;
	}
	.service_what .whatNote .noteTtl{
		font-weight: 600;
		font-size: 20px;
		line-height: 30px;
		color: #f16252;
	}
	.service_what .whatNote .noteTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		margin-top: 10px;
	}
	.service_what .whatNote .noteAst{
		padding: 25px 20px;
		border-radius: 5px;
		background: #fff;
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 20px 0;
		margin-top: 40px;
	}
	.service_what .whatNote .noteAst .astImg{
		width: 100%;
		border-radius: 5px;
		overflow: hidden;
	}
	.service_what .whatNote .noteAst .astTxtBlk{
		flex: 1;
	}
	.service_what .whatNote .noteAst .astTtl{
		font-weight: 600;
		font-size: 18px;
		line-height: 26px;
	}
	.service_what .whatNote .noteAst .astTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		margin-top: 15px;
	}
}


/*
Homecare
====================================*/
.homecare_lead{
	padding: 60px 0 90px;
}
.homecare_lead .blk{
	display: flex;
	align-items: center;
	gap: 0 clamp(1.875rem, -4.848rem + 10.5vw, 5rem);
}
.homecare_lead .leadTxtBlk{
	flex: 1;
}
.homecare_lead .leadTtl{
	font-weight: 600;
	font-size: 40px;
	line-height: 64px;
}
.homecare_lead .leadTtl span{
	color: #F16252;
}
.homecare_lead .leadTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 28px;
	margin-top: 40px;
}
.homecare_lead .leadImg{
	width: 58%;
	margin-right: calc(var(--ohw) * -1);
	border-radius: 5px 0 0 5px;
	overflow: hidden;
}
.homecare_about{
	background: #fff9f6;
	padding: 90px 0 100px;
}
.homecare_about .subjectTxt{
	font-weight: 600;
	font-size: 24px;
	line-height: 35px;
	text-align: center;
	margin-top: 50px;
}
.homecare_about .subjectBlk{
	display: flex;
	justify-content: center;
	gap: 0 20px;
	margin-top: 25px;
}
.homecare_about .subjectItem{
	width: 300px;
	height: 67px;
	border-radius: 5px;
	background: #f16252;
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	gap: 0 10px;
}
.homecare_about .subjectItem:before{
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background: url('images/icon_check02.svg') no-repeat;
}
.homecare_about .aboutItem{
	padding: clamp(1.875rem, -0.142rem + 3.15vw, 2.813rem);
	background: #FFF;
	display: flex;
	align-items: center;
	gap: 0 clamp(1.875rem, 0.53rem + 2.1vw, 2.5rem);
	margin-top: 25px;
}
.homecare_about .aboutItem.first{
	margin-top: 50px;
}
.homecare_about .aboutItem .itemImg{
	width: 38%;
}
.homecare_about .aboutItem .itemTxtBlk{
	flex: 1;
}
.homecare_about .aboutItem .itemTtl{
	font-weight: 600;
	font-size: 25px;
	line-height: 36px;
	color: #f16252;
}
.homecare_about .aboutItem .itemTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	margin-top: 10px;
}
.homecare_fee{
	padding: 115px 0 100px;
}
.homecare_fee .feeTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	text-align: center;
	margin-top: 25px;
}
.homecare_fee .feeBlk{
	display: flex;
	gap: 0 clamp(1.875rem, -2.159rem + 6.3vw, 3.75rem);
	margin-top: 50px;
}
.homecare_fee .feeItem{
	flex: 1;
	margin-bottom: 30px;
}
.homecare_fee .feeItem .itemTtl{
	height: 70px;
	background: #f16252;
	font-weight: 600;
	font-size: 22px;
	line-height: 32px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.homecare_fee .feeItem .itemDl{
	display: flex;
	flex-wrap: wrap;
}
.homecare_fee .feeItem .itemDt{
	width: 60%;
	background: #f5f5f5;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	padding: 20px 25px;
	border-bottom: 1px solid #c4c4c4;
}
.homecare_fee .feeItem .itemDd{
	width: 40%;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	padding: 20px 25px;
	text-align: center;
	border-bottom: 1px solid #c4c4c4;
}
.homecare_fee .feeAst {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
}
.homecare_flow{
	padding: 0 0 100px;
}
.homecare_flow .flowTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	margin-top: 25px;
	text-align: center;
	margin-bottom: 60px;
}
.homecare_flow .flowItem{
	display: flex;
	align-items: center;
	padding: 40px;
	border-radius: 5px;
	background: #fff9f6;
	margin-bottom: 45px;
	position: relative;
}
.homecare_flow .flowItem:last-of-type{
	background: #fff;
	border: 1px dotted #f16252;
}
.homecare_flow .flowItem:after{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 22px solid transparent;
	border-left: 22px solid transparent;
	border-top: 15px solid #f16252;
	border-bottom: 0;
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
}
.homecare_flow .flowItem:last-of-type:after{
	display: none;
}
.homecare_flow .flowItem .itemTtl{
	width: clamp(18.75rem, 10.683rem + 12.61vw, 22.5rem);
	font-weight: 600;
	font-size: 22px;
	line-height: 32px;
	color: #f16252;
	display: flex;
	align-items: center;
	gap: 0 12px;
}
.homecare_flow .flowItem .itemTtl span{
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid #f16252;
	display: flex;
	justify-content: center;
	align-items: center;
}
.homecare_flow .flowItem .itemTxt{
	flex: 1;
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
}
.homecare_flow .flowLinkTxt{
	font-weight: 600;
	font-size: 20px;
	line-height: 26px;
	margin-top: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 5px;
}
.homecare_flow .flowLinkTxt:before{
	content: "";
	display: block;
	width: 25px;
	height: 25px;
	background: url('images/icon_search.svg') no-repeat;
}
.homecare_flow .flowLink{
	width: 300px;
	height: 70px;
	border-radius: 9999px;
	background: #f16252;
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px auto 0;
	position: relative;
}
.homecare_flow .flowLink:after{
	content: "";
	display: block;
	width: 22px;
	height: 22px;
	-webkit-mask-image: url('images/icon_arrow.svg');
	background-color: #FFF;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	right: 10px;
}
@media screen and (max-width: 1024px) {
	.homecare_lead{
		padding: 30px 0 60px;
	}
	.homecare_lead .blk{
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 25px 0;
	}
	.homecare_lead .leadTxtBlk{
		flex: 1;
	}
	.homecare_lead .leadTtl{
		font-weight: 600;
		font-size: 25px;
		line-height: 35px;
	}
	.homecare_lead .leadTtl span{
		color: #F16252;
	}
	.homecare_lead .leadTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 26px;
		margin-top: 20px;
	}
	.homecare_lead .leadImg{
		width: 100%;
		margin-right: 0;
	}
	.homecare_about{
		background: #fff9f6;
		padding: 60px 0 60px;
	}
	.homecare_about .subjectTxt{
		font-weight: 600;
		font-size: 18px;
		line-height: 28px;
		text-align: center;
		margin-top: 30px;
	}
	.homecare_about .subjectBlk{
		display: flex;
		flex-flow: column;
		justify-content: center;
		gap: 10px 0;
		margin-top: 25px;
	}
	.homecare_about .subjectItem{
		width: 100%;
		height: 55px;
		border-radius: 5px;
		background: #f16252;
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
		display: flex;
		justify-content: center;
		align-items: center;
		color: #fff;
		gap: 0 10px;
	}
	.homecare_about .subjectItem:before{
		content: "";
		display: block;
		width: 18px;
		height: 18px;
		background: url('images/icon_check02.svg') no-repeat;
		background-size: contain;
	}
	.homecare_about .aboutItem{
		padding: 20px 10px 25px;
		background: #FFF;
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 20px 0;
		margin-top: 20px;
	}
	.homecare_about .aboutItem.first{
		margin-top: 40px;
	}
	.homecare_about .aboutItem .itemImg{
		width: 100%;
	}
	.homecare_about .aboutItem .itemTxtBlk{
		flex: 1;
	}
	.homecare_about .aboutItem .itemTtl{
		font-weight: 600;
		font-size: 20px;
		line-height: 30px;
		color: #f16252;
	}
	.homecare_about .aboutItem .itemTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		margin-top: 10px;
	}
	.homecare_fee{
		padding: 50px 0 60px;
	}
	.homecare_fee .feeTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		text-align: center;
		margin-top: 20px;
	}
	.homecare_fee .feeBlk{
		display: flex;
		flex-flow: column;
		gap: 0 60px;
		margin-top: 20px;
	}
	.homecare_fee .feeItem{
		flex: 1;
		margin-top: 30px;
		margin-bottom: 0px;
	}
	.homecare_fee .feeItem .itemTtl{
		height: 50px;
		background: #f16252;
		font-weight: 600;
		font-size: 18px;
		line-height: 26px;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.homecare_fee .feeItem .itemDl{
		display: flex;
		flex-wrap: wrap;
	}
	.homecare_fee .feeItem .itemDt{
		width: 70%;
		background: #f5f5f5;
		font-weight: 500;
		font-size: 15px;
		line-height: 22px;
		padding: 15px 15px;
		border-bottom: 1px solid #c4c4c4;
	}
	.homecare_fee .feeItem .itemDd{
		width: 30%;
		font-weight: 500;
		font-size: 15px;
		line-height: 22px;
		padding: 15px 15px;
		text-align: center;
		border-bottom: 1px solid #c4c4c4;
	}
	.homecare_fee .feeAst {
		font-weight: 500;
		font-size: 14px;
		line-height: 20px;
		margin-top: 12px;
	}
	.homecare_flow{
		padding: 0 0 70px;
	}
	.homecare_flow .flowTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 22px;
		margin-top: 20px;
		text-align: center;
		margin-bottom: 40px;
	}
	.homecare_flow .flowItem{
		display: flex;
		flex-flow: column;
		align-items: center;
		padding: 20px;
		border-radius: 5px;
		background: #fff9f6;
		margin-bottom: 40px;
		position: relative;
	}
	.homecare_flow .flowItem:last-of-type{
		background: #fff;
		border: 1px dotted #f16252;
	}
	.homecare_flow .flowItem:after{
		content: "";
		display: block;
		width: 0;
		height: 0;
		border-style: solid;
		border-right: 20px solid transparent;
		border-left: 20px solid transparent;
		border-top: 15px solid #f16252;
		border-bottom: 0;
		position: absolute;
		bottom: -30px;
		left: 50%;
		transform: translateX(-50%);
	}
	.homecare_flow .flowItem:last-of-type:after{
		display: none;
	}
	.homecare_flow .flowItem .itemTtl{
		width: 100%;
		font-weight: 600;
		font-size: 20px;
		line-height: 32px;
		color: #f16252;
		display: flex;
		align-items: center;
		gap: 0 12px;
	}
	.homecare_flow .flowItem .itemTtl span{
		width: 32px;
		height: 32px;
		border-radius: 50%;
		border: 1px solid #f16252;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.homecare_flow .flowItem .itemTxt{
		flex: 1;
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		margin-top: 10px;
	}
	.homecare_flow .flowLinkTxt{
		font-weight: 600;
		font-size: 18px;
		line-height: 24px;
		margin-top: 40px;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 0 5px;
	}
	.homecare_flow .flowLinkTxt:before{
		content: "";
		display: block;
		width: 25px;
		height: 25px;
		background: url('images/icon_search.svg') no-repeat;
	}
	.homecare_flow .flowLink{
		width: 250px;
		height: 60px;
		border-radius: 9999px;
		background: #f16252;
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 15px auto 0;
		position: relative;
	}
	.homecare_flow .flowLink:after{
		content: "";
		display: block;
		width: 18px;
		height: 18px;
		-webkit-mask-image: url('images/icon_arrow.svg');
		-webkit-mask-size: contain;
		background-color: #FFF;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto 0;
		right: 10px;
	}
}


/*
Recruit
====================================*/
.recruit_top{
	background: url('images/recruiv_mv.webp') no-repeat;
	background-size: cover;
	position: relative;
	background-position: center;
	overflow: hidden;
}
.recruit_top .headBlk{
	width: 100%;
	height: calc(100vh - var(--headerH));
	display: flex;
	justify-content: center;
}
.recruit_top .head{
	font-weight: 600;
	font-size: 64px;
	line-height: 92px;
	color: #fff;
	text-shadow: 0px 3px 15px rgba(0, 0, 0, 0.1);
	text-align: center;
	display: flex;
	align-items: center;
}
.recruit_top .catch{
	font-weight: 300;
	font-size: 157px;
	line-height: 140px;
	color: rgba(255,255,255,0.51);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
}
.recruit_entry{
	padding: 60px 0 150px;
}
.recruit_entry .blk{
	border-radius: 5px;
	background: #dcf0f8;
	padding: 35px 0 45px;
}
.recruit_entry .entryTtl{
	font-weight: 600;
	font-size: 30px;
	line-height: 44px;
	color: #239cc9;
	text-align: center;
}
.recruit_entry .entryTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
	margin-top: 15px;
}
.recruit_entry .entryBlk{
	display: flex;
	justify-content: center;
	gap: 0 20px;
	margin-top: 25px;
}
.recruit_entry .entryBanner{
	width: 320px;
	height: 95px;
	border-radius: 5px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.recruit_entry .entryBanner img{
	width: 70%;
}
.recruit_lead{
	/* 	background: url('images/recruit_lead.webp') no-repeat; */
	/* 	background-size: contain; */
	/* 	background-position: center; */
	padding: 0px 0 150px;
	position: relative;
	overflow: hidden;
}
.recruit_lead:before{
	content: "";
	display: block;
	position: absolute;
	width: calc(100% + 200px);
	height: 100%;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background: url('images/recruit_lead.webp') no-repeat;
	background-size: contain;
	background-position: center;
	z-index: -1;
}
.recruit_lead .leadTtl{
	font-weight: 600;
	font-size: 40px;
	line-height: 64px;
	color: #f16252;
}
.recruit_lead .leadTxt{
	font-weight: 500;
	font-size: 18px;
	line-height: 36px;
	margin-top: 45px;
}
.recruit_interview{
	position: relative;
	padding: 180px 0 140px;
}
.recruit_interview:before{
	content: "";
	display: block;
	width: 78vw;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff9f6;
	z-index: -1;
}
.recruit_interview .headBlk{
	position: relative;
}
.recruit_interview .subHead{
	font-weight: 300;
	font-size: 112px;
	line-height: 162px;
	color: #ffd8d8;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	z-index: -1;
}
.recruit_interview .head{
	font-weight: 600;
	font-size: 40px;
	line-height: 60px;
	text-align: center;
}
.recruit_interview .interviewBlk{
	display: flex;
	gap: 0 clamp(2.188rem, -3.191rem + 8.4vw, 4.688rem);
	margin-top: 50px;
}
.recruit_interview .interviewItem{
	width: calc((100% - clamp(4.375rem, -6.381rem + 16.81vw, 9.375rem)) / 3);
}
.recruit_interview .interviewItem .itemImg{
	width: 100%;
	border-radius: 5px;
	overflow: hidden;
}
.recruit_interview .interviewItem .itemTtl{
	font-weight: 600;
	font-size: 20px;
	line-height: 32px;
	margin-top: 15px;
}
.recruit_interview .interviewItem .itemTxtBlk{
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}
.recruit_interview .interviewItem .itemTxt{
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	display: flex;
	flex-flow: column;
}
.recruit_interview .interviewItem .itemTxt span{
	font-weight: 600;
	font-size: 15px;
	line-height: 24px;
	color: #868a8b;
}
.recruit_interview .interviewItem .itemArrow{
	width: 50px;
	height: 50px;
	border-radius: 9999px;
	background: #f16252;
	display: flex;
	justify-content: center;
	align-items: center;
}
.recruit_interview .interviewItem .itemArrow:before{
	content: "";
	display: block;
	width: 23px;
	height: 22px;
	-webkit-mask-image: url('images/icon_arrow.svg');
	-webkit-mask-size: contain;
	background-color: #FFF;
}
.recruit_other{
	padding: 100px 0 90px;
}
.recruit_other .blk{
	display: flex;
	gap: 0 clamp(3.75rem, -1.628rem + 8.4vw, 6.25rem);
}
.recruit_other .itemBlk{
	position: relative;
	height: fit-content;
	flex: 1;
}
.recruit_other .itemImg{
	border-radius: 5px;
	overflow: hidden;
}
.recruit_other .itemImg img{
	width: 100%;
	height: 100%;
}
.recruit_other .itemBlk.item02{
	margin-top: 90px;
}
.recruit_other .itemBlk .itemTxtBlk{
	width: 100%;
	padding: 30px 30px;
	position: absolute;
	bottom: 0;
	left: 0;
	font-weight: 700;
	font-size: 30px;
	line-height: 44px;
	color: #fff;
	display: flex;
	justify-content: space-between;
}
.recruit_other .itemBlk .itemArrow{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid #fff;
}
.recruit_other .itemBlk .itemArrow:before{
	content: "";
	display: block;
	width: 23px;
	height: 22px;
	-webkit-mask-image: url(images/icon_arrow.svg);
	-webkit-mask-size: contain;
	background-color: #FFF;
}
@media screen and (max-width: 1024px) {
	.recruit_top{
		background: url('images/recruiv_mv_tb.webp') no-repeat;
		background-size: cover;
		position: relative;
		background-position: center;
		overflow: hidden;
	}
}
@media screen and (max-width: 1024px) {
	.recruit_top{
		height: calc(100vh - var(--headerH));
		background: url('images/recruiv_mv_tb.webp') no-repeat;
		background-size: cover;
		position: relative;
		background-position: center;
		overflow: hidden;
	}
	.recruit_top .headBlk{
		width: 100%;
		height: calc(100vh - var(--headerH));
		display: flex;
		justify-content: center;
	}
	.recruit_top .head{
		font-weight: 600;
		font-size: 36px;
		line-height: 52px;
		color: #fff;
		text-shadow: 0px 3px 15px rgba(0, 0, 0, 0.1);
		text-align: center;
		display: flex;
		align-items: center;
	}
	.recruit_top .catch{
		font-weight: 300;
		font-size: 68px;
		line-height: 70px;
		color: rgba(255,255,255,0.51);
		position: absolute;
		bottom: 0;
		transform: translateX(-50%);
		white-space: nowrap;
		top: 5%;
		left: 70px;
		transform: rotate(90deg);
		transform-origin: top left;
	}
	.recruit_entry{
		padding: 40px 0 30px;
	}
	.recruit_entry .blk{
		border-radius: 5px;
		background: #dcf0f8;
		padding: 25px 10px 35px;
	}
	.recruit_entry .entryTtl{
		font-weight: 600;
		font-size: 20px;
		line-height: 34px;
		color: #239cc9;
		text-align: center;
	}
	.recruit_entry .entryTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 22px;
		text-align: center;
		margin-top: 10px;
	}
	.recruit_entry .entryBlk{
		display: flex;
		flex-flow: column;
		justify-content: center;
		gap: 10px 0;
		margin-top: 25px;
	}
	.recruit_entry .entryBanner{
		width: 250px;
		height: auto;
		margin: 0 auto;
		border-radius: 5px;
		background: #fff;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 15px;
	}
	.recruit_entry .entryBanner img{
		width: 80%;
	}
	.recruit_lead{
		background: url('images/recruit_lead.webp') no-repeat;
		background-size: contain;
		background-position: top;
		padding: 140px 0 60px;
	}
	.recruit_lead:before{
		display: none;
	}
	.recruit_lead .leadTtl{
		font-weight: 600;
		font-size: 26px;
		line-height: 40px;
		color: #f16252;
	}
	.recruit_lead .leadTxt{
		font-weight: 500;
		font-size: 16px;
		line-height: 28px;
		margin-top: 20px;
	}
	.recruit_interview{
		position: relative;
		padding: 80px 0 60px;
	}
	.recruit_interview:before{
		content: "";
		display: block;
		width: 80vw;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		background: #fff9f6;
		z-index: -1;
	}
	.recruit_interview .headBlk{
		position: relative;
	}
	.recruit_interview .subHead{
		font-weight: 300;
		font-size: 60px;
		line-height: 110px;
		color: #ffd8d8;
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		white-space: nowrap;
		z-index: -1;
	}
	.recruit_interview .head{
		font-weight: 600;
		font-size: 30px;
		line-height: 50px;
		text-align: center;
	}
	.recruit_interview .interviewBlk{
		display: flex;
		flex-flow: column;
		gap: 50px 0;
		margin-top: 30px;
	}
	.recruit_interview .interviewItem{
		width: 100%;
	}
	.recruit_interview .interviewItem .itemImg{
		width: 100%;
	}
	.recruit_interview .interviewItem .itemImg img{
		width: 100%;
	}
	.recruit_interview .interviewItem .itemTtl{
		font-weight: 600;
		font-size: 18px;
		line-height: 28px;
		margin-top: 10px;
	}
	.recruit_interview .interviewItem .itemTxtBlk{
		display: flex;
		justify-content: space-between;
		margin-top: 15px;
	}
	.recruit_interview .interviewItem .itemTxt{
		font-weight: 600;
		font-size: 18px;
		line-height: 28px;
		display: flex;
		flex-flow: column;
	}
	.recruit_interview .interviewItem .itemTxt span{
		font-weight: 600;
		font-size: 14px;
		line-height: 20px;
		color: #868a8b;
	}
	.recruit_interview .interviewItem .itemArrow{
		width: 40px;
		height: 40px;
		border-radius: 9999px;
		background: #f16252;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.recruit_interview .interviewItem .itemArrow:before{
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		-webkit-mask-image: url('images/icon_arrow.svg');
		-webkit-mask-size: contain;
		background-color: #FFF;
	}
	.recruit_other{
		padding: 40px 0 0px;
	}
	.recruit_other .blk{
		display: flex;
		flex-flow: column;
		gap: 0 100px;
	}
	.recruit_other .itemBlk{
		position: relative;
		height: fit-content;
	}
	.recruit_other .itemBlk.item02{
		margin-top: 20px;
	}
	.recruit_other .itemBlk .itemTxtBlk{
		width: 100%;
		padding: 15px 15px;
		position: absolute;
		bottom: 0;
		left: 0;
		font-weight: 700;
		font-size: 22px;
		line-height: 30px;
		color: #fff;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.recruit_other .itemBlk .itemArrow{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 35px;
		height: 35px;
		border-radius: 50%;
		border: 1px solid #fff;
	}
	.recruit_other .itemBlk .itemArrow:before{
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		-webkit-mask-image: url(images/icon_arrow.svg);
		-webkit-mask-size: contain;
		background-color: #FFF;
	}
	.recruit_other .itemImg img{
		width: 100%;
	}
}
@media screen and (max-width: 500px) {
	.recruit_top{
		height: calc(100vh - var(--headerH));
		background: url('images/recruiv_mv_sp.webp') no-repeat;
		background-size: cover;
		position: relative;
		background-position: center;
		overflow: hidden;
	}
	.recruit_top .catch{
		font-size: 54px;
		line-height: 55px;
		left: 55px;
	}
}


/*
Interview
====================================*/
.interview_top{
	height: 580px;
	position: relative;
	background: url('images/interview_mvBg.webp') no-repeat;
	background-size: cover;
	background-position: right;
}
.interview_top .blk{
	display: flex;
	align-items: center;
	gap: 0 clamp(1.875rem, -6.192rem + 12.61vw, 5.625rem);
	margin-top: 35px;
}
.interview_top .headBlk{
	flex: 1;
}
.interview_top .head{
	font-weight: 600;
	font-size: 30px;
	line-height: 48px;
}
.interview_top .note{
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	color: #323234;
	margin-top: 30px;
}
.interview_top .note span{
	display: block;
	font-weight: 600;
	font-size: 15px;
	line-height: 24px;
	color: #868a8b;
}
.interview_top .img{
	width: 60%;
	border-radius: 5px;
	overflow: hidden;
}
.interview_top .catch{
	font-weight: 300;
	font-size: 160px;
	line-height: 140px;
	color: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
}
.interview_ques{
	padding: 10px 0 100px;
}
.interview_ques .quesItem{
	margin-top: 90px;
	display: flex;
	align-items: center;
	gap: 0 clamp(2.5rem, -0.189rem + 4.2vw, 3.75rem);
}
.interview_ques .quesItem .itemTxtBlk{
	flex: 1;
}
.interview_ques .quesItem .itemTtl{
	font-weight: 600;
	font-size: 24px;
	line-height: 38px;
	color: #f16252;
}
.interview_ques .quesItem .itemTtl span{
	margin-right: 10px;
	display: inline-block;
}
.interview_ques .quesItem .itemTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 28px;
	margin-top: 25px;
}
.interview_ques .quesItem .itemImg{
	width: 47%;

}
.interview_word{
	padding: 80px 0 100px;
	background: #FFF9F6;
}
.interview_word .wordTtl{
	font-weight: 600;
	font-size: 25px;
	line-height: 36px;
	color: #f16252;
	text-align: center;
}
.interview_word .wordTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 28px;
	padding: 45px clamp(1.875rem, -0.814rem + 4.2vw, 3.125rem);
	background: #FFF;
	margin-top: 35px;
}
.interview_link{
	padding: 90px 0 100px;
}
.interview_link .linkTtl{
	font-weight: 600;
	font-size: 30px;
	line-height: 40px;
	color: #323234;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 10px;
}
.interview_link .linkTtl:before{
	content: "";
	display: block;
	width: 25px;
	height: 25px;
	background: url('images/icon_cross.svg') no-repeat;
}
.interview_link .linkBlk{
	display: flex;
	justify-content: center;
	gap: 0 clamp(2.188rem, -3.191rem + 8.4vw, 4.688rem);;
	margin-top: 50px;
}
.interview_link .linkItem{
	width: calc((100% - clamp(4.375rem, -6.381rem + 16.81vw, 9.375rem)) / 3);
}
.interview_link .linkItem .itemImg{
	width: 100%;
	border-radius: 5px;
	overflow: hidden;
}
.interview_link .linkItem .itemTtl{
	font-weight: 600;
	font-size: 20px;
	line-height: 32px;
	margin-top: 15px;
}
.interview_link .linkItem .itemTxtBlk{
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}
.interview_link .linkItem .itemTxt{
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	display: flex;
	flex-flow: column;
}
.interview_link .linkItem .itemTxt span{
	font-weight: 600;
	font-size: 15px;
	line-height: 24px;
	color: #868a8b;
}
.interview_link .linkItem .itemArrow{
	width: 50px;
	height: 50px;
	border-radius: 9999px;
	background: #f16252;
	display: flex;
	justify-content: center;
	align-items: center;
}
.interview_link .linkItem .itemArrow:before{
	content: "";
	display: block;
	width: 23px;
	height: 22px;
	-webkit-mask-image: url('images/icon_arrow.svg');
	-webkit-mask-size: contain;
	background-color: #FFF;
}
@media screen and (max-width: 1024px) {
	.interview_top{
		height: auto;
		position: relative;
		background: url('images/interview_mvBg.webp') no-repeat;
		background-size: cover;
		padding-bottom: 30px;
	}
	.interview_top .blk{
		display: flex;
		flex-flow: column;
		align-items: flex-start;
		gap: 15px 0;
		margin-top: 30px;
	}
	.interview_top .headBlk{
		order: 2;
	}
	.interview_top .head{
		font-weight: 600;
		font-size: 22px;
		line-height: 36px;
	}
	.interview_top .note{
		font-weight: 600;
		font-size: 17px;
		line-height: 26px;
		color: #323234;
		margin-top: 15px;
	}
	.interview_top .note span{
		display: block;
		font-weight: 600;
		font-size: 14px;
		line-height: 22px;
		color: #868a8b;
	}
	.interview_top .img{
		width: 100vw;
		margin: 0 calc(50% - 50vw);
		order: 1;
		position: relative;
	}
	.interview_top .catch{
		font-weight: 300;
		font-size: 60px;
		line-height: 60px;
		color: #fff;
		position: absolute;
		bottom: 0;
		left: 0;
	}
	.interview_ques{
		padding: 10px 0 50px;
	}
	.interview_ques .quesItem{
		margin-top: 35px;
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 20px 0;
	}
	.interview_ques .quesItem .itemTxtBlk{
		flex: 1;
	}
	.interview_ques .quesItem .itemTtl{
		font-weight: 600;
		font-size: 20px;
		line-height: 30px;
		color: #f16252;
	}
	.interview_ques .quesItem .itemTtl span{
		margin-right: 10px;
		display: inline-block;
	}
	.interview_ques .quesItem .itemTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 26px;
		margin-top: 20px;
	}
	.interview_ques .quesItem .itemImg{
		width: 100%;
	}
	.interview_word{
		padding: 40px 0 50px;
		background: #FFF9F6;
	}
	.interview_word .wordTtl{
		font-weight: 600;
		font-size: 20px;
		line-height: 30px;
		color: #f16252;
		text-align: center;
	}
	.interview_word .wordTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 26px;
		padding: 25px 20px;
		background: #FFF;
		margin-top: 25px;
	}
	.interview_link{
		padding: 50px 0 60px;
	}
	.interview_link .linkTtl{
		font-weight: 600;
		font-size: 22px;
		line-height: 30px;
		color: #323234;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 0 5px;
	}
	.interview_link .linkTtl:before{
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		background: url('images/icon_cross.svg') no-repeat;
		background-size: contain;
	}
	.interview_link .linkBlk{
		display: flex;
		flex-flow: column;
		justify-content: center;
		gap: 50px 0;
		margin-top: 30px;
	}
	.interview_link .linkItem{
		width: 100%;
	}
	.interview_link .linkItem .itemImg{
		width: 100%;
	}
	.interview_link .linkItem .itemImg img{
		width: 100%;
	}
	.interview_link .linkItem .itemTtl{
		font-weight: 600;
		font-size: 18px;
		line-height: 28px;
		margin-top: 10px;
	}
	.interview_link .linkItem .itemTxtBlk{
		display: flex;
		justify-content: space-between;
		margin-top: 15px;
	}
	.interview_link .linkItem .itemTxt{
		font-weight: 600;
		font-size: 18px;
		line-height: 28px;
		display: flex;
		flex-flow: column;
	}
	.interview_link .linkItem .itemTxt span{
		font-weight: 600;
		font-size: 14px;
		line-height: 20px;
		color: #868a8b;
	}
	.interview_link .linkItem .itemArrow{
		width: 40px;
		height: 40px;
		border-radius: 9999px;
		background: #f16252;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.interview_link .linkItem .itemArrow:before{
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		-webkit-mask-image: url('images/icon_arrow.svg');
		-webkit-mask-size: contain;
		background-color: #FFF;
	}
}


/*
Aboutus
====================================*/
.aboutus_data{
	padding: 80px 0 130px;
	background: linear-gradient(#fff 0%, #fff9f6 20% , #fff9f6 100%);
}
.aboutus_data .dataTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
	margin-top: 25px;
}
.aboutus_data .dataBlk{
	display: flex;
	flex-wrap: wrap;
	gap: clamp(1.25rem, -0.095rem + 2.1vw, 1.875rem) clamp(1.375rem, -0.104rem + 2.31vw, 2.063rem);
	margin-top: 50px;
}
.aboutus_data .dataItem{
	width: calc((100% - clamp(2.75rem, -0.208rem + 4.62vw, 4.125rem)) / 3);
	display: flex;
	flex-flow: column;
	padding: 30px;
	background: #FFF;
	border-radius: 5px;
}
.aboutus_data .dataItem .itemHead{
	font-weight: 600;
	font-size: 22px;
	line-height: 32px;
	padding-bottom: 15px;
	border-bottom: 1px solid #c4c4c4;
	text-align: center;
}
.aboutus_data .dataItem .itemImg{
	width: 100%;
}
.aboutus_data .dataItem .itemTxt{
	font-weight: 600;
	font-size: 24px;
	line-height: 35px;
	text-align: center;
}
.aboutus_data .dataItem .itemTxt span{
	font-family: Poppins;
	font-weight: 500;
	font-size: 70px;
	line-height: 90px;
	margin-right: 7px;
}
.aboutus_data .dataItem .itemTxt.column{
	display: flex;
	flex-flow: column;
	font-weight: 600;
	font-size: 15px;
	line-height: 20px;
}
.aboutus_data .dataItem .itemTxt.column span{
	line-height: 70px;
	margin-right: 0;
}
.aboutus_data .dataItem .itemAst{
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	margin-top: 10px;
}
.aboutus_feature{
	padding: 115px 0 115px;
}
.aboutus_feature .featureTxt{
	margin-top: 30px;
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	text-align: center;
}
.aboutus_feature .featureBlk{
	margin-top: 50px;
}
.aboutus_feature .featureItem{
	display: flex;
	align-items: center;
	gap: 0 clamp(1.875rem, -2.159rem + 6.3vw, 3.75rem);
	padding: clamp(1.875rem, -2.159rem + 6.3vw, 3.75rem);
	border-top: 1px solid #c4c4c4;
}
.aboutus_feature .featureItem:first-of-type{
	border-top: none;
}
.aboutus_feature .featureItem .itemImg{
	width: 38%;
	border-radius: 5px;
	overflow: hidden;
}
.aboutus_feature .featureItem .itemTxtBlk{
	flex: 1;
}
.aboutus_feature .featureItem .itemTtl{
	font-weight: 600;
	font-size: 25px;
	line-height: 36px;
	color: #f16252;
}
.aboutus_feature .featureItem .itemTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	margin-top: 25px;
}
.aboutus_feature .astItem{
	padding: 47px clamp(1.875rem, -0.142rem + 3.15vw, 2.813rem);
	border-radius: 5px;
	background: #fff9f6;
	display: flex;
	align-items: center;
	gap: 0 clamp(1.875rem, 0.53rem + 2.1vw, 2.5rem);
	max-width: 980px;
	margin: 0 auto;
}
.aboutus_feature .astItem .itemImg{
	width: 300px;
	border-radius: 5px;
	overflow: hidden;
}
.aboutus_feature .astItem .itemTxtBlk{
	flex: 1;
}
.aboutus_feature .astItem .itemTtl{
	font-weight: 600;
	font-size: 22px;
	line-height: 35px;
}
.aboutus_feature .astItem .itemTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	margin-top: 20px;
}
@media screen and (max-width: 1024px) {
	.aboutus_data{
		padding: 50px 0 60px;
		background: linear-gradient(#fff 0%, #fff9f6 20% , #fff9f6 100%);
	}
	.aboutus_data .dataTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		text-align: center;
		margin-top: 20px;
	}
	.aboutus_data .dataBlk{
		display: flex;
		flex-flow: column;
		flex-wrap: wrap;
		gap: 20px 0px;
		margin-top: 30px;
	}
	.aboutus_data .dataItem{
		width: 100%;
		display: flex;
		flex-flow: column;
		padding: 25px 20px;
		background: #FFF;
		border-radius: 5px;
	}
	.aboutus_data .dataItem .itemHead{
		font-weight: 600;
		font-size: 18px;
		line-height: 26px;
		padding-bottom: 10px;
		border-bottom: 1px solid #c4c4c4;
		text-align: center;
	}
	.aboutus_data .dataItem .itemImg{
		width: 90%;
		margin: 0 auto;
	}
	.aboutus_data .dataItem .itemImg img{
		width: 100%;
	}
	.aboutus_data .dataItem .itemTxt{
		font-weight: 600;
		font-size: 20px;
		line-height: 30px;
		text-align: center;
	}
	.aboutus_data .dataItem .itemTxt span{
		font-family: Poppins;
		font-weight: 500;
		font-size: 60px;
		line-height: 75px;
		margin-right: 5px;
	}
	.aboutus_data .dataItem .itemTxt.column{
		display: flex;
		flex-flow: column;
		font-weight: 600;
		font-size: 14px;
		line-height: 20px;
	}
	.aboutus_data .dataItem .itemTxt.column span{
		line-height: 65px;
		margin-right: 0;
	}
	.aboutus_data .dataItem .itemAst{
		font-weight: 500;
		font-size: 14px;
		line-height: 20px;
		text-align: center;
		margin-top: 10px;
	}
	.aboutus_feature{
		padding: 50px 0 60px;
	}
	.aboutus_feature .featureTxt{
		margin-top: 30px;
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		text-align: justify;
	}
	.aboutus_feature .featureBlk{
		margin-top: 20px;
	}
	.aboutus_feature .featureItem{
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 20px 0;
		padding: 20px 0;
		border-top: 1px solid #c4c4c4;
	}
	.aboutus_feature .featureItem:first-of-type{
		border-top: none;
	}
	.aboutus_feature .featureItem .itemImg{
		width: 100%;
		border-radius: 5px;
		overflow: hidden;
	}
	.aboutus_feature .featureItem .itemImg img{
		width: 100%;
	}
	.aboutus_feature .featureItem .itemTxtBlk{
		flex: 1;
	}
	.aboutus_feature .featureItem .itemTtl{
		font-weight: 600;
		font-size: 20px;
		line-height: 28px;
		color: #f16252;
	}
	.aboutus_feature .featureItem .itemTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		margin-top: 15px;
	}
	.aboutus_feature .astItem{
		padding: 20px 10px 30px;
		border-radius: 5px;
		background: #fff9f6;
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 20px 0;
		max-width: 980px;
		margin: 0 auto;
	}
	.aboutus_feature .astItem .itemImg{
		width: 100%;
		border-radius: 5px;
		overflow: hidden;
	}
	.aboutus_feature .astItem .itemImg img{
		width: 100%;
	}
	.aboutus_feature .astItem .itemTxtBlk{
		flex: 1;
	}
	.aboutus_feature .astItem .itemTtl{
		font-weight: 600;
		font-size: 20px;
		line-height: 30px;
	}
	.aboutus_feature .astItem .itemTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		margin-top: 15px;
	}
}


/*
Benefit
====================================*/
.benefit_welfare{
	position: relative;
	padding: 85px 0 100px;
}
.benefit_welfare .welfareTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	text-align: center;
	margin-top: 25px;
}
.benefit_welfare .movieBlk{
	padding: 80px 0;
	border-radius: 5px;
	background: #fff9f6;
	position: relative;
	margin-top: 60px;
}
.benefit_welfare .movieBlk:before{
	content: "";
	display: block;
	width: calc(100% + var(--ohw) + var(--ohw));
	height: 100%;
	background: #fff9f6;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
.benefit_welfare .movieTtl{
	font-weight: 600;
	font-size: 30px;
	line-height: 44px;
	text-align: center;
	color: #f16252;
}
.benefit_welfare .movieTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	margin-top: 10px;
	text-align: center;
}
.benefit_welfare .movieIframe{
	margin: 30px auto 0;
	width: 100%;
	max-width: 800px;
}
.benefit_welfare .classBlk{
	margin-top: 90px;
}
.benefit_welfare .classBlk.first{
	margin-top: 100px;
}
.benefit_welfare .classTtl{
	font-weight: 600;
	font-size: 30px;
	line-height: 44px;
	display: flex;
	align-items: center;
	gap: 0 10px;
}
.benefit_welfare .classTtl:before{
	content: "";
	display: block;
	width: 25px;
	height: 25px;
	background: url('images/icon_cross.svg') no-repeat;
}
.benefit_welfare .classFlex{
	display: flex;
	flex-wrap: wrap;
	gap: 0 clamp(1.875rem, -2.159rem + 6.3vw, 3.75rem);
	margin-top: 30px;
}
.benefit_welfare .classItem{
	width: calc((100% - clamp(1.875rem, -2.159rem + 6.3vw, 3.75rem)) / 2);
	padding: 30px 0;
	border-top: 1px solid #c4c4c4;
	border-bottom: 1px solid #c4c4c4;
	display: flex;
	gap: 0 20px;
}
.benefit_welfare .classItem .itemImg{
	width: 90px;
}
.benefit_welfare .classItem .itemTxtBlk{
	flex: 1;
}
.benefit_welfare .classItem .itemTtl{
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
}
.benefit_welfare .classItem .itemTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	margin-top: 10px;
}
.benefit_welfare .classNote{
	padding: 30px;
	border-radius: 5px;
	background: #f5f5f5;
	margin-top: 20px;
}
.benefit_traning{
	padding: 90px 0 100px;
	background: #FFF9F6;
}
.benefit_traning .traningLead{
	display: flex;
	gap: 0 clamp(2.5rem, -0.189rem + 4.2vw, 3.75rem);
	margin-top: 50px;
}
.benefit_traning .traningLead .leadImg{
	width: 50%;
	border-radius: 5px;
	overflow: hidden;
}
.benefit_traning .traningLead .leadTxtBlk{
	flex: 1;
}
.benefit_traning .traningLead .leadTtl{
	font-weight: 600;
	font-size: 30px;
	line-height: 48px;
}
.benefit_traning .traningLead .leadTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	margin-top: 30px;
}
.benefit_traning .traningEvent{
	width: 100%;
	background: #FFF;
	border-radius: 5px;
	padding: 50px clamp(2.5rem, -0.189rem + 4.2vw, 3.75rem);
	margin-top: 60px;
}
.benefit_traning .traningEvent .eventTtl{
	font-weight: 600;
	font-size: 20px;
	line-height: 32px;
	text-align: center;
	color: #f16252;
	padding-bottom: 15px;
	border-bottom: 1px solid #C4C4C4;
}
.benefit_traning .traningEvent .eventUl{
	margin-top: 25px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 0;
}
.benefit_traning .traningEvent .eventLi{
	width: calc(100% / 2);
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	display: flex;
	align-items: flex-start;
	gap: 0 10px;
}
.benefit_traning .traningEvent .eventLi:before{
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	border-radius: 9999px;
	background: #f16252;
	margin-top: 5px;
}
.benefit_traning .traningSupport{
	display: flex;
	gap: 0 clamp(2.5rem, -0.189rem + 4.2vw, 3.75rem);
	margin-top: 100px;
}
.benefit_traning .traningSupport .supportTxtBlk{
	flex; 1;
}
.benefit_traning .traningSupport .supportTtl{
	font-weight: 600;
	font-size: 30px;
	line-height: 44px;
	display: flex;
	align-items: center;
	gap: 0 10px;
}
.benefit_traning .traningSupport .supportTtl:before{
	content: "";
	display: block;
	width: 25px;
	height: 25px;
	background: url('images/icon_cross.svg') no-repeat;
}
.benefit_traning .traningSupport .supportTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	margin-top: 25px;
}
.benefit_traning .traningSupport .supportExam{
	padding: 25px;
	background: #fff;
	margin-top: 15px;
}
.benefit_traning .traningSupport .supportExam .examTtl{
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #f16252;
	padding-bottom: 15px;
	border-bottom: 1px solid #c4c4c4;
}
.benefit_traning .traningSupport .supportExam .examDl{
	display: flex;
	flex-flow: column;
}
.benefit_traning .traningSupport .supportExam .examDt{
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	display: flex;
	align-items: center;
	gap: 0 10px;
	margin-top: 15px;
}
.benefit_traning .traningSupport .supportExam .examDt:before{
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	border-radius: 9999px;
	background: #f16252;
}
.benefit_traning .traningSupport .supportExam .examDd{
	padding-left: 22px;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	margin-top: 5px;
}
.benefit_traning .traningSupport .supportImg{
	width: 43%;
	border-radius: 5px;
	overflow: hidden;
}
.benefit_career{
	padding: 90px 0 110px;
}
.benefit_career .careerTxt{
	text-align: center;
	margin-top: 25px;
}
.benefit_career .careerItem{
	padding: 35px 40px 40px;
	background: #fff9f6;
	display: flex;
	margin-top: 25px;
}
.benefit_career .careerItem.first{
	margin-top: 50px;
}
.benefit_career .careerItem .itemIndex{
	font-weight: 600;
	font-size: 15px;
	line-height: 21px;
	color: #f16252;
	border-right: 1px solid #707070;
	text-align: center;
	padding: 5px 0;
	padding-right: 34px;
}
.benefit_career .careerItem .itemIndex span{
	display: block;
	font-family: Poppins;
	font-weight: 500;
	font-size: 62px;
	line-height: 77px;
	color: #f16252;
}
.benefit_career .careerItem .itemTxtBlk{
	flex: 1;
	padding-left: 34px;
}
.benefit_career .careerItem .itemTxtBlk .itemTtl{
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
}
.benefit_career .careerItem .itemTxtBlk .itemTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	margin-top: 15px;
}
@media screen and (max-width: 1024px) {
	.benefit_welfare{
		position: relative;
		padding: 60px 0 60px;
	}
	.benefit_welfare .welfareTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		text-align: center;
		margin-top: 20px;
	}
	.benefit_welfare .movieBlk{
		padding: 40px 0 50px;
		border-radius: 5px;
		background: #fff9f6;
		position: relative;
		margin-top: 40px;
	}
	.benefit_welfare .movieBlk:before{
		content: "";
		display: block;
		width: calc(100% + var(--ohw) + var(--ohw));
		height: 100%;
		background: #fff9f6;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		z-index: -1;
	}
	.benefit_welfare .movieTtl{
		font-weight: 600;
		font-size: 26px;
		line-height: 40px;
		text-align: center;
		color: #f16252;
	}
	.benefit_welfare .movieTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 22px;
		margin-top: 10px;
		text-align: center;
	}
	.benefit_welfare .movieIframe{
		margin: 25px auto 0;
		width: 100%;
		max-width: 800px;
	}
	.benefit_welfare .classBlk{
		margin-top: 40px;
	}
	.benefit_welfare .classBlk.first{
		margin-top: 50px;
	}
	.benefit_welfare .classTtl{
		font-weight: 600;
		font-size: 22px;
		line-height: 30px;
		display: flex;
		align-items: center;
		gap: 0 5px;
	}
	.benefit_welfare .classTtl:before{
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		background: url('images/icon_cross.svg') no-repeat;
		background-size: contain;
	}
	.benefit_welfare .classFlex{
		display: flex;
		flex-wrap: wrap;
		gap: 20px 0;
		margin-top: 20px;
	}
	.benefit_welfare .classItem{
		width: 100%;
		padding: 20px 0;
		border-top: none;
		border-bottom: 1px solid #c4c4c4;
		display: flex;
		gap: 0 10px;
	}
	.benefit_welfare .classItem .itemImg{
		width: 60px;
	}
	.benefit_welfare .classItem .itemTxtBlk{
		flex: 1;
	}
	.benefit_welfare .classItem .itemTtl{
		font-weight: 600;
		font-size: 17px;
		line-height: 22px;
	}
	.benefit_welfare .classItem .itemTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		margin-top: 10px;
	}
	.benefit_welfare .classNote{
		padding: 20px;
		border-radius: 5px;
		background: #f5f5f5;
		margin-top: 20px;
	}
	.benefit_traning{
		padding: 50px 0 60px;
		background: #FFF9F6;
	}
	.benefit_traning .traningLead{
		display: flex;
		flex-flow: column;
		gap: 20px 0;
		margin-top: 30px;
	}
	.benefit_traning .traningLead .leadImg{
		width: 100%;
		border-radius: 5px;
		overflow: hidden;
	}
	.benefit_traning .traningLead .leadTxtBlk{
		flex: 1;
	}
	.benefit_traning .traningLead .leadTtl{
		font-weight: 600;
		font-size: 22px;
		line-height: 32px;
	}
	.benefit_traning .traningLead .leadTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		margin-top: 20px;
	}
	.benefit_traning .traningEvent{
		width: 100%;
		background: #FFF;
		border-radius: 5px;
		padding: 25px 10px 30px;
		margin-top: 40px;
	}
	.benefit_traning .traningEvent .eventTtl{
		font-weight: 600;
		font-size: 18px;
		line-height: 26px;
		text-align: center;
		color: #f16252;
		padding-bottom: 15px;
		border-bottom: 1px solid #C4C4C4;
	}
	.benefit_traning .traningEvent .eventUl{
		margin-top: 20px;
		display: flex;
		flex-wrap: wrap;
		gap: 10px 0;
	}
	.benefit_traning .traningEvent .eventLi{
		width: 100%;
		font-weight: 500;
		font-size: 15px;
		line-height: 21px;
		display: flex;
		align-items: flex-start;
		gap: 0 5px;
	}
	.benefit_traning .traningEvent .eventLi:before{
		content: "";
		display: block;
		width: 12px;
		height: 12px;
		border-radius: 9999px;
		background: #f16252;
		flex-shrink: 0;
		margin-top: 5px;
	}
	.benefit_traning .traningSupport{
		display: flex;
		flex-flow: column;
		gap: 30px 0;
		margin-top: 40px;
	}
	.benefit_traning .traningSupport .supportTxtBlk{
		flex; 1;
		order: 2;
	}
	.benefit_traning .traningSupport .supportTtl{
		font-weight: 600;
		font-size: 22px;
		line-height: 30px;
		display: flex;
		align-items: center;
		gap: 0 5px;
	}
	.benefit_traning .traningSupport .supportTtl:before{
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		background: url('images/icon_cross.svg') no-repeat;
		background-size: contain;
	}
	.benefit_traning .traningSupport .supportTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		margin-top: 15px;
	}
	.benefit_traning .traningSupport .supportExam{
		padding: 15px 10px;
		background: #fff;
		margin-top: 20px;
	}
	.benefit_traning .traningSupport .supportExam .examTtl{
		font-weight: 600;
		font-size: 15px;
		line-height: 24px;
		color: #f16252;
		padding-bottom: 10px;
		border-bottom: 1px solid #c4c4c4;
	}
	.benefit_traning .traningSupport .supportExam .examDl{
		display: flex;
		flex-flow: column;
	}
	.benefit_traning .traningSupport .supportExam .examDt{
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
		display: flex;
		align-items: center;
		gap: 0 5px;
		margin-top: 15px;
	}
	.benefit_traning .traningSupport .supportExam .examDt:before{
		content: "";
		display: block;
		width: 12px;
		height: 12px;
		border-radius: 9999px;
		background: #f16252;
	}
	.benefit_traning .traningSupport .supportExam .examDd{
		padding-left: 17px;
		font-weight: 500;
		font-size: 14px;
		line-height: 22px;
		margin-top: 5px;
	}
	.benefit_traning .traningSupport .supportImg{
		width: 100%;
		border-radius: 5px;
		overflow: hidden;
		order: 1;
	}
	.benefit_career{
		padding: 40px 0 50px;
	}
	.benefit_career .careerTxt{
		text-align: justify;
		margin-top: 20px;
		line-height: 24px;
	}
	.benefit_career .careerItem{
		padding: 15px 15px 20px;
		background: #fff9f6;
		display: flex;
		flex-flow: column;
		margin-top: 20px;
	}
	.benefit_career .careerItem.first{
		margin-top: 30px;
	}
	.benefit_career .careerItem .itemIndex{
		font-weight: 600;
		font-size: 14px;
		line-height: 21px;
		color: #f16252;
		border-right: none;
		text-align: center;
		padding: 5px 0;
		padding-right: 0px;
	}
	.benefit_career .careerItem .itemIndex span{
		display: block;
		font-family: Poppins;
		font-weight: 500;
		font-size: 45px;
		line-height: 55px;
		color: #f16252;
	}
	.benefit_career .careerItem .itemTxtBlk{
		flex: 1;
		padding-left: 0px;
		margin-top: 10px;
	}
	.benefit_career .careerItem .itemTxtBlk .itemTtl{
		font-weight: 600;
		font-size: 18px;
		line-height: 26px;
	}
	.benefit_career .careerItem .itemTxtBlk .itemTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		margin-top: 10px;
	}
}


/*
Entry
====================================*/
.entry_discription{
	padding: 90px 0 0;
}
.entry_discription .discriptionTab{
	margin-bottom: -1px;
	display: flex;
	gap: 0 33px;
	margin-top: 40px;
}
.entry_discription .discriptionTab .tabItem{
	width: calc((100% - 66px) / 3);
	height: 70px;
	border-radius: 5px 5px 0px 0px;
	background: #fff;
	border: 1px solid #a9a9aa;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	cursor: pointer;
}
.entry_discription .discriptionTab .tabItem.active{
	background: #fff9f6;
	border-bottom: 1px solid #fff9f6;
}
.entry_Post{
	display: none;
	padding: 90px 0 100px;
	background: #fff9f6;
	border-top: 1px solid #a9a9aa;
}
.entry_Post.active{
	display: block;
}
.entry_Post .blk{
	display: flex;
	flex-flow: column;
	gap: 30px 0;
}
.entry_Post .postItem{
	min-height: 90px;
	height: auto;
	border-radius: 5px;
	background: #fff;
	box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 27px 40px;
}
.entry_Post .postItem .itemTtl{
	font-weight: 600;
	font-size: 25px;
	line-height: 36px;
}
.entry_Post .postItem .itemPlus{
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: #F16252;
	display: flex;
	justify-content: center;
	align-items: center;
}
.entry_Post .postItem .itemPlus:before{
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background: url('images/icon_plus.svg') no-repeat;
}
.entry_Post .postItem .itemPlus.active:before{
	background: url('images/icon_minus.svg') no-repeat;
	background-size: contain;
	background-position: center;
}
.entry_Post .postDesc{
	width: 100%;
	padding: 0 clamp(0.938rem, -1.752rem + 4.2vw, 2.188rem);
	display: none;
}
.entry_Post .postDesc .descDl{
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
	border-top: 1px solid #c4c4c4;
}
.entry_Post .postDesc .descDt{
	width: 200px;
	background: #F5F5F5;
	padding: 25px;
	border-bottom: 1px solid #c4c4c4;

}
.entry_Post .postDesc .descDd{
	width: calc(100% - 200px);
	background: #FFF;
	padding: 25px;
	border-bottom: 1px solid #c4c4c4;
}
.entry_Post .postDesc .descTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	text-align: center;
	margin-top: 40px;
}
.entry_Post .postDesc .descLinkBlk{
	display: flex;
	justify-content: center;
	gap: 0 12px;
	margin-top: 25px;
	margin-bottom: 53px;
}
.entry_Post .postDesc .descLink01{
	width: calc((100% - 24px) / 3);
	height: 70px;
	border-radius: 35px;
	background: #f16252;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	color: #fff;
	position: relative;
}
.entry_Post .postDesc .descLink01:after {
	content: "";
	display: block;
	width: 22px;
	height: 22px;
	-webkit-mask-image: url('images/icon_arrow.svg');
	background-color: #FFF;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	right: 18px;
}
.entry_Post .postDesc .descLink02{
	width: calc((100% - 24px) / 3);
	height: 70px;
	border-radius: 9999px;
	background: #fff;
	border: 1px solid #c4c4c4;
	display: flex;
	justify-content: center;
	align-items: center;
}
.entry_Post .postDesc .descLink02 img{
	width: 60%;
}
.entry_Post .postDesc .descLink03{
	width: calc((100% - 24px) / 3);
	height: 70px;
	border-radius: 9999px;
	background: #fff;
	border: 1px solid #c4c4c4;
	display: flex;
	justify-content: center;
	align-items: center;
}
.entry_Post .postDesc .descLink03 img{
	width: 60%;
}
.entry_Form{
	padding: 90px 0 110px;
}
.entry_Form .formTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	text-align: center;
	margin-top: 25px;
}
.entry_Form .formBlk{
	padding: 65px clamp(3.125rem, -0.909rem + 6.3vw, 5rem) 90px;
	background: #fff9f6;
	margin-top: 60px;
}
@media screen and (max-width: 1024px) {
	.entry_discription{
		padding: 40px 0 0;
	}
	.entry_discription .discriptionTab{
		margin-bottom: -1px;
		display: flex;
		gap: 0 10px;
		margin-top: 40px;
	}
	.entry_discription .discriptionTab .tabItem{
		width: calc((100% - 20px) / 3);
		height: 50px;
		border-radius: 5px 5px 0px 0px;
		background: #fff;
		border: 1px solid #a9a9aa;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 600;
		font-size: 16px;
		line-height: 20px;
		cursor: pointer;
		text-align: center;
	}
	.entry_discription .discriptionTab .tabItem.active{
		background: #fff9f6;
		border-bottom: 1px solid #fff9f6;
	}
	.entry_Post{
		display: none;
		padding: 40px 0 60px;
		background: #fff9f6;
		border-top: 1px solid #a9a9aa;
	}
	.entry_Post.active{
		display: block;
	}
	.entry_Post .blk{
		display: flex;
		flex-flow: column;
		gap: 15px 0;
	}
	.entry_Post .postItem{
		min-height: auto;
		height: auto;
		border-radius: 5px;
		background: #fff;
		box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.1);
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		padding: 17px 15px;
	}
	.entry_Post .postItem .itemTtl{
		font-weight: 600;
		font-size: 18px;
		line-height: 35px;
	}
	.entry_Post .postItem .itemPlus{
		width: 35px;
		height: 35px;
		border-radius: 50%;
		background: #F16252;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.entry_Post .postItem .itemPlus:before{
		content: "";
		display: block;
		width: 16px;
		height: 16px;
		background: url('images/icon_plus.svg') no-repeat;
		background-size: contain;
	}
	.entry_Post .postItem .itemPlus.active:before{
		background: url('images/icon_minus.svg') no-repeat;
		background-size: contain;
		background-position: center;
	}
	.entry_Post .postDesc{
		width: 100%;
		padding: 0 0px;
		display: none;
	}
	.entry_Post .postDesc .descDl{
		display: flex;
		flex-wrap: wrap;
		margin-top: 20px;
		border-top: 1px solid #c4c4c4;
	}
	.entry_Post .postDesc .descDt{
		width: 100px;
		background: #F5F5F5;
		padding: 10px;
		border-bottom: 1px solid #c4c4c4;
		font-size: 15px;
	}
	.entry_Post .postDesc .descDd{
		width: calc(100% - 100px);
		background: #FFF;
		padding: 10px;
		border-bottom: 1px solid #c4c4c4;
	}
	.entry_Post .postDesc .descTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		text-align: center;
		margin-top: 40px;
	}
	.entry_Post .postDesc .descLinkBlk{
		display: flex;
		flex-flow: column;
		justify-content: center;
		gap: 10px 0;
		margin-top: 20px;
		margin-bottom: 10px;
	}
	.entry_Post .postDesc .descLink01{
		width: 100%;
		height: 50px;
		border-radius: 35px;
		background: #f16252;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
		color: #fff;
		position: relative;
	}
	.entry_Post .postDesc .descLink01:after {
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		-webkit-mask-image: url('images/icon_arrow.svg');
		-webkit-mask-size: contain;
		background-color: #FFF;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto 0;
		right: 10px;
	}
	.entry_Post .postDesc .descLink02{
		width: 100%;
		height: 50px;
		border-radius: 9999px;
		background: #fff;
		border: 1px solid #c4c4c4;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.entry_Post .postDesc .descLink02 img{
		width: 50%;
	}
	.entry_Post .postDesc .descLink03{
		width: 100%;
		height: 50px;
		border-radius: 9999px;
		background: #fff;
		border: 1px solid #c4c4c4;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.entry_Post .postDesc .descLink03 img{
		width: 50%;
	}
	.entry_Form{
		padding: 40px 0 80px;
	}
	.entry_Form .formTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		text-align: justify;
		margin-top: 20px;
	}
	.entry_Form .formBlk{
		padding: 15px 15px 50px;
		background: #fff9f6;
		margin-top: 40px;
	}
}


/*
Support
====================================*/
.support_lead{
	padding: 65px 0 180px;
}
.support_lead .blk{
	display: flex;
	align-items: center;
	gap: 0 clamp(1.875rem, -4.848rem + 10.5vw, 5rem);
}
.support_lead .leadTxtBlk{
	flex: 1;
}
.support_lead .leadTtl {
	font-weight: 600;
	font-size: 32px;
	line-height: 64px;
}
.support_lead .leadTtl span{
	color: #F16252;
}
.support_lead .leadTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	margin-top: 40px;
}
.support_lead .leadImg{
	width: 58%;
	margin-right: calc(var(--ohw) * -1);
}
.support_service{
	padding: 0 0 100px;
}
.support_service .serviceBlk{
	display: flex;
	flex-wrap: wrap;
	gap: 60px clamp(1.375rem, -0.104rem + 2.31vw, 2.063rem);
	margin-top: 50px;
}
.support_service .serviceItem{
	width: calc((100% - clamp(2.75rem, -0.208rem + 4.62vw, 4.125rem)) / 3);
}
.support_service .serviceItem .itemImg{
	border-radius: 5px;
	overflow: hidden;
}
.support_service .serviceItem .itemTtl{
	font-weight: 600;
	font-size: 22px;
	line-height: 32px;
	color: #f16252;
	margin-top: 20px;
}
.support_service .serviceItem .itemTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	margin-top: 15px;
}
.support_land{
	padding: 90px 0 100px;
	background: #fff9f6;
}
.support_land .landTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
	margin-top: 25px;
}
.support_land .landBlk{
	display: flex;
	gap: 0 clamp(1.25rem, -1.439rem + 4.2vw, 2.5rem);
	margin-top: 50px;
}
.support_land .landItem{
	width: calc((100% - clamp(1.25rem, -1.439rem + 4.2vw, 2.5rem)) / 2);
	background: #FFF;
	padding: clamp(1.875rem, 0.53rem + 2.1vw, 2.5rem);
	border-radius: 5px;
}
.support_land .landItem .itemMap{
	width: 100%;
}
.support_land .landItem .itemTtl{
	font-weight: 600;
	font-size: 24px;
	line-height: 35px;
	margin-top: 25px;
}
.support_land .landItem .itemDl{
	margin-top: 25px;
	border-top: 1px solid #c4c4c4;
	display: flex;
	flex-wrap: wrap;
}
.support_land .landItem .itemDt{
	width: 100px;
	background: #f5f5f5;
	padding: 15px;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	border-bottom: 1px solid #c4c4c4;
}
.support_land .landItem .itemDd{
	width: calc(100% - 100px);
	padding: 15px;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	border-bottom: 1px solid #c4c4c4;
}
.support_flow{
	padding: 90px 0 100px;
}
.support_flow .cmn_headBlk{
	margin-bottom: 50px;
}
.support_flow .flowTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	margin-top: 25px;
	text-align: center;
	margin-bottom: 60px;
}
.support_flow .flowItem{
	display: flex;
	align-items: center;
	padding: 40px;
	border-radius: 5px;
	background: #fff9f6;
	margin-bottom: 45px;
	position: relative;
}
.support_flow .flowItem:last-of-type{
	background: #fff;
	border: 1px dotted #f16252;
}
.support_flow .flowItem:after{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 22px solid transparent;
	border-left: 22px solid transparent;
	border-top: 15px solid #f16252;
	border-bottom: 0;
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
}
.support_flow .flowItem:last-of-type:after{
	display: none;
}
.support_flow .flowItem .itemTtl{
	width: clamp(18.75rem, 10.683rem + 12.61vw, 22.5rem);
	font-weight: 600;
	font-size: 22px;
	line-height: 32px;
	color: #f16252;
	display: flex;
	align-items: center;
	gap: 0 12px;
}
.support_flow .flowItem .itemTtl span{
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid #f16252;
	display: flex;
	justify-content: center;
	align-items: center;
}
.support_flow .flowItem .itemTxt{
	flex: 1;
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
}
.support_flow .flowLinkTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	margin-top: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.support_flow .flowLink{
	width: 300px;
	height: 70px;
	border-radius: 9999px;
	background: #f16252;
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px auto 0;
	position: relative;
}
.support_flow .flowLink:after{
	content: "";
	display: block;
	width: 22px;
	height: 22px;
	-webkit-mask-image: url('images/icon_arrow.svg');
	background-color: #FFF;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	right: 10px;
}
@media screen and (max-width: 1024px) {
	.support_lead{
		padding: 40px 0 80px;
	}
	.support_lead .blk{
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 25px 0;
	}
	.support_lead .leadTxtBlk{
		flex: 1;
	}
	.support_lead .leadTtl {
		font-weight: 600;
		font-size: 24px;
		line-height: 36px;
	}
	.support_lead .leadTtl span{
		color: #F16252;
	}
	.support_lead .leadTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		margin-top: 30px;
	}
	.support_lead .leadImg{
		width: 100%;
		margin-right: 0;
	}
	.support_service{
		padding: 0 0 50px;
	}
	.support_service .serviceBlk{
		display: flex;
		flex-wrap: wrap;
		gap: 40px;
		margin-top: 40px;
	}
	.support_service .serviceItem{
		width: 100%;
	}
	.support_service .serviceItem .itemImg{
		width: 100%;
		border-radius: 5px;
		overflow: hidden;
	}
	.support_service .serviceItem .itemImg img{
		width: 100%;
	}
	.support_service .serviceItem .itemTtl{
		font-weight: 600;
		font-size: 20px;
		line-height: 30px;
		color: #f16252;
		margin-top: 15px;
	}
	.support_service .serviceItem .itemTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		margin-top: 10px;
	}
	.support_land{
		padding: 50px 0 60px;
		background: #fff9f6;
	}
	.support_land .landTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 21px;
		text-align: center;
		margin-top: 20px;
	}
	.support_land .landBlk{
		display: flex;
		flex-flow: column;
		gap: 20px 0;
		margin-top: 40px;
	}
	.support_land .landItem{
		width: 100%;
		background: #FFF;
		padding: 20px 10px 30px;
		border-radius: 5px;
	}
	.support_land .landItem .itemMap{
		width: 100%;
	}
	.support_land .landItem .itemTtl{
		font-weight: 600;
		font-size: 20px;
		line-height: 30px;
		margin-top: 15px;
	}
	.support_land .landItem .itemDl{
		margin-top: 15px;
		border-top: 1px solid #c4c4c4;
		display: flex;
		flex-wrap: wrap;
	}
	.support_land .landItem .itemDt{
		width: 100px;
		background: #f5f5f5;
		padding: 10px;
		font-weight: 600;
		font-size: 15px;
		line-height: 21px;
		border-bottom: 1px solid #c4c4c4;
	}
	.support_land .landItem .itemDd{
		width: calc(100% - 100px);
		padding: 10px;
		font-weight: 500;
		font-size: 15px;
		line-height: 21px;
		border-bottom: 1px solid #c4c4c4;
	}
	.support_flow{
		padding: 60px 0 70px;
	}
	.support_flow .cmn_headBlk {
		margin-bottom: 30px;
	}
	.support_flow .flowTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 22px;
		margin-top: 20px;
		text-align: center;
		margin-bottom: 40px;
	}
	.support_flow .flowItem{
		display: flex;
		flex-flow: column;
		align-items: center;
		padding: 20px;
		border-radius: 5px;
		background: #fff9f6;
		margin-bottom: 40px;
		position: relative;
	}
	.support_flow .flowItem:last-of-type{
		background: #fff;
		border: 1px dotted #f16252;
	}
	.support_flow .flowItem:after{
		content: "";
		display: block;
		width: 0;
		height: 0;
		border-style: solid;
		border-right: 20px solid transparent;
		border-left: 20px solid transparent;
		border-top: 15px solid #f16252;
		border-bottom: 0;
		position: absolute;
		bottom: -30px;
		left: 50%;
		transform: translateX(-50%);
	}
	.support_flow .flowItem:last-of-type:after{
		display: none;
	}
	.support_flow .flowItem .itemTtl{
		width: 100%;
		font-weight: 600;
		font-size: 20px;
		line-height: 32px;
		color: #f16252;
		display: flex;
		align-items: center;
		gap: 0 12px;
	}
	.support_flow .flowItem .itemTtl span{
		width: 32px;
		height: 32px;
		border-radius: 50%;
		border: 1px solid #f16252;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.support_flow .flowItem .itemTxt{
		flex: 1;
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		margin-top: 10px;
	}
	.support_flow .flowLinkTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		margin-top: 40px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.support_flow .flowLink{
		width: 250px;
		height: 60px;
		border-radius: 9999px;
		background: #f16252;
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 15px auto 0;
		position: relative;
	}
	.support_flow .flowLink:after{
		content: "";
		display: block;
		width: 18px;
		height: 18px;
		-webkit-mask-image: url('images/icon_arrow.svg');
		background-color: #FFF;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto 0;
		right: 10px;
	}
}


/*
News
====================================*/
.news_list{
	padding: 60px 0 100px;
}
.news_list .listCat{
	display: flex;
	justify-content: center;
	gap: 0 10px;
}
.news_list .listCat .cat-item{
	width: 200px;
	height: 50px;
	border-radius: 9999px;
	background: #fff;
	border: 1px solid #a9a9aa;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 15px;
	line-height: 21px;
	color: #a9a9aa;
}
.news_list .listCat .cat-item a{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.news_list .listCat .cat-item.current-cat{
	background: #f16252;
	color: #FFF;
	border: none;
}
.news_list .listBlk{
	flex: 1;
	max-width: 850px;
	margin: 40px auto 0;
	border-top: 1px solid #c4c4c4;
}
.news_list .listBlk a{
	display: flex;
	align-items: center;
	border-bottom: 1px solid #c4c4c4;
	min-height: 80px;
	padding-right: 40px;
	position: relative;
}
.news_list .listBlk a:after{
	content: "";
	display: block;
	width: 22px;
	height: 22px;
	background: url('images/icon_arrow.svg') no-repeat;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	right: 10px;
}
.news_list .listBlk .date{
	font-weight: 700;
	font-size: 15px;
	line-height: 21px;
	color: #707070;
}
.news_list .listBlk .category{
	width: fit-content;
	height: 28px;
	border-radius: 9999px;
	border: 1px solid #f16252;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #f16252;
	padding: 0 18px;
	margin: 0 18px;
}
.news_list .listBlk .title{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #323234;
	flex: 1;
}
.news_list .paginationBlk{
	margin-top: 55px;
}
.news_list .listPagerBlk{
	display: flex;
	justify-content: center;
	gap: 0 20px;
}
.news_list .paginationBlk .listPagerNum{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border-radius: 9999px;
	background: #f16252;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
}
.news_list .paginationBlk a.listPagerNum{
	border: 1px solid #a9a9aa;
	background: #fff;
	color: #a9a9aa;
}
.news_list .paginationBlk .listPagerPrevious{
	width: 50px;
	height: 50px;
	border-radius: 25px;
	background: #fff;
	border: 1px solid #a9a9aa;
	display: flex;
	justify-content: center;
	align-items: center;
}
.news_list .paginationBlk .listPagerPrevious:before{
	content: "";
	display: block;
	width: 9px;
	height: 9px;
	background: transparent;
	border-top: 2px solid #a9a9aa;
	border-left: 2px solid #a9a9aa;
	transform: rotate(-45deg);
	position: relative;
	right: -1px;
}
.news_list .paginationBlk .listPagerNext{
	width: 50px;
	height: 50px;
	border-radius: 25px;
	background: #fff;
	border: 1px solid #a9a9aa;
	display: flex;
	justify-content: center;
	align-items: center;
}
.news_list .paginationBlk .listPagerNext:before{
	content: "";
	display: block;
	width: 9px;
	height: 9px;
	background: transparent;
	border-bottom: 2px solid #a9a9aa;
	border-right: 2px solid #a9a9aa;
	transform: rotate(-45deg);
	position: relative;
	left: -1px;
}
@media screen and (max-width: 1024px) {
	.news_list{
		padding: 40px 0 60px;
	}
	.news_list .listCat{
		display: flex;
		justify-content: center;
		gap: 0 5px;
	}
	.news_list .listCat .cat-item{
		width: calc((100% - 10px) / 3);
		height: 40px;
		border-radius: 9999px;
		background: #fff;
		border: 1px solid #a9a9aa;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 600;
		font-size: 14px;
		line-height: 20px;
		color: #a9a9aa;
	}
	.news_list .listCat .cat-item.current-cat{
		background: #f16252;
		color: #FFF;
		border: none;
	}
	.news_list .listBlk{
		flex: 1;
		max-width: 850px;
		margin: 30px auto 0;
		border-top: 1px solid #c4c4c4;
	}
	.news_list .listBlk a{
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		border-bottom: 1px solid #c4c4c4;
		min-height: auto;
		padding-right: 40px;
		position: relative;
		padding: 15px 0;
	}
	.news_list .listBlk a:after{
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		background: url('images/icon_arrow.svg') no-repeat;
		background-size: contain;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto 0;
		right: 5px;
	}
	.news_list .listBlk .date{
		font-weight: 700;
		font-size: 14px;
		line-height: 20px;
		color: #707070;
	}
	.news_list .listBlk .category{
		width: fit-content;
		height: 24px;
		border-radius: 9999px;
		border: 1px solid #f16252;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 500;
		font-size: 14px;
		line-height: 21px;
		color: #f16252;
		padding: 0 12px;
		margin: 0 10px;
	}
	.news_list .listBlk .title{
		width: 100%;
		font-weight: 500;
		font-size: 16px;
		line-height: 24px;
		color: #323234;
		flex: auto;
		margin-top: 10px;
		padding-right: 30px;
	}
	.news_list .paginationBlk{
		margin-top: 35px;
	}
	.news_list .listPagerBlk{
		display: flex;
		justify-content: center;
		gap: 0 15px;
	}
	.news_list .paginationBlk .listPagerNum{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 40px;
		height: 40px;
		border-radius: 9999px;
		background: #f16252;
		font-weight: 700;
		font-size: 15px;
		line-height: 21px;
		color: #fff;
	}
	.news_list .paginationBlk a.listPagerNum{
		border: 1px solid #a9a9aa;
		background: #fff;
		color: #a9a9aa;
	}
	.news_list .paginationBlk .listPagerPrevious{
		width: 40px;
		height: 40px;
		border-radius: 20px;
		background: #fff;
		border: 1px solid #a9a9aa;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.news_list .paginationBlk .listPagerPrevious:before{
		content: "";
		display: block;
		width: 8px;
		height: 8px;
		background: transparent;
		border-top: 2px solid #a9a9aa;
		border-left: 2px solid #a9a9aa;
		transform: rotate(-45deg);
		position: relative;
		right: -1px;
	}
	.news_list .paginationBlk .listPagerNext{
		width: 40px;
		height: 40px;
		border-radius: 20px;
		background: #fff;
		border: 1px solid #a9a9aa;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.news_list .paginationBlk .listPagerNext:before{
		content: "";
		display: block;
		width: 8px;
		height: 8px;
		background: transparent;
		border-bottom: 2px solid #a9a9aa;
		border-right: 2px solid #a9a9aa;
		transform: rotate(-45deg);
		position: relative;
		left: -1px;
	}
}


/*
NewsPost
====================================*/
.newsPost_article{
	padding: 80px 0 100px;
}
.newsPost_article article{
	width: 850px;
	margin: 0 auto;
}
.newsPost_article .articleDate{
	font-weight: 700;
	font-size: 15px;
	line-height: 21px;
	color: #707070;
	margin-right: 20px;
}
.newsPost_article .articleCat{
	width: fit-content;
	height: 28px;
	padding: 0 18px;
	border-radius: 9999px;
	border: 1px solid #f16252;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #f16252;
}
.newsPost_article .articleTtl{
	font-weight: 600;
	font-size: 25px;
	line-height: 36px;
	margin-top: 20px;
	padding-bottom: 25px;
	border-bottom: 1px solid #c4c4c4;
}
.newsPost_article .articleTxt{
	margin-top: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid #c4c4c4;
}
.newsPost_article .articleTxt > *:first-child,
.newsPost_article .articleTxt > * *:first-child {
	margin-top: 0;
}
.newsPost_article .articleTxt img {
	display: table;
	margin: auto!important;
}
.newsPost_article .articleTxt :not(ul):not(li):not(iframe):not(table *) {
	margin: calc(1rem* 1.6) 0 0;
}
.newsPost_article .articleTxt a {
	color: #239CC9;
	text-decoration: underline;
}
.newsPost_article .paginationBlk{
	max-width: 850px;
	margin: 40px auto 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.newsPost_article .detailpreviousBlk{
	width: 90px;
	height: fit-content;
	display: flex;
	align-items: center;
}
.newsPost_article .detailpreviousBlk a{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	padding-bottom: 5px;
	border-bottom: 1px solid #707070;
}
.newsPost_article .detailpreviousBlk a:before{
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-top: 2px solid #323234;
	border-left: 2px solid #323234;
	transform: rotate(-45deg);
	position: relative;
	left: 2px;
}
.newsPost_article .detailBackBlk{
	width: 300px;
	height: 70px;
	border-radius: 35px;
	background: #f16252;
	position: relative;
}
.newsPost_article .detailBackBlk a{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	color: #FFF;
}
.newsPost_article .detailBackBlk:after {
	content: "";
	display: block;
	width: 22px;
	height: 22px;
	-webkit-mask-image: url('images/icon_arrow.svg');
	background-color: #FFF;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	right: 20px;
}
.newsPost_article .detailNextBlk{
	width: 90px;
	height: fit-content;
	display: flex;
	align-items: center;
}
.newsPost_article .detailNextBlk a{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	padding-bottom: 5px;
	border-bottom: 1px solid #707070;
}
.newsPost_article .detailNextBlk a:after{
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-bottom: 2px solid #323234;
	border-right: 2px solid #323234;
	transform: rotate(-45deg);
	position: relative;
	right: 2px;
}
@media screen and (max-width: 1024px) {
	.newsPost_article{
		padding: 40px 0 60px;
	}
	.newsPost_article article{
		width: 100%;
		margin: 0 auto;
	}
	.newsPost_article .articleDate{
		font-weight: 700;
		font-size: 14px;
		line-height: 21px;
		color: #707070;
		margin-right: 10px;
	}
	.newsPost_article .articleCat{
		width: fit-content;
		height: 25px;
		padding: 0 12px;
		border-radius: 9999px;
		border: 1px solid #f16252;
		font-weight: 500;
		font-size: 15px;
		line-height: 21px;
		color: #f16252;
	}
	.newsPost_article .articleTtl{
		font-weight: 600;
		font-size: 20px;
		line-height: 30px;
		margin-top: 10px;
		padding-bottom: 15px;
		border-bottom: 1px solid #c4c4c4;
	}
	.newsPost_article .articleTxt{
		margin-top: 20px;
		padding-bottom: 20px;
		border-bottom: 1px solid #c4c4c4;
	}
	.newsPost_article .articleTxt > *:first-child,
	.newsPost_article .articleTxt > * *:first-child {
		margin-top: 0;
	}
	.newsPost_article .articleTxt img {
		display: table;
		margin: auto!important;
	}
	.newsPost_article .articleTxt :not(ul):not(li):not(iframe):not(table *) {
		margin: calc(1rem* 1.6) 0 0;
	}
	.newsPost_article .articleTxt a {
		color: #239CC9;
		text-decoration: underline;
	}
	.newsPost_article .paginationBlk{
		max-width: 850px;
		margin: 40px auto 0;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.newsPost_article .detailpreviousBlk{
		width: 50px;
		height: fit-content;
		display: flex;
		align-items: center;
	}
	.newsPost_article .detailpreviousBlk a{
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-weight: 600;
		font-size: 15px;
		line-height: 22px;
		text-align: end;
		padding-bottom: 5px;
		border-bottom: 1px solid #707070;
	}
	.newsPost_article .detailpreviousBlk a:before{
		content: "";
		display: block;
		width: 7px;
		height: 7px;
		border-top: 2px solid #323234;
		border-left: 2px solid #323234;
		transform: rotate(-45deg);
		position: relative;
		left: 2px;
	}
	.newsPost_article .detailBackBlk{
		width: 200px;
		height: 50px;
		border-radius: 25px;
		background: #f16252;
		position: relative;
	}
	.newsPost_article .detailBackBlk a{
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
		color: #FFF;
	}
	.newsPost_article .detailBackBlk:after {
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		-webkit-mask-image: url('images/icon_arrow.svg');
		-webkit-mask-size: contain;
		background-color: #FFF;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto 0;
		right: 15px;
	}
	.newsPost_article .detailNextBlk{
		width: 50px;
		height: fit-content;
		display: flex;
		align-items: center;
	}
	.newsPost_article .detailNextBlk a{
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-weight: 600;
		font-size: 15px;
		line-height: 22px;
		padding-bottom: 5px;
		border-bottom: 1px solid #707070;
	}
	.newsPost_article .detailNextBlk a:after{
		content: "";
		display: block;
		width: 7px;
		height: 7px;
		border-bottom: 2px solid #323234;
		border-right: 2px solid #323234;
		transform: rotate(-45deg);
		position: relative;
		right: 2px;
	}
}


/*
Contact
====================================*/
.contact_tel{
	padding: 60px 0 90px;
}
.contact_tel .telTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	text-align: center;
}
.contact_tel .telBlk{
	display: flex;
	justify-content: center;
	gap: 0 20px;
	margin-top: 40px;
}
.contact_tel .telItem{
	width: 400px;
	height: 135px;
	border-radius: 5px;
	background: #dcf0f8;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
}
.contact_tel .telItem .itemTtl{
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
}
.contact_tel .telItem .itemTel{
	margin-top: 10px;
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	color: #239cc9;
}
.contact_tel .telItem .itemTel .num{
	font-weight: 600;
	font-size: 32px;
	line-height: 46px;
	margin-left: 5px;
}
.contact_form{
	padding: 0 0 100px;
}
.contact_form .formTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	text-align: center;
	margin-top: 25px;
}
.contact_form .formBlk{
	padding: 65px clamp(3.125rem, -0.909rem + 6.3vw, 5rem) 90px;
	background: #fff9f6;
	margin-top: 50px;
}
@media screen and (max-width: 1024px) {
	.contact_tel{
		padding: 40px 0 60px;
	}
	.contact_tel .telTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		text-align: center;
	}
	.contact_tel .telBlk{
		display: flex;
		flex-flow: column;
		justify-content: center;
		gap: 20px 0;
		margin-top: 30px;
	}
	.contact_tel .telItem{
		width: 100%;
		height: 100px;
		border-radius: 5px;
		background: #dcf0f8;
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
	}
	.contact_tel .telItem .itemTtl{
		font-weight: 600;
		font-size: 15px;
		line-height: 21px;
	}
	.contact_tel .telItem .itemTel{
		margin-top: 0px;
		font-weight: 600;
		font-size: 20px;
		line-height: 30px;
		color: #239cc9;
	}
	.contact_tel .telItem .itemTel .num{
		font-weight: 600;
		font-size: 30px;
		line-height: 44px;
		margin-left: 5px;
	}
	.contact_form{
		padding: 0 0 70px;
	}
	.contact_form .formTxt{
		font-weight: 500;
		font-size: 14px;
		line-height: 22px;
		text-align: justify;
		margin-top: 20px;
	}
	.contact_form .formBlk{
		padding: 15px 15px 50px;
		background: #fff9f6;
		margin-top: 50px;
	}
}


/*
FAQ
====================================*/
.faq_post{
	padding: 10px 0 100px;
}
.faq_post .postTtl{
	font-weight: 600;
	font-size: 30px;
	line-height: 45px;
	display: flex;
	align-items: center;
	gap: 0 10px;
	margin-top: 80px;
}
.faq_post .postTtl:before{
	content: "";
	display: block;
	width: 25px;
	height: 25px;
	background: url('images/icon_cross.svg') no-repeat;	
}
.faq_post .postBlk{
	border-top: 1px solid #c4c4c4;
	margin-top: 45px;
}
.faq_post .postBlk.blk02{
	margin-top: 25px;
}
.faq_post .postItem{
	width: 100%;
	border-bottom: 1px solid #c4c4c4;
	padding: 20px 25px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0 10px;
	cursor: pointer;
}
.faq_post .postItem:before{
	content: "";
	display: block;
	width: 40px;
	height: 40px;
	background: url('images/icon_question.svg') no-repeat;
	background-size: contain;
}
.faq_post .postItem .itemTtl{
	font-weight: 500;
	font-size: 18px;
	line-height: 26px;
}
.faq_post .postItem .itemPlus{
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: auto;
}
.faq_post .postItem .itemPlus:before{
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	-webkit-mask-image: url('images/icon_plus.svg');
	background-color: #F16252;
}
.faq_post .postItem .itemPlus.active:before{
	-webkit-mask-image: url('images/icon_minus.svg');
	background-color: #F16252;
	-webkit-mask-size: contain;
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
}
.faq_post .postItem .itemTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	display: none;
	margin: 20px 60px 10px 0;
}
.faq_post .postItem .itemTxt a{
	color: #239CC9;
	text-decoration: underline;
}
@media screen and (max-width: 1024px) {
	.faq_post{
		padding: 40px 0 70px;
	}
	.faq_post .postTtl{
		font-weight: 600;
		font-size: 20px;
		line-height: 26px;
		display: flex;
		align-items: center;
		gap: 0 5px;
		margin-top: 40px;
	}
	.faq_post .postTtl:before{
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		background: url('images/icon_cross.svg') no-repeat;	
		background-size: contain;
		flex-shrink; 0;
	}
	.faq_post .postBlk{
		border-top: 1px solid #c4c4c4;
		margin-top: 45px;
	}
	.faq_post .postBlk.blk02{
		margin-top: 25px;
	}
	.faq_post .postItem{
		width: 100%;
		border-bottom: 1px solid #c4c4c4;
		padding: 15px 0px;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 0 10px;
	}
	.faq_post .postItem:before{
		content: "";
		display: block;
		width: 30px;
		height: 30px;
		background: url('images/icon_question.svg') no-repeat;
		background-size: contain;
	}
	.faq_post .postItem .itemTtl{
		font-weight: 500;
		font-size: 15px;
		line-height: 22px;
		flex: 1;
	}
	.faq_post .postItem .itemPlus{
		width: 40px;
		height: 40px;
		border-radius: 50%;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-left: auto;
	}
	.faq_post .postItem .itemPlus:before{
		content: "";
		display: block;
		width: 18px;
		height: 18px;
		-webkit-mask-image: url('images/icon_plus.svg');
		-webkit-mask-size: contain;
		background-color: #F16252;
	}
	.faq_post .postItem .itemPlus.active:before{
		-webkit-mask-image: url('images/icon_minus.svg');
		background-color: #F16252;
		-webkit-mask-size: contain;
		-webkit-mask-position: center;
		-webkit-mask-repeat: no-repeat;
	}
	.faq_post .postItem .itemTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		display: none;
		margin: 15px 40px 10px 0;
	}
	.faq_post .postItem .itemTxt a{
		color: #239CC9;
		text-decoration: underline;
	}
}
