/*
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: #19509A;
	/*====== 背景カラー ======*/
	/* コンテンツ背景カラー */
	--contentsBg: #EDF8FC;
	/* 下層ページトップ背景カラー */
	--lowerTopBg: #D7E1FA;
	/* 表組み項目名背景カラー */
	--tableItemBg: #F0F5FA;
	/* フォーム項目名背景カラー */
	--formItemBg: #F0F5FA;
	/* カテゴリーリンク背景カラー */
	--categoryLinkBg: #D7E1FA;
	/* メール問い合わせボタン背景カラー */
	--mailBtnBg: #f5cd60;
	/*====== テキストカラー ======*/
	/* テキストカラー */
	--textColor: #333;
	/* リンクテキストカラー */
	--linkTextColor: #0c4876;
	/*====== ページネーションカラー ======*/
	/* ページネーションテキスト、矢印カラー */
	--pnColor: #aaa;
	/* ページネーションhoverテキスト、矢印カラー */
	--pnHoverColor: #333;
	/* ページネーションCurrentテキスト、矢印カラー */
	--pnCurrentColor: #333;
	/* ページネーションhover背景カラー */
	--pnHoverBg: #f6f6f6;
	/* ページネーションCurrent背景カラー */
	--pnCurrentBg: #f6f6f6;
	/*====== フォント ======*/
	--gothic: "NotoSansJp", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	--mincho: "NotoSerifJp", "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	/*====== width ======*/
	--maxWidth768: 768px;
	--maxWidth500: 500px;
	--maxWidth375: 375px;
	--maxWidth300: 300px;
	/*====== other ======*/
}
/*
Element
====================================*/
body {
	color: var(--textColor);
}
/*
Decoration
====================================*/
/*
Css Animation
====================================*/
/* fade */
.css_fade {
	opacity: 0;
	animation-name: css_fade;
	animation-duration: 3s;
	animation-timing-function: ease;
	animation-delay: 1s;
	animation-direction: normal;
	animation-fill-mode: forwards;
}
@keyframes css_fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/* text fade */
.css_textSplitFade {
	opacity: 0;
}
.css_textSplitFade > span {
	opacity: 0;
	animation: css_textSplitFade 1s ease-out forwards;
}
@keyframes css_textSplitFade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/*
Plugin Overwrite
====================================*/
/*
Slick
---------------------------------------------------------------*/
.top_mv .slick-arrow::before {
	border-color: var(--mainColor);
}
.top_mv .slick-dots li.slick-active button {
	background: var(--mainColor);
}
/*
default.css Overwrite
====================================*/
/*
Other
====================================*/
/*====================================

2. Site Common Style

====================================*/
/*
Pagination
====================================*/
/*
List
---------------------------------------------------------------*/
.paginationBlk{
	display: flex;
    justify-content: center;
	margin-top: 50px;
}
.paginationBlk .pn_list{
	display: flex;
	gap: 0 10px;
}
.paginationBlk .listPagerBlk{
	display: flex;
	gap: 0 10px
}
.paginationBlk .listPagerNum{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	border-radius: 5px;
}
.paginationBlk .listPagerNum:hover{
	color: #19509A;
}
.paginationBlk span.listPagerNum{
	background: #d5eff8;
}
.paginationBlk .listPagerPrevious{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	border-radius: 5px;
	position: relative;
}
.paginationBlk .listPagerPrevious::before{
	content: '';
    position: absolute;
    top: calc(50% + 3px);
    width: 9px;
    height: 9px;
	border-bottom: solid 2px #000;
    border-left: solid 2px #000;
    left: calc(50% - 2px);
	transform: rotate(45deg) translate(-50%, -50%);
    transition: .3s;
}
.paginationBlk .listPagerNext{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	border-radius: 5px;
	position: relative;
}
.paginationBlk .listPagerNext::before{
	content: '';
    position: absolute;
    top: calc(50% + 3px);
    width: 9px;
    height: 9px;
	border-top: solid 2px #000;
    border-right: solid 2px #000;
    right: calc(50% - 2px);
	transform: rotate(45deg) translate(-50%, -50%);
    transition: .3s;
}
.paginationBlk .listFirstBlk .listArrow{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	border-radius: 5px;
	position: relative;
}
.paginationBlk .listFirstBlk .listArrow::before{
	content: '';
    position: absolute;
    top: calc(50% + 3px);
    width: 9px;
    height: 9px;
	border-bottom: solid 2px #000;
    border-left: solid 2px #000;
    left: calc(50% + 1px);
	transform: rotate(45deg) translate(-50%, -50%);
    transition: .3s;
}
.paginationBlk .listFirstBlk .listArrow::after{
	content: '';
    position: absolute;
    top: calc(50% + 3px);
    width: 9px;
    height: 9px;
	border-bottom: solid 2px #000;
    border-left: solid 2px #000;
    left: calc(50% - 5px);
	transform: rotate(45deg) translate(-50%, -50%);
    transition: .3s;
}
.paginationBlk .listLastBlk .listArrow{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	border-radius: 5px;
	position: relative;
}
.paginationBlk .listLastBlk .listArrow::before{
	content: '';
    position: absolute;
    top: calc(50% + 3px);
    width: 9px;
    height: 9px;
	border-top: solid 2px #000;
    border-right: solid 2px #000;
    right: calc(50% + 1px);
	transform: rotate(45deg) translate(-50%, -50%);
    transition: .3s;
}
.paginationBlk .listLastBlk .listArrow::after{
	content: '';
    position: absolute;
    top: calc(50% + 3px);
    width: 9px;
    height: 9px;
	border-top: solid 2px #000;
    border-right: solid 2px #000;
    right: calc(50% - 5px);
	transform: rotate(45deg) translate(-50%, -50%);
    transition: .3s;
}
@media screen and (max-width: 1024px) {
	.paginationBlk{
		display: flex;
		justify-content: center;
		margin-top: 35px;
	}
	.paginationBlk .pn_list{
		display: flex;
		gap: 0 5px;
	}
	.paginationBlk .listPagerBlk{
		display: flex;
		gap: 0 5px
	}
	.paginationBlk .listPagerNum{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 40px;
		height: 40px;
		border-radius: 5px;
	}
	.paginationBlk .listPagerNum:hover{
		color: #19509A;
	}
	.paginationBlk span.listPagerNum{
		background: #d5eff8;
	}
	.paginationBlk .listPagerPrevious{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 40px;
		height: 40px;
		border-radius: 5px;
		position: relative;
	}
	.paginationBlk .listPagerPrevious::before{
		content: '';
		position: absolute;
		top: calc(50% + 3px);
		width: 9px;
		height: 9px;
		border-bottom: solid 2px #000;
		border-left: solid 2px #000;
		left: calc(50% - 2px);
		transform: rotate(45deg) translate(-50%, -50%);
		transition: .3s;
	}
	.paginationBlk .listPagerNext{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 40px;
		height: 40px;
		border-radius: 5px;
		position: relative;
	}
	.paginationBlk .listPagerNext::before{
		content: '';
		position: absolute;
		top: calc(50% + 3px);
		width: 9px;
		height: 9px;
		border-top: solid 2px #000;
		border-right: solid 2px #000;
		right: calc(50% - 2px);
		transform: rotate(45deg) translate(-50%, -50%);
		transition: .3s;
	}
	.paginationBlk .listFirstBlk .listArrow{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 40px;
		height: 40px;
		border-radius: 5px;
		position: relative;
	}
	.paginationBlk .listFirstBlk .listArrow::before{
		content: '';
		position: absolute;
		top: calc(50% + 3px);
		width: 9px;
		height: 9px;
		border-bottom: solid 2px #000;
		border-left: solid 2px #000;
		left: calc(50% + 1px);
		transform: rotate(45deg) translate(-50%, -50%);
		transition: .3s;
	}
	.paginationBlk .listFirstBlk .listArrow::after{
		content: '';
		position: absolute;
		top: calc(50% + 3px);
		width: 9px;
		height: 9px;
		border-bottom: solid 2px #000;
		border-left: solid 2px #000;
		left: calc(50% - 5px);
		transform: rotate(45deg) translate(-50%, -50%);
		transition: .3s;
	}
	.paginationBlk .listLastBlk .listArrow{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 40px;
		height: 40px;
		border-radius: 5px;
		position: relative;
	}
	.paginationBlk .listLastBlk .listArrow::before{
		content: '';
		position: absolute;
		top: calc(50% + 3px);
		width: 9px;
		height: 9px;
		border-top: solid 2px #000;
		border-right: solid 2px #000;
		right: calc(50% + 1px);
		transform: rotate(45deg) translate(-50%, -50%);
		transition: .3s;
	}
	.paginationBlk .listLastBlk .listArrow::after{
		content: '';
		position: absolute;
		top: calc(50% + 3px);
		width: 9px;
		height: 9px;
		border-top: solid 2px #000;
		border-right: solid 2px #000;
		right: calc(50% - 5px);
		transform: rotate(45deg) translate(-50%, -50%);
		transition: .3s;
	}
}
/*
Detail
---------------------------------------------------------------*/
.paginationBlk .pn_detail{
	display: flex;
	gap: 0 30px;
}
.paginationBlk .detailBackBlk{
	width: 350px;
	height: 60px;
	border-radius: 5px;
	background: #65aac4;
	font-weight: 600;
	font-size: 18px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.paginationBlk .detailBackBlk a{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.paginationBlk .detailpreviousBlk{
	width: 60px;
	height: 60px;
}
.paginationBlk .detailpreviousBlk a{
	width: 100%;
	height: 100%;
	border-radius: 5px;
	position: relative;
	display: block;
}
.paginationBlk .detailpreviousBlk a::before{
	content: '';
    position: absolute;
    top: calc(50% + 3px);
    width: 14px;
    height: 14px;
	border-bottom: solid 2px #65AAC4;
    border-left: solid 2px #65AAC4;
    left: calc(50% - 2px);
	transform: rotate(45deg) translate(-50%, -50%);
    transition: .3s;
}
.paginationBlk .detailNextBlk{
	width: 60px;
	height: 60px;
}
.paginationBlk .detailNextBlk a{
	width: 100%;
	height: 100%;
	border-radius: 5px;
	position: relative;
	display: block;
}
.paginationBlk .detailNextBlk a::before{
	content: '';
    position: absolute;
    top: calc(50% + 3px);
    width: 14px;
    height: 14px;
	border-top: solid 2px #65AAC4;
    border-right: solid 2px #65AAC4;
    right: calc(50% - 2px);
	transform: rotate(45deg) translate(-50%, -50%);
    transition: .3s;
}
@media screen and (max-width: 1024px) {
	.paginationBlk .pn_detail{
		display: flex;
		width: 100%;
		gap: 0 15px;
	}
	.paginationBlk .detailBackBlk{
		width: auto;
		flex: 1;
		height: 45px;
		border-radius: 5px;
		background: #65aac4;
		font-weight: 600;
		font-size: 15px;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.paginationBlk .detailBackBlk a{
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.paginationBlk .detailpreviousBlk{
		width: 45px;
		height: 45px;
	}
	.paginationBlk .detailpreviousBlk a{
		width: 100%;
		height: 100%;
		border-radius: 5px;
		position: relative;
		display: block;
	}
	.paginationBlk .detailpreviousBlk a::before{
		content: '';
		position: absolute;
		top: calc(50% + 3px);
		width: 14px;
		height: 14px;
		border-bottom: solid 2px #65AAC4;
		border-left: solid 2px #65AAC4;
		left: calc(50% - 2px);
		transform: rotate(45deg) translate(-50%, -50%);
		transition: .3s;
	}
	.paginationBlk .detailNextBlk{
		width: 45px;
		height: 45px;
	}
	.paginationBlk .detailNextBlk a{
		width: 100%;
		height: 100%;
		border-radius: 5px;
		position: relative;
		display: block;
	}
	.paginationBlk .detailNextBlk a::before{
		content: '';
		position: absolute;
		top: calc(50% + 3px);
		width: 14px;
		height: 14px;
		border-top: solid 2px #65AAC4;
		border-right: solid 2px #65AAC4;
		right: calc(50% - 2px);
		transform: rotate(45deg) translate(-50%, -50%);
		transition: .3s;
	}
}
/*
Form
====================================*/
/*
Input
----------------------------------------------------------------*/
.form_input {
	border: 1px solid #DDD;
	border-bottom: transparent;
}
.form_input .inputRow {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #DDD;
}
.form_input .inputItem {
	position: relative;
	display: flex;
	justify-content: space-between;
	width: 225px;
	font-size: 14px;
	background: #d5eff8;
	padding: 25px 22px 25px 22px;
	font-weight: 600;
	border-right: 1px solid #D7DCE2;
}
.form_input .inputItem ._must {
	font-size: 12px;
	color: #BF2121;
}
.form_input .inputValue {
	flex: 1;
	padding: 15px 20px;
	display: flex;
	align-items: center;
}
.form_input .wpcf7-form-control-wrap {
	width: 100%;
}
/* input[text, tel, email], textarea */
.form_input input[type="text"], .form_input input[type="tel"], .form_input input[type="email"], .form_input textarea {
	width: 100%;
	height: 40px;
	border-radius: 6px;
	border: solid #707070 1px;
	padding: 0px 10px;
	font-size: 16px;
}
.form_input textarea {
	width: 100% !important;
	height: auto;
	padding: 10px;
}
.form_input input::placeholder, .form_input textarea::placeholder {
	font-size: 14px;
	color: #b4b7bc;
}
/* input[checkbox, radio] */
.form_input input[type="checkbox"], .form_input input[type="radio"] {
	width: 20px;
	height: 20px;
	cursor: pointer;
}
.form_input .wpcf7-form-control {
	display: flex;
	flex-direction: column;
	gap: 10px 0;
}
.form_input .wpcf7-list-item {
	margin: 0;
}
.form_input .wpcf7-list-item label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}
.form_input .wpcf7-list-item-label {
	font-size: 14px;
}
/* input[file] */
.form_input input[type="file"] {
	font-size: 14px;
}
/* validation */
.form_input .wpcf7-not-valid-tip {
	width: 100%;
	font-size: 14px;
	margin: 10px 0 0;
}
/* agree */
.form_agree {
	margin: 50px 0 0;
	text-align: center;
}
.form_agree .wpcf7-list-item {
	margin: 0;
}
.form_agree label {
	display: flex;
	align-items: center;
	gap: 30px;
}
.form_agree .wpcf7-list-item-label {
	font-size: 16px;
	line-height: 19px;
}
.form_agree input[type="checkbox"] {
	width: 20px;
	height: 20px;
}
/* submit */
.form_submit {
	position: relative;
	width: 350px;
	text-align: center;
	margin: 40px auto 0;
}
.form_submit input[type="submit"] {
	width: 100%;
	height: 70px;
	font-size: 18px;
	transition: .3s;
	background: #DDD;
}
.form_submit.check-on input[type="submit"] {
	background: var(--mailBtnBg);
}
.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 {
		border: 1px solid #DDD;
	}
	.form_input .inputRow {
		display: flex;
		flex-flow: wrap;
		justify-content: space-between;
		border-bottom: 1px solid #DDD;
	}
	.form_input .inputRow:last-child {
		border-bottom: transparent;
	}
	.form_input .inputItem {
		position: relative;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		gap: 0 20px;
		width: 100%;
		font-size: 14px;
		background: #d5eff8;
		padding: 15px 10px;
		font-weight: 600;
		border-right: 1px solid #D7DCE2;
	}
	.form_input .inputItem ._must {
		font-size: 12px;
		color: #BF2121;
	}
	.form_input .inputValue {
		flex: 1;
		padding: 15px 10px;
		display: flex;
		align-items: center;
	}
	.form_input .wpcf7-form-control-wrap {
		width: 100%;
	}
	/* input[text, tel, email], textarea */
	.form_input input[type="text"], .form_input input[type="tel"], .form_input input[type="email"], .form_input textarea {
		width: 100%;
		height: 40px;
		border-radius: 6px;
		border: solid #707070 1px;
		padding: 0px 10px;
		font-size: 16px;
	}
	.form_input textarea {
		width: 100% !important;
		height: auto;
		padding: 10px;
	}
	.form_input input::placeholder, .form_input textarea::placeholder {
		font-size: 14px;
		color: #b4b7bc;
	}
	/* input[checkbox, radio] */
	.form_input input[type="checkbox"], .form_input input[type="radio"] {
		width: 20px;
		height: 20px;
		cursor: pointer;
	}
	.form_input .wpcf7-form-control {
		display: flex;
		flex-direction: column;
		gap: 10px 0;
	}
	.form_input .wpcf7-list-item {
		margin: 0;
	}
	.form_input .wpcf7-list-item label {
		display: inline-flex;
		align-items: center;
		gap: 7px;
	}
	.form_input .wpcf7-list-item-label {
		font-size: 14px;
	}
	/* input[file] */
	.form_input input[type="file"] {
		font-size: 14px;
	}
	/* validation */
	.form_input .wpcf7-not-valid-tip {
		width: 100%;
		font-size: 14px;
		margin: 10px 0 0;
	}
	/* agree */
	.form_agree {
		margin: 50px 0 0;
		text-align: center;
	}
	.form_agree .wpcf7-list-item {
		margin: 0;
	}
	.form_agree label {
		display: flex;
		align-items: center;
		gap: 20px;
	}
	.form_agree .wpcf7-list-item-label {
		font-size: 14px;
		line-height: 16px;
	}
	.form_agree input[type="checkbox"] {
		width: 18px;
		height: 18px;
	}
	/* submit */
	.form_submit {
		position: relative;
		width: 100%;
		text-align: center;
		margin: 30px auto 0;
	}
	.form_submit input[type="submit"] {
		width: 100%;
		height: 60px;
		font-size: 16px;
		transition: .3s;
		background: #DDD;
	}
	.form_submit.check-on input[type="submit"] {
		background: var(--mailBtnBg);
	}
	.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 0 0;
	width: 100%;
	height: 200px;
	border-radius: 5px;
	background: #fff;
	border: 1px solid #cecece;
	padding: 15px 30px 15px 15px;
	overflow: auto;
}
.form_pp dt {
	font-size: 15px;
}
.form_pp dd {
	font-size: 13px;
	line-height: 22px;
	margin: 20px 0 0;
}
@media screen and (max-width: 1024px) {
	.form_pp {
		margin: 50px 0 0;
		width: 100%;
		height: 200px;
		border-radius: 5px;
		background: #fff;
		border: 1px solid #cecece;
		padding: 15px 15px 20px 10px;
		overflow: auto;
	}
	.form_pp dt {
		font-size: 14px;
	}
	.form_pp dd {
		font-size: 13px;
		line-height: 20px;
		margin: 15px 0 0;
	}
}
/*
Thanks & 404
====================================*/
.thanks_section {
	overflow: hidden;
	padding: 80px 0 150px;
}
.thanks_section .inner {}
.thanks_section .blk {}
.thanks_section .headBlk {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	padding: 20px 0;
	background: var(--contentsBg);
}
.thanks_section .head {
	text-align: center;
	font-size: 24px;
}
.thanks_section .mainBlk {
	margin: 35px 0 0;
}
.thanks_section .mainDesc {
	font-size: 14px;
	line-height: 26px;
	text-align: center;
}
.error_section {
	overflow: hidden;
	padding: 80px 0 150px;
}
.error_section .inner {}
.error_section .blk {}
.error_section .headBlk {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	padding: 20px 0;
	background: var(--contentsBg);
}
.error_section .head {
	text-align: center;
	font-size: 30px;
	font-weight: 600;
}
.error_section .head span {
	font-size: 22px;
	display: block;
}
.error_section .mainBlk {
	margin: 35px 0 0;
}
.error_section .mainDesc {
	font-size: 14px;
	line-height: 26px;
	text-align: center;
}
.thanks_section .linkBlk, .error_section .linkBlk {
	text-align: center;
	margin: 45px 0 0;
}
.thanks_section .linkBlk a, .error_section .linkBlk a {
	display: inline-block;
	width: 250px;
	line-height: 40px;
	font-size: 14px;
	border: solid 1px var(--mainColor);
	border-radius: 30px;
}
@media screen and (min-width: 1025px) {
	.thanks_section .linkBlk a:hover, .error_section .linkBlk a:hover {
		opacity: 1;
		background: var(--mainColor);
		color: #fff;
	}
}
@media screen and (max-width: 1024px) {
	.thanks_section {
		padding: 60px 0 90px;
	}
	.thanks_section .inner {}
	.thanks_section .blk {}
	.thanks_section .headBlk {
		padding: 15px 0;
	}
	.thanks_section .head {
		text-align: center;
		font-size: 20px;
	}
	.thanks_section .mainBlk {
		margin: 30px 0 0;
	}
	.thanks_section .mainDesc {
		line-height: 24px;
	}
	.thanks_section .linkBlk {
		margin: 40px 0 0;
	}
	.error_section {
		padding: 40px 0 90px;
	}
	.error_section .inner {}
	.error_section .blk {}
	.error_section .headBlk {}
	.error_section .head {
		font-size: 24px;
	}
	.error_section .head span {
		font-size: 16px;
	}
	.error_section .mainBlk {
		margin: 30px 0 0;
	}
	.error_section .mainDesc {
		line-height: 24px;
	}
	.thanks_main .linkBlk a, .error_section .linkBlk a {}
}
/*====================================

3. Header

====================================*/
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
	width: 100%;
	height: 100px;
	box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
	background: white;
}
header .inner {
	height: 100%;
	padding: 0 15px 0 30px;
}
header .blk {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0 30px;
	height: 100%;
}
header .logoBlk {
	flex-shrink: 0;
	display: flex;
}
header .logoBlk a img {
	width: 250px;
}
header .menuBlk {
	display: flex;
	flex-shrink: 0;
	height: 100%;
}
header .menuBlk nav > ul {
	display: flex;
	align-items: center;
	gap: 40px;
	height: 100%;
}
header .menuBlk nav > ul > li {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
}
header .menuBlk nav > ul > li > a {
	font-size: 16px;
	color: var(--mainColor);
}
header .menuBlk nav > ul > li > a._active {
	color: var(--mainColor);
}
header .menuBlk nav > ul > li a:hover {
	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-size: 14px;
}
header .menuBlk nav > ul > ._contactBlk{
	display: flex;
	height: 100%;
	gap: 10px;
	margin-left: 10px;
}
header .menuBlk nav > ul > ._contactBlk > li._contact{
	width: 180px;
	height: 100%;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
header .menuBlk nav > ul > ._contactBlk > li._contact > a{
	font-weight: 600;
	font-size: 20px;
	line-height: 26px;
}
header .menuBlk nav > ul > ._contactBlk > li._contact > a > span{
	display: block;
	font-weight: 500;
	font-size: 14px;
	line-height: 18px;
}
header .menuBlk nav > ul > ._contactBlk > li._contact._recruit > a{
	color: #000;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 60px;
	background: #f5cd60;
	border-radius: 5px;
}
header .menuBlk nav > ul > ._contactBlk > li._contact._mail > a{
	color: #FFF;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 60px;
	background: #19509A;
	border-radius: 5px;
}
header .menuBlk nav > ul > ._contactBlk > li > ul {
	position: absolute;
	top: 80%;
	left: -30px;
	left: clamp(-0.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 > ._contactBlk > li._parent:hover > ul {
	top: 100%;
	opacity: 1;
	visibility: visible;
	pointer-events: initial;
}
header .menuBlk nav > ul > ._contactBlk > li > ul > li > a {
	font-size: 14px;
}

@media screen and (max-width: 1024px) {
	header {
		height: 60px;
		box-shadow: none;
	}
	header .inner {
		background: white;
		padding: 0 5px 0 4%;
		box-shadow: 0 2px 10px rgb(0 0 0 / 5%);
		margin: auto;
	}
	header .logoBlk a img {
		width: 180px;
	}
	header .menuBlk {
		position: absolute;
		top: var(--headerH, 55px);
		left: 0;
		height: calc(100dvh - var(--headerH, 55px));
		z-index: -1;
		width: 100%;
		background: white;
		overflow: auto;
		padding: 20px 0 60px;
		opacity: 0;
		visibility: hidden;
		transition: .3s;
		display: block;
		flex-shrink: unset;
	}
	header .menuBlk::-webkit-scrollbar {
		display: none;
	}
	header._menuOpen .menuBlk {
		opacity: 1;
		visibility: visible;
	}
	header .menuBlk > * {
		width: 92%;
		max-width: var(--maxWidth768);
		margin: auto;
	}
	header .menuBlk nav > 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 nav > ul > li._contact {
		border-bottom: none;
	}
	header .menuBlk nav > ul > li._contact > a {
		width: 250px !important;
		margin: auto;
	}
	header .menuBlk nav > ul > ._contactBlk{
		display: flex;
		gap: 10px;
		margin-left: 0px;
		margin-top: 30px;
	}
	header .menuBlk nav > ul > ._contactBlk > li._contact{
		width: calc((100% - 10px) / 2);
		height: 60px;
		border-radius: 5px;
		text-align: center;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	header .menuBlk nav > ul > ._contactBlk > li._contact > a{
		font-weight: 600;
		font-size: 18px;
		line-height: 23px;
	}
	header .menuBlk nav > ul > ._contactBlk > li._contact > a > span{
		display: block;
		font-weight: 500;
		font-size: 13px;
		line-height: 16px;
	}
	header .menuBlk nav > ul > ._contactBlk > li._contact._recruit{
		background: #f5cd60;
		color: #000;
	}
	header .menuBlk nav > ul > ._contactBlk > li._contact._recruit > a{
		color: #000;
	}
	header .menuBlk nav > ul > ._contactBlk > li._contact._mail{
		background: #19509A;
	}
	header .menuBlk nav > ul > ._contactBlk > li._contact._mail > a{
		color: #FFF;
	}
	header .mbMenuBlk {
		position: relative;
		height: 100%;
		aspect-ratio: 1/1;
		cursor: pointer;
	}
	header .mbMenuBdrBlk, .mbMenuBdrBlk span {
		display: inline-block;
		box-sizing: border-box;
	}
	header .mbMenuBdrBlk {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 25px;
		height: auto;
		transform: translate(-50%, -50%);
	}
	header .mbMenuBdrBlk:focus:not(:focus-visible) {
		outline: none;
	}
	header .mbMenuBdrBlk::before, .mbMenuBdrBlk::after {
		content: '';
	}
	header .mbMenuBdrBlk::before, .mbMenuBdrBlk::after, .mbMenuBdrBlk span {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 1px;
		background: #333;
		border-radius: 4px;
		transition: .2s;
	}
	header .mbMenuBdrBlk::before {
		transform: rotate(45deg) scaleX(0);
	}
	header .mbMenuBdrBlk::after {
		transform: rotate(-45deg) scaleX(0);
	}
	header .mbMenuBdrBlk span:nth-of-type(1) {
		top: -8px;
		transition-delay: .2s;
	}
	header .mbMenuBdrBlk span:nth-of-type(2) {
		top: 0px;
		transition-delay: .2s;
	}
	header .mbMenuBdrBlk span:nth-of-type(3) {
		top: 8px;
		transition-delay: .2s;
	}
	header._menuOpen .mbMenuBdrBlk::before {
		transform: rotate(45deg) scaleX(1);
		transition-delay: .2s;
	}
	header._menuOpen .mbMenuBdrBlk::after {
		transform: rotate(-45deg) scaleX(1);
		transition-delay: .2s;
	}
	header._menuOpen .mbMenuBdrBlk span {
		transform: scaleX(0);
		transition-delay: 0s;
	}
	header .menuBlk nav > ul > ._contactBlk > li > ul {
		position: relative;
		top: 80%;
		left: -30px;
		left: clamp(-0.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;
		display: none;
	}
	header .menuBlk > nav > ul > ._contactBlk > li._parent:hover > ul {
		top: 100%;
		opacity: 1;
		visibility: visible;
		pointer-events: initial;
	}
	header .menuBlk nav > ul > ._contactBlk > li > ul > li > a {
		font-size: 14px;
	}
}
/*====================================

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: 70px 0 30px;
}
footer .mainBlk {
	justify-content: space-between;
	padding: 0 0 0px;
	border-bottom: solid 1px white;
}
footer .mainLogoBlk img {
	width: 250px;
}
footer .mainInfoBlk {
	margin: 40px 0 0;
}
footer .mainInfoBlk p {
	font-size: 15px;
	line-height: 30px;
}
footer .mainInfoBlk p ._fax{
	margin-left: 10px;
}
footer .menuBlk {
	width: 550px;
}
footer .menuBlk > ul {
	justify-content: flex-start;
	gap: 30px 0;
}
footer .menuBlk > ul > li{
	width: calc(100% / 4);
}
footer .menuBlk > ul > li > a {
	font-weight: 500;
	font-size: 16px;
	line-height: 21px;
	color: #19509A;
}
footer .menuBlk .standardBlk{
	width: 100%;
	height: 130px;
	background: #f2f2f2;
	display: flex;
	align-items: center;
	gap: 0 25px;
	padding: 10px;
	margin-top: 35px;
}
footer .menuBlk .standardBlk .standardImg{
	width: 160px;
}
footer .menuBlk .standardBlk .standardTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
}
footer .copyrightBlk {
	margin: 90px 0 0;
}
footer .copyrightBlk p {
	font-weight: 500;
	font-size: 12px;
	line-height: 16px;
	text-align: center;
}
footer .recaptchaBlk p {
	font-weight: 500;
	font-size: 12px;
	line-height: 16px;
	text-align: center;
	margin-top: 5px;
}
@media screen and (max-width: 1024px) {
	footer {
		padding: 50px 0 30px;
	}
	footer .mainLeftBlk{
		width: 100%;
		order: 2;
		margin-top: 60px;
	}
	footer .mainBlk {
		justify-content: space-between;
		padding: 0 0 0px;
		border-bottom: solid 1px white;
	}
	footer .mainLogoBlk{
		text-align: center;
	}
	footer .mainLogoBlk img {
		width: 200px;
	}
	footer .mainInfoBlk {
		margin: 40px 0 0;
	}
	footer .mainInfoBlk p {
		font-size: 14px;
		line-height: 24px;
		text-align: center;
	}
	footer .mainInfoBlk p ._fax{
		margin-left: 10px;
	}
	footer .mainInfoBlk p a {
		text-decoration: underline;
		color: #19509A;
	}
	footer .menuBlk {
		width: 100%;
		order: 1;
	}
	footer .menuBlk > ul {
		justify-content: flex-start;
		gap: 25px 0;
		margin-top: 0px;
	}
	footer .menuBlk > ul > li{
		width: calc(100% / 3);
		text-align: center;
	}
	footer .menuBlk > ul > li > a {
		font-weight: 600;
		font-size: 15px;
		line-height: 20px;
	}
	footer .menuBlk .standardBlk{
		width: 100%;
		height: auto;
		background: #f2f2f2;
		display: flex;
		align-items: center;
		gap: 10px 15px;
		padding: 10px;
		margin: 40px auto 0;
	}
	footer .menuBlk .standardBlk .standardImg{
		width: 120px;
	}
	footer .menuBlk .standardBlk .standardTxt{
		font-weight: 500;
		font-size: 14px;
		line-height: 22px;
	}
	footer .copyrightBlk {
		margin: 40px 0 0;
	}
	footer .copyrightBlk p {
		font-weight: 500;
		font-size: 12px;
		line-height: 16px;
		text-align: center;
	}
	footer .recaptchaBlk p {
		font-weight: 500;
		font-size: 12px;
		line-height: 16px;
		text-align: center;
		margin-top: 10px;
	}
}
/*====================================

6. Common Style

====================================*/
/*
6.1 Single
====================================*/
.cmn_bgColor {
	background-color: var(--contentsBg);
}
.cmn_outer {
	padding: 90px 0;
}
.cmn_inner {
	max-width: 1180px;
	padding: 0 40px;
	margin: auto;
}
.cmn_inner._small {
	max-width: 750px;
	padding: 0;
}
.cmn_link1 {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 350px;
	height: 70px;
	font-size: 20px;
	color: #fff;
	background: var(--mainColor);
}
.cmn_link1:before {
	content: '';
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translate(0%, -50%);
	width: 15px;
	height: 1px;
	background: white;
	transition: .3s;
}
@media screen and (min-width: 1025px) {
	.cmn_link1:hover::before {
		right: 0px;
		opacity: 0;
	}
}
/*head*/
.cmn_head {
	font-weight: 700;
    font-size: 60px;
    line-height: 80px;
    color: #78bad3;
}
.cmn_head span{
	display: block;
    font-weight: 600;
    font-size: 30px;
    line-height: 40px;
    color: #000000;
}
/*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;
	}
	/*head*/
	.cmn_head {
		font-weight: 700;
		font-size: 35px;
		line-height: 42px;
		color: #78bad3;
	}
	.cmn_head span{
		display: block;
		font-weight: 600;
		font-size: 17px;
		line-height: 26px;
		color: #000000;
		margin-top: 3px;
	}
	/*title*/
	.cmn_title1 {
		font-size: 18px;
	}
	/*text*/
	.cmn_text1 {
		font-size: 14px;
		line-height: 1.6;
	}
}
/*
6.2 Section
====================================*/
/* lower top */
.cmn_top {
	height: 350px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.cmn_top._small{
	height: 200px;
}
.cmn_top._small2{
	height: 200px;
}
.cmn_top .inner {
	height: 100%;
}
.cmn_top .blk {
	height: 100%;
	display: flex;
}
.cmn_top .headBlk {
	width: calc(100% / 3);
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(#fff 0%, #78bad3 100%);
	padding-bottom: 50px;
}
.cmn_top._small .headBlk{
	width: 100%;
	padding-bottom: 20px;
}
.cmn_top._small2 .headBlk{
	width: 100%;
	padding-bottom: 0px;
	background: #61BEE2;
}
.cmn_top .head {
	font-weight: 700;
	font-size: 25px;
	line-height: 35px;
	text-align: center;
	color: #78bad3;
}
.cmn_top .head span {
	font-weight: 500;
	font-size: 45px;
	line-height: 60px;
	display: block;
	color: #000;
}
.cmn_top._small2 .head{
	color: rgba(237, 248, 252, 0.5);
	font-size: 30px;
}
.cmn_top._small2 .head span{
	font-size: 35px;
	color: #fff;
}
.cmn_top .topVisual{
	width: calc(100% - (100% / 3));
}
.cmn_top .topVisual img{
	width: 100%;
	height: 100%;
}
/* table */
.cmn_table > dl {
	border: 1px solid #d7dce2;
	background: white;
}
.cmn_table > dl > div {
	display: flex;
	flex-flow: wrap;
	border-bottom: 1px solid #d7dce2;
}
.cmn_table > dl > div:last-child {
	border-bottom: transparent;
}
.cmn_table > dl > div > * {
	padding: 25px 20px;
	line-height: 26px;
	font-size: 14px;
}
.cmn_table > dl > div > dt {
	width: 225px;
	background: var(--tableItemBg);
	border-right: 1px solid #D7DCE2;
}
.cmn_table > dl > div > dd {
	flex: 1;
}
.cmn_table > dl > div > dd a {
	color: var(--linkTextColor);
}
.cmn_table > dl > div > dd a:not([href^="tel"]) {
	text-decoration: underline;
}
.cmn_table > dl > div > dd a[href^="tel"] {
	color: inherit;
}
@media screen and (max-width: 1024px) {
	.cmn_top {
		height: auto;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
	}
	.cmn_top._small{
		height: 150px;
	}
	.cmn_top._small2{
		height: 200px;
	}
	.cmn_top .inner {
		height: 100%;
	}
	.cmn_top .blk {
		height: 100%;
		display: flex;
		flex-flow: column;
	}
	.cmn_top .headBlk {
		width: 100%;
		height: auto;
		display: flex;
		align-items: center;
		justify-content: center;
		background: linear-gradient(#fff 0%, #78bad3 100%);
		padding: 20px 0 15px;
	}
	.cmn_top._small .headBlk{
		width: 100%;
		height: 100%;
		padding-bottom: 10px;
	}
	.cmn_top._small2 .headBlk{
		width: 100%;
		height: 100%;
		padding-bottom: 0px;
		background: #61BEE2;
	}
	.cmn_top .head {
		font-weight: 700;
		font-size: 17px;
		line-height: 20px;
		text-align: center;
		color: #78bad3;
	}
	.cmn_top .head span {
		font-weight: 500;
		font-size: 24px;
		line-height: 30px;
		display: block;
		color: #000;
	}
	.cmn_top._small2 .head{
		color: rgba(237, 248, 252, 0.5);
		font-size: 21px;
	}
	.cmn_top._small2 .head span{
		font-size: 24px;
		color: #fff;
		margin-top: 7px;
	}
	.cmn_top .topVisual{
		width: 100%;
	}
	.cmn_top .topVisual img{
		width: 100%;
		height: 100%;
		max-height: 200px;
	}
	/* table */
	.cmn_table > dl {
		border: 1px solid #d7dce2;
		background: white;
	}
	.cmn_table > dl > div {
		display: flex;
		flex-flow: wrap;
		border-bottom: 1px solid #d7dce2;
	}
	.cmn_table > dl > div:last-child {
		border-bottom: transparent;
	}
	.cmn_table > dl > div > * {
		padding: 20px 15px;
		line-height: 24px;
		font-size: 14px;
	}
	.cmn_table > dl > div > dt {
		width: 100%;
		border-right: transparent;
	}
	.cmn_table > dl > div > dd {
		flex: unset;
		width: 100%;
	}
}
/*====================================

7. Module

====================================*/
.mod_modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999;
	width: 100%;
	height: 100dvh;
	background-color: rgb(51, 51, 51, 65%);
	transition: all .5s;
	opacity: 0;
	visibility: hidden;
}
.mod_modal._open {
	opacity: 1;
	visibility: visible;
}
.mod_modal .layer {
	width: 100%;
	height: 100%;
}
.mod_modal .inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: calc(100% - 80px);
	max-height: 85%;
	min-height: 400px;
	padding: 90px 60px 60px;
	border-radius: 10px;
	background: #fff;
}
.mod_modal .blk {
	overflow-y: auto;
	height: 100%;
}
.mod_modal .closeBtn {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid #989EA7;
	background: #fff;
	pointer-events: auto;
	cursor: pointer;
	transition: all .3s;
}
.mod_modal .closeBtn::before, .mod_modal .closeBtn::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 45%;
	height: 2px;
	background: #989EA7;
	border-radius: 4px;
	transition: all .3s;
}
.mod_modal .closeBtn::before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.mod_modal .closeBtn::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (min-width: 1025px) {
	.mod_modal .closeBtn:hover {
		background: #989EA7;
		opacity: 1;
	}
	.mod_modal .closeBtn:hover::before, .mod_modal .closeBtn:hover::after {
		background: #fff;
	}
}
.mod_modal .mainBlk {}
@media screen and (max-width: 1024px) {
	.mod_modal {}
	.mod_modal._open {}
	.mod_modal .layer {
	}
	.mod_modal .inner {
		width: 92%;
		min-height: 45%;
		max-height: 85%;
		padding: 60px 15px 40px;
	}
	.mod_modal .blk {
	}
	.mod_modal .closeBtn {
		position: absolute;
		top: 15px;
		right: 15px;
		width: 30px;
		height: 30px;
		border-radius: 50%;
		border: 2px solid #989EA7;
		background: #fff;
		pointer-events: auto;
		cursor: pointer;
		transition: all .3s;
	}
	.mod_modal .closeBtn::before, .mod_modal .closeBtn::after {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		width: 45%;
		height: 2px;
		background: #989EA7;
		border-radius: 4px;
		transition: all .3s;
	}
	.mod_modal .closeBtn::before {
		transform: translate(-50%, -50%) rotate(45deg);
	}
	.mod_modal .closeBtn::after {
		transform: translate(-50%, -50%) rotate(-45deg);
	}
	.mod_modal .mainBlk {}
}
/*====================================

8. Page

====================================*/
/*
Top
====================================*/
/*common start*/
.top_cmn_head {
	font-weight: 700;
	font-size: 60px;
	line-height: 80px;
	color: #78bad3;
	display: flex;
	align-items: center;
	gap: 0 30px;
	border: none;
	padding: 0;
}
.top_cmn_head span {
	display: block;
	font-weight: 500;
	font-size: 20px;
	line-height: 27px;
	color: #000000;
}
.top_cmn_head.contact span{
	font-weight: 600;
	font-size: 25px;
}
.top_common .mainBlk {
	gap: 80px;
}
.top_common .mainTextBlk {
	flex: 1;
	padding: 35px 60px 60px;
	background: #EDF8FC;
	border-radius: 0px 20px 0px 0px;
	position: relative;
}
.top_common .mainTextBlk::after{
	content: "";
	display: block;
	width: 500px;
	height: 550px;
	border-radius: 0px 20px 0px 0px;
	background: linear-gradient(#78bad3 0%, #fff 100%);
	position: absolute;
	top: -30px;
	left: -30px;
	z-index: -1;
}
.top_common .mainTextHead {
	font-weight: 600;
	font-size: 28px;
	line-height: 36px;
	margin-top: 15px;
}
.top_common .mainTextDesc {
	margin: 30px 0 0;
	font-weight: 400;
	font-size: 16px;
	line-height: 32px;
}
.top_common .mainTextDesc._recruit{
	font-weight: 400;
	font-size: 20px;
	line-height: 40px;
}
.top_common .mainLinkBlk {
	margin: 35px 0 0;
}
.top_common .mainLinkBlk .mainLink{
	width: 350px;
	height: 80px;
	margin: 0 auto;
	border-radius: 5px;
	background: #19509a;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 500;
	font-size: 18px;
	line-height: 26px;
	color: #FFF;
	position: relative;
}
.top_common .mainLinkBlk .mainLink::after{
	content: "";
	display: block;
	background: url('images/icon_arrow.webp') no-repeat;
	background-size: contain;
	width: 30px;
	height: 30px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	margin: auto 0;
}
.top_common .mainImgWrap {
	position: relative;
	width: 45%;
}
.top_common .mainImgBlk {
	position: relative;
	top: 0;
	left: 0;
	width: calc(var(--vw)* 50);
}
.top_common .mainImgBlk img {
	width: 100%;
	aspect-ratio: 16 / 10;
	min-height: 460px;
}
/*reverse*/
.top_common .mainBlk._reverse {
	flex-flow: row-reverse;
}
.top_common .mainBlk._reverse .mainImgWrap {
	transform: scale(-1, 1);
}
.top_common .mainBlk._reverse .mainImgBlk {
	left: initial;
	right: 0;
	transform: scale(-1, 1);
}
/*common end*/
.top_mv {
	height: calc(100vh - var(--headerH));
	background-image: url('images/top_mv_bg01.webp');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.top_mv .inner {
	height: 100%;
}
.top_mv .blk {
	position: relative;
	height: 100%;
}
.top_mv .catchBlk {
	height: 100%;
	display: flex;
	flex-flow: column;
	justify-content: flex-start;
	align-items: flex-start;
}
.top_mv .catchImg{
	width: 680px;
	margin-left: -5%;
}
.top_mv .catch {
	font-weight: 700;
	font-size: 60px;
}
.top_mv .catch.white{
	color: #FFF;
}
/*slider*/
.top_mv._slider {
	background: initial;
}
.top_mv._slider .catchBlk {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	place-items: initial;
	padding: 100px 0 0 10%;
	pointer-events: none;
}
.top_mv._slider .catch {
	font-size: 50px;
}
.top_mv .slideBlk {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.top_mv .slideBlk img {
	width: 100%;
	height: 100%;
}
.top_mv .badgeBlk{
	position: absolute;
	bottom: 30px;
	right: 30px;
	width: 180px;
	height: 130px;
	background: #f5cd60;
	border: 3px solid #fff;
	filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.16));
	border-radius: 50%;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
}
.top_mv .badgeBlk .badgeTxt{
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #19509a;
	position: relative;
}
.top_mv .badgeBlk .badgeTxt::before{
	content: "";
	display: inline-block;
	width: 1.5px;
	height: 13px;
	margin: 0 0.5em -1px;
	background: #19509A;
	transform: rotate(-25deg);
}
.top_mv .badgeBlk .badgeTxt::after{
	content: "";
	display: inline-block;
	width: 1.5px;
	height: 13px;
	margin: 0 0.5em -1px;
	background: #19509A;
	transform: rotate(25deg);
}
.top_mv .badgeBlk .badgeTtl{
	font-weight: 600;
	font-size: 25px;
	line-height: 34px;
	color: #19509a;
}
.top_mv .badgeBlk .badgeArrow{
	width: 30px;
	margin: 5px auto 0;
}
.top_infoTop{
	padding: 30px 0;
	background: #F2F2F2;
}
.top_infoTop .mainBlk{
	display: flex;
	justify-content: center;
}
.top_infoTop .mainTtl{
	width: 120px;
	height: 60px;
	border-radius: 5px 0px 0px 5px;
	background: #19509a;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 20px;
	line-height: 27px;
	color: #fff;
}
.top_infoTop article{
	width: 880px;
	height: 60px;
	border-radius: 0px 5px 5px 0px;
	background: #fff;
	display: flex;
	align-items: center;
}
.top_infoTop article a{
	align-items: center;
	padding: 0 20px;
	position: relative;
	flex: 1;
}
.top_infoTop article a:after {
    content: "";
    display: block;
    background: url(images/icon_arrow2.webp) no-repeat;
    background-size: contain;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto 0;
}
.top_infoTop .mainDate{
	font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #19509a;
}
.top_infoTop .mainCat{
    display: inline-block;
    min-width: 110px;
    margin-left: 10px;
    padding-left: 10px;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #19509a;
    border-left: 1px solid #19509a;
}
.top_infoTop .mainTitle{
	flex: 1;
    margin-left: 30px;
    padding-right: 30px;
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
}
.top_about {
	padding: 130px 0 100px;
}
.top_community{
	padding: 55px 0 65px;
}
.top_community .top_cmn_head {
	flex-flow: column;
	gap: 10px 0;
}
.top_community .commuText{
	font-weight: 500;
	font-size: 28px;
	line-height: 48px;
	text-align: center;
	margin-top: 35px;
}
.top_community .commuImgFlex{
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
}
.top_community .commuImgFlex .commuImg{
	width: 340px;
	height: 255px;
	border: 10px solid #fff;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.top_community .commuImgFlex .commuImg:nth-last-of-type(2){
	margin-top: 40px;
}
.top_community .commuImgFlex .commuImg img{
	width: 100%;
	height: 100%;
}
.top_service{
	padding: 130px 0 120px;
	overflow: hidden;
}
.top_works{
	padding: 55px 0 75px;
	overflow: hidden;
}
.top_works .top_cmn_head {
	flex-flow: column;
	gap: 10px 0;
}
.top_works .worksImgFlexWrap{
	width: 100vw;
   	margin: 30px calc(50% - 50vw) 0;
}
.top_works .worksImgFlex{
	display: flex;
	justify-content: space-between;
	gap: 0 30px;
	max-width: 1410px;
    margin: 0 auto;
}
.top_works .worksImgBlk{
	width: 330px;
	border-radius: 0px 20px 0px 0px;
	background: #FFF;
	overflow: hidden;
}
.top_works .worksImgBlk .worksImg{
	width: 100%;
	height: 230px;
}
.top_works .worksImgBlk .worksImg img{
	width: 100%;
	height: 100%
}
.top_works .worksImgBlk .worksTxtBlk{
	padding: 15px 15px 20px;
	background: #FFF;
}
.top_works .worksImgBlk .worksImgTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 21px;
}
.top_info {
	padding: 80px 0 100px;
}
.top_info .inner {
	display: flex;
	gap: 0 55px;
}
.top_info .top_cmn_head{
	flex-flow: column;
    gap: 10px 0;
	align-items: flex-start;
}
.top_info .info_link{
	width: 150px;
	height: 40px;
	border-radius: 5px;
	background: #fff;
	border: 1px solid #19509a;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 50px;
	color: #19509a;
}
.top_info .mainBlk {
	margin: 20px 0 0;
	flex: 1;
}
.top_info .mainBlk article {
	border-top: solid 1px #DDDDDD;
}
.top_info .mainBlk article:last-child {
	border-bottom: solid 1px #DDDDDD;
}
.top_info .mainBlk a {
	justify-content: flex-start;
	align-items: center;
	padding: 23px 0;
	position: relative;
}
.top_info .mainBlk a:after{
	content: "";
	display: block;
	background: url('images/icon_arrow2.webp') no-repeat;
	background-size: contain;
	width: 15px;
	height: 15px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto 0;
}
.top_info .mainDate {
	display: inline-block;
	font-weight: 600;
	font-size: 14px;
	line-height: 18px;
	color: #19509a;
}
.top_info .mainCat {
	display: inline-block;
	min-width: 110px;
	margin-left: 10px;
	padding-left: 10px;
	font-weight: 600;
	font-size: 14px;
	line-height: 18px;
	color: #19509a;
	border-left: 1px solid #19509a;
}
.top_info .mainTitle {
	flex: 1;
	margin-left: 30px;
	padding-right: 50px;
	font-weight: 500;
	font-size: 16px;
	line-height: 21px;
}
.top_recruit{
	width: 100%;
	height: 700px;
	background: #78bad3;
	position: relative;
	padding: 115px 0 90px;
}
.top_recruit:before{
	content: "";
	display: block;
	width: 66%;
	height: 700px;
	background: url('images/top_recruit.webp') no-repeat;
	background-size: cover;
	position: absolute;
	top: 0;
	right: 0;
}
.top_recruit .mainTextBlk{
	width: 500px;
	height: 440px;
	padding: 35px 45px 55px;
	background: #FFF;
	flex: none;
}
.top_recruit .mainTextBlk::after{
	content: "";
    display: block;
    width: 500px;
    height: 440px;
    border-radius: 0px 20px 0px 0px;
    background: #d5eff8;
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: -1;
}
.top_link{
	padding: 100px 0;
	overflow: hidden;
}
.top_link .mainFlex{
	display: flex;
	gap: 0 60px;
}
.top_link .mainFlex .itemTtl{
	font-weight: 600;
	font-size: 20px;
	line-height: 26px;
	color: #19509a;
	margin-bottom: 20px;
}
.top_link .itemImg img{
	width: 100%;
	height: 100%;
}
.top_link .flexItemLeft .itemImg{
	display: block;
	width: 360px;
	height: 180px;
	border-radius: 0px 20px 0px 0px;
	overflow: hidden;
}
.top_link .itemImgFlex{
	display: flex;
	gap: 0 20px;
}
.top_link .itemImgFlex .itemImgBlk{
	width: 330px;
}
.top_link .itemImgFlex .itemImg{
	width: 100%;
	height: 150px;
	display: block;
}
.top_link .itemImgFlex .itemImgTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 21px;
	margin-top: 5px;
}
.top_contact{
	background: #78BAD3;
	padding: 40px 0 55px;
}
.top_contact .top_cmn_head{
	color: #FFF;
	flex-flow: column;
	gap: 0px 0;
}
.top_contact .top_cmn_head span{
	color: #000;
}
.top_contact .mainText{
	font-weight: 500;
	font-size: 17px;
	line-height: 22px;
	text-align: center;
	margin-top: 22px;
}
.top_contact .mainFlex{
	display: flex;
	justify-content: center;
	gap: 0 20px;
	margin-top: 40px;
}
.top_contact .mainFlex .flexItem{
	width: 400px;
	height: 100px;
	border-radius: 5px;
	background: #fff;
	box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.16);
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
}
.top_contact .mainFlex .flexItem .telNum{
	font-weight: 500;
	font-size: 35px;
	line-height: 40px;
	text-align: center;
	color: #19509a;
}
.top_contact .mainFlex .flexItem .telTxt{
	font-weight: 500;
	font-size: 15px;
	line-height: 20px;
	margin-top: 5px;
}
.top_contact .mainFlex .flexItem._mail{
	flex-flow: row;
	gap: 0 25px;
}
.top_contact .mainFlex .flexItem .mailImg{
	width: 24px;
	display: flex;
}
.top_contact .mainFlex .flexItem .mailTxt{
	font-weight: 500;
	font-size: 20px;
	line-height: 27px;
}
@media screen and (max-width: 1024px) {
	.top_cmn_head {
		font-weight: 700;
		font-size: 35px;
		line-height: 42px;
		color: #78bad3;
		display: flex;
		align-items: center;
		gap: 0 20px;
	}
	.top_cmn_head span {
		display: block;
		font-weight: 500;
		font-size: 17px;
		line-height: 20px;
		color: #000000;
	}
	.top_cmn_head.contact span{
		font-weight: 600;
		font-size: 17px;
	}
	.top_common .mainBlk {
		gap: 35px;
	}
	.top_common .mainTextBlk {
		flex: none;
		width: 100%;
		padding: 25px 20px 35px;
		background: #EDF8FC;
		border-radius: 0px 20px 0px 0px;
		position: relative;
		order: 2;
	}
	.top_common .mainTextBlk::after{
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		border-radius: 0px 20px 0px 0px;
		background: linear-gradient(#78bad3 0%, #fff 100%);
		position: absolute;
		top: -10px;
		left: -10px;
		z-index: -1;
	}
	.top_common .mainTextHead {
		font-weight: 600;
		font-size: 19px;
		line-height: 26px;
		margin-top: 25px;
	}
	.top_common .mainTextDesc {
		margin: 10px 0 0;
		font-weight: 400;
		font-size: 15px;
		line-height: 25px;
	}
	.top_common .mainTextDesc._recruit{
		font-weight: 400;
		font-size: 16px;
		line-height: 28px;
	}
	.top_common .mainLinkBlk {
		margin: 35px 0 0;
	}
	.top_common .mainLinkBlk .mainLink{
		width: 100%;
		height: 60px;
		margin: 0 auto;
		border-radius: 5px;
		background: #19509a;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
		color: #FFF;
		position: relative;
	}
	.top_common .mainLinkBlk .mainLink::after{
		content: "";
		display: block;
		background: url('images/icon_arrow.webp') no-repeat;
		background-size: contain;
		width: 25px;
		height: 25px;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 15px;
		margin: auto 0;
	}
	.top_common .mainImgWrap {
		position: relative;
		width: 100%;
		order: 1;
	}
	.top_common .mainImgBlk {
		position: relative;
		top: 0;
		left: 0;
		width: calc(var(--vw)* 100);
	}
	.top_common .mainImgBlk img {
		width: 100%;
		aspect-ratio: 16 / 10;
		min-height: 230px;
	}
	/*reverse*/
	.top_common .mainBlk._reverse {
		flex-flow: column;
	}
	.top_common .mainBlk._reverse .mainImgWrap {
		transform: scale(-1, 1);
	}
	.top_common .mainBlk._reverse .mainImgBlk {
		left: initial;
		right: 0;
		transform: scale(-1, 1);
	}
	/*common end*/
	.top_mv {
		/* height: calc(100vh - var(--headerH)); */
		height: 375px;
		background-image: url('images/top_mv_bg01.webp');
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
	}
	.top_mv .inner {
		height: 100%;
	}
	.top_mv .blk {
		position: relative;
		height: 100%;
	}
	.top_mv .catchBlk {
		width: 60%;
		height: 100%;
		display: flex;
		flex-flow: column;
		justify-content: flex-start;
		align-items: flex-start;
	}
	.top_mv .catchImg{
		width: 100%;
		max-width: 300px
		margin-left: 0%;
	}
	.top_mv .catch {
		font-weight: 700;
		font-size: 60px;
	}
	/*slider*/
	.top_mv._slider {
		background: initial;
	}
	.top_mv._slider .catchBlk {
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
		place-items: initial;
		padding: 35px 5% 10% 5%;
		pointer-events: none;
	}
	.top_mv._slider .catch {
		font-size: 25px;
		margin-top: 20px;
		white-space: nowrap;
	}
	.top_mv .slideBlk {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	.top_mv .slideBlk img {
		height: 100%;
	}
	.top_mv .badgeBlk{
		position: absolute;
		bottom: -115px;
		right: 4%;
		width: 92%;
		height: 100px;
		background: #f5cd60;
		border: 3px solid #fff;
		filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.16));
		border-radius: 10px;
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
	}
	.top_mv .badgeBlk .badgeTxt{
		font-weight: 600;
		font-size: 24px;
		line-height: 32px;
		color: #19509a;
		position: relative;
	}
	.top_mv .badgeBlk .badgeTxt::before{
		content: "";
		display: inline-block;
		width: 1.5px;
		height: 20px;
		margin: 0 0.5em -1px;
		background: #19509A;
		transform: rotate(-25deg);
	}
	.top_mv .badgeBlk .badgeTxt::after{
		content: "";
		display: inline-block;
		width: 1.5px;
		height: 20px;
		margin: 0 0.5em -1px;
		background: #19509A;
		transform: rotate(25deg);
	}
	.top_mv .badgeBlk .badgeTtl{
		font-weight: 600;
		font-size: 32px;
		line-height: 43px;
		color: #19509a;
	}
	.top_mv .badgeBlk .badgeArrow{
		width: 30px;
		margin: auto 0;
		position: absolute;
		top: auto;
		bottom: auto;
		right: 15px;
	}
	.top_infoTop{
		padding: 25px 0;
		background: #F2F2F2;
		margin-top: 130px;
	}
	.top_infoTop .mainBlk{
		display: flex;
		flex-flow: column;
		justify-content: center;
	}
	.top_infoTop .mainTtl{
		width: 100%;
		height: 35px;
		border-radius: 5px 5px 0px 0px;
		background: #19509a;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 600;
		font-size: 18px;
		line-height: 20px;
		color: #fff;
	}
	.top_infoTop article{
		width: 100%;
		height: 70px;
		border-radius: 0px 0px 5px 5px;
		background: #fff;
		display: flex;
		align-items: center;
	}
	.top_infoTop article a{
		align-items: center;
		justify-content: flex-start;
		padding: 0 10px;
		position: relative;
		flex: 1;
	}
	.top_infoTop article a:after {
		content: "";
		display: block;
		background: url(images/icon_arrow2.webp) no-repeat;
		background-size: contain;
		width: 20px;
		height: 20px;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 15px;
		margin: auto 0;
	}
	.top_infoTop .mainDate{
		font-weight: 600;
		font-size: 14px;
		line-height: 14px;
		color: #19509a;
	}
	.top_infoTop .mainCat{
		display: inline-block;
		min-width: 110px;
		margin-left: 7px;
		padding-left: 7px;
		font-weight: 600;
		font-size: 14px;
		line-height: 14px;
		color: #19509a;
		border-left: 1px solid #19509a;
	}
	.top_infoTop .mainTitle{
		flex: none;
		width: 100%;
		margin-left: 0px;
		padding-right: 30px;
		font-weight: 500;
		font-size: 15px;
		line-height: 18px;
		margin-top: 10px;
	}
	.top_about {
		padding: 40px 0 55px;
	}
	.top_community{
		padding: 40px 0 55px;
	}
	.top_community .top_cmn_head {
		flex-flow: column;
		text-align: center;
		gap: 8px 0;
	}
	.top_community .commuText{
		font-weight: 500;
		font-size: 15px;
		line-height: 25px;
		text-align: center;
		width: 96%;
		margin: 40px auto 0;
	}
	.top_community .commuImgFlex{
		width: 100%;
		display: flex;
		justify-content: space-between;
		flex-flow: column;
		max-width: 450px;
        margin: 30px auto 0;
	}
	.top_community .commuImgFlex .commuImg{
		width: 100%;
		height: auto;
		border: 10px solid #fff;
		box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
	}
	.top_community .commuImgFlex .commuImg:first-of-type{
		margin-left: -4%;
	}
	.top_community .commuImgFlex .commuImg:nth-last-of-type(2){
		margin-top: -50px;
		margin-left: 4%;
		z-index: 1;
	}
	.top_community .commuImgFlex .commuImg:last-of-type{
		margin-top: -50px;
		margin-left: -4%;
	}
	.top_community .commuImgFlex .commuImg img{
		width: 100%;
		height: 100%;
	}
	.top_service{
		padding: 50px 0 55px;
		overflow: hidden;
	}
	.top_works{
		padding: 40px 0 60px;
	}
	.top_works .top_cmn_head {
		flex-flow: column;
		gap: 5px 0;
	}
	.top_works .worksImgFlexWrap{
		width: 100%;
        margin: 35px auto 0;
	}
	.top_works .worksImgFlex{
		display: flex;
		flex-flow: column;
		justify-content: space-between;
		gap: 20px 0;
		max-width: initial;
		margin: 0 auto;
	}
	.top_works .worksImgBlk{
		width: 100%;
		border-radius: 0px 20px 0px 0px;
		background: #FFF;
		overflow: hidden;
	}
	.top_works .worksImgBlk .worksImg{
		width: 100%;
		height: auto;
		aspect-ratio: 16 / 10;
	}
	.top_works .worksImgBlk .worksImg img{
		width: 100%;
		height: 100%
	}
	.top_works .worksImgBlk .worksTxtBlk{
		padding: 10px 10px 20px;
		background: #FFF;
	}
	.top_works .worksImgBlk .worksImgTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 18px;
	}
	.top_works .mainLinkBlk{
		margin: 30px auto 0;
		width: 90%;
	}
	.top_info {
		padding: 45px 0 60px;
	}
	.top_info .inner {
		display: flex;
		flex-flow: column;
		gap: 0 55px;
	}
	.top_info .headBlk{
		display: flex;
		justify-content: space-between;
	}
	.top_info .top_cmn_head{
		flex-flow: column;
		gap: 5px 0;
		align-items: flex-start;
	}
	.top_info .info_link{
		width: 110px;
		height: 35px;
		border-radius: 5px;
		background: #fff;
		border: 1px solid #19509a;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: auto;
		margin-bottom: auto;
	}
	.top_info .mainBlk {
		margin: 20px 0 0;
		flex: 1;
	}
	.top_info .mainBlk article {
		border-top: solid 1px #DDDDDD;
	}
	.top_info .mainBlk article:last-child {
		border-bottom: solid 1px #DDDDDD;
	}
	.top_info .mainBlk a {
		justify-content: flex-start;
		align-items: center;
		padding: 15px 0;
		position: relative;
	}
	.top_info .mainBlk a:after{
		content: "";
		display: block;
		background: url('images/icon_arrow2.webp') no-repeat;
		background-size: contain;
		width: 20px;
		height: 20px;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 15px;
		margin: auto 0;
	}
	.top_info .mainDate {
		display: inline-block;
		font-weight: 600;
		font-size: 14px;
		line-height: 14px;
		color: #19509a;
	}
	.top_info .mainCat {
		display: inline-block;
		min-width: 110px;
		margin-left: 7px;
		padding-left: 7px;
		font-weight: 600;
		font-size: 14px;
		line-height: 14px;
		color: #19509a;
		border-left: 1px solid #19509a;
	}
	.top_info .mainTitle {
		flex: auto;
		width: 100%;
		margin-left: 0px;
		margin-top: 10px;
		padding-right: 40px;
		font-weight: 500;
		font-size: 15px;
		line-height: 18px;
	}
	.top_recruit{
		width: 100%;
		height: auto;
		background: #78bad3;
		position: relative;
		padding: 55px 0 170px;
	}
	.top_recruit:before{
		content: "";
		display: block;
		width: 100%;
		height: auto;
		aspect-ratio: 16/ 10;
		background: url('images/top_recruit.webp') no-repeat;
		background-size: cover;
		position: absolute;
		top: auto;
		bottom: 0;
		right: 0;
	}
	.top_recruit .mainTextBlk{
		width: 100%;
		height: auto;
		padding: 30px 20px 40px;
		background: #FFF;
		flex: none;
	}
	.top_recruit .mainTextBlk::after{
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		border-radius: 0px 20px 0px 0px;
		background: #d5eff8;
		position: absolute;
		top: 10px;
		left: 10px;
		z-index: -1;
	}
	.top_link{
		padding: 60px 0 60px;
	}
	.top_link .mainFlex{
		display: flex;
		flex-flow: column;
		gap: 30px 0;
	}
	.top_link .mainFlex .itemTtl{
		font-weight: 600;
		font-size: 17px;
		line-height: 20px;
		color: #19509a;
		margin-bottom: 10px;
	}
	.top_link .itemImg img{
		width: 100%;
		height: 100%;
	}
	.top_link .flexItemLeft .itemImg{
		width: 100%;
		height: auto;
		border-radius: 0px 20px 0px 0px;
		overflow: hidden;
	}
	.top_link .itemImgFlex{
		display: flex;
		gap: 0 5px;
	}
	.top_link .itemImgFlex .itemImgBlk{
		width: calc((100% - 5px) / 2);
	}
	.top_link .itemImgFlex .itemImg{
		width: 100%;
		height: auto;
	}
	.top_link .itemImgFlex .itemImgTxt{
		font-weight: 500;
		font-size: 12px;
		line-height: 16px;
		margin-top: 5px;
		text-align: center;
	}
	.top_contact{
		background: #78BAD3;
		padding: 40px 0 40px;
	}
	.top_contact .top_cmn_head{
		color: #FFF;
		flex-flow: column;
		gap: 5px 0;
	}
	.top_contact .top_cmn_head span{
		color: #000;
	}
	.top_contact .mainText{
		font-weight: 500;
		font-size: 15px;
		line-height: 22px;
		text-align: center;
		margin: 25px auto 0;
		width: 90%;
	}
	.top_contact .mainFlex{
		display: flex;
		justify-content: center;
		gap: 15px 0;
		margin-top: 30px;
		flex-flow: column;
	}
	.top_contact .mainFlex .flexItem{
		width: 100%;
		height: 80px;
		border-radius: 5px;
		background: #fff;
		box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.16);
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
	}
	.top_contact .mainFlex .flexItem .telNum{
		font-weight: 500;
		font-size: 26px;
		line-height: 32px;
		text-align: center;
		color: #19509a;
	}
	.top_contact .mainFlex .flexItem .telTxt{
		font-weight: 500;
		font-size: 14px;
		line-height: 20px;
		margin-top: 5px;
	}
	.top_contact .mainFlex .flexItem._mail{
		flex-flow: row;
		gap: 0 15px;
	}
	.top_contact .mainFlex .flexItem .mailImg{
		width: 20px;
		display: flex;
	}
	.top_contact .mainFlex .flexItem .mailTxt{
		font-weight: 500;
		font-size: 18px;
		line-height: 22px;
	}
}


/*
about
====================================*/
.about_message{
	padding: 55px 0 75px;
	margin-top: 15px;
}
.about_message .mainBlk{
	gap: 40px;
	padding: 0 50px;
}
.about_message .mainTextBlk{
	width: 620px;
}
.about_message .mainTextBlk .mainTextHead{
	font-weight: 500;
	font-size: 22px;
	line-height: 30px;
	margin-top: 30px;
}
.about_message .mainTextBlk .mainTextDesc{
	font-weight: 400;
	font-size: 16px;
	line-height: 32px;
	margin-top: 20px;
}
.about_message .mainTextBlk .mainTextPost{
	font-weight: 400;
	font-size: 18px;
	line-height: 26px;
	text-align: right;
	margin-top: 15px;
}
.about_message .mainImgBlk{
	width: 340px;
	margin-top: auto;
}
.about_message .mainImgBlk img{
	width: 100%;
	height: 100%;
}
.about_philosophy{
	padding: 100px 0 130px;
}
.about_philosophy .head{
	text-align: center;
}
.about_philosophy .mainTtl{
	font-weight: 600;
	font-size: 32px;
	line-height: 46px;
	text-align: center;
	color: #257b9b;
	margin-top: 50px;
}
.about_philosophy .mainText{
	font-weight: 500;
	font-size: 20px;
	line-height: 24px;
	text-align: center;
	margin-top: 10px;
	padding-left: 1em;
}
.about_companyInfo{
	padding: 55px 0 100px;
	overflow: hidden;
}
.about_companyInfo .head{
	text-align: center;
}
.about_companyInfo .mainBlk{
	width: 1000px;
	margin: 30px auto 0;
	display: grid;
	gap: 30px;
	grid-template-columns: 1fr 1fr;
}
.about_companyInfo .mainItem{
	width: 100%;
	background: #FFF;
	padding: 30px;
}
.about_companyInfo .mainItem.item01{
	grid-column: 1 / 3;
	padding: 0;
}
.about_companyInfo .mainItem.item04{
	grid-column: 1 / 3;
}
.about_companyInfo .infoDl{
	display: flex;
	flex-wrap: wrap;
	padding: 20px 50px 50px;
}
.about_companyInfo .infoDl .infoDt{
	width: 170px;
	padding: 20px 0;
	border-bottom: 1px solid #ddd;
	font-weight: 500;
	font-size: 16px;
	line-height: 21px;
}
.about_companyInfo .infoDl .infoDd{
	width: calc(100% - 170px);
	padding: 20px 0;
	border-bottom: 1px solid #ddd;
	font-weight: 500;
	font-size: 16px;
	line-height: 21px;
}
.about_companyInfo .infoDl .infoDd .access{
	display: flex;
	gap: 0 30px;
	margin-top: 20px;
}
.about_companyInfo .infoDl .infoDd iframe{
	width: 450px;
}
.about_companyInfo .infoDl .infoDd .exterior{
	width: 250px;
}
.about_companyInfo .infoDl .infoDd .exterior img{
	width: 100%;
	height: 100%;
}
.about_companyInfo .infoDl .infoDd .list{
	display: block;
	line-height: 32px;
	margin-top: 10px;
}
.about_companyInfo .infoHead{
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
}
.about_companyInfo .infoUl{
	margin-top: 10px;
}
.about_companyInfo .infoUl .infoLi{
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	display: flex;
}
.about_companyInfo .infoUl .infoLi::before{
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	background-color: #78BAD3;
	border-radius: 50%;
	margin-right: 5px;
	margin-top: 8px;
}
.about_companyInfo .infoList{
	display: flex;
	flex-flow: wrap;
	gap: 30px 50px;
	margin-top: 30px;
}
.about_companyInfo .infoList .listBlk{
	width: 280px;
}
.about_companyInfo .infoList .listImg{
	width: 100%;
	height: 280px;
	border: 1px solid #ddd;
	display: flex;
}
.about_companyInfo .infoList .listImg img{
	width: 100%;
	height: 100%;
	margin: auto 0;
	object-fit: contain;
}
.about_companyInfo .infoList .listTxt{
	font-weight: 500;
	font-size: 15px;
	line-height: 24px;
	text-align: center;
	margin-top: 10px;
}
.about_history{
	padding: 85px 0 100px;
}
.about_history .head{
	text-align: center;
}
.about_history .mainDl{
	width: 900px;
	margin: 20px auto 0;
	display: flex;
	flex-wrap: wrap;
}
.about_history .mainDl .mainDt{
	width: 170px;
	font-weight: 500;
	font-size: 16px;
	line-height: 21px;
	padding: 20px 0;
	border-bottom: 1px solid #ddd;

}
.about_history .mainDl .mainDd{
	width: calc(100% - 170px);
	font-weight: 400;
	font-size: 16px;
	line-height: 21px;
	padding: 20px 0;
	border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 1024px) {
	.about_message{
		padding: 35px 0 50px;
		margin-top: 12px;
	}
	.about_message .mainBlk{
		gap: 0;
		padding: 0;
	}
	.about_message .mainTextBlk{
		width: 100%;
	}
	.about_message .mainTextBlk .mainTextHead{
		font-weight: 500;
		font-size: 17px;
		line-height: 22px;
		margin-top: 25px;
	}
	.about_message .mainTextBlk .mainTextDesc{
		font-weight: 400;
		font-size: 15px;
		line-height: 25px;
		margin-top: 20px;
	}
	.about_message .mainTextBlk .mainTextPost{
		font-weight: 400;
		font-size: 15px;
		line-height: 26px;
		text-align: right;
		margin-top: 10px;
	}
	.about_message .mainImgBlk{
		width: 90%;
		margin: 30px auto 0;
	}
	.about_message .mainImgBlk img{
		width: 100%;
		height: 100%;
	}
	.about_philosophy{
		padding: 50px 0 70px;
	}
	.about_philosophy .head{
		text-align: center;
	}
	.about_philosophy .mainTtl{
		font-weight: 600;
		font-size: 18px;
		line-height: 30px;
		text-align: center;
		color: #257b9b;
		margin-top: 35px;
	}
	.about_philosophy .mainText{
		font-weight: 500;
		font-size: 15px;
		line-height: 22px;
		text-align: center;
		margin-top: 6px;
		padding: 0 1em;
	}
	.about_companyInfo{
		padding: 50px 0 70px;
	}
	.about_companyInfo .head{
		text-align: center;
	}
	.about_companyInfo .mainBlk{
		width: 100%;
		margin: 30px auto 0;
		display: flex;
		flex-flow: column;
		gap: 20px;
		grid-template-columns: 1fr 1fr;
	}
	.about_companyInfo .mainItem{
		width: 100%;
		background: #FFF;
		padding: 20px 15px 30px;
	}
	.about_companyInfo .mainItem.item01{
		grid-column: 1 / 3;
		padding: 0;
	}
	.about_companyInfo .mainItem.item04{
		grid-column: 1 / 3;
	}
	.about_companyInfo .infoDl{
		display: flex;
		flex-wrap: wrap;
		padding: 10px 15px 30px;
	}
	.about_companyInfo .infoDl .infoDt{
		width: 85px;
		padding: 14px 0;
		padding-right: 15px;
		border-bottom: 1px solid #ddd;
		font-weight: 600;
		font-size: 14px;
		line-height: 21px;
	}
	.about_companyInfo .infoDl .infoDd{
		width: calc(100% - 85px);
		padding: 14px 0;
		border-bottom: 1px solid #ddd;
		font-weight: 500;
		font-size: 14px;
		line-height: 21px;
	}
	.about_companyInfo .infoDl .infoDd .access{
		display: flex;
		gap: 0 10px;
		margin-top: 15px;
		margin-left: -85px;
	}
	.about_companyInfo .infoDl .infoDd iframe{
		width: calc(((100% - 10px) / 3) * 2);
		aspect-ratio: 16 / 10;
	}
	.about_companyInfo .infoDl .infoDd .exterior{
		width: calc(((100% - 10px) / 3) * 1);
	}
	.about_companyInfo .infoDl .infoDd .exterior img{
		width: 100%;
		height: 100%;
	}
	.about_companyInfo .infoDl .infoDd .list{
		display: block;
		line-height: 18px;
		margin-top: 10px;
		font-size: 13px;
	}
	.about_companyInfo .infoHead{
		font-weight: 600;
		font-size: 15px;
		line-height: 22px;
	}
	.about_companyInfo .infoUl{
		margin-top: 10px;
		padding-left: 0.3em;
	}
	.about_companyInfo .infoUl .infoLi{
		font-weight: 400;
		font-size: 14px;
		line-height: 25px;
		display: flex;
	}
	.about_companyInfo .infoUl .infoLi::before{
		content: "";
		display: inline-block;
		width: 8px;
		height: 8px;
		background-color: #78BAD3;
		border-radius: 50%;
		margin-right: 5px;
		margin-top: 8px;
	}
	.about_companyInfo .infoList{
		display: flex;
		flex-flow: wrap;
		gap: 25px 50px;
		margin-top: 20px;
		padding: 0 5px;
	}
	.about_companyInfo .infoList .listBlk{
		width: 100%;
	}
	.about_companyInfo .infoList .listImg{
		width: 100%;
		height: 260px;
		border: 1px solid #ddd;
		display: flex;
	}
	.about_companyInfo .infoList .listImg img{
		width: 100%;
		height: 100%;
		margin: auto 0;
		object-fit: contain;
	}
	.about_companyInfo .infoList .listTxt{
		font-weight: 500;
		font-size: 13px;
		line-height: 18px;
		text-align: center;
		margin-top: 7px;
	}
	.about_history{
		padding: 40px 0 40px;
	}
	.about_history .head{
		text-align: center;
	}
	.about_history .mainDl{
		width: 100%;
		margin: 20px auto 0;
		display: flex;
		flex-wrap: wrap;
	}
	.about_history .mainDl .mainDt{
		width: 100%;
		font-weight: 600;
		font-size: 14px;
		line-height: 18px;
		padding: 10px 10px 10px;
		border-bottom: none;
		background: #EEE;
	}
	.about_history .mainDl .mainDd{
		width: 100%;
		font-weight: 400;
		font-size: 14px;
		line-height: 18px;
		padding: 10px 10px 15px;
		border-bottom: none;
	}
}


/*
Service
====================================*/
.service_lead{
	padding: 50px 0 60px;
	margin-top: 15px;
}
.service_lead .mainTxt{
	font-weight: 500;
	font-size: 20px;
	line-height: 40px;
	text-align: center;
}
.service_ict{
	padding: 55px 0 85px;
	background: #78BAD3;
}
.service_ict .headBlk{
	position: relative;
}
.service_ict .head{
	text-align: center;
	color: #FFF;
}
.service_ict .head span{
	color: #FFF;
}
.service_ict .headImg{
	position: absolute;
}
.service_ict .headImg.img01{
	top: -140px;
	left: 0;
	width: 200px;
}
.service_ict .headImg.img02{
	top: -100px;
	right: 0;
	width: 300px;
}
.service_ict .mainTtl{
	font-weight: 600;
	font-size: 23px;
	line-height: 30px;
	text-align: center;
	color: #fff;
	margin-top: 30px;
}
.service_ict .ictFlex{
	display: flex;
	gap: 0 10px;
	margin-top: 25px;
}
.service_ict .ictFlex .ictImgBlk{
	width: 545px;
}
.service_ict .ictFlex .ictImgBlk img{
	width: 100%;
	height: 274px;
}
.service_ict .ictFlex .ictImgBlk .imgTxt{
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
	color: #fff;
	margin-top: 5px;
}
.service_ict .mainTxt{
	max-width: 1000px;
	margin: 0 auto;
	font-weight: 500;
	font-size: 16px;
	line-height: 32px;
	color: #fff;
	margin-top: 25px;
}
.service_work{
	padding: 105px 0 100px;
}
.service_work .head{
	text-align: center;
}
.service_work .mainTxt{
	font-weight: 500;
	font-size: 23px;
	line-height: 40px;
	text-align: center;
	margin-top: 30px;
}
.service_work .mainFlex{
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin: 40px 0 105px;
}
.service_work .mainFlex .flexItem{
	width: calc((100% - 80px) / 3);
}
.service_work .mainFlex .flexItem .itemImg img{
	width: 100%;
	height: 250px;
}
.service_work .mainFlex .flexItem .itemTxt{
	font-weight: 500;
	font-size: 18px;
	line-height: 25px;
	text-align: center;
	margin-top: 10px;
}
.service_work .mainFlex .flexItem .itemTxt span{
	display: block;
	font-weight: 500;
	font-size: 15px;
	line-height: 24px;
}
.service_work .mainTopic{
	width: 100%;
	max-width: 1000px;
	margin: 100px auto 0;
	background: #edf8fc;
	padding: 40px 100px 65px;
}
.service_work .mainTopic .topicTtl{
	font-weight: 600;
	font-size: 30px;
	line-height: 40px;
	text-align: center;
}
.service_work .mainTopic .topicBlk{
	display: grid;
	gap: 20px;
    grid-template-columns: 1fr 1fr;
	margin-top: 40px;
}
.service_work .mainTopic .topicBlk .topicItem{
	width: 100%;
	background: #FFF;
	padding: 25px;
}
.service_work .mainTopic .topicBlk .topicItem.item01{
	grid-column: 1 / 3;
	display: flex;
	gap: 0 30px;
}
.service_work .mainTopic .topicBlk .topicItem.item02{
	grid-column: 1 / 3;
	display: flex;
	gap: 0 30px;
}
.service_work .mainTopic .topicBlk .topicItem .itemImg{
	width: 340px;
}
.service_work .mainTopic .topicBlk .topicItem .itemImg img{
	width: 100%;
	height: 250px;
}
.service_work .mainTopic .topicBlk .topicItem .itemTxtBlk{
	flex: 1;
}
.service_work .mainTopic .topicBlk .topicItem .itemTtl{
	font-weight: 500;
	font-size: 20px;
	line-height: 25px;
}
.service_work .mainTopic .topicBlk .topicItem .itemDl{
	display: flex;
	flex-flow: wrap;
	border-top: 1px solid #DDD;
	margin-top: 15px;
}
.service_work .mainTopic .topicBlk .topicItem .itemDl .itemDt{
	width: 125px;
	font-weight: 500;
	font-size: 15px;
	line-height: 21px;
	padding: 4px 0;
	border-bottom: 1px solid #ddd;
}
.service_work .mainTopic .topicBlk .topicItem .itemDl .itemDd{
	width: calc(100% - 125px);
	font-weight: 500;
	font-size: 15px;
	line-height: 21px;
	padding: 4px 0;
	border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 1024px) {
	.service_lead{
		padding: 30px 0 40px;
		margin-top: 12px;
	}
	.service_lead .mainTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 25px;
		text-align: justify;
	}
	.service_ict{
		padding: 50px 0 50px;
		background: #78BAD3;
	}
	.service_ict .headBlk{
		position: relative;
	}
	.service_ict .head{
		text-align: center;
		color: #FFF;
	}
	.service_ict .head span{
		color: #FFF;
	}
	.service_ict .headImg{
		position: absolute;
	}
	.service_ict .headImg.img01{
		top: -80px;
		left: 0;
		width: 15%;
	}
	.service_ict .headImg.img02{
		top: -70px;
		right: 0;
		width: 30%;
	}
	.service_ict .mainTtl{
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
		text-align: center;
		color: #fff;
		margin-top: 30px;
	}
	.service_ict .ictFlex{
		display: flex;
		gap: 0 10px;
		margin-top: 25px;
	}
	.service_ict .ictFlex .ictImgBlk{
		width: calc((100% - 10px) / 2);
	}
	.service_ict .ictFlex .ictImgBlk img{
		width: 100%;
		height: auto;
	}
	.service_ict .ictFlex .ictImgBlk .imgTxt{
		font-weight: 500;
		font-size: 12px;
		line-height: 16px;
		text-align: center;
		color: #fff;
		margin-top: 5px;
	}
	.service_ict .mainTxt{
		max-width: 100%;
		margin: 0 auto;
		font-weight: 500;
		font-size: 15px;
		line-height: 25px;
		color: #fff;
		margin-top: 40px;
	}
	.service_work{
		padding: 50px 0 60px;
	}
	.service_work .head{
		text-align: center;
	}
	.service_work .mainTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 25px;
		text-align: center;
		margin-top: 30px;
	}
	.service_work .mainFlex{
		display: flex;
		flex-wrap: wrap;
		gap: 20px 10px;
		margin: 30px 0 75px;
	}
	.service_work .mainFlex .flexItem{
		width: calc((100% - 10px) / 2);
	}
	.service_work .mainFlex .flexItem .itemImg img{
		width: 100%;
		height: auto;
	}
	.service_work .mainFlex .flexItem .itemTxt{
		font-weight: 500;
		font-size: 13px;
		line-height: 16px;
		text-align: center;
		margin-top: 5px;
	}
	.service_work .mainFlex .flexItem .itemTxt span{
		display: block;
		font-weight: 500;
		font-size: 12px;
		line-height: 16px;
	}
	.service_work .mainTopic{
		width: 100%;
		margin: -20px auto 0;
		background: #edf8fc;
		padding: 25px 15px 30px;
	}
	.service_work .mainTopic .topicTtl{
		font-weight: 600;
		font-size: 18px;
		line-height: 26px;
		text-align: center;
	}
	.service_work .mainTopic .topicBlk{
		display: flex;
		flex-flow: column;
		gap: 15px;
		grid-template-columns: 1fr 1fr;
		margin-top: 15px;
	}
	.service_work .mainTopic .topicBlk .topicItem{
		width: 100%;
		background: #FFF;
		padding: 15px 15px 20px;
	}
	.service_work .mainTopic .topicBlk .topicItem.item01{
		grid-column: 1 / 3;
		display: flex;
		flex-flow: column;
		gap: 0 30px;
	}
	.service_work .mainTopic .topicBlk .topicItem.item02{
		grid-column: 1 / 3;
		display: flex;
		flex-flow: column;
		gap: 0 30px;
	}
	.service_work .mainTopic .topicBlk .topicItem .itemImg{
		width: 100%;
		margin-bottom: 15px;
	}
	.service_work .mainTopic .topicBlk .topicItem .itemImg img{
		width: 100%;
		height: auto;
	}
	.service_work .mainTopic .topicBlk .topicItem .itemTxtBlk{
		flex: 1;
	}
	.service_work .mainTopic .topicBlk .topicItem .itemTtl{
		font-weight: 600;
		font-size: 14px;
		line-height: 18px;
	}
	.service_work .mainTopic .topicBlk .topicItem .itemDl{
		display: flex;
		flex-flow: wrap;
		border-top: 1px solid #DDD;
		margin-top: 7px;
	}
	.service_work .mainTopic .topicBlk .topicItem .itemDl .itemDt{
		width: 100px;
		font-weight: 500;
		font-size: 13px;
		line-height: 16px;
		padding: 7px 0;
		border-bottom: 1px solid #ddd;
	}
	.service_work .mainTopic .topicBlk .topicItem .itemDl .itemDd{
		width: calc(100% - 100px);
		font-weight: 500;
		font-size: 13px;
		line-height: 16px;
		padding: 7px 0;
		border-bottom: 1px solid #ddd;
	}
}


/*
Works
====================================*/
.works_tab{
	width: 1100px;
	background: #d5eff8;
	padding: 30px 50px;
	margin: 15px auto 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.works_tab .tabTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 21px;
}
.works_tab .tabFlex{
	display: flex;
	gap: 0 15px;
}
.works_tab .tabFlex .tabItem{
	width: 150px;
	height: 60px;
	border-radius: 5px;
	background: #fff;
	font-weight: 600;
	font-size: 16px;
	line-height: 21px;
	color: #65aac4;
	display: flex;
	justify-content: center;
	align-items: center;
}
.works_tab .tabFlex .tabItem.current{
	background: #65aac4;
	color: #fff;
}
.works_lead{
	font-size: 16px;
	text-align: center;
	margin-top: 35px;
}
.worksMain{
	padding: 40px 0 95px;
}
.worksBlk{
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}
.worksBlk .worksItem{
	width: calc((100% - 50px) / 2);
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
}
.worksBlk .worksItem .itemImg{
	width: 100%;
	height: 350px;
}
.worksBlk .worksItem .itemImg img{
	width: 100%;
	height: 100%;
}
.worksBlk .worksItem .itemTxtBlk{
	display: flex;
	flex-flow: wrap;
	gap: 0 10px;
	padding: 15px 15px 30px;
}
.worksBlk .worksItem .itemCategory{
	width: 120px;
	height: 30px;
	border-radius: 5px;
	background: #65aac4;
	font-weight: 600;
	font-size: 15px;
	line-height: 20px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.worksBlk .worksItem .itemPeriod{
	width: calc(100% - 120px - 10px);
	height: 30px;
	padding: 0 10px;
	border-radius: 5px;
	background: #d5eff8;
	font-weight: 500;
	font-size: 15px;
	line-height: 20px;
	display: flex;
	align-items: center;
}
.worksBlk .worksItem .itemTtl{
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	margin-top: 10px;
}
.worksMain .worksLink{
	width: 500px;
	height: 100px;
	margin: 70px auto 0;
	border-radius: 50px;
	background: #d5eff8;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
	position: relative;
}
.worksMain .worksLink::after{
	content: "";
    display: block;
    background: url('images/icon_arrow2.webp') no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 35px;
    margin: auto 0;
}
@media screen and (max-width: 1024px) {
	.works_tab{
		width: 92%;
		background: #d5eff8;
		padding: 20px 10px 15px;
		margin: 20px auto 0;
		display: flex;
		flex-flow: column;
		align-items: flex-start;
		justify-content: space-between;
		gap: 14px 0;
	}
	.works_tab .tabTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 18px;
	}
	.works_tab .tabFlex{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		gap: 7px 7px;
	}
	.works_tab .tabFlex .tabItem{
		width: calc((100% - 14px) / 3);
		height: 40px;
		border-radius: 5px;
		background: #fff;
		font-weight: 500;
		font-size: 14px;
		line-height: 18px;
		color: #65aac4;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.works_tab .tabFlex .tabItem.current{
		background: #65aac4;
		color: #fff;
	}
	.works_lead{
	font-size: 15px;
	text-align: center;
	margin: 30px auto 0;
	width: 90%;
}
	.worksMain{
		padding: 30px 0 45px;
	}
	.worksBlk{
		display: flex;
		flex-wrap: wrap;
		gap: 30px;
	}
	.worksBlk .worksItem{
		width: 100%;
		box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
	}
	.worksBlk .worksItem .itemImg{
		width: 100%;
		height: auto;
	}
	.worksBlk .worksItem .itemImg img{
		width: 100%;
		height: 100%;
		aspect-ratio: 16 / 10;
	}
	.worksBlk .worksItem .itemTxtBlk{
		display: flex;
		flex-flow: column;
		flex-wrap: wrap;
		gap: 0 5px;
		padding: 15px 10px 25px;
	}
	.worksBlk .worksItem .itemCategory{
		width: fit-content;
		height: auto;
		padding: 3px 7px;
		border-radius: 5px;
		background: #65aac4;
		font-weight: 600;
		font-size: 14px;
		line-height: 18px;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.worksBlk .worksItem .itemPeriod{
		width: fit-content;
		height: auto;
		padding: 3px 7px;
		border-radius: 5px;
		background: #d5eff8;
		font-weight: 500;
		font-size: 14px;
		line-height: 18px;
		display: flex;
		align-items: center;
		margin-top: 5px;
	}
	.worksBlk .worksItem .itemTtl{
		font-weight: 600;
		font-size: 15px;
		line-height: 22px;
		margin-top: 10px;
	}
	.worksMain .worksLink{
		width: 100%;
		height: 65px;
		margin: 60px auto 0;
		border-radius: 50px;
		padding-right: 20px;
		background: #d5eff8;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 600;
		font-size: 15px;
		line-height: 20px;
		position: relative;
	}
	.worksMain .worksLink::after{
		content: "";
		display: block;
		background: url('images/icon_arrow2.webp') no-repeat;
		background-size: contain;
		width: 20px;
		height: 20px;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 20px;
		margin: auto 0;
	}
}


/*
WorksDetail
====================================*/
.worksDetailMain{
	padding: 50px 0 150px;
	margin-top: 15px;
	background: #D5EFF8;
}
.worksDetailMain .worksDetailBlk{
	background: #fff;
	padding: 50px 50px 115px;
}
.worksDetailMain .worksDetailBlk .itemCategory{
	width: 120px;
	height: 30px;
	border-radius: 5px;
	background: #65aac4;
	font-weight: 600;
	font-size: 15px;
	line-height: 21px;
	text-align: center;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.worksDetailMain .worksDetailBlk .itemTtl{
	font-weight: 500;
	font-size: 28px;
	line-height: 37px;
	margin-top: 10px;
}
.worksDetailMain .worksDetailBlk .itemNotes{
	background: #edf8fc;
	padding: 20px 20px 25px;
	margin-top: 20px;
}
.worksDetailMain .worksDetailBlk .itemImgBlk{
	display: grid;
	gap: 15px 20px;
	grid-template-columns: 80% 1fr;
	grid-template-rows: 120px 120px 120px 120px;
	margin-top: 30px;
}
.worksDetailMain .worksDetailBlk .itemImgMain{
	grid-column: 1 / 2;
	grid-row: 1 / 5;
}
.worksDetailMain .worksDetailBlk .itemImgMain img{
	width: 100%;
	height: 100%;
}
.worksDetailMain .worksDetailBlk .itemImgMain .imgTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 21px;
	text-align: center;
	margin-top: 10px;
}
.worksDetailMain .worksDetailBlk .itemImgSub.item01{
	grid-column: 2 / 3;
	grid-row: 1 / 2;
}
.worksDetailMain .worksDetailBlk .itemImgSub.item02{
	grid-column: 2 / 3;
	grid-row: 2 / 3;
}
.worksDetailMain .worksDetailBlk .itemImgSub.item03{
	grid-column: 2 / 3;
	grid-row: 3 / 4;
}
.worksDetailMain .worksDetailBlk .itemImgSub.item04{
	grid-column: 2 / 3;
	grid-row: 4 / 5;
}
.worksDetailMain .worksDetailBlk .itemImgSub img{
	width: 100%;
	height: 100%;
}
.worksDetailMain .worksDetailBlk .itemImgSub .imgTxt{
	display: none;
}
.worksDetailMain .worksDetailPagenation{
	display: flex;
	justify-content: center;
	gap: 0 30px;
	margin-top: 50px;
}
.worksDetailMain .worksDetailPagenation .pagePrev{
	width: 60px;
	height: 60px;
}
.worksDetailMain .worksDetailPagenation .pagePrev a{
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background: #fff;
	position: relative;
}
.worksDetailMain .worksDetailPagenation .pagePrev a::before{
	content: '';
	width: 17px;
	height: 17px;
	border-top: solid 2px #65AAC4;
	border-right: solid 2px #65AAC4;
	position: absolute;
	left: 0;
	right: -5px;
	top: 0;
	bottom: 0;
	margin:  auto;
	transform: rotate(-135deg);
}
.worksDetailMain .worksDetailPagenation .listBack{
	width: 350px;
	height: 60px;
	border-radius: 5px;
	background: #65aac4;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
	color: #fff;
}
.worksDetailMain .worksDetailPagenation .pageNext{
	width: 60px;
	height: 60px;
}
.worksDetailMain .worksDetailPagenation .pageNext a{
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background: #fff;
	position: relative;
}
.worksDetailMain .worksDetailPagenation .pageNext a::before{
	content: '';
	width: 17px;
	height: 17px;
	border-top: solid 2px #65AAC4;
	border-right: solid 2px #65AAC4;
	position: absolute;
	left: -5px;
	right: 0;
	top: 0;
	bottom: 0;
	margin:  auto;
	transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
	.worksDetailMain{
		padding: 40px 0 70px;
		margin-top: 15px;
		background: #D5EFF8;
	}
	.worksDetailMain .worksDetailBlk{
		background: #fff;
		padding: 20px 15px 60px;
	}
	.worksDetailMain .worksDetailBlk .itemCategory{
		width: fit-content;
		height: auto;
		padding: 6px 10px;
		border-radius: 5px;
		background: #65aac4;
		font-weight: 600;
		font-size: 14px;
		line-height: 18px;
		text-align: center;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.worksDetailMain .worksDetailBlk .itemTtl{
		font-weight: 600;
		font-size: 17px;
		line-height: 26px;
		margin-top: 15px;
	}
	.worksDetailMain .worksDetailBlk .itemNotes{
		background: #edf8fc;
		padding: 10px 10px 15px;
		margin-top: 15px;
		line-height: 24px;
	}
	.worksDetailMain .worksDetailBlk .itemImgBlk{
		display: grid;
		gap: 10px 10px;
		grid-template-columns: 1fr 1fr 1fr 1fr;
		grid-template-rows: auto auto;
		margin-top: 20px;
	}
	.worksDetailMain .worksDetailBlk .itemImgMain{
		grid-column: 1 / 5;
		grid-row: 2 / 3;
	}
	.worksDetailMain .worksDetailBlk .itemImgMain img{
		width: 100%;
		height: 100%;
	}
	.worksDetailMain .worksDetailBlk .itemImgMain .imgTxt{
		font-weight: 500;
		font-size: 14px;
		line-height: 18px;
		text-align: center;
		margin-top: 6px;
	}
	.worksDetailMain .worksDetailBlk .itemImgSub.item01{
		grid-column: 1 / 2;
		grid-row: 1 / 2;
	}
	.worksDetailMain .worksDetailBlk .itemImgSub.item02{
		grid-column: 2 / 3;
		grid-row: 1 / 2;
	}
	.worksDetailMain .worksDetailBlk .itemImgSub.item03{
		grid-column: 3 / 4;
		grid-row: 1 / 2;
	}
	.worksDetailMain .worksDetailBlk .itemImgSub.item04{
		grid-column: 4 / 5;
		grid-row: 1 / 2;
	}
	.worksDetailMain .worksDetailBlk .itemImgSub img{
		width: 100%;
		height: 100%;
	}
	.worksDetailMain .worksDetailBlk .itemImgSub .imgTxt{
		display: none;
	}
	.worksDetailMain .worksDetailPagenation{
		display: flex;
		justify-content: center;
		gap: 0 10px;
		margin-top: 35px;
	}
	.worksDetailMain .worksDetailPagenation .pagePrev{
		width: 45px;
		height: 45px;
	}
	.worksDetailMain .worksDetailPagenation .pagePrev a{
		display: block;
		width: 100%;
		height: 100%;
		border-radius: 5px;
		background: #fff;
		position: relative;
	}
	.worksDetailMain .worksDetailPagenation .pagePrev a::before{
		content: '';
		width: 14px;
		height: 14px;
		border-top: solid 2px #65AAC4;
		border-right: solid 2px #65AAC4;
		position: absolute;
		left: 0;
		right: -5px;
		top: 0;
		bottom: 0;
		margin:  auto;
		transform: rotate(-135deg);
	}
	.worksDetailMain .worksDetailPagenation .listBack{
		flex: 1;
		width: fit-content;
		height: 45px;
		border-radius: 5px;
		background: #65aac4;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 600;
		font-size: 15px;
		line-height: 20px;
		color: #fff;
	}
	.worksDetailMain .worksDetailPagenation .pageNext{
		width: 45px;
		height: 45px;
	}
	.worksDetailMain .worksDetailPagenation .pageNext a{
		display: block;
		width: 100%;
		height: 100%;
		border-radius: 5px;
		background: #fff;
		position: relative;
	}
	.worksDetailMain .worksDetailPagenation .pageNext a::before{
		content: '';
		width: 14px;
		height: 14px;
		border-top: solid 2px #65AAC4;
		border-right: solid 2px #65AAC4;
		position: absolute;
		left: -5px;
		right: 0;
		top: 0;
		bottom: 0;
		margin:  auto;
		transform: rotate(45deg);
	}
}


/*
Portfolio
====================================*/
.portfolioMain{
	padding: 50px 0 100px;
	background: #D5EFF8;
	margin-top: 15px;
}
.portfolioMain .portfolioBlk{
	background: #FFF;
	padding: 40px 50px 60px;
}
.portfolioMain .portfolioBlk .itemTtl{
	font-weight: 500;
	font-size: 30px;
	line-height: 40px;
	text-align: center;
}
.portfolioMain .portfolioBlk .itemTtl:not(:first-of-type){
	margin-top: 50px;
}
.portfolioMain .portfolioBlk .itemDl{
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #65aac4;
	margin-top: 15px;
}
.portfolioMain .portfolioBlk .itemDl .itemDt{
	border-left: 1px solid #65aac4;
	border-bottom: 1px solid #65aac4;
	border-right: 1px solid #65aac4;
	width: 70%;
	height: 40px;
	font-weight: 500;
	font-size: 15px;
	line-height: 24px;
	display: flex;
	align-items: center;
	padding: 0 15px;
}
.portfolioMain .portfolioBlk .itemDl .itemDt.head{
	background-color: #65aac4;
	color: #FFF;
	justify-content: center;
	border-right: 1px solid #FFF;
}
.portfolioMain .portfolioBlk .itemDl .itemDd{
	border-bottom: 1px solid #65aac4;
	border-right: 1px solid #65aac4;
	width: 30%;
	height: 40px;
	font-weight: 500;
	font-size: 15px;
	line-height: 24px;
	display: flex;
	align-items: center;
	padding: 0 12px;
}
.portfolioMain .portfolioBlk .itemDl .itemDd.head{
	background-color: #65aac4;
	color: #FFF;
	justify-content: center;
}
@media screen and (max-width: 1024px) {
	.portfolioMain{
		padding: 40px 0 70px;
		background: #D5EFF8;
		margin-top: 15px;
	}
	.portfolioMain .portfolioBlk{
		background: #FFF;
		padding: 30px 15px 45px;
	}
	.portfolioMain .portfolioBlk .itemTtl{
		font-weight: 500;
		font-size: 18px;
		line-height: 24px;
		text-align: center;
	}
	.portfolioMain .portfolioBlk .itemTtl:not(:first-of-type){
		margin-top: 40px;
	}
	.portfolioMain .portfolioBlk .itemDl{
		display: flex;
		flex-wrap: wrap;
		border-top: 1px solid #65aac4;
		margin-top: 15px;
	}
	.portfolioMain .portfolioBlk .itemDl .itemDt{
		border-left: 1px solid #65aac4;
		border-bottom: 1px solid #65aac4;
		border-right: 1px solid #65aac4;
		width: 68%;
		height: auto;
		font-weight: 500;
		font-size: 14px;
		line-height: 18px;
		display: flex;
		align-items: center;
		padding: 7px 5px;
	}
	.portfolioMain .portfolioBlk .itemDl .itemDt.head{
		background-color: #65aac4;
		color: #FFF;
		justify-content: center;
		border-right: 1px solid #FFF;
	}
	.portfolioMain .portfolioBlk .itemDl .itemDd{
		border-bottom: 1px solid #65aac4;
		border-right: 1px solid #65aac4;
		width: 32%;
		height: auto;
		font-weight: 500;
		font-size: 14px;
		line-height: 18px;
		display: flex;
		align-items: center;
		padding: 7px 5px;
	}
	.portfolioMain .portfolioBlk .itemDl .itemDd.head{
		background-color: #65aac4;
		color: #FFF;
		justify-content: center;
	}
}


/*
SDGs
====================================*/
.sdgs_lead{
	padding: 105px 0;
	margin-top: 15px;
}
.sdgs_lead .leadTtl{
	font-weight: 600;
	font-size: 40px;
	line-height: 53px;
	text-align: center;
}
.sdgs_lead .leadTxt{
	font-weight: 500;
	font-size: 20px;
	line-height: 40px;
	text-align: center;
	margin-top: 30px;
}
.sdgs_lead .leadImg{
	width: 100%;
	height: 700px;
	margin-top: 50px;
}
.sdgs_lead .leadImg img{
	width: 100%;
	height: 100%;
}
.sdgs_effort{
	padding: 105px 0 100px;
}
.sdgs_effort .effortTtl{
	font-weight: 600;
	font-size: 40px;
	line-height: 53px;
	text-align: center;
}
.sdgs_effort .effortBlk{
	width: 100%;
	max-width: 1010px;
	margin: 30px auto 0;
	padding: 50px;
	border: 5px solid #d5eff8;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
}
.sdgs_effort .itemTxtBlk{
	display: flex;
	justify-content: space-between;
}
.sdgs_effort .itemTtl{
	font-weight: 600;
	font-size: 30px;
	line-height: 40px;
	color: #19509a;
}
.sdgs_effort .itemTtl span{
	display: block;
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
}
.sdgs_effort .itemImgBlk{
	display: flex;
	gap: 10px;
}
.sdgs_effort .itemImgBlk .itemImg{
	width: 100px;
}
.sdgs_effort .itemListBlk{
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 30px;
}
.sdgs_effort .itemListBlk .itemList{
	width: calc((100% - 30px) / 3);
	height: 60px;
	border-radius: 30px;
	background: #d5eff8;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
}
.sdgs_contribution{
	padding: 105px 0 100px;
}
.sdgs_contribution .contributionTtl{
	font-weight: 600;
	font-size: 40px;
	line-height: 53px;
	text-align: center;
}
.sdgs_contribution .contributionTxt{
	font-weight: 500;
	font-size: 20px;
	line-height: 40px;
	text-align: center;
	margin-top: 30px;
}
.sdgs_contribution .contributionBlk{
	margin-top: 30px;
}
.sdgs_contribution .contributionBlk:not(:first-of-type){
	margin-top: 50px;
}
.sdgs_contribution .itemTtl{
	height: 100px;
	background: #65aac4;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 25px;
	line-height: 33px;
	color: #fff;
}
.sdgs_contribution .itemTtl span{
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
	margin-top: 6px;
}
.sdgs_contribution .itemImgFlex{
	display: flex;
	gap: 0 40px;
	margin-top: 30px;
}
.sdgs_contribution .itemImgFlex .itemImgBlk{
	width: 340px;
}
.sdgs_contribution .itemImgFlex .itemImg{
	width: 100%;
	height: 250px;
}
.sdgs_contribution .itemImgFlex .itemImg img{
	width: 100%;
	height: 100%;
}
.sdgs_contribution .itemImgFlex .itemImgTxt{
	font-weight: 500;
	font-size: 18px;
	line-height: 25px;
	text-align: center;
	margin-top: 10px;
}
.sdgs_philosophy{
	padding: 100px 0 150px;
}
.sdgs_philosophy .inner{
	max-width: 1080px;
}
.sdgs_philosophy .head{
	font-weight: 600;
    font-size: 40px;
    line-height: 53px;
    text-align: center;
}
.sdgs_philosophy .mainTtl{
	width: 100%;
	height: 60px;
	background: #65aac4;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-weight: 600;
	font-size: 30px;
	line-height: 44px;
	color: #fff;
	margin-top: 80px;
}
.sdgs_philosophy .mainTtl:first-of-type{
	margin-top: 30px;
}
.sdgs_philosophy .mainText{
	font-weight: 500;
	font-size: 20px;
	line-height: 45px;
	text-align: center;
	margin-top: 30px;
}
.sdgs_philosophy .mainItem{
	width: 100%;
	display: flex;
	margin: 30px auto 0;
}
.sdgs_philosophy .mainItem:not(:first-of-type){
	margin-top: 10px;
}
.sdgs_philosophy .mainItem .itemIndex{
	width: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #78bad3;
	font-weight: 500;
	font-size: 40px;
	color: #fff;
}
.sdgs_philosophy .mainItem .itemTxt{
	flex: 1;
	background: #edf8fc;
	padding: 25px;
}
@media screen and (max-width: 1024px) {
	.sdgs_lead{
		padding: 40px 0 50px;
		margin-top: 12px;
	}
	.sdgs_lead .leadTtl{
		font-weight: 600;
		font-size: 20px;
		line-height: 26px;
		text-align: center;
	}
	.sdgs_lead .leadTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 25px;
		text-align: justify;
		margin-top: 30px;
	}
	.sdgs_lead .leadImg{
		width: 100%;
		height: auto;
		margin-top: 30px;
	}
	.sdgs_lead .leadImg img{
		width: 100%;
		height: 100%;
	}
	.sdgs_effort{
		padding: 40px 0 50px;
	}
	.sdgs_effort .effortTtl{
		font-weight: 600;
		font-size: 20px;
		line-height: 26px;
		text-align: center;
	}
	.sdgs_effort .effortBlk{
		width: 100%;
		margin: 30px auto 0;
		padding: 20px 15px 30px;
		border: 5px solid #d5eff8;
		box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
	}
	.sdgs_effort .itemTxtBlk{
		display: flex;
		flex-flow: column;
		justify-content: space-between;
	}
	.sdgs_effort .itemTtl{
		font-weight: 600;
		font-size: 20px;
		line-height: 32px;
		color: #19509a;
	}
	.sdgs_effort .itemTtl span{
		display: block;
		font-weight: 500;
		font-size: 15px;
		line-height: 24px;
	}
	.sdgs_effort .itemImgBlk{
		display: flex;
		gap: 5px;
		margin-top: 10px;
	}
	.sdgs_effort .itemImgBlk .itemImg{
		width: calc((100% - 20px) / 5);
	}
	.sdgs_effort .itemListBlk{
		display: flex;
		flex-wrap: wrap;
		gap: 5px 5px;
		margin-top: 25px;
	}
	.sdgs_effort .itemListBlk .itemList{
		width: calc((100% - 5px) / 2);
		height: 50px;
		border-radius: 15px;
		background: #d5eff8;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 500;
		font-size: 13px;
		line-height: 17px;
		text-align: center;
		padding: 0px 10px;
	}
	.sdgs_contribution{
		padding: 50px 0 60px;
	}
	.sdgs_contribution .contributionTtl{
		font-weight: 600;
		font-size: 20px;
		line-height: 26px;
		text-align: center;
	}
	.sdgs_contribution .contributionTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 25px;
		text-align: center;
		margin-top: 30px;
	}
	.sdgs_contribution .contributionBlk{
		margin-top: 30px;
	}
	.sdgs_contribution .contributionBlk:not(:first-of-type){
		margin-top: 60px;
	}
	.sdgs_contribution .itemTtl{
		height: auto;
		background: #65aac4;
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
		font-weight: 600;
		font-size: 18px;
		line-height: 24px;
		color: #fff;
		padding: 15px 10px;
	}
	.sdgs_contribution .itemTtl span{
		font-weight: 500;
		font-size: 15px;
		line-height: 22px;
		margin-top: 10px;
	}
	.sdgs_contribution .itemImgFlex{
		display: flex;
		flex-wrap: wrap;
		gap: 25px 0px;
		margin-top: 20px;
	}
	.sdgs_contribution .itemImgFlex .itemImgBlk{
		width: 100%;
	}
	.sdgs_contribution .itemImgFlex .itemImg{
		width: 100%;
		height: auto;
	}
	.sdgs_contribution .itemImgFlex .itemImg img{
		width: 100%;
		height: 100%;
	}
	.sdgs_contribution .itemImgFlex .itemImgTxt{
		font-weight: 500;
		font-size: 14px;
		line-height: 20px;
		text-align: center;
		margin-top: 5px;
	}
	.sdgs_philosophy{
		padding: 50px 0 80px;
	}
	.sdgs_philosophy .inner{
		max-width: 1080px;
	}
	.sdgs_philosophy .head{
		font-weight: 600;
		font-size: 20px;
		line-height: 26px;
		text-align: center;
	}
	.sdgs_philosophy .mainTtl{
		width: 100%;
		height: 40px;
		background: #65aac4;
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		font-weight: 600;
		font-size: 18px;
		line-height: 24px;
		color: #fff;
		margin-top: 40px;
	}
	.sdgs_philosophy .mainTtl:first-of-type{
		margin-top: 30px;
	}
	.sdgs_philosophy .mainText{
		font-weight: 500;
		font-size: 15px;
		line-height: 25px;
		text-align: justify;
		margin-top: 20px;
	}
	.sdgs_philosophy .mainItem{
		width: 100%;
		display: flex;
		flex-flow: column;
		margin: 30px auto 0;
		background: #edf8fc;
	}
	.sdgs_philosophy .mainItem:not(:first-of-type){
		margin-top: 15px;
	}
	.sdgs_philosophy .mainItem .itemIndex{
		width: 40px;
		display: flex;
		justify-content: center;
		align-items: center;
		background: #78bad3;
		font-weight: 500;
		font-size: 20px;
		line-height: 29px;
		padding-bottom: 1px;
		color: #fff;
	}
	.sdgs_philosophy .mainItem .itemTxt{
		flex: 1;
		background: #edf8fc;
		padding: 10px 10px 15px 10px;
		font-size: 14px;
		line-height: 20px;
	}
}


/*
Recruit
====================================*/
.recruit_top {
	height: 700px;
	background: linear-gradient(90deg, rgba(97, 190, 226, 1), rgba(97, 190, 226, 0) 70%);
	position: relative;
}
.recruit_top .topVisual{
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
    height: 100%;
	z-index: -1;
}
.recruit_top .topVisual img{
	width: 100%;
	height: 100%;
}
.recruit_top .headBlk{
	width: 30%;
	padding-top: 65px;
}
.recruit_top .head{
	font-weight: 600;
	font-size: 52px;
	line-height: 60px;
	color: #fff;
	text-align: center;
}
.recruit_top .head span{
	display: block;
	font-weight: 500;
	font-size: 30px;
	line-height: 35px;
}
.recruit_top .linkBlk{
	width: 80%;
	max-width: 380px;
	margin: 0 auto;
}
.recruit_top .headLink{
	width: 100%;
	height: 60px;
	border-radius: 5px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 15px;
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
	position: relative;
}
.recruit_top .headLink::after{
content: "";
    display: block;
    background: url(images/icon_arrow2.webp) no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto 0;
}
.recruit_lead{
	margin-top: 15px;
	padding: 50px 0 115px;
	background: linear-gradient(to bottom, #fff 0%, #d5eff8 100%);
	overflow: hidden;
}
.recruit_lead .mainBlk{
	gap: 0 20px;
}
.recruit_lead .mainTextBlk{
	width: calc(57% - 20px);
	padding: 0;
	margin-top: 70px;
	background: none;
	white-space: nowrap;
}
.recruit_lead .mainHead{
	font-weight: 600;
	font-size: 52px;
	line-height: 55px;
	position: relative;
    z-index: 1;
}
.recruit_lead .mainDesc{
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.04em;
	line-height: 48px;
	margin-top: 30px;
	position: relative;
	z-index: 1;
}
.recruit_lead .mainImgWrap{
	width: 43%;	
}
.recruit_infographics{
	padding: 80px 0 100px;
}
.recruit_infographics .head{
	font-weight: 600;
	font-size: 70px;
	letter-spacing: 0.04em;
	line-height: 90px;
	text-align: center;
	color: #65aac4;
}
.recruit_infographics .head span{
	display: block;
	font-weight: 600;
    font-size: 20px;
    line-height: 27px;
}
.recruit_infographics .mainBlk{
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-top: 50px;
}
.recruit_infographics .mainItem{
	width: calc((100% - 80px) / 3);
}
.recruit_feature{
	padding: 80px 0 110px;
  	background: linear-gradient(-50deg, #A3D4E6 0%, #A3D4E6 50%, #78BAD3 50%, #78BAD3 100%);
}
.recruit_feature .head{
	font-weight: 600;
    font-size: 70px;
    line-height: 90px;
    color: #FFF;
    display: flex;
    align-items: center;
    gap: 0 50px;
}
.recruit_feature .head span{
	font-weight: 600;
    font-size: 20px;
    line-height: 27px;
}
.recruit_feature .mainFlex{
	display: flex;
	flex-wrap: wrap;
	gap: 30px 20px;
	margin-top: 40px;
}
.recruit_feature .mainFlex .itemBlk{
	width: calc((100% - 20px) /2);
	height: 120px;
	border-radius: 60px;
	background: #fff;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	gap: 5px 0;
}
.recruit_feature .mainFlex .itemBlk .itemTtl{
	font-weight: 600;
	font-size: 25px;
	line-height: 37px;
}
.recruit_feature .mainFlex .itemBlk .itemTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 21px;
}
.recruit_interview{
	padding: 95px 0 130px;
	background: linear-gradient(to bottom, #fff 0%, #edf8fc 100%);
}
.recruit_interview .head{
	font-weight: 600;
	font-size: 70px;
	line-height: 90px;
	color: #65aac4;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 0 50px;
	padding-right: 30px;
}
.recruit_interview .head span{
	font-weight: 600;
	font-size: 20px;
	line-height: 27px;
	color: #65aac4;
}
.recruit_interview .topBlk{
	display: flex;
	align-items: center;
	margin-top: 50px;
}
.recruit_interview .topBlk .topImg{
	width: 40%;
	height: 300px;
	background: #d5eff8;
	position: relative;
}
.recruit_interview .topBlk .topImg img{
	width: 60%;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.recruit_interview .topBlk .topTxtBlk{
	width: 60%;
	height: 300px;
	background: #65aac4;
	padding: 0 50px;
	display: flex;
	flex-flow: column;
	justify-content: center;
}
.recruit_interview .topBlk .topTtl{
	font-weight: 700;
	font-size: 25px;
	line-height: 46px;
	color: #fff;
}
.recruit_interview .topBlk .topProfile{
	width: 100%;
	height: 100px;
	background: #fff;
	font-weight: 500;
	font-size: 16px;
	line-height: 21px;
	margin-top: 30px;
	display: flex;
	flex-flow: column;
	padding: 18px 24px;
}
.recruit_interview .topBlk .topProfile .name{
	font-weight: 500;
	font-size: 20px;
	letter-spacing: 0.04em;
	line-height: 32px;
	margin-bottom: 10px;
}
.recruit_interview .middleBlk{
	display: flex;
	gap: 0 50px;
	margin-top: 50px;
}
.recruit_interview .middleBlk .middleTxtBlk{
	flex: 1;
}
.recruit_interview .middleBlk .middleHead{
	font-weight: 600;
	font-size: 25px;
	line-height: 40px;
}
.recruit_interview .middleBlk .middleTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 32px;
	margin-top: 15px;
}
.recruit_interview .middleBlk .middleTxt span{
	font-weight: 600;
	color: #257B9B
}
.recruit_interview .bottomBlk{
	margin-top: 50px;
}
.recruit_interview .bottomBlk .bottomHead{
	font-weight: 600;
	font-size: 25px;
	line-height: 40px;
}
.recruit_interview .bottomBlk .bottomTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 32px;
	margin-top: 15px;
}
.recruit_interview .bottomBlk .bottomTxt span{
	font-weight: 600;
	color: #257B9B
}
.recruit_interview.interview2 .head{
	justify-content: flex-start;
	padding: 0;
}
.recruit_benefit{
	padding: 100px 0;
	background: url('images/recruit_benefitBg.webp') no-repeat;
	background-size: cover;
}
.recruit_benefit .mainBlk{
	width: 750px;
	margin: 0 auto;
	padding: 40px 0 50px;
	background: #fff;
	opacity: 0.95;
}
.recruit_benefit .mainTtl{
	font-weight: 600;
	font-size: 45px;
	line-height: 60px;
	text-align: center;
	color: #65aac4;
}
.recruit_benefit .mainTtl span{
	display: block;
	font-weight: 500;
	font-size: 20px;
	line-height: 40px;
}
.recruit_benefit .mainTxt{
	font-weight: 500;
	font-size: 25px;
	line-height: 46px;
	text-align: center;
	margin-top: 25px;
}
.recruit_benefit .mainLink{
	width: 350px;
	height: 80px;
	margin: 30px auto 0;
	border-radius: 5px;
	background: #f5cd60;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.recruit_benefit .mainLink:after{
	content: "";
    display: block;
    background: url('images/icon_arrow.webp') no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto 0;
}
@media screen and (max-width: 1024px) {
	.recruit_top {
		height: calc(100vh - var(--headerH));
		height: auto;
		background: rgba(97, 190, 226, 1);
		position: relative;
	}
	.recruit_top .topVisual{
		position: relative;
		top: 0;
		right: 0;
		width: 100%;
		height: auto;
		z-index: 1;
		aspect-ratio: 16 / 9;
	}
	.recruit_top .topVisual img{
		width: 100%;
		height: 100%;
	}
	.recruit_top .headBlk{
		width: 100%;
		padding-top: 0px;
		display: flex;
		flex-flow: column;
		justify-content: center;
	}
	.recruit_top .head{
		width: 40%;
		height: fit-content;
		font-weight: 600;
		font-size: 31px;
		line-height: 41px;
		color: #fff;
		text-align: center;
		z-index: 2;
		margin-bottom: -65px;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 4%;
		margin: auto;
	}
	.recruit_top .head span{
		display: block;
		font-weight: 500;
		font-size: 18px;
		line-height: 24px;
	}
	.recruit_top .linkBlk{
		width: 100%;
		max-width: none;
		margin: 0px auto 0;
		position: absolute;
		bottom: -485px;
		left: 0%;
		background: #61BEE2;
		padding-top: 20px;
		padding-bottom: 30px;
		margin-top: -1px;
	}
	.recruit_top .headLink{
		width: 90%;
		margin:  0 auto;
		height: 60px;
		border-radius: 5px;
		background: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 15px;
		font-weight: 500;
		font-size: 18px;
		line-height: 24px;
		position: relative;
	}
	.recruit_top .headLink:first-of-type{
		margin-top: 0px;
	}
	.recruit_top .headLink::after{
		content: "";
		display: block;
		background: url(images/icon_arrow2.webp) no-repeat;
		background-size: contain;
		width: 20px;
		height: 20px;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 15px;
		margin: auto 0;
	}
	#recruit .linkBlk{
		width: 100%;
        max-width: none;
        margin: 0px auto 0;
        background: #61BEE2;
        padding-top: 20px;
        padding-bottom: 30px;
	}
	#recruit .headLink{
		width: 90%;
		margin:  0 auto;
		height: 60px;
		border-radius: 5px;
		background: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 15px;
		font-weight: 500;
		font-size: 18px;
		line-height: 24px;
		position: relative;
	}
	#recruit .headLink:first-of-type{
		margin-top: 0px;
	}
	#recruit .headLink::after{
		content: "";
		display: block;
		background: url(images/icon_arrow2.webp) no-repeat;
		background-size: contain;
		width: 20px;
		height: 20px;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 15px;
		margin: auto 0;
	}
	.recruit_lead{
		overflow: hidden;
		margin-top: 12px;
		padding: 30px 0 50px;
		background: linear-gradient(to bottom, #fff 0%, #d5eff8 100%);
	}
	.recruit_lead .mainBlk{
		gap: 0 20px;
	}
	.recruit_lead .mainTextBlk{
		width: 100%;
		padding: 0;
		margin-top: 30px;
		background: none;
		white-space: wrap;
	}
	.recruit_lead .mainHead{
		font-weight: 600;
		font-size: 25px;
		line-height: 35px;
		letter-spacing: -0.02em;
        text-align: left;
        white-space: nowrap;
	}
	.recruit_lead .mainDesc{
		font-weight: 500;
		font-size: 15px;
		letter-spacing: 0.04em;
		line-height: 25px;
		margin-top: 15px;
	}
	.recruit_lead .mainImgWrap{
		width: 40%;	
	}
	.recruit_infographics{
		padding: 50px 0 70px;
	}
	.recruit_infographics .head{
		font-weight: 600;
		font-size: 40px;
		letter-spacing: 0.04em;
		line-height: 60px;
		text-align: center;
		color: #65aac4;
	}
	.recruit_infographics .head span{
		display: block;
		font-weight: 600;
		font-size: 18px;
		line-height: 22px;
	}
	.recruit_infographics .mainBlk{
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
		margin-top: 30px;
	}
	.recruit_infographics .mainItem{
		width: calc((100% - 10px) / 2);
	}
	.recruit_feature{
		padding: 40px 0 55px;
		background: linear-gradient(-50deg, #A3D4E6 0%, #A3D4E6 50%, #78BAD3 50%, #78BAD3 100%);
	}
	.recruit_feature .head{
		font-weight: 600;
		font-size: 35px;
		line-height: 42px;
		color: #FFF;
		display: flex;
		align-items: center;
		gap: 0 25px;
	}
	.recruit_feature .head span{
		font-weight: 600;
		font-size: 17px;
		line-height: 26px;
	}
	.recruit_feature .mainFlex{
		display: flex;
		flex-wrap: wrap;
		gap: 15px 20px;
		margin-top: 30px;
	}
	.recruit_feature .mainFlex .itemBlk{
		width: 100%;
		height: 90px;
		padding: 0 40px;
		border-radius: 60px;
		background: #fff;
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
		gap: 0;
	}
	.recruit_feature .mainFlex .itemBlk .itemTtl{
		font-weight: 600;
		font-size: 16px;
		line-height: 22px;
	}
	.recruit_feature .mainFlex .itemBlk .itemTxt{
		font-weight: 500;
		font-size: 14px;
		line-height: 2 0px;
		margin-top: 7px;
		text-align: center;
	}
	.recruit_interview{
		padding: 40px 0 60px;
		background: linear-gradient(to bottom, #fff 0%, #edf8fc 100%);
	}
	.recruit_interview .head{
		font-weight: 600;
		font-size: 35px;
        line-height: 42px;
		color: #65aac4;
		display: flex;
		flex-flow: column;
		justify-content: flex-end;
		align-items: flex-start;
		gap: 0 25px;
		padding-right: 0px;
	}
	.recruit_interview .head span{
		font-weight: 600;
		font-size: 17px;
		line-height: 26px;
		color: #65aac4;
	}
	.recruit_interview .topBlk{
		display: flex;
		flex-flow: column;
		margin-top: 20px;
	}
	.recruit_interview .topBlk .topImg{
		width: 100%;
		height: 30px;
		background: none;
	}
	.recruit_interview .topBlk .topImg img{
		width: auto;
		height: 110px;
		position: relative;
		bottom: 0;
		left: -8px;
		right: 0;
		margin: 0 auto;
		z-index: 1;
	}
	.recruit_interview .topBlk .topTxtBlk{
		width: 100%;
		height: auto;
		background: #65aac4;
		margin-left: 0px;
		padding: 20px 15px 25px;
		display: flex;
		flex-flow: column;
		justify-content: center;
		position: relative;
	}
	.recruit_interview .topBlk .topTxtBlk::before{
		content: "";
		display: block;
		border-top: 90px solid #D5EFF8;
		border-right: 90px solid rgba(0, 0, 0, 0); 
		height: 0;
		width: 0;
		position: absolute;
		top: 0;
		left: 0;
	}
	.recruit_interview .topBlk .topTtl{
		font-weight: 600;
		font-size: 16px;
        line-height: 26px;
		color: #fff;
		margin-left: 75px;
	}
	.recruit_interview .topBlk .topProfile{
		width: 100%;
		height: auto;
		padding: 13px 15px;
		background: #fff;
		font-weight: 500;
		font-size: 13px;
		line-height: 18px;
		margin-top: 30px;
		display: flex;
		flex-flow: column;
	}
	.recruit_interview .topBlk .topProfile .name{
		font-weight: 500;
		font-size: 15px;
		letter-spacing: 0.04em;
		line-height: 20px;
		margin-bottom: 5px;
	}
	.recruit_interview .middleBlk{
		display: flex;
		flex-flow: column;
		gap: 0 50px;
		margin-top: 40px;
	}
	.recruit_interview .middleBlk .middleTxtBlk{
		flex: 1;
	}
	.recruit_interview .middleBlk .middleHead{
		font-weight: 600;
		font-size: 17px;
		line-height: 22px;
	}
	.recruit_interview .middleBlk .middleTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 25px;
		margin-top: 20px;
		order: 2;
	}
	.recruit_interview .bottomBlk{
		margin-top: 40px;
	}
	.recruit_interview .bottomBlk .bottomHead{
		font-weight: 600;
		font-size: 17px;
		line-height: 22px;
	}
	.recruit_interview .bottomBlk .bottomTxt{
		font-weight: 500;
		font-size: 15px;
		line-height: 25px;
		margin-top: 20px;
	}
	.recruit_interview.interview2 .head{
		justify-content: flex-start;
		padding: 0;
	}
	.recruit_benefit{
		padding: 50px 0 50px;
		background: url('images/recruit_benefitBg.webp') no-repeat;
		background-size: cover;
	}
	.recruit_benefit .mainBlk{
		width: 100%;
		margin: 0 auto;
		padding: 40px 15px 40px;
		background: #fff;
		opacity: 0.95;
	}
	.recruit_benefit .mainTtl{
		font-weight: 600;
		font-size: 28px;
		line-height: 32px;
		text-align: center;
		color: #65aac4;
	}
	.recruit_benefit .mainTtl span{
		display: block;
		font-weight: 500;
		font-size: 16px;
		line-height: 24px;
		margin-top: 5px;
	}
	.recruit_benefit .mainTxt{
		font-weight: 500;
		font-size: 15px;
        line-height: 25px;
		text-align: center;
		margin-top: 25px;
	}
	.recruit_benefit .mainLink{
		width: 90%;
		height: 60px;
		margin: 30px auto 0;
		border-radius: 5px;
		background: #f5cd60;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
		padding-right: 20px;
	}
	.recruit_benefit .mainLink:after{
		content: "";
		display: block;
		background: url('images/icon_arrow.webp') no-repeat;
		background-size: contain;
		width: 25px;
		height: 25px;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 15px;
		margin: auto 0;
	}
}


/*
Benefit
====================================*/
.benefit_content{
	padding: 50px 0 100px;
	margin-top: 15px;
	background: #edf8fc;
}
.benefit_content .benefitTtl{
	font-weight: 500;
	font-size: 45px;
	line-height: 60px;
	text-align: center;
	color: #65aac4;
}
.benefit_content .benefitTxt{
	font-weight: 500;
	font-size: 16px;
	text-align: center;
	line-height: 21px;
	margin-top: 25px;
}
.benefit_content .beneftFlex{
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.benefit_content .beneftFlex .ItemBlk{
	width: calc((100% - 20px) / 2);
	background: #d5eff8;
	padding: 25px 0 35px;
}
.benefit_content .beneftFlex .ItemBlk .itemTtl{
	font-weight: 500;
	font-size: 25px;
	line-height: 32px;
	text-align: center;
}
.benefit_content .beneftFlex .ItemBlk .itemFlex{
	display: flex;
	flex-wrap: wrap;
	gap: 15px 10px;
	justify-content: center;
	margin-top: 15px;
	padding: 0 40px;
}
.benefit_content .beneftFlex .ItemBlk .flexItem{
	width: calc((100% - 10px) / 2);
	height: 60px;
	border-radius: 30px;
	background: #fff;
	font-weight: 500;
	font-size: 16px;
	line-height: 21px;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
}
.benefit_content .beneftFlex .ItemBlk .flexItem span{
	font-size: 14px;
}
.benefit_content .benefitIntern{
	margin-top: 20px;
	display: block;
}
.benefit_content .benefitIntern .internImgBlk{
	display: flex;
}
.benefit_content .benefitIntern .internImg{
	width: calc(100% / 3);
	height: 245px;
}
.benefit_content .benefitIntern .internImg img{
	width: 100%;
	height: 100%;
}
.benefit_content .benefitIntern .internTxtBlk{
	display: flex;
	height: 60px;
	background: linear-gradient(70deg, #F5CD60 0%, #F5CD60 150px, #65AAC4 150px, #65AAC4 100%);
}
.benefit_content .benefitIntern .internCheck{
	width: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
}
.benefit_content .benefitIntern .inernTxt{
	width: calc(100% - 150px);
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 22px;
	line-height: 30px;
	color: #fff;
}
.benefit_content2{
	padding: 50px 0 165px;
	background: linear-gradient(#fff 0%, #d5eff8 100%);
}
.benefit_content2 .jobDetailTtl{
	font-weight: 500;
	font-size: 45px;
	line-height: 60px;
	text-align: center;
	color: #65aac4;
}
.benefit_content2 .jobDetailTab{
	width: 850px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	gap: 0 5px;
	margin-top: 40px;
}
.benefit_content2 .jobDetailTab .tabItem{
	width: 180px;
	height: 60px;
	background: #aeccd8;
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
	color: #fff;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.benefit_content2 .jobDetailTab .tabItem.active{
	background: #65aac4;
}
.benefit_content2 .jobDetailTab .tabItem span{
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	color: #fff;
	margin-top: 2px;
}
.benefit_content2 .jobDetailBlk{
	display: none;
	width: 850px;
	padding: 40px 75px 60px;
	margin: 0 auto;
	background: #fff;
	border: 4px solid #65aac4;
}
.benefit_content2 .jobDetailBlk.active{
	display: block;
}
.benefit_content2 .jobDetailDl{
	display: flex;
	flex-wrap: wrap;
}
.benefit_content2 .jobDetailDt{
	width: 130px;
	font-weight: 500;
	font-size: 15px;
	line-height: 21px;
	border-bottom: 1px solid #ddd;
	padding: 20px 0;
}
.benefit_content2 .jobDetailDt:last-of-type{
	border-bottom: none;
}
.benefit_content2 .jobDetailDd{
	width: calc(100% - 130px);
	font-weight: 500;
	font-size: 15px;
	line-height: 21px;
	border-bottom: 1px solid #ddd;
	padding: 20px 0;
}
.benefit_content2 .jobDetailDd:last-of-type{
	border-bottom: none;
}
.benefit_content2 .jobDetailDd .bold{
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
}
.benefit_content2 .jobDetailLink{
	width: 500px;
	height: 140px;
	margin: 50px auto 0;
	background: #f5cd60;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	font-weight: 500;
	font-size: 30px;
	line-height: 40px;
}
.benefit_content2 .jobDetailLink::after{
	content: "";
    display: block;
    background: url('images/icon_arrow.webp') no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto 0;
}
@media screen and (max-width: 1024px) {
	.benefit_content{
		padding: 40px 0 50px;
		margin-top: 15px;
		background: #edf8fc;
	}
	.benefit_content .benefitTtl{
		font-weight: 500;
		font-size: 22px;
		line-height: 30px;
		text-align: center;
		color: #65aac4;
	}
	.benefit_content .benefitTxt{
		font-weight: 500;
		font-size: 15px;
		text-align: center;
		line-height: 25px;
		margin-top: 20px;
	}
	.benefit_content .beneftFlex{
		margin-top: 30px;
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
	}
	.benefit_content .beneftFlex .ItemBlk{
		width: 100%;
		background: #d5eff8;
		padding: 20px 0 25px;
	}
	.benefit_content .beneftFlex .ItemBlk .itemTtl{
		font-weight: 500;
		font-size: 18px;
		line-height: 24px;
		text-align: center;
	}
	.benefit_content .beneftFlex .ItemBlk .itemFlex{
		display: flex;
		flex-wrap: wrap;
		gap: 7px 5px;
		justify-content: center;
		margin-top: 20px;
		padding: 0 10px;
	}
	.benefit_content .beneftFlex .ItemBlk .flexItem{
		width: calc((100% - 10px) / 2);
		height: 60px;
		border-radius: 35px;
		background: #fff;
		font-weight: 500;
		font-size: 14px;
		line-height: 18px;
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
		padding: 0 15px;
		text-align: center;
	}
	.benefit_content .beneftFlex .ItemBlk .flexItem span{
		font-size: 13px;
		line-height: 16px;
	}
	.benefit_content .benefitIntern{
		margin-top: 20px;
		display: block;
	}
	.benefit_content .benefitIntern .internImgBlk{
		display: flex;
		flex-wrap: wrap;
	}
	.benefit_content .benefitIntern .internImg{
		width: calc(100% / 3);
		height: auto;
	}
	.benefit_content .benefitIntern .internImg.img01{
		width: calc(100% / 2);
	}
	.benefit_content .benefitIntern .internImg.img02{
		width: calc(100% / 2);
	}
	.benefit_content .benefitIntern .internImg.img03{
		width: 100%;
		aspect-ratio: 16 / 9;
	}
	.benefit_content .benefitIntern .internImg img{
		width: 100%;
		height: 100%;
	}
	.benefit_content .benefitIntern .internTxtBlk{
		display: flex;
		height: auto;
		background: linear-gradient(80deg, #F5CD60 0%, #F5CD60 70px, #65AAC4 70px, #65AAC4 100%);
	}
	.benefit_content .benefitIntern .internCheck{
		width: 70px;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 700;
		font-size: 14px;
		line-height: 40px;
		padding-right: 5px;
	}
	.benefit_content .benefitIntern .inernTxt{
		width: calc(100% - 70px);
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 600;
		font-size: 16px;
		line-height: 21px;
		color: #fff;
		padding: 8px 10px 8px 15px;
	}
	.benefit_content2{
		padding: 50px 0 80px;
		background: linear-gradient(to bottom, #fff 0%, #edf8fc 100%);
	}
	.benefit_content2 .jobDetailTtl{
		font-weight: 500;
		font-size: 26px;
        line-height: 36px;
		text-align: center;
		color: #65aac4;
	}
	.benefit_content2 .jobDetailTab{
		width: 100%;
		margin: 0 auto;
		display: flex;
		justify-content: center;
		gap: 0 5px;
		margin-top: 35px;
	}
	.benefit_content2 .jobDetailTab .tabItem{
		width: calc((100% - 15px) / 3);
		height: 50px;
		background: #aeccd8;
		font-weight: 600;
		font-size: 15px;
		line-height: 20px;
		color: #fff;
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
		cursor: pointer;
	}
	.benefit_content2 .jobDetailTab .tabItem.active{
		background: #65aac4;
	}
	.benefit_content2 .jobDetailTab .tabItem span{
		font-weight: 600;
		font-size: 12px;
		line-height: 16px;
		color: #fff;
		margin-top: 2px;
	}
	.benefit_content2 .jobDetailBlk{
		display: none;
		width: 100%;
		padding: 20px 5% 30px;
		margin: 0 auto;
		background: #fff;
		border: 4px solid #65aac4;
	}
	.benefit_content2 .jobDetailBlk.active{
		display: block;
	}
	.benefit_content2 .jobDetailDl{
		display: flex;
		flex-wrap: wrap;
	}
	.benefit_content2 .jobDetailDt{
		width: 100%;
		font-weight: 500;
		font-size: 15px;
		line-height: 21px;
		border-bottom: none;
		padding: 20px 0 10px;
	}
	.benefit_content2 .jobDetailDt:last-of-type{
		border-bottom: none;
	}
	.benefit_content2 .jobDetailDd{
		width: 100%;
		font-weight: 500;
		font-size: 14px;
		line-height: 20px;
		border-bottom: 1px solid #ddd;
		padding: 5px 0 20px 10px;
	}
	.benefit_content2 .jobDetailDd:last-of-type{
		border-bottom: none;
	}
	.benefit_content2 .jobDetailDd .bold{
		font-weight: 600;
		font-size: 15px;
		line-height: 21px;
	}
	.benefit_content2 .jobDetailLink{
		width: 90%;
        height: 60px;
        margin: 30px auto 0;
		background: #f5cd60;
		box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		font-weight: 500;
        font-size: 16px;
        line-height: 24px;
	}
	.benefit_content2 .jobDetailLink::after{
		content: "";
		display: block;
		background: url('images/icon_arrow.webp') no-repeat;
		background-size: contain;
		width: 25px;
		height: 25px;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 15px;
		margin: auto 0;
	}
}


/*
Contact
====================================*/
.contact_lead{
	margin-top: 15px;
	padding: 50px 0;
}
.contact_lead .leadTxt{
	font-weight: 500;
	font-size: 18px;
	line-height: 36px;
	text-align: center;
}
.contact_tel{
	padding: 0 0 45px;
}
.contact_tel .mainBlk{
	width: 800px;
	height: auto;
	margin: 0 auto;
	background: #fff;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
	padding: 30px 0 40px;
}
.contact_tel .head{
	font-weight: 600;
	font-size: 25px;
	line-height: 40px;
	text-align: center;
}
.contact_tel .telBlk{
	width: 500px;
	height: 130px;
	background: #d5eff8;
	margin: 20px auto 0;
	padding-bottom: 5px;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
}
.contact_tel .telBlk .telNum{
	font-weight: 500;
	font-size: 35px;
	line-height: 50px;
	text-align: center;
}
.contact_tel .telBlk .telNum::before{
	content: "";
	display: inline-block;
	width: 20px;
	height: 25px;
	background: url('images/icon_tel.webp') no-repeat;
	background-size: contain;
	margin-right: 4px;
}
.contact_tel .telBlk .telTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 21px;
	text-align: center;
	margin-top: 5px;
}
.contact_form{
	padding: 0 0 115px;
}
.contact_form .mainBlk{
	width: 800px;
	height: auto;
	margin: 0 auto;
	background: #fff;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
	padding: 30px 25px 30px;
}
.contact_form .head{
	font-weight: 600;
	font-size: 25px;
	line-height: 40px;
	text-align: center;
}
.contact_form .headTxt{
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
	margin-top: 10px;
}
.contact_form .formBlk{
	margin-top: 30px;
}
@media screen and (max-width: 1024px) {
	.contact_lead{
		margin-top: 12px;
		padding: 40px 0;
	}
	.contact_lead .leadTxt{
		width: 90%;
		margin: 0 auto;
		font-weight: 500;
		font-size: 15px;
		line-height: 25px;
		text-align: center;
	}
	.contact_tel{
		padding: 0 0 30px;
	}
	.contact_tel .mainBlk{
		width: 100%;
		height: auto;
		margin: 0 auto;
		background: #fff;
		box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
		padding: 25px 0 25px;
	}
	.contact_tel .head{
		font-weight: 600;
		font-size: 18px;
		line-height: 26px;
		text-align: center;
	}
	.contact_tel .telBlk{
		width: 90%;
		height: 100px;
		background: #d5eff8;
		margin: 20px auto 0;
		padding-bottom: 5px;
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
	}
	.contact_tel .telBlk .telNum{
		font-weight: 500;
		font-size: 26px;
		line-height: 38px;
		text-align: center;
	}
	.contact_tel .telBlk .telNum::before{
		content: "";
		display: inline-block;
		width: 14px;
		height: 18px;
		background: url('images/icon_tel.webp') no-repeat;
		background-size: contain;
		margin-right: 4px;
	}
	.contact_tel .telBlk .telTxt{
		font-weight: 500;
		font-size: 14px;
		line-height: 18px;
		text-align: center;
		margin-top: 5px;
	}
	.contact_form{
		padding: 0 0 80px;
	}
	.contact_form .mainBlk{
		width: 100%;
		height: auto;
		margin: 0 auto;
		background: #fff;
		box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
		padding: 25px 15px 30px;
	}
	.contact_form .head{
		font-weight: 600;
		font-size: 18px;
		line-height: 26px;
		text-align: center;
	}
	.contact_form .headTxt{
		font-weight: 500;
		font-size: 14px;
		line-height: 18px;
		text-align: center;
		margin-top: 10px;
	}
	.contact_form .formBlk{
		margin-top: 30px;
	}
}


/*
News
====================================*/
.news_category {
	padding: 50px 0 85px;
}
.news_category .mainBlk ul {
	justify-content: center;
}
.news_category .mainBlk ul li {
	width: 145px;
	height: 26px;
}
.news_category .mainBlk ul li:not(:first-of-type){
	border-left: 1px solid #000;
}
.news_category .mainBlk ul li a {
	width: fit-content;
	margin: 0 auto;
	display: block;
	text-align: center;
	font-size: 14px;
}
.news_category .mainBlk ul li a:hover {
	opacity: 1;
	color: #65aac4;
}
.news_category .mainBlk ul li.current-cat a {
	border-bottom: 4px solid #65aac4;
}
.news_list {
	padding: 0px 0 150px;
}
.news_list .mainBlk{
	width: 750px;
	margin: 0 auto;
}
.news_list .mainBlk article {
	border-top: solid 1px #DDDDDD;
}
.news_list .mainBlk article:last-child {
	border-bottom: solid 1px #DDDDDD;
}
.news_list .mainBlk article a {
	padding: 30px 0;
	align-items: center;
}
.news_list .mainTextBlk {
	flex: 1;
	display: flex;
	flex-flow: wrap;
	align-items: center;
}
.news_list .mainTextDate {
	font-size: 14px;
	line-height: 18px;
	color: #19509a;
}
.news_list .mainTextCat {
    display: inline-block;
    min-width: 110px;
    margin-left: 10px;
    padding-left: 10px;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #19509a;
    border-left: 1px solid #19509a;
}
.news_list .mainTextTitle {
	font-weight: 500;
	font-size: 16px;
	line-height: 21px;
	flex: 1;
}
@media screen and (max-width: 1024px) {
	.news_category {
		padding: 30px 0 40px;
	}
	.news_category .mainBlk ul {
		justify-content: center;
	}
	.news_category .mainBlk ul li {
		flex: 1;
		width: auto;
		height: 22px;
	}
	.news_category .mainBlk ul li:not(:first-of-type){
		border-left: 1px solid #000;
	}
	.news_category .mainBlk ul li a {
		width: fit-content;
		margin: 0 auto;
		display: block;
		text-align: center;
		font-size: 14px;
	}
	.news_category .mainBlk ul li a:hover {
		opacity: 1;
		color: #65aac4;
	}
	.news_category .mainBlk ul li.current-cat a {
		border-bottom: 4px solid #65aac4;
	}
	.news_list {
		padding: 0px 0 80px;
	}
	.news_list .mainBlk{
		width: 100%;
		margin: 0 auto;
	}
	.news_list .mainBlk article {
		border-top: solid 1px #DDDDDD;
	}
	.news_list .mainBlk article:last-child {
		border-bottom: solid 1px #DDDDDD;
	}
	.news_list .mainBlk article a {
		padding: 20px 0;
		align-items: center;
	}
	.news_list .mainTextBlk {
		flex: 1;
		display: flex;
		flex-flow: wrap;
		align-items: center;
	}
	.news_list .mainTextDate {
		font-size: 14px;
		line-height: 14px;
		color: #19509a;
	}
	.news_list .mainTextCat {
		display: inline-block;
		min-width: 110px;
		margin-left: 10px;
		padding-left: 10px;
		font-weight: 500;
		font-size: 14px;
		line-height: 14px;
		color: #19509a;
		border-left: 1px solid #19509a;
	}
	.news_list .mainTextTitle {
		width: 100%;
		font-weight: 500;
		font-size: 15px;
		line-height: 21px;
		flex: auto;
		margin-top: 10px;
	}
}


/*
NewsDetail
====================================*/
.newsDetail {
	padding: 50px 0px 150px;
}
.newsDetail .mainBlk{
	width: 1000px;
	margin: 0 auto;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
	padding: 50px 125px 170px;
}
.newsDetail .mainDate{
	display: inline-flex;
	font-size: 14px;
    line-height: 18px;
    color: #19509a;
	margin-right: -4px;
}
.newsDetail .mainCat{
	display: inline-block;
    min-width: 110px;
    margin-left: 10px;
    padding-left: 10px;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #19509a;
    border-left: 1px solid #19509a;
}
.newsDetail .mainHead{
	font-weight: 600;
	font-size: 20px;
	line-height: 26px;
	margin-top: 10px;
}
.newsDetail .mainContentBlk {
	margin: 40px 0 0;
}
.newsDetail .mainContentBlk > *:first-child,
.newsDetail .mainContentBlk > *:first-child *:first-child {
	margin-top: 0;
}
.newsDetail .mainContentBlk h2 {
	padding-bottom: .3em;
	font-size: 1.125rem;
	border-bottom: 1px solid var(--mainColor);
}
.newsDetail .mainContentBlk img {
	display: table;
	margin: auto!important;
}
.newsDetail .mainContentBlk :not(ul):not(li):not(iframe):not(table *) {
	margin: calc(1rem* 1.6) 0 0;
}
.newsDetail .mainContentBlk a {
	color: var(--mainColor);
	text-decoration: underline;
}
@media screen and (max-width: 1024px) {
	.newsDetail {
		padding: 40px 0px 80px;
	}
	.newsDetail .mainBlk{
		width: 100%;
		margin: 0 auto;
		box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
		padding: 30px 5% 70px;
	}
	.newsDetail .mainDate{
		display: inline-flex;
		font-size: 14px;
		line-height: 18px;
		color: #19509a;
		margin-right: -4px;
	}
	.newsDetail .mainCat{
		display: inline-block;
		min-width: 110px;
		margin-left: 10px;
		padding-left: 10px;
		font-weight: 500;
		font-size: 14px;
		line-height: 18px;
		color: #19509a;
		border-left: 1px solid #19509a;
	}
	.newsDetail .mainHead{
		font-weight: 600;
		font-size: 17px;
		line-height: 26px;
		margin-top: 15px;
	}
	.newsDetail .mainContentBlk {
		margin: 30px 0 0;
	}
	.newsDetail .mainContentBlk > *:first-child,
	.newsDetail .mainContentBlk > *:first-child *:first-child {
		margin-top: 0;
	}
	.newsDetail .mainContentBlk h2 {
		padding-bottom: .3em;
		font-size: 1.125rem;
		border-bottom: 1px solid var(--mainColor);
	}
	.newsDetail .mainContentBlk img {
		display: table;
		margin: auto!important;
	}
	.newsDetail .mainContentBlk :not(ul):not(li):not(iframe):not(table *) {
		margin: calc(1rem* 1.6) 0 0;
	}
	.newsDetail .mainContentBlk a {
		color: var(--mainColor);
		text-decoration: underline;
	}
}