/*
Theme Name:ba-template
*/
@charset "UTF-8";
/*####################################

1. General
┣ Root
┣ Element
┣ Decoration
┣ Css Animation
┣ Plugin Overwrite
┣ default.css Overwrite
┣ Other
2. Site Common Style
┣ Pagination
┣ Form
┣ 404 & Thanks
3. Header
4. Main
5. Footer
6. Common Style
┣ Single
┣ Section 
7.Module
8. Page

####################################*/
/*====================================

1. General

====================================*/
/*
Root
====================================*/
:root {
	/* メインカラー */
	--mainColor: #007dc8;
	/*====== 背景カラー ======*/
	/* コンテンツ背景カラー */
	--contentsBg: #F4F5F7;
	/* 下層ページトップ背景カラー */
	--lowerTopBg: #D7E1FA;
	/* 表組み項目名背景カラー */
	--tableItemBg: #F0F5FA;
	/* フォーム項目名背景カラー */
	--formItemBg: #F0F5FA;
	/* カテゴリーリンク背景カラー */
	--categoryLinkBg: #D7E1FA;
	/* メール問い合わせボタン背景カラー */
	--mailBtnBg: #022993;
	/*====== テキストカラー ======*/
	/* テキストカラー */
	--textColor: #333;
	/* リンクテキストカラー */
	--linkTextColor: #0c4876;
	/*====== ページネーションカラー ======*/
	/* ページネーションテキスト、矢印カラー */
	--pnColor: #aaa;
	/* ページネーションhoverテキスト、矢印カラー */
	--pnHoverColor: #333;
	/* ページネーションCurrentテキスト、矢印カラー */
	--pnCurrentColor: #333;
	/* ページネーションhover背景カラー */
	--pnHoverBg: #f6f6f6;
	/* ページネーションCurrent背景カラー */
	--pnCurrentBg: #f6f6f6;
	/*====== フォント ======*/
	--gothic: "NotoSansJp", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	--mincho: "NotoSerifJp", "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	/*====== width ======*/
	--maxWidth768: 768px;
	--maxWidth500: 500px;
	--maxWidth375: 375px;
	--maxWidth300: 300px;
	/*====== other ======*/
}
/*
Element
====================================*/
body {
	color: var(--textColor);
}
/*
Decoration
====================================*/
/*
Css Animation
====================================*/
/* fade */
.css_fade {
	opacity: 0;
	animation-name: css_fade;
	animation-duration: 3s;
	animation-timing-function: ease;
	animation-delay: 1s;
	animation-direction: normal;
	animation-fill-mode: forwards;
}
@keyframes css_fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/* text fade */
.css_textSplitFade {
	opacity: 0;
}
.css_textSplitFade > span {
	opacity: 0;
	animation: css_textSplitFade 1s ease-out forwards;
}
@keyframes css_textSplitFade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/*
Plugin Overwrite
====================================*/
/*
Slick
---------------------------------------------------------------*/
/*
default.css Overwrite
====================================*/
/*
Other
====================================*/
/*====================================

2. Site Common Style

====================================*/
/*
Pagination
====================================*/
/*
List
---------------------------------------------------------------*/
.pn_list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 50px;
	background: #fff;
	margin: 90px 0 0;
}
.pn_list .listArrow::before, .pn_list .listArrow::after {
	content: '';
	position: absolute;
	top: calc(50% + 3px);
	width: 9px;
	height: 9px;
	-webkit-transform: rotate(45deg) translate(-50%, -50%);
	transform: rotate(45deg) translate(-50%, -50%);
	transition: .3s;
}
.pn_list .listPagerBlk {
	display: flex;
	align-items: center;
	gap: 15px;
}
.pn_list .listPagerPrevious::before {
	border-bottom: solid 2px rgba(112, 112, 112, 0.5);
	border-left: solid 2px rgba(112, 112, 112, 0.5);
	left: calc(50% - 2px);
}
.pn_list .listPagerBlk a, .pn_list .listPagerBlk span {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 40px;
	width: 40px;
	color: rgba(112, 112, 112, 0.5);
	border-radius: 5px;
}
.pn_list .listPagerBlk span.listPagerNum {
	color: var(--pnCurrentColor);
	background: var(--pnCurrentBg);
}
.pn_list .listPagerNext::before {
	border-top: solid 2px var(--pnColor);
	border-right: solid 2px var(--pnColor);
	right: calc(50% - 2px);
}
.pn_list .listPagerPrevious:hover::before {
	border-bottom: solid 2px var(--pnHoverColor);
	border-left: solid 2px var(--pnHoverColor);
}
.pn_list .listPagerBlk a:hover {
	color: var(--pnHoverColor);
	background: var(--pnHoverBg);
	opacity: 1;
}
.pn_list .listPagerNext:hover::before {
	border-top: solid 2px var(--pnHoverColor);
	border-right: solid 2px var(--pnHoverColor);
}
.pn_list .listFirstBlk, .pn_list .listLastBlk {
	width: 100px;
	height: 100%;
}
.pn_list .listFirstBlk a, .pn_list .listLastBlk a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}
.pn_list .listFirstBlk a:hover, .pn_list .listLastBlk a:hover {
	background: var(--pnHoverBg);
}
.pn_list .listFirstBlk a {
	border-right: solid 1px #E2E6EB;
}
.pn_list .listFirstBlk a::before {
	border-bottom: solid 2px var(--pnColor);
	border-left: solid 2px var(--pnColor);
	left: 50%;
}
.pn_list .listFirstBlk a::after {
	border-bottom: solid 2px var(--pnColor);
	border-left: solid 2px var(--pnColor);
	left: calc(50% - 7px);
}
.pn_list .listFirstBlk a:hover::before {
	border-bottom: solid 2px var(--pnHoverColor);
	border-left: solid 2px var(--pnHoverColor);
}
.pn_list .listFirstBlk a:hover::after {
	border-bottom: solid 2px var(--pnHoverColor);
	border-left: solid 2px var(--pnHoverColor);
}
.pn_list .listLastBlk a {
	border-left: solid 1px #E2E6EB;
}
.pn_list .listLastBlk a::before {
	border-top: solid 2px var(--pnColor);
	border-right: solid 2px var(--pnColor);
	right: 50%;
}
.pn_list .listLastBlk a::after {
	border-top: solid 2px var(--pnColor);
	border-right: solid 2px var(--pnColor);
	right: calc(50% - 7px);
}
.pn_list .listLastBlk a:hover::before {
	border-top: solid 2px var(--pnHoverColor);
	border-right: solid 2px var(--pnHoverColor);
}
.pn_list .listLastBlk a:hover::after {
	border-top: solid 2px var(--pnHoverColor);
	border-right: solid 2px var(--pnHoverColor);
}
@media screen and (max-width: 1024px) {
	.pn_list {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		height: 40px;
		background: #fff;
		margin: 50px 0 0;
	}
	.pn_list .listArrow::before, .pn_list .listArrow::after {
		content: '';
		position: absolute;
		top: calc(50% + 3px);
		width: 7px;
		height: 7px;
		-webkit-transform: rotate(45deg) translate(-50%, -50%);
		transform: rotate(45deg) translate(-50%, -50%);
		transition: .3s;
	}
	.pn_list .listPagerBlk {
		display: flex;
		align-items: center;
		gap: 10px;
	}
	.pn_list .listPagerPrevious::before {
		border-bottom: solid 2px rgba(112, 112, 112, 0.5);
		border-left: solid 2px rgba(112, 112, 112, 0.5);
		left: calc(50% - 2px);
	}
	.pn_list .listPagerBlk a, .pn_list .listPagerBlk span {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		height: 35px;
		width: 35px;
		color: rgba(112, 112, 112, 0.5);
		border-radius: 5px;
	}
	.pn_list .listPagerBlk span.listPagerNum {
		color: var(--pnCurrentColor);
		background: var(--pnCurrentBg);
	}
	.pn_list .listPagerNext::before {
		border-top: solid 2px var(--pnColor);
		border-right: solid 2px var(--pnColor);
		right: calc(50% - 2px);
	}
	.pn_list .listPagerPrevious:hover::before {
		border-bottom: solid 2px var(--pnHoverColor);
		border-left: solid 2px var(--pnHoverColor);
	}
	.pn_list .listPagerBlk a:hover {
		color: var(--pnHoverColor);
		background: var(--pnHoverBg);
		opacity: 1;
	}
	.pn_list .listPagerNext:hover::before {
		border-top: solid 2px var(--pnHoverColor);
		border-right: solid 2px var(--pnHoverColor);
	}
	.pn_list .listFirstBlk, .pn_list .listLastBlk {
		width: 60px;
		height: 100%;
	}
	.pn_list .listFirstBlk a, .pn_list .listLastBlk a {
		display: block;
		position: relative;
		width: 100%;
		height: 100%;
	}
	.pn_list .listFirstBlk a:hover, .pn_list .listLastBlk a:hover {
		background: var(--pnHoverBg);
	}
	.pn_list .listFirstBlk a {
		border-right: solid 1px #E2E6EB;
	}
	.pn_list .listFirstBlk a::before {
		border-bottom: solid 2px var(--pnColor);
		border-left: solid 2px var(--pnColor);
		left: 50%;
	}
	.pn_list .listFirstBlk a::after {
		border-bottom: solid 2px var(--pnColor);
		border-left: solid 2px var(--pnColor);
		left: calc(50% - 7px);
	}
	.pn_list .listFirstBlk a:hover::before {
		border-bottom: solid 2px var(--pnHoverColor);
		border-left: solid 2px var(--pnHoverColor);
	}
	.pn_list .listFirstBlk a:hover::after {
		border-bottom: solid 2px var(--pnHoverColor);
		border-left: solid 2px var(--pnHoverColor);
	}
	.pn_list .listLastBlk a {
		border-left: solid 1px #E2E6EB;
	}
	.pn_list .listLastBlk a::before {
		border-top: solid 2px var(--pnColor);
		border-right: solid 2px var(--pnColor);
		right: 50%;
	}
	.pn_list .listLastBlk a::after {
		border-top: solid 2px var(--pnColor);
		border-right: solid 2px var(--pnColor);
		right: calc(50% - 7px);
	}
	.pn_list .listLastBlk a:hover::before {
		border-top: solid 2px var(--pnHoverColor);
		border-right: solid 2px var(--pnHoverColor);
	}
	.pn_list .listLastBlk a:hover::after {
		border-top: solid 2px var(--pnHoverColor);
		border-right: solid 2px var(--pnHoverColor);
	}
}
/*
Detail
---------------------------------------------------------------*/
.pn_detail {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 55px;
	margin: 70px 0 0;
}
.pn_detail > * {
	height: 100%;
}
.pn_detail .detailpreviousBlk, .pn_detail .detailNextBlk {
	width: 100px;
}
.pn_detail .detailpreviousBlk a, .pn_detail .detailNextBlk a {
	position: relative;
	display: block;
	height: 100%;
}
.pn_detail a {
	background: #fff;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
	border-radius: 6px;
}
.pn_detail a:hover {
	background: var(--pnHoverBg);
	opacity: 1;
}
.pn_detail .detailpreviousBlk a::before, .pn_detail .detailpreviousBlk a::after {
	content: '';
	position: absolute;
	top: calc(50% + 3px);
	width: 15px;
	height: 15px;
	border-bottom: solid 3px var(--pnColor);
	border-left: solid 3px var(--pnColor);
	-webkit-transform: rotate(45deg) translate(-50%, -50%);
	transform: rotate(45deg) translate(-50%, -50%);
	transition: .3s;
}
.pn_detail .detailpreviousBlk a::before {
	left: 50%;
}
.pn_detail .detailpreviousBlk a::after {
	left: calc(50% - 10px);
}
.pn_detail .detailpreviousBlk a:hover::before, .pn_detail .detailpreviousBlk a:hover::after {
	border-bottom: solid 2px var(--pnHoverColor);
	border-left: solid 2px var(--pnHoverColor);
}
.pn_detail .detailNextBlk a::before, .pn_detail .detailNextBlk a::after {
	content: '';
	position: absolute;
	top: calc(50% + 3px);
	width: 15px;
	height: 15px;
	border-top: solid 3px var(--pnColor);
	border-right: solid 3px var(--pnColor);
	-webkit-transform: rotate(45deg) translate(-50%, -50%);
	transform: rotate(45deg) translate(-50%, -50%);
	transition: .3s;
}
.pn_detail .detailNextBlk a::before {
	right: 50%;
}
.pn_detail .detailNextBlk a::after {
	right: calc(50% - 10px);
}
.pn_detail .detailNextBlk a:hover::before, .pn_detail .detailNextBlk a:hover::after {
	border-top: solid 2px var(--pnHoverColor);
	border-right: solid 2px var(--pnHoverColor);
}
.pn_detail .detailBackBlk a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 300px;
	height: 100%;
	font-size: 20px;
}
@media screen and (max-width: 1024px) {
	.pn_detail {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		height: 45px;
		margin: 50px 0 0;
	}
	.pn_detail > * {
		height: 100%;
	}
	.pn_detail .detailpreviousBlk, .pn_detail .detailNextBlk {
		width: 60px;
	}
	.pn_detail .detailpreviousBlk a, .pn_detail .detailNextBlk a {
		position: relative;
		display: block;
		height: 100%;
	}
	.pn_detail a {
		background: #fff;
		box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
		border-radius: 6px;
	}
	.pn_detail a:hover {
		background: var(--pnHoverBg);
		opacity: 1;
	}
	.pn_detail .detailpreviousBlk a::before, .pn_detail .detailpreviousBlk a::after {
		content: '';
		position: absolute;
		top: calc(50% + 3px);
		width: 11px;
		height: 11px;
		border-bottom: solid 2px var(--pnColor);
		border-left: solid 2px var(--pnColor);
		-webkit-transform: rotate(45deg) translate(-50%, -50%);
		transform: rotate(45deg) translate(-50%, -50%);
		transition: .3s;
	}
	.pn_detail .detailpreviousBlk a::before {
		left: 50%;
	}
	.pn_detail .detailpreviousBlk a::after {
		left: calc(50% - 10px);
	}
	.pn_detail .detailpreviousBlk a:hover::before, .pn_detail .detailpreviousBlk a:hover::after {
		border-bottom: solid 2px var(--pnHoverColor);
		border-left: solid 2px var(--pnHoverColor);
	}
	.pn_detail .detailNextBlk a::before, .pn_detail .detailNextBlk a::after {
		content: '';
		position: absolute;
		top: calc(50% + 3px);
		width: 11px;
		height: 11px;
		border-top: solid 2px var(--pnColor);
		border-right: solid 2px var(--pnColor);
		-webkit-transform: rotate(45deg) translate(-50%, -50%);
		transform: rotate(45deg) translate(-50%, -50%);
		transition: .3s;
	}
	.pn_detail .detailNextBlk a::before {
		right: 50%;
	}
	.pn_detail .detailNextBlk a::after {
		right: calc(50% - 10px);
	}
	.pn_detail .detailNextBlk a:hover::before, .pn_detail .detailNextBlk a:hover::after {
		border-top: solid 2px var(--pnHoverColor);
		border-right: solid 2px var(--pnHoverColor);
	}
	.pn_detail .detailBackBlk a {
		display: flex;
		align-items: center;
		justify-content: center;
		width: auto;
		height: 100%;
		font-size: 17px;
		padding: 0 40px;
	}
}
/*
Form
====================================*/
/*
Input
----------------------------------------------------------------*/
.form_input {
	max-width: 750px;
	margin: 50px auto 0;
}
.form_input .inputRow {
	display: flex;
}
.form_input .inputItem {
	position: relative;
	display: flex;
	align-items: center;
	width: 175px;
	padding: calc(25px / 2) 0;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
}
.form_input .inputItem.vertical-top{
	align-items: flex-start;
}
.form_input .inputItem ._must {
	font-size: 20px;
	margin-left: 3px;
	color: #BF2121;
}
.form_input .inputValue {
	flex: 1;
	padding: calc(25px / 2) 0;
	display: flex;
	align-items: center;
}
.form_input .inputValue.radio{
	margin-bottom: 30px;
}
.form_input .wpcf7-form-control-wrap {
	width: 100%;
}
.form_input input[type="text"],
.form_input input[type="tel"],
.form_input input[type="email"],
.form_input textarea {
	width: 100%;
	height: 40px;
	border-radius: 7px;
	border: solid #707070 1px;
	background: #FFF;
	padding: 0px 10px;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
}
.form_input textarea {
	width: 100% !important;
	height: 230px;
	padding: 10px;
}
.form_input input::placeholder,
.form_input textarea::placeholder {
	font-size: 16px;
	color: #b4b7bc;
}
.form_input input[type="checkbox"],
.form_input input[type="radio"] {
	width: 18px;
	height: 18px;
	cursor: pointer;
}
.form_input .wpcf7-form-control {
	display: flex;
	flex-direction: column;
	gap: 7px 0;
}
.form_input .wpcf7-list-item {
	margin: 0;
	height: 24px;
}
.form_input .wpcf7-list-item label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.form_input .wpcf7-list-item-label {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
}
.form_input input[type="file"] {
	font-size: 14px;
}
.form_input .wpcf7-not-valid-tip {
	width: 100%;
	font-size: 14px;
	margin: 10px 0 0;
}
.form_agree {
	margin: 50px 0 0;
	text-align: center;
}
.form_agree .wpcf7-list-item {
	margin: 0;
	display: flex;
	justify-content: center;
    align-items: center;
}
.form_agree label {
	display: flex;
	align-items: center;
	gap: 8px;
}
.form_agree .wpcf7-list-item-label {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
}
.form_agree input[type="checkbox"] {
	width: 20px;
	height: 20px;
}
.form_submit {
	position: relative;
	width: 300px;
	text-align: center;
	margin: 35px auto 0;
}
.form_submit input[type="submit"] {
	width: 100%;
	height: 70px;
	font-weight: 600;
	font-size: 30px;
	line-height: 48px;
	color: #fff;
	transition: .3s;
	border-radius: 10px;
	background: #DDD;
}
.form_submit input[type="submit"]:hover {
	opacity: .7;
}
.form_submit .wpcf7-spinner {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
	.form_input {
		max-width: 750px;
		margin: 40px auto 0;
	}
	.form_input .inputRow {
		display: flex;
		flex-flow: column;
	}
	.form_input .inputItem {
		position: relative;
		display: flex;
		align-items: center;
		width: 100%;
		padding: 5px 0 0px;
		font-weight: 600;
		font-size: 15px;
		line-height: 20px;
	}
	.form_input .inputItem.vertical-top{
		align-items: flex-start;
	}
	.form_input .inputItem ._must {
		font-size: 18px;
		margin-left: 5px;
		color: #BF2121;
	}
	.form_input .inputValue {
		flex: 1;
		padding: 5px 0 15px;
		display: flex;
		align-items: center;
	}
	.form_input .inputValue.radio{
		margin-bottom: 10px;
	}
	.form_input .wpcf7-form-control-wrap {
		width: 100%;
	}
	.form_input input[type="text"],
	.form_input input[type="tel"],
	.form_input input[type="email"],
	.form_input textarea {
		width: 100%;
		height: 40px;
		border-radius: 7px;
		border: solid #707070 1px;
		background: #FFF;
		padding: 0px 10px;
		font-weight: 500;
		font-size: 16px;
		line-height: 24px;
	}
	.form_input textarea {
		width: 100% !important;
		height: 230px;
		padding: 10px;
	}
	.form_input input::placeholder,
	.form_input textarea::placeholder {
		font-size: 16px;
		color: #b4b7bc;
	}
	.form_input input[type="checkbox"],
	.form_input input[type="radio"] {
		width: 18px;
		height: 18px;
		cursor: pointer;
	}
	.form_input .wpcf7-form-control {
		display: flex;
		flex-direction: column;
		gap: 10px 0;
		margin-top: 7px;
	}
	.form_input .wpcf7-list-item {
		margin: 0;
		height: 24px;
	}
	.form_input .wpcf7-list-item label {
		display: inline-flex;
		align-items: center;
		gap: 8px;
	}
	.form_input .wpcf7-list-item-label {
		font-weight: 600;
		font-size: 16px;
		line-height: 22px;
	}
	.form_input input[type="file"] {
		font-size: 14px;
	}
	.form_input .wpcf7-not-valid-tip {
		width: 100%;
		font-size: 14px;
		margin: 10px 0 0;
	}
	.form_agree {
		margin: 20px 0 0;
		text-align: center;
	}
	.form_agree .wpcf7-list-item {
		margin: 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.form_agree label {
		display: flex;
		align-items: center;
		gap: 8px;
	}
	.form_agree .wpcf7-list-item-label {
		font-weight: 600;
		font-size: 15px;
		line-height: 20px;
	}
	.form_agree input[type="checkbox"] {
		width: 20px;
		height: 20px;
	}
	.form_submit {
		position: relative;
		width: 250px;
		text-align: center;
		margin: 35px auto 0;
	}
	.form_submit input[type="submit"] {
		width: 100%;
		height: 50px;
		font-weight: 600;
		font-size: 20px;
		line-height: 32px;
		color: #fff;
		transition: .3s;
		border-radius: 10px;
		background: #007DC8;
		background: #cdcdcd;
	}
	.form_submit input[type="submit"]:hover {
		opacity: .7;
	}
	.form_submit .wpcf7-spinner {
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}
}
/*
Privacy Policy
----------------------------------------------------------------*/
.form_pp {
	margin: 60px auto 0;
	max-width: 750px;
	height: 300px;
	border-radius: 5px;
	background: #fff;
	border: 1px solid #cecece;
	padding: 25px 24px;
	overflow: auto;
}
.form_pp dt {
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
}
.form_pp dd {
	font-weight: 600;
	font-size: 14px;
	line-height: 24px;
	margin-top: 5px;
}
@media screen and (max-width: 1024px) {
	.form_pp {
		margin: 50px auto 0;
		max-width: 750px;
		height: 200px;
		border-radius: 5px;
		background: #fff;
		border: 1px solid #cecece;
		padding: 17px 15px;
		overflow: auto;
	}
	.form_pp dt {
		font-weight: 700;
		font-size: 16px;
		line-height: 22px;
	}
	.form_pp dd {
		font-weight: 600;
		font-size: 13px;
		line-height: 22px;
		margin-top: 5px;
	}
}
/*
Thanks & 404
====================================*/
.thanks_section .linkBlk,
.error_section .linkBlk {
	text-align: center;
	margin: 45px 0 0;
}
.thanks_section .linkBlk a,
.error_section .linkBlk a {
	display: inline-block;
	width: 250px;
	line-height: 50px;
	font-size: 16px;
	border: solid 1px var(--mainColor);
	border-radius: 9999px;
}
.thanks_section .linkBlk a:hover,
.error_section .linkBlk a:hover {
	opacity: 1;
	background: var(--mainColor);
	color: #fff;
}
.thanks_section {
	overflow: hidden;
	padding: 60px 0 130px;
}
.thanks_section .headBlk {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	padding: 20px 0;
	background: var(--contentsBg);
}
.thanks_section .head {
	text-align: center;
	font-size: 24px;
}
.thanks_section .mainBlk {
	margin: 35px 0 0;
}
.thanks_section .mainDesc {
	font-size: 16px;
	line-height: 26px;
	text-align: center;
}
.error_section {
	overflow: hidden;
	padding: 60px 0 130px;
}
.error_section .headBlk {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	padding: 20px 0;
	background: var(--contentsBg);
}
.error_section .head {
	text-align: center;
	font-size: 30px;
	font-weight: 600;
}
.error_section .head span {
	font-size: 22px;
	display: block;
}
.error_section .mainBlk {
	margin: 35px 0 0;
}
.error_section .mainDesc {
	font-size: 16px;
	line-height: 26px;
	text-align: center;
}
@media screen and (max-width: 1024px) {
	.thanks_section {
		padding: 40px 0 80px;
	}
	.thanks_section .headBlk {
		padding: 15px 0;
	}
	.thanks_section .head {
		text-align: center;
		font-size: 20px;
	}
	.thanks_section .mainBlk {
		margin: 30px 0 0;
	}
	.thanks_section .mainDesc {
		font-size: 14px;
		line-height: 24px;
	}
	.thanks_section .linkBlk {
		margin: 40px 0 0;
	}
	.error_section {
		padding: 40px 0 80px;
	}
	.error_section .head {
		font-size: 24px;
	}
	.error_section .head span {
		font-size: 16px;
	}
	.error_section .mainBlk {
		margin: 30px 0 0;
	}
	.error_section .mainDesc {
		font-size: 14px;
		line-height: 24px;
	}
	.thanks_section .linkBlk a,
	.error_section .linkBlk a {
		display: inline-block;
		width: 250px;
		line-height: 40px;
		font-size: 15px;
		border: solid 1px var(--mainColor);
		border-radius: 9999px;
	}
}
/*====================================

3. Header

====================================*/
.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
	width: 100%;
	height: 100px;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
	background: white;
}
.header .inner {
	height: 100%;
	padding: 0 0 0 20px;
	display: flex;
	align-items: center;
	gap: 0 50px;
}
.header .logoBlk {
	flex-shrink: 0;
	display: flex;
}
.header .logoBlk a img {
	width: 290px;
}
.header .menuBlk {
	display: flex;
	flex: 1;
	flex-shrink: 0;
	height: 100%;
}
.header .menuBlk nav {
	display: flex;
	flex: 1;
	justify-content: space-between;
	gap: 0 30px;
}
.header .menuBlk nav > ul {
	display: flex;
	flex-shrink: 0;
	gap: 35px;
	height: 100%;
}
.header .menuBlk nav > ul > li {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
}
.header .menuBlk nav > ul > li > a {
	font-weight: 600;
	font-size: 15px;
	line-height: 21px;
}
.header .menuBlk nav > ul > li > a._active {
	color: var(--mainColor);
}
.header .menuBlk nav > ul > li > ul {
	position: absolute;
	top: 80%;
	left: -30px;
	left: clamp(-1.25rem, 1.08rem + -3.64vw, -1.875rem);
	display: flex;
	gap: 15px;
	flex-direction: column;
	background: #fff;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
	z-index: 1;
	padding: clamp(1.25rem, -1.08rem + 3.64vw, 1.875rem);
	min-width: 190px;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	pointer-events: none;
}
.header .menuBlk > nav > ul > li._parent:hover > ul {
	top: 100%;
	opacity: 1;
	visibility: visible;
	pointer-events: initial;
}
.header .menuBlk nav > ul > li > ul > li > a {
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
}
.header .menuBlk .menuContact{
	display: flex;
	align-items: center;
}
.header .menuBlk .menuContact > ._tel{
	width: 320px;
	height: 100%;
	background: #007DC8;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	position: relative;
}
.header .menuBlk .menuContact > ._tel::after{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto 0;
	content: "";
	width: 1px;
	height: 80px;
	border-right: 1px solid #FFF;
}
.header .menuBlk .menuContact > ._tel > ._num{
	font-weight: 900;
	font-size: 37px;
	line-height: 45px;
	text-align: center;
	color: #fff;
	display: flex;
	align-items: center;
}
.header .menuBlk .menuContact > ._tel > ._num::before{
	content: "";
	display: block;
	width: 23px;
	height: 30px;
	background-image: url('images/icon_tel.svg');
	margin-top: 4px;
	margin-right: 3px;
}
.header .menuBlk .menuContact > ._tel > ._time{
	font-weight: 600;
	font-size: 14px;
	line-height: 24px;
	color: #fff;
}
.header .menuBlk .menuContact > ._tel > ._time span{
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
}
.header .menuBlk .menuContact > ._mail{
	width: 130px;
	height: 100%;
	background: #007DC8;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
}
.header .menuBlk .menuContact > ._mail > ._txt{
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	color: #fff;
}
.header .menuBlk .menuContact > ._mail > ._txt::after{
	content: "";
	display: block;
	width: 38px;
	height: 28px;
	background-image: url('images/icon_mail.svg');
	margin: 7px auto 0;
}
@media screen and (max-width: 1024px) {
	.header {
		height: 55px;
		box-shadow: none;
	}
	.header .inner {
		background: white;
		padding: 0 5px 0 2%;
		box-shadow: 0 2px 10px rgb(0 0 0 / 5%);
		justify-content: space-between;
	}
	.header .logoBlk a img {
		width: 220px;
	}
	.header .menuBlk {
		position: absolute;
		top: var(--headerH, 55px);
		left: 0;
		height: calc(100dvh - var(--headerH, 55px));
		z-index: -1;
		width: 100%;
		background: white;
		overflow: auto;
		padding: 20px 0 60px;
		opacity: 0;
		visibility: hidden;
		transition: .3s;
		display: block;
		flex-shrink: unset;
	}
	.header .menuBlk::-webkit-scrollbar {
		display: none;
	}
	.header._menuOpen .menuBlk {
		opacity: 1;
		visibility: visible;
	}
	.header .menuBlk > * {
		width: 92%;
		max-width: var(--maxWidth768);
		margin: auto;
	}
	.header .menuBlk nav{
		display: flex;
		flex-flow: column;
    	flex: 1;
    	justify-content: space-between;
    	gap: 0 30px;
	}
	.header .menuBlk nav > ul {
		display: block;
		height: auto;
	}
	.header .menuBlk nav > ul > li {
		position: relative;
		display: block;
		height: auto;
		border-bottom: 1px solid #ccc;
	}
	.header .menuBlk nav > ul > li > span {
		position: absolute;
		top: 0;
		right: 0;
		height: 100%;
		width: 70px;
	}
	.header .menuBlk nav > ul > li > a {
		display: flex;
		font-size: 15px;
		padding: 15px 10px;
	}
	.header .menuBlk nav > ul > li._parent > a {
		position: relative;
	}
	.header .menuBlk nav > ul > li._parent::before {
		content: '';
		border-style: solid;
		border-width: 5px 5px 0px 5px;
		border-color: var(--mainColor) transparent transparent transparent;
		position: absolute;
		top: 25px;
		right: 15px;
		transform: translateY(0%);
		transition: .3s;
	}
	.header .menuBlk nav > ul > li._parent::before {
		transform: translateY(0%);
	}
	.header .menuBlk nav > ul > li._parent._childOpen::before {
		transform: rotateX(180deg);
	}
	.header .menuBlk nav > ul > li > ul {
		display: flex;
		flex-direction: column;
		gap: 0;
		margin: 0;
		padding: 0 0 0 20px;
		transition: .3s;
		position: unset;
		background: unset;
		box-shadow: unset;
		min-width: unset;
		opacity: unset;
		visibility: unset;
	}
	header .menuBlk nav > ul > li > ul {
		overflow-y: scroll;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	.header .menuBlk nav > ul > li > ul::-webkit-scrollbar {
		display: none;
	}
	.header .menuBlk > nav > ul > li._parent:hover > ul {
		top: 100%;
		opacity: unset;
		visibility: unset;
	}
	.header .menuBlk nav > ul > li._childOpen > ul {
		gap: 15px 0;
		margin: 5px 0 20px;
	}
	.header .menuBlk nav > ul > li > ul > li {
		height: 0;
		transition: .3s;
	}
	.header .menuBlk nav > ul > li._childOpen > ul > li {
		height: auto;
	}
	.header .menuBlk nav > ul > li > ul > li > a {
		font-size: 15px;
		opacity: 0;
		visibility: hidden;
	}
	.header .menuBlk nav > ul > li._childOpen > ul > li > a {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
	.header .menuBlk .menuContact{
		display: flex;
		flex-flow: column;
		gap: 7px 0;
		align-items: center;
		margin-top: 20px;
	}
	.header .menuBlk .menuContact > ._tel{
		width: 80%;
		height: 100%;
		background: #007DC8;
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
		position: relative;
		padding: 8px 0;
	}
	.header .menuBlk .menuContact > ._tel::after{
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		margin: auto 0;
		content: "";
		width: 1px;
		height: 80px;
		border-right: 1px solid #FFF;
	}
	.header .menuBlk .menuContact > ._tel > ._num{
		font-weight: 900;
		font-size: 30px;
		line-height: 38px;
		text-align: center;
		color: #fff;
		display: flex;
		align-items: center;
	}
	.header .menuBlk .menuContact > ._tel > ._num::before{
		content: "";
		display: block;
		width: 18px;
		height: 23px;
		background: url('images/icon_tel.svg') no-repeat;
		background-size: contain;
		margin-top: 6px;
		margin-right: 2px;
	}
	.header .menuBlk .menuContact > ._tel > ._time{
		font-weight: 600;
		font-size: 13px;
		line-height: 21px;
		color: #fff;
	}
	.header .menuBlk .menuContact > ._tel > ._time span{
		font-weight: 600;
		font-size: 15px;
		line-height: 21px;
	}
	.header .menuBlk .menuContact > ._mail{
		width: 80%;
		height: 100%;
		background: #007DC8;
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
		padding: 8px 0;
	}
	.header .menuBlk .menuContact > ._mail > ._txt{
		font-weight: 600;
		font-size: 16px;
		line-height: 20px;
		color: #fff;
	}
	.header .menuBlk .menuContact > ._mail > ._txt::after{
		content: "";
		display: block;
		width: 30px;
		height: 22px;
		background: url('images/icon_mail.svg') no-repeat;
		background-size: contain;
		margin: 10px auto 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 {
	margin: var(--headerH, clamp(4.063rem, 0.568rem + 5.45vw, 5rem)) 0 0;
}
@media screen and (max-width: 1024px) {
	main {
		margin: var(--headerH, 55px) 0 0;
	}
}
/*====================================

5. Footer

====================================*/
.footer {
	padding: 65px 0 0px;
	background: #007DC8;
}
.footer .footerBlk{
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
	gap: 0 30px;
	padding-bottom: 50px;
}
.footer .footerBlk .addressDl{
	display: flex;
	flex-wrap: wrap;
	width: 455px;
	gap: 25px 0;
}
.footer .footerBlk .addressDt{
	width: 100px;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	color: #fff;
}
.footer .footerBlk .addressDd{
	width: calc(100% - 100px);
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	color: #fff;
}
.footer .footerBlk .navUl{
	width: 360px;
	display: flex;
	flex-wrap: wrap;
	gap: 13px 0;
}
.footer .footerBlk .navLi{
	width: 120px;
	font-weight: 500;
	font-size: 15px;
	line-height: 21px;
	color: #fff;
}
.footer .copyrightBlk{
	border-top: 1px solid #fff;
	padding: 20px 0 30px;
}
.footer .copyrightBlk .copyright{
	font-weight: 500;
	font-size: 12px;
	line-height: 16px;
	text-align: center;
	color: #fff;
}
.footer .copyrightBlk .recaptcha{
	font-weight: 500;
	font-size: 12px;
	line-height: 16px;
	text-align: center;
	color: #fff;
}
@media screen and (max-width: 1024px) {
	.footer {
		padding: 30px 0 0px;
		background: #007DC8;
	}
	.footer .logoBlk{
		width: 75%;
	}
	.footer .footerBlk{
		display: flex;
		flex-flow: column;
		justify-content: space-between;
		margin-top: 25px;
		gap: 30px 30px;
		padding-bottom: 20px;
	}
	.footer .footerBlk .addressDl{
		display: flex;
		flex-flow: column;
		flex-wrap: wrap;
		width: 100%;
		gap: 5px 0;
		order: 2;
	}
	.footer .footerBlk .addressDt{
		width: 100%;
		font-weight: 500;
		font-size: 14px;
		line-height: 20px;
		color: #fff;
	}
	.footer .footerBlk .addressDd{
		width: 100%;
		font-weight: 500;
		font-size: 14px;
		line-height: 20px;
		color: #fff;
		margin-bottom: 10px;
	}
	.footer .footerBlk .navUl{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		gap: 10px 10px;
		order: 1;
	}
	.footer .footerBlk .navLi{
		width: calc((100% - 10px) / 2);
		font-weight: 500;
		font-size: 16px;
		line-height: 24px;
		color: #fff;
	}
	.footer .copyrightBlk{
		border-top: 1px solid #fff;
		padding: 25px 0 30px;
	}
	.footer .copyrightBlk .copyright{
		font-weight: 500;
		font-size: 12px;
		line-height: 16px;
		text-align: center;
		color: #fff;
	}
	.footer .copyrightBlk .recaptcha{
		font-weight: 500;
		font-size: 12px;
		line-height: 16px;
		text-align: center;
		color: #fff;
	}
}
/*====================================

6. Common Style

====================================*/
/*
6.1 Single
====================================*/
.cmn_bgColor {
	background-color: var(--contentsBg);
}
.cmn_outer {
	padding: 90px 0;
}
.cmn_inner {
	max-width: 1080px;
	padding: 0 40px;
	margin: auto;
}
.cmn_inner._small {
	max-width: 750px;
	padding: 0;
}
.cmn_link1 {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 350px;
	height: 70px;
	font-size: 20px;
	color: #fff;
	background: var(--mainColor);
}
.cmn_link1:before {
	content: '';
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translate(0%, -50%);
	width: 15px;
	height: 1px;
	background: white;
	transition: .3s;
}
@media screen and (min-width: 1025px) {
	.cmn_link1:hover::before {
		right: 0px;
		opacity: 0;
	}
}
/*head*/
.cmn_head1 {
	font-size: 30px;
	text-align: center;
}
/*title*/
.cmn_title1 {
	font-size: 24px;
}
/*text*/
.cmn_text1 {
	font-size: 15px;
	line-height: 2;
}
@media screen and (max-width: 1024px) {
	.cmn_outer {
		padding: 60px 0;
	}
	.cmn_inner {
		width: 92%;
		max-width: var(--maxWidth768);
		padding: 0;
	}
	.cmn_link1 {
		width: 100%;
		max-width: var(--maxWidth300);
		height: 55px;
		font-size: 1rem;
	}
	.cmn_link1:before {
	}
	/*head*/
	.cmn_head1 {
		font-size: 20px;
	}
	/*title*/
	.cmn_title1 {
		font-size: 18px;
	}
	/*text*/
	.cmn_text1 {
		font-size: 14px;
		line-height: 1.6;
	}
}
/*
6.2 Section
====================================*/
.cmn_headBlk1{
	position: relative;
}
.cmn_headBlk1 .subHead{
	font-weight: 900;
	font-size: 150px;
	line-height: 210px;
	text-align: center;
	color: rgba(0, 125, 200, 0.1);
}
.cmn_headBlk1 .head{
	font-weight: 700;
	font-size: 40px;
	line-height: 50px;
	text-align: center;
	color: #007dc8;
	position: absolute;
	top: calc(50% + 10px);
	left: 50%;
	transform: translate(-50%, -50%);
}
.cmn_headBlk1 .head .txtBold{
	font-weight: 600;
	font-size: 60px;
	color: #009FFF;
	position: relative;
}
.cmn_headBlk1 .head .txtBold::before{
	content: "";
	display: block;
	width: 78px;
	height: 30px;
	background: url('images/icon_highlight.svg') no-repeat;
	position: absolute;
	top: -20px;
	left: -23px;
}
.cmn_headBlk2{
	position: relative;
}
.cmn_headBlk2 .subHead{
	font-weight: 900;
	font-size: 150px;
	line-height: 210px;
	text-align: center;
	color: rgba(255, 255, 255, 0.4);
}
.cmn_headBlk2 .head{
	font-weight: 700;
	font-size: 40px;
	line-height: 50px;
	text-align: center;
	color: #fff;
	position: absolute;
	top: calc(50% + 10px);
	left: 50%;
	transform: translate(-50%, -50%);
}
.cmn_mv{
	width: 100%;
	height: 400px;
	position: relative;
}
.cmn_mv .inner{
	height: 100%;
}
.cmn_mv .headBlk{
	height: 100%;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	position: relative;
}
.cmn_mv .headBlk .subHead{
	font-weight: 900;
	font-size: 150px;
	line-height: 220px;
	text-align: center;
	color: rgb(255, 255, 255, 0.5);
}
.cmn_mv .headBlk .head{
	font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    position: absolute;
    top: calc(50% + 10px);
    left: 50%;
    transform: translate(-50%, -50%);
	text-shadow: 0px 0px 6px #007dc8;
}
.cmn_mv .mvBg{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.cmn_mv .mvBg img{
	width: 100%;
	height: 100%;
}
.cmn_mv2{
	width: 100%;
    height: 300px;
	background: #009FFF;
}
.cmn_mv2 .inner {
    height: 100%;
}
.cmn_mv2 .headBlk {
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.cmn_mv2 .headBlk .subHead {
    font-weight: 900;
    font-size: 150px;
    line-height: 220px;
    text-align: center;
    color: rgb(255, 255, 255, 0.5);
}
.cmn_mv2 .headBlk .head {
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    position: absolute;
    top: calc(50% + 10px);
    left: 50%;
    transform: translate(-50%, -50%);
}
.cmn_mv3{
	width: 100%;
    height: 300px;
	background: rgb(0, 125, 200, 0.1);
}
.cmn_mv3 .inner {
    height: 100%;
}
.cmn_mv3 .headBlk {
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.cmn_mv3 .headBlk .subHead {
    font-weight: 900;
    font-size: 150px;
    line-height: 220px;
    text-align: center;
    color: rgb(0, 125, 200, 0.1);
}
.cmn_mv3 .headBlk .head {
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    text-align: center;
    color: #007DC8;
    position: absolute;
    top: calc(50% + 10px);
    left: 50%;
    transform: translate(-50%, -50%);
}
.anchorNav{
	display: flex;
	justify-content: center;
	margin: 55px auto 0;
}
.anchorLink{
	display: block;
	font-weight: 500;
	font-size: 20px;
	line-height: 30px;
	padding: 0 15px;
}
.anchorLink:not(:first-of-type){
	border-left: 1px solid #707070;
}
.banner_cta{
	width: 100%;
	background: url('images/banner_cta.webp');
	background-size: cover;
	background-position: right;
	padding: 55px 0 40px;
}
.banner_cta .ctaTtl{
	font-weight: 700;
	font-size: 50px;
	line-height: 65px;
	color: #fff;
	border: none;
}
.banner_cta .ctaTxt{
	font-weight: 700;
	font-size: 23px;
	line-height: 32px;
	color: #fff;
	margin-top: 30px;
}
.banner_cta .ctaBlk{
	display: flex;
	align-items: center;
	gap: 0 25px;
}
.banner_cta .ctaTel{
	font-weight: 900;
	font-size: 82px;
	line-height: 100px;
	color: #fff700;
	display: flex;
	align-items: center;
}
.banner_cta .ctaTel::before{
	content: "";
    display: block;
    width: 55px;
    height: 70px;
    margin-top: 10px;
    margin-right: 6px;
	-webkit-mask-image: url('images/icon_tel.svg');
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
    background-color: #fff700;
}
.banner_cta .ctaMail{
	width: 182px;
	height: 70px;
	background: #fff;
	border: 3px solid #009fff;
	border-radius: 10px;
	display: flex;
	align-items: center;
	gap: 0 7px;
	padding: 10px;
}
.banner_cta .ctaMail .mailIcon{
	width: 50px;
	height: 50px;
	background: rgba(0, 125, 200, 0.1);
	border-radius: 50%;
	position: relative;
}
.banner_cta .ctaMail .mailIcon::before{
	content: "";
    display: block;
    width: 30px;
    height: 22px;
	position: absolute;
	top: calc(50% - 1px);
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-mask-image: url('images/icon_mail.svg');
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: #007DC8;
}
.banner_cta .ctaMail .mailTtl{
	font-weight: 700;
	font-size: 16px;
	line-height: 20px;
	color: #007dc8;
}
@media screen and (max-width: 1024px) {
	.cmn_headBlk1{
		position: relative;
	}
	.cmn_headBlk1 .subHead{
		font-weight: 900;
		font-size: 53px;
		line-height: 90px;
		text-align: center;
		color: rgba(0, 125, 200, 0.1);
	}
	.cmn_headBlk1 .head{
		font-weight: 700;
		font-size: 20px;
		line-height: 28px;
		text-align: center;
		color: #007dc8;
		position: absolute;
		top: calc(50% + 2px);
		left: 50%;
		transform: translate(-50%, -50%);
		white-space: nowrap;
	}
	.cmn_headBlk1 .head .txtBold{
		font-weight: 600;
		font-size: 36px;
		color: #009FFF;
		position: relative;
		padding: 0 2px;
	}
	.cmn_headBlk1 .head .txtBold::before{
		content: "";
		display: block;
		width: 50px;
		height: 20px;
		background: url('images/icon_highlight.svg') no-repeat;
		background-size: contain;
		position: absolute;
		top: -13px;
		left: -14px;
	}
	.cmn_headBlk2{
		position: relative;
	}
	.cmn_headBlk2 .subHead{
		font-weight: 900;
		font-size: 70px;
		line-height: 130px;
		text-align: center;
		color: rgba(255, 255, 255, 0.4);
	}
	.cmn_headBlk2 .head{
		font-weight: 700;
		font-size: 24px;
		line-height: 32px;
		text-align: center;
		color: #fff;
		position: absolute;
		top: calc(50% + 5px);
		left: 50%;
		transform: translate(-50%, -50%);
		white-space: nowrap;
	}
	.cmn_mv{
		width: 100%;
		height: 200px;
		position: relative;
	}
	.cmn_mv .inner{
		height: 100%;
	}
	.cmn_mv .headBlk{
		height: 100%;
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
		position: relative;
	}
	.cmn_mv .headBlk .subHead{
		font-weight: 900;
		font-size: 70px;
		line-height: 130px;
		text-align: center;
		color: rgb(255, 255, 255, 0.5);
	}
	.cmn_mv .headBlk .head{
		font-weight: 700;
		font-size: 24px;
		line-height: 32px;
		text-align: center;
		color: #fff;
		position: absolute;
		top: calc(50% + 5px);
		left: 50%;
		transform: translate(-50%, -50%);
		white-space: nowrap;
		text-shadow: 0px 0px 6px #007dc8;
	}
	.cmn_mv .mvBg{
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}
	.cmn_mv .mvBg img{
		width: 100%;
		height: 100%;
	}
	.cmn_mv2{
		width: 100%;
		height: 150px;
		background: #009FFF;
	}
	.cmn_mv2 .inner {
		height: 100%;
	}
	.cmn_mv2 .headBlk {
		height: 100%;
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
		position: relative;
	}
	.cmn_mv2 .headBlk .subHead {
		font-weight: 900;
		font-size: 60px;
		line-height: 120px;
		text-align: center;
		color: rgb(255, 255, 255, 0.5);
	}
	.cmn_mv2 .headBlk .head {
		font-weight: 700;
		font-size: 22px;
		line-height: 30px;
		text-align: center;
		color: #fff;
		position: absolute;
		top: calc(50% + 5px);
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.cmn_mv3{
		width: 100%;
		height: 170px;
		background: rgb(0, 125, 200, 0.1);
	}
	.cmn_mv3 .inner {
		height: 100%;
	}
	.cmn_mv3 .headBlk {
		height: 100%;
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
		position: relative;
	}
	.cmn_mv3 .headBlk .subHead {
		font-weight: 900;
		font-size: 60px;
		line-height: 120px;
		text-align: center;
		color: rgb(0, 125, 200, 0.1);
	}
	.cmn_mv3 .headBlk .head {
		font-weight: 700;
		font-size: 22px;
		line-height: 30px;
		text-align: center;
		color: #007DC8;
		position: absolute;
		top: calc(50% + 5px);
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.anchorNav{
		display: flex;
		justify-content: center;
		margin: 40px auto 0;
	}
	.anchorLink{
		display: block;
		font-weight: 600;
		font-size: 15px;
		line-height: 24px;
		padding: 0 10px;
	}
	.anchorLink:not(:first-of-type){
		border-left: 1px solid #707070;
	}
	.banner_cta{
		width: 100%;
		background: url('images/banner_cta.webp') no-repeat;
		background-size: cover;
		background-position: 85%;
		padding: 25px 0 30px;
	}
	.banner_cta .ctaTtl{
		font-weight: 700;
		font-size: 26px;
		line-height: 34px;
		color: #fff;
		text-shadow: 1px 1px 1px rgba(0, 159, 255, 0.5);
	}
	.banner_cta .ctaTxt{
		font-weight: 700;
		font-size: 18px;
		line-height: 26px;
		color: #fff;
		margin-top: 20px;
		text-shadow: 1px 1px 1px rgba(0, 159, 255, 0.5);
	}
	.banner_cta .ctaBlk{
		display: flex;
		flex-flow: column;
		align-items: flex-start;
		gap: 12px 0;
		margin-top: 10px;
	}
	.banner_cta .ctaTel{
		font-weight: 900;
		font-size: 42px;
		line-height: 55px;
		color: #fff700;
		display: flex;
		align-items: center;
		text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
	}
	.banner_cta .ctaTel::before{
		content: "";
		display: block;
		width: 28px;
		height: 40px;
		margin-top: 7px;
		margin-right: 4px;
		-webkit-mask-image: url('images/icon_tel.svg');
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #fff700;
	}
	.banner_cta .ctaMail{
		width: 150px;
		height: 60px;
		background: #fff;
		border: 3px solid #009fff;
		border-radius: 10px;
		display: flex;
		align-items: center;
		gap: 0 5px;
		padding: 5px 7px;
	}
	.banner_cta .ctaMail .mailIcon{
		width: 40px;
		height: 40px;
		background: rgba(0, 125, 200, 0.1);
		border-radius: 50%;
		position: relative;
	}
	.banner_cta .ctaMail .mailIcon::before{
		content: "";
		display: block;
		width: 24px;
		height: 17px;
		position: absolute;
		top: calc(50% - 1px);
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-mask-image: url('images/icon_mail.svg');
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #007DC8;
	}
	.banner_cta .ctaMail .mailTtl{
		font-weight: 700;
		font-size: 14px;
		line-height: 18px;
		color: #007dc8;
	}
}
/*====================================

7. Module

====================================*/
/*====================================

8. Page

====================================*/
/*
Top
====================================*/
.top_link{
	width: 300px;
	height: 80px;
	background: #007dc8;
	border-radius: 9999px;
	margin: 65px auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 500;
	font-size: 25px;
	line-height: 36px;
	color: #fff;
}
.top_link2{
	width: 300px;
	height: 80px;
	border: 2px solid #fff;
	border-radius: 9999px;
	margin: 65px auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 500;
	font-size: 25px;
	line-height: 36px;
	color: #fff;
}
.top_mv {
	height: calc(100vh - var(--headerH));
}
.top_mv .inner {
	height: 100%;
	padding-top: 145px;
}
.top_mv .txtBlk {
	height: 100%;
	display: flex;
	flex-flow: column;
	justify-content: flex-start;
	position: absolute;
	top: 210px;
	left: 100px;
    z-index: 10;
}
.top_mv .txtBlk .ttl {
	font-weight: 700;
	font-size: 70px;
	line-height: 90px;
	color: #FFF;
}
.top_mv .txtBlk .txt {
	font-weight: 600;
	font-size: 24px;
	line-height: 40px;
	color: #FFF;
	margin-top: 45px;
}
.top_mv .slideBlk {
	position: absolute;
	top: 145px;
	left: 0;
	width: calc(100% - 100px);
	height: calc(100vh - var(--headerH));
	border-radius: 0px 100px 100px 0px;
	overflow: hidden;
}
.top_news{
	width: 700px;
	height: 100px;
	margin: 0 auto;
	border-radius: 10px;
	background: #fff;
	box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.1);
	position: relative;
    z-index: 15;
	display: flex;
}
.top_news .arrow{
	content: "";
	width: 25px;
	height: 25px;
	background: #007dc8;
	border-radius: 50%;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	margin: auto 0;
}
.top_news .arrow::before {
    content: "";
    display: block;
    width: 7px;
    height: 11px;
    background: url('images/icon_arrow.svg') no-repeat;
    position: absolute;
    top: 50%;
    left: calc(50% + 1px);
    transform: translate(-50%, -50%);
}
.top_news .newsTerm{
	width: 180px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	font-size: 17px;
	line-height: 25px;
	color: #007DC8;
	position: relative;
}
.top_news .newsTerm::after{
	content: "";
	width: 1px;
	height: 60px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto 0;
	border-right: 1px solid #007dc8;
}
.top_news .newsArticle{
	flex: 1;
	display: flex;
	align-items: center;
	gap: 0 20px;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	padding: 0 10px 0px 30px;
}
.top_service{
	padding: 80px 0 115px;
	position: relative;
}
.top_service::before{
	content: "";
	display: block;
	width: calc(100% - 100px);
	height: calc(100% + 360px);
	position: absolute;
	bottom: 0;
	right: 0;
	background: rgba(0, 125, 200, 0.1);
	border-radius: 0 0 0 100px;
	z-index: -1;
}
.top_service .serviceTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 25px;
	margin: 0 auto;
	text-align: center;
}
.top_service .serviceBlk{
	display: flex;
	gap: 0 40px;
	margin-top: 80px;
}
.top_service .serviceItem{
	width: calc((100% - 40px) / 2);
}
.top_service .serviceItem .itemImg{
	width: 100%;
	border-radius: 30px;
	overflow: hidden;
}
.top_service .serviceItem .itemImg img{
	width: 100%;
	height: 100%;
}
.top_service .serviceItem .itemTtl{
	display: flex;
	font-weight: 600;
	font-size: 24px;
	line-height: 35px;
	margin-top: 20px;
}
.top_service .serviceItem .itemTtl .arrow{
	display: block;
	width: 25px;
	height: 25px;
	margin: auto 4px auto 0;
	border-radius: 50%;
	background: #007dc8;
	position: relative;
}
.top_service .serviceItem .itemTtl .arrow::before{
	content: "";
	display: block;
	width: 7px;
	height: 11px;
	background: url('images/icon_arrow.svg') no-repeat;
	position: absolute;
	top: 50%;
	left: calc(50% + 1px);
	transform: translate(-50%, -50%);
}
.top_about{
	margin-top: 130px;
    padding: 45px 0 115px;
    position: relative;
}
.top_about::before{
	content: "";
    display: block;
    width: 100%;
	aspect-ratio: 15 / 7;
    position: absolute;
    top: 0;
    left: 0;
    background: url('images/top_aboutBg.webp') no-repeat;
	background-size: cover;
}
.top_about .aboutItem{
	width: 100%;
	border-radius: 50px;
	background: #fff;
	padding: 60px 125px 0;
}
.top_about .aboutItem .itemTtl{
	font-weight: 600;
	font-size: 30px;
	line-height: 48px;
	text-align: center;
}
.top_about .aboutItem .itemTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 25px;
	margin-top: 25px;
}
.top_about .aboutItem .itemImg{
	margin-top: 25px;
	width: 100%;
}
.top_about .aboutItem .itemImg img{
	width: 100%;
	height: 100%;
}
.top_about .itemLink{
	margin: 80px auto 0;
}
.top_recruit{
    padding: 35px 0 75px;
    position: relative;
	background: url('images/top_recruitBg.webp') no-repeat;
	background-size: cover;
	background-position: center;
}
.top_recruit .recruitItem .itemTtl{
	font-weight: 700;
	font-size: 40px;
	line-height: 55px;
	text-align: center;
	color: #fff;
	text-shadow: 0px 0px 5px #007dc8;
}
.top_recruit .recruitItem .itemTxt{
	font-weight: 700;
	font-size: 18px;
	line-height: 30px;
	text-align: center;
	color: #fff;
	text-shadow: 0px 0px 5px #007dc8;
	margin-top: 25px;
}
.top_recruit .itemLink{
	margin: 55px auto 0;
}
.top_faq{
	padding: 40px 0 110px;
}
.top_faq .faqBlk{
	max-width: 750px;
	margin: 10px auto 0;
	display: flex;
	flex-flow: column;
	gap: 20px 0;
}
.top_faq .faqItem{
	width: 100%;
	padding: 20px 10px 20px 30px;
	border-radius: 15px;
	background: rgba(0, 125, 200, 0.05);
}
.top_faq .faqItem .itemQ{
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	color: #007dc8;
	display: flex;
}
.top_faq .faqItem .itemQ .question{
	display: block;
    flex-shrink: 0;
	width: 35px;
	height: 26px;
	background: url('images/icon_question.svg') no-repeat;
	margin-right: 10px;
	margin-top: 1px;
}
.top_faq .faqItem .itemA{
	font-weight: 600;
	font-size: 15px;
	line-height: 21px;
	color: #333;
	display: flex;
	margin-top: 14px;
}
.top_faq .faqItem .itemA .answer{
	display: block;
    flex-shrink: 0;
	width: 35px;
	height: 26px;
	background: url('images/icon_answer.svg') no-repeat;
	margin-right: 10px;
	margin-top: -1px;
}
.top_contact{
	padding: 20px 0 90px;
	background: rgba(0, 125, 200, 0.1);
}
.top_contact .contactTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 25px;
	text-align: center;
}
.top_contact .contactBlk{
	display: flex;
	margin-top: 50px;
	border-radius: 20px;
	background: #009fff;
	padding: 15px;
}
.top_contact .contactItem{
	flex: 1;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
}
.top_contact .contactItem .itemNum{
	font-weight: 900;
	font-size: 76px;
	line-height: 100px;
	color: #fff;
	display: flex;
	align-items: center;
}
.top_contact .contactItem .itemNum::before{
    content: "";
    display: block;
    width: 50px;
    height: 63px;
    -webkit-mask-image: url('images/icon_tel.svg');
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: #FFF;
	margin-top: 10px;
	margin-right: 6px;
}
.top_contact .contactItem .itemTime{
	font-weight: 600;
	font-size: 28px;
	line-height: 46px;
	text-align: center;
	color: #fff;
	margin-top: -5px;
	padding-bottom: 9px;
}
.top_contact .contactItem._mail{
	width: 250px;
	gap: 12px 0;
	flex: none;
	border-left: 2px solid #FFF;
}
.top_contact .contactItem._mail .itemTtl{
	font-weight: 600;
	font-size: 23px;
	line-height: 27px;
	text-align: center;
	color: #fff;
}
.top_contact .contactItem._mail .itemIcon{
	display: block;
	width: 80px;
	height: 60px;
	background: rgba(0, 125, 200, 0.1);
	border-radius: 50%;
	position: relative;
}
.top_contact .contactItem._mail .itemIcon::before{
	content: "";
    display: block;
    width: 100%;
    height: 100%;
	position: absolute;
	top: calc(50% - 0px);
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-mask-image: url('images/icon_mail.svg');
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: #FFF;
}
@media screen and (max-width: 1024px) {
	.top_link{
		max-width: 300px;
		width: 80%;
		height: 55px;
		background: #007dc8;
		border-radius: 9999px;
		margin: 45px auto 0;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 500;
		font-size: 17px;
		line-height: 24px;
		color: #fff;
	}
	.top_link2{
		max-width: 300px;
		width: 80%;
		height: 55px;
		border: 2px solid #fff;
		border-radius: 9999px;
		margin: 45px auto 0;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 500;
		font-size: 17px;
		line-height: 24px;
		color: #fff;
	}
	.top_mv {
		height: calc(60vh - var(--headerH));
	}
	.top_mv .inner {
		height: 100%;
		padding-top: 0;
	}
	.top_mv .txtBlk {
		width: 85%;
		height: 100%;
		display: flex;
		flex-flow: column;
		justify-content: flex-start;
		position: relative;
		top: 0;
        left: 0;
		z-index: 10;
		padding: 60px 0 30px;
	}
	.top_mv .txtBlk .ttl {
		font-weight: 700;
		font-size: 34px;
		line-height: 42px;
		color: #FFF;
	}
	.top_mv .txtBlk .txt {
		font-weight: 600;
		font-size: 15px;
		line-height: 22px;
		color: #FFF;
		margin-top: 25px;
	}
	.top_mv .slideBlk {
		position: absolute;
		top: 90px;
		left: 0;
		width: calc(100% - 5%);
		height: calc(60vh - var(--headerH));
		border-radius: 0px 30px 30px 0px;
		overflow: hidden;
	}
	.top_news{
		width: 90%;
		height: auto;
		margin: 50px auto 0;
		padding: 10px 0;
		border-radius: 10px;
		background: #fff;
		box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.1);
		position: relative;
		z-index: 15;
		display: flex;
		flex-flow: column;
	}
	.top_news .arrow{
		content: "";
		width: 25px;
		height: 25px;
		background: #007dc8;
		border-radius: 50%;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 15px;
		margin: auto 0;
	}
	.top_news .arrow::before {
		content: "";
		display: block;
		width: 7px;
		height: 11px;
		background: url('images/icon_arrow.svg') no-repeat;
		position: absolute;
		top: 50%;
		left: calc(50% + 1px);
		transform: translate(-50%, -50%);
	}
	.top_news .newsTerm{
		width: auto;
		height: 100%;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		font-weight: 700;
		font-size: 15px;
		line-height: 20px;
		color: #007DC8;
		position: relative;
		padding: 0 10px;
	}
	.top_news .newsTerm::after{
		content: "";
		width: 1px;
		height: 60px;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		margin: auto 0;
		border-right: none;
	}
	.top_news .newsTerm span{
		font-weight: 700;
		font-size: 15px;
		line-height: 21px;
		margin-left: 10px;
		color: #000;
	}
	.top_news .newsArticle{
		flex: 1;
		display: flex;
		align-items: center;
		gap: 0 10px;
		font-weight: 700;
		font-size: 15px;
		line-height: 28px;
		padding: 2px 10px 0px 10px;
	}
	.top_service{
		padding: 50px 0 40px;
		position: relative;
	}
	.top_service::before{
		content: "";
		display: block;
		width: calc(100% - 2%);
		height: calc(100% + 270px);
		position: absolute;
		bottom: 0;
		right: 0;
		background: rgba(0, 125, 200, 0.1);
		border-radius: 0 0 0 50px;
		z-index: -1;
	}
	.top_service .serviceTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		margin: 0 auto;
		text-align: center;
	}
	.top_service .serviceBlk{
		display: flex;
		flex-wrap: wrap;
		gap: 25px 10px;
		margin-top: 30px;
	}
	.top_service .serviceItem{
		width: 96%;
		margin: 0 auto;
		max-width: 300px;
	}
	.top_service .serviceItem .itemImg{
		width: 100%;
		border-radius: 10px;
		overflow: hidden;
	}
	.top_service .serviceItem .itemImg img{
		width: 100%;
		height: 100%;
	}
	.top_service .serviceItem .itemTtl{
		display: flex;
		font-weight: 600;
		font-size: 17px;
		line-height: 22px;
		margin-top: 10px;
	}
	.top_service .serviceItem .itemTtl .arrow{
		display: block;
		width: 22px;
		height: 22px;
		margin: auto 5px auto 0;
		border-radius: 50%;
		background: #007dc8;
		position: relative;
		flex-shrink: 0;
	}
	.top_service .serviceItem .itemTtl .arrow::before{
		content: "";
		display: block;
		width: 7px;
		height: 11px;
		background: url('images/icon_arrow.svg') no-repeat;
		position: absolute;
		top: 50%;
		left: calc(50% + 1px);
		transform: translate(-50%, -50%);
	}
	.top_about{
		margin-top: 50px;
		padding: 10px 0 70px;
		position: relative;
	}
	.top_about::before{
		content: "";
		display: block;
		width: 100%;
		max-height: 500px;
		aspect-ratio: 7 / 9;
		position: absolute;
		top: 0;
		left: 0;
		background: url('images/top_aboutBg.webp') no-repeat;
		background-size: cover;
	}
	.top_about .aboutItem{
		width: 100%;
		border-radius: 50px;
		background: #fff;
		padding: 30px 5% 0;
		margin-top: 10px;
	}
	.top_about .aboutItem .itemTtl{
		font-weight: 600;
		font-size: 22px;
        line-height: 32px;
		text-align: center;
	}
	.top_about .aboutItem .itemTxt{
		font-weight: 500;
		font-size: 15px;
        line-height: 24px;
        margin-top: 15px;
	}
	.top_about .aboutItem .itemImg{
		width: 100vw;
		margin: 50px calc(50% - 50vw) 0;
        padding: 0 10px;
	}
	.top_about .aboutItem .itemImg img{
		width: 100%;
		height: 100%;
	}
	.top_about .itemLink{
		margin: 55px auto 0;
	}
	.top_recruit{
		padding: 10px 0 70px;
		position: relative;
		background: url('images/top_recruitBg.webp') no-repeat;
		background-size: cover;
		background-position: left;
	}
	.top_recruit .recruitItem .itemTtl{
		font-weight: 700;
		font-size: 22px;
		line-height: 32px;
		text-align: center;
		color: #fff;
		text-shadow: 0px 0px 5px #007dc8;
	}
	.top_recruit .recruitItem .itemTxt{
		font-weight: 700;
		font-size: 15px;
		line-height: 28px;
		text-align: center;
		color: #fff;
		text-shadow: 0px 0px 5px #007dc8;
		margin-top: 25px;
	}
	.top_recruit .itemLink{
		margin: 50px auto 0;
	}
	.top_faq{
		padding: 40px 0 60px;
	}
	.top_faq .faqBlk{
		max-width: 750px;
		margin: 5px auto 0;
		display: flex;
		flex-flow: column;
		gap: 15px 0;
	}
	.top_faq .faqItem{
		width: 100%;
		padding: 20px 5% 20px 3%;
		border-radius: 15px;
		background: rgba(0, 125, 200, 0.05);
	}
	.top_faq .faqItem .itemQ{
		font-weight: 700;
		font-size: 16px;
		line-height: 22px;
		color: #007dc8;
		display: flex;
	}
	.top_faq .faqItem .itemQ .question{
		display: block;
		flex-shrink: 0;
		width: 30px;
		height: 24px;
		background: url('images/icon_question.svg') no-repeat;
		background-size: contain;
		margin-right: 7px;
		margin-top: 1px;
	}
	.top_faq .faqItem .itemA{
		font-weight: 600;
		font-size: 15px;
		line-height: 22px;
		color: #333;
		display: flex;
		margin-top: 12px;
	}
	.top_faq .faqItem .itemA .answer{
		display: block;
		flex-shrink: 0;
		width: 30px;
		height: 24px;
		background: url('images/icon_answer.svg') no-repeat;
		background-size: contain;
		margin-right: 7px;
		margin-top: 1px;
	}
	.top_contact{
		padding: 40px 0 60px;
		background: rgba(0, 125, 200, 0.1);
	}
	.top_contact .contactTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		text-align: justify;
		margin-top: 10px;
	}
	.top_contact .contactBlk{
		max-width: 375px;
		margin: 0 auto;
		display: flex;
		flex-flow: column;
		margin-top: 35px;
		border-radius: 20px;
		background: #009fff;
		padding: 20px 15px;
	}
	.top_contact .contactItem{
		flex: 1;
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
	}
	.top_contact .contactItem .itemNum{
		font-weight: 900;
		font-size: 36px;
		line-height: 48px;
		color: #fff;
		display: flex;
		align-items: center;
	}
	.top_contact .contactItem .itemNum::before{
		content: "";
		display: block;
		width: 27px;
        height: 32px;
		-webkit-mask-image: url('images/icon_tel.svg');
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #FFF;
		margin-top: 5px;
		margin-right: 3px;
	}
	.top_contact .contactItem .itemTime{
		font-weight: 600;
		font-size: 15px;
		line-height: 21px;
		text-align: center;
		color: #fff;
		margin-top: 0px;
		padding-bottom: 15px;
	}
	.top_contact .contactItem._mail{
		width: 100%;
		flex-flow: row;
		gap: 0 20px;
		flex: none;
		border-left: none;
		border-top: 2px solid #FFF;
		padding-top: 15px;
	}
	.top_contact .contactItem._mail .itemTtl{
		font-weight: 600;
		font-size: 20px;
		line-height: 24px;
		text-align: center;
		color: #fff;
	}
	.top_contact .contactItem._mail .itemIcon{
		display: block;
		width: 60px;
		height: 40px;
		background: rgba(0, 125, 200, 0.1);
		border-radius: 50%;
		position: relative;
	}
	.top_contact .contactItem._mail .itemIcon::before{
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		top: calc(50% - 0px);
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-mask-image: url('images/icon_mail.svg');
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background-color: #FFF;
	}
}

/*
About
====================================*/
.about_message{
	padding: 75px 0 190px;
}
.about_message .messageItem{
	display: flex;
	margin-top: 20px;
}
.about_message .messageItem .itemImg{
	width: 40%;
	height: fit-content;
	border-radius: 20px;
	overflow: hidden;
}
.about_message .messageItem .itemImg img{
	width: 100%;
	height: 100%;
}
.about_message .messageItem .itemBlk{
	flex: 1;
	padding-left: 35px;
}
.about_message .messageItem .itemTtl{
	font-weight: 700;
	font-size: 25px;
	line-height: 36px;
}
.about_message .messageItem .itemTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 30px;
	margin-top: 20px;
}
.about_message .messageItem .itemName{
	font-weight: 700;
	font-size: 20px;
	line-height: 30px;
	margin-top: 25px;
	text-align: right;
}
.about_philosophy{
	padding: 25px 0 80px;
	position: relative;
	margin-bottom: 150px;
}
.about_philosophy::before {
    content: "";
    display: block;
    width: calc(100% - 150px);
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #e8f6ff;
    border-radius: 70px 0px 0px 70px;
    z-index: -1;
}
.about_philosophy::after {
    content: "";
    display: block;
    width: calc(100% - 150px);
    height: 100%;
    position: absolute;
    bottom: -150px;
    left: 0;
    background: #009fff;
    border-radius: 0px 70px 70px 0px;
    z-index: -2;
}
.about_philosophy .philosophyItem .itemTtl{
	font-weight: 600;
	font-size: 40px;
	line-height: 55px;
	text-align: center;
}
.about_philosophy .philosophyItem .itemTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 25px;
	text-align: center;
	margin-top: 25px;
}
.about_overview{
	padding: 65px 0 120px;
}
.about_overview .overviewDl{
	max-width: 750px;
	margin: 50px auto 0;
	display: flex;
	flex-wrap: wrap;
}
.about_overview .overviewDt{
	width: 170px;
	border-bottom: 1px solid #707070;
	font-weight: 600;
	font-size: 15px;
	line-height: 25px;
	padding: 25px 0 25px;
}
.about_overview .overviewDd{
	width: calc(100% - 170px);
	border-bottom: 1px solid #707070;
	font-weight: 600;
	font-size: 15px;
	line-height: 25px;
	padding: 25px 0 25px;
}
.about_locations{
	padding: 40px 0 165px;
	background: #E8F6FF;
}
.about_locations .locationsTtl{
	font-weight: 600;
	font-size: 30px;
	line-height: 48px;
	text-align: center;
	margin-top: 15px;
}
.about_locations .locationsTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 25px;
	text-align: center;
	margin-top: 40px;
}
.about_locations .locationsBlk{
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin: 64px auto 0;
}
.about_locations .locationsItem{
	width: calc((100% - 40px) / 2);
	border-radius: 20px;
	background: #fff;
	box-shadow: 5px 5px 15px rgba(0, 125, 200, 0.1);
	padding: 35px 50px 45px;
}
.about_locations .locationsItem .itemTtl{
	font-weight: 700;
	font-size: 27px;
	line-height: 48px;
	text-align: center;
	color: #007dc8;
}
.about_locations .locationsItem .itemTxt{
	font-weight: 500;
	font-size: 15px;
	line-height: 25px;
	margin-top: 20px;
}
.about_locations .locationsItem .itemTel{
	font-weight: 700;
	font-size: 19px;
	line-height: 25px;
	margin-top: 5px;
}
.about_locations .locationsItem .itemBlk{
	display: flex;
	gap: 0 15px;
	margin-top: 20px;
}
.about_locations .locationsItem .itemCat{
	width: calc((100% - 15px) / 2);
	height: 105px;
	border-radius: 10px;
	background: #009fff;
	display: flex;
	flex-flow: column;
	justify-content: flex-end;
	align-items: center;
	gap: 3px 0;
	padding: 14px 0 8px;
}
.about_locations .locationsItem .itemCat .catTxt{
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	color: #fff;
}
.about_locations .locationsItem .itemCat .catTxt._small{
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
}
.about_locations .locationsItem .itemMap{
	margin-top: 20px;
	width: 100%;
}
@media screen and (max-width: 1024px) {
	.about_message{
		padding: 40px 0 90px;
	}
	.about_message .messageItem{
		display: flex;
		flex-flow: column;
		gap: 20px 0;
		margin: 10px auto 0;
	}
	.about_message .messageItem .itemImg{
		width: 100%;
		height: fit-content;
		border-radius: 20px;
		overflow: hidden;
	}
	.about_message .messageItem .itemImg img{
		width: 100%;
		height: 100%;
	}
	.about_message .messageItem .itemBlk{
		flex: 1;
		padding-left: 0px;
	}
	.about_message .messageItem .itemTtl{
		font-weight: 700;
		font-size: 18px;
		line-height: 30px;
	}
	.about_message .messageItem .itemTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		margin-top: 15px;
	}
	.about_message .messageItem .itemName{
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		margin-top: 18px;
		text-align: right;
	}
	.about_philosophy{
		padding: 20px 0 45px;
		position: relative;
		margin-bottom: 50px;
	}
	.about_philosophy::before {
		content: "";
		display: block;
		width: 98%;
		height: 100%;
		position: absolute;
		bottom: 0;
		right: 0;
		background: #e8f6ff;
		border-radius: 40px 0px 0px 40px;
		z-index: -1;
	}
	.about_philosophy::after {
		content: "";
		display: block;
		width: 95%;
		height: 90%;
		position: absolute;
		bottom: -70px;
		left: 0;
		background: #009fff;
		border-radius: 0px 40px 40px 0px;
		z-index: -2;
	}
	.about_philosophy .philosophyItem{
		margin-top: 20px;
		padding-left: 2%;
	}
	.about_philosophy .philosophyItem .itemTtl{
		font-weight: 600;
		font-size: 20px;
		line-height: 30px;
		text-align: center;
	}
	.about_philosophy .philosophyItem .itemTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		text-align: justify;
		margin-top: 25px;
	}
	.about_overview{
		padding: 80px 0 70px;
	}
	.about_overview .overviewDl{
		max-width: unset;
		margin: 10px auto 0;
		display: flex;
		flex-wrap: wrap;
	}
	.about_overview .overviewDt{
		width: 80px;
		border-bottom: 1px solid #707070;
		font-weight: 600;
		font-size: 14px;
		line-height: 22px;
		padding: 13px 0 13px;
	}
	.about_overview .overviewDd{
		width: calc(100% - 80px);
		border-bottom: 1px solid #707070;
		font-weight: 600;
		font-size: 14px;
		line-height: 20px;
		padding: 13px 0 13px;
	}
	.about_locations{
		padding: 40px 0 80px;
		background: #E8F6FF;
	}
	.about_locations .locationsTtl{
		font-weight: 600;
		font-size: 20px;
		line-height: 30px;
		text-align: center;
		margin-top: 15px;
	}
	.about_locations .locationsTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		text-align: justify;
		margin-top: 25px;
	}
	.about_locations .locationsBlk{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 15px;
		margin: 35px auto 0;
	}
	.about_locations .locationsItem{
		width: 100%;
		max-width: 375px;
		border-radius: 20px;
		background: #fff;
		box-shadow: 5px 5px 15px rgba(0, 125, 200, 0.1);
		padding: 20px 15px 20px;
	}
	.about_locations .locationsItem .itemTtl{
		font-weight: 700;
		font-size: 18px;
		line-height: 26px;
		text-align: center;
		color: #007dc8;
	}
	.about_locations .locationsItem .itemTxt{
		font-weight: 500;
		font-size: 14px;
		line-height: 21px;
		margin-top: 15px;
	}
	.about_locations .locationsItem .itemTel{
		font-weight: 700;
		font-size: 18px;
		line-height: 24px;
		margin-top: 7px;
	}
	.about_locations .locationsItem .itemBlk{
		display: flex;
		gap: 0 8px;
		margin-top: 15px;
	}
	.about_locations .locationsItem .itemCat{
		width: calc((100% - 8px) / 2);
		height: fit-content;
		border-radius: 10px;
		background: #009fff;
		display: flex;
		flex-flow: column;
		justify-content: flex-end;
		align-items: center;
		gap: 5px 0;
		padding: 14px 0 10px;
	}
	.about_locations .locationsItem .itemCat .catTxt{
		font-weight: 600;
		font-size: 16px;
		line-height: 20px;
		text-align: center;
		color: #fff;
	}
	.about_locations .locationsItem .itemCat .catTxt._small{
		font-weight: 600;
		font-size: 15px;
		line-height: 18px;
	}
	.about_locations .locationsItem .itemMap{
		margin-top: 20px;
		width: 100%;
	}
}

/*
Service
====================================*/
.service_strengths{
	padding: 75px 0 80px;
	overflow: hidden;
}
.service_strengths .strengthsItem{
	display: flex;
	gap: 0 17.5%;
	margin-top: 45px;
	padding-bottom: 80px;
	position: relative;
}
.service_strengths .strengthsItem:nth-child(3),
.service_strengths .strengthsItem:nth-child(4){
	margin-top: 140px;
}
.service_strengths .strengthsItem .itemBlk{
	width: 375px;
	margin-top: 80px;
	padding-top: 45px;
}
.service_strengths .strengthsItem .itemBlk::before{
	content: "";
	width: calc(100vw - 280px);
	height: calc(100% - 80px);
	background: #e8f6ff;
	position: absolute;
	bottom: 0px;
	left: calc(var(--ohw) * -1);
	z-index: -2;
}
.service_strengths .strengthsItem .itemBlk.itemRight::before{
	left: auto;
	right: calc(var(--ohw) * -1);
}
.service_strengths .strengthsItem .itemIndex{
	font-weight: 700;
	font-size: 30px;
	line-height: 45px;
	color: #009fff;
	display: flex;
  	align-items: baseline;
	margin-top: -30px;
}
.service_strengths .strengthsItem .itemIndex .number{
	font-weight: 700;
	font-size: 150px;
	line-height: 0px;
	color: rgba(151, 210, 248, 0.6);
	margin-left: 10px;
}
.service_strengths .strengthsItem .itemTtl{
	font-weight: 700;
	font-size: 45px;
	line-height: 60px;
	margin-top: 35px;
}
.service_strengths .strengthsItem .itemTxt{
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	margin-top: 20px;
}
.service_strengths .strengthsItem .itemLink{
	width: 375px;
	height: 60px;
	margin-top: 30px;
	border-radius: 30px;
	background: transparent;
	border: 2px solid #007dc8;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 20px;
	line-height: 48px;
	text-align: center;
	color: #007dc8;
	position: relative;
}
.service_strengths .strengthsItem .itemLink .arrow{
	display: block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #007dc8;
    position: absolute;
	top: 0;
	bottom: 0;
	right: 17px;
	margin: auto  0;
}
.service_strengths .strengthsItem .itemLink .arrow::before{
	content: "";
    display: block;
    width: 7px;
    height: 11px;
    background: url('images/icon_arrow.svg') no-repeat;
    position: absolute;
    top: 50%;
    left: calc(50% + 1px);
    transform: translate(-50%, -50%);
}
.service_strengths .strengthsItem .itemImg{
	flex: 1;
	margin-right: calc(var(--ohw) * -1);
	position: relative;
}
.service_strengths .strengthsItem .itemImg img{
	width: 100%;
	height: 100%;
	border-radius: 50px 0px 0px 50px;
}
.service_strengths .strengthsItem .itemImg::before{
	content: "";
	display: flex;
	width: 100%;
	height: 100%;
	border-radius: 50px 0px 0px 50px;
	background: #009fff;
	position: absolute;
	bottom: -30px;
	left: 30px;
	z-index: -1;
}
.service_strengths .strengthsItem .itemImg.itemLeft{
	margin-right: auto;
	margin-left: calc(var(--ohw) * -1);
}
.service_strengths .strengthsItem .itemImg.itemLeft img{
	border-radius: 0px 50px 50px 0px;
}
.service_strengths .strengthsItem .itemImg.itemLeft::before{
	border-radius: 0px 50px 50px 0px;
	bottom: -30px;
	left: -30px;
}
.strengthsItem .popupWrap{
	background-color: rgba(0, 0, 0, .5);
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 1000000;
	display: none;
}
.strengthsItem .popupBlk{
	text-align: center;
	width: 80vw;
	background: white;
	margin: 7vh auto;
	padding: 30px 50px 50px;
	border-radius: 30px;
	position: relative;
}
.strengthsItem .popupBlk .close{
	width: 70px;
	height: 70px;
	padding: 20px;
	position: absolute;
	top: 0px;
	right: 0px;
	cursor: pointer;
}
.strengthsItem .popupBlk .close::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: url('images/icon_cross.svg') no-repeat;
}
.strengthsItem .popupBlk .map{
	height: 75vh;
}
.strengthsItem .popupBlk .map img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.service_products{
	padding: 80px 0 200px;
}
.service_products .productsTtl{
	width: 600px;
	height: 60px;
	font-weight: 600;
	font-size: 25px;
	line-height: 36px;
	border-radius: 9999px;
	background: #007DC8;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 55px auto 0;
}
.service_products .productsTtl:not(:first-of-type){
	margin-top: 150px;
}
.service_products .productsTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 25px;
	text-align: center;
	margin: 50px auto 0;
}
.service_products .productsBlk{
	display: flex;
	flex-wrap: wrap;
	gap: 80px 35px;
	margin-top: 55px;
}
.service_products .productsItem{
	width: calc((100% - 70px) / 3);
}
.service_products .productsItem .itemImg{
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 15px;
}
.service_products .productsItem .itemTtl{
	font-weight: 600;
	font-size: 18px;
	line-height: 25px;
	text-align: center;
}
.service_products .productsItem .itemTxt{
	font-weight: 500;
	font-size: 14px;
	line-height: 22px;
	text-align: center;
	padding-top: 10px;
}
@media screen and (max-width: 1024px) {
	.service_strengths{
		padding: 45px 0 30px;
		overflow: hidden;
	}
	.service_strengths .strengthsItem{
		display: flex;
		flex-flow: column;
		gap: 35px 0;
		margin-top: 0px;
		padding-bottom: 60px;
		position: relative;
	}
	.service_strengths .strengthsItem:nth-child(3),
	.service_strengths .strengthsItem:nth-child(4){
		margin-top: 20px;
	}
	.service_strengths .strengthsItem .itemBlk{
		width: 80%;
		margin-top: 60px;
		padding-top: 45px;
		order: 1;
	}
	.service_strengths .strengthsItem .itemBlk.itemRight{
		margin-left: auto;
	}
	.service_strengths .strengthsItem .itemBlk::before{
		content: "";
		width: 100%;
		height: calc(100% - 60px);
		background: #e8f6ff;
		position: absolute;
		bottom: 0px;
		left: calc(var(--ohw) * -1);
		z-index: -2;
		border-radius: 0 30px 0 0;
	}
	.service_strengths .strengthsItem .itemBlk.itemRight::before{
		left: auto;
		right: calc(var(--ohw) * -1);
		border-radius: 30px 0 0 0;
	}
	.service_strengths .strengthsItem .itemIndex{
		font-weight: 700;
		font-size: 22px;
		line-height: 30px;
		color: #009fff;
		display: flex;
		align-items: baseline;
		margin-top: -35px;
	}
	.service_strengths .strengthsItem .itemIndex .number{
		font-weight: 700;
		font-size: 75px;
		line-height: 0px;
		color: rgba(151, 210, 248, 0.6);
		margin-left: 10px;
	}
	.service_strengths .strengthsItem .itemTtl{
		font-weight: 700;
		font-size: 24px;
		line-height: 34px;
		margin-top: 20px;
	}
	.service_strengths .strengthsItem .itemTxt{
		font-weight: 600;
		font-size: 16px;
		line-height: 25px;
		margin-top: 15px;
	}
	.service_strengths .strengthsItem .itemLink{
		width: 100%;
		height: 55px;
		margin-top: 35px;
		border-radius: 30px;
		background: transparent;
		border: 2px solid #007dc8;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 600;
		font-size: 17px;
		line-height: 40px;
		text-align: center;
		color: #007dc8;
		position: relative;
	}
	.service_strengths .strengthsItem .itemLink .arrow{
		display: block;
		width: 25px;
		height: 25px;
		border-radius: 50%;
		background: #007dc8;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 17px;
		margin: auto  0;
	}
	.service_strengths .strengthsItem .itemLink .arrow::before{
		content: "";
		display: block;
		width: 7px;
		height: 11px;
		background: url('images/icon_arrow.svg') no-repeat;
		position: absolute;
		top: 50%;
		left: calc(50% + 1px);
		transform: translate(-50%, -50%);
	}
	.service_strengths .strengthsItem .itemImg{
		flex: 1;
		margin-right: calc(var(--ohw) * -1);
		position: relative;
		order: 2;
	}
	.service_strengths .strengthsItem .itemImg img{
		width: 100%;
		height: 100%;
		border-radius: 30px 0px 0px 30px;
	}
	.service_strengths .strengthsItem .itemImg::before{
		content: "";
		display: flex;
		width: 100%;
		height: 100%;
		border-radius: 30px 0px 0px 30px;
		background: #009fff;
		position: absolute;
		bottom: -20px;
		left: 20px;
		z-index: -1;
	}
	.service_strengths .strengthsItem .itemImg.itemLeft{
		margin-right: auto;
		margin-left: calc(var(--ohw) * -1);

	}
	.service_strengths .strengthsItem .itemImg.itemLeft img{
		border-radius: 0px 30px 30px 0px;
	}
	.service_strengths .strengthsItem .itemImg.itemLeft::before{
		border-radius: 0px 30px 30px 0px;
		bottom: -30px;
		left: -30px;
	}
	.strengthsItem .popupWrap{
		background-color: rgba(0, 0, 0, .5);
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		z-index: 1000000;
		display: none;
		align-items: center;
	}
	.strengthsItem .popupBlk{
		text-align: center;
		width: 95vw;
		height: fit-content;
		background: white;
		margin: 10vh auto;
		padding: 50px 15px 50px;
		border-radius: 20px;
		position: relative;
	}
	.strengthsItem .popupBlk .close{
		width: 50px;
		height: 50px;
		padding: 15px;
		position: absolute;
		top: 0px;
		right: 0px;
		cursor: pointer;
	}
	.strengthsItem .popupBlk .close::before{
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		background: url('images/icon_cross.svg') no-repeat;
	}
	.strengthsItem .popupBlk .map{
		height: auto;
	}
	.strengthsItem .popupBlk .map img{
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
	.service_products{
		padding: 40px 0 60px;
	}
	.service_products .productsTtl{
		width: 85%;
		height: 50px;
		font-weight: 600;
		font-size: 17px;
		line-height: 26px;
		border-radius: 9999px;
		background: #007DC8;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 30px auto 0;
	}
	.service_products .productsTtl:not(:first-of-type){
		margin-top: 60px;
	}
	.service_products .productsTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
		text-align: justify;
		margin: 30px auto 0;
	}
	.service_products .productsBlk{
		display: flex;
		flex-wrap: wrap;
		gap: 20px 15px;
		margin-top: 25px;
	}
	.service_products .productsItem{
		width: calc((100% - 15px) / 2);
	}
	.service_products .productsItem .itemImg{
		width: 100%;
		border-radius: 10px;
		overflow: hidden;
		margin-bottom: 10px;
	}
	.service_products .productsItem .itemTtl{
		font-weight: 600;
		font-size: 16px;
		line-height: 21px;
		text-align: center;
	}
	.service_products .productsItem .itemTxt{
		font-weight: 500;
		font-size: 13px;
        line-height: 20px;
        text-align: justify;
        padding-top: 7px;
	}
}

/*
Recruit
====================================*/
.recruit_mv{
	height: 600px;
	position: relative;
	padding: 20px 0 0;
}
.recruit_mv .inner{
	max-width: 1180px;
}
.recruit_mv .headBlk{
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.recruit_mv .headBlk .subHead{
	font-weight: 900;
    font-size: 150px;
    line-height: 200px;
	margin: 0 auto 0 0;
    color: rgb(255, 255, 255, 0.5);
}
.recruit_mv .headBlk .head{
	font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    color: #fff;
    position: absolute;
    top: calc(50% + 10px);
    left: 0%;
    transform: translate(7%, -50%);
}
.recruit_mv .mvTtl{
	font-weight: 700;
	font-size: 55px;
	line-height: 75px;
	color: #fff;
	text-shadow: 0px 0px 15px #009fff;
}
.recruit_mv .mvTxt{
	font-weight: 600;
	font-size: 16px;
	line-height: 28px;
	color: #fff;
	text-shadow: 0px 0px 6px #009fff;
	margin-top: 40px;
}
.recruit_mv .mvBg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.recruit_mv .mvBg img{
	width: 100%;
	height: 100%;
}
.recruit_mvSp{
	display: none;
}
.recruit_lead{
	padding: 95px 0 0;
}
.recruit_lead .leadTxt{
	font-weight: 700;
	font-size: 25px;
	line-height: 50px;
	text-align: center;
}
.recruit_stability{
	padding: 125px 0 100px;
}
.recruit_stability .stabilityTtl{
	width: 600px;
	height: 60px;
	margin: 0 auto;
	border-radius: 9999px;
	background: #007dc8;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 25px;
	line-height: 36px;
	text-align: center;
	color: #fff;
}
.recruit_stability .stabilityBlk{
	display: flex;
	gap: 0 35px;
	margin-top: 70px;
}
.recruit_stability .stabilityItem{
	width: calc((100% - 70px) / 3);
	border-radius: 30px;
	background: #e8f6ff;
	padding: 30px 0;
}
.recruit_stability .stabilityItem .itemImg{
	width: 170px;
	height: 170px;
	margin: 0 auto;
}
.recruit_stability .stabilityItem .itemSubTtl{
	font-weight: 600;
	font-size: 20px;
	line-height: 40px;
	text-align: center;
	color: #007dc8;
	margin-top: 20px;
}
.recruit_stability .stabilityItem .itemTtl{
	font-weight: 600;
	font-size: 28px;
	line-height: 35px;
	text-align: center;
	color: #007dc8;
}
.recruit_gallery{
	width: 100%;
	display: flex;
}
.recruit_gallery .galleryImg{
	width: calc(100% / 3);
}
.recruit_job{
	padding: 90px 0 120px;
	background: #E8F6FF;
}
.recruit_job .jobTtl{
	width: 600px;
	height: 60px;
	margin: 0 auto;
	border-radius: 9999px;
	background: #007dc8;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 25px;
	line-height: 36px;
	text-align: center;
	color: #fff;
}
.recruit_job .jobBlk{
	display: flex;
	flex-wrap: wrap;
	gap: 35px 30px;
	margin-top: 90px;
}
.recruit_job .jobItem{
	width: calc((100% - 30px) / 2);
	height: 200px;
	border-radius: 20px;
	background: #fff;
	padding: 30px;
}
.recruit_job .jobItem .itemTtl{
	font-weight: 700;
	font-size: 25px;
	line-height: 36px;
	text-align: center;
	color: #007dc8;
}
.recruit_job .jobItem .itemUl{
	max-width: 390px;
	margin: 18px auto 0;
}
.recruit_job .jobItem .itemLi{
	font-weight: 500;
	font-size: 16px;
	line-height: 28px;
	padding-left: 1em;
	text-indent: -1em;
}
.recruit_job .jobItem .itemLi::before{
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	background: #97D2F8;
	border-radius: 50%;
	margin: -2px 2px 0 0;
    vertical-align: middle;
}
.recruit_voice{
	padding: 100px 0 165px;
}
.recruit_voice .voiceTtl{
	width: 600px;
	height: 60px;
	margin: 0 auto;
	border-radius: 9999px;
	background: #007dc8;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 25px;
	line-height: 36px;
	text-align: center;
	color: #fff;
}
.recruit_voice .voiceItem{
	display: flex;
	gap: 0 30px;
	margin-top: 100px;
}
.recruit_voice .voiceItem:not(:first-of-type){
	margin-top: 160px;
}
.recruit_voice .voiceItem .itemImg{
	width: 300px;
	height: 300px;

}
.recruit_voice .voiceItem .itemBlk{
	flex: 1;
}
.recruit_voice .voiceItem .itemProfile{
	font-weight: 700;
	font-size: 20px;
	line-height: 30px;
	color: #007dc8;
}
.recruit_voice .voiceItem .itemTtl{
	font-weight: 700;
	font-size: 25px;
	line-height: 36px;
	margin-top: 5px;
}
.recruit_voice .voiceItem .itemTxt{
	font-weight: 600;
	font-size: 16px;
	line-height: 30px;
	margin-top: 15px;
}
.recruit_requirements{
	padding: 90px 0 95px;
	background: #E8F6FF;
}
.recruit_requirements .requirementsTtl{
	width: 600px;
	height: 60px;
	margin: 0 auto;
	border-radius: 9999px;
	background: #007dc8;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 25px;
	line-height: 36px;
	text-align: center;
	color: #fff;
}
.recruit_requirements .requirementsTab{
	display: flex;
	justify-content: center;
	gap: 0 10px;
	margin-top: 75px;
}
.recruit_requirements .requirementsTab .tabItem{
	width: 280px;
	height: 80px;
	border-radius: 15px 15px 0px 0px;
	background: #b5cbd4;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	font-size: 20px;
	line-height: 25px;
	text-align: center;
	color: #fff;
	cursor: pointer;
}
.recruit_requirements .requirementsTab .tabItem.current{
	background: #009fff;
}
.recruit_requirements .requirementsItem{
	width: 100%;
	border-radius: 50px;
	background: #fff;
	padding: 85px 125px 100px;
	border: 5px solid #009fff;
}
.recruit_requirements .requirementsItem .itemTtl::before{
	content: "";
	display: block;
	width: 7px;
	height: 33px;
	background: #00d5f6;
	margin-right: 11px;
}
.recruit_requirements .requirementsItem .itemDl{
	display: none;
	flex-wrap: wrap;
	border-top: 1px solid rgba(112, 112, 112, 0.5);
}
.recruit_requirements .requirementsItem .itemDl.current{
	display: flex;
}
.recruit_requirements .requirementsItem .itemDt{
	width: 170px;
	font-weight: 600;
	font-size: 15px;
	line-height: 25px;
	padding: 25px 0;
	border-bottom: 1px solid rgba(112, 112, 112, 0.5);
}
.recruit_requirements .requirementsItem .itemDd{
	width: calc(100% - 170px);
	font-weight: 500;
	font-size: 15px;
	line-height: 25px;
	padding: 25px 0;
	border-bottom: 1px solid rgba(112, 112, 112, 0.5);
}
.recruit_requirements .requirementsItem .itemDd span{
	font-weight: 600;
	font-size: 16px;
}
.recruit_requirements .requirementsItem .itemDd.bold{
	font-weight: 600;
	font-size: 18px;
	line-height: 25px;
}
.recruit_entry{
	height: 350px;
	background: #009fff;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
}
.recruit_entry .entryTtl{
	font-weight: 700;
	font-size: 40px;
	line-height: 55px;
	text-align: center;
	color: #b8e3ff;
}
.recruit_entry .entryTxt{
	font-weight: 600;
	font-size: 50px;
	line-height: 80px;
	text-align: center;
	color: #fff;
}
.recruit_entry .entryLink{
	width: 400px;
	height: 70px;
	margin: 30px auto 0;
	border-radius: 10px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	font-size: 25px;
	line-height: 36px;
	color: #007dc8;
}
@media screen and (max-width: 1024px) {
	.recruit_mv{
		height: 250px;
		position: relative;
		padding: 20px 0 0;
	}
	.recruit_mv .inner{
		max-width: 1180px;
	}
	.recruit_mv .headBlk{
		height: 100%;
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
		position: relative;
	}
	.recruit_mv .headBlk .subHead{
		font-weight: 900;
		font-size: 60px;
		line-height: 80px;
		margin: 0 auto 0 0;
		color: rgb(255, 255, 255, 0.5);
	}
	.recruit_mv .headBlk .head{
		font-weight: 700;
		font-size: 18px;
		line-height: 26px;
		color: #fff;
		position: absolute;
		top: calc(50% + 5px);
		left: 0%;
		transform: translate(7%, -50%);
	}
	.recruit_mv .mvTtl{
		font-weight: 700;
		font-size: 24px;
		line-height: 36px;
		color: #fff;
		text-shadow: 0px 0px 15px #009fff;
		margin-top: 15px;
	}
	.recruit_mv .mvTxt{
		font-weight: 600;
		font-size: 15px;
		line-height: 24px;
		color: #fff;
		text-shadow: 0px 0px 6px #009fff;
		margin-top: 20px;
	}
	.recruit_mv .mvBg{
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}
	.recruit_mv .mvBg img{
		width: 100%;
		height: 100%;
		object-position: center;
	}
	.recruit_mvSp{
		display: block;
		background: #E8F6FF;
		margin-bottom: 10px;
	}
	.recruit_mvSp .mvTxt{
		font-weight: 600;
		font-size: 15px;
		line-height: 27px;
		color: #333;
		padding: 10px 0 15px;
	}
	.recruit_lead{
		padding: 30px 0 0;
	}
	.recruit_lead .leadTxt{
		font-weight: 700;
		font-size: 16px;
		line-height: 26px;
		text-align: justify;
	}
	.recruit_stability{
		padding: 40px 0 60px;
	}
	.recruit_stability .stabilityTtl{
		width: 85%;
		max-width: 300px;
		height: 50px;
		margin: 0 auto;
		border-radius: 9999px;
		background: #007dc8;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 600;
		font-size: 17px;
		line-height: 26px;
		text-align: center;
		color: #fff;
	}
	.recruit_stability .stabilityBlk{
		display: flex;
		flex-wrap: wrap;
		gap: 15px 0;
		margin-top: 20px;
	}
	.recruit_stability .stabilityItem{
		width: 100%;
		max-width: 300px;
		border-radius: 30px;
		background: #e8f6ff;
		padding: 20px 0 25px;
		margin: 0 auto;
	}
	.recruit_stability .stabilityItem .itemImg{
		width: 120px;
		height: 120px;
		margin: 0 auto;
	}
	.recruit_stability .stabilityItem .itemSubTtl{
		font-weight: 600;
		font-size: 16px;
		line-height: 28px;
		text-align: center;
		color: #007dc8;
		margin-top: 10px;
	}
	.recruit_stability .stabilityItem .itemTtl{
		font-weight: 600;
		font-size: 19px;
		line-height: 26px;
		text-align: center;
		color: #007dc8;
	}
	.recruit_gallery{
		width: 100%;
		display: flex;
	}
	.recruit_gallery .galleryImg{
		width: calc(100% / 3);
	}
	.recruit_job{
		padding: 70px 0 60px;
		background: #E8F6FF;
	}
	.recruit_job .jobTtl{
		width: 85%;
		max-width: 300px;
		height: 50px;
		margin: 0 auto;
		border-radius: 9999px;
		background: #007dc8;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 600;
		font-size: 17px;
		line-height: 24px;
		text-align: center;
		color: #fff;
	}
	.recruit_job .jobBlk{
		display: flex;
		flex-wrap: wrap;
		gap: 15px 15px;
		margin-top: 30px;
	}
	.recruit_job .jobItem{
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
		height: auto;
		border-radius: 20px;
		background: #fff;
		padding: 20px 15px;
	}
	.recruit_job .jobItem .itemTtl{
		font-weight: 700;
		font-size: 17px;
        line-height: 26px;
		text-align: center;
		color: #007dc8;
	}
	.recruit_job .jobItem .itemUl{
		max-width: 390px;
		margin: 10px auto 0;
		display: flex;
		flex-flow: column;
		gap: 10px 0;
	}
	.recruit_job .jobItem .itemLi{
		font-weight: 500;
		font-size: 14px;
		line-height: 22px;
		padding-left: 1em;
		text-indent: -1em;
	}
	.recruit_job .jobItem .itemLi::before{
		content: "";
		display: inline-block;
		width: 13px;
		height: 13px;
		background: #97D2F8;
		border-radius: 50%;
		margin: -3px 2px 0 0;
		vertical-align: middle;
	}
	.recruit_voice{
		padding: 70px 0 60px;
	}
	.recruit_voice .voiceTtl{
		width: 90%;
		max-width: 300px;
        height: 50px;
		margin: 0 auto;
		border-radius: 9999px;
		background: #007dc8;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 600;
		font-size: 17px;
        line-height: 24px;
		text-align: center;
		color: #fff;
	}
	.recruit_voice .voiceItem{
		max-width: 375px;
		display: flex;
		flex-flow: column;
		gap: 30px 0;
		margin: 50px auto 0;
	}
	.recruit_voice .voiceItem:not(:first-of-type){
		margin-top: 50px;
	}
	.recruit_voice .voiceItem .itemImg{
		width: 75%;
		max-width: 300px;
		height: auto;
		margin: 0 auto;
	}
	.recruit_voice .voiceItem .itemBlk{
		flex: 1;
	}
	.recruit_voice .voiceItem .itemProfile{
		font-weight: 700;
		font-size: 16px;
		line-height: 24px;
		color: #007dc8;
	}
	.recruit_voice .voiceItem .itemTtl{
		font-weight: 700;
		font-size: 18px;
		line-height: 28px;
		margin-top: 5px;
	}
	.recruit_voice .voiceItem .itemTxt{
		font-weight: 600;
		font-size: 15px;
		line-height: 26px;
		margin-top: 10px;
	}
	.recruit_requirements{
		padding: 60px 0 60px;
		background: #E8F6FF;
	}
	.recruit_requirements .requirementsTtl{
		width: 90%;
		max-width: 300px;
        height: 50px;
		margin: 0 auto;
		border-radius: 9999px;
		background: #007dc8;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 600;
		font-size: 17px;
        line-height: 24px;
		text-align: center;
		color: #fff;
	}
	.recruit_requirements .requirementsTab{
		display: flex;
		justify-content: center;
		gap: 0 5px;
		margin-top: 50px;
	}
	.recruit_requirements .requirementsTab .tabItem{
		width: calc((100% - 5px) / 2);
		height: 60px;
		border-radius: 15px 15px 0px 0px;
		background: #b5cbd4;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 700;
		font-size: 15px;
		line-height: 20px;
		text-align: center;
		color: #fff;
		cursor: pointer;
	}
	.recruit_requirements .requirementsTab .tabItem.current{
		background: #009fff;
	}
	.recruit_requirements .requirementsItem{
		width: 100%;
		border-radius: 0px 0 30px 30px;
		background: #fff;
		padding: 20px 5% 30px;
		border: 4px solid #009fff;
	}
	.recruit_requirements .requirementsItem .itemTtl::before{
		content: "";
		display: block;
		width: 7px;
		height: 33px;
		background: #00d5f6;
		margin-right: 11px;
	}
	.recruit_requirements .requirementsItem .itemDl{
		display: none;
		flex-wrap: wrap;
		border-top: 1px solid rgba(112, 112, 112, 0.5);
	}
	.recruit_requirements .requirementsItem .itemDl.current{
		display: flex;
	}
	.recruit_requirements .requirementsItem .itemDt{
		width: 80px;
		font-weight: 600;
		font-size: 14px;
		line-height: 22px;
		padding: 15px 0;
		border-bottom: 1px solid rgba(112, 112, 112, 0.5);
	}
	.recruit_requirements .requirementsItem .itemDd{
		width: calc(100% - 80px);
		font-weight: 600;
		font-size: 14px;
		line-height: 22px;
		padding: 15px 0;
		border-bottom: 1px solid rgba(112, 112, 112, 0.5);
	}
	.recruit_requirements .requirementsItem .itemDd.bold{
		font-weight: 600;
		font-size: 15px;
		line-height: 22px;
	}
	.recruit_entry{
		padding: 0 10%;
		height: 250px;
		background: #009fff;
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
	}
	.recruit_entry .entryTtl{
		font-weight: 700;
		font-size: 28px;
		line-height: 38px;
		text-align: center;
		color: #b8e3ff;
	}
	.recruit_entry .entryTxt{
		font-weight: 600;
		font-size: 26px;
		line-height: 34px;
		text-align: center;
		color: #fff;
		margin-top: 10px;
	}
	.recruit_entry .entryLink{
		width: 100%;
		max-width: 300px;
		height: 50px;
		margin: 20px auto 0;
		border-radius: 9999px;
		background: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 700;
		font-size: 18px;
		line-height: 30px;
		color: #007dc8;
	}
}

/*
News
====================================*/
.news_list{
	padding: 85px 0 180px;
}
.news_list .inner{
	max-width: 750px;
	margin: 0 auto;
}
.news_list .listItem{
	width: 100%;
	position: relative;
	border-bottom: 1px solid rgba(112, 112, 112, 0.5);
}
.news_list .listItem .itemLink{
	display: flex;
	gap: 0 35px;
	padding: 29px 0;
}
.news_list .listItem .itemDate{
	font-weight: 600;
	font-size: 16px;
	line-height: 25px;
	color: #007dc8;
}
.news_list .listItem .itemTtl{
	flex: 1;
	font-weight: 600;
	font-size: 18px;
	line-height: 25px;
	color: #333;
}
.news_list .listItem .itemArrow{
	display: block;
    width: 25px;
    height: 25px;
    margin: auto 4px auto 0;
    border-radius: 50%;
    background: #007dc8;
    position: relative;
}
.news_list .listItem .itemArrow::before {
    content: "";
    display: block;
    width: 7px;
    height: 11px;
    background: url('images/icon_arrow.svg') no-repeat;
    position: absolute;
    top: 50%;
    left: calc(50% + 1px);
    transform: translate(-50%, -50%);
}
.news_list .listEmpty{
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
	text-align: center;
}
@media screen and (max-width: 1024px) {
	.news_list{
		padding: 30px 0 70px;
	}
	.news_list .inner{
		max-width: 750px;
		margin: 0 auto;
	}
	.news_list .listItem{
		width: 100%;
		position: relative;
		border-bottom: 1px solid rgba(112, 112, 112, 0.5);
	}
	.news_list .listItem .itemLink{
		display: flex;
		gap: 0 15px;
		padding: 20px 0;
	}
	.news_list .listItem .itemDate{
		font-weight: 600;
		font-size: 14px;
		line-height: 20px;
		color: #007dc8;
	}
	.news_list .listItem .itemTtl{
		flex: 1;
		font-weight: 600;
		font-size: 16px;
		line-height: 20px;
		color: #333;
	}
	.news_list .listItem .itemArrow{
		display: block;
		width: 22px;
		height: 22px;
		margin: auto 4px auto 0;
		border-radius: 50%;
		background: #007dc8;
		position: relative;
	}
	.news_list .listItem .itemArrow::before {
		content: "";
		display: block;
		width: 7px;
		height: 11px;
		background: url('images/icon_arrow.svg') no-repeat;
		position: absolute;
		top: 50%;
		left: calc(50% + 1px);
		transform: translate(-50%, -50%);
	}
	.news_list .listEmpty{
		font-weight: 600;
		font-size: 18px;
		line-height: 24px;
		text-align: center;
	}
}

/*
NewsPost
====================================*/
.newsPost_article{
	padding: 100px 0 160px;
	background: rgba(0, 125, 200, 0.1);
}
.newsPost_article .articleItem{
	width: 100%;
	border-radius: 50px;
	background: #fff;
	padding: 80px 125px 130px;
}
.newsPost_article .articleItem .itemDate{
	font-weight: 600;
	font-size: 18px;
	line-height: 25px;
	color: #007dc8;
}
.newsPost_article .articleItem .itemTtl{
	font-weight: 600;
	font-size: 25px;
	line-height: 36px;
	color: #333;
	margin-top: 5px;
}
.newsPost_article .articleItem .itemContent {
	margin: 20px 0 0;
}
.newsPost_article .articleItem .itemContent > *:first-child,
.newsPost_article .articleItem .itemContent > * *:first-child {
	margin-top: 0;
}
.newsPost_article .articleItem .itemContent img {
	display: table;
	margin: auto!important;
}
.newsPost_article .articleItem .itemContent :not(ul):not(li):not(iframe):not(table *) {
	margin: calc(1rem * 1.6) 0 0;
}
.newsPost_article .articleItem .itemContent a {
	color: var(--mainColor);
	text-decoration: underline;
}
@media screen and (max-width: 1024px) {
	.newsPost_article{
		padding: 40px 0 80px;
		background: rgba(0, 125, 200, 0.1);
	}
	.newsPost_article .articleItem{
		width: 100%;
		border-radius: 20px;
		background: #fff;
		padding: 30px 7% 50px;
	}
	.newsPost_article .articleItem .itemDate{
		font-weight: 600;
		font-size: 15px;
		line-height: 21px;
		color: #007dc8;
	}
	.newsPost_article .articleItem .itemTtl{
		font-weight: 600;
		font-size: 20px;
		line-height: 30px;
		color: #333;
		margin-top: 5px;
	}
	.newsPost_article .articleItem .itemContent {
		margin: 15px 0 0;
	}
	.newsPost_article .articleItem .itemContent > *:first-child,
	.newsPost_article .articleItem .itemContent > * *:first-child {
		margin-top: 0;
	}
	.newsPost_article .articleItem .itemContent img {
		display: table;
		margin: auto!important;
	}
	.newsPost_article .articleItem .itemContent :not(ul):not(li):not(iframe):not(table *) {
		margin: calc(1rem * 1.6) 0 0;
	}
	.newsPost_article .articleItem .itemContent a {
		color: var(--mainColor);
		text-decoration: underline;
	}
}






/*
Contact
====================================*/
.contact_menu{
	position: sticky;
	top: 200px;
	margin: 0 0 0 auto;
	width: 120px;
	height: 330px;
	border-radius: 30px 0px 0px 30px;
	background: #e6f2f9;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	font-size: 30px;
	line-height: 35px;
	color: #007dc8;
	z-index: 100;
}
.contact_menu::before{
	content: "";
	display: block;
	width: 50px;
	height: 50px;
	background: url('images/icon_hatena.svg') no-repeat;
	background-size: contain;
	margin-bottom: 7px;
}
.contact_tel{
	padding: 95px 0 110px;
	margin-top: -330px;
}
.contact_tel .telTxt{
	font-weight: 600;
	font-size: 30px;
	line-height: 48px;
	text-align: center;
}
.contact_tel .telBlk{
	display: flex;
	gap: 0 30px;
	margin-top: 90px;
}
.contact_tel .telItem{
	width: 100%;
	border-radius: 20px;
	background: #009fff;
	padding: 30px 0 40px;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
}
.contact_tel .telItem .itemNum{
	font-weight: 900;
	font-size: 76px;
	line-height: 110px;
	color: #fff;
	display: flex;
    align-items: center;
}
.contact_tel .telItem .itemNum::before {
    content: "";
    display: block;
    width: 50px;
    height: 63px;
    background: url('images/icon_tel.svg') no-repeat;
	background-size: contain;
    margin-top: 12px;
    margin-right: 6px;
}
.contact_tel .telItem .itemTime{
	font-weight: 700;
	font-size: 28px;
	line-height: 40px;
	text-align: center;
	color: #fff;
}
.contact_mail{
	background: #F4F5F7;
	padding: 70px 0 100px;
}
.contact_mail .mailTtl{
	font-weight: 600;
	font-size: 30px;
	line-height: 44px;
	text-align: center;
}
.contact_mail .mailTxt{
	font-weight: 600;
	font-size: 16px;
	line-height: 25px;
	text-align: center;
	margin-top: 20px;
}
.contact_mail .mailAst{
	font-weight: 600;
	font-size: 16px;
	line-height: 25px;
	text-align: center;
	color: #e23e3e;
	margin-top: 5px;
}
.contact_faq{
	padding: 75px 0 50px;
	margin-bottom: 100px;
}
.contact_faq .faqBlk{
	max-width: 750px;
	margin: 10px auto 0;
	display: flex;
	flex-flow: column;
	gap: 20px 0;
}
.contact_faq .faqItem{
	width: 100%;
	padding: 20px 15px 20px 30px;
	border-radius: 15px;
	background: rgba(0, 125, 200, 0.05);
}
.contact_faq .faqItem .itemQ{
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	color: #007dc8;
	display: flex;
}
.contact_faq .faqItem .itemQ .question{
	display: block;
    flex-shrink: 0;
	width: 35px;
	height: 26px;
	background: url('images/icon_question.svg') no-repeat;
	margin-right: 10px;
	margin-top: 1px;
}
.contact_faq .faqItem .itemA{
	font-weight: 600;
	font-size: 15px;
	line-height: 21px;
	color: #333;
	display: flex;
	margin-top: 14px;
}
.contact_faq .faqItem .itemA .answer{
	display: block;
    flex-shrink: 0;
	width: 35px;
	height: 26px;
	background: url('images/icon_answer.svg') no-repeat;
	margin-right: 10px;
	margin-top: -1px;
}
@media screen and (max-width: 1024px) {
	.contact_menu{
		position: fixed;
		top: auto;
		bottom: 30px;
		right: -150px;
		width: 110px;
		height: 50px;
		border-radius: 25px 0px 0px 25px;
		background: #e6f2f9;
		writing-mode: horizontal-tb;
		display: flex;
		flex-flow: row;
		justify-content: center;
		align-items: center;
		font-weight: 700;
		font-size: 15px;
		line-height: 20px;
		color: #007dc8;
		letter-spacing: 0em;
		z-index: 100;
		padding-left: 10px;
		/* box-shadow: 1px 1px 1px rgba(0, 159, 255, 0.5); */
		border: 1px solid #D3D3D3;
		border-right: 0;
	}
	.contact_menu::before{
		content: "";
		display: none;
		width: 20px;
		height: 20px;
		background: url('images/icon_hatena.svg') no-repeat;
		background-size: contain;
		margin-bottom: 3px;
	}
	.contact_tel{
		padding: 30px 0 50px;
		margin-top: 0;
	}
	.contact_tel .telTxt{
		font-weight: 600;
		font-size: 16px;
        line-height: 26px;
		text-align: justify;
	}
	.contact_tel .telBlk{
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 10px 20px;
		margin-top: 30px;
	}
	.contact_tel .telItem{
		width: 100%;
		max-width: 375px;
		border-radius: 20px;
		background: #009fff;
		padding: 15px 3% 20px;
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
	}
	.contact_tel .telItem .itemNum{
		font-weight: 900;
	    font-size: 40px;
        line-height: 55px;
		color: #fff;
		display: flex;
		align-items: center;
	}
	.contact_tel .telItem .itemNum::before {
		content: "";
		display: block;
		width: 22px;
        height: 32px;
		background: url('images/icon_tel.svg') no-repeat;
		background-size: contain;
		margin-top: 10px;
		margin-right: 4px;
	}
	.contact_tel .telItem .itemTime{
		font-weight: 700;
		font-size: 15px;
        line-height: 20px;
		text-align: center;
		color: #fff;
		margin-top: 3px;
	}
	.contact_mail{
		background: #F4F5F7;
		padding: 50px 0 60px;
	}
	.contact_mail .mailTtl{
		font-weight: 600;
		font-size: 20px;
		line-height: 34px;
		text-align: center;
	}
	.contact_mail .mailTxt{
		font-weight: 600;
		font-size: 14px;
		line-height: 22px;
		text-align: justify;
		margin-top: 20px;
	}
	.contact_mail .mailAst{
		font-weight: 600;
		font-size: 14px;
		line-height: 22px;
		text-align: center;
		color: #e23e3e;
		margin-top: 10px;
	}
	.contact_faq{
		padding: 35px 0 15px;
		margin-bottom: 50px;
	}
	.contact_faq .faqBlk{
		max-width: 750px;
		margin: 5px auto 0;
		display: flex;
		flex-flow: column;
		gap: 15px 0;
	}
	.contact_faq .faqItem{
		width: 100%;
		padding: 20px 5% 20px 3%;
		border-radius: 15px;
		background: rgba(0, 125, 200, 0.05);
	}
	.contact_faq .faqItem .itemQ{
		font-weight: 700;
		font-size: 16px;
        line-height: 22px;
        color: #007dc8;
        display: flex;
	}
	.contact_faq .faqItem .itemQ .question{
		display: block;
		flex-shrink: 0;
		width: 30px;
		height: 24px;
		background: url('images/icon_question.svg') no-repeat;
		background-size: contain;
		margin-right: 7px;
		margin-top: 1px;
	}
	.contact_faq .faqItem .itemA{
		font-weight: 600;
		font-size: 15px;
		line-height: 22px;
		color: #333;
		display: flex;
		margin-top: 12px;
	}
	.contact_faq .faqItem .itemA .answer{
		display: block;
		flex-shrink: 0;
		width: 30px;
		height: 24px;
		background: url('images/icon_answer.svg') no-repeat;
		background-size: contain;
		margin-right: 7px;
		margin-top: 1px;
	}
}