@charset "utf-8";

/*================================================================
# 全ページ共通スタイル
================================================================ */
/* header
------------------------------------------------------ */
.header {
	width: 100%;
	height: 56px;
	margin: 0 auto;
	padding: 0 12px;
	display: flex;
	align-items: center;
}

.header .wrap {
	width: 100%;
}

.header .container {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
}

.header .left h1 {
	margin: 0;
	padding: 0;
}

.header .left h1 a {
	display: block;
}

.header .left h1 a img {
	width: auto;
	height: 32px;
	object-fit: contain;
}

.header .right {
	display: none;
}

.gnav_pc {
	display: none;
}

.nav-toggle {
	width: 56px;
	height: 56px;
	cursor: pointer;
	background-color: var(--primary);
	position: fixed;
	top: 0;
	right: 0;
	z-index: 9999;
}

.nav-toggle:before {
	width: 100%;
	height: 1em;
	margin: auto;
	position: absolute;
	content: "MENU";
	right: 0;
	bottom: 12px;
	left: 0;
	font-size: 10px;
	color: var(--white);
	text-align: center;
	letter-spacing: 0;
}

.nav-toggle span {
	width: 50%;
	height: 2px;
	background-color: var(--white);
	position: absolute;
	left: 13px;
	display: inline-block;
	transition: all 0.4s;
}

.nav-toggle span:nth-of-type(1) {
	top: 14px;
}

.nav-toggle span:nth-of-type(2) {
	top: 22px;
}

.nav-toggle span:nth-of-type(3) {
	top: 30px;
}

.nav-toggle.active:before {
	content: "CLOSE";
}

.nav-toggle.active span:nth-of-type(1) {
	width: 50%;
	top: 14px;
	left: 13px;
	transform: translateY(6px) rotate(-45deg);
}

.nav-toggle.active span:nth-of-type(2) {
	opacity: 0;
}

.nav-toggle.active span:nth-of-type(3) {
	width: 50%;
	top: 26px;
	left: 13px;
	transform: translateY(-6px) rotate(45deg);
}

/* gnav_sp
------------------------------------------------------ */
.gnav_sp {
	width: 100%;
	height: 100dvh;
	opacity: 0;
	background: var(--white);
	position: fixed;
	top: 0;
	right: -100%;
	bottom: 0;
	overflow-y: scroll;
	z-index: 9;
	transition: all 0.5s;
	-webkit-overflow-scrolling: touch;
}

.gnav_sp.panelactive {
	opacity: 1;
	right: 0;
	z-index: 999;
}

.gnav_sp.panelactive .gnav-list_sp {
	width: 100%;
	height: 100%;
	padding: 56px 0;
	position: fixed;
	overflow: auto;
	z-index: 999;
	-webkit-overflow-scrolling: touch;
}

.gnav_sp .primary li a {
	width: 100%;
	padding: 16px 40px 18px;
	border-bottom: 1px solid var(--gray01);
	position: relative;
	display: block;
	font-weight: 700;
	transition: 0.3s;
}

.gnav_sp .primary li a span {
	display: block;
	font-size: 14px;
	color: var(--primary);
	letter-spacing: 3px;
}

.gnav_sp .primary li a::after {
	width: 0;
	height: 3px;
	margin: auto;
	background-color: var(--primary);
	position: absolute;
	content: "";
	right: 0;
	bottom: -8px;
	left: 0;
	transition: 0.3s;
}

.gnav_sp .secondary {
	margin: 32px 0 0 -8px;
	padding: 0 16px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.gnav_sp .secondary li {
	width: calc(100% / 3 - 8px);
	margin: 0 0 0 8px;
	padding: 0;
	font-size: 12px;
	font-weight: 700;
	line-height: 20px;
}

.gnav_sp .secondary .li_nursery {
	width: calc(100% / 2 - 8px);
	margin: 8px 0 0 8px;
}

.gnav_sp .secondary .li_corporation {
	width: calc(100% / 2 - 8px);
	margin: 16px 0 0 8px;
}

.gnav_sp .secondary .li_recruit {
	width: calc(100% / 2 - 8px);
	margin: 16px 0 0 8px;
}

.gnav_sp .secondary li a {
	padding: 10px 0 12px;
	border-radius: 9999px;
	background-color: var(--bg02);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	line-height: 1;
	text-align: center;
}

.gnav_sp .secondary .li_nursery a {
	background-color: var(--tertiary);
	color: var(--white);
}

.gnav_sp .secondary .li_corporation a {
	background-color: var(--gray01);
}

.gnav_sp .secondary .li_recruit a {
	background-color: var(--page-title);
	color: var(--primary);
}

.gnav_sp .secondary li a span {
	height: 20px;
	padding: 0 0 0 26px;
	position: relative;
	display: flex;
	align-items: center;
}

.gnav_sp .secondary li a span:before {
	width: 20px;
	height: 20px;
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	left: 0;
}

.gnav_sp .secondary .li_news a span:before {
	background: url("../img/icon_news.png") no-repeat center center / 20px auto;
}

.gnav_sp .secondary .li_info a span:before {
	background: url("../img/icon_info.png") no-repeat center center / 20px auto;
}

.gnav_sp .secondary .li_access a span:before {
	background: url("../img/icon_access.png") no-repeat center center / 20px auto;
}

.gnav_sp .secondary .li_recruit a span:before {
	background: url("../img/icon_recruit.png") no-repeat center center / 20px auto;
}

.gnav_sp .secondary .li_corporation a span:before {
	background: url("../img/icon_corporation.png") no-repeat center center / 20px auto;
}

.gnav_sp .secondary .li_nursery a span:before {
	background: url("../img/icon_nursery.png") no-repeat center center / 20px auto;
}

.gnav_sp .sns-list {
	margin: 40px 0 0 -8px;
	padding: 0 16px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.gnav_sp .sns-list li img {
	width: 32px;
}

.gnav-footer_sp {
	margin: 40px 0 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	font-size: 14px;
	text-align: center;
}

.gnav-footer_sp h1 {
	margin: auto;
}

.gnav-footer_sp h1 a {
	display: block;
}

.gnav-footer_sp h1 img {
	width: 240px;
	height: 64px;
	object-fit: contain;
}

.gnav-footer_sp .address {
	width: 100%;
	margin: 16px 0 0;
}

.gnav-footer_sp .tel {
	width: 220px;
	margin: 16px auto 0;
}

.gnav-footer_sp .contact {
	width: 100%;
	margin: 16px auto 0;
}

.gnav-footer_sp .contact a {
	width: 240px;
	margin: auto;
	display: block;
	text-align: center;
}

.gnav-footer_sp .contact img {
	width: 240px;
}

.gnav-footer_sp .copyright {
	width: 100%;
	margin: 40px 0 0;
	opacity: 0.7;
	font-size: 10px;
}

/* ページトップ
------------------------------------------------------ */
.scroll-to-top {
	width: 48px;
	height: 48px;
	cursor: pointer;
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 9;
}

.scroll-to-top a {
	width: 48px;
	height: 48px;
	border-radius: 9999px;
	background-color: var(--primary);
	display: flex;
	justify-content: center;
	align-items: center;
}

.scroll-to-top a img {
	width: 16px;
	display: block;
}

/* フッター
------------------------------------------------------ */
.footer {
	padding: 0 0 64px;
	background-color: var(--footer);
	font-weight: 700;
}

.footer .head {
	padding: 48px 0 40px;
	background: url(../img/contact_back.png) no-repeat center center / cover;
}

.footer .head .container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer .head .box {
	width: 280px;
	height: 280px;
	border-radius: 9999px;
	background-color: rgba(255, 255, 255, 0.9);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.footer .head .box .logo {
	width: 120px;
	margin: 0 auto 0;
}

.footer .head .box .tel {
	width: 220px;
	margin: 16px auto 0;
}

.footer .head .box .btn {
	margin: 16px 0 0;
}

.footer .head .box .btn a {
	display: block;
}

.footer .head .box .btn a img {
	width: 180px;
}

.footer .foot {
	padding: 80px 0 0;
}

.footer .foot .left {
	text-align: center;
}

.footer .corporation {
	font-size: 12px;
}

.footer .name {
	font-size: 24px;
}

.footer .address {
	margin: 16px 0 0;
	font-size: 14px;
}

.footer .tel {
	margin: 8px 0 0;
}

.footer .sns-list {
	margin: 40px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer .sns-list li a {
	display: block;
}

.footer .sns-list li img {
	width: 44px;
}

.footer .right {
	margin: 64px 0 0;
	display: flex;
}

.footer .primary {
	width: 50%;
	padding: 0 0 0 24px;
	border-left: 1px solid var(--black);
}

.footer .secondary {
	width: 50%;
	padding: 0 0 0 24px;
	border-left: 1px solid var(--black);
}

.footer .right a {
	padding: 12px 0;
	display: block;
	font-size: 14px;
}

.footer .copyright {
	margin: 40px 0 0;
	opacity: 0.8;
	font-size: 10px;
}

/*================================================================
# 中面共通スタイル
================================================================ */
/* 中面ページタイトル
------------------------------------------------------ */
.page-title {
	width: 100%;
	height: 100px;
	background-color: var(--page-title);
	display: flex;
	justify-content: center;
	align-items: center;
}

.page-title h2 {
	padding: 0;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}

/* パンくず
------------------------------------------------------ */
.bread {
	width: 100%;
	margin: 0;
	padding: 10px 15px 0;
}

.bread p {
	font-size: 12px;
}

/* 背景
------------------------------------------------------ */
.contents-wrap>div:first-child {
	padding: 32px 0 100px;
}

.bg01 {
	padding: 64px 0 80px;
	background: var(--bg01);
}

.bg02 {
	padding: 64px 0;
	background: var(--bg02);
	position: relative;
}

.bg02::before,
.bg02::after {
	width: 100%;
	height: 20px;
	position: absolute;
	content: "";
	left: 0;
}

.bg02::before {
	background-image: linear-gradient(45deg, var(--bg02) 10px, transparent 0), linear-gradient(315deg, var(--bg02) 10px, transparent 0);
	background-size: 20px 20px;
	top: -20px;
}

.bg02::after {
	background-image: linear-gradient(135deg, var(--bg02) 10px, transparent 0), linear-gradient(225deg, var(--bg02) 10px, transparent 0);
	background-size: 20px 20px;
	bottom: -20px;
}

/* container
------------------------------------------------------ */
.container {
	margin: 32px 0 0;
	font-size: 15px;
}

.container.top {
	margin: 0;
}

.container .img-area {
	margin: 24px 0 0;
}

.container .img-area img+img {
	margin: 24px 0 0;
}

.container .text-area {
	margin: 24px 0 0;
}

.container .text-area p+p {
	margin: 24px 0 0;
}

.container .img {
	margin: 24px 0 0;
}

/* img-row
------------------------------------------------------ */
.img-row {
	margin: 16px 0 0;
	display: flex;
	flex-wrap: wrap;
}

.img-row>img,
.img-row figure {
	margin: 16px 0 0;
}

.img-row.col-2>img,
.img-row.col-2 figure {
	text-align: center;
}

.img-row.col-3>img,
.img-row.col-3 figure {
	text-align: center;
}

.img-row.col-2_sp img {
	width: calc(100% / 2 - 16px);
}

.img-row.col-3_sp img {
	width: calc(100% / 3 - 16px);
}

.img-row.col-2 figure figcaption {
	margin: 4px 0 0;
	font-size: 16px;
	font-weight: 700;
	color: var(--secondary);
}

.table01 .img-row {
	margin: 0;
}

/* card
------------------------------------------------------ */
.card01 {
	margin: 24px 0 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.card01 .card-item {
	width: 100%;
	margin: 24px auto 0;
	padding: 32px 16px;
	border-radius: 16px;
	background-color: var(--page-title);
	display: flex;
	flex-direction: column;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
}

.card01 .card-item .img {
	margin: 0 0 16px;
	text-align: center;
}

.card01 .card-item .img img {
	width: calc(262px / 1.3);
	height: calc(160px / 1.3);
	object-fit: contain;
}

.card01 .card-item .text {
	margin: auto 0;
}

/* 見出し
------------------------------------------------------ */
.heading01 {
	overflow: hidden;
	text-align: center;
}

.heading01 span {
	padding: 0 24px;
	position: relative;
	display: inline-block;
	font-size: 26px;
	font-weight: 700;
	color: var(--black);
	text-align: center;
}

.heading01 span::before,
.heading01 span::after {
	width: 100vw;
	height: 1px;
	background-color: var(--black);
	position: absolute;
	content: "";
	top: 50%;
	display: inline-block;
}

.heading01 span::before {
	left: 100%;
}

.heading01 span::after {
	right: 100%;
}

.heading02 {
	margin: 40px 0 0;
	padding: 8px 8px 8px 16px;
	border-left: 5px solid var(--tertiary);
	background-color: var(--bg02);
	font-size: 20px;
	font-weight: 500;
}

.heading02.top {
	margin: 0;
}

.bg02 .heading02 {
	background-color: var(--white);
}

.heading03 {
	margin: 40px 0 0;
	padding: 12px;
	background-color: var(--bg03);
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}

.heading03.top {
	margin: 0;
}

.heading04 {
	margin: 40px 0 0;
	padding: 8px;
	font-size: 24px;
	font-weight: 700;
	color: var(--primary);
	text-align: center;
}

.heading04.top {
	margin: 0;
}

/* ボタン
------------------------------------------------------ */
.btn01 {
	margin: 24px 0 0;
}

.btn01 a,
.btn01 input {
	width: 72%;
	margin: 0 auto;
	padding: 10px 2px 12px;
	cursor: pointer;
	border-radius: 8px;
	background: var(--btn);
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	color: var(--white);
	text-align: center;
	-webkit-appearance: none;
}

/* table
------------------------------------------------------ */
.table01 {
	width: 100%;
	margin: 32px auto 0;
	table-layout: fixed;
	border-bottom: 1px solid var(--table-border);
}

.table01 thead th {
	text-align: center;
}

.table01 th {
	width: 20%;
	padding: 8px;
	border: 1px solid var(--table-border);
	border-bottom: 1px solid var(--table-border);
	background: var(--table-bg);
	font-size: 13px;
	font-weight: 700;
	color: var(--white);
	text-align: left;
	vertical-align: top;
}

.table01 td {
	width: 80%;
	padding: 8px;
	border-right: 1px solid var(--table-border);
	border-left: 1px solid var(--table-border);
	background: var(--white);
	font-size: 13px;
	vertical-align: top;
}

.table01 td .img-area {
	margin: 16px 0 0;
}

.table01 td .img-area img {
	width: 100%;
	margin: 0 0 16px;
}

.table01 td .text {
	margin: 8px 0 0;
}

.table01 td p+p {
	margin: 8px 0 0;
}

.table01 td .note {
	margin: 4px 0 0;
	font-size: 12px;
}

.table01 td a {
	font-weight: 700;
	color: var(--black);
	text-decoration: underline;
}

.table01 td ul {
	margin: 8px 0 0;
}

.table01 td ul li {
	padding: 0 0 0 10px;
	list-style: none;
	position: relative;
}

.table01 td ul li+li {
	margin: 4px 0 0;
}

.table01 td ul li:before {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--black);
	position: absolute;
	content: "";
	top: 0.7em;
	left: 0;
	display: inline-block;
}

.table01 td ul li span {
	margin: 4px 0 8px;
	display: block;
	font-size: 12px;
	font-weight: 400;
}

.table01 td dl {
	margin: 24px 0 0;
}

.table01 td dt {
	font-size: 16px;
	font-weight: 700;
}

.table01 td dd {
	margin: 8px 0 0 32px;
}

.table01 td .btn01 a {
	text-decoration: none;
}

/* リスト
------------------------------------------------------ */
.list01 {
	margin: 32px 0 0;
	list-style: none;
}

.list01.top {
	margin: 0;
}

.list01 li {
	margin: 0 0 0 0.6em;
	font-size: 18px;
	font-weight: 500;
	text-indent: -0.6em;
}

.list01 li:nth-child(n + 2) {
	margin: 16px 0 0 0.6em;
}

.list01 .text {
	margin: 8px 0 16px;
	font-size: 16px;
	font-weight: 400;
	text-indent: 0;
}

.list02 {
	margin: 16px 0 0;
	list-style: none;
}

.list02.top {
	margin: 0;
}

.list02 li {
	margin: 0 0 0 1em;
	font-size: 16px;
	font-weight: 700;
	text-indent: -1em;
}

.list02 li:nth-child(n + 2) {
	margin: 8px 0 0 1em;
}

.list02 .text {
	margin: 8px 0 16px;
	font-size: 16px;
	font-weight: 400;
	text-indent: 0;
}

.ul-list01 {
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.ul-list01.top {
	margin: 0;
}

.ul-list01 li {
	padding: 0 0 0 16px;
	position: relative;
	font-size: 16px;
	font-weight: 700;
	text-indent: 0;
}

.ul-list01 li:nth-child(n + 2) {
	margin: 8px 0 0;
}

.ul-list01 li::before {
	width: 8px;
	height: 8px;
	border-radius: 9999px;
	background-color: var(--primary);
	position: absolute;
	content: "";
	top: 12px;
	left: 0;
}

.ul-list01 li .text {
	margin: 8px 0 0;
	font-size: 16px;
	font-weight: 400;
}

.ol-list01 {
	margin: 24px 0 0 24px;
	padding: 0;
	list-style-type: none;
	counter-reset: item;
}

.ol-list01.top {
	margin: 0;
}

.ol-list01 li {
	padding: 0 0 0 30px;
	position: relative;
	font-size: 20px;
	font-weight: 700;
}

.ol-list01 li:before {
	counter-increment: item;
	position: absolute;
	content: counter(item) ".";
	top: 0;
	left: 0;
	font-weight: bold;
}

.ol-list01 li+li {
	margin: 8px 0 0;
}

.ol-list01 li .text {
	margin: 8px 0 0 0;
	font-size: 14px;
	font-weight: 400;
}

.ol-list02 {
	margin: 24px 0 0 24px;
	padding: 0;
	list-style-type: none;
	counter-reset: item;
}

.ol-list02 li {
	padding: 0 0 0 30px;
	position: relative;
	font-weight: 700;
}

.ol-list02 li:before {
	counter-increment: item;
	position: absolute;
	content: counter(item) ".";
	top: 0;
	left: 0;
	font-weight: bold;
}

.ol-list02 li+li {
	margin: 4px 0 0;
}

.ol-list02 li .text {
	margin: 8px 0 0 0;
	font-size: 14px;
	font-weight: 400;
}

/* text
------------------------------------------------------ */
.lead01 {
	margin: 64px auto 0;
}

.text01 {
	margin: 24px 0 0;
	font-size: 15px;
	line-height: 2;
}

.text01.top {
	margin: 0;
}

.text01.right {
	text-align: right;
}

.text01.center {
	text-align: center;
}

.text01 p+p {
	margin: 16px 0 0;
}

.text-link {
	font-weight: 700;
	color: var(--secondary);
	text-decoration: underline;
}

.note {
	margin: 8px 0 0;
	font-size: 12px;
}

.contents-wrap strong {
	color: var(--secondary);
}

/* セクション・ユニット
------------------------------------------------------ */
.section+.section {
	margin: 40px 0 0;
}

.unit+.unit {
	margin: 40px 0 0;
}

/* アコーディオン
------------------------------------------------------ */
.accordion-header {
	width: 200px;
	height: 48px;
	margin: 40px auto 0;
	padding: 0 0 2px;
	cursor: pointer;
	user-select: none;
	border-radius: 8px;
	background: var(--primary);
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	color: var(--white);
	text-align: center;
	-webkit-appearance: none;
}

.accordion-content {
	max-height: 0;
	margin: 40px 0 -40px;
	padding: 0 10px;
	overflow: hidden;
	transition: 0.3s ease-out;
}

.accordion-content.open {
	max-height: 1000px;
	margin: 40px 0 0;
}

.accordion-content .section:first-child,
.accordion-content .section:first-child .heading02 {
	margin: 0;
}

/*================================================================
# トップページ
================================================================ */
.top-page .heading01 span {
	font-size: 24px;
}

/* mv
------------------------------------------------------ */
.mv {
	margin: 0;
	padding: 0;
}

.mv .slider .slick-slide {
	width: 101vw;
	margin: 0;
	position: relative;
	overflow: hidden;
}

.mv .slider .slick-slide .slider-item {
	display: block !important;
}

.mv .slider .slick-slide img {
	width: 100%;
	height: 50vh;
	display: block;
	object-fit: cover;
}

.slider .slick-arrow {
	display: none !important;
}

.slider .slick-dots {
	display: none !important;
}

.slider .slick-dots li {
	width: 8px;
	height: 8px;
	margin-right: 8px;
	cursor: pointer;
	border-radius: 50%;
	background-color: var(--bg01);
	transition: background-color 0.5s ease;
}

.slider .slick-dots li.slick-active {
	background-color: var(--primary);
}

.slider .slick-dots li:last-child {
	margin-right: 0;
}

.slider .slick-dots button {
	padding: 0;
	border: none;
	outline: none;
	background-color: transparent;
	display: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/* キャッチフレーズ
------------------------------------------------------ */
.catchphrase {
	padding: 24px 0 40px;
	position: relative;
}

.catchphrase::before {
	width: 100%;
	height: 20px;
	background-color: var(--white);
	position: absolute;
	content: "";
	bottom: -20px;
	left: 0;
	z-index: 0;
}

.catchphrase::after {
	width: 100%;
	height: 20px;
	background-image: linear-gradient(45deg, var(--bg02) 10px, transparent 0), linear-gradient(315deg, var(--bg02) 10px, transparent 0);
	background-size: 20px 20px;
	position: absolute;
	content: "";
	bottom: -20px;
	left: 0;
	z-index: 0;
}

.catchphrase .catchphrase01 {
	margin: 0 auto;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
}

.catchphrase .catchphrase02 {
	margin: 24px auto 0;
	line-height: 2;
	text-align: center;
}

/* お知らせ
------------------------------------------------------ */
.top-page .contents-wrap .news {
	padding: 64px 0;
	background-color: var(--bg02);
}

.top-page .news .box {
	width: 100%;
	margin: auto;
}

.top-page .news .news-list {
	margin: 0;
	padding: 0;
}

.top-page .news .news-list .list-item {
	margin: 0;
	border-bottom: 1px dotted var(--black);
}

.top-page .news .news-list .link {
	width: 100%;
	padding: 16px 0;
	display: flex;
	flex-wrap: wrap;
}

.top-page .news .news-list .day {
	width: 100%;
	margin: 0;
	display: block;
	font-size: 14px;
	color: var(--black);
}

.top-page .news .news-list .text {
	width: 100%;
	margin: 8px 0 0;
	font-size: 14px;
}

/* 採用情報
------------------------------------------------------ */
.top-page .recruitment {
	text-align: center;
}

/* ご紹介
------------------------------------------------------ */
.top-page .introduction-list {
	margin: 32px 0 0;
}

.top-page .introduction-list .list-item {
	margin: 24px 0 0;
}

.top-page .introduction-list .link {
	display: block;
	transition: 0.3s;
}

.top-page .introduction-list .img img {
	border: 8px solid var(--primary);
	border-radius: 16px;
}

.top-page .introduction-list .text {
	margin: 8px 0 0;
	padding: 0 0 0 22px;
	position: relative;
	font-size: 18px;
	font-weight: 700;
}

.top-page .introduction-list .text:before {
	width: 16px;
	height: 16px;
	background: url(../img/icon_arrow01.png) no-repeat left top / contain;
	position: absolute;
	content: "";
	top: 8px;
	left: 0;
}

/* バナー
------------------------------------------------------ */
.top-page .ban {
	padding: 80px 0 72px;
}

.top-page .ban .ban-list {
	margin: 0 0 0 -24px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.top-page .ban .list-item {
	width: calc(100% / 2 - 24px);
	margin: 0 0 0 24px;
}

.top-page .ban .list-item:nth-child(n + 3) {
	margin: 24px 0 0 24px;
}

.top-page .ban .link {
	display: block;
	transition: 0.3s;
}

.top-page .ban .text {
	margin: 8px 0 0;
	padding: 0;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
}

/*================================================================
# 園について
================================================================ */
.about-page .philosophy .box {
	margin: 40px 0 0;
	padding: 40px;
	border: 3px solid var(--primary);
	border-radius: 16px;
	background-color: var(--white);
	position: relative;
}

.about-page .philosophy .box .about_illust01 {
	width: 200px;
	position: absolute;
	right: -40px;
	bottom: -120px;
	z-index: 1;
}

.about-page .app-feature-box {
	margin: 24px 0 0;
	padding: 32px 16px;
	border: 2px solid var(--primary);
	border-radius: 16px;
}

.about-page .feature-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.about-page .feature-list li {
	padding: 0 0 0 32px;
	position: relative;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0;
}

.about-page .feature-list li+li {
	margin: 16px 0 0;
}

.about-page .feature-list li::before {
	width: 24px;
	height: 24px;
	background: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2029.3%2026%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.st0%20%7B%20fill%3A%20%233e9fd9%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M28.6%2C2.6c-.9-.9-2.3-.9-3.1%2C0l-12.4%2C12.4-4.5-4.5c-.9-.9-2.3-.9-3.1%2C0-.9.9-.9%2C2.3%2C0%2C3.1l6.1%2C6.1c.4.4%2C1%2C.7%2C1.6.7s1.1-.2%2C1.6-.7l13.9-13.9c.9-.9.9-2.3%2C0-3.1Z%22%2F%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M23.9%2C11.8c0%2C.4%2C0%2C.8%2C0%2C1.2%2C0%2C6.1-4.9%2C11-11%2C11S2%2C19.1%2C2%2C13%2C6.9%2C2%2C13%2C2s6.1%2C1.4%2C8.1%2C3.6l1.4-1.4C20.1%2C1.6%2C16.7%2C0%2C13%2C0%2C5.8%2C0%2C0%2C5.8%2C0%2C13s5.8%2C13%2C13%2C13%2C13-5.8%2C13-13-.1-2-.3-2.9l-1.7%2C1.7Z%22%2F%3E%3C%2Fsvg%3E") no-repeat center center;
	background-size: contain;
	position: absolute;
	content: "";
	top: 4px;
	left: 0;
}

/*================================================================
# 園の特色
================================================================ */
.concept-page .features .section:nth-child(2) {
	position: relative;
}

.concept-page .features .section:nth-child(2) .heading02 {
	padding: 8px 16px;
	text-align: left;
}

.concept-page .features .section:nth-child(2) .concept_illust01 {
	width: 80px;
	position: absolute;
	top: -32px;
	right: -16px;
	z-index: 1;
}

/*================================================================
# 年間行事
================================================================ */
.annual-page .calendar {
	padding: 0 0 64px;
}

.annual-page .cards {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.annual-page .cards .card-item {
	width: 100%;
	margin: 40px 0 0;
	background-color: var(--bg02);
}

.annual-page .cards .card-item .img-area {
	margin: 0;
}

.annual-page .cards .card-item .text-area {
	margin: 0;
	padding: 32px;
	position: relative;
}

.annual-page .cards .card-item .text-area .card__title {
	width: 100px;
	height: 100px;
	margin: auto;
	border-radius: 9999px;
	background-color: var(--bg02);
	position: absolute;
	top: -36px;
	right: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 32px;
	font-weight: 700;
	text-align: center;
}

.annual-page .cards .card-item .text-area .card__title span {
	margin: 0 0 0 4px;
	font-size: 16px;
}

.annual-page .cards .card-item .text-area .card__text {
	margin: 24px 0 0;
}

.annual-page .cards .card-item .text-area .card__text ul li {
	padding: 0 0 0 13px;
	list-style: none;
	position: relative;
	font-weight: bold;
}

.annual-page .cards .card-item .text-area .card__text ul li+li {
	margin: 4px 0 0;
}

.annual-page .cards .card-item .text-area .card__text ul li:before {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--black);
	position: absolute;
	content: "";
	top: 0.7em;
	left: 0;
	display: inline-block;
}

.annual-page .cards .card-item .text-area .card__text ul .strong {
	color: var(--secondary);
}

.annual-page .cards .card-item .text-area .card__text ul .strong:before {
	background: var(--secondary);
}

.annual-page .cards .card-item .text-area .card__text ul li span {
	margin: 4px 0 8px;
	display: block;
	font-size: 12px;
	font-weight: 400;
}

.annual-page .cards .card-item .text-area:before {
	width: calc(540px / 2);
	height: calc(200px / 2);
	margin: auto;
	position: absolute;
	content: "";
	top: -40px;
	right: 0;
	left: 0;
	z-index: 1;
}

/*================================================================
# 一日の流れ
================================================================ */
.contents-wrap div.schedule {
	padding: 32px 0 64px;
}

.schedule-table {
	width: 100%;
	margin: 0;
	table-layout: fixed;
	border-collapse: collapse;
}

.schedule-table th {
	padding: 8px 2px;
	font-size: 12px;
	font-weight: 700;
	text-align: center;
}

.schedule-table thead th {
	padding: 8px 2px;
}

.schedule-table tr:nth-child(2) th {
	background-color: var(--bg02);
	color: var(--black);
}

.schedule-table td {
	padding: 8px;
	border: 1px solid var(--gray01);
	background-color: var(--white);
	font-size: 12px;
	text-align: center;
	vertical-align: middle;
}

.schedule-table .col1 {
	width: 20%;
}

.schedule-table .col2 {
	width: 40%;
}

.schedule-table .col3 {
	width: 40%;
}

.schedule-table .time-cell {
	font-weight: bold;
	text-align: left;
}

.schedule-table .text-area {
	text-align: left;
}

/*================================================================
# 入園案内
================================================================ */
.admission-information {
	padding: 24px 0 64px;
}

/*================================================================
# お知らせ
================================================================ */
.news-page .news {
	margin: 0 auto;
	position: relative;
}

.news-page .news .wrap {
	width: calc(100% - 80px);
}

.news-page .news .news-list {
	margin: 0;
	padding: 0;
}

.news-page .news .news-list .list-item {
	margin: 0;
	border-bottom: 1px dotted var(--black);
}

.news-page .news .news-list .link {
	width: 100%;
	padding: 16px 0;
	display: flex;
	flex-wrap: wrap;
}

.news-page .news .news-list .day {
	width: 100%;
	margin: 0;
	display: block;
	font-size: 14px;
}

.news-page .news .news-list .text {
	width: 100%;
	margin: 8px 0 0;
	font-size: 14px;
}

.wp-pagenavi {
	margin: 40px 0 0;
	clear: both;
}

.wp-pagenavi a,
.wp-pagenavi span {
	margin: 2px;
	padding: 3px 5px;
	border: 1px solid #bfbfbf;
	text-decoration: none;
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current {
	border-color: #000;
}

.wp-pagenavi span.current {
	font-weight: 700;
}

/*================================================================
# お知らせ - 詳細
================================================================ */
.news-detail-page .post-title {
	margin: 0;
	padding: 8px 8px 8px 16px;
	border-left: 5px solid var(--tertiary);
	background-color: var(--bg02);
	font-size: 20px;
	font-weight: 500;
}

.news-detail-page .post {
	margin: 40px 0 0;
}

/*================================================================
# 交通案内
================================================================ */
.gmap {
	margin: 24px 0 0;
	padding-bottom: 120%;
	border: 10px solid var(--bg02);
}

/*================================================================
# お問い合わせ
================================================================ */
.contact-table {
	max-width: 559px;
	margin: 0 auto 30px;
}

.contact-table p {
	margin: 0 0 20px;
	font-size: 14px;
}

.contact-table .table01 tr {
	display: flex;
	flex-wrap: wrap;
}

.contact-table .table01 th {
	width: 100%;
	padding: 12px 16px;
	position: relative;
}

.contact-table .table01 td {
	width: 100%;
	padding: 12px 16px;
}

.contact-table .table01 td ul {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
}

.contact-table .table01 td ul li:before {
	display: none;
}

.contact-table .icon_h {
	padding: 4px 8px;
	border-radius: 9999px;
	background: var(--red);
	position: absolute;
	top: 14px;
	right: 16px;
	font-size: 72%;
	line-height: 1;
	color: #fff;
	align-self: start;
}

.contact-page .box_privacy {
	margin: 0 auto;
}

.contact-page .box_privacy p {
	margin: 0 0 16px;
	font-size: 108%;
}

.contact-page .section-privacy {
	margin: 64px auto 0;
}

.contact-page .section-privacy .privacy-box {
	margin: 24px 0 0;
	font-size: 12px;
}

.contact-page .section-privacy .privacy-box .title {
	margin: 24px 0 0;
	font-weight: 700;
}

.contact-page .section-privacy .privacy-box p {
	margin: 4px 0 0;
}

/*-----------
form
------------*/
::placeholder {
	color: var(--gray02);
}

.contact-table select,
.contact-table input,
.contact-table textarea,
.contact-table button,
.contact-table option {
	font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", sans-serif;
}

.contact-table input,
.contact-table textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid var(--gray02);
	border-radius: 8px;
	background: var(--gray03);
	box-sizing: border-box;
	-webkit-appearance: none;
	transition: all 0.5s;
}

.contact-table input:focus,
.contact-table textarea:focus {
	border: 1px solid var(--gray02);
	outline: 0;
	background: var(--gray03);
}

.contact-table input:focus::placeholder,
.contact-table textarea:focus::placeholder {
	color: var(--gray02);
}

.select-wrap {
	width: 100%;
	border: 1px solid var(--gray02);
	border-radius: 8px;
	background: var(--gray03);
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
	-webkit-appearance: none;
	transition: all 0.5s;
}

.select-wrap::before {
	width: 6px;
	height: 6px;
	margin-top: -4px;
	border: 0;
	border-right: solid 2px #666;
	border-bottom: solid 2px #666;
	position: absolute;
	content: "";
	top: 50%;
	right: 15px;
	transform: rotate(45deg);
}

.select-wrap select {
	width: 100%;
	padding: 12px;
	cursor: pointer;
	border: none;
	outline: none;
	background: transparent;
	box-shadow: none;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	-webkit-appearance: none;
	appearance: none;
}

.select-wrap select::-ms-expand {
	display: none;
}

/* チェックボックス */
input[type="checkbox"] {
	display: none;
}

.checkbox {
	width: auto;
	padding: 0.5rem 3rem;
	cursor: pointer;
	position: relative;
	display: inline-block;
	box-sizing: border-box;
}

.checkbox::before {
	width: 1.6rem;
	height: 1.6rem;
	margin-top: -0.8rem;
	border: 1px solid #ccc;
	border-radius: 0.3rem;
	background: #fff;
	position: absolute;
	content: "";
	top: 50%;
	left: 0.5rem;
	display: block;
}

.checkbox::after {
	width: 0.9rem;
	height: 2rem;
	margin-top: -1.6rem;
	opacity: 0;
	border-right: 0.4rem solid var(--blue);
	border-bottom: 0.4rem solid var(--blue);
	position: absolute;
	content: "";
	top: 50%;
	left: 1rem;
	display: block;
	transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
	transform: rotate(45deg) translate3d(0, 2px, 0) scale3d(0.7, 0.7, 1);
}

input[type="checkbox"]:checked+.checkbox::before {
	border-color: #666;
}

input[type="checkbox"]:checked+.checkbox::after {
	opacity: 1;
	transform: rotate(45deg) scale3d(1, 1, 1);
}

/* ラジオボタン */
input[type="radio"] {
	display: none;
}

.radio-btn {
	width: auto;
	padding: 5px 30px;
	cursor: pointer;
	position: relative;
	display: inline-block;
	box-sizing: border-box;
}

.radio-btn::before {
	width: 16px;
	height: 16px;
	margin-top: -8px;
	border: 1px solid #ccc;
	border-radius: 50%;
	background: #fff;
	position: absolute;
	content: "";
	top: 50%;
	left: 5px;
	display: block;
}

.radio-btn::after {
	width: 10px;
	height: 10px;
	margin-top: -4px;
	opacity: 0;
	border-radius: 50%;
	background: var(--black);
	position: absolute;
	content: "";
	top: calc(50% - 1px);
	left: 8px;
	display: block;
	transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
	transform: scale3d(0.3, 0.3, 1);
}

input[type="radio"]:checked+.radio-btn::before {
	border-color: #666;
}

input[type="radio"]:checked+.radio-btn::after {
	opacity: 1;
	transform: scale3d(1, 1, 1);
}

.kojin-checkbox {
	margin-top: 20px;
	font-weight: bold;
	text-align: center;
}

.kojin-checkbox label {
	padding: 0.5rem 4.4rem 0.5rem 3rem;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
}

.kojin-checkbox input {
	margin: 0 10px 0 0;
}

.submit-btn {
	width: 100%;
	margin: 40px auto 0;
}

.submit-btn input {
	width: 80%;
	height: 64px;
	margin: auto;
	padding: 0 0 4px;
	border-radius: 8px;
	background: var(--primary);
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	font-weight: 700;
	color: var(--white);
	text-align: center;
	text-decoration: none;
	box-sizing: border-box;
	-webkit-appearance: none;
	transition: all 0.3s ease;
}