/*
Theme Name: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 {
	/* メインカラー */
	--cocoruColor: #D7EB98;
	--cocoruBg: #A7D21A;
	--parcoColor: #0C7890;
	--parcoBg: #0DB2DD;
	--mainLinkColor: #2C2F30;
	/*====== 背景カラー ======*/
	/* コンテンツ背景カラー */
	--contentsBg: #F4F5F7;
	/* 下層ページトップ背景カラー */
	--lowerTopBg: #D7E1FA;
	/* 表組み項目名背景カラー */
	--tableItemBg: #F0F5FA;
	/* フォーム項目名背景カラー */
	--formItemBg: #F0F5FA;
	/* カテゴリーリンク背景カラー */
	--categoryLinkBg: #D7E1FA;
	/* メール問い合わせボタン背景カラー */
	--mailBtnBg: #F1781B;
	/*====== テキストカラー ======*/
	/* テキストカラー */
	--textColor: #262E30;
	/* リンクテキストカラー */
	--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);
	font-weight: 500;
}
/*
Decoration
====================================*/
/*
Css Animation
====================================*/
/* fade */
.css_fade {
	opacity: 0;
	animation-name: css_fade;
	animation-duration: 3s;
	animation-timing-function: ease;
	animation-delay: 1s;
	animation-direction: normal;
	animation-fill-mode: forwards;
}
@keyframes css_fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/* text fade */
.css_textSplitFade {
	opacity: 0;
}
.css_textSplitFade > span {
	opacity: 0;
	animation: css_textSplitFade 1s ease-out forwards;
}
@keyframes css_textSplitFade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/*
Plugin Overwrite
====================================*/
/*
Slick
---------------------------------------------------------------*/
.top_mv .slick-arrow::before {
	border-color: var(--mainColor);
}
.top_mv .slick-dots li.slick-active button {
	background: var(--mainColor);
}
/*
default.css Overwrite
====================================*/
/*
Other
====================================*/
/*====================================

2. Site Common Style

====================================*/
/*
Pagination
====================================*/
/*
List
---------------------------------------------------------------*/
.pn_list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 56px;
	border-radius: 6px;
	background: #fff;
	box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
	margin: 75px 0 0;
}
.pn_list .listArrow::before, .pn_list .listArrow::after {
	content: '';
	position: absolute;
	top: calc(50% + 3px);
	width: 9px;
	height: 9px;
	-webkit-transform: rotate(45deg) translate(-50%, -50%);
	transform: rotate(45deg) translate(-50%, -50%);
	transition: .3s;
}
.pn_list .listPagerBlk {
	display: flex;
	align-items: center;
	gap: 11px;
}
.pn_list .listPagerPrevious::before {
	border-bottom: solid 2px var(--pnColor);
	border-left: solid 2px var(--pnColor);
	left: calc(50% - 2px);
}
.pn_list .listPagerBlk a, .pn_list .listPagerBlk span {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 35px;
	width: 35px;
	color: var(--pnColor);
	border-radius: 5px;
}
.pn_list .listPagerBlk span.listPagerNum {
	color: var(--pnCurrentColor);
	background: var(--pnCurrentBg);
}
.pn_list .listPagerNext::before {
	border-top: solid 2px var(--pnColor);
	border-right: solid 2px var(--pnColor);
	right: calc(50% - 2px);
}
@media screen and (min-width: 1025px) {
	.pn_list .listPagerPrevious:hover::before {
		border-bottom: solid 2px var(--pnHoverColor);
		border-left: solid 2px var(--pnHoverColor);
	}
	.pn_list .listPagerBlk a:hover {
		color: var(--pnHoverColor);
		background: var(--pnHoverBg);
		opacity: 1;
	}
	.pn_list .listPagerNext:hover::before {
		border-top: solid 2px var(--pnHoverColor);
		border-right: solid 2px var(--pnHoverColor);
	}
}
.pn_list .listFirstBlk, .pn_list .listLastBlk {
	width: 100px;
	height: 100%;
}
.pn_list .listFirstBlk a, .pn_list .listLastBlk a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}
@media screen and (min-width: 1025px) {
	.pn_list .listFirstBlk a:hover, .pn_list .listLastBlk a:hover {
		background: var(--pnHoverBg);
	}
}
.pn_list .listFirstBlk a {
	border-right: solid 1px #E2E6EB;
}
.pn_list .listFirstBlk a::before {
	border-bottom: solid 2px var(--pnColor);
	border-left: solid 2px var(--pnColor);
	left: 50%;
}
.pn_list .listFirstBlk a::after {
	border-bottom: solid 2px var(--pnColor);
	border-left: solid 2px var(--pnColor);
	left: calc(50% - 7px);
}
@media screen and (min-width: 1025px) {
	.pn_list .listFirstBlk a:hover::before {
		border-bottom: solid 2px var(--pnHoverColor);
		border-left: solid 2px var(--pnHoverColor);
	}
	.pn_list .listFirstBlk a:hover::after {
		border-bottom: solid 2px var(--pnHoverColor);
		border-left: solid 2px var(--pnHoverColor);
	}
}
.pn_list .listLastBlk a {
	border-left: solid 1px #E2E6EB;
}
.pn_list .listLastBlk a::before {
	border-top: solid 2px var(--pnColor);
	border-right: solid 2px var(--pnColor);
	right: 50%;
}
.pn_list .listLastBlk a::after {
	border-top: solid 2px var(--pnColor);
	border-right: solid 2px var(--pnColor);
	right: calc(50% - 7px);
}
@media screen and (min-width: 1025px) {
	.pn_list .listLastBlk a:hover::before {
		border-top: solid 2px var(--pnHoverColor);
		border-right: solid 2px var(--pnHoverColor);
	}
	.pn_list .listLastBlk a:hover::after {
		border-top: solid 2px var(--pnHoverColor);
		border-right: solid 2px var(--pnHoverColor);
	}
}
@media screen and (max-width: 1024px) {
	.pn_list {
		margin: 60px 0 0;
	}
	.pn_list .listArrow::before, .pn_list .listArrow::after {
		top: calc(50% + 2px);
	}
	.pn_list .listPagerBlk {
		gap: 8px;
	}
	.pn_list .listPagerPrevious::before {
		left: calc(50% - 2px);
	}
	.pn_list .listPagerBlk a, .pn_list .listPagerBlk span {
		height: 30px;
		width: 26px;
		font-size: 14px;
	}
	.pn_list .listPagerBlk span.listPagerNum {}
	.pn_list .listPagerNext::before {}
	.pn_list .listFirstBlk, .pn_list .listLastBlk {
		width: 40px;
	}
	.pn_list .listFirstBlk a, .pn_list .listLastBlk a {}
	.pn_list .listFirstBlk a {}
	.pn_list .listFirstBlk a::before {
		left: calc(50% + 2px);
	}
	.pn_list .listFirstBlk a::after {
		left: calc(50% - 5px);
	}
	.pn_list .listLastBlk a {}
	.pn_list .listLastBlk a::before {
		right: calc(50% + 2px);
	}
	.pn_list .listLastBlk a::after {
		right: calc(50% - 5px);
	}
}
/*
Detail
---------------------------------------------------------------*/
.pn_detail {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 55px;
	margin: 75px 0 0;
}
.pn_detail > * {
	height: 100%;
}
.pn_detail .detailpreviousBlk, .pn_detail .detailNextBlk {
	width: 100px;
}
.pn_detail .detailpreviousBlk a, .pn_detail .detailNextBlk a {
	position: relative;
	display: block;
	height: 100%;
}
.pn_detail a {
	background: #fff;
	box-shadow: 0px 3px 10px rgb(0 0 0 / 10%);
	border-radius: 6px;
}
@media screen and (min-width: 1025px) {
	.pn_detail a:hover {
		background: var(--pnHoverBg);
		opacity: 1;
	}
}
.pn_detail .detailpreviousBlk {}
.pn_detail .detailpreviousBlk a {}
.pn_detail .detailpreviousBlk a::before, .pn_detail .detailpreviousBlk a::after {
	content: '';
	position: absolute;
	top: calc(50% + 3px);
	width: 9px;
	height: 9px;
	border-bottom: solid 2px var(--pnColor);
	border-left: solid 2px var(--pnColor);
	-webkit-transform: rotate(45deg) translate(-50%, -50%);
	transform: rotate(45deg) translate(-50%, -50%);
	transition: .3s;
}
.pn_detail .detailpreviousBlk a::before {
	left: 50%;
}
.pn_detail .detailpreviousBlk a::after {
	left: calc(50% - 7px);
}
@media screen and (min-width: 1025px) {
	.pn_detail .detailpreviousBlk a:hover::before, .pn_detail .detailpreviousBlk a:hover::after {
		border-bottom: solid 2px var(--pnHoverColor);
		border-left: solid 2px var(--pnHoverColor);
	}
}
.pn_detail .detailNextBlk {}
.pn_detail .detailNextBlk a {}
.pn_detail .detailNextBlk a::before, .pn_detail .detailNextBlk a::after {
	content: '';
	position: absolute;
	top: calc(50% + 3px);
	width: 9px;
	height: 9px;
	border-top: solid 2px var(--pnColor);
	border-right: solid 2px var(--pnColor);
	-webkit-transform: rotate(45deg) translate(-50%, -50%);
	transform: rotate(45deg) translate(-50%, -50%);
	transition: .3s;
}
.pn_detail .detailNextBlk a::before {
	right: 50%;
}
.pn_detail .detailNextBlk a::after {
	right: calc(50% - 7px);
}
@media screen and (min-width: 1025px) {
	.pn_detail .detailNextBlk a:hover::before, .pn_detail .detailNextBlk a:hover::after {
		border-top: solid 2px var(--pnHoverColor);
		border-right: solid 2px var(--pnHoverColor);
	}
}
.pn_detail .detailBackBlk {}
.pn_detail .detailBackBlk a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 300px;
	height: 100%;
	font-size: 18px;
}
@media screen and (max-width: 1024px) {
	.pn_detail {
		margin: 50px 0 0;
	}
	.pn_detail > * {}
	.pn_detail .detailpreviousBlk, .pn_detail .detailNextBlk {
		width: 55px;
	}
	.pn_detail .detailpreviousBlk a, .pn_detail .detailNextBlk a {
		width: 100%;
	}
	.pn_detail a {}
	.pn_detail .detailpreviousBlk {}
	.pn_detail .detailpreviousBlk a {}
	.pn_detail .detailpreviousBlk a::before, .pn_detail .detailpreviousBlk a::after {}
	.pn_detail .detailpreviousBlk a::before {}
	.pn_detail .detailpreviousBlk a::after {}
	.pn_detail .detailNextBlk {}
	.pn_detail .detailNextBlk a {}
	.pn_detail .detailNextBlk a::before, .pn_detail .detailNextBlk a::after {}
	.pn_detail .detailNextBlk a::before {}
	.pn_detail .detailNextBlk a::after {}
	.pn_detail .detailBackBlk {}
	.pn_detail .detailBackBlk a {
		width: 200px;
		font-size: 14px;
	}
}
/*
Form
====================================*/
/*
Input
----------------------------------------------------------------*/
.form_input {
}
.form_input .inputRow {
	display: flex;
	gap: 75px;
	justify-content: space-between;
	border-bottom: 1px solid #BFBFBF;
	padding: 24px 0;
}
.form_input > .inputRow:first-child{
    padding: 0 0 24px;
}
.form_input .inputItem {
	position: relative;
	display: flex;
	gap: 30px;
	justify-content: space-between;
	align-items: center;
	width: 215px;
	font-weight: 600;
}
.form_input .inputItem ._must {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 55px;
	height: 24px;
	font-size: 15px;
	line-height: 1;
	color: #fff;
	background-color: var(--cocoruBg);
	border-radius: 50px;
}
.form_input .inputValue {
	flex: 1;
	display: flex;
	align-items: center;
}
.form_input .inputValue._childAge{
    gap: 10px;
}
.form_input .wpcf7-form-control-wrap {
	width: 100%;
}
.form_input .inputValue.select .wpcf7-form-control-wrap{
    width: 300px;
    font-weight: bold;
}
.form_input .inputValue.select .wpcf7-form-control-wrap::before,
.form_input .inputValue.select .wpcf7-form-control-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 2px;
  height: 9px;
  border-radius: 9999px;
  background-color: #2c2f30;
  transform-origin: 50% calc(100% - 1px);
}
.form_input .inputValue.select .wpcf7-form-control-wrap::before {
  transform: rotate(45deg);
  transform: translate(0, -50%) rotate(45deg);
}
.form_input .inputValue.select .wpcf7-form-control-wrap::after {
  transform: rotate(-45deg);
  transform: translate(0, -50%) rotate(-45deg);
}
.form_input .inputValue._childAge span{
    width: 90px;
}
/* input[text, tel, email], textarea */
.form_input input[type="text"], .form_input select, .form_input input[type="tel"], .form_input input[type="email"], .form_input textarea {
	width: 100%;
	height: 50px;
	border-radius: 6px;
	border: solid #C4C4C4 1px;
	padding: 10px 20px;
	font-size: 16px;
	background: #fff;
}
.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: 16px;
	height: 16px;
	cursor: pointer;
}
.form_input .wpcf7-form-control {
	display: flex;
	justify-content: start;
	flex-wrap: wrap;
	gap: 10px 30px;
}
.form_input .wpcf7-list-item {
	display: flex;
	align-items: center;
	gap: 5px;
	width: calc((100% - 30px) / 2);
	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: 40px 0 0;
	text-align: center;
}
.form_agree .wpcf7-list-item {
	margin: 0;
}
.form_agree label {
	display: flex;
	align-items: center;
	gap: 12px;
}
.form_agree .wpcf7-list-item-label {
	font-size: 13px;
}
.form_agree input[type="checkbox"] {
	width: 20px;
	height: 20px;
}
/* submit */
.form_submit {
	position: relative;
	width: 300px;
	text-align: center;
	margin: 40px auto 0;
}
.form_submit input[type="submit"] {
	width: 100%;
	height: 60px;
	font-size: 18px;
	color: #fff;
	transition: .3s;
	background: var(--mailBtnBg);
	border-radius: 100px;
}
@media screen and (min-width: 1025px) {
	.form_submit input[type="submit"]:hover {
		opacity: .7;
	}
}
.form_submit .wpcf7-spinner {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
	.form_input {
	}
	.form_input .inputRow {
		flex-flow: wrap;
		gap: 15px;
		padding: 20px 0;
	}
	.form_input > .inputRow:first-child{
	    padding: 0 0 20px;
	}
	.form_input .inputRow:last-child {
	}
	.form_input .inputItem {
		justify-content: flex-start;
		width: 100%;
		padding: initial;
		border-right: transparent;
		gap: 10px;
	}
	.form_input .inputItem ._must {
    width: 50px;
    height: 20px;
    font-size: 13px;
}
	.form_input .inputValue {}
	.form_input .wpcf7-form-control-wrap {}
	/* input[text, tel, email], textarea */
	.form_input input[type="text"], .form_input input[type="tel"], .form_input input[type="email"], .form_input textarea {
		font-size: 16px;
	}
	.form_input textarea {}
	.form_input input::placeholder, .form_input textarea::placeholder {}
	/* input[checkbox, radio] */
	.form_input input[type="checkbox"], .form_input input[type="radio"] {}
	.form_input .wpcf7-form-control {
    flex-flow: column;
    gap: 6px;
}
	.form_input .wpcf7-list-item {
    width: 100%;
}
	.form_input .wpcf7-list-item label {}
	.form_input .wpcf7-list-item-label {}
	/* input[file] */
	.form_input input[type="file"] {}
	/* validation */
	.form_input .wpcf7-not-valid-tip {}
	/* agree */
	.form_agree {}
	.form_agree .wpcf7-list-item {}
	.form_agree label {}
	.form_agree .wpcf7-list-item-label {}
	.form_agree input[type="checkbox"] {}
	/* submit */
	.form_submit {
		margin: 30px auto 0;
		width: 100%;
		max-width: var(--maxWidth300);
	}
	.form_submit input[type="submit"] {
		height: 55px;
	}
	.form_submit .wpcf7-spinner {}
}
/*
Privacy Policy
----------------------------------------------------------------*/
.form_pp {
	margin: 60px 0 0;
	width: 100%;
	height: 270px;
	border-radius: 5px;
	background: #fff;
	border: 1px solid #cecece;
	padding: 30px 33px;
	overflow: auto;
}
.form_pp dl {}
.form_pp dt {
	font-size: 15px;
}
.form_pp dd {
	font-size: 13px;
	line-height: 22px;
	margin: 20px 0 0;
}
@media screen and (max-width: 1024px) {
	.form_pp {
		margin: 60px 0 0;
		width: 100%;
		height: 250px;
		padding: 30px 15px;
	}
	.form_pp dl {}
	.form_pp dt {
		font-size: 15px;
	}
	.form_pp dd {}
}
/*
Thanks & 404
====================================*/
.thanks_section {
	overflow: hidden;
	padding: 80px 0 100px;
}
.thanks_section .inner {}
.thanks_section .blk {}
.thanks_section .headBlk {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	padding: 20px 0;
	background: #F8F8F8;
}
.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: 200px 0 100px;
}
.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 {
	display: flex;
	justify-content: center;
	text-align: center;
	margin: 45px auto 0;
}
.thanks_section .linkBlk a, .error_section .linkBlk a {
	display: flex;
	justify-content: center;
	width: 250px;
	line-height: 40px;
	font-size: 14px;
	border: solid 1px var(--mainColor);
	border-radius: 100px;
}
@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 auto 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: calc(100% - 60px);
	height: 90px;
	height: clamp(4.375rem, 2.147rem + 3.48vw, 5.625rem);
	box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
	background: white;
	border-radius: 16px;
	margin: 20px 30px 0;
}
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 {}
header .logoBlk a img {
	height: 48px;
	height: clamp(1.875rem, -0.13rem + 3.13vw, 3rem);
}
@media screen and (min-width: 1025px) {
	header .menuBlk {
		display: flex;
		flex-shrink: 0;
		height: 100%;
	}
	header .menuBlk nav {}
	header .menuBlk nav > ul {
		display: flex;
		gap: 20px;
		gap: clamp(0.625rem, -0.489rem + 1.74vw, 1.25rem);
		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;
		font-size: clamp(0.813rem, 0.478rem + 0.52vw, 1rem);
	}
	header .menuBlk nav > ul > li > a._active {
		color: var(--mainColor);
	}
	header .menuBlk nav > ul > li > a:hover {}
	@media screen and (min-width: 1025px) {
		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;
		border-radius: 0 0 6px 6px;
	}
	header .menuBlk > nav > ul > li._parent:hover > ul {
		top: 100%;
		opacity: 1;
		visibility: visible;
		pointer-events: initial;
	}
	header .menuBlk nav > ul > li > ul > li {}
	header .menuBlk nav > ul > li > ul > li > a {
		font-size: 14px;
	}
	header .menuBlk nav > ul > li > ul > li > a:hover {}
	header .menuBlk nav > ul > li._contact {}
	header .menuBlk nav > ul > li._contact._tel {}
	header .menuBlk nav > ul > li._contact._mail {}
	header .menuBlk nav > ul > li._contact a {
		display: flex;
		align-items: center;
	}
	header .menuBlk nav > ul > li._contact._tel a {
		padding: 0 0 0 20px;
		line-height: 1;
		font-size: 26px;
		font-size: clamp(1.5rem, 1.034rem + 0.73vw, 1.625rem);
		font-weight: 300;
		background-image: url(./images/icon_tel01_black.svg);
		background-repeat: no-repeat;
		background-position: left top 80%;
		background-size: 16px;
		background-size: clamp(0.938rem, 0.705rem + 0.36vw, 1rem);
	}
	header .menuBlk nav > ul > li._contact._mail a {
		display: grid;
		place-items: center;
		width: 170px;
		width: 200px;
		width: clamp(8.125rem, 0.326rem + 12.17vw, 12.5rem);
		height: 50px;
		height: clamp(2.5rem, 1.386rem + 1.74vw, 3.125rem);
		font-size: 16px;
		font-size: clamp(0.875rem, 0.652rem + 0.35vw, 1rem);
		color: white;
		background: var(--mailBtnBg);
		border-radius: 50px;
	}
	header .menuBlk nav > ul > li._contact._mail a span{
		font-size:18px;
		font-size: clamp(1rem, 0.777rem + 0.35vw, 1.125rem);
	}
}
@media screen and (max-width: 1024px) {
	header {
		height: 55px;
		box-shadow: none;
		margin: 20px 20px 0;
		width: calc(100% - 40px);
	}
	header .inner {
		background: white;
		padding: 0 8px 0 4%;
		box-shadow: 0 2px 10px rgb(0 0 0 / 5%);
		margin: auto;
		border-radius: 10px;
	}
	header._menuOpen .inner{
    box-shadow: initial;
}
	header .blk {}
	header .logoBlk {}
	header .logoBlk a {}
	header .logoBlk a img {
		height: 30px;
	}
	header .menuBlk {
		position: absolute;
		top: var(--headerH, 55px);
		top: -20px;
		left: 0;
		height: calc(100dvh - var(--headerH, 55px));
		z-index: -1;
		width: 100%;
		margin: 0 calc(50% - 50vw);
		width: 100vw;
		background: white;
		overflow: auto;
		padding: 20px 0 60px;
		padding: calc(var(--headerH) + 40px) 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;
		height: 100vh;
	}
	header .menuBlk > * {
		width: 92%;
		max-width: var(--maxWidth768);
		margin: auto;
	}
	header .menuBlk nav {}
	header .menuBlk nav > ul {
		display: block;
		height: auto;
	}
	header .menuBlk nav > ul > li {
		position: relative;
		display: block;
		height: auto;
		border-bottom: 1px solid #ccc;
	}
	header .menuBlk nav > ul > li > span {
		position: absolute;
		top: 0;
		right: 0;
		height: 100%;
		width: 70px;
	}
	header .menuBlk nav > ul > li > a {
		display: flex;
		font-size: 15px;
		padding: 15px 10px;
	}
	header .menuBlk nav > ul > li._parent > a {
		position: relative;
	}
	header .menuBlk nav > ul > li._parent::before {
		content: '';
		border-style: solid;
		border-width: 7px 5px 0px 5px;
		border-color: var(--mailBtnBg) 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 {
		position: relative;
		height: auto;
	}
	header .menuBlk nav > ul > li._childOpen > ul > li::before{}
	header .menuBlk nav > ul > li > ul > li > a {
		font-size: 15px;
		opacity: 0;
		visibility: hidden;
	}
	header .menuBlk nav > ul > li._childOpen > ul > li > a {
		position:relative;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		display: flex;
		align-items: center;
		gap: 5px;
		padding: 0 0 0 15px;
	}
	header .menuBlk nav > ul > li._childOpen > ul > li > a::before{
		position:absolute;
		content:"";
		position:absolute;
		top: 50%;
		left: 0px;
		transform: translate(0, -50%);
		width: 10px;
		height: 10px;
		background-color: var(--mailBtnBg);
		border-radius: 50px;
	}
	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 > li._contact._tel {
		display: flex !important;
		flex-flow: column;
		gap: 15px;
		margin: 40px 0 0;
	}
	header .menuBlk nav > ul > li._contact._tel > a {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 10px 0;
		flex-flow: wrap;
		padding: 15px 0;
		font-size: 32px;
		line-height: 23px;
		font-weight: 500;
		background: #F5F9D4;
		border-radius: 10px;
	}
	header .menuBlk nav > ul > li._contact._tel > a._parco{
    background: #DDF0F3;
}
	header .menuBlk nav > ul > li._contact._tel > a > ._txt{
    font-size: 16px;
    font-weight: bold;
    color: var(--cocoruBg);
} 
	header .menuBlk nav > ul > li._contact._tel >  a._parco > ._txt{
    color: var(--parcoBg);
}
	header .menuBlk nav > ul > li._contact._tel > a > ._num {
		padding: 0 0 0 20px;
		background-image: url(./images/icon_tel01_black.svg);
		background-repeat: no-repeat;
		background-position: left top 100%;
		background-size: 15px;
		font-weight: bold;
	}
	header .menuBlk nav > ul > li._contact._tel > a > ._time {
		width: 100%;
		font-size: 14px;
		text-align: center;
		color: black;
		line-height: 1;
		margin: 7px 0 0;
	}
	header .menuBlk nav > ul > li._contact._tel > a > img {
		height: 20px;
		margin: 4px 0 0;
		margin: 0 2px 0 0;
	}
	header .menuBlk nav > ul > li._contact._mail {
		margin: 15px auto 0;
	}
	header .menuBlk nav > ul > li._contact._mail > a {
		display: grid;
		place-items: center;
		padding: 15px 0;
		box-shadow: 0 3px 6px rgb(0 0 0 / 18%);
		height: auto;
		color: white;
		font-weight: bold;
		background: var(--mailBtnBg);
		border-radius: 10px;
	}
	header .menuBlk nav > ul > li._contact._mail > a > img {
		height: 20px;
	}
	header .menuBlk nav > ul > li._contact._mail > a > span {
		padding: 27px 0 0;
		background-image: url(./images/icon_mail01_white.svg);
		background-repeat: no-repeat;
		background-position: left 50% top;
		background-size: 25px;
	}
	header .mbMenuBlk {
		position: relative;
		width: 42px;
		height: 42px;
		aspect-ratio: 1/1;
		cursor: pointer;
		background: var(--mailBtnBg);
		border-radius: 6px;
	}
	/*header .mbMenuBlk::before {
	content: 'MENU';
	color: #363A4D;
	font-size: 10px;
	position: absolute;
	top: 0;
	right: 0;
	right: 14px;
	top: 11px;
}*/
	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: 2px;
		background: #fff;
		border-radius: 4px;
		transition: .2s;
	}
	header .mbMenuBdrBlk::before {
		transform: rotate(45deg) scaleX(0);
	}
	header .mbMenuBdrBlk::after {
		transform: rotate(-45deg) scaleX(0);
	}
	header .mbMenuBdrBlk span:nth-of-type(1) {
		top: -8px;
		transition-delay: .2s;
	}
	header .mbMenuBdrBlk span:nth-of-type(2) {
		top: 0px;
		transition-delay: .2s;
	}
	header .mbMenuBdrBlk span:nth-of-type(3) {
		top: 8px;
		transition-delay: .2s;
	}
	header._menuOpen .mbMenuBdrBlk::before {
		transform: rotate(45deg) scaleX(1);
		transition-delay: .2s;
	}
	header._menuOpen .mbMenuBdrBlk::after {
		transform: rotate(-45deg) scaleX(1);
		transition-delay: .2s;
	}
	header._menuOpen .mbMenuBdrBlk span {
		transform: scaleX(0);
		transition-delay: 0s;
	}
}
/*====================================

4. Main

====================================*/
main {
	/* margin: var(--headerH, clamp(4.063rem, 0.568rem + 5.45vw, 5rem)) 0 0; */
	/* overflow: hidden; */
}
@media screen and (max-width: 1024px) {
	main {
		/* margin: var(--headerH, 55px) 0 0; */
		width: 100%;
		/* background-color: #fff; */
		/* overflow: hidden; */
	}
	#about-us main{}
	.breadcrumb{
		background-color: #fff;
	}
}
/*====================================

5. Footer

====================================*/
footer {
	position: relative;
	padding: 210px 0 35px;
	background: #F5F5F5;
	color: var(--textColor);
}
footer .inner {}
footer .blk {}
footer .mainBlk {
	justify-content: space-between;
	padding: 0 0 60px;
	flex-flow: nowrap;
}
footer .mainLeftBlk {}
footer .mainLogoBlk {}
footer .mainLogoBlk a {
}
footer .mainLogoBlk img {
	height: 45px;
}
footer .mainInfoFlexBlk{
    gap: 40px;
    margin: 25px 0 0;
}
footer .mainInfoBlk {
}
footer .mainInfoBlk p {
	font-size: 15px;
	line-height: 26px;
}
footer .mainInfoTtl{
    font-weight: bold;
    margin: 0 0 13px;
}
footer .mainInfoBlk p a {}
footer .mainLinkFlexBlk{
    gap: 15px;
    justify-content: start;
    margin: 40px 0 0;
}
footer .mainLinkBlk{
    width: 245px;
    height: 75px;
    background: #fff;
}
footer .mainLink{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
footer .mainLink img{
    width: 130px;
}
footer .mainLinkTxt{
    font-size: 18px;
    line-height: 23px;
    text-align: center;
}
footer .mainLinkTxt span{
    font-size: 13px;
}
footer .menuBlk {
    max-width: 300px;
    margin: 20px 0 0;
}
footer .menuBlk > ul {
	gap: 15px 60px;
}
footer .menuBlk > ul > li {
}
footer .menuBlk > ul > li > a {
	font-weight: 700;
}
footer .menuBlk > ul > li a {
}
footer .menuBlk > ul > li > ul {
	display: grid;
	gap: 8px;
	margin: 15px 0 0;
}
footer .menuBlk > ul > li > ul > li {}
footer .menuBlk > ul > li > ul > li > a {
	font-size: 14px;
}
footer .menuLinkBlk{
    margin: 30px 0 0;
    display: grid;
    gap: 10px;
}
footer .menuLink{
    width: 300px;
    height: 62px;
}
footer .menuLink a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    height: 100%;
    background: var(--mailBtnBg);
    border-radius: 100px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}
footer .menuLink._insta a{
    background: #FFEB00;
    color: var(--textColor);
    font-size: 16px;
}
footer .menuLink._insta a img{
    width: 23px;
}
footer .btmBlk {}
footer .copyrightBlk {
}
footer .copyrightBlk p {
	font-size: 13px;
	text-align: center;
}
footer .recaptchaBlk {}
footer .recaptchaBlk p {
    font-size: 11px;
    color: var(--textColor);
}
@media screen and (max-width: 1024px) {
	footer {
	padding: 360px 0 50px;
	}
	footer .inner {}
	footer .blk {}
	footer .mainBlk {
		flex-flow: column;
		justify-content: center;
		align-items: center;
		gap: 35px;
		padding: initial;
	}
	footer .mainLeftBlk {
		order: 2;
		width: 100%;
	}
	footer .mainLogoBlk {
		text-align: center;
	}
	footer .mainLogoBlk a {}
	footer .mainLogoBlk img {
		height: 40px;
	}
	footer .mainInfoFlexBlk{
    justify-content: center;
    gap: 20px;
}
	footer .mainInfoBlk {
	}
	footer .mainInfoTtl{
    margin: 0 0 5px;
}
	footer .mainInfoBlk p {
		line-height: 1.6;
		text-align: center;
		font-size: 14px;
	}
	footer .mainInfoBlk p a {}
	footer .mainLinkFlexBlk{
    gap: 10px;
    margin: 30px 0 0;
    justify-content: center;
}
	footer .mainLinkBlk{}
	footer .mainLink{}
	footer .mainLinkTxt{}
	footer .mainLinkTxt span{}
	footer .menuBlk {
		order: 1;
		width: 100%;
		flex: unset;
		max-width: initial;
	}
	footer .menuBlk {
		text-align: center;
	}
	footer .menuBlk > ul {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		max-width: var(--maxWidth375);
		margin: auto;
		gap: 15px 0;
	}
	footer .menuBlk > ul > li {
		text-align: center;
	}
	footer .menuBlk > ul > li a {}
	footer .menuBlk > ul > li > a {}
	footer .menuBlk > ul > li > ul {
		display: none;
	}
	footer .menuBlk > ul > li > ul > li {}
	footer .menuBlk > ul > li > ul > li > a {}
	footer .menuLinkBlk{justify-content: center;}
	footer .menuLink{
    width: 280px;
    height: 60px;
}
	footer .menuLink a{
    font-size: 16px;
}
	footer .menuLink._insta a{
    font-size: 15px;
}
	footer .menuLink._insta a img{
    width: 20px;
}
	footer .topSnsBlk {
		margin: 35px 0 0;
	}
	footer .topSnsBlk > ul {
		gap: 20px;
	}
	footer .topSnsBlk > ul > li {}
	footer .topSnsBlk > ul > li > a {}
	footer .topSnsBlk > ul > li > a img {
		height: 24px;
	}
	footer .snsBlk {
		margin: 50px 0 0;
	}
	footer .copyrightBlk {
		margin: 30px 0 0;
	}
	footer .copyrightBlk p {}
	footer .recaptchaBlk {}
	footer .recaptchaBlk p {}
}
/*====================================

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_link1 {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 340px;
	height: 70px;
	border-radius: 50px;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	background: var(--mainLinkColor);
}
.cmn_link1:before {
	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;
	}
}
.cmn_link2{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 300px;
    height: 74px;
    background: #fff;
    border-radius: 100px;
    font-size: 20px;
    font-weight: bold;
}
.cmn_link2 span{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background-image: url(./images/icon_instagram01_white.svg);
    background-size: 22px;
    background-repeat: no-repeat;
    background-position: center;
}
/*head*/
.cmn_head1 {
	font-size: 32px;
	line-height: 60px;
	text-align: center;
}
.cmn_head2{
    font-size: 40px;
    line-height: 1;
    text-align: center;
} 
.cmn_head2 span{
    display: inline-block;
    width: 100%;
    /* margin: 10px 0 0; */
    font-size: 18px;
    line-height: 24px;
    color: var(--parcoBg);
} 
#about-us .cmn_head2 span{
    color: var(--cocoruBg);
}
#programGuide .cmn_head2 span{
    color: var(--cocoruBg);
}
/*title*/
.cmn_title1 {
	font-size: 24px;
}
/*text*/
.cmn_text1 {
	font-size: 15px;
	line-height: 2;
}
@media screen and (max-width: 1024px) {
	.cmn_outer {
		padding: 60px 0;
	}
	.cmn_inner {
		width: 92%;
		max-width: var(--maxWidth768);
		padding: 0;
	}
	.cmn_link1 {
		width: 100%;
		max-width: var(--maxWidth300);
		height: 55px;
		font-size: 1rem;
	}
	.cmn_link1:before {
	}
	/*head*/
	.cmn_head1 {
		font-size: 22px;
		line-height: 32px;
	}
	.cmn_head2{
    font-size: 24px;
} 
	.cmn_head2 span{
    font-size: 15px;
    line-height: 1;
    margin: 10px 0 0;
} 
	/*title*/
	.cmn_title1 {
		font-size: 18px;
	}
	/*text*/
	.cmn_text1 {
		font-size: 14px;
		line-height: 1.6;
	}
}
/*
6.2 Section
====================================*/
/* lower top */
.cmn_top {
	height: 325px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#about-us .cmn_top {
	background-image: url(./images/about_mv.webp);
}
#programGuide .cmn_top {
	background-image: url(./images/programGuide_mv.webp);
}
#recruit .cmn_top {
	background-image: url(./images/recruit_mv.webp);
}
#news .cmn_top {
	background-image: url(./images/news_mv.webp);
}
#informationDetail .cmn_top {
	background-image: url(./images/news_mv.webp);
}
#contact  .cmn_top, #thanks .cmn_top{
	background-color: #ffeb00;
}
.cmn_top._small {
	height: 150px;
	background: var(--lowerTopBg);
}
.cmn_top .inner {
	height: 100%;
}
.cmn_top .blk {
	height: 100%;
}
#contact  .cmn_top .blk, #thanks .cmn_top .blk{
	background-image: radial-gradient(circle, #fff194 3px, transparent 3px), radial-gradient(circle, #fff194 3px, transparent 3px);
	background-position: 0 0, 11px 11px;
	background-size: 22px 22px;
}
.cmn_top .headBlk {
	height: 100%;
	display: flex;
	justify-content: center;
}
.cmn_top .head {
	font-size: 40px;
	line-height: 1;
	font-weight: 700;
	padding: 155px 0 0;
	color: #fff;
}
#contact .cmn_top .head, #thanks .cmn_top .head{
    color: var(--textColor);
}
.cmn_top .head span {
	font-size: 20px;
	display: block;
	text-align: center;
	margin: 16px 0 0;
}
/* table */
.cmn_table > dl {
}
.cmn_table > dl > div {
	display: flex;
	flex-flow: wrap;
	gap: 85px;
	border-bottom: 1px solid #B4B4B4;
	padding: 24px 0;
}
.cmn_table > dl > div:last-child {
	border-bottom: transparent;
}
.cmn_table > dl > div > * {
	line-height: 26px;
}
.cmn_table > dl > div > dt {
	width: 80px;
}
.cmn_table > dl > div > dd {
	flex: 1;
}
.cmn_table > dl > div > dd .tableFlexBlk{
    gap: 55px;
    justify-content: start;
}
.cmn_table > dl > div > dd .tableFlexBlk > div{
    display: grid;
    gap: 5px;
}
.cmn_table > dl > div > dd .tableFlexBlk > div > p{}
.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: 180px;
	}
	.cmn_top._small {
		height: 100px;
	}
	.cmn_top .inner {}
	.cmn_top .blk {}
	.cmn_top .headBlk {}
	.cmn_top .head {
		font-size: 23px;
		line-height: 1;
		padding: 105px 0 0;
	}
	.cmn_top .head span {
		font-size: 14px;
		margin: 10px 0 0;
	}
	/* table */
	.cmn_table > dl {
		border: 1px solid #d7dce2;
		background: white;
	}
	.cmn_table > dl > div {
		display: flex;
		flex-flow: wrap;
		gap: 5px;
		border-bottom: 1px solid #d7dce2;
		padding: 20px 15px;
	}
	.cmn_table > dl > div:last-child {
		border-bottom: transparent;
	}
	.cmn_table > dl > div > * {
		padding: initial;
		line-height: 1.6;
		font-size: 14px;
	}
	.cmn_table > dl > div > dt {
		width: 100%;
		border-right: transparent;
	}
	.cmn_table > dl > div > dd {
		flex: unset;
		width: 100%;
		font-size: 14px;
	}
	.cmn_table > dl > div > dd .tableFlexBlk{
    gap: 25px;
}
	.cmn_table > dl > div > dd .tableFlexBlk > div{}
	.cmn_table > dl > div > dd .tableFlexBlk > div > p{}
	.cmn_table > dl > div > dd a {}
	.cmn_table > dl > div > dd a {}
	.cmn_table > dl > div > dd a[href^="tel"] {}
}
/*====================================

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);
}
/* プログラム・1日の流れ・ご利用案件コンテンツ */
.mod_about{
    width: 100%;
    height: auto;
    background: url(./images/mod_about_bg.webp) no-repeat fixed 100% 100%;
    background-size: cover;
    background-position: center;
    padding: 130px 0 110px;
}
.mod_about .inner{}
.mod_about .blk{}
.mod_about .mainBlk{
    gap: 45px;
    justify-content: center;
    align-items: center;
}
.mod_about .mainItem{
    width: calc((100% - 90px) / 3);
}
.mod_about .mainItemLink{
    display: grid;
    border-radius: 20px;
    padding: 0 0 30px;
    background: #fff;
}
.mod_about .mainItemLink:hover{
	opacity: 0.8;
}
.mod_about .mainItemImgBlk{
    margin: -20px auto 0;
}
.mod_about .mainItem:nth-child(1) .mainItemImgBlk{
    max-width: 145px;
}
.mod_about .mainItem:nth-child(2) .mainItemImgBlk{
    max-width: 90px;
}
.mod_about .mainItem:nth-child(3) .mainItemImgBlk{
    max-width: 185px;
}
.mod_about .mainItemImgBlk img{}
.mod_about .mainItemTitle{
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin: 22px 0 0;
}
.mod_about .mainItemTxt{
    margin: 10px 0 0;
    font-size: 15px;
    text-align: center;
}
.mod_about .mainItemArrow{
    width: 40px;
    height: 40px;
    background-color: var(--cocoruBg);
    border-radius: 50px;
    margin: 22px auto 0;
    background-image: url(./images/icon_arrow_white.webp);
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center;
}
/* お問い合わせ */
.mod_contact{
    position: relative;
    padding: 80px 0 155px;
    background: url(./images/mod_contact_bg.webp);
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.mod_contact .inner{
}
.mod_contact .blk{}
.mod_contact .mainBlk{
    color: #fff;
}
.mod_contact .mainTitle{
    font-size: 40px;
    line-height: 1;
    text-align: center;
}
.mod_contact .mainTitleSpan{
    display: inline-block;
    width: 100%;
    font-size: 24px;
}
.mod_contact .mainTxt{
    margin: 30px 0 0;
    text-align: center;
    font-size: 18px;
    line-height: 38px;
}
.mod_contact .mainFlexLinkBlk{
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: -275px;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
    padding: 55px 0;
    background: #fff;
    border-radius: 24px;
    color: var(
    --textColor);
}
.mod_contact .mainLinkBlk{
    position: relative;
    padding: 0 40px;
    padding: 0 clamp(1.875rem, -1.786rem + 5.71vw, 2.5rem);
}
.mod_contact .mainLinkBlk:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0%, -50%);
  width: 1px;
  height: 160px;
  background: #C4C4C4;
}
.mod_contact .mainLinkTxt{}
.mod_contact .mainLinkItem{
    margin: 20px 0 0;
}
.mod_contact ._cocoru .mainLinkItem, .mod_contact ._parco .mainLinkItem{
    margin: initial;
}
.mod_contact .mainLink{
    width: 280px;
    background: var(--mailBtnBg);
    font-weight: bold;
}
.mod_contact .mainLinkBlk._cocoru{}
.mod_contact .mainLinkBlk._parco{}
.mod_contact .mainLinkBlk._cocoru .mainLink{
    background: initial;
    padding: initial;
}
.mod_contact .mainLinkBlk._parco .mainLink{}
.mod_contact .mainFlexLinkTxt{
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}
.mod_contact .mainLink ._num{
    display: flex;
    width: 100%;
    font-size: 40px;
    line-height: 64px;
    color: var(--cocoruBg);
}
.mod_contact ._parco .mainLink ._num{
    color: var(--parcoBg);
}
.mod_contact .mainLink ._time{
	display: block;
	width: 100%;
	text-align: center;
}
@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 {}
	/* プログラム・1日の流れ・ご利用案件コンテンツ */
	.mod_about{
	    position: relative;
	    padding: 80px 0;
	    background: none;
	}
	.mod_about::before{
		content:"";
		display:block;
		position:fixed;
		top:0;
		left:0;
		z-index: -1;
		width:100%;
		height: 100%;
		background-repeat:no-repeat;
		background-position:50% 100%;
		background-image: url('./images/mod_about_bg_sp.webp');
		background-size:cover;
	}
	.mod_about .inner{
    width: 90%;
}
	.mod_about .blk{}
	.mod_about .mainBlk{
    flex-flow: column;
    gap: 40px;
}
	.mod_about .mainItem{
    width: 100%;
    max-width: 420px;
}
	.mod_about .mainItemLink{
    padding: 0 0 20px;
}
	.mod_about .mainItemLink:hover{}
	.mod_about .mainItemImgBlk{
    margin: -25px auto 0;
}
	.mod_about .mainItem:nth-child(1) .mainItemImgBlk{
    max-width: 125px;
}
	.mod_about .mainItem:nth-child(2) .mainItemImgBlk{
    max-width: 85px;
}
	.mod_about .mainItem:nth-child(3) .mainItemImgBlk{
    max-width: 165px;
}
	.mod_about .mainItemImgBlk img{}
	.mod_about .mainItemTitle{
    font-size: 20px;
    margin: 5px 0 0;
}
	.mod_about .mainItemTxt{
    margin: 5px 0 0;
    font-size: 14px;
}
	.mod_about .mainItemArrow{
    width: 35px;
    height: 35px;
    margin: 10px auto 0;
    background-size: 16px;
}
	/* お問い合わせ */
	.mod_contact{}
	.mod_contact .inner{}
	.mod_contact .blk{}
	.mod_contact .mainBlk{}
	.mod_contact .mainTitle{
    font-size: 26px;
}
	.mod_contact .mainTitleSpan{
    font-size: 18px;
    margin: 10px 0 0;
}
	.mod_contact .mainTxt{
    margin: 20px 0 0;
    font-size: 14px;
    line-height: 1.6;
}
	.mod_contact .mainFlexLinkBlk{
    bottom: initial;
    top: 180px;
    flex-flow: column;
    align-items: center;
    /* gap: 25px; */
    padding: 0px 15px;
    max-width: 600px;
}
	.mod_contact .mainLinkBlk{
    padding: 25px 0;
}
	.mod_contact .mainLinkBlk:not(:last-of-type){
}
	.mod_contact .mainLinkBlk:not(:last-of-type)::after {
    height: 1px;
    width: 100%;
    top: initial;
    bottom: 0;
}
	.mod_contact .mainLinkTxt{}
	.mod_contact .mainLinkItem{
    margin: 15px 0 0;
}
	.mod_contact ._cocoru .mainLinkItem, .mod_contact ._parco .mainLinkItem{}
	.mod_contact .mainLink{
    width: 100%;
    padding: 0 20px;
    max-width: 280px;
}
	.mod_contact .mainLinkBlk._cocoru{}
	.mod_contact .mainLinkBlk._parco{}
	.mod_contact .mainLinkBlk._cocoru .mainLink{}
	.mod_contact .mainLinkBlk._parco .mainLink{
    background: initial;
    display: block;
    padding: initial;
}
	.mod_contact .mainFlexLinkTxt{
    font-size: 18px;
}
	.mod_contact .mainLink ._num{
    font-size: 40px;
    line-height: 1.2;
}
	.mod_contact ._parco .mainLink ._num{}
	.mod_contact .mainLink ._time{
    margin: 5px 0 0;
}
}
/*====================================

8. Page

====================================*/
/*
Top
====================================*/
/*common start*/
.top_cmn_head {
	font-size: 40px;
	line-height: 1;
	text-align: center;
}
.top_cmn_head span {
	display: block;
	margin: 15px 0 0;
	font-size: 14px;
	font-weight: 500;
}
/*common end*/
.top_mv {
	position:relative;
	height: calc(100vh - var(--headerH));
	height: 100vh;
	background-image: url(./images/top_mv_bg01.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}
.top_mv::before{
	content:"";
	position:absolute;
	bottom: -1px;
	background-image: url(./images/top_mv_parts.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 60px;
	z-index: 10;
}
.top_mv .carImgBlk{
    position: absolute;
    top: 270px;
    top: 28%;
    left: 1100px;
    left: 60%;
    width: 300px;
    width: clamp(12.5rem, -56.25rem + 100vw, 18.75rem);
    animation-name: movingCar;
    animation-fill-mode: backwards;
    animation-iteration-count: infinite;
    animation-duration: 7s;
    animation-delay: 1.4s;
    z-index: 2;
}
@keyframes movingCar{
	0% {
	    visibility: visible;
	    margin-left: 0;
	    animation-timing-function: cubic-bezier(0.90, 0, 0.57, 1.0);
	}
	50% {
	    visibility: visible;
	    margin-left: -1400px;
	    animation-timing-function: ease;
	}
	51% {
	    visibility: hidden;
	    margin-left: -1400px;
	    animation-timing-function: ease;
	}
	52% {
	    visibility: hidden;
	    margin-left: 660px;
	    animation-timing-function: ease;
	}
	53% {
	    visibility: visible;
	    margin-left: 660px;
	    animation-timing-function: ease;
	}
	80% {
	    visibility: visible;
	    margin-left: 0;
	    animation-timing-function: ease;
	}
	100% {
	    visibility: visible;
	    margin-left: 0;
	    animation-timing-function: ease;
	}
}
.top_mv .carImgBlk img{}
.top_mv .childrenImgBlk{
    transform: translate(-50%, 0);
    position: absolute;
    left: 50%;
    bottom: 0px;
    width: 100%;
    z-index: 2;
}
.top_mv .childrenImgBlk img{
    width: 100vw;
    /* width: 100%; */
    height: 100vh;
}
.top_mv .girlImgBlk img{}
.top_mv .girlImgBlk{
    position: absolute;
    bottom: 350px;
    bottom: 30%;
    left: 490px;
    left: 33%;
    width: 220px;
    width: clamp(9.375rem, -38.75rem + 70vw, 13.75rem);
    z-index: 3;
}
.top_mv .boyImgBlk{
    position: absolute;
    width: 360px;
    width: clamp(12.5rem, -97.5rem + 160vw, 22.5rem);
    bottom: -117px;
    bottom: -16%;
    left: 585px;
    left: 44%;
    z-index: 4;
}
.top_mv .boyImgBlk img{
    width: clamp(16.875rem, -16.071rem + 51.43vw, 22.5rem);
}
.top_mv .planeImgBlk{
	position:absolute;
	top: 265px;
	left: 400px;
	left: 29%;
	width: 545px;
	height: 96px;
	z-index: 1;
	display: inline-block;	
}
.top_mv .planeImgBlk img{
	animation: fluffy 6s ease-in-out infinite alternate;
	transition: 2s ease-in-out;
}
@keyframes fluffy {
  0% {
    transform:translate(0, 0) rotate(-5deg);
  }
  100% {
    transform:translate(0, 0) rotate(5deg);
  }
}
/* ふわふわアニメーションここから */
.fuwafuwa01 {
    animation: fuwafuwa01 3s infinite ease-in-out;
}
@keyframes fuwafuwa01 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(30px);
    }
}
.fuwafuwa02 {
    animation: fuwafuwa02 2s infinite ease-in-out;
}
@keyframes fuwafuwa02 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(30px);
    }
}
/* ふわふわアニメーションここまで */
.top_mv .inner {
	height: 100%;
}
.top_mv .blk {
	position: relative;
	height: 100%;
}
.top_mv .catchBlk {
	padding: 110px 0 0;
	height: 100%;
}
.top_mv .catchImgBlk{
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}
.top_mv .catchImgBlk img{}
.top_mv .catch {
	font-weight: 700;
	font-size: 50px;
	text-align: center;
	color: #fff;
}
.top_mv .catch span{
    font-size: 72px;
}
/*slider*/
.top_mv._slider {
	background: initial;
}
.top_mv._slider .catchBlk {
	position: relative;
	z-index: 1;
	place-items: initial;
	justify-content: flex-start;
	align-items: center;
	padding: 0 0 0 10%;
	pointer-events: none;
}
.top_mv._slider .catch {
	font-size: 50px;
	color: #fff;
}
.top_mv .slideBlk {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.top_mv .slideBlk img {}
.top_read {
    background-color: var(--cocoruBg);
    background-position: 0 0, 15px 33px;
    background-size: 30px 66px;
    background-image: radial-gradient(circle, #b6d944 5px, transparent 5px), radial-gradient(circle, #b6d944 5px, transparent 5px);
    padding: 90px 0 80px;
    overflow: hidden;
}
.top_read .inner {
}
.top_read .blk {
	position:relative;
	max-width: clamp(46.875rem, -53.295rem + 156.36vw, 73.75rem);
	background: #fff;
	border-radius: 40px;
	padding: 35px 30px 100px;
	margin: 0 auto;
}
.top_read .imgBlk{
    position: absolute;
}
.top_read .imgBlk._top{
    top: -45px;
    right: -160px;
    width: 380px;
    width: clamp(18.75rem, 0.114rem + 29.09vw, 23.75rem);
}
.top_read .imgBlk._middle{
    top: 250px;
    left: -135px;
    width: 285px;
    width: clamp(11.563rem, -11.733rem + 36.36vw, 17.813rem);
}
.top_read .imgBlk._bottom{
    bottom: -80px;
    right: 25px;
    width: 230px;
    width: clamp(11.25rem, -0.398rem + 18.18vw, 14.375rem);
}
.top_read .imgBlk img{}
.zoom_img.zoom_in {
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.top_read .headBlk {
}
.top_read .head {
	font-size: 32px;
	font-size: clamp(1.563rem, -0.068rem + 2.55vw, 2rem);
	line-height: 50px;
	text-align: center;
}
.top_read .headSpan{
    display: block;
    font-size: 90px;
    font-size: clamp(5rem, 2.67rem + 3.64vw, 5.625rem);
    line-height: 140px;
    color: var(--cocoruColor);
}
.top_read .mainBlk {
    margin: 40px 0 0;
}
.top_read .mainTxt {
    font-size: 20px;
    font-size: clamp(1.125rem, 0.659rem + 0.73vw, 1.25rem);
    line-height: 36px;
    text-align: center;
}
.top_read .pointBlk{
    margin: 55px auto 0;
    max-width: 770px;
    border-radius: 8px;
    overflow: hidden;
}
.top_read .pointTitle{
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	padding: 13px 0;
	background: var(--cocoruBg);
	color: #fff;
}
.top_read .pointFlexBlk{gap: 16px 0;background: #F0F3D8;padding: 30px 35px 35px;}
.top_read .pointTxt{
    display: flex;
    gap: 10px;
    width: calc(100% / 2);
    font-weight: bold;
}
.top_read .pointTxt span{
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background-color: var(--mailBtnBg);
    background-image: url(./images/icon_check_white.svg);
    background-repeat: no-repeat;
    background-position: center;
}
.top_common {
    padding: 160px 0 85px;
    padding: clamp(6.25rem, -7.727rem + 21.82vw, 10rem) 0 85px;
    background-image: url(./images/top_common_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.top_common .inner {}
.top_common .blk {}
.top_common .headBlk {}
.top_common .head {}
.top_common .mainBlk {
	position:relative;
	gap: clamp(2.5rem, -2.138rem + 7.25vw, 3.75rem);
	/* align-items: center; */
}
.top_common .mainBlk._cocoru{}
.top_common .mainBlk._parco{
    margin: 152px 0 0;
}
.top_common .mainTextBlk {
	flex: 1;
}
.top_common .mainTextPointBlk{
    gap: 10px;
    justify-content: start;
}
.top_common .mainTextPoint{
    font-size: 18px;
    line-height: 22px;
    font-weight: bold;
    padding: 7px 15px;
    color: #fff;
    border-radius: 5px;
    background: var(--cocoruBg);
}
.top_common ._parco .mainTextPoint{
    background: var(--parcoColor);
}
.top_common ._parco .mainTextPoint._color{
    background: var(--parcoBg);
}
.top_common._parco .mainTextPoint{
    background: var(--parcoColor);
}
.top_common._parco .mainTextPoint._color{
    background: #229FBB;
}
.top_common .mainTextHead {
    margin: 10px 0 0;
    font-size: 38px;
    font-size: clamp(2.125rem, 1.193rem + 1.45vw, 2.375rem);
    line-height: 44px;
    color: var(--cocoruBg);
}
.top_common ._parco .mainTextHead{
	 color: var(--parcoColor);
}
.top_common .mainTextSubHead{
    margin: 30px 0 0;
    font-size: 24px;
    font-size: clamp(1.375rem, 0.909rem + 0.73vw, 1.5rem);
    line-height: 38px;
    font-weight: bold;
    text-align: start;
}
.top_common .mainTextSubHead span{
    display: inline-block;
    margin: 6px 0 0;
    font-size: 20px;
    line-height: 27px;
}
.top_common .mainTextDesc {
	margin: 26px 0 0;
}
.top_common .mainSubjectBlk{
    align-items: center;
    justify-content: start;
    gap: 20px;
    margin: 30px 0 0;
    padding: 25px 35px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid var(--cocoruBg);
}
.top_common ._parco .mainSubjectBlk{
    border: 1px solid var(--parcoColor);
}
.top_common .mainSubjectTitle{
    font-size: 20px;
    font-weight: bold;
    color: var(--cocoruBg);
}
.top_common ._parco .mainSubjectTitle{
    color: var(--parcoColor);
}
.top_common .mainSubjectTxtBlk{
}
.top_common .mainSubjectTxt{
    font-size: 18px;
    font-weight: 500;
}
.top_common .mainLinkBlk {
	margin: 150px 0 0;
	text-align: center;
}
.top_common .mainLinkBlk a {}
.top_common .mainImgWrap {
	position: relative;
	width: 40%;
}
.top_common .mainImgBlk {
	position: relative;
	top: 0;
	left: 0;
	width: calc(var(--vw)* 45);
}
.top_common .mainImgBlk:before{
	content:"";
	position:absolute;
	bottom: -50px;
	right: 50px;
	width: 660px;
	width: clamp(28.125rem, -20.795rem + 76.36vw, 41.25rem);
	width: 100%;
	height: 510px;
	border-radius: 22px;
	background: var(--cocoruBg);
	z-index: -1;
}
.top_common ._parco .mainImgBlk:before{
	left: 40px;
	background: var(--parcoBg);
}
.top_common .mainPartsImgBlk{
	position:absolute;
	bottom: -115px;
	left: 55px;
	width: 180px;
	height: 230px;
}
.top_common ._parco .mainPartsImgBlk{
	left: initial;
	right: 55px;
}
.top_common .mainImgBlk > img {
	width: 100%;
	aspect-ratio: 16 / 10;
	min-height: 480px;
	object-position: top;
	border-radius: 24px 0 0 24px;
}
/*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);
}
.top_common .mainBlk._reverse .mainImgBlk img {border-radius: 0 24px 24px 0;}
/*single*/
.top_common._single .mainHead {
	text-align: center;
}
.top_common._single .mainImgBlk {
	width: 100%;
	margin: 35px auto 0;
}
.top_common._single .mainImgBlk img {min-height: initial;}
.top_common._single .mainLinkBlk {
	text-align: center;
}
.top_subject{
	position:relative;
	padding: 65px 0 100px;
	background: #F6F6F6;
	background-image: linear-gradient(90deg, #e6e6e680 1px, transparent 1px), linear-gradient(#e6e6e680 1px, transparent 1px);
	background-position: 10px;
	background-size: 11px;
	/* overflow: hidden; */
}
.top_subject .mainPartsImgBlk{
    position: absolute;
    top: -35px;
    left: 30px;
    width: 275px;
    width: clamp(14.375rem, -2.098rem + 25.71vw, 17.188rem);
}
.top_subject .mainPartsImgBlk._bottom{
    top: initial;
    left: initial;
    bottom: 0px;
    right: 0;
    width: 280px;
    width: clamp(14.375rem, -3.929rem + 28.57vw, 17.5rem);
}
.top_subject .inner{
    position: relative;
    z-index: 1;
}
.top_subject .blk{}
.top_subject .headBlk{}
.top_subject .head{
    font-size: 40px;
    font-weight: bold;
    text-align: center;
}
.top_subject .head span{
    display: block;
    font-size: 24px;
    line-height: 32px;
    margin: 10px 0 0;
    color: var(--cocoruBg);
}
.top_subject .mainBlk{
    margin: 35px 0 0;
    gap: 20px;
}
.top_subject .mainItemBlk{
    width: calc((100% - 40px) / 3);
    height: 470px;
    padding: 22px;
    border-radius: 16px;
    color: #fff;
}
.top_subject .mainItemBlk:nth-child(1){
    background: var(--cocoruBg);
}
.top_subject .mainItemBlk:nth-child(2){
    background: var(--parcoBg);
}
.top_subject .mainItemBlk:nth-child(3){
    background: var(--mailBtnBg);
}
.top_subject .mainImgBlk{
    /* text-align: center; */
}
.top_subject .mainImgBlk img{
    /* max-height: 220px; */
    border-radius: 16px;
}
.top_subject .mainImgSpan{}
.top_subject .mainItemTitle{
    margin: 25px 0 0;
    font-size: 22px;
    line-height: 32px;
    text-align: center;
    font-weight: bold;
}
.top_subject .mainItemTxt{
    margin: 15px 0 0;
    line-height: 25px;
}
.top_recruit{
    background-color: #DDF0F3;
    padding: 135px 0;
    background-image: repeating-linear-gradient(115deg, #e6f3f5, #e6f3f5 7px, transparent 7px, transparent 14px);
    overflow: hidden;
}
.top_recruit .inner{}
.top_recruit .blk{
	position:relative;
    max-width: 1000px;
}
.top_recruit .mainPartsImgBlk{
	position:absolute;
    top: -36px;
    left: -76px;
    width: 105px;
    height: 150px;
}
.top_recruit .mainPartsImgBlk._bottom{
	top: initial;
	left: initial;
	bottom: 65px;
	bottom: 10%;
	right: -200px;
	right: -15%;
	width: 305px;
	width: clamp(12.5rem, -25.938rem + 60vw, 19.063rem);
	z-index: 1;
}
.top_recruit .mainBlk{
    position: relative;
    display: flex;
    justify-content: start;
    gap: 70px;
    padding: 55px 80px;
    background: #fff;
    border-radius: 24px;
}
.top_recruit .mainTxtBlk{}
.top_recruit .mainTitle{
    font-size: 40px;
    line-height: 1;
    font-weight: bold;
    text-align: start;
}
.top_recruit .mainTitleSpan{
    display: inline-block;
    width: 100%;
    font-size: 24px;
    line-height: 32px;
    margin: 10px 0 0;
    color: #0DB2DD;
}
.top_recruit .mainSubTxt{
    margin: 40px 0 0;
    font-size: 20px;
    font-weight: bold;
}
.top_recruit .mainTxt{
    margin: 20px 0 0;
}
.top_recruit .mainLinkBlk{
    margin: 30px 0 0;
}
.top_recruit .mainLink{
    width: 205px;
    height: 60px;
}
.top_recruit .mainImgBlk{
    position: absolute;
    top: -50px;
    right: -100px;
    width: 610px;
    border-radius: 24px;
    overflow: auto;
}
.top_recruit .mainImgBlk img{
    width: 100%;
}
.top_info {
    padding: 100px 0 60px;
}
.top_info .inner {}
.top_info .blk {
}
.top_info .infoBlk{
	gap: 120px;
}
.top_info .headBlk {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    gap: 60px;
    width: 160px;
}
.top_info .head {
	position:relative;
}
.top_info .head span{
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    color: var(--cocoruBg);
    margin: 10px 0 0;
    text-align: start;
}
.top_info .mainBlk {flex: 1;}
.top_info .mainBlk article {}
.top_info .mainBlk article:first-child{
    background-image: radial-gradient(circle, #B8B8B8 1px, transparent 1px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 8px 2px;
}
.top_info .mainBlk article:last-child {
	background-image: radial-gradient(circle, #B8B8B8 1px, transparent 1px);
	background-position: left top;background-repeat: repeat-x;
	background-size: 8px 2px;
}
.top_info article a {
	justify-content: flex-start;
	align-items: center;
	padding: 20px 0;
	font-weight: bold;
}
.mainBlk article:first-of-type a{
	/* padding: 0 0 20px; */
}
.mainBlk article:last-of-type a{
}
.top_info .mainDate {
	display: inline-block;
	font-size: 18px;
}
.top_info .mainCat {
	display: inline-block;
	min-width: 140px;
	padding: 4px;
	margin-left: 18px;
	font-size: 15px;
	color: #fff;
	text-align: center;
	background: #0DB2DD;
	border-radius: 4px;
}
.top_info .mainCat.cocoruCat{
    background: var(--cocoruBg);
}
.top_info .mainCat.parcoCat{
	background: var(--parcoBg);
}
.top_info .mainCat.infoCat{
	background: #2B7BCB;
}
.top_info .mainCat.recruitCat{
    background: var(--mailBtnBg);
}
.top_info .mainTitle {
	flex: 1;
	margin-left: 16px;
}
.top_info .linkBlk {
}
.top_info .linkBlk a {
	position:relative;
    text-decoration: initial !important;!i;!;
    font-size: 18px;
    font-weight: bold;
}
.top_info .linkBlk a span{
	position:absolute;
	right: -48px;
	top: 50%;
	transform: translate(0%, -50%);
	width: 38px;
	height: 38px;
	background-color: #38484B;
	background-image: url(./images/top_infoArrow.webp);
	background-repeat: no-repeat;
	background-position: left 50% top 50%;
	background-size: 16px;
	border-radius: 50px;
}
.top_info .instaBlk{
    position: relative;
    margin: 100px 0 0;
    background: #F6F6F6;
    border-radius: 16px;
    padding: 65px 0 40px;
}
.top_info .instaTitleBlk{
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translate(-50%, 0);
}
.top_info .instaTitle{
	position:relative;
    font-size: 28px;
    font-weight: bold;
}
.top_info .instaTitle::before, .top_info .instaTitle::after{
	content:"";
	position:absolute;
	width: 2px;
	height: 27px;
	background: #707070;
}
.top_info .instaTitle::before{
    left: -30px;
    transform: translate(0%, 35%) rotate(-20deg);
}
.top_info .instaTitle::after{
    right: -30px;
    transform: translate(0%, 35%) rotate(20deg);
}
.top_info .instaFlexBlk{gap: 12px;justify-content: center;}
.top_info .instaLink{
    border: 1px solid var(--cocoruBg);
    color: var(--cocoruBg);
}
.top_info .instaLink._rehapis{
    border: 1px solid var(--mailBtnBg);
    color: var(--mailBtnBg);
}
.top_info .instaLink span{
    background-color: var(--cocoruBg);
}
.top_info .instaLink._rehapis span{
	background-color:var(--mailBtnBg);
}
@media screen and (max-width: 1024px) {
	/*common start*/
	.top_cmn_head {
		font-size: 24px;
	}
	.top_cmn_head span {
		margin: 10px 0 0;
		font-size: 12px;
	}
	/*common end*/
	.top_mv {
		width: 100%;
		aspect-ratio: 16/ 10;
		height: 570px;
		background-image: url(./images/top_mv_bg01_sp.webp);
	}
	.top_mv::before{}
	.top_mv::after{}
	.top_mv .carImgBlk{
	    top: 220px;
	    width: 140px;
	}
	.top_mv .carImgBlk img{}
	.top_mv .childrenImgBlk{}
	.top_mv .childrenImgBlk img{}
	.top_mv .girlImgBlk{
    bottom: 200px;
    bottom: 35%;
    left: 75px;
    left: calc(50% - 60px);
    transform: translate(-50%, 0);
    width: 105px;
}
	.top_mv .girlImgBlk img{}
	.top_mv .boyImgBlk{
    bottom: -15px;
    bottom: -3%;
    left: 130px;
    left: 34%;
    left: calc(50% + 25px);
    transform: translate(-50%, 0);
    width: 170px;
}
	.top_mv .boyImgBlk img{}
	.top_mv .planeImgBlk{
    top: 10%;
    top: 170px;
    top: 32%;
    left: 60px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 270px;
    height: 45px;
}
	.top_mv .planeImgBlk img{}
	.top_mv .inner {}
	.top_mv .blk {}
	.top_mv .catchBlk {
    padding: 85px 0 0;
}
	.top_mv .catchImgBlk{
    max-width: 250px;
}
	.top_mv .catchImgBlk img{}
	.top_mv .catch {
		font-size: 23px;
		line-height: 1.6;
	}
	.top_mv .catch span{
    font-size: 30px;
}
	/*slider*/
	.top_mv._slider {
		background: unset;
	}
	.top_mv._slider .catchBlk {
		padding: 5% 0 0 7%;
		align-items: flex-start;
	}
	.top_mv._slider .catch {
		font-size: 22px;
		font-size: clamp(1.375rem, 0.906rem + 2vw, 2.188rem);
		line-height: 1.7;
	}
	.top_mv .slideBlk {}
	.top_mv .slideBlk img {}
	.top_overview {}
	.top_overview .inner {}
	.top_overview .blk {}
	.top_overview .headBlk {}
	.top_overview .head {
	}
	.top_overview .mainBlk {
		margin: 30px 0 0;
	}
	.top_overview .mainDesc {}
	.top_common {
    padding: 60px 0 70px;
    background-color: #fff;
}
	.top_common .inner {}
	.top_common .blk {}
	.top_common .headBlk {}
	.top_common .head {}
	.top_common .mainBlk {
		gap: 30px;
		margin: 30px 0 0;
		flex-flow: wrap-reverse;
	}
	.top_common .mainBlk._cocoru{
    margin: initial;
}
	.top_common .mainBlk._parco{
	    margin: 60px 0 0;
	}
	.top_common .mainImgWrap {
		width: 100%;
		transform: initial;
		/* max-width: 610px; */
	}
	.top_common .mainTextBlk {
		flex: unset;
		margin: 30px 0 0;
	}
	.top_common .mainTextPointBlk{
    gap: 8px;
    flex-flow: column;
}
	.top_common .mainTextPoint{
    font-size: 16px;
    line-height: 20px;
    padding: 4px 10px;
}
	.top_common ._parco .mainTextPoint{}
	.top_common ._parco .mainTextPoint._color{}
	.top_common._parco .mainTextPoint{}
	.top_common._parco .mainTextPoint._color{}
	.top_common .mainTextHead {
    margin: 3px 0 0;
    font-size: 25px;
    line-height: 1.6;
}
	.top_common ._parco .mainTextHead{}
	.top_common .mainTextSubHead{
    margin: 10px 0 0;
    font-size: 18px;
    line-height: 1.6;
}
	.top_common .mainTextSubHead span{
    font-size: 16px;
    line-height: 1.6;
}
	.top_common .mainTextDesc {
		margin: 15px 0 0;
	}
	.top_common .mainSubjectBlk{
    margin: 20px 0 0;
    gap: 5px;
    padding: 15px;
    max-width: 570px;
    flex-flow: column;
    align-items: start;
}
	.top_common ._parco .mainSubjectBlk{}
	.top_common .mainSubjectTitle{
    font-size: 18px;
}
	.top_common ._parco .mainSubjectTitle{}
	.top_common .mainSubjectTxtBlk{}
	.top_common .mainSubjectTxt{
    font-size: 15px;
}
	.top_common .mainLinkBlk {
		margin: 45px 0 0;
		text-align: center;
	}
	.top_common .mainLinkBlk a {}
	.top_common .mainImgBlk {
		/* position: unset; */
		/* width: 100%; */
		width: calc(var(--vw) * 100);
		/* max-height: 472px; */
		aspect-ratio: unset;
	}
	.top_common .mainImgBlk:before{
	    top: initial;
	    bottom: -30px;
	    width: 100%;
	    max-width: 700px;
	    max-width: 80%;
	    height: 255px;
	}
	.top_common .mainBlk._cocoru .mainImgBlk:before{
    right: 0;
    /* left: 0; */
}
	.top_common ._parco .mainImgBlk:before{
	    /* bottom: -30px; */
	    left: initial;
	    right: 0;
	}
	.top_common .mainImgBlk:after{}
	.top_common ._parco .mainImgBlk:after{}
	.top_common .mainImgBlk img {
		display: flex;
		margin: auto;
		width: 100%;
		aspect-ratio: 16/10;
		min-height: unset;
		max-width: 800px;
		max-height: 500px;
	}
	.top_common .mainBlk._reverse .mainImgBlk img{
	    border-radius: 24px 0 0 24px;
	}
	.top_common ._cocoru .mainPartsImgBlk{
    width: 120px;
    left: 20px;
    bottom: -90px;
}
		.top_common ._cocoru .mainPartsImgBlk img{}
	.top_common .mainPartsImgBlk{
	    bottom: -100px;
	    width: 135px;
	    height: auto;
	}
		.top_common .mainPartsImgBlk img{
	    aspect-ratio: initial;
	}
		.top_common ._parco .mainPartsImgBlk{
	    right: 12%;
	}
	/*reverse*/
	.top_common .mainBlk._reverse {
		flex-flow: wrap-reverse;
	}
	.top_common .mainBlk._reverse .mainImgBlk {
		position: relative;
		transform: unset;
	}
	/*single*/
	.top_common._single .mainHead {}
	.top_common._single .mainLinkBlk {	}
	.top_common._single .mainImgBlk {
		margin: 30px 0 0;
	}
	.top_common._single .mainImgBlk img {
		height: auto;
	}
	.top_subject{
	    padding: 90px 0 120px;
	}
	.top_subject .mainPartsImgBlk{
	    width: 150px;
	    top: -45px;
	    left: -10px;
	}
	.top_subject .mainPartsImgBlk._bottom{
	    width: 180px;
	}
	.top_subject .inner{}
	.top_subject .blk{}
	.top_subject .headBlk{}
	.top_subject .head{
	   font-size: 26px;
	}
	.top_subject .head span{
	    font-size: 20px;
	    line-height: 1.6;
	    margin: initial;
	}
	.top_subject .mainBlk{
	    flex-flow: column;
	    margin: 25px 0 0;
	}
	.top_subject .mainItemBlk{
	    width: 100%;
	    max-width: 550px;
	    height: auto;
	    padding: 20px 20px 30px;
	    margin: 0 auto;
	}
	.top_subject .mainItemBlk:nth-child(1){}
	.top_subject .mainItemBlk:nth-child(2){}
	.top_subject .mainItemBlk:nth-child(3){}
	.top_subject .mainImgBlk{
    margin: 0 auto;
}
	.top_subject .mainImgBlk img{}
	.top_subject .mainImgSpan{}
	.top_subject .mainItemTitle{
	    margin: 15px 0 0;
	    font-size: 18px;
	    line-height: 1.6;
	}
	.top_subject .mainItemTxt{
	    margin: 10px 0 0;
	    line-height: 1.6;
	}
	.top_recruit{
    padding: 90px 0;
}
	.top_recruit .inner{}
	.top_recruit .blk{}
	.top_recruit .mainPartsImgBlk{
    top: -50px;
    left: -30px;
    width: 90px;
    z-index: 1;
}
	.top_recruit .mainPartsImgBlk._bottom{
    bottom: -45px;
    right: -15px;
    width: 180px;
}
	.top_recruit .mainBlk{
    flex-flow: column;
    padding: 30px 15px;
    gap: 30px;
}
	.top_recruit .mainTxtBlk{}
	.top_recruit .mainTitle{
    font-size: 26px;
    text-align: center;
}
	.top_recruit .mainTitleSpan{
    font-size: 20px;
    line-height: 1.6;
    margin: 5px 0 0;
}
	.top_recruit .mainSubTxt{
    margin: 15px 0 0;
    font-size: 18px;
    text-align: center;
}
	.top_recruit .mainTxt{
    text-align: center;
    margin: 15px 0 0;
}
	.top_recruit .mainLinkBlk{
    margin: 20px 0 0;
    text-align: center;
}
	.top_recruit .mainLink{
    width: 190px;
    height: 50px;
}
	.top_recruit .mainImgBlk{
    position: initial;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}
	.top_recruit .mainImgBlk img{}
	.top_info {
	    padding: 50px 0 40px;
	    background-color: #fff;
	}
	.top_info .inner {}
	.top_info .blk {}
	.top_info .infoBlk{
	    gap: 20px;
	}
	.top_info .headBlk {
	    flex-flow: initial;
	    width: 100%;
	    gap: initial;
	}
	.top_info .head {}
	.top_info .head span{
	    font-size: 16px;
	    line-height: 22px;
	    margin: 5px 0 0;
	}
	.top_info .mainBlk {}
	.top_info .mainBlk article {}
	.top_info .mainBlk article:first-child{}
	.top_info .mainBlk article:last-child {}
	.top_info .mainBlk a {
		gap: 5px 0;
		padding: 15px 0;
	}
	.mainBlk article:first-of-type a{
	    padding: 0 0 15px;
	}
	.top_info .mainDate {
		font-size: 14px;
	}
	.top_info .mainCat {
		min-width: 90px;
		margin-left: 15px;
		padding: 1px 8px;
		font-size: 13px;
	}
	.top_info .mainTitle {
		flex: unset;
		width: 100%;
		margin: 0;
	}
	.top_info .linkBlk {}
	.top_info .linkBlk a {
	    display: flex;
	    align-items: center;
	    gap: 5px;
	    font-size: 16px;
	}
	.top_info .linkBlk a span{
	    position: initial;
	    display: flex;
	    transform: initial;
	    width: 30px;
	    height: 30px;
	    background-size: 15px;
	}
	.top_info .instaBlk{
	    margin: 60px 0 0;
	    padding: 35px 0 30px;
	}
	.top_info .instaTitleBlk{
	    width: 100%;
	}
	.top_info .instaTitle{
	    display: table;
	    margin: 0 auto;
	    font-size: 21px;
	    text-align: center;
	}
	.top_info .instaTitle::before, .top_info .instaTitle::after{
    height: 25px;
}
	.top_info .instaTitle::before{
	    left: -20px;
	}
	.top_info .instaTitle::after{
	    right: -20px;
	}
	.top_info .instaFlexBlk{}
	.top_info .instaLink{
	    gap: 10px;
	    width: 250px;
	    height: 60px;
	    font-size: 16px;
	}
	.top_info .instaLink._rehapis{}
	.top_info .instaLink span{
	    width: 30px;
	    height: 30px;
	    background-size: 17px;
	}
	.top_info .instaLink._rehapis span{}
	.top_read {
	    background-image: radial-gradient(circle, #b6d944 2.5px, transparent 2.5px), radial-gradient(circle, #b6d944 2.5px, transparent 2.5px);
	    background-position: 0 0, 10px 20px;
	    background-size: 20px 40px;
	    padding: 70px 0 100px;
	    overflow: initial;
	}
	.top_read .inner {}
	.top_read .blk {
	    padding: 35px 15px 40px;
	    border-radius: 20px;
	}
	.top_read .imgBlk{}
	.top_read .imgBlk._top{
	    top: -80px;
	    right: -15px;
	    width: 180px;
	}
	.top_read .imgBlk._middle{
	    width: 150px;
	    top: initial;
	    bottom: -85px;
	    left: 0px;
	}
	.top_read .imgBlk._bottom{
	    bottom: -100px;
	    right: 5px;
	    width: 145px;
	}
	.top_read .imgBlk img{}
	.top_read .headBlk {}
	.top_read .head {
	    font-size: 17px;
	    line-height: 1.6;
	}
	.top_read .headSpan{
	    font-size: 40px;
	    line-height: 2;
	}
	.top_read .mainBlk {
	    margin: 20px auto 0;
	    max-width: 500px;
	}
	.top_read .mainTxt {
	    font-size: 14px;
	    line-height: 1.6;
	    text-align: start;
	}
	.top_read .pointBlk{
	    margin: 30px auto 0;
	    max-width: 500px;
	}
	.top_read .pointTitle{
	    font-size: 16px;
	    padding: 10px 0;
	}
	.top_read .pointFlexBlk{
	    gap: 7px;
	    padding: 20px 10px 25px;
	    padding: 20px 3% 25px;
	}
	.top_read .pointTxt{
	    width: 100%;
	}
	.top_read .pointTxt span{
	    width: 25px;
	    height: 25px;
	    background-size: 13px;
	}
}
/*
about-us
====================================*/
.about_message {
    padding: 85px 0 70px;
}
.about_message .inner {}
.about_message .blk {}
.about_message .headBlk {}
.about_message .head {}
.about_message .mainBlk {
	margin: 40px 0 0;
	gap: clamp(2.5rem, -2.138rem + 7.25vw, 3.75rem);
}
.about_message .mainImgBlk {
	position: relative;
	flex: 1;
	margin: 0 0 0 -15px;
}
.about_message .mainImgBlk::before{
	content:"";
	position:absolute;
	right: -15px;
	top: 16px;
	width: 100%;
	height: 100%;
	background: var(--cocoruBg);
	border-radius: 10px;
	z-index: -1;
}
.about_message .mainImgBlk img {
	width: 100%;
	border-radius:10px;
}
.about_message .mainTextBlk {
	width: 700px;
}
.about_message .mainTextHead {}
.about_message .mainTextDesc {line-height: 24px;}
.about_message .mainTextName {
	font-size: 15px;
	margin: 30px auto 0;
}
.about_message .mainTextName span {
	font-size: 20px;
	margin: 0 0 0 10px;
	font-weight: bold;
}
.about_role{padding: 0 0 75px;60px:;60px: 0;}
.about_role .mainImgBlk{
    position: absolute;
    top: -30px;
    right: -33px;
    width: 170px;
}
.about_role .mainImgBlk img{}
.about_role .inner{}
.about_role .blk{
    position: relative;
    padding: 60px 150px;
    background-color: #F1F1F1;
    background-image: repeating-linear-gradient(115deg, #f6f6f6, #f6f6f6 6px, transparent 6px, transparent 14px);
    border-radius: 15px;
}
.about_role .head span{
    color: var(--cocoruBg);
}
.about_role .mainBlk{
    display: grid;
    gap: 15px;
    margin: 40px 0 0;
}
.about_role .mainItem{
    background-color: #fff;
    padding: 20px 40px 20px 30px;
    border-radius: 10px;
}
.about_role .mainItemTxt{flex-wrap: nowrap;align-items: center;justify-content: start;gap: 20px;}
.about_role .mainItemSpan{
    display: inline-block;
    min-width: 60px;
    min-height: 60px;
    border-radius: 100px;
    font-size: 30px;
    line-height: 60px;
    background: #FDD000;
    font-weight: bold;
    color: #fff;
    text-align: center;
}
.about_philosophy {
    position: relative;
    background-color: var(--cocoruBg);
    background-image: radial-gradient(circle, #b5db38 5px, transparent 5px), radial-gradient(circle, #b5db38 5px, transparent 5px);
    background-position: 0 0, 18.5px 20px;
    background-size: 37px 40px;
    padding: 80px 0 100px;
}
.about_philosophy .mainImgBlk {
	position: absolute;
	top: -120px;
	left: 0;
	width: 225px;
}
.about_philosophy .mainImgBlk img {}
.about_philosophy .inner {}
.about_philosophy .blk {}
.about_philosophy .headBlk {}
.about_philosophy .head {
    color: #fff;
}
.about_philosophy .head span{
	color: #fff !important;
}
.about_philosophy .mainBlk {
	margin: 30px 0 0;
	gap: 40px;
}
.about_philosophy .mainItem{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    gap: 15px;
    width: calc((100% - 40px ) / 2);
    height: 190px;
    background-color: #fff;
    border-radius: 18px;
}
.about_philosophy .mainItemTitle{
    font-size: 24px;
    line-height: 36px;
    color: var(--mailBtnBg);
    font-weight: bold;
    text-align: center;
}
.about_philosophy .mainItemTxt{
    line-height: 25px;
    text-align: center;
}
.about_cocoruParco{
    padding: 80px 0 90px;
    overflow: hidden;
}
.about_cocoruParco .inner{}
.about_cocoruParco .blk{}
.about_cocoruParco .headBlk{}
.about_cocoruParco .head{}
.about_cocoruParco .readBlk{
    margin: 30px 0 0;
}
.about_cocoruParco .readTxt{
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}
.about_cocoruParco .mainOutlineBlk{
    display: grid;
    gap: 90px;
    margin: 60px 0 0;
}
.about_cocoruParco .mainBlk{}
.about_cocoruParco .mainImgOutlineBlk{
    position: relative;
}
.about_cocoruParco .mainImgBlk{
    margin: 0 calc(50% - 50vw);
    /* width: 100vw; */
    height: 450px;
}
.about_cocoruParco .mainImgBlk img{
    width: 100%;
    height: 100%;
}
.about_cocoruParco .mainImgOutlineTxtBlk{
    position: absolute;
    bottom: -40px;
    left: 0;
    display: flex;
    flex-flow: column;
    justify-content: center;
    gap: 10px;
    width: 480px;
    height: 180px;
    padding: 0 40px;
    background-color: var(--cocoruBg);
    color: #fff;
    font-weight: bold;
    border-radius: 10px;
}
.about_cocoruParco ._parco .mainImgOutlineTxtBlk{
    background-color: var(--parcoBg);
}
.about_cocoruParco .mainImgOutlineTitle{
    font-size: 32px;
}
.about_cocoruParco .mainImgOutlineTxtBlk > div{
    justify-content: start;
    gap: 10px;
}
.about_cocoruParco .mainImgOutlineTxt{
    padding: 5px 20px;
    background-color: #fff;
    color: var(--cocoruBg);
    border-radius: 5px;
}
.about_cocoruParco ._parco .mainImgOutlineTxt{
    color: var(--parcoBg);
}
.about_cocoruParco .mainTxtBlk{
    gap: 50px;
    margin: 80px 0 0;
}
.about_cocoruParco .mainTxtItem{
    flex: 1;
    margin: 10px 0 0;
}
.about_cocoruParco .mainTxtTitle{
    font-size: 24px;
    line-height: 38px;
    font-weight: bold;
}
.about_cocoruParco .mainTxtTitleSpan{
    color: var(--cocoruBg);
}
.about_cocoruParco ._parco .mainTxtTitleSpan{
    color: var(--parcoBg);
}
.about_cocoruParco .mainTxtTitleMinSpan{
    display: block;
    font-size: 18px;
}
.about_cocoruParco .mainTxt{
    margin: 30px 0 0;
    line-height: 25px;
}
.about_cocoruParco .mainLogoItem{
    width: calc(50% - 60px);
    background-color: #F0F3D8;
    padding: 30px;
    border-radius: 10px;
}
.about_cocoruParco ._parco .mainLogoItem{
    background-color: #DDF0F3;
}
.about_cocoruParco .mainLogoImgBlk{}
.about_cocoruParco .mainLogoImgBlk img{}
.about_cocoruParco .mainLogoTxt{
    margin: 25px 0 0;
    line-height: 25px;
}
.about_relationship{
    position: relative;
    padding: 0 0 100px;
}
.about_relationship .mainPartsImgBlk{
    position: absolute;
    bottom: 0;
    right: 43px;
    width: 265px;
    z-index: 1;
}
.about_relationship .mainPartsImgBlk img{}
.about_relationship .inner{}
.about_relationship .blk{
    background-color: #F5F5F5;
    background-image: repeating-linear-gradient(115deg, #f9f9f9, #f9f9f9 15px, transparent 15px, transparent 30px);
    border-radius: 18px;
    padding: 60px 150px;
}
.about_relationship .headBlk{}
.about_relationship .head{}
.about_relationship .head span{
    width: initial;
    font-size: 40px;
}
.about_relationship .readBlk{
    margin: 20px 0 0;
}
.about_relationship .readTxt{
    text-align: center;
}
.about_relationship .mainBlk{
    margin: 30px 0 0;
}
.about_relationship .mainImgBlk{}
.about_relationship .mainImgBlk img{}
.about_overview {
    padding: 90px 0 115px;
    background-color: #F5F9D4;
}
.about_overview .inner {}
.about_overview .blk {}
.about_overview .headBlk {}
.about_overview .head {}
.about_overview .mainBlk {
	gap: 60px;
	justify-content: center;
	margin: 40px 0 0;
}
.about_overview .mainFlexBlk{
    width: calc((100% - 60px) / 2);
}
.about_overview .mainFlexTitle{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    background-color: var(--cocoruBg);
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    border-radius: 16px 16px 0 0;
}
.about_overview .cmn_table > dl{
    padding: 0 35px;
    background-color: #fff;
    border-radius: 0 0 16px 16px;
}
.about_overview .cmn_table > dl > div {
    gap: 50px;
}
.about_overview .cmn_table > dl > div:last-child {}
.about_overview .cmn_table > dl > div > * {}
.about_overview .cmn_table > dl > div > dt {
    width: 65px;
    color: var(--cocoruBg);
}
.about_overview ._parco .cmn_table > dl > div > dt{
    color: var(--parcoColor);
}
.about_overview .cmn_table > dl > div > dd {}
.about_overview .cmn_table > dl > div > dd a {}
.about_overview .cmn_table > dl > div > dd a:not([href^="tel"]) {}
.about_overview .cmn_table > dl > div > dd a[href^="tel"] {}
.about_overview ._parco .mainFlexTitle{
    background-color: var(--parcoBg);
}
.about_access {
	padding: 90px 0 120px;
	overflow: hidden;
	background-color: #fff;
}
.about_access .mainPartsImgBlk img{}
.about_access .inner {}
.about_access .blk {
	position:relative;
}
.about_access .mainPartsImgBlk{
    position: absolute;
    bottom: -50px;
    right: -90px;
    width: 390px;
}
.about_access .headBlk {}
.about_access .head {}
.about_access .mainBlk {
	gap: 40px;
	align-items: end;
	margin: 40px 0 0;
}
.about_access .mainTxtBlk{
    width: 400px;
}
.about_access .mainTitle{
    font-size: 20px;
    line-height: 38px;
}
.about_access .mainTxt{
    margin: 15px 0 0;
    line-height: 29px;
}
.about_access .mainImgBlk{
    margin: 30px 0 0;
}
.about_access .mainImgBlk img{}
.about_access .mapBlk{
    flex: 1;
    height: 430px;
}
.about_access .mapBlk iframe{
    height: 100%;
    aspect-ratio: initial;
}
@media screen and (max-width: 1024px) {
	.about_message {
    padding: 60px 0;
    background-color: #fff;
}
	.about_message .inner {}
	.about_message .blk {}
	.about_message .headBlk {}
	.about_message .head {}
	.about_message .mainBlk {
    margin: 25px 0 0;
    gap: 20px;
    flex-flow: column;
}
	.about_message .mainImgBlk {
    margin: 0 auto;
    max-width: 500px;
}
	.about_message .mainImgBlk::before{
    right: initial;
    left: 15px;
    width: 95%;
    z-index: 0;
}
	.about_message .mainImgBlk img {
    position: relative;
    width: 95%;
}
	.about_message .mainTextBlk {
    width: 100%;
}
	.about_message .mainTextHead {}
	.about_message .mainTextDesc {
    line-height: 1.6;
}
	.about_message .mainTextName {
    margin: 20px 0 0;
    font-size: 14px;
}
	.about_message .mainTextName span {
    font-size: 18px;
}
	.about_role{
    padding: 60px 0;
    background-color: #fff;
    overflow: hidden;
}
	.about_role .mainImgBlk{
    top: -50px;
    right: -20px;
    width: 120px;
}
	.about_role .mainImgBlk img{}
	.about_role .inner{}
	.about_role .blk{
    padding: 70px 15px 60px;
}
	.about_role .head span{}
	.about_role .mainBlk{
    margin: 25px 0 0;
}
	.about_role .mainItem{
    padding: 15px;
}
	.about_role .mainItemTxt{
    gap: 15px;
}
	.about_role .mainItemSpan{
    min-width: 45px;
    min-height: initial;
    height: 45px;
    font-size: 25px;
    line-height: 45px;
}
	.about_philosophy {
    padding: 100px 0 60px;
}
	.about_philosophy .mainImgBlk {
    top: -75px;
    width: 140px;
}
	.about_philosophy .mainImgBlk img {}
	.about_philosophy .inner {}
	.about_philosophy .blk {}
	.about_philosophy .headBlk {}
	.about_philosophy .head {}
	.about_philosophy .head span{}
	.about_philosophy .mainBlk {
    gap: 15px;
}
	.about_philosophy .mainItem{
    width: 100%;
    max-width: 550px;
    height: initial;
    padding: 15px;
    gap: 5px;
    margin: 0 auto;
}
	.about_philosophy .mainItemTitle{
    font-size: 18px;
    line-height: 1.6;
}
	.about_philosophy .mainItemTxt{
    line-height: 1.6;
}
	.about_cocoruParco{
    padding: 60px 0;
    background-color: #fff;
}
	.about_cocoruParco .inner{}
	.about_cocoruParco .blk{}
	.about_cocoruParco .headBlk{}
	.about_cocoruParco .head{}
	.about_cocoruParco .readBlk{}
	.about_cocoruParco .readTxt{
    font-size: 16px;
}
	.about_cocoruParco .mainOutlineBlk{
    margin: 40px auto 0;
    gap: 50px;
}
	.about_cocoruParco .mainBlk{}
	.about_cocoruParco .mainImgOutlineBlk{}
	.about_cocoruParco .mainImgBlk{
    height: 300px;
}
	.about_cocoruParco .mainImgBlk img{}
	.about_cocoruParco .mainImgOutlineTxtBlk{
    bottom: -50px;
    gap: 5px;
    width: 100%;
    max-width: 480px;
    height: 100px;
    padding: 0 20px;
}
	.about_cocoruParco ._parco .mainImgOutlineTxtBlk{}
	.about_cocoruParco .mainImgOutlineTitle{
    font-size: 22px;
}
	.about_cocoruParco .mainImgOutlineTxtBlk > div{}
	.about_cocoruParco .mainImgOutlineTxt{
    padding: 4px 10px;
}
	.about_cocoruParco ._parco .mainImgOutlineTxt{}
	.about_cocoruParco .mainTxtBlk{
    gap: 20px;
}
	.about_cocoruParco .mainTxtItem{
    flex: initial;
    width: 100%;
    margin: initial;
}
	.about_cocoruParco .mainTxtTitle{
    font-size: 20px;
    line-height: 1.6;
}
	.about_cocoruParco .mainTxtTitleSpan{}
	.about_cocoruParco ._parco .mainTxtTitleSpan{}
	.about_cocoruParco .mainTxtTitleMinSpan{
    font-size: 15px;
}
	.about_cocoruParco .mainTxt{
    margin: 10px 0 0;
    line-height: 1.6;
}
	.about_cocoruParco .mainLogoItem{
    width: 100%;
    padding: 15px;
}
	.about_cocoruParco ._parco .mainLogoItem{}
	.about_cocoruParco .mainLogoImgBlk{
    max-width: 430px;
    margin: 0 auto;
}
	.about_cocoruParco .mainLogoImgBlk img{}
	.about_cocoruParco .mainLogoTxt{
    margin: 10px 0 0;
    line-height: 1.6;
}
	.about_relationship{
    padding: 0 0 70px;
    background-color: #fff;
}
	.about_relationship .mainPartsImgBlk{
    right: 0;
    width: 160px;
}
	.about_relationship .mainPartsImgBlk img{}
	.about_relationship .inner{}
	.about_relationship .blk{
    padding: 40px 15px 50px;
}
	.about_relationship .headBlk{}
	.about_relationship .head{}
	.about_relationship .head span{
    font-size: 22px;
}
	.about_relationship .readBlk{
}
	.about_relationship .readTxt{
    text-align: start;
}
	.about_relationship .mainBlk{
    margin: 20px 0 0;
}
	.about_relationship .mainImgBlk{}
	.about_relationship .mainImgBlk img{}
	.about_overview {
    padding: 60px 0 50px;
}
	.about_overview .inner {}
	.about_overview .blk {}
	.about_overview .headBlk {}
	.about_overview .head {}
	.about_overview .mainBlk {
    gap: 20px;
    margin: 30px 0 0;
}
	.about_overview .mainFlexBlk{
    width: 100%;
    max-width: 600px;
}
	.about_overview .mainFlexTitle{
    height: 50px;
    font-size: 18px;
}
	.about_overview .cmn_table > dl{
    padding: 0 15px;
}
	.about_overview .cmn_table > dl > div {
    flex-flow: column;
    gap: 5px;
    padding: 20px 0;
}
	.about_overview .cmn_table > dl > div:last-child {}
	.about_overview .cmn_table > dl > div > * {}
	.about_overview .cmn_table > dl > div > dt {}
	.about_overview ._parco .cmn_table > dl > div > dt{}
	.about_overview .cmn_table > dl > div > dd {}
	.about_overview .cmn_table > dl > div > dd a {}
	.about_overview .cmn_table > dl > div > dd a:not([href^="tel"]) {}
	.about_overview .cmn_table > dl > div > dd a[href^="tel"] {}
	.about_overview ._parco .mainFlexTitle{}
	.about_access {
    padding: 60px 0 90px;
    overflow: hidden;
}
	.about_access .mainPartsImgBlk img{}
	.about_access .inner {}
	.about_access .blk {}
	.about_access .mainPartsImgBlk{
    right: 0;
    bottom: -30px;
    width: 220px;
}
	.about_access .headBlk {}
	.about_access .head {}
	.about_access .mainBlk {
    margin: 30px 0 0;
    gap: 25px;
}
	.about_access .mainTxtBlk{
    width: 100%;
}
	.about_access .mainTitle{
    font-size: 18px;
    line-height: 1.6;
}
	.about_access .mainTxt{
    margin: 10px 0 0;
    line-height: 1.6;
}
	.about_access .mainImgBlk{
    margin: 15px 0 0;
}
	.about_access .mainImgBlk img{}
	.about_access .mapBlk{1fle:
    initial;1fle:
    initial;1fle:
    inherit;1fle:
    inherit;1fle:
    inherit;1fle:
    inherit;1fle:
    i;1fle:
    ii;1fle:
    inherit;1fle:
    inherit;1fle:
    i;
    flex: initial;
    width: 100%;
    height: 300px;
}
	.about_access .mapBlk iframe{}
}
/*
Program/Guide
====================================*/
.programGuide_outline {
	padding: 95px 0 140px;
	position: relative;
	background-image: url(./images/programGuide_outlineBg.webp);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.programGuide_outline .inner {}
.programGuide_outline .blk {}
.programGuide_outline .linkFlexBlk{
    gap: 35px;
    justify-content: center;
}
.programGuide_outline .linkFlexItem{
    width: 200px;
}
.programGuide_outline .linkFlex{
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    padding: 0 0 10px;
    border-bottom: 2px solid #727272;
}
.programGuide_outline .linkFlexSpan{
    background-image: url(./images/icon_arrow_down.webp);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--cocoruBg);
    width: 26px;
    height: 26px;
    border-radius: 50px;
}
.programGuide_outline .linkFlexItem:nth-child(2) .linkFlexSpan{
    background-color: var(--mailBtnBg);
}
.programGuide_outline .linkFlexItem:nth-child(3) .linkFlexSpan{
    background-color: var(--parcoBg);
}
.programGuide_outline .readBlk{
    margin: 80px 0 0;
}
.programGuide_outline .readTitle{
    font-size: 32px;
    text-align: center;
}
.programGuide_outline .readTitleSpan{
    color: var(--mailBtnBg);
}
.programGuide_outline .readText{
    margin: 40px 0 0;
    text-align: center;
}
.programGuide_outline .mainBlk {
    display: grid;
    gap: 80px;
    margin: 100px 0 0;
}
.programGuide_outline .mainFlexBlk{
    gap: 40px;
    align-items: center;
}
.programGuide_outline .mainFlexImgBlk{
    position: relative;
    width: calc(50% - 20px);
}
.programGuide_outline .mainFlexImgBlk > img{
    border-radius: 10px;
    overflow: hidden;
}
.programGuide_outline .mainFlexPartsBlk{
    position: absolute;
    bottom: -40px;
    left: -70px;
    width: 230px;
}
.programGuide_outline .mainFlexBlk:nth-child(2) .mainFlexPartsBlk{
    bottom: -30px;
    right: -30px;
    left: initial;
    width: 130px;
}
.programGuide_outline .mainFlexBlk:nth-child(3) .mainFlexPartsBlk{
    bottom: -65px;
    left: -70px;
    width: 200px;
}
.programGuide_outline .mainFlexPartsBlk > img{}
.programGuide_outline .mainFlexTxtBlk {
    flex: 1;
}
.programGuide_outline .mainFlexTitle {
    font-size: 28px;
    font-weight: bold;
}
.programGuide_outline .mainFlexTxt {
    margin: 20px 0 0;
}
.programGuide_outline .mainFlexPointBlk {
    gap: 10px;
    justify-content: start;
    margin: 30px 0 0;
}
.programGuide_outline .mainFlexPoint {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 45px;
    background-color: var(--cocoruBg);
    color: #fff;
    border-radius: 4px;
    font-weight: bold;
}
.programGuide_outline .mainFlexPoint._long{
    width: 175px;
}
.programGuide_outline .mainFlexBlk:nth-child(2) .mainFlexPoint{
    background-color: var(--parcoBg);
}
.programGuide_outline .mainFlexBlk:nth-child(3) .mainFlexPoint{
    background-color: var(--mailBtnBg);
}
.programGuide_loopSlider{}
.programGuide_loopSlider .mainBlk{
}
.programGuide_loopSlider .slick-track{
    display: flex;
    gap: 20px;
}
.programGuide_loopSlider .mainBlk img{
    border-radius: 10px;
    width: 380px !important;
    max-height: 265px;
}
.programGuide_schedule {
    position: relative;
    padding: 90px 0 300px;
    background-image: url(./images/programGuide_scheduleBg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    /* z-index: -1; */
}
.programGuide_schedule .inner {}
.programGuide_schedule .blk {}
.programGuide_schedule .headBlk {}
.programGuide_schedule .head {}
.programGuide_schedule .mainBlk {
    display: grid;
    gap: 100px;
    margin: 40px 0 0;
}
.programGuide_schedule .mainOutline {}
.programGuide_schedule .mainHeadBlk {}
.programGuide_schedule .mainHead {
    font-size: 32px;
    text-align: center;
    font-weight: bold;
}
.programGuide_schedule .mainHeadSpan {
    color: var(--cocoruBg);
}
.programGuide_schedule ._parco .mainHeadSpan {
    color: var(--parcoColor);
}
.programGuide_schedule .mainFlexOutline{
    position: relative;
    margin: 40px 0 0;
    background-color: var(--cocoruBg);
    padding: 70px 60px 45px;
    border-radius: 16px;
}
.programGuide_schedule ._parco .mainFlexOutline{
    background-color: var(--parcoBg);
}
.programGuide_schedule ._day .mainFlexOutline{
    background-color: #E8F7F8;
}
.programGuide_schedule .mainFlexPartsBlk{
    position: absolute;
    bottom: -55px;
    right: -135px;
    width: 340px;
    z-index: 1;
}
.programGuide_schedule .mainFlexPartsBlk img{}
.programGuide_schedule ._parco .mainFlexPartsBlk{
    width: 215px;
    right: initial;
    left: -95px;
}
.programGuide_schedule ._parco .mainFlexPartsBlk img{}
.programGuide_schedule .mainFlexHead{
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}
.programGuide_schedule ._day .mainFlexHead{
    color: var(--textColor);
}
.programGuide_schedule .mainFlexBlk{
    gap: 40px;
    justify-content: center;
}
.programGuide_schedule ._parco .mainFlexBlk,.programGuide_schedule ._day .mainFlexBlk {
	margin: 70px 0 0;
}
.programGuide_schedule .mainItemBlk{
    position: relative;
    width: calc((100% - 40px ) / 2);
    background-color: #fff;
    border-radius: 16px;
    padding: 50px 45px 40px;
}
.programGuide_schedule .mainItemTitle{
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px;
    height: 50px;
    font-size: 20px;
    font-weight: bold;
    background-color: #fff;
    border-radius: 100px;
    color: #8CB808;
    border: 2px solid #8CB808;
}
.programGuide_schedule .mainItemTitle._pmCourse{
    color: #fff;
    background-color: #8CB808;
}
.programGuide_schedule ._parco .mainItemTitle{
    color: var(--parcoColor);
    border: 2px solid var(--parcoColor);
}
.programGuide_schedule ._day .mainItemTitle{
    color: #229FBB;
    border: 2px solid #229FBB;
}
.programGuide_schedule ._parco .mainItemTitle._pmCourse{
    color: #fff;
    background-color: var(--parcoColor);
}
.programGuide_schedule ._day .mainItemTitle._pmCourse{
    color: #fff;
    background-color: #229FBB;
}
.programGuide_schedule .mainItemOutline{}
.programGuide_schedule .mainScheduleBlk{
	position: relative;
	gap: 15px;
}
.programGuide_schedule .mainScheduleBlk::before{
	content:"";
	position:absolute;
	top: 0;
	left: 25px;
	background-image: radial-gradient(circle, #96a0a2 1.5px, transparent 1.5px);
	background-position: left top;
	background-repeat: repeat-y;
	background-size: 2px 6px;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.programGuide_schedule .mainScheduleTimeBlk{
    width: 50px;
    z-index: 1;
}
.programGuide_schedule .mainScheduleTimeImgBlk{}
.programGuide_schedule .mainScheduleTimeImgBlk img{}
.programGuide_schedule .mainScheduleTxtBlk{
    flex: 1;
}
.programGuide_schedule .mainScheduleTimeTxt{
    font-size: 24px;
    font-weight: bold;
}
.programGuide_schedule .mainScheduleTxtOutline{
    display: grid;
    gap: 10px;
    margin: 10px 0 20px;
    background-color: #E8F2D8;
    border-radius: 4px;
    padding: 15px 20px;
}
.programGuide_schedule ._parco .mainScheduleTxtOutline{
    background-color: #DDF0F3;
}
.programGuide_schedule ._day .mainScheduleTxtOutline{
    background-color: #DDF0F3;
}
.programGuide_schedule .mainScheduleBlk:last-child .mainScheduleTxtOutline{
    margin: 10px 0 0;
}
.programGuide_schedule .mainScheduleTxt{}
.programGuide_guide{
    position: relative;
    padding: 0 0 140px;
    background-color: #F5F9D4;
    z-index: 1;
}
.programGuide_guide::before{
	content:"";
	position:absolute;
	top: -90px;
	background-image: url(./images/programGuide_guideParts.webp);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	width: 100%;
	height: 160px;
	z-index: -1;
}
.programGuide_guide .topPartsImgBlk{
    position: absolute;
    top: -210px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 250px;
    z-index: -2;
}
.programGuide_guide .topPartsImgBlk img{}
.programGuide_guide .inner{}
.programGuide_guide .blk{}
.programGuide_guide .mainOutline{
    margin: 45px 0 0;
}
.programGuide_guide .mainHead{
    font-weight: bold;
}
.programGuide_guide .cmn_head1 span{
    color: var(--cocoruBg);
}
.programGuide_guide .mainBlk{
    margin: 45px 0 0;
    gap: 40px;
    justify-content: center;
}
.programGuide_guide .mainFlexBlk{
    width: calc(50% - 20px);
}
.programGuide_guide .cmn_table{
}
.programGuide_guide .mainFlexTitle{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 56px;
    font-size: 20px;
    background-color: var(--cocoruBg);
    color: #fff;
    font-weight: bold;
    border-radius: 16px 16px 0 0;
}
.programGuide_guide ._parco .mainFlexTitle{
    background-color: var(--parcoBg);
}
.programGuide_guide .cmn_table > dl {
    background-color: #fff;
    border-radius: 0 0 16px 16px;
    padding: 0 35px;
}
.programGuide_guide .cmn_table > dl > div {
    gap: 65px;
    border-bottom: 1px solid #CFCFCF;
    padding: 16px 0;
}
.programGuide_guide .cmn_table > dl > div:last-child {
	border-bottom: transparent;
}
.programGuide_guide .cmn_table > dl > div > * {}
.programGuide_guide .cmn_table > dl > div > dt {
    width: 65px;
    color: var(--cocoruBg);
}
.programGuide_guide ._parco .cmn_table > dl > div > dt{
    color: var(--parcoColor);
}
.programGuide_guide .cmn_table > dl > div > dd {}
.programGuide_guide .cmn_table > dl > div > dd .tableFlexBlk{}
.programGuide_guide .cmn_table > dl > div > dd .tableFlexBlk > div{}
.programGuide_guide .cmn_table > dl > div > dd .tableFlexBlk > div > p{}
.programGuide_guide .cmn_table > dl > div > dd a {}
.programGuide_guide .cmn_table > dl > div > dd a:not([href^="tel"]) {}
.programGuide_guide .cmn_table > dl > div > dd a[href^="tel"] {}
.programGuide_guide .flowOutline{
    margin: 110px 0 0;
}
.programGuide_guide .flowBlk{
    margin: 70px 0 0;
    justify-content: center;
    gap: 57px 33px;
}
.programGuide_guide .flowItemBlk{
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
    width: calc((100% - 66px) / 3);
    height: 230px;
    background-color: #fff;
    padding: 45px 42px 0;
    border-radius: 10px;
}
.programGuide_guide .flowSpan{
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50px;
    background-color: var(--mailBtnBg);
    color: #fff;
    font-size: 25px;
    font-weight: bold;
}
.programGuide_guide .flowItemBlk:nth-child(2) .flowSpan{
    background-color: #F9DA32;
}
.programGuide_guide .flowItemBlk:nth-child(3) .flowSpan{
    background-color: var(--cocoruBg);
}
.programGuide_guide .flowItemBlk:nth-child(4) .flowSpan{
    background-color: var(--parcoBg);
}
.programGuide_guide .flowItemBlk:nth-child(5) .flowSpan{
    background-color: var(--parcoColor);
}
.programGuide_guide .flowTitle{
    font-size: 20px;
    text-align: center;
    font-weight: bold;
}
.programGuide_guide .flowTxt{
    margin: 15px 0 0;
}
.programGuide_guide .flowLinkBlk{
    margin: 15px 0 0;
    width: 185px;
    height: 40px;
    font-size: 16px;
}
.programGuide_guide .flowLink{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 1024px) {
	.programGuide_outline {
    padding: 60px 0 80px;
    overflow: hidden;
}
	.programGuide_outline .inner {}
	.programGuide_outline .blk {}
	.programGuide_outline .linkFlexBlk{
    gap: 10px;
}
	.programGuide_outline .linkFlexItem{
    width: calc((100% - 20px) / 3);
}
	.programGuide_outline .linkFlex{
    font-size: 15px;
    padding: 0 0 4px;
}
	.programGuide_outline .linkFlexSpan{
    background-size: 17px;
    width: 23px;
    height: 22px;
}
	.programGuide_outline .linkFlexItem:nth-child(2) .linkFlexSpan{}
	.programGuide_outline .linkFlexItem:nth-child(3) .linkFlexSpan{}
	.programGuide_outline .readBlk{
    margin: 50px 0 0;
}
	.programGuide_outline .readTitle{
    font-size: 20px;
}
	.programGuide_outline .readTitleSpan{}
	.programGuide_outline .readText{
    margin: 20px 0 0;
}
	.programGuide_outline .mainBlk {
    gap: 50px;
    margin: 45px 0 0;
}
	.programGuide_outline .mainFlexBlk{
    gap: 45px;
    flex-flow: column;
}
	.programGuide_outline .mainFlexBlk._reverse{
    flex-flow: column-reverse;
    gap: 20px;
}
	.programGuide_outline .mainFlexImgBlk{
    width: 100%;
    /* max-width: 620px; */
}
	.programGuide_outline .mainFlexImgBlk > img{}
	.programGuide_outline .mainFlexPartsBlk{
    width: 160px;
    bottom: -25px;
    left: -10px;
}
	.programGuide_outline .mainFlexBlk:nth-child(2) .mainFlexPartsBlk{
    right: -20px;
    width: 90px;
}
	.programGuide_outline .mainFlexBlk:nth-child(3) .mainFlexPartsBlk{
    bottom: -35px;
    left: -55px;
    width: 150px;
}
	.programGuide_outline .mainFlexPartsBlk > img{}
	.programGuide_outline .mainFlexTxtBlk {}
	.programGuide_outline .mainFlexTitle {
    font-size: 20px;
}
	.programGuide_outline .mainFlexTxt {
    margin: 5px 0 0;
}
	.programGuide_outline .mainFlexPointBlk {
    margin: 15px 0 0;
}
	.programGuide_outline .mainFlexPoint {
    width: 105px;
    height: 40px;
}
	.programGuide_outline .mainFlexPoint._long{
    width: 150px;
}
	.programGuide_outline .mainFlexBlk:nth-child(2) .mainFlexPoint{}
	.programGuide_outline .mainFlexBlk:nth-child(3) .mainFlexPoint{}
	.programGuide_loopSlider{}
	.programGuide_loopSlider .mainBlk{}
	.programGuide_loopSlider .slick-track{
    gap: 15px;
}
	.programGuide_loopSlider .mainBlk img{
    width: 260px !important;
    max-height: 210px;
}
	.programGuide_schedule {
    padding: 80px 0 240px;
}
	.programGuide_schedule .inner {}
	.programGuide_schedule .blk {}
	.programGuide_schedule .headBlk {}
	.programGuide_schedule .head {}
	.programGuide_schedule .mainBlk {
    gap: 70px;
}
	.programGuide_schedule .mainOutline {}
	.programGuide_schedule .mainHeadBlk {}
	.programGuide_schedule .mainHead {
    font-size: 20px;
}
	.programGuide_schedule .mainHeadSpan {}
	.programGuide_schedule ._parco .mainHeadSpan {}
	.programGuide_schedule .mainFlexOutline{
    margin: 30px auto 0;
    padding: 50px 15px;
    max-width: 620px;
}
	.programGuide_schedule ._parco .mainFlexOutline{
    padding: 40px 15px;
}
	.programGuide_schedule ._day .mainFlexOutline{
    margin: 20px auto 0;
    padding: 40px 15px;
}
	.programGuide_schedule .mainFlexPartsBlk{
    bottom: -40px;
    right: -15px;
    width: 200px;
}
	.programGuide_schedule .mainFlexPartsBlk img{}
	.programGuide_schedule ._parco .mainFlexPartsBlk{
    bottom: -75px;
    left: -15px;
    width: 120px;
}
	.programGuide_schedule ._parco .mainFlexPartsBlk img{}
	.programGuide_schedule .mainFlexHead{
    font-size: 20px;
}
	.programGuide_schedule ._day .mainFlexHead{}
	.programGuide_schedule .mainFlexBlk{
    flex-flow: column;
    gap: 55px;
}
	.programGuide_schedule ._parco .mainFlexBlk,.programGuide_schedule ._day .mainFlexBlk {
    margin: 50px 0 0;
}
	.programGuide_schedule .mainItemBlk{
    width: 100%;
    padding: 40px 15px 30px;
}
	.programGuide_schedule .mainItemTitle{
    width: 190px;
    height: 45px;
    font-size: 16px;
}
	.programGuide_schedule .mainItemTitle._pmCourse{}
	.programGuide_schedule ._parco .mainItemTitle{}
	.programGuide_schedule ._day .mainItemTitle{}
	.programGuide_schedule ._parco .mainItemTitle._pmCourse{}
	.programGuide_schedule ._day .mainItemTitle._pmCourse{}
	.programGuide_schedule .mainItemOutline{}
	.programGuide_schedule .mainScheduleBlk{}
	.programGuide_schedule .mainScheduleBlk::before{
    left: 21px;
}
	.programGuide_schedule .mainScheduleTimeBlk{
    width: 45px;
}
	.programGuide_schedule .mainScheduleTimeImgBlk{}
	.programGuide_schedule .mainScheduleTimeImgBlk img{}
	.programGuide_schedule .mainScheduleTxtBlk{}
	.programGuide_schedule .mainScheduleTimeTxt{
    font-size: 22px;
}
	.programGuide_schedule .mainScheduleTxtOutline{
    gap: 5px;
    margin: 5px 0 10px;
    padding: 10px 10px;
}
	.programGuide_schedule ._parco .mainScheduleTxtOutline{}
	.programGuide_schedule ._day .mainScheduleTxtOutline{}
	.programGuide_schedule .mainScheduleBlk:last-child .mainScheduleTxtOutline{}
	.programGuide_schedule .mainScheduleTxt{}
	.programGuide_guide{
    padding: 0 0 70px;
}
	.programGuide_guide::before{
    top: -55px;
    height: 55px;
}
	.programGuide_guide .topPartsImgBlk{
    top: -155px;
    width: 200px;
}
	.programGuide_guide .topPartsImgBlk img{}
	.programGuide_guide .inner{}
	.programGuide_guide .blk{}
	.programGuide_guide .mainOutline{
    margin: 30px 0 0;
}
	.programGuide_guide .mainHead{}
	.programGuide_guide .cmn_head1 span{}
	.programGuide_guide .mainBlk{
    flex-flow: column;
    gap: 20px;
    margin: 30px auto 0;
    max-width: 620px;
}
	.programGuide_guide .mainFlexBlk{
    width: 100%;
}
	.programGuide_guide .cmn_table{}
	.programGuide_guide .mainFlexTitle{
    height: 50px;
    font-size: 17px;
}
	.programGuide_guide ._parco .mainFlexTitle{}
	.programGuide_guide .cmn_table > dl {
    padding: 0 15px;
}
	.programGuide_guide .cmn_table > dl > div {
    flex-flow: column;
    gap: 5px;
}
	.programGuide_guide .cmn_table > dl > div:last-child {}
	.programGuide_guide .cmn_table > dl > div > * {}
	.programGuide_guide .cmn_table > dl > div > dt {}
	.programGuide_guide ._parco .cmn_table > dl > div > dt{}
	.programGuide_guide .cmn_table > dl > div > dd {}
	.programGuide_guide .cmn_table > dl > div > dd .tableFlexBlk{}
	.programGuide_guide .cmn_table > dl > div > dd .tableFlexBlk > div{}
	.programGuide_guide .cmn_table > dl > div > dd .tableFlexBlk > div > p{}
	.programGuide_guide .cmn_table > dl > div > dd a {}
	.programGuide_guide .cmn_table > dl > div > dd a:not([href^="tel"]) {}
	.programGuide_guide .cmn_table > dl > div > dd a[href^="tel"] {}
	.programGuide_guide .flowOutline{
    margin: 60px 0 0;
}
	.programGuide_guide .flowBlk{
    flex-flow: column;
    gap: 40px;
    margin: 50px 0 0;
}
	.programGuide_guide .flowItemBlk{
    width: 100%;
    max-width: 620px;
    height: auto;
    padding: 35px 15px 25px;
    margin: 0 auto;
}
	.programGuide_guide .flowSpan{
    top: -20px;
    width: 45px;
    height: 45px;
    font-size: 22px;
}
	.programGuide_guide .flowItemBlk:nth-child(2) .flowSpan{}
	.programGuide_guide .flowItemBlk:nth-child(3) .flowSpan{}
	.programGuide_guide .flowItemBlk:nth-child(4) .flowSpan{}
	.programGuide_guide .flowItemBlk:nth-child(5) .flowSpan{}
	.programGuide_guide .flowTitle{
    font-size: 18px;
}
	.programGuide_guide .flowTxt{
    margin: 7px 0 0;
}
	.programGuide_guide .flowLinkBlk{
    margin: 7px 0 0;
    width: 170px;
    font-size: 15px;
}
	.programGuide_guide .flowLink{}
}
/*
Recruit
====================================*/
.recruit_top {
	height: 600px;
	background-image: url(./images/dummy.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.recruit_top .inner {
	height: 100%;
}
.recruit_top .blk {
	height: 100%;
}
.recruit_top .mainBlk {
	height: 100%;
	display: flex;
	align-items: center;
}
.recruit_top .mainTitle {
	font-weight: 600;
	font-size: 50px;
	line-height: 80px;
}
.recruit_message {
    position: relative;
    padding: 100px 0 85px;
}
.recruit_message .inner {}
.recruit_message .blk {}
.recruit_message .headBlk {}
.recruit_message .head {
    color: var(--parcoBg);
    line-height: 50px;
}
.recruit_message .mainBlk {
	margin: 55px auto 0;
	max-width: 600px;
}
.recruit_message .mainImgBlk {
    position: absolute;
    left: 0;
    bottom: 85px;
    width: 352px;
    z-index: -1;
}
.recruit_message .mainImgBlk::before{
	content:"";
	position: absolute;
	top: -168px;
	left: 0;
	background-image: url(./images/recruit_message01_parts.webp);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 182px;
	height: 226px;
	z-index: 0;
}
.recruit_message .mainImgBlk._right{
    bottom: initial;
    left: initial;
    top: 60px;
    right: 0;
}
.recruit_message .mainImgBlk._right::before{
	top: initial;
	left: initial;
	bottom: -153px;
	right: 0;
	background-image: url(./images/recruit_message02_parts.webp);
	width: 170px;
	height: 242px;
	z-index: -2;
}
.recruit_message .mainImgBlk img {
	width: 100%;
}
.recruit_message .mainImgBlk._right img{}
.recruit_message .mainTextBlk {
}
.recruit_message .mainTextHead {}
.recruit_message .mainTextDesc {}
.recruit_message .mainTextName {
	display: flex;
	align-items: center;
	justify-content: end;
	font-size: 18px;
	margin: 20px auto 0;
	font-weight: 600;
}
.recruit_message .mainTextName span {
	font-size: 14px;
	margin: 0 10px 0 0;
}
.recruit_statue {
	position: relative;
	background-color: #DDF0F3;
	background-image: repeating-linear-gradient(115deg, #e6f3f5, #e6f3f5 6px, transparent 6px, transparent 15px);
	padding: 80px 0 100px;
}
.recruit_statue .mainPartsImgBlk {
	position: absolute;
	top: -85px;
	right: 140px;
	width: 290px;
	height: 150px;
}
.recruit_statue .inner {}
.recruit_statue .blk {
    display: grid;
    gap: 60px;
}
.recruit_statue .headBlk {}
.recruit_statue .head {}
.recruit_statue .head span{
    color: var(--parcoBg);
}
.recruit_statue .topBlk {}
.recruit_statue .topMainBlk{
    margin: 25px 0 0;
    gap: 40px;
    justify-content: center;
    align-items: center;
}
.recruit_statue .topMainItem {
    width: calc((100% - 80px) / 3);
    height: 100px;
    background: #fff;
    border-radius: 10px;
}
.recruit_statue .topMainDesc{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 20px;
    color: var(--parcoColor);
    font-weight: bold;
    text-align: center;
}
.recruit_statue .bottomBlk{}
.recruit_statue .bottomMainBlk{
    margin: 25px 0 0;
    gap: 40px;
}
.recruit_statue .bottomMainItem{
    justify-content: center;
    gap: 20px;
    align-items: center;
    width: calc((100% - 40px) / 2);
    height: 215px;
    background-color: #fff;
    border-radius: 10px;
    padding: 0 28px;
}
.recruit_statue .mainImgBlk{
    width: 135px;
}
.recruit_statue .mainImgBlk img{}
.recruit_statue .bottomMainImgBlk{
    flex: 1;
}
.recruit_statue .bottomMainTitle{
    font-size: 22px;
    font-weight: bold;
    color: var(--parcoColor);
}
.recruit_statue .bottomMainTxt{
    margin: 15px 0 0;
    line-height: 25px;
    text-align: start;
}
.recruit_interview{
    padding: 90px 0 100px;
}
.recruit_interview .inner{}
.recruit_interview .blk{}
.recruit_interview .readBlk{
    margin: 25px 0 0;
}
.recruit_interview .readTxt{
    font-size: 18px;
    text-align: center;
}
.recruit_interview .mainBlk{
    display: grid;
    gap: 40px;
    margin: 45px 0 0;
}
.recruit_interview .mainItem{
    gap: 60px;
    background: #FBF7EB;
    padding: 65px 80px 60px;
    border-radius: 16px;
}
.recruit_interview .mainImgBlk{
    display: flex;
    flex-flow: column;
    align-items: center;
    flex: 1;
}
.recruit_interview .mainImgBlk figure{
    width: 250px;
}
.recruit_interview .mainImgBlk figure img{}
.recruit_interview .mainImgTxtBlk{
    position: relative;
    margin: -20px 0 0;
    width: 200px;
    height: 70px;
    background-color: var(--cocoruBg);
    border-radius: 100px;
}
.recruit_interview .mainItem:nth-of-type(2) .mainImgTxtBlk{
    background: var(--parcoBg);
}
.recruit_interview .mainImgTxt{
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}
.recruit_interview .mainImgTxtSpan{
	display: inline-block;
	width: 100%;
	font-size: 16px;
}
.recruit_interview .mainTxtBlk{
    display: grid;
    gap: 20px;
    width: 630px;
}
.recruit_interview .mainTxtItem{}
.recruit_interview .mainTxtQuestion{
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    font-size: 20px;
    font-weight: bold;
}
.recruit_interview .mainTxtQuestion span{
    width: 36px;
    height: 36px;
    border-radius: 50px;
    background: var(--mailBtnBg);
    color: #fff;
    text-align: center;
    padding: 2px 0 0;
}
.recruit_interview .mainTxtAnswer{
    margin: 10px 0 0;
    line-height: 25px;
}
.recruit_requirements{
	position: relative;
	padding: 80px 0 90px;
	background-color: var(--parcoBg);
	background-image: linear-gradient(90deg, #1ebee8 1px, transparent 1px), linear-gradient(#1ebee8 1px, transparent 1px);
	background-position: 10px 10px;
	background-size: 21px 21px;
}
.recruit_requirements .mainPartsImgBlk{
    position: absolute;
    top: -145px;
    right: 50px;
    width: 300px;
}
.recruit_requirements .inner {}
.recruit_requirements .blk {}
.recruit_requirements .headBlk {}
.recruit_requirements .head {
    color: #fff;
}
.recruit_requirements .head span{
    color: #fff;
}
.recruit_requirements .readBlk{
    margin: 40px 0 0;
}
.recruit_requirements .readTxt{
    font-size: 18px;
    color: #fff;
    text-align: center;
}
.recruit_requirements .mainBlk {
	display: grid;
	gap: 20px;
	margin: 45px 0 0;
	width: 100%;
}
.recruit_requirements .mainItemBlk{
    background-color: #fff;
    border-radius: 10px;
}
.recruit_requirements .mainTableNameBlk{
    height: 90px;
}
.recruit_requirements .mainTableName{
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
    padding: 0 60px 0 40px;
    font-size: 22px;
    font-weight: bold;
}
.recruit_requirements .mainTableNameSpan{
    padding: 3px 18px;
    font-size: 18px;
    background-color: var(--cocoruBg);
    border-radius: 50px;
    color: #fff;
}
.recruit_requirements .mainTableNameSpan._parco{
    background-color: var(--parcoBg);
}
.recruit_requirements .mainTableNameBtn{
	position:absolute;
	right: 40px;
	transition: all .4s;
}
.recruit_requirements .mainTableNameBtn:before, .recruit_requirements .mainTableNameBtn:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline-block;
	background: #676F71;
}
.recruit_requirements .mainTableNameBtn:before {
	height: 3px;
	width: 20px;
}
.recruit_requirements .mainTableNameBtn:after {
	width: 3px;
	height: 20px;
}
.recruit_requirements .mainTableName._open .mainTableNameBtn {
	transform: translate(0%, -50%) rotate(135deg);
}
.recruit_requirements .cmn_table{
    max-width: 940px;
    margin: 0 auto;
    padding: 0 0 60px;
}
.recruit_requirements .linkBlk {
	margin: 50px 0 0;
	text-align: center;
}
.recruit_requirements .link{
    width: 280px;
    height: 60px;
}
@media screen and (max-width: 1024px) {
	.recruit_message {
	    overflow: hidden;
	    padding: 70px 0 420px;
	}
	.recruit_message .inner {}
	.recruit_message .blk {}
	.recruit_message .headBlk {}
	.recruit_message .head {
    line-height: 1.6;
}
	.recruit_message .mainBlk {
    margin: 25px auto 0;
}
	.recruit_message .mainImgBlk {
    bottom: 70px;
    width: 200px;
}
	.recruit_message .mainImgBlk::before{
    top: -155px;
    width: 120px;
}
	.recruit_message .mainImgBlk._right{
    top: initial;
    bottom: 195px;
    width: 180px;
}
	.recruit_message .mainImgBlk._right::before{
    width: 120px;
}
	.recruit_message .mainImgBlk img {}
	.recruit_message .mainImgBlk._right img{}
	.recruit_message .mainTextBlk {}
	.recruit_message .mainTextHead {}
	.recruit_message .mainTextDesc {}
	.recruit_message .mainTextName {}
	.recruit_message .mainTextName span {}
	.recruit_statue {
    padding: 80px 0 70px;
}
	.recruit_statue .mainPartsImgBlk {
    width: 200px;
    top: -50px;
    right: 0;
}
	.recruit_statue .inner {}
	.recruit_statue .blk {
    gap: 50px;
}
	.recruit_statue .headBlk {}
	.recruit_statue .head {}
	.recruit_statue .head span{}
	.recruit_statue .topBlk {}
	.recruit_statue .topMainBlk{
    flex-flow: column;
    gap: 15px;
    margin: 25px 0 0;
}
	.recruit_statue .topMainItem {
    width: 100%;
    max-width: 300px;
    height: 70px;
}
	.recruit_statue .topMainDesc{
    font-size: 17px;
    line-height: 1.6;
}
	.recruit_statue .bottomBlk{}
	.recruit_statue .bottomMainBlk{
    flex-flow: column;
    gap: 15px;
    max-width: 630px;
    margin: 25px auto 0;
}
	.recruit_statue .bottomMainItem{
    gap: 15px;
    width: 100%;
    padding: 20px 15px;
    height: auto;
}
	.recruit_statue .mainImgBlk{
    width: 90px;
}
	.recruit_statue .mainImgBlk img{}
	.recruit_statue .bottomMainImgBlk{}
	.recruit_statue .bottomMainTitle{
    font-size: 18px;
}
	.recruit_statue .bottomMainTxt{
    margin: 5px 0 0;
    line-height: 1.6;
}
	.recruit_interview{
    padding: 60px 0 80px;
}
	.recruit_interview .inner{}
	.recruit_interview .blk{}
	.recruit_interview .readBlk{}
	.recruit_interview .readTxt{
    font-size: 16px;
}
	.recruit_interview .mainBlk{
    gap: 30px;
}
	.recruit_interview .mainItem{
    flex-flow: column;
    gap: 30px;
    align-items: center;
    padding: 30px 15px;
}
	.recruit_interview .mainImgBlk{
    flex: initial;
}
	.recruit_interview .mainImgBlk figure{
}
	.recruit_interview .mainImgBlk figure img{}
	.recruit_interview .mainImgTxtBlk{
    height: 60px;
}
	.recruit_interview .mainItem:nth-of-type(2) .mainImgTxtBlk{}
	.recruit_interview .mainImgTxt{
    font-size: 18px;
}
	.recruit_interview .mainImgTxtSpan{
    font-size: 14px;
}
	.recruit_interview .mainTxtBlk{
    gap: 20px;
    width: 100%;
}
	.recruit_interview .mainTxtItem{
    flex-flow: column;
    gap: 10px;
}
	.recruit_interview .mainTxtQuestion{
    gap: 7px;
    font-size: 17px;
    line-height: 23px;
}
	.recruit_interview .mainTxtQuestion	span{
    width: 30px;
    height: 30px;
    min-width: 30px;
    line-height: 25px;
}
	.recruit_interview .mainTxtAnswer{
    margin: initial;
    line-height: 1.6;
}
	.recruit_requirements{
    padding: 90px 0 60px;
}
	.recruit_requirements .mainPartsImgBlk{
    width: 180px;
    top: -100px;
    right: 0;
}
	.recruit_requirements .inner {}
	.recruit_requirements .blk {}
	.recruit_requirements .headBlk {}
	.recruit_requirements .head {}
	.recruit_requirements .head span{}
	.recruit_requirements .readBlk{
    margin: 30px 0 0;
}
	.recruit_requirements .readTxt{
    font-size: 16px;
}
	.recruit_requirements .mainBlk {
    margin: 40px 0 0;
    gap: 15px;
}
	.recruit_requirements .mainItemBlk{}
	.recruit_requirements .mainTableNameBlk{
    height: 65px;
}
	.recruit_requirements .mainTableName{
    gap: 10px;
    padding: 0 45px 0 15px;
    font-size: 17px;
}
	.recruit_requirements .mainTableNameSpan{
    padding: 3px 14px;
    font-size: 15px;
}
	.recruit_requirements .mainTableNameSpan._parco{}
	.recruit_requirements .mainTableNameBtn{
    right: 30px;
}
	.recruit_requirements .mainTableNameBtn:before, .recruit_requirements .mainTableNameBtn:after {}
	.recruit_requirements .mainTableNameBtn:before {
}
	.recruit_requirements .mainTableNameBtn:after {}
	.recruit_requirements .mainTableName._open .mainTableNameBtn {}
	.recruit_requirements .cmn_table{
    padding: 0 0 40px;
}
	.recruit_requirements .linkBlk {
    margin: 35px 0 0;
}
	.recruit_requirements .link{}
}
/*
Information
====================================*/
.info_category {
	padding: 90px 0 0px;
}
.info_category .inner {max-width: 1140px;}
.info_category .blk {}
.info_category .mainBlk {}
.info_category .mainBlk ul {
	justify-content: center;
	gap: 15px;
}
.info_category .mainBlk ul li {
	width: 200px;
	height: 50px;
}
.info_category .mainBlk ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	line-height: 38px;
	text-align: center;
	color: #fff;
	font-size: 20px;
	background: #E97272;
	border-radius: 8px;
	font-weight: bold;
}
.info_category .mainBlk ul li a.cocoruCat{
    background: var(--cocoruBg);
}
.info_category .mainBlk ul li a.parcoCat{
    background: var(--parcoBg);
}
.info_category .mainBlk ul li a.infoCat{
    background: #2B7BCB;
}
.info_category .mainBlk ul li a.recruitCat{
    background: var(--mailBtnBg);
}
@media screen and (min-width: 1025px) {
	.info_category .mainBlk ul li a:hover {
		opacity: 0.6;
		color: white;
	}
}
.info_category .mainBlk ul li.current-cat a {
	color: white;
}
.info_list {
	padding: 80px 0 100px;
}
.info_list .inner {
    max-width: 1130px;
}
.info_list .blk {}
.info_list .mainBlk {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 45px;
}
.info_list .mainBlk article {
	width: calc((100% - 90px ) / 3 );
}
.info_list .mainBlk article:last-child {
}
.info_list .mainBlk article a {
	/* padding: 25px 0; */
	flex-flow: column;
	align-items: center;
	gap: 15px;
}
.info_list .mainImgBlk {
	width: 100%;
}
.info_list .mainImgBlk img {
	width: 100%;
	height: 215px;
	border-radius: 6px;
}
.info_list .mainTextBlk {
	flex: 1;
	display: flex;
	flex-flow: wrap;
	align-items: center;
}
.info_list .mainTextDate {
	font-size: 18px;
}
.info_list .mainTextCat {
	margin: 0 0 0 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 140px;
	height: 28px;
	font-size: 14px;
	font-weight: bold;
	padding: 1px 10px;
	background: var(--mailBtnBg);
	color: white;
	border-radius: 4px;
}
.info_list .mainTextCat.cocoruCat, .info_detail .mainCat.cocoruCat{
    background: var(--cocoruBg);
}
.info_list .mainTextCat.parcoCat, .info_detail .mainCat.parcoCat{
	background: var(--parcoBg);
}
.info_list .mainTextCat.infoCat, .info_detail .mainCat.infoCat{
	background: #2B7BCB;
}
.info_list .mainTextCat.recruitCat, .info_detail .mainCat.recruiCat{
    background: var(--mailBtnBg);
}
.info_list .mainTextTitle {
	font-size: 18px;
	line-height: 23px;
	font-weight: bold;
	width: 100%;
	margin: 10px 0 0;
}
.info_list .paginationBlk {}
.info_detail {
	padding: 100px 0px 95px;
	background-color: #F8F8F8;
}
.info_detail .inner {
    max-width: 1080px;
}
.info_detail .blk {
    padding: 60px 100px 65px;
    background-color: #fff;
    border-radius: 16px;
}
.info_detail .mainBlk {}
.info_detail .mainBlk article {}
.info_detail .mainDate {
	display: inline-flex;
	font-size: 20px;
}
.info_detail .mainCat {
	margin: 0 0 0 10px;
	display: inline-flex;
	font-size: 14px;
	padding: 5px 20px;
	background: var(--mailBtnBg);
	color: white;
	border-radius: 4px;
}
.info_detail .mainHead {
	font-size: 28px;
	line-height: 40px;
	margin: 15px 0 0;
}
.info_detail .mainContentBlk {
	margin: 40px 0 0;
}
.info_detail .mainContentBlk > *:first-child,
.info_detail .mainContentBlk > *:first-child *:first-child {
	margin-top: 0;
}
.info_detail .mainContentBlk h2 {
	/* margin-bottom: calc(-1em + .7em)!important; */
	padding-bottom: .3em;
	font-size: 1.125rem;
	border-bottom: 1px solid var(--mainColor);
}
.info_detail .mainContentBlk p {}
.info_detail .mainContentBlk img {
	display: table;
	margin: auto!important;
}
.info_detail .mainContentBlk :not(ul):not(li) {
	margin: calc(1rem* 1.6) 0 0;
}
.info_detail .mainContentBlk a {
	color: #007BE6;
	text-decoration: underline;
}
.info_detail .paginationBlk {}
@media screen and (max-width: 1024px) {
	.info_category {
		padding: 60px 0 0px;
	}
	.info_category .inner {}
	.info_category .blk {}
	.info_category .mainBlk {
		max-width: 400px;
		margin: auto;
	}
	.info_category .mainBlk ul {
		gap: 8px 5px;
		justify-content: center;
	}
	.info_category .mainBlk ul li {
		width: calc((100% - (5px * 2)) / 3);
		height: 40px;
	}
	.info_category .mainBlk ul li a {
		display: block;
		line-height: 40px;
		text-align: center;
		font-size: 13px;
	}
	.info_list {
		padding: 50px 0 90px;
	}
	.info_list .inner {}
	.info_list .blk {}
	.info_list .mainBlk {
    gap: 20px 15px;
    gap: 25px;
    justify-content: start;
}
	.info_list .mainBlk article {
	width: calc((100% - 15px) / 2);
	width: 100%;
	}
	.info_list .mainBlk article:last-child {
	}
	.info_list .mainBlk article a {
		align-items: center;
		gap: initial;
	}
	.info_list .mainImgBlk {
		width: 100%;
	}
	.info_list .mainImgBlk img {
		width: 100%;
		height: auto;
		aspect-ratio: 16 /10;
	}
	.info_list .mainTextBlk {
		flex: unset;
		width: 100%;
		margin: 10px 0 0;
	}
	.info_list .mainTextDate {
		font-size: 14px;
		margin: 5px 10px 0 0;
	}
	.info_list .mainTextCat {
		margin: 5px 0 0;
		font-size: 13px;
		width: 120px;
		height: 25px;
	}
	.info_list .mainTextTitle {
		font-size: 16px;
		line-height: 20px;
		width: 100%;
		margin: 10px 0 0;
	}
	.info_list .paginationBlk {}
	.info_detail {
		padding: 60px 0px 90px;
	}
	.info_detail .inner {}
	.info_detail .blk {
    padding: 40px 20px;
}
	.info_detail .mainBlk {}
	.info_detail .mainBlk article {}
	.info_detail .mainDate {
		display: inline-flex;
		font-size: 14px;
	}
	.info_detail .mainCat {
		margin: 0 0 0 10px;
		display: inline-flex;
		font-size: 14px;
		padding: 1px 10px;
		background: var(--mailBtnBg);
		color: white;
	}
	.info_detail .mainHead {
		font-size: 20px;
		line-height: 28px;
		margin: 25px 0 0;
	}
	.info_detail .mainContentBlk {
		margin: 30px 0 0;
	}
	.info_detail .mainContentBlk > *:first-child,
	.info_detail .mainContentBlk > *:first-child *:first-child {}
	.info_detail .mainContentBlk h2 {
		font-size: 1rem;
	}
	.info_detail .mainContentBlk :not(ul):not(li) {
		margin: calc(0.875rem* 1.6) 0 0;
	}
	.info_detail .mainContentBlk a {}
	.info_detail .paginationBlk {
		max-width: 360px;
		margin: auto;
	}
}
/*
Contact
====================================*/
.contact_outline {
    padding: 100px 0 0;
}
.contact_outline .inner {}
.contact_outline .blk {}
.contact_outline .mainBlk {}
.contact_outline .mainDesc {
	font-size: 24px;
	line-height: 38px;
	text-align: center;
}
.contact_outline .attentionBlk{
    position: relative;
    margin: 75px auto 0;
    max-width: 680px;
    padding: 40px 20px 35px;
    background-color: #F8F8F8;
    border-radius: 10px;
}
.contact_outline .attentionBlk::before{
	content:"";
	position:absolute;
	top: -30px;
	left: 50%;
	transform: translate(-50%, 0);
	width: 80px;
	height: 60px;
	background-image: url(./images/contact_outline_Parts01.webp);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.contact_outline .attentionTitle{
    display: table;
    font-size: 20px;
    line-height: 40px;
    font-weight: bold;
    text-align: center;
    margin: 0 auto;
    padding: 0 0 8px;
    background-image: url(./images/contact_outline_border.webp);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom center;
}
.contact_outline .attentionTxt{
    margin: 25px 0 0;
    text-align: center;
}
.contact_tel {85px: 0 0;85px: 0 0;85px: 0;85px: 0;padding: 85px 0 0;}
.contact_tel .inner {}
.contact_tel .blk {}
.contact_tel .headBlk {}
.contact_tel .head {}
.contact_tel .mainBlk {
	margin: 45px 0 0;
	display: flex;
	gap: 40px;
	justify-content: center;
	align-items: center;
}
.contact_tel .mainLinkBlk{
    width: 450px;
    padding: 20px 20px 25px;
    background: #F5F9D4;
    border-radius: 10px;
}
.contact_tel .mainLinkBlk._parco{
    background: #DDF0F3;
}
.contact_tel .mainFlexLinkTxt{
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}
.contact_tel .mainLinkItem{
}
.contact_tel .mainLink{
    display: flex;
    flex-flow: column;
    text-align: center;
}
.contact_tel .mainLink span._num{
    font-size: 46px;
    line-height: 55px;
    font-weight: bold;
    color: var(--cocoruBg);
}
.contact_tel .mainLinkBlk._parco span._num{
    color: var(--parcoBg);
}
.contact_tel .mainLink span._time{
    display: inline-block;
    width: 100%;
    margin: 5px 0 0;
    font-weight: bold;
}
.contact_form {
	padding: 120px 0 100px;
}
.contact_form .inner {
    max-width: 1080px;
}
.contact_form .blk {}
.contact_form .headBlk {}
.contact_form .head {}
.contact_form .mainBlk {
	margin: 40px 0 0;
	background: #F8F8F8;
	padding: 70px 70px 60px;
	border-radius: 10px;
}
@media screen and (max-width: 1024px) {
	.contact_outline {
    padding: 60px 0 0;
}
	.contact_outline .inner {}
	.contact_outline .blk {}
	.contact_outline .mainBlk {}
	.contact_outline .mainDesc {
		font-size: 17px;
		line-height: 29px;
		text-align: center;
	}
	.contact_outline .attentionBlk{
    margin: 60px auto 0;
    padding: 40px 15px 30px;
}
	.contact_outline .attentionBlk::before{
}
	.contact_outline .attentionTitle{
    font-size: 18px;
    line-height: 36px;
    padding: 0 0 5px;
}
	.contact_outline .attentionTxt{
    margin: 20px 0 0;
}
	.contact_tel {
    padding: 60px 0 0;
}
	.contact_tel .inner {}
	.contact_tel .blk {}
	.contact_tel .headBlk {}
	.contact_tel .head {}
	.contact_tel .mainBlk {
		margin: 20px 0 0;
		flex-flow: column;
		gap: 15px;
	}
	.contact_tel .mainLinkBlk{
    width: 100%;
    max-width: 450px;
    padding: 20px;
}
	.contact_tel .mainLinkBlk._parco{}
	.contact_tel .mainFlexLinkTxt{
    font-size: 18px;
}
	.contact_tel .mainLinkItem{}
	.contact_tel .mainLink{}
	.contact_tel .mainLink span._num{
    font-size: 38px;
    line-height: 48px;
}
	.contact_tel .mainLinkBlk._parco span._num{}
	.contact_tel .mainLink span._time{}
	.contact_tel .mainTime {
		margin: 10px 0 0;
	}
	.contact_form {
		padding: 60px 0 50px;
	}
	.contact_form .inner {}
	.contact_form .blk {}
	.contact_form .headBlk {}
	.contact_form .head {}
	.contact_form .mainBlk {
		margin: 20px auto 0;
		padding: 30px 15px;
		max-width: 680px;
	}
	.contact_form .wpcf7 {
    /* max-width: 600px; */
    /* margin: 0 auto; */
}
}
/*テスト*/