@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 .left h1 {
    margin: 0;
    padding: 0;
}

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

.header .left h1 a img {
    width: auto;
    height: 40px;
    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: 100vw;
    height: 100vh;
    height: -webkit-fill-available;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.3s;
}

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

.gnav_sp.panelactive .gnav-list_sp {
    width: 100%;
    height: 100%;
    padding: 56px 0;
    background: var(--white);
    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_recruit {
    width: calc(100% / 2 - 8px);
    margin: 32px 0 0 8px;
}

.gnav_sp .secondary li a {
    padding: 10px 0 12px;
    border-radius: 9999px;
    background-color: var(--gray01);
    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_recruit a {
    background-color: var(--tertiary);
    font-size: 14px;
    color: var(--white);
}

.gnav_sp .secondary li a span {
    height: 20px;
    padding: 0 0 0 24px;
    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_nursery a span:before {
    background: url("../img/icon_nursery.png") no-repeat center center / 20px auto;
}

.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: 48px;
    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: 16px 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 {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

.footer .foot .left .block+.block {
	margin: 40px 0 0;
}

.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 .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: 64px 0 0;
	opacity: 0.8;
	font-size: 10px;
}

/*================================================================
# 中面共通スタイル
================================================================ */
/* 中面ページタイトル
------------------------------------------------------ */
.page-title {
    width: 100%;
    height: 100px;
    background-color: var(--bg02);
    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;
    background-color: var(--bg01);
}

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

/* 背景
------------------------------------------------------ */
.page-contents>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;
}

/* layout01
------------------------------------------------------ */
.layout01 {
    font-size: 15px;
}

.layout01 .container {
    margin: 32px 0 0;
}

.layout01 .img-area {
    margin: 0;
}

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

.layout01 .container .text-area,
.layout01 .container .text-area .text {
    margin: 16px 0 0;
}

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

.layout01 .section {
    margin: 40px 0 0;
}

.layout01 .section.top {
    margin: 0;
}

/* layout02
------------------------------------------------------ */
.layout02 .text-area {
    margin: 24px 0 0;
    font-size: 16px;
    line-height: 2;
}

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

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

.layout02 .img-area img:nth-child(n + 2) {
    margin: 16px 0 0;
}

.layout02 .section {
    margin: 32px 0 0;
}

.layout02 .section.top {
    margin: 0;
}

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

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

/* card
------------------------------------------------------ */
.card01 {
    margin: 0 0 0 -16px;
    display: flex;
    flex-wrap: wrap;
}

.card01 .card-item {
    width: calc(100% / 1 - 16px);
    margin: 32px 0 0 16px;
}

.card01 .card-item .img-area {
    margin: 24px 0 0;
}

.card01 .card-item .text-area .card__title {
    padding: 8px 0;
    background-color: var(--blue02);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.card01 .card-item .text-area .card__text {
    margin: 16px 0 0;
    font-size: 15px;
}

.card02 {
    margin: 64px 0 0 -40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card02 .card-item {
    width: calc(100% / 1 - 40px);
    margin: 0 0 0 40px;
    border-radius: 24px;
    background-color: var(--bg02);
}

.card02 .card-item:nth-child(n + 2) {
    margin: 64px 0 0 40px;
}

.card02 .card-item .img-area {
    margin: 0;
}

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

.card02 .card-item .text-area .card__icon {
    width: 130px;
    height: 130px;
    margin: auto;
    border-radius: 9999px;
    background-color: var(--quaternary);
    position: absolute;
    top: -40px;
    right: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    z-index: 0;
}

.card02 .card-item .text-area .card__icon img {
    width: 80px;
}

.card02 .card-item .text-area .card__title {
    margin: 72px 0 0;
    position: relative;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.card02 .card-item .text-area .card__text {
    margin: 24px 0 0;
}

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

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

.card02 .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;
}

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

/* 見出し
------------------------------------------------------ */
.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(--gray01);
    position: absolute;
    content: "";
    top: 50%;
    display: inline-block;
}

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

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

.heading02 {
    margin: 32px 0 0;
    padding: 6px 16px 8px;
    border-left: 5px solid var(--primary);
    background-color: var(--bg01);
    font-size: 22px;
}

.heading03 {
    margin: 24px 0 0;
    padding: 0 0 8px;
    position: relative;
    font-size: 20px;
    font-weight: 700;
}

.heading03::before {
    width: 100%;
    height: 3px;
    background-color: var(--gray01);
    position: absolute;
    content: "";
    bottom: -3px;
    left: 0;
}

.heading03::after {
    width: 80px;
    height: 3px;
    background-color: var(--primary);
    position: absolute;
    content: "";
    bottom: -3px;
    left: 0;
}

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

.heading04.top {
    margin: 0;
}

.heading04.orange {
    background-color: var(--orange02);
}

.heading05 {
    margin: 40px 0 0;
    padding: 8px 0;
    background-color: var(--bg01);
    font-weight: 700;
    text-align: center;
}

.heading05.top {
    margin: 0;
}

.heading06 {
    margin: 40px 0 0;
    padding: 2px 16px;
    border-left: 5px solid var(--quaternary);
    font-size: 28px;
    font-weight: 700;
}

.heading06.top {
    margin: 0;
}

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

.btn01 a,
.btn01 input {
    width: 72%;
    margin: 0 auto;
    padding: 12px 2px;
    cursor: pointer;
    border-radius: 8px;
    background: var(--secondary);
    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(--gray01);
}

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

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

.table01 th {
    width: 100%;
    padding: 8px 16px;
    border: 1px solid var(--gray01);
    border-bottom: 1px solid var(--white);
    background: var(--blue03);
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    vertical-align: top;
}

.table01.orange th {
    background: var(--orange03);
}

.table01 td {
    width: 100%;
    font-size: 14px;
    padding: 16px;
    border-right: 1px solid var(--gray01);
    border-left: 1px solid var(--gray01);
    background: var(--white);
    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 a {
    font-weight: 700;
    color: var(--secondary);
    text-decoration: underline;
}

.table02 {
    width: 100%;
    margin: 32px auto 0;
    table-layout: fixed;
}

.table02 th {
    width: 23%;
    padding: 16px;
    border-top: 1px solid var(--white);
    border-left: 1px solid var(--gray01);
    background: var(--blue03);
    font-weight: 700;
    text-align: left;
    vertical-align: top;
	font-size: 13px;
}

.table02 tr:first-child th {
    border-top: 1px solid var(--gray01);
}

.table02 tr:last-child th {
    border-bottom: 1px solid var(--gray01);
}

.table02 thead th {
	width: 38.5%;
    padding: 16px;
    border-top: 1px solid var(--white);
    border-left: 1px solid var(--gray01);
    background: var(--blue03);
    font-weight: 700;
    text-align: center;
    vertical-align: top;
	font-size: 13px;
}

.table02 thead th:first-child {
    width: 23%;
	border-top: transparent;
    border-left: transparent;
    background-color: transparent;
}

.table02 thead th:last-child {
    border-left: 1px solid var(--white);
}

.table02 td {
    width: 77%;
    padding: 16px;
    border: 1px solid var(--gray01);
    background: var(--white);
    vertical-align: top;
	font-size: 13px;
}

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

.list01.top {
    margin: 0;
}

.list01 li {
    margin: 0 0 0 1em;
    text-indent: -1em;
}

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

.list01 .text {
    margin: 8px 0 16px;
    font-size: 14px;
    color: var(--gray03);
    text-indent: 0;
}

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

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

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

.ul-list01 li::before {
    position: absolute;
    content: "・";
    left: 0;
}

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

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

.ul-list02 li {
    padding: 0 0 0 1.5em;
    position: relative;
    font-weight: 700;
    text-indent: 0;
}

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

.ul-list02 li::before {
    position: absolute;
    content: "・";
    left: 0;
}

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

.ul-list03 {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

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

.ul-list03 li {
    padding: 0 0 0 1.5em;
    position: relative;
    text-indent: 0;
}

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

.ul-list03 li::before {
    position: absolute;
    content: "・";
    left: 0;
    font-weight: 700;
}

.ul-list04 {
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
}

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

.ul-list04 li {
    padding: 0 0 0 1.5em;
    position: relative;
    font-size: 14px;
    text-indent: 0;
}

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

.ul-list04 li::before {
    position: absolute;
    content: "・";
    left: 0;
}

.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 {
    width: 562px;
    margin: 64px auto 0;
}

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

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

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

/* セクション・ユニット
------------------------------------------------------ */
.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-contents .heading01 span {
    font-size: 24px;
}

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

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

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

.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 32px;
}

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

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

/* お知らせ
------------------------------------------------------ */
.top-page-contents .news {
    padding: 64px 0;
}

.top-page-contents .news .box {
    width: 100%;
    margin: auto;
    padding: 40px 32px;
    border-radius: 16px;
    background-color: var(--white);
}

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

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

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

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

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

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

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

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

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

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

.top-page-contents .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;
}

.ban_nursery {
	width: 100%;
	margin: 56px auto 0;
}

.ban_nursery a {
	display: block;
	transition: .3s;
}

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

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

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

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

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

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

/*================================================================
# 園の紹介
================================================================ */
.about-page-contents .policy .box {
    margin: 40px 0 0;
    padding: 40px 32px;
    border: 4px solid var(--orange01);
    border-radius: 16px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-page-contents .policy .box li {
    padding: 0 0 0 40px;
    position: relative;
    font-size: 24px;
    font-weight: 700;
}

.about-page-contents .policy .box li:before {
    width: 32px;
    height: 32px;
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2270%22%20height%3D%2267%22%20viewBox%3D%220%200%2070%2067%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M31.1958%203.70821C32.3932%200.0229673%2037.6068%200.0229588%2038.8042%203.7082L44.2051%2020.3303C44.7406%2021.9784%2046.2764%2023.0942%2048.0093%2023.0942H65.4868C69.3617%2023.0942%2070.9728%2028.0527%2067.838%2030.3303L53.6983%2040.6033C52.2964%2041.6219%2051.7098%2043.4274%2052.2453%2045.0755L57.6461%2061.6976C58.8435%2065.3828%2054.6256%2068.4473%2051.4907%2066.1697L37.3511%2055.8967C35.9492%2054.8781%2034.0508%2054.8781%2032.6489%2055.8967L18.5093%2066.1697C15.3744%2068.4473%2011.1565%2065.3828%2012.3539%2061.6976L17.7547%2045.0755C18.2902%2043.4274%2017.7036%2041.6219%2016.3017%2040.6033L2.16205%2030.3303C-0.9728%2028.0527%200.638296%2023.0942%204.51319%2023.0942H21.9907C23.7236%2023.0942%2025.2594%2021.9784%2025.7949%2020.3303L31.1958%203.70821Z%22%20fill%3D%22%23F3A35E%22%2F%3E%3C%2Fsvg%3E') no-repeat center top / contain;
    position: absolute;
    content: '';
    top: 0;
    left: 0;
}

.about-page-contents .policy .box li+li {
    margin: 24px 0 0;
}

/*================================================================
# 年間行事
================================================================ */
.annual-page-contents .row {
    margin: 40px 0 0;
}

.annual-page-contents .row.spring {
    margin: 0;
}

.annual-page-contents .left {
    padding: 8px;
    background-color: #f3e28a;
    font-weight: 700;
    text-align: center;
}

.annual-page-contents .left img {
    width: 64px;
}

.annual-page-contents .right {
    padding: 16px;
    background-color: #f4eecf;
}

.annual-page-contents .row ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.annual-page-contents .row.winter ul {
    grid-template-rows: repeat(4, 1fr);
}

.annual-page-contents .row ul li {
    height: 56px;
    padding: 8px;
    border-radius: 9999px;
    background-color: var(--white);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    text-align: center;
}

.annual-page-contents .row ul li small {
    letter-spacing: 0;
}

.annual-page-contents .row .img {
    margin: 16px 0 0;
}

.annual-page-contents .spring .left {
    background-color: #f2d7d3;
}

.annual-page-contents .spring .right {
    background-color: #f8efe7;
}

.annual-page-contents .summer .left {
    background-color: #d1e9e4;
}

.annual-page-contents .summer .right {
    background-color: #edf5ed;
}

.annual-page-contents .autumn .left {
    background-color: #f1d0ac;
}

.annual-page-contents .autumn .right {
    background-color: #f9f2e3;
}

.annual-page-contents .winter .left {
    background-color: #afb1c7;
}

.annual-page-contents .winter .right {
    background-color: #dcdee0;
}

/*================================================================
# 一日の流れ
================================================================ */
.schedule-table {
    width: 100%;
    margin: 24px 0 0;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 1.4;
}

.schedule-table th {
    padding: 12px 8px;
    border-left: 1px solid var(--black);
    background-color: var(--orange02);
    font-weight: 700;
    text-align: center;
}

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

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

.schedule-table td {
    padding: 12px 8px;
    border-left: 1px solid var(--black);
    background-color: var(--white);
    font-weight: 700;
    vertical-align: middle;
}

.schedule-table tr:nth-child(even) td {
    background-color: var(--orange05);
}

.schedule-table td .text-area {
    display: flex;
    justify-content: center;
    align-items: center;
}

.schedule-table td .text-area .inner {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.schedule-table td .text-area .img {
    width: 80px;
    margin: 0 8px 0 0;
}

.schedule-table td .text-area p,
.schedule-table td .text-area small {
    width: 100%;
}

.schedule-table td .text-area small {
    margin: 4px 0 0;
    font-size: 10px;
    font-weight: 400;
}

.schedule-table .time-cell {
    width: 88px;
    border: 0;
    font-weight: bold;
    text-align: center;
}

/*================================================================
# 入園案内
================================================================ */
.guide-img {
    margin: 40px auto 0;
    text-align: center;
}

.table01 th.pink {
    background-color: var(--bg03);
}

.table01 th.orange {
    background-color: var(--orange04);
}

.table01 th.blue {
    background-color: var(--blue03);
}

/*================================================================
# 採用
================================================================ */
.recruit-page-contents .name {
    margin: 24px 0 0;
    font-weight: 700;
}

.recruit-page-contents .staff-img {
    margin: 40px auto 0;
    text-align: center;
}

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

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

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

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

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

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

.news-page-contents .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-page-contents .btn01 {
    margin: 40px 0 0;
}

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

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

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

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

.contact-table .table01 th {
    position: relative;
}

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

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

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

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

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

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

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

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

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

.contact-table select,
.contact-table input[type="text"],
.contact-table input[type="tel"],
.contact-table input[type="email"],
.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[type="text"],
.contact-table input[type="tel"],
.contact-table input[type="email"],
.contact-table textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray);
    border-radius: 8px;
    background: #f1f1f1;
    box-sizing: border-box;
    -webkit-appearance: none;
    transition: all 0.5s;
}

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

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

.select-wrap {
    width: 100%;
    border: 1px solid var(--gray);
    border-radius: 8px;
    background: #f1f1f1;
    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: 100%;
    height: 70px;
    padding: 0 0 4px;
    border-radius: 35px;
    background: var(--blue);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    -webkit-appearance: none;
    transition: all 0.3s ease;
}

/*================================================================
# 南くさか保育園
================================================================ */
.nursery-page-contents .heading04 {
	background-color: var(--orange);
	color: var(--white);
}

.nursery-page-contents .bg02 {
	background: var(--bg04);
}

.nursery-page-contents .bg02::before {
	background-image: linear-gradient(45deg, var(--bg04) 10px, transparent 0), linear-gradient(315deg, var(--bg04) 10px, transparent 0);
}

.nursery-page-contents .bg02::after {
	background-image: linear-gradient(135deg, var(--bg04) 10px, transparent 0), linear-gradient(225deg, var(--bg04) 10px, transparent 0);
}

.nursery-page-contents .btn01 {
	margin: 24px 0 0;
}

.nursery-page-contents .btn01 a,
.nursery-page-contents .btn01 input {
	background: var(--orange);
}

.nursery-page-contents .schedule-table th {
	border-left: 1px solid var(--white);
	background-color: var(--orange);
	color: var(--white);
}

.nursery-page-contents .schedule-table tr:nth-child(2) th {
	color: var(--black);
}

.nursery-page-contents .schedule-table tr:nth-child(even) td {
	background-color: var(--bg04);
}

.nursery-page-contents .schedule-table td {
	border-left: 1px solid var(--gray02);
	font-size: 14px;
}

.nursery-page-contents .schedule-table .time-cell {
	border-left: 0;
}

.nursery-page-contents .schedule-table td .text-area {
	flex-wrap: wrap;
}

.nursery-page-contents .schedule-table td .text-area .img {
	width: auto;
	display: flex;
	gap: 4px;
}

.nursery-page-contents .schedule-table td .text-area .img img {
	width: 80px;
}

.nursery-page-contents .schedule-table td .text-area .inner {
	width: 100%;
	margin: 4px 0 0;
	text-align: center;
}

.nursery-page-contents .table01 {
	border: 0;
}

.nursery-page-contents .table01 tr:first-child th {
	border-top: 0;
}

.nursery-page-contents .table01 tr:last-child th {
	border-bottom: 0;
}

.nursery-page-contents .table01 th {
	border: 0;
	background: var(--orange);
	color: var(--white);
}

.nursery-page-contents .table01 td {
	border: 1px solid var(--bg04);
}

.nursery-page-contents .contact-buttons {
	margin: 40px 0 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.nursery-page-contents .contact-buttons .btn a {
	width: 80%;
	margin: auto;
	padding: 20px;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 17px;
	font-weight: 600;
	color: var(--white);
	transition: 0.3s;
	gap: 8px;
}

.nursery-page-contents .contact-buttons .btn.mail a {
	background-color: var(--orange);
}

.nursery-page-contents .contact-buttons .btn.tel a {
	background-color: var(--pink);
	font-size: 20px;
}

.nursery-page-contents .contact-buttons .btn a img {
	width: 32px;
	height: auto;
}

.nursery-page-contents .contact-buttons .btn a:hover {
	opacity: 0.8;
}