@charset "utf-8";

/*================================================================
# 全ページ共通スタイル
================================================================ */
/* header
------------------------------------------------------ */
.header {
    width: 100%;
    margin: 0 auto;
    padding: 12px 24px;
}

.header .container {
    margin: 0 auto;
    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 {
    height: 55px;
}

.header .left h1 a:hover img {
    opacity: 0.7;
}

.header .right {
    margin: 0 0 0 auto;
}

.header .sub-menu {
    padding: 0;
    display: flex;
}

.header .sub-menu ul {
    margin: 0 0 0 auto;
    display: flex;
}

.header .sub-menu li {
    margin: 0 0 0 16px;
    padding: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

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

.header .sub-menu .li_sns {
    margin: 0 10px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .sub-menu .li_sns a {
    padding: 0;
}

.header .sub-menu .li_sns img {
    width: 32px;
}

.header .sub-menu .li_nursery a {
    padding: 10px 24px 12px;
    background-color: var(--tertiary);
    font-size: 14px;
    color: var(--white);
}

.header .sub-menu .li_recruit a {
    padding: 10px 24px 12px;
    background-color: var(--quaternary);
    font-size: 14px;
}

.header .sub-menu li a span {
    height: 20px;
    padding: 0 0 0 28px;
    position: relative;
    display: flex;
    align-items: center;
}

.header .sub-menu li a span:before {
    width: 22px;
    height: 22px;
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
}

.header .sub-menu .li_news a span:before {
    background: url("../img/icon_news.png") no-repeat center center / 22px auto;
}

.header .sub-menu .li_info a span:before {
    background: url("../img/icon_info.png") no-repeat center center / 22px auto;
}

.header .sub-menu .li_access a span:before {
    background: url("../img/icon_access.png") no-repeat center center / 22px auto;
}

.header .sub-menu .li_corporation a span:before {
    background: url("../img/icon_corporation.png") no-repeat center center / 22px auto;
}

.header .sub-menu .li_recruit a span:before {
    background: url("../img/icon_recruit.png") no-repeat center center / 22px auto;
}

.header .sub-menu .li_nursery a span:before {
    background: url("../img/icon_nursery.png") no-repeat center center / 22px auto;
}

.header .sub-menu li a:hover {
    opacity: 0.8;
}

.header .sub-menu .li_recruit a:hover,
.header .sub-menu .li_nursery a:hover {
    opacity: 0.7;
    color: var(--white);
}

.header .header-contact {
    margin: 12px 0 0;
    padding: 0;
    display: flex;
}

.header .header-contact ul {
    margin: 0 0 0 auto;
    display: flex;
}

.header .header-contact li {
    margin: 0 0 0 16px;
    display: flex;
    align-items: center;
    font-size: 12px;
}

.header-contact li a,
.header .header-contact li img {
    display: block;
}

.header .header-contact li img {
    width: 220px;
}

.header .header-contact li a:hover img {
    opacity: 0.7;
}

.header .gnav_pc {
    margin: 12px auto 0;
    padding: 0;
}

.header .gnav_pc ul {
    width: 100%;
    margin: auto;
    display: flex;
}

.header .gnav_pc li {
    width: calc(100% / 6);
}

.header .gnav_pc li a {
    width: 100%;
    padding: 10px;
    border-left: 1px solid var(--gray01);
    position: relative;
    display: block;
    font-weight: 700;
    text-align: center;
    transition: 0.3s;
}

.header .gnav_pc li a:hover {
    color: var(--primary);
}

.header .gnav_pc li:last-child a {
    border-right: 1px solid var(--gray01);
}

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

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

.header .gnav_pc li a:hover::after {
    width: 88%;
}

.header .nav_sp {
    display: none;
}

/* gnav_sp
------------------------------------------------------ */
.header .gnav_sp {
    display: none;
}

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

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

.scroll-to-top a img {
    width: 16px;
    transition: 0.3s;
}

.scroll-to-top a:hover img {
    transform: translate(0, -8px);
}

/* フッター
------------------------------------------------------ */
.footer {
    padding: 0 0 80px;
    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: 320px;
    height: 320px;
    padding: 40px;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: row;
}

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

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

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

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

.footer .head .box .btn a:hover {
    opacity: 0.7;
}

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

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

.footer .container {
    display: flex;
}

.footer .left {
    width: 50%;
}

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

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

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

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

.footer .sns-list {
    margin: 40px 0 0;
}

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

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

.footer .right {
    width: 50%;
    display: flex;
}

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

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

.footer .right a {
    padding: 8px 0;
    display: block;
}

.footer .right a:hover {
    text-decoration: underline;
}

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

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

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

/* パンくず
------------------------------------------------------ */
.bread {
    width: 100%;
    margin: 0;
    padding: 10px 0 0;
    background: var(--bg01);
    font-size: 12px;
}

.breadflow {
    width: 100%;
    padding: 10px 0 0;
    background: var(--bg02);
    font-size: 12px;
}

.bread p,
.breadflow p {
    max-width: 980px;
    margin: 0 auto;
}

.bread p a:hover,
.breadflow p a:hover {
    text-decoration: underline;
}

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

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

.bg02 {
    padding: 80px 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.container {
    margin: 40px 0 0 -40px;
    display: flex;
}

.layout01.container.center {
    justify-content: center;
    align-items: center;
}

.layout01.container+.container {
    margin: 80px 0 0 -40px;
}

.layout01.container .col,
.layout01.container .img-area {
    width: calc(100% - 50% - 40px);
    margin: 0 0 0 40px;
}

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

.layout01.container .text-area {
    width: calc(100% - 50% - 40px);
    margin: 0 0 0 40px;
}

.layout01.container.reverse {
    flex-direction: row-reverse;
}

/* layout02
------------------------------------------------------ */
.layout02 .container+.container {
    margin: 80px 0 0;
}

.layout02 .text-area {
    margin: 40px 0 0;
    font-size: 18px;
    line-height: 2.4;
    text-align: center;
}

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

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

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

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

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

.img-row img {
    margin: 0 0 0 40px;
}

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

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

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

.img-row.col-2 figure img {
    width: 100%;
    margin: 0;
}

.img-row.col-2 figure figcaption {
    margin: 8px 0 0;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.table01 .img-row {
    margin: 8px 0 0 -16px;
}

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

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

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

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

.card01.col-2 .card-item {
    width: calc(100% / 2 - 40px);
    margin: 0 0 0 40px;
}

.card01.col-2 .card-item:nth-child(n + 3) {
    margin: 40px 0 0 40px;
}

.card01.col-2 .card-item.wide {
    width: calc(100% / 1.5 - 40px);
}

.card01.col-3 .card-item {
    width: calc(100% / 3 - 40px);
    margin: 0 0 0 24px;
}

.card01.col-3 .card-item:nth-child(n + 4) {
    margin: 40px 0 0 24px;
}

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

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

.card01 .card-item .card__title {
    margin: 0;
    padding: 8px 0;
    border-radius: 9999px;
    background: var(--bg03);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.card01 .card-item .card__text {
    margin: 16px 0 0;
}

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

.card02 .card-item {
    width: calc(100% / 3 - 40px);
    margin: 0 0 0 40px;
    background-color: var(--white);
}

.card02 .card-item:nth-child(n + 4) {
    margin: 40px 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__title {
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 9999px;
    background-color: var(--white);
    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;
}

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

.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;
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
    text-align: center;
}

.heading01 span {
    padding: 0 24px;
    position: relative;
}

.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: 12px 24px;
    border-left: 5px solid var(--primary);
    background-color: var(--gray01);
    font-size: 24px;
    font-weight: 700;
}

.heading02.top {
    margin: 0;
}

.heading03 {
    margin: 32px 0 0;
    padding: 0 0 4px;
    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;
}

.heading03.top {
    margin: 0;
}

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

.heading04.top {
    margin: 0;
}

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

.heading04.pink {
    background-color: var(--tertiary);
}

.heading05 {
    margin: 40px 0 0;
    padding: 8px 0;
    border-radius: 9999px;
    background: var(--bg03);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.heading05.top {
    margin: 0;
}

/* ボタン
------------------------------------------------------ */
.btn01 {
    margin: 40px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn01 a,
.btn01 input {
    min-width: 320px;
    margin: 0 auto;
    padding: 16px 40px 18px;
    cursor: pointer;
    border-radius: 8px;
    background: var(--secondary);
    display: block;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    -webkit-appearance: none;
}

.btn01 a:hover,
.btn01 input:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha( opacity=70 )";
}

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

.table01 thead th {
    padding: 16px;
    border-top: 1px solid var(--border01);
    border-right: 1px solid var(--border01);
    border-left: 1px solid var(--border01);
    background: var(--secondary);
    font-weight: 700;
    text-align: center;
    vertical-align: top;
}

.table01 th {
    width: 23%;
    padding: 16px;
    border-top: 1px solid var(--border01);
    border-left: 1px solid var(--border01);
    background: var(--secondary);
    font-weight: 700;
    text-align: left;
    vertical-align: top;
}

.table01.yellow th,
.table01 th.yellow {
    background: var(--bg02);
}

.table01 th:first-child {
    width: 23%;
}

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

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

.table01 td {
    width: 77%;
    padding: 16px;
    border: 1px solid var(--border01);
    background: var(--white);
    vertical-align: middle;
}

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

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

.table01 td .title {
    font-weight: 700;
}

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

.table01 td a:not([href^="tel:"]) {
    font-weight: 700;
    color: var(--black);
    text-decoration: underline;
}

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

.table01 td ul li {
    padding: 0;
    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 .note {
    margin: 8px 0 0;
    font-size: 14px;
}

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

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

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

.table01 td .btn01 {
    justify-content: flex-start;
}

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

/* リスト
------------------------------------------------------ */
.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;
    text-indent: 0;
}

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

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

.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: 40px 0 0;
    font-size: 40px;
    text-align: center;
}

.lead02 {
    margin: 40px 0 0;
    font-size: 32px;
    text-align: center;
}

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

.text01.top {
    margin: 0;
}

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

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

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

.text-link:hover {
    text-decoration: none;
}

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

/* セクション・ユニット
------------------------------------------------------ */
.section+.section {
    margin: 64px 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-header:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha( opacity=70 )";
}

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

/*================================================================
# トップページ
================================================================ */
/* mv
------------------------------------------------------ */
.mv {
    margin: 0;
    position: relative;
}

.slider .slick-slide {
    width: 64vw;
    max-width: 1000px;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.mv .slider .slick-slide {
    margin: 0 8px;
}

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

.slider .slick-slide img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    display: block;
    object-fit: cover;
}

.slider .slick-arrow {
    width: 60px;
    height: 60px;
    margin: auto;
    cursor: pointer;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    border: none;
    border-radius: 50%;
    outline: none;
    background-color: var(--white);
    position: absolute;
    top: 0;
    bottom: 0;
    font-size: 0;
    z-index: 1;
}

.slider .slick-arrow::before {
    width: 12px;
    height: 12px;
    position: absolute;
    content: "";
    top: 24px;
    display: block;
    transform: rotate(45deg);
}

.slider .slick-next {
    right: 40px;
}

.slider .slick-prev {
    left: 40px;
}

.slider .slick-next::before {
    border-top: 3px solid var(--black);
    border-right: 3px solid var(--black);
    left: 22px;
}

.slider .slick-prev::before {
    border-bottom: 3px solid var(--black);
    border-left: 3px solid var(--black);
    right: 22px;
}

.slider .slick-arrow:hover {
    background-color: var(--black);
}

.slider .slick-next:hover::before {
    border-top: 3px solid var(--white);
    border-right: 3px solid var(--white);
}

.slider .slick-prev:hover::before {
    border-bottom: 3px solid var(--white);
    border-left: 3px solid var(--white);
}

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

/* キャッチフレーズ
------------------------------------------------------ */
.catchphrase {
    padding: 40px 0;
    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(--bg03) 10px, transparent 0), linear-gradient(315deg, var(--bg03) 10px, transparent 0);
    background-size: 20px 20px;
    position: absolute;
    content: "";
    bottom: -20px;
    left: 0;
    z-index: 0;
}

.catchphrase .catchphrase01 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
}

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

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

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

.top-page-contents .news .news-list {
    margin: 24px 0 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;
}

.top-page-contents .news .news-list .link:hover {
    color: var(--secondary);
}

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

.top-page-contents .news .news-list .text {
    width: calc(100% - 100px);
}

/* ご紹介
------------------------------------------------------ */
.top-page-contents .introduction-list {
    margin: 40px 0 0 -40px;
    display: flex;
    flex-wrap: wrap;
}

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

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

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

.top-page-contents .introduction-list .link:hover {
    opacity: 0.8;
}

.top-page-contents .introduction-list .img img {
    border: 8px solid var(--secondary);
    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: 7px;
    left: 0;
}

/* バナー
------------------------------------------------------ */
.top-page-contents .ban {
    padding: 80px 0 64px;
    background-color: var(--bg03);
}

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

.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% / 5 - 24px);
    max-width: 227px;
    margin: 0 0 0 24px;
}

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

.top-page-contents .ban .link:hover {
    opacity: 0.8;
}

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

/*================================================================
# 園について
================================================================ */
.about-page-contents .philosophy .box {
    margin: 40px 0 0;
    padding: 40px;
    border: 3px solid var(--secondary);
    border-radius: 10px;
    background-color: var(--white);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: 500;
}

.about-page-contents .philosophy .box .about_illust01 {
    position: absolute;
    right: -24px;
    bottom: -24px;
}

.about-page-contents .policy .box {
    width: 80%;
    margin: 40px auto 0;
    padding: 64px;
    border-radius: 10px;
    background-color: var(--bg02);
    position: relative;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
}

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

.about-page-contents .policy .box .container {
    width: 100%;
    display: flex;
    align-items: center;
}

.about-page-contents .policy .box .container .img-area {
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-page-contents .policy .box .container .img-area img {
    position: absolute;
}

.about-page-contents .policy .box .container .text-area {
    width: 65%;
    padding: 0 0 0 24px;
}

/*================================================================
# 園の特色
================================================================ */
.concept-page-contents .features .box {
    width: 100%;
    margin: 40px auto 0;
    padding: 24px 40px;
    border: 3px solid var(--secondary);
    border-radius: 10px;
    background-color: var(--white);
    position: relative;
    display: flex;
    align-items: center;
}

.concept-page-contents .features .box+.box {
    margin: 24px auto 0;
}

.concept-page-contents .features .box .container {
    width: 100%;
    display: flex;
    align-items: center;
}

.concept-page-contents .features .box .container .img-area {
    width: 200px;
    height: 200px;
    border-radius: 9999px;
    background-color: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
}

.concept-page-contents .features .box .container .text-area {
    width: calc(100% - 200px);
    padding: 0 0 0 40px;
}

.concept-page-contents .features .box .container .text-area .title {
    font-size: 24px;
    font-weight: 700;
}

.concept-page-contents .features .box .container .text-area .text {
    margin: 16px 0 0;
}

.concept-page-contents .childcare-content .box {
    width: 100%;
    margin: 40px auto 0;
    padding: 24px 40px;
    border: 3px solid var(--secondary);
    border-radius: 10px;
    background-color: var(--white);
    text-align: center;
}

.concept-page-contents .childcare-content .box+.box {
    margin: 24px auto 0;
}

.concept-page-contents .childcare-content .box .title {
    font-size: 20px;
    font-weight: 700;
}

.concept-page-contents .childcare-content .box .title span {
    position: relative;
}

.concept-page-contents .childcare-content .box .title span:before {
    width: calc(50px / 2);
    height: calc(69px / 2);
    background: url(../img/title.png) no-repeat center top / contain;
    position: absolute;
    content: '';
    top: -5px;
    left: -40px;
}

.concept-page-contents .childcare-content .box .title span:after {
    width: calc(50px / 2);
    height: calc(69px / 2);
    background: url(../img/title.png) no-repeat center top / contain;
    position: absolute;
    content: '';
    top: -3px;
    right: -34px;
}

.concept-page-contents .childcare-content .box .text {
    margin: 8px 0 0;
}

/*================================================================
# 年間行事
================================================================ */

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

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

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

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

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

.schedule-table.yellow tr:nth-child(odd) td {
    background-color: var(--bg04);
}

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

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

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

.guide-page-contents .faq-section {
    margin: 64px 0 0;
}

.guide-page-contents .qa-item {
    border-bottom: 1px solid var(--gray01);
}

.guide-page-contents .qa-item:nth-child(n + 2) {
    margin: 16px 0 0;
}

.guide-page-contents .question {
    padding: 24px 24px 24px 56px;
    cursor: pointer;
    background-color: var(--bg02);
    position: relative;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s;
}

.guide-page-contents .question:hover {
    background-color: var(--bg03);
}

.guide-page-contents .question.active {
    background-color: var(--bg03);
}

.guide-page-contents .question::before {
    position: absolute;
    content: "Q";
    top: 10px;
    left: 20px;
    font-size: 32px;
    font-weight: 400;
    color: var(--primary);
}

.guide-page-contents .question::after {
    position: absolute;
    content: "+";
    top: 50%;
    right: 20px;
    font-size: 32px;
    font-weight: 300;
    transition: all 0.3s;
    transform: translateY(-50%);
}

.guide-page-contents .question.active::after {
    content: "-";
}

.guide-page-contents .answer {
    padding: 24px 24px 24px 56px;
    background-color: var(--white);
    position: relative;
    display: none;
}

.guide-page-contents .answer::before {
    position: absolute;
    content: "A";
    top: 16px;
    left: 22px;
    font-size: 32px;
    font-weight: 400;
    color: var(--tertiary);
}

.guide-page-contents .ul-list01 li::before {
    background-color: var(--tertiary);
}

.guide-page-contents .fee-table {
    width: 100%;
    margin: 10px 0;
    border-collapse: collapse;
}

.guide-page-contents .fee-table th,
.guide-page-contents .fee-table td {
    padding: 8px 16px;
    border: 1px solid var(--gray01);
    font-size: 16px;
}

.guide-page-contents .fee-table th {
    background-color: var(--bg03);
    text-align: center;
}

.guide-page-contents .fee-table td:nth-child(2),
.guide-page-contents .fee-table td.price {
    text-align: right;
}

.guide-page-contents .note {
    font-size: 0.9em;
    color: #666;
}

/*================================================================
# 採用
================================================================ */
.recruit-page-contents .faq dl {
    margin: 40px 0 0;
}

.recruit-page-contents .faq dl dt {
    padding: 8px 40px;
    border-bottom: 3px dotted var(--tertiary);
    font-size: 18px;
    font-weight: 700;
}

.recruit-page-contents .faq dl dd {
    margin: 16px 0 0;
    padding: 0 40px;
}

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

.news-page-contents .news .wrap {
    max-width: 800px;
}

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

.news-page-contents .news .news-list .link:hover {
    color: var(--secondary);
}

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

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

.wp-pagenavi {
    margin: 40px 0 0;
    display: flex;
    justify-content: center;
}

.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: bold;
}

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

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

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

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

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

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

.contact-table .table01 td ul {
    list-style: none;
    display: flex;
}

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

.contact-table .table01 td ul li+li {
    margin: 0;
}

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

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

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

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

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

.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(--gray01);
}

.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(--gray01);
    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(--gray01);
    outline: 0;
    background: #f1f1f1;
}

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

.select-wrap {
    width: 25%;
    border: 1px solid var(--gray01);
    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: 16px;
    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: var(--white);
    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(--black);
    border-bottom: 0.4rem solid var(--black);
    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 24px 5px 32px;
    cursor: pointer;
    position: relative;
    display: inline-block;
    line-height: 1;
    box-sizing: border-box;
}

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

.radio-btn::after {
    width: 10px;
    height: 10px;
    margin-top: -3px;
    opacity: 0;
    border-radius: 9999px;
    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 6rem 0.5rem 3rem;
    font-weight: bold;
    text-align: center;
}

.kojin-checkbox label:hover {
    cursor: pointer;
}

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

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

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

.submit-btn input:hover {
    cursor: pointer;
    background-color: var(--bg03);
}