@charset "UTF-8";
/* 
Theme Name: ◆◆◆site_name◆◆◆
Author: ◆◆◆site_name◆◆◆
Author URI: https://◆◆◆◆◆◆/
Version: 1.0
*/
/* CSS Document */
:root {
    --font-jp: "Zen Maru Gothic", sans-serif;
    --font-en: "Comfortaa", sans-serif;
    --color-gray: #F2F2F2;
    --color-black: #503535;
    --color-orange: #D97627;
    --header-height: 250px;
}
@media (max-width: 1280px) {
    :root {
        --header-height: 170px;
    }
}
@media (max-width: 768px) {
    :root {
        --header-height: 120px;
    }
}
@media (max-width: 500px) {
    :root {
        --header-height: 100px;
    }
}

.font-jp {
    font-family: var(--font-jp);
}

.font-en {
    font-family: var(--font-en);
}

html {
    font-size: 62.5%;
    scroll-padding-top: var(--header-height);
    scroll-behavior: smooth;
    -moz-text-size-adjust: 100%;
         text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
}
html body {
    min-height: 100%;
    font-size: 1.7rem;
    line-height: 1.6;
    font-family: var(--font-jp);
    color: var(--color-black);
    background: #ffffff;
    font-weight: 700;
}
@media (max-width: 768px) {
    html body {
        font-size: 1.4rem;
    }
}
html body main {
    margin-top: var(--header-height);
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease-in;
}
a:hover {
    text-decoration: none;
    opacity: 0.7;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

/* ------------------------------------- /
/   共通
/* ------------------------------------- */
.taC {
    text-align: center;
}

.taR {
    text-align: right;
}

.iB {
    display: inline-block;
}

.inner {
    width: min(100%, 1591px);
    margin: 0 auto;
    padding: 0 min(6%, 95.5px);
}
@media (max-width: 768px) {
    .inner {
        padding: 0 4%;
    }
}

.grecaptcha-badge {
    visibility: hidden;
}

@media (max-width: 768px) {
    .pc {
        display: none;
    }
}

.sp {
    display: none;
}
@media (max-width: 768px) {
    .sp {
        display: block;
    }
}

/* ------------------------------------- /
/   menu-trigger
/* ------------------------------------- */
.menu-trigger {
    display: none;
    width: 40px;
    height: 24px;
    background: none;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 35px;
    z-index: 100001;
    padding-block-end: 0;
    padding-block-start: 0;
    --trigger-width: 30px;
    --trigger-interval: 8px;
}
.menu-trigger.opened span {
    animation-duration: 0.6s;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
.menu-trigger.opened span:nth-of-type(1) {
    animation-name: menu-close_01;
}
.menu-trigger.opened span:nth-of-type(2) {
    animation-name: menu-close_02;
}
.menu-trigger.opened span:nth-of-type(3) {
    animation-name: menu-close_03;
}
.menu-trigger.active span {
    background-color: var(--color-black);
}
.menu-trigger.active span:nth-of-type(1) {
    animation-name: menu-open_01;
}
.menu-trigger.active span:nth-of-type(2) {
    animation-name: menu-open_02;
}
.menu-trigger.active span:nth-of-type(3) {
    animation-name: menu-open_03;
}
@media (max-width: 1280px) {
    .menu-trigger {
        display: block;
    }
}
@media (max-width: 768px) {
    .menu-trigger {
        --trigger-width: 22px;
        --trigger-interval: 6px;
        top: 23px;
        right: 8px;
    }
}
.menu-trigger span {
    display: inline-block;
    width: var(--trigger-width);
    height: 1px;
    background-color: var(--color-black);
    position: absolute;
    left: calc(50% - var(--trigger-width) / 2);
    transition-duration: 0.6s;
}
.menu-trigger span:nth-of-type(1) {
    top: calc(50% - var(--trigger-interval));
}
.menu-trigger span:nth-of-type(2) {
    top: calc(50% + var(--trigger-interval));
}
.menu-trigger span:nth-of-type(3) {
    top: 50%;
}
@keyframes menu-open_01 {
    0% {
        top: calc(50% - var(--trigger-interval));
        transform: rotate(0deg);
    }
    33.3333% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% - 0px);
        transform: rotate(45deg);
    }
}
@keyframes menu-close_01 {
    0% {
        top: calc(50% - 0px);
        transform: rotate(45deg);
    }
    33.3333% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% - var(--trigger-interval));
        transform: rotate(0deg);
    }
}
@keyframes menu-open_03 {
    0% {
        width: var(--trigger-width);
        left: calc(50% - var(--trigger-width) / 2);
    }
    66.6666% {
        width: var(--trigger-width);
        left: calc(50% - var(--trigger-width) / 2);
    }
    70% {
        width: 0;
        left: calc(50% - 0px);
    }
    100% {
        width: 0;
        left: calc(50% - 0px);
    }
}
@keyframes menu-close_03 {
    0% {
        width: 0;
        left: calc(50% - 0px);
    }
    66.6666% {
        width: var(--trigger-width);
        left: calc(50% - var(--trigger-width) / 2);
    }
    70% {
        width: var(--trigger-width);
        left: calc(50% - var(--trigger-width) / 2);
    }
    100% {
        width: var(--trigger-width);
        left: calc(50% - var(--trigger-width) / 2);
    }
}
@keyframes menu-open_02 {
    0% {
        top: calc(50% + var(--trigger-interval));
        transform: rotate(0deg);
    }
    33.3333% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% + 0px);
        transform: rotate(-45deg);
    }
}
@keyframes menu-close_02 {
    0% {
        top: calc(50% + 0px);
        transform: rotate(-45deg);
    }
    33.3333% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% + var(--trigger-interval));
        transform: rotate(0deg);
    }
}

/* ------------------------------------- /
/  header
/* ------------------------------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: var(--header-height);
    padding: 0 30px;
    background: #fff;
}
@media (max-width: 768px) {
    header {
        padding: 0 15px;
    }
}
header.hide {
    height: calc(var(--header-height) - 170px);
}
header.hide .header__upper {
    display: none;
}
header .header__upper {
    height: 170px;
    position: relative;
}
@media (max-width: 1280px) {
    header .header__upper {
        height: var(--header-height);
    }
}
header .header__upper .header__logo {
    width: 83px;
    aspect-ratio: 83/67;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}
@media (max-width: 768px) {
    header .header__upper .header__logo {
        top: 10px;
        width: 50px;
    }
}
header .header__upper .header__banner__area {
    position: absolute;
    width: 754px;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 1280px) {
    header .header__upper .header__banner__area {
        transform: translateX(-50%);
        width: 660px;
    }
}
@media (max-width: 768px) {
    header .header__upper .header__banner__area {
        bottom: 9px;
        transform: translateX(-50%);
        width: 100%;
    }
}
header .header__upper .header__banner__area a {
    padding: 0 17px 0 15px;
}
@media (max-width: 768px) {
    header .header__upper .header__banner__area a {
        padding: 0 5px 0 4px;
    }
}
header .header__upper .header__banner__area a:not(:last-child) {
    background-image: radial-gradient(circle, var(--color-orange) 2px, transparent 2px);
    background-position: right top;
    background-repeat: repeat-y;
    background-size: 4px 10px;
}
@media (max-width: 768px) {
    header .header__upper .header__banner__area a:not(:last-child) {
        background-image: radial-gradient(circle, var(--color-orange) 0.5px, transparent 0.5px);
        background-size: 1px 3px;
    }
}
header .header__menu {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2.8vw;
    font-weight: 700;
    font-size: 1.6rem;
}
header .header__menu li {
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 1400px) {
    header .header__menu {
        gap: 20px;
    }
}
@media (max-width: 1280px) {
    header .header__menu {
        display: none;
    }
}
header .header__menu .sub {
    position: relative;
    padding-right: 17px;
    cursor: pointer;
}
header .header__menu .sub .sub__menu {
    display: none;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    background: #fff;
    font-size: 1.5rem;
    width: 180px;
}
header .header__menu .sub .sub__menu a {
    padding: 10px;
}
header .header__menu .sub:hover .sub__menu {
    display: block;
}
header .header__menu .sub::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 14px;
    aspect-ratio: 14/12;
    background: url(../img/common/header_sub.svg) center/100% no-repeat;
}
.nav {
    display: none;
}
@media (max-width: 1280px) {
    .nav {
        display: flex;
        justify-content: center;
        width: min(100%, 400px);
        height: 100vh;
        background: #FFFBF0;
        overflow: auto;
        position: fixed;
        top: 0;
        right: 0;
        transition-duration: 0.8s;
        transition-delay: 0.4s;
        transform: translateX(100%);
        z-index: 999;
        padding: 80px 45px 0;
    }
    .nav.active {
        transform: translateX(0);
        transition-delay: 0s;
    }
    .nav.active .wrapper {
        transition-delay: 0.8s;
        opacity: 1;
    }
    .nav .wrapper {
        opacity: 0;
        transition-duration: 0.4s;
    }
    .nav .wrapper .nav__menu {
        display: flex;
        flex-wrap: wrap;
    }
    .nav .wrapper .nav__menu li {
        width: 50%;
        padding: 10px 0;
    }
    .nav .wrapper .nav__menu .sub {
        width: 100%;
        position: relative;
    }
    .nav .wrapper .nav__menu .sub__menu {
        display: none;
        background: #fff;
        font-size: 1.5rem;
        padding-left: 1em;
    }
    .nav .wrapper .nav__menu .sub__menu li {
        width: 100%;
    }
    .nav .wrapper .nav__menu .sub .sub__menu a {
        padding: 10px;
    }
    .nav .wrapper .nav__menu .sub.js-open .sub__menu {
        display: block;
    }
    .nav .wrapper .nav__menu .sub::after {
        content: "";
        position: absolute;
        top: 0;
        transform: translateY(100%);
        right: 0;
        width: 14px;
        aspect-ratio: 14/12;
        background: url(../img/common/header_sub.svg) center/100% no-repeat;
    }
    .nav .wrapper .btn__300 {
        margin-top: 25px;
    }
    .nav .wrapper .nav__logo {
        display: block;
        margin: 30px auto 0;
        width: min(249px, 100%);
    }
}

/* ------------------------------------- /
/  footer
/* ------------------------------------- */
footer {
    position: relative;
    background: url(../img/common/footer_bg.svg) center top/cover no-repeat;
}
footer::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 19%;
    width: 11%;
    aspect-ratio: 203/95;
    background: url(../img/common/footer_bg_1.svg) center/100% no-repeat;
}
@media (max-width: 768px) {
    footer::before {
        left: 8%;
        width: 18%;
        top: 0;
    }
}
footer::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 19%;
    width: 11%;
    aspect-ratio: 217/126;
    background: url(../img/common/footer_bg_2.svg) center/100% no-repeat;
}
@media (max-width: 768px) {
    footer::after {
        right: 8%;
        width: 18%;
        top: 0;
    }
}
footer .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 70px;
}
@media (max-width: 768px) {
    footer .inner {
        gap: 30px;
    }
}
footer .inner .footer__logo {
    width: 35%;
}
@media (max-width: 768px) {
    footer .inner .footer__logo {
        width: 238px;
    }
}
footer .inner .link__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
footer .inner .privacy__link {
    font-size: 1.8rem;
}
@media (max-width: 768px) {
    footer .inner .privacy__link {
        font-size: 1.4rem;
    }
}
footer .inner .copyright {
    font-size: 1.6rem;
}
@media (max-width: 768px) {
    footer .inner .copyright {
        font-size: 1.2rem;
    }
}

/* ------------------------------------- /
/  共通ブロック
/* ------------------------------------- */
.lower__header {
    aspect-ratio: 1920/340;
    background: url(../img/common/lower_header_bg.svg) top center/100% no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 768px) {
    .lower__header {
        aspect-ratio: 390/117;
        background: url(../img/common/lower_header_bg_sp.svg) top center/100% no-repeat;
    }
}
.lower__header .inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media (max-width: 768px) {
    .lower__header .inner {
        padding-bottom: 20px;
    }
}
.lower__header .inner .h1__en {
    font-family: var(--font-en);
    font-size: 3rem;
    color: var(--color-orange);
    line-height: 1.1;
}
@media (max-width: 1280px) {
    .lower__header .inner .h1__en {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .lower__header .inner .h1__en {
        font-size: 2rem;
    }
}
.lower__header .inner h1 {
    font-size: 4rem;
    font-weight: inherit;
    line-height: 1.45;
}
@media (max-width: 1280px) {
    .lower__header .inner h1 {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .lower__header .inner h1 {
        font-size: 1.4rem;
    }
}

.hoikuen__header {
    position: relative;
}
.hoikuen__header img {
    -o-object-fit: cover;
       object-fit: cover;
    min-height: 470px;
}
@media (max-width: 768px) {
    .hoikuen__header img {
        min-height: unset;
    }
}
.hoikuen__header .abs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hoikuen__header .abs .inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 50px;
    gap: 9px;
    text-align: center;
}
@media (max-width: 1280px) {
    .hoikuen__header .abs .inner {
        gap: 5px;
    }
}
@media (max-width: 768px) {
    .hoikuen__header .abs .inner {
        padding-bottom: 10px;
    }
}
.hoikuen__header .abs .inner .h1__en {
    font-size: clamp(2rem, 1.56vw, 3rem);
    font-family: var(--font-en);
    color: var(--color-orange);
    letter-spacing: 0.1em;
    line-height: 1.1;
}
@media (max-width: 768px) {
    .hoikuen__header .abs .inner .h1__en {
        font-size: 1.2rem;
    }
}
.hoikuen__header .abs .inner h1 {
    font-size: clamp(2.6rem, -0.2rem + 2.19vw, 4rem);
    font-weight: 700;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .hoikuen__header .abs .inner h1 {
        font-size: 1.4rem;
    }
}

.bottom__breadcrumb .breadcrumb {
    display: flex;
    flex-wrap: wrap;
}
.bottom__breadcrumb .breadcrumb li:not(:last-child) {
    padding-right: 60px;
    position: relative;
}
@media (max-width: 1280px) {
    .bottom__breadcrumb .breadcrumb li:not(:last-child) {
        padding-right: 46px;
    }
}
@media (max-width: 768px) {
    .bottom__breadcrumb .breadcrumb li:not(:last-child) {
        padding-right: 25px;
    }
}
.bottom__breadcrumb .breadcrumb li:not(:last-child)::before {
    content: "";
    position: absolute;
    width: 12px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #F77E0E;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
}
@media (max-width: 1280px) {
    .bottom__breadcrumb .breadcrumb li:not(:last-child)::before {
        width: 10px;
        right: 18px;
    }
}
@media (max-width: 768px) {
    .bottom__breadcrumb .breadcrumb li:not(:last-child)::before {
        width: 9px;
        right: 8px;
    }
}

.btn__300 {
    display: flex;
    align-items: center;
    width: 300px;
    height: 70px;
    border-radius: 10px;
    background: var(--color-orange);
    padding: 20px 38px;
    color: #fff;
    font-size: 2rem;
    margin: 0 auto;
    position: relative;
}
@media (max-width: 768px) {
    .btn__300 {
        width: 260px;
        height: 50px;
        border-radius: 5px;
        padding: 10px 20px;
        font-size: 1.6rem;
    }
}
.btn__300::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 14px;
    aspect-ratio: 14/12;
    background: url(../img/common/btn_arrow_wh.svg) center/contain no-repeat;
}
@media (max-width: 768px) {
    .btn__300::before {
        right: 12px;
        width: 10px;
    }
}

.posts__container .inner {
    display: flex;
    flex-wrap: wrap;
    gap: 80px 5%;
}
@media (max-width: 1280px) {
    .posts__container .inner {
        gap: 60px 3%;
    }
}
@media (max-width: 768px) {
    .posts__container .inner {
        gap: 30px 2%;
    }
}
.posts__container .inner .post__box {
    width: 30%;
}
@media (max-width: 1280px) {
    .posts__container .inner .post__box {
        width: 31.3333333333%;
    }
}
@media (max-width: 768px) {
    .posts__container .inner .post__box {
        width: 49%;
    }
}
@media (max-width: 500px) {
    .posts__container .inner .post__box {
        width: 100%;
    }
}
.posts__container .inner .post__box .thumbnail img {
    border-radius: 20px;
    aspect-ratio: 415/278;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
@media (max-width: 768px) {
    .posts__container .inner .post__box .thumbnail img {
        border-radius: 10px;
    }
}
.posts__container .inner .post__box .day__cateogry__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}
@media (max-width: 1280px) {
    .posts__container .inner .post__box .day__cateogry__container {
        gap: 10px;
    }
}
@media (max-width: 768px) {
    .posts__container .inner .post__box .day__cateogry__container .day {
        font-size: 1.2rem;
    }
}
.posts__container .inner .post__box .day__cateogry__container .category {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
@media (max-width: 1280px) {
    .posts__container .inner .post__box .day__cateogry__container .category {
        gap: 6px;
    }
}
.posts__container .inner .post__box .day__cateogry__container .category span {
    color: #fff;
    background: var(--color-orange);
    border-radius: 15px;
    height: 30px;
    padding: 0 13px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 1280px) {
    .posts__container .inner .post__box .day__cateogry__container .category span {
        height: 25px;
        padding: 0 9px;
        font-size: 1.2rem;
    }
}

.news__container .inner .news__list .swiper-slide {
    padding: 0 20px;
}
@media (max-width: 1280px) {
    .news__container .inner .news__list .swiper-slide {
        padding: 0 10px;
    }
}
.news__container .inner .news__list .swiper-button-next,
.news__container .inner .news__list .swiper-button-prev {
    top: 25vw;
}
.news__container .inner .news__list .swiper-button-next::after {
    content: "";
    width: 11px;
    aspect-ratio: 11/10;
    background: url(../img/common/swiper_next.svg) center/contain no-repeat;
}
.news__container .inner .news__list .swiper-button-prev::after {
    content: "";
    width: 11px;
    aspect-ratio: 11/10;
    background: url(../img/common/swiepr_prev.svg) center/contain no-repeat;
}
.news__container .inner .news__list a .thumbnail img {
    border-radius: 20px;
    aspect-ratio: 415/278;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
@media (max-width: 1280px) {
    .news__container .inner .news__list a .thumbnail img {
        border-radius: 10px;
    }
}
.news__container .inner .news__list a .day__tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}
@media (max-width: 768px) {
    .news__container .inner .news__list a .day__tags .day {
        font-size: 1.2rem;
    }
}
.news__container .inner .news__list a .day__tags .categories {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.news__container .inner .news__list a .day__tags .categories span {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    padding: 0 13px;
    background: var(--color-orange);
    border-radius: 15px;
    color: #fff;
}
@media (max-width: 768px) {
    .news__container .inner .news__list a .day__tags .categories span {
        height: 25px;
        font-size: 1.2rem;
    }
}

.download .link__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex: wrap;
    gap: 10px 30px;
}
.download .link__container a {
    padding: 10px;
    border: 3px solid #fff2d3;
    border-radius: 10px;
}

/* ------------------------------------- /
/  トップページ
/* ------------------------------------- */
.page-template-front-page .h2__en {
    font-size: 6rem;
    font-weight: 700;
    font-family: var(--font-en);
    color: var(--color-orange);
    letter-spacing: 0.1em;
    display: block;
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
    line-height: 1.1;
}
@media (max-width: 1280px) {
    .page-template-front-page .h2__en {
        font-size: 4rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .h2__en {
        font-size: 2.7rem;
    }
}
.page-template-front-page h2 {
    font-size: 2.4rem;
    font-weight: 700;
    display: block;
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
    line-height: 1.5;
}
@media (max-width: 1280px) {
    .page-template-front-page h2 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page h2 {
        font-size: 1.6rem;
    }
}
.page-template-front-page .mv {
    position: relative;
    z-index: 0;
}
.page-template-front-page .mv .mv__bg {
    position: absolute;
    z-index: -1;
}
.page-template-front-page .mv h1 {
    position: absolute;
    color: #fff;
    font-weight: 900;
    font-size: clamp(3rem, 0.333rem + 3.47vw, 7rem);
    text-align: center;
    text-shadow: 0px 3px 30px rgba(41, 0, 0, 0.7);
    right: 5.6%;
    bottom: 20%;
    line-height: 1.4;
    z-index: 1;
}
@media (max-width: 768px) {
    .page-template-front-page .mv h1 {
        right: 50%;
        transform: translateX(50%);
        width: 100%;
        font-size: clamp(1.8rem, 0.655rem + 3.05vw, 3rem);
        text-shadow: 0px 2px 10px rgba(41, 0, 0, 0.7);
    }
}
.page-template-front-page .about {
    background: #FFFBF0;
    position: relative;
    overflow: hidden;
    z-index: 0;
}
.page-template-front-page .about .about__top, .page-template-front-page .about .about__bottom {
    background: #fff;
    position: relative;
    z-index: -2;
}
@media (max-width: 768px) {
    .page-template-front-page .about .about__top {
        padding-top: 60px;
    }
}
.page-template-front-page .about .abs {
    position: absolute;
    z-index: -1;
}
.page-template-front-page .about .about__1 {
    top: 0;
    left: 5%;
    width: 25%;
}
@media (max-width: 768px) {
    .page-template-front-page .about .about__1 {
        width: 32%;
        left: 7%;
    }
}
.page-template-front-page .about .about__2 {
    top: 11%;
    right: -2%;
    width: 30%;
}
@media (max-width: 768px) {
    .page-template-front-page .about .about__2 {
        display: none;
    }
}
.page-template-front-page .about .about__3 {
    top: 48%;
    left: -2%;
    width: 18%;
}
@media (max-width: 768px) {
    .page-template-front-page .about .about__3 {
        top: 15%;
        left: 4%;
    }
}
.page-template-front-page .about .about__4 {
    bottom: 0%;
    left: 14%;
    width: 15%;
}
@media (max-width: 768px) {
    .page-template-front-page .about .about__4 {
        bottom: unset;
        left: unset;
        top: 16%;
        right: 3%;
        width: 16%;
    }
}
.page-template-front-page .about .about__5 {
    bottom: 0%;
    right: 12%;
    width: 18%;
}
@media (max-width: 768px) {
    .page-template-front-page .about .about__5 {
        display: none;
    }
}
.page-template-front-page .about .about__6 {
    top: 0;
    right: 28%;
    width: 11%;
}
@media (max-width: 768px) {
    .page-template-front-page .about .about__6 {
        width: 16%;
        top: 6%;
        right: 18%;
    }
}
.page-template-front-page .about .about__7 {
    top: 45%;
    left: 12%;
    width: 13%;
}
@media (max-width: 768px) {
    .page-template-front-page .about .about__7 {
        display: none;
    }
}
.page-template-front-page .about .about__8 {
    bottom: 0;
    left: 8%;
    width: 3.5%;
}
@media (max-width: 768px) {
    .page-template-front-page .about .about__8 {
        width: 7%;
        bottom: 3%;
    }
}
.page-template-front-page .about .about__9 {
    bottom: 0;
    right: 5%;
    width: 9.5%;
}
@media (max-width: 768px) {
    .page-template-front-page .about .about__9 {
        width: 13%;
        bottom: 3%;
        right: 8%;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .about .inner {
        padding-top: 40px;
        padding-bottom: 60px;
    }
}
.page-template-front-page .about .inner h3 {
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--color-orange);
    text-align: center;
    line-height: 1.4;
}
@media (max-width: 1280px) {
    .page-template-front-page .about .inner h3 {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .about .inner h3 {
        font-size: 2rem;
    }
}
.page-template-front-page .about .inner .txt {
    font-size: 2rem;
    line-height: 2.3;
    text-align: center;
}
@media (max-width: 1280px) {
    .page-template-front-page .about .inner .txt {
        font-size: 1.7rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .about .inner .txt {
        font-size: 1.4rem;
        text-align: left;
    }
}
.page-template-front-page .birthday .inner {
    display: flex;
    justify-content: center;
    gap: 80px;
}
@media (max-width: 1280px) {
    .page-template-front-page .birthday .inner {
        gap: 40px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .birthday .inner {
        gap: 30px;
        flex-direction: column;
    }
}
.page-template-front-page .birthday .inner .box {
    width: min(415px, 100%);
    line-height: 1.9;
    text-align: center;
}
@media (max-width: 768px) {
    .page-template-front-page .birthday .inner .box {
        text-align: left;
    }
}
.page-template-front-page .birthday .inner .box h3 {
    font-size: 3.8rem;
    line-height: 1.4;
    font-weight: 700;
    color: var(--color-orange);
    text-align: center;
}
@media (max-width: 1280px) {
    .page-template-front-page .birthday .inner .box h3 {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .birthday .inner .box h3 {
        font-size: 2rem;
    }
}
.page-template-front-page .birthday .inner .box img {
    border-radius: 20px;
}
.page-template-front-page .circle .inner {
    display: flex;
    gap: 5%;
}
@media (max-width: 768px) {
    .page-template-front-page .circle .inner {
        gap: 15px;
    }
}
.page-template-front-page .circle .inner .box {
    width: 30%;
}
@media (max-width: 768) {
    .page-template-front-page .circle .inner .box {
        width: calc((100% - 30px) / 3);
    }
}
.page-template-front-page .circle .inner .box h3 {
    font-size: 3.8rem;
    color: var(--color-orange);
    font-weight: 700;
    text-align: center;
}
@media (max-width: 1280px) {
    .page-template-front-page .circle .inner .box h3 {
        font-size: 2.6rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .circle .inner .box h3 {
        font-size: 1.6rem;
    }
}
.page-template-front-page .top__bottom__banner .inner {
    display: flex;
    justify-content: center;
    gap: 40px;
}
@media (max-width: 1280px) {
    .page-template-front-page .top__bottom__banner .inner {
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__bottom__banner .inner {
        flex-direction: column;
    }
}
.page-template-front-page .top__bottom__banner .inner a {
    width: calc((100% - 40px) / 2);
    border: 10px solid var(--color-orange);
    border-radius: 40px;
    font-size: 2.4rem;
    line-height: 1.5;
    text-align: center;
}
@media (max-width: 1280px) {
    .page-template-front-page .top__bottom__banner .inner a {
        width: calc((100% - 20px) / 2);
        border-radius: 20px;
        font-size: 1.9rem;
        border: 8px solid var(--color-orange);
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__bottom__banner .inner a {
        width: 100%;
        border-radius: 10px;
        font-size: 1.4rem;
        border: 5px solid var(--color-orange);
    }
}
.page-template-front-page .top__bottom__banner .inner a.instagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px 20px;
}
.page-template-front-page .top__bottom__banner .inner a.instagram .upper {
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (max-width: 768px) {
    .page-template-front-page .top__bottom__banner .inner a.instagram {
        padding: 20px;
        flex-direction: row;
        justify-content: space-around;
    }
}
.page-template-front-page .top__bottom__banner .inner a.instagram .logo__instagram {
    width: min(50px, 100%);
}
@media (max-width: 1280px) {
    .page-template-front-page .top__bottom__banner .inner a.instagram .logo__instagram {
        width: min(35px, 100%);
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__bottom__banner .inner a.instagram .logo__instagram {
        width: min(23px, 100%);
    }
}
.page-template-front-page .top__bottom__banner .inner a.recruit {
    display: flex;
    align-items: center;
}
.page-template-front-page .top__bottom__banner .inner a.recruit .txt {
    width: 50%;
    text-align: center;
}
.page-template-front-page .top__bottom__banner .inner a.recruit img {
    width: 50%;
    border-radius: 0 30px 30px 0;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
@media (max-width: 1280px) {
    .page-template-front-page .top__bottom__banner .inner a.recruit img {
        border-radius: 0 14px 14px 0;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__bottom__banner .inner a.recruit img {
        border-radius: 0 7px 7px 0;
    }
}
.page-template-front-page .top__bottom__banner .inner a h3 {
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.5;
}
@media (max-width: 1280px) {
    .page-template-front-page .top__bottom__banner .inner a h3 {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__bottom__banner .inner a h3 {
        font-size: 2rem;
    }
}

/* ------------------------------------- /
/  お知らせ一覧ページ
/* ------------------------------------- */
.page-template-home .pagination .inner .pagination-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 2rem;
}
@media (max-width: 768px) {
    .page-template-home .pagination .inner .pagination-list {
        gap: 10px;
        font-size: 1.8rem;
    }
}
.page-template-home .pagination .inner .pagination-list li.num a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    aspect-ratio: 50/60;
    border-radius: 5px;
    background: #FFF2D3;
}
@media (max-width: 768px) {
    .page-template-home .pagination .inner .pagination-list li.num a {
        width: 40px;
    }
}
.page-template-home .pagination .inner .pagination-list li.current {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    aspect-ratio: 50/60;
    border-radius: 5px;
    color: #fff;
    background: var(--color-orange);
}
@media (max-width: 768px) {
    .page-template-home .pagination .inner .pagination-list li.current {
        width: 40px;
    }
}
.page-template-home .pagination .inner .pagination-list li.previous a {
    position: relative;
    display: block;
    width: 17px;
    aspect-ratio: 1;
}
.page-template-home .pagination .inner .pagination-list li.previous a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/common/home_previous.svg) center/100% no-repeat;
}
.page-template-home .pagination .inner .pagination-list li.next a {
    position: relative;
    display: block;
    width: 17px;
    aspect-ratio: 1;
}
.page-template-home .pagination .inner .pagination-list li.next a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/common/home_next.svg) center/100% no-repeat;
}

/* ------------------------------------- /
/  お知らせ単体ページ
/* ------------------------------------- */
.single-post .post .inner,
.page-template-page-single .post .inner {
    max-width: 1023px;
    padding: 0 min(6%, 62px);
}
.single-post .post .inner h1,
.page-template-page-single .post .inner h1 {
    font-size: 2.4rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .single-post .post .inner h1,
    .page-template-page-single .post .inner h1 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .single-post .post .inner h1,
    .page-template-page-single .post .inner h1 {
        font-size: 1.8rem;
    }
}
.single-post .post .inner .post__header,
.page-template-page-single .post .inner .post__header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}
@media (max-width: 768px) {
    .single-post .post .inner .post__header .date,
    .page-template-page-single .post .inner .post__header .date {
        font-size: 1.2rem;
    }
}
.single-post .post .inner .post__header .category,
.page-template-page-single .post .inner .post__header .category {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.single-post .post .inner .post__header .category span,
.page-template-page-single .post .inner .post__header .category span {
    background: var(--color-orange);
    color: #fff;
    height: 30px;
    border-radius: 15px;
    padding: 0 13px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 1280px) {
    .single-post .post .inner .post__header .category span,
    .page-template-page-single .post .inner .post__header .category span {
        padding: 0 9px;
        height: 25px;
        font-size: 1.2rem;
    }
}
.single-post .post .inner .post__content,
.page-template-page-single .post .inner .post__content {
    line-height: 1.9;
}
.single-post .post .inner .post__content h2, .single-post .post .inner .post__content h3, .single-post .post .inner .post__content h4, .single-post .post .inner .post__content h5,
.page-template-page-single .post .inner .post__content h2,
.page-template-page-single .post .inner .post__content h3,
.page-template-page-single .post .inner .post__content h4,
.page-template-page-single .post .inner .post__content h5 {
    font-weight: 700;
}
.single-post .post .inner .post__content h2,
.page-template-page-single .post .inner .post__content h2 {
    font-size: 2.4rem;
    margin: 30px 0 20px;
}
@media (max-width: 768px) {
    .single-post .post .inner .post__content h2,
    .page-template-page-single .post .inner .post__content h2 {
        margin: 20px 0 10px;
        font-size: 2rem;
    }
}
.single-post .post .inner .post__content h3,
.page-template-page-single .post .inner .post__content h3 {
    font-size: 2.2rem;
    margin: 30px 0 20px;
}
@media (max-width: 768px) {
    .single-post .post .inner .post__content h3,
    .page-template-page-single .post .inner .post__content h3 {
        margin: 20px 0 10px;
        font-size: 1.9rem;
    }
}
.single-post .post .inner .post__content h4,
.page-template-page-single .post .inner .post__content h4 {
    font-size: 2rem;
    margin: 20px 0 10px;
}
@media (max-width: 768px) {
    .single-post .post .inner .post__content h4,
    .page-template-page-single .post .inner .post__content h4 {
        margin: 10px 0 5px;
        font-size: 1.8rem;
    }
}
.single-post .post .inner .post__content h5,
.page-template-page-single .post .inner .post__content h5 {
    font-size: 1.8rem;
    margin: 20px 0 10px;
}
@media (max-width: 768px) {
    .single-post .post .inner .post__content h5,
    .page-template-page-single .post .inner .post__content h5 {
        margin: 10px 0 5px;
        font-size: 1.7rem;
    }
}
.single-post .post .inner .pagination,
.page-template-page-single .post .inner .pagination {
    font-size: 2rem;
    color: var(--color-orange);
}
@media (max-width: 768px) {
    .single-post .post .inner .pagination,
    .page-template-page-single .post .inner .pagination {
        font-size: 1.7rem;
    }
}
.single-post .post .inner .pagination .btn__return,
.page-template-page-single .post .inner .pagination .btn__return {
    width: 300px;
    height: 70px;
    border-radius: 10px;
    background: var(--color-orange);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
@media (max-width: 768px) {
    .single-post .post .inner .pagination .btn__return,
    .page-template-page-single .post .inner .pagination .btn__return {
        margin: 30px auto 0;
        width: 220px;
        height: 50px;
        border-radius: 5px;
    }
}
.single-post .post .inner .pagination .btn__return::before,
.page-template-page-single .post .inner .pagination .btn__return::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    width: 14px;
    aspect-ratio: 14/12;
    background: url(../img/common/return_wh.svg) center/contain no-repeat;
}
.single-post .post .inner .pagination .btn__return.sp,
.page-template-page-single .post .inner .pagination .btn__return.sp {
    display: none;
}
@media (max-width: 768px) {
    .single-post .post .inner .pagination .btn__return.sp,
    .page-template-page-single .post .inner .pagination .btn__return.sp {
        display: flex;
    }
}
@media (max-width: 768px) {
    .single-post .post .inner .pagination .btn__return.pc,
    .page-template-page-single .post .inner .pagination .btn__return.pc {
        display: none;
    }
}
.single-post .post .inner .pagination .wrapper,
.page-template-page-single .post .inner .pagination .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.single-post .post .inner .pagination .wrapper .next,
.page-template-page-single .post .inner .pagination .wrapper .next {
    position: relative;
    padding-right: 58px;
}
@media (max-width: 768px) {
    .single-post .post .inner .pagination .wrapper .next,
    .page-template-page-single .post .inner .pagination .wrapper .next {
        padding-right: 40px;
    }
}
.single-post .post .inner .pagination .wrapper .next::after,
.page-template-page-single .post .inner .pagination .wrapper .next::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 38px;
    aspect-ratio: 1;
    background: url(../img/common/next.svg) center/100% no-repeat;
}
@media (max-width: 768px) {
    .single-post .post .inner .pagination .wrapper .next::after,
    .page-template-page-single .post .inner .pagination .wrapper .next::after {
        width: 28px;
    }
}
.single-post .post .inner .pagination .wrapper .previous,
.page-template-page-single .post .inner .pagination .wrapper .previous {
    position: relative;
    padding-left: 58px;
}
@media (max-width: 768px) {
    .single-post .post .inner .pagination .wrapper .previous,
    .page-template-page-single .post .inner .pagination .wrapper .previous {
        padding-left: 40px;
    }
}
.single-post .post .inner .pagination .wrapper .previous::before,
.page-template-page-single .post .inner .pagination .wrapper .previous::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 38px;
    aspect-ratio: 1;
    background: url(../img/common/previous.svg) center/100% no-repeat;
}
@media (max-width: 768px) {
    .single-post .post .inner .pagination .wrapper .previous::before,
    .page-template-page-single .post .inner .pagination .wrapper .previous::before {
        width: 28px;
    }
}

/* ------------------------------------- /
/  プライバシーポリシー
/* ------------------------------------- */
.page-template-page-privacy .policy .inner {
    max-width: 1023px;
    padding: 0 min(6%, 62px);
    line-height: 1.9;
}
.page-template-page-privacy .policy .inner h2 {
    font-size: 3.8rem;
    font-weight: 700;
    text-align: center;
    color: var(--color-orange);
    line-height: 1.4;
}
@media (max-width: 1280px) {
    .page-template-page-privacy .policy .inner h2 {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-privacy .policy .inner h2 {
        font-size: 2.4rem;
    }
}

/* ------------------------------------- /
/  園の想い・理念
/* ------------------------------------- */
.page-template-page-philosophy .philosophy .inner h2 {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    color: var(--color-orange);
}
@media (max-width: 1280px) {
    .page-template-page-philosophy .philosophy .inner h2 {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-philosophy .philosophy .inner h2 {
        font-size: 2.4rem;
    }
}
.page-template-page-philosophy .philosophy .inner p {
    text-align: center;
    line-height: 1.9;
}
@media (max-width: 768px) {
    .page-template-page-philosophy .philosophy .inner p {
        text-align: left;
    }
}
.page-template-page-philosophy .philosophy .inner .btn {
    font-size: 2rem;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-orange);
    width: 340px;
    height: 70px;
    border-radius: 10px;
    margin: 0 auto;
    position: relative;
}
@media (max-width: 1280px) {
    .page-template-page-philosophy .philosophy .inner .btn {
        font-size: 1.8rem;
        width: 300px;
    }
}
@media (max-width: 768px) {
    .page-template-page-philosophy .philosophy .inner .btn {
        border-radius: 5px;
        height: 50px;
        font-size: 1.6rem;
        width: 280px;
    }
}
.page-template-page-philosophy .philosophy .inner .btn::before {
    content: "";
    position: absolute;
    width: 14px;
    aspect-ratio: 14/12;
    top: 50%;
    transform: translateY(-50%);
    right: 23px;
    background: url(../img/common/btn_arrow_wh.svg) center/contain no-repeat;
}
@media (max-width: 768px) {
    .page-template-page-philosophy .philosophy .inner .btn::before {
        width: 12px;
        right: 15px;
    }
}
.page-template-page-philosophy .childcare .inner {
    display: flex;
    justify-content: space-between;
    gap: 3%;
}
@media (max-width: 768px) {
    .page-template-page-philosophy .childcare .inner {
        flex-direction: column;
        gap: 30px;
    }
}
.page-template-page-philosophy .childcare .inner .box {
    position: relative;
    width: 48.5%;
    background: #FFFBF0;
    border-radius: 40px;
    padding: 75px 50px;
}
@media (max-width: 1280px) {
    .page-template-page-philosophy .childcare .inner .box {
        border-radius: 20px;
        padding: 50px 30px;
    }
}
@media (max-width: 768px) {
    .page-template-page-philosophy .childcare .inner .box {
        border-radius: 10px;
        width: 100%;
        padding: 30px 20px;
    }
}
.page-template-page-philosophy .childcare .inner .box.target::before {
    content: "";
    position: absolute;
    width: 36%;
    left: -9%;
    top: -6%;
    aspect-ratio: 245/130;
    background: url(../img/philosophy/childcare_1.webp) center/100% no-repeat;
}
@media (max-width: 768px) {
    .page-template-page-philosophy .childcare .inner .box.target::before {
        left: -2%;
    }
}
.page-template-page-philosophy .childcare .inner .box.policy::before {
    content: "";
    position: absolute;
    width: 26.8%;
    right: -9%;
    bottom: -6%;
    aspect-ratio: 182/120;
    background: url(../img/philosophy/childcare_2.webp) center/100% no-repeat;
}
@media (max-width: 768px) {
    .page-template-page-philosophy .childcare .inner .box.policy::before {
        right: -2%;
        bottom: -12%;
    }
}
@media (max-width: 500px) {
    .page-template-page-philosophy .childcare .inner .box.policy::before {
        bottom: -6%;
    }
}
.page-template-page-philosophy .childcare .inner .box h3 {
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    color: var(--color-orange);
}
@media (max-width: 1280px) {
    .page-template-page-philosophy .childcare .inner .box h3 {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-philosophy .childcare .inner .box h3 {
        font-size: 2rem;
    }
}
.page-template-page-philosophy .childcare .inner .box h4 {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
}
@media (max-width: 1280px) {
    .page-template-page-philosophy .childcare .inner .box h4 {
        font-size: 1.9rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-philosophy .childcare .inner .box h4 {
        font-size: 1.8rem;
    }
}
.page-template-page-philosophy .childcare .inner .box ul li {
    padding: 18px 0;
    background-image: radial-gradient(circle, var(--color-orange) 2px, transparent 2px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 10px 4px;
}
@media (max-width: 768px) {
    .page-template-page-philosophy .childcare .inner .box ul li {
        padding: 10px 0;
    }
}
.page-template-page-philosophy .childcare .inner .box .annotation {
    line-height: 2.9;
}
.page-template-page-philosophy .channel .inner {
    line-height: 1.9;
}
.page-template-page-philosophy .channel .inner .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
@media (max-width: 768px) {
    .page-template-page-philosophy .channel .inner .container {
        flex-direction: column;
        gap: 30px;
    }
}
.page-template-page-philosophy .channel .inner .container .left {
    width: 100%;
}
@media (max-width: 768px) {
    .page-template-page-philosophy .channel .inner .container .left {
        width: 100%;
    }
}
.page-template-page-philosophy .channel .inner .container .left h2 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-orange);
}
@media (max-width: 1280px) {
    .page-template-page-philosophy .channel .inner .container .left h2 {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-philosophy .channel .inner .container .left h2 {
        font-size: 2rem;
    }
}
.page-template-page-philosophy .channel .inner .container .left .img {
    position: relative;
}
.page-template-page-philosophy .channel .inner .container .left .img::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 54px;
    aspect-ratio: 54/38;
    background: url(../img/philosophy/logo_youtube.svg) center/contain no-repeat;
}
.page-template-page-philosophy .channel .inner .container .left .img img {
    width: min(255px, 100%);
    margin-left: auto;
}
.page-template-page-philosophy .channel .inner .container .right {
    border: 10px solid #D86C64;
    border-radius: 40px;
    width: 36%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.6;
    padding: 0 20px;
}
@media (max-width: 1280px) {
    .page-template-page-philosophy .channel .inner .container .right {
        border: 6px solid #D86C64;
        border-radius: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-page-philosophy .channel .inner .container .right {
        width: 100%;
    }
}
.page-template-page-philosophy .channel .inner .container .right .logo {
    width: 54px;
}
@media (max-width: 1280px) {
    .page-template-page-philosophy .channel .inner .container .right .logo {
        width: 40px;
    }
}
.page-template-page-philosophy .channel .inner .container .right .banner {
    width: min(341px, 100%);
}
.page-template-page-philosophy .channel .inner h3 {
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
}
@media (max-width: 1280px) {
    .page-template-page-philosophy .channel .inner h3 {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-philosophy .channel .inner h3 {
        font-size: 2rem;
    }
}

/* ------------------------------------- /
/  保育の特徴
/* ------------------------------------- */
.page-template-page-features {
    background: #FFFBF0;
}
.page-template-page-features h2 {
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--color-orange);
    text-align: center;
}
@media (max-width: 1280px) {
    .page-template-page-features h2 {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-features h2 {
        font-size: 2.4rem;
    }
}
.page-template-page-features .features {
    background: #fff;
}
.page-template-page-features .features .inner .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 3%;
}
@media (max-width: 1280px) {
    .page-template-page-features .features .inner .container {
        gap: 30px 3%;
    }
}
@media (max-width: 768px) {
    .page-template-page-features .features .inner .container {
        gap: 10px;
    }
}
.page-template-page-features .features .inner .container .box {
    width: 48.5%;
    background: #FFFBF0;
    border-radius: 40px;
    padding: 50px;
    line-height: 1.9;
    text-align: center;
    word-break: auto-phrase;
}
@media (max-width: 1280px) {
    .page-template-page-features .features .inner .container .box {
        border-radius: 20px;
        padding: 30px 20px;
    }
}
@media (max-width: 768px) {
    .page-template-page-features .features .inner .container .box {
        border-radius: 10px;
        width: 100%;
        padding: 10px;
    }
}
.page-template-page-features .features .inner .container .box h3 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-orange);
    text-align: center;
    line-height: 1.4;
}
@media (max-width: 1280px) {
    .page-template-page-features .features .inner .container .box h3 {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-features .features .inner .container .box h3 {
        font-size: 2rem;
    }
}
.page-template-page-features .features .inner .container .box p {
    margin-top: 40px;
}
@media (max-width: 1280px) {
    .page-template-page-features .features .inner .container .box p {
        margin-top: 25px;
    }
}
@media (max-width: 768px) {
    .page-template-page-features .features .inner .container .box p {
        margin-top: 10px;
    }
}
.page-template-page-features .features .inner > .txt {
    text-align: center;
}
@media (max-width: 768px) {
    .page-template-page-features .features .inner > .txt {
        text-align: left;
    }
}
.page-template-page-features .features .inner .lr__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 30px;
}
.page-template-page-features .features .inner .lr__container .img, .page-template-page-features .features .inner .lr__container .txt {
    width: 50%;
}
@media (max-width: 768px) {
    .page-template-page-features .features .inner .lr__container .img, .page-template-page-features .features .inner .lr__container .txt {
        width: 100%;
    }
}
.page-template-page-features .features .inner .lr__container .img img {
    border-radius: 40px;
}
@media (max-width: 1280px) {
    .page-template-page-features .features .inner .lr__container .img img {
        border-radius: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-page-features .features .inner .lr__container .img img {
        border-radius: 10px;
    }
}
.page-template-page-features .features .inner .lr__container .txt {
    line-height: 1.9;
}
.page-template-page-features .features .inner .lr__container .txt h3 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-orange);
    line-height: 1.4;
}
@media (max-width: 1280px) {
    .page-template-page-features .features .inner .lr__container .txt h3 {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-features .features .inner .lr__container .txt h3 {
        font-size: 2rem;
    }
}
.page-template-page-features .features .inner .lr__container:nth-child(2n+1) {
    flex-direction: row-reverse;
}
@media (max-width: 768px) {
    .page-template-page-features .features .inner .lr__container:nth-child(2n+1) {
        flex-direction: column;
    }
}
.page-template-page-features .features .inner .lr__container:nth-child(2n+1) .txt {
    padding-right: 7%;
}
@media (max-width: 768px) {
    .page-template-page-features .features .inner .lr__container:nth-child(2n+1) .txt {
        padding-right: unset;
    }
}
@media (max-width: 768px) {
    .page-template-page-features .features .inner .lr__container:nth-child(2n) {
        flex-direction: column;
    }
}
.page-template-page-features .features .inner .lr__container:nth-child(2n) .txt {
    padding-left: 7%;
}
@media (max-width: 768px) {
    .page-template-page-features .features .inner .lr__container:nth-child(2n) .txt {
        padding-left: unset;
    }
}
.page-template-page-features .day__flow {
    position: relative;
    background: #fff;
    z-index: 0;
    overflow: hidden;
    --column-gap-width: 13%;
    --center-span-width: 100px;
}
@media (max-width: 1280px) {
    .page-template-page-features .day__flow {
        --column-gap-width: 6%;
        --center-span-width: 80px;
    }
}
.page-template-page-features .day__flow .cloud_1 {
    position: absolute;
    z-index: -1;
    top: 11%;
    left: -2%;
    width: 25%;
    aspect-ratio: 477/175;
    background: url(../img/features/cloud_l.svg) center/100% no-repeat;
}
.page-template-page-features .day__flow .cloud_2 {
    position: absolute;
    z-index: -1;
    top: 48%;
    left: -7%;
    width: 25%;
    aspect-ratio: 477/175;
    background: url(../img/features/cloud_l.svg) center/100% no-repeat;
}
.page-template-page-features .day__flow .cloud_3 {
    position: absolute;
    z-index: -1;
    top: 84%;
    left: -2%;
    width: 25%;
    aspect-ratio: 477/175;
    background: url(../img/features/cloud_l.svg) center/100% no-repeat;
}
.page-template-page-features .day__flow .cloud_4 {
    position: absolute;
    z-index: -1;
    top: 1%;
    right: -1%;
    width: 30%;
    aspect-ratio: 572/210;
    background: url(../img/features/cloud_r.svg) center/100% no-repeat;
}
.page-template-page-features .day__flow .cloud_5 {
    position: absolute;
    z-index: -1;
    top: 54%;
    right: -5%;
    width: 30%;
    aspect-ratio: 572/210;
    background: url(../img/features/cloud_r.svg) center/100% no-repeat;
}
.page-template-page-features .day__flow .cloud_6 {
    position: absolute;
    z-index: -1;
    top: 74%;
    right: -1%;
    width: 30%;
    aspect-ratio: 572/210;
    background: url(../img/features/cloud_r.svg) center/100% no-repeat;
}
.page-template-page-features .day__flow .flow__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 20px;
}
.page-template-page-features .day__flow .flow_1 {
    position: absolute;
    z-index: -1;
    top: 17%;
    right: calc(50% + 500px);
    width: 23%;
    aspect-ratio: 1;
    background: url(../img/features/flow_1.webp) center/100% no-repeat;
}
@media (max-width: 1600px) {
    .page-template-page-features .day__flow .flow_1 {
        position: unset;
        width: calc((100% - 100px) / 6);
    }
}
@media (max-width: 768px) {
    .page-template-page-features .day__flow .flow_1 {
        width: calc((100% - 40px) / 3);
    }
}
.page-template-page-features .day__flow .flow_2 {
    position: absolute;
    z-index: -1;
    top: 47%;
    right: calc(50% + 479px);
    width: 15%;
    aspect-ratio: 1;
    background: url(../img/features/flow_2.webp) center/100% no-repeat;
}
@media (max-width: 1600px) {
    .page-template-page-features .day__flow .flow_2 {
        position: unset;
        width: calc((100% - 100px) / 6);
    }
}
@media (max-width: 768px) {
    .page-template-page-features .day__flow .flow_2 {
        width: calc((100% - 40px) / 3);
    }
}
.page-template-page-features .day__flow .flow_3 {
    position: absolute;
    z-index: -1;
    top: 66%;
    right: calc(50% + 557px);
    width: 22%;
    aspect-ratio: 1;
    background: url(../img/features/flow_3.webp) center/100% no-repeat;
}
@media (max-width: 1600px) {
    .page-template-page-features .day__flow .flow_3 {
        position: unset;
        width: calc((100% - 100px) / 6);
    }
}
@media (max-width: 768px) {
    .page-template-page-features .day__flow .flow_3 {
        width: calc((100% - 40px) / 3);
    }
}
.page-template-page-features .day__flow .flow_4 {
    position: absolute;
    z-index: -1;
    top: 16%;
    left: calc(50% + 553px);
    width: 18%;
    aspect-ratio: 1;
    background: url(../img/features/flow_4.webp) center/100% no-repeat;
}
@media (max-width: 1600px) {
    .page-template-page-features .day__flow .flow_4 {
        position: unset;
        width: calc((100% - 100px) / 6);
    }
}
@media (max-width: 768px) {
    .page-template-page-features .day__flow .flow_4 {
        width: calc((100% - 40px) / 3);
    }
}
.page-template-page-features .day__flow .flow_5 {
    position: absolute;
    z-index: -1;
    top: 38%;
    left: calc(50% + 425px);
    width: 24%;
    aspect-ratio: 1;
    background: url(../img/features/flow_5.webp) center/100% no-repeat;
}
@media (max-width: 1600px) {
    .page-template-page-features .day__flow .flow_5 {
        position: unset;
        width: calc((100% - 100px) / 6);
    }
}
@media (max-width: 768px) {
    .page-template-page-features .day__flow .flow_5 {
        width: calc((100% - 40px) / 3);
    }
}
.page-template-page-features .day__flow .flow_6 {
    position: absolute;
    z-index: -1;
    top: 68%;
    left: calc(50% + 571px);
    width: 22%;
    aspect-ratio: 1;
    background: url(../img/features/flow_6.webp) center/100% no-repeat;
}
@media (max-width: 1600px) {
    .page-template-page-features .day__flow .flow_6 {
        position: unset;
        width: calc((100% - 100px) / 6);
    }
}
@media (max-width: 768px) {
    .page-template-page-features .day__flow .flow_6 {
        width: calc((100% - 40px) / 3);
    }
}
.page-template-page-features .day__flow .inner {
    position: relative;
    max-width: 1023px;
    padding: 0 min(6%, 62px);
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .page-template-page-features .day__flow .inner {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-features .day__flow .inner {
        font-size: 1.4rem;
    }
}
.page-template-page-features .day__flow .inner .chart__header {
    display: flex;
    justify-content: space-between;
}
.page-template-page-features .day__flow .inner .chart__header .left, .page-template-page-features .day__flow .inner .chart__header .right {
    text-align: center;
    padding: 25px 5px;
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 10px 4px;
    width: calc((100% - var(--center-span-width) - var(--column-gap-width) * 2) / 2);
}
@media (max-width: 1280px) {
    .page-template-page-features .day__flow .inner .chart__header .left, .page-template-page-features .day__flow .inner .chart__header .right {
        padding: 15px 5px;
    }
}
.page-template-page-features .day__flow .inner .chart__header .left {
    color: #D97627;
    background-image: radial-gradient(circle, #d97627 2px, transparent 2px);
}
.page-template-page-features .day__flow .inner .chart__header .right {
    color: #455AB2;
    background-image: radial-gradient(circle, #455ab2 2px, transparent 2px);
}
.page-template-page-features .day__flow .inner .chart__body {
    margin: 50px auto 0;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    -moz-column-gap: 13%;
         column-gap: 13%;
}
@media (max-width: 1280px) {
    .page-template-page-features .day__flow .inner .chart__body {
        margin: 30px auto 0;
        -moz-column-gap: 6%;
             column-gap: 6%;
    }
}
.page-template-page-features .day__flow .inner .chart__body .sm {
    font-size: 1.7rem;
    line-height: 1.9;
}
@media (max-width: 1280px) {
    .page-template-page-features .day__flow .inner .chart__body .sm {
        font-size: 1.5rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-features .day__flow .inner .chart__body .sm {
        font-size: 1.3rem;
    }
}
.page-template-page-features .day__flow .inner .chart__body .left, .page-template-page-features .day__flow .inner .chart__body .center, .page-template-page-features .day__flow .inner .chart__body .right {
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media (max-width: 1280px) {
    .page-template-page-features .day__flow .inner .chart__body .left, .page-template-page-features .day__flow .inner .chart__body .center, .page-template-page-features .day__flow .inner .chart__body .right {
        padding: 15px 0;
    }
}
.page-template-page-features .day__flow .inner .chart__body .center {
    width: var(--center-span-width);
    position: relative;
    z-index: 1;
}
.page-template-page-features .day__flow .inner .chart__body .center::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    transform: translateX(-2px);
    background-image: radial-gradient(circle, var(--color-orange) 2px, transparent 2px);
    background-position: right top, left bottom;
    background-repeat: repeat-y, repeat-x;
    background-size: 4px 10px, 10px 4px;
    z-index: -1;
}
.page-template-page-features .day__flow .inner .chart__body .center.first::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 50%;
    transform: translateX(-2px);
    background: #fff;
    z-index: 0;
}
.page-template-page-features .day__flow .inner .chart__body .center.last::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 4px;
    height: 50%;
    transform: translateX(-2px);
    background: #fff;
    z-index: 0;
}
.page-template-page-features .day__flow .inner .chart__body .center span {
    z-index: inherit;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #F77E0E;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.2rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .page-template-page-features .day__flow .inner .chart__body .center span {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-features .day__flow .inner .chart__body .center span {
        font-size: 1.8rem;
    }
}
.page-template-page-features .day__flow .inner .chart__body .left, .page-template-page-features .day__flow .inner .chart__body .right {
    width: calc((100% - var(--center-span-width) - var(--column-gap-width) * 2) / 2);
}
.page-template-page-features .day__flow .inner .chart__body .left.border {
    position: relative;
}
.page-template-page-features .day__flow .inner .chart__body .left.border::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    transform: translateX(-2px);
    background-image: radial-gradient(circle, var(--color-orange) 2px, transparent 2px);
    background-position: right top, left bottom;
    background-repeat: repeat-y, repeat-x;
    background-size: 4px 10px, 10px 4px;
}
.page-template-page-features .day__flow .inner .chart__body .right.border {
    position: relative;
}
.page-template-page-features .day__flow .inner .chart__body .right.border::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    transform: translateX(-2px);
    background-image: radial-gradient(circle, #455ab2 2px, transparent 2px);
    background-position: right top, left bottom;
    background-repeat: repeat-y, repeat-x;
    background-size: 4px 10px, 10px 4px;
}
.page-template-page-features .year__top {
    background: #fff;
}
.page-template-page-features .year__flow {
    overflow: hidden;
    position: relative;
}
.page-template-page-features .year__flow .year_bg_1 {
    position: absolute;
    width: 5.7%;
    left: 9.5%;
    top: 3%;
}
@media (max-width: 1280px) {
    .page-template-page-features .year__flow .year_bg_1 {
        width: 7%;
        left: 7.5%;
        top: 0;
    }
}
.page-template-page-features .year__flow .year_bg_2 {
    position: absolute;
    width: 11%;
    right: 10.5%;
    top: 3%;
}
@media (max-width: 1280px) {
    .page-template-page-features .year__flow .year_bg_2 {
        width: 13%;
        right: 5.5%;
        top: 7%;
    }
}
@media (max-width: 500px) {
    .page-template-page-features .year__flow .year_bg_2 {
        top: 4%;
    }
}
.page-template-page-features .year__flow .inner {
    position: relative;
}
.page-template-page-features .year__flow .inner .txt {
    text-align: center;
}
@media (max-width: 768px) {
    .page-template-page-features .year__flow .inner .txt {
        text-align: left;
    }
}
.page-template-page-features .year__flow .inner .year__container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
@media (max-width: 1280px) {
    .page-template-page-features .year__flow .inner .year__container {
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-page-features .year__flow .inner .year__container {
        gap: 10px;
    }
}
.page-template-page-features .year__flow .inner .year__container .month {
    width: calc((100% - 80px) / 3);
    background: #fff;
    border-radius: 40px;
    padding: 35px 50px 40px;
    position: relative;
}
.page-template-page-features .year__flow .inner .year__container .month::before {
    content: "";
    position: absolute;
    aspect-ratio: 1;
}
@media (max-width: 1280px) {
    .page-template-page-features .year__flow .inner .year__container .month {
        width: calc((100% - 60px) / 3);
        border-radius: 20px;
        padding: 20px 30px 25px;
    }
}
@media (max-width: 768px) {
    .page-template-page-features .year__flow .inner .year__container .month {
        width: calc((100% - 20px) / 2);
    }
}
@media (max-width: 500px) {
    .page-template-page-features .year__flow .inner .year__container .month {
        width: 100%;
        padding: 10px 20px 25px;
    }
}
.page-template-page-features .year__flow .inner .year__container .month h3 {
    font-size: 5rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
}
@media (max-width: 1280px) {
    .page-template-page-features .year__flow .inner .year__container .month h3 {
        font-size: 4rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-features .year__flow .inner .year__container .month h3 {
        font-size: 3rem;
    }
}
.page-template-page-features .year__flow .inner .year__container .month h3.red {
    color: #DE8585;
    background-image: radial-gradient(circle, #de8585 2px, transparent 2px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 10px 4px;
}
.page-template-page-features .year__flow .inner .year__container .month h3.blue {
    color: #6D95CB;
    background-image: radial-gradient(circle, #6D95CB 2px, transparent 2px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 10px 4px;
}
.page-template-page-features .year__flow .inner .year__container .month h3.yellow {
    color: #C4964D;
    background-image: radial-gradient(circle, #C4964D 2px, transparent 2px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 10px 4px;
}
.page-template-page-features .year__flow .inner .year__container .month h3.green {
    color: #8CBEAA;
    background-image: radial-gradient(circle, #8CBEAA 2px, transparent 2px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 10px 4px;
}
.page-template-page-features .year__flow .inner .year__container .month h3 .sm {
    font-size: 3.2rem;
}
@media (max-width: 1280px) {
    .page-template-page-features .year__flow .inner .year__container .month h3 .sm {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-features .year__flow .inner .year__container .month h3 .sm {
        font-size: 2rem;
    }
}
.page-template-page-features .year__flow .inner .year__container :nth-child(1 of .month)::before {
    bottom: -3%;
    right: -3%;
    width: 45%;
    background: url(../img/features/month_04.webp) center/contain no-repeat;
}
.page-template-page-features .year__flow .inner .year__container :nth-child(2 of .month)::before {
    top: 22%;
    right: -3%;
    width: 36%;
    background: url(../img/features/month_05.webp) center/contain no-repeat;
}
.page-template-page-features .year__flow .inner .year__container :nth-child(3 of .month)::before {
    bottom: -3%;
    right: 3%;
    width: 45%;
    background: url(../img/features/month_06.webp) center/contain no-repeat;
}
@media (min-width: 1600px) {
    .page-template-page-features .year__flow .inner .year__container :nth-child(4 of .month) p {
        padding-left: 120px;
    }
}
.page-template-page-features .year__flow .inner .year__container :nth-child(4 of .month)::before {
    top: 15%;
    right: -3%;
    width: 46%;
    background: url(../img/features/month_07.webp) center/contain no-repeat;
}
@media (min-width: 1600px) {
    .page-template-page-features .year__flow .inner .year__container :nth-child(4 of .month)::before {
        right: unset;
        left: -10%;
    }
}
.page-template-page-features .year__flow .inner .year__container :nth-child(5 of .month)::before {
    top: 20%;
    right: -3%;
    width: 47%;
    background: url(../img/features/month_08.webp) center/contain no-repeat;
}
.page-template-page-features .year__flow .inner .year__container :nth-child(6 of .month)::before {
    top: 15%;
    right: -3%;
    width: 42%;
    background: url(../img/features/month_09.webp) center/contain no-repeat;
}
.page-template-page-features .year__flow .inner .year__container :nth-child(7 of .month)::before {
    top: 20%;
    right: -3%;
    width: 42%;
    background: url(../img/features/month_10.webp) center/contain no-repeat;
}
.page-template-page-features .year__flow .inner .year__container :nth-child(8 of .month)::before {
    top: 10%;
    right: -8%;
    width: 45%;
    background: url(../img/features/month_11.webp) center/contain no-repeat;
}
.page-template-page-features .year__flow .inner .year__container :nth-child(9 of .month)::before {
    top: 30%;
    right: -10%;
    width: 51%;
    background: url(../img/features/month_12.webp) center/contain no-repeat;
}
.page-template-page-features .year__flow .inner .year__container :nth-child(10 of .month)::before {
    bottom: -15%;
    right: 10%;
    width: 40%;
    background: url(../img/features/month_01.webp) center/contain no-repeat;
}
.page-template-page-features .year__flow .inner .year__container :nth-child(11 of .month)::before {
    top: -3%;
    right: -3%;
    width: 42%;
    background: url(../img/features/month_02.webp) center/contain no-repeat;
}
.page-template-page-features .year__flow .inner .year__container :nth-child(12 of .month)::before {
    bottom: -10%;
    right: -5%;
    width: 48%;
    background: url(../img/features/month_03.webp) center/contain no-repeat;
}
@media (max-width: 768px) {
    .page-template-page-features .year__flow .inner .year__container :nth-child(n of .month)::before {
        width: 30%;
        right: -3%;
        top: unset;
        bottom: -3%;
    }
}
.page-template-page-features .year__flow .inner .year__container .year_bg_3 {
    position: absolute;
    bottom: -3%;
    left: -4%;
    width: 15%;
}
@media (max-width: 1280px) {
    .page-template-page-features .year__flow .inner .year__container .year_bg_3 {
        left: -2%;
        width: 18%;
    }
}
@media (max-width: 500px) {
    .page-template-page-features .year__flow .inner .year__container .year_bg_3 {
        bottom: -1%;
        width: 20%;
    }
}
.page-template-page-features .year__flow .inner .every__month {
    width: min(900px, 100%);
    margin: 0 auto;
    background: #fff;
    padding: 50px 80px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 90px;
}
@media (max-width: 1280px) {
    .page-template-page-features .year__flow .inner .every__month {
        padding: 30px 50px;
        border-radius: 20px;
        gap: 50px;
    }
}
@media (max-width: 768px) {
    .page-template-page-features .year__flow .inner .every__month {
        padding: 30px 20px;
        border-radius: 10px;
        gap: 30px;
    }
}
.page-template-page-features .year__flow .inner .every__month h3 {
    font-size: 2.4rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .page-template-page-features .year__flow .inner .every__month h3 {
        font-size: 1.9rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-features .year__flow .inner .every__month h3 {
        font-size: 1.7rem;
    }
}
.page-template-page-features .year__flow .inner .every__month .txt {
    flex: 1 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.page-template-page-features .year__flow .inner .year_bg_4 {
    position: absolute;
    right: -1%;
    bottom: -3%;
    width: 11%;
}
@media (max-width: 1280px) {
    .page-template-page-features .year__flow .inner .year_bg_4 {
        right: 0;
        bottom: -4%;
        width: 14%;
    }
}
@media (max-width: 500px) {
    .page-template-page-features .year__flow .inner .year_bg_4 {
        bottom: 0;
    }
}
.page-template-page-features .year__flow .year_bg_5 {
    position: absolute;
    bottom: 3%;
    left: 7%;
    width: 3.6%;
}
@media (max-width: 1280px) {
    .page-template-page-features .year__flow .year_bg_5 {
        width: 5%;
    }
}

/* ------------------------------------- /
/  クラス・先生の紹介
/* ------------------------------------- */
.page-template-page-ise_class .class__list .inner,
.page-template-page-shima_class .class__list .inner,
.page-template-page-akebono_class .class__list .inner {
    max-width: 1023px;
    padding: 0 min(6%, 62px);
    display: flex;
    flex-direction: column;
    gap: 140px;
}
@media (max-width: 1280px) {
    .page-template-page-ise_class .class__list .inner,
    .page-template-page-shima_class .class__list .inner,
    .page-template-page-akebono_class .class__list .inner {
        gap: 100px;
    }
}
@media (max-width: 768px) {
    .page-template-page-ise_class .class__list .inner,
    .page-template-page-shima_class .class__list .inner,
    .page-template-page-akebono_class .class__list .inner {
        gap: 40px;
    }
}
.page-template-page-ise_class .class__list .inner .class__box h2,
.page-template-page-shima_class .class__list .inner .class__box h2,
.page-template-page-akebono_class .class__list .inner .class__box h2 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-orange);
    text-align: center;
    line-height: 1.4;
}
@media (max-width: 1280px) {
    .page-template-page-ise_class .class__list .inner .class__box h2,
    .page-template-page-shima_class .class__list .inner .class__box h2,
    .page-template-page-akebono_class .class__list .inner .class__box h2 {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-ise_class .class__list .inner .class__box h2,
    .page-template-page-shima_class .class__list .inner .class__box h2,
    .page-template-page-akebono_class .class__list .inner .class__box h2 {
        font-size: 2rem;
    }
}
.page-template-page-ise_class .class__list .inner .class__box h3,
.page-template-page-shima_class .class__list .inner .class__box h3,
.page-template-page-akebono_class .class__list .inner .class__box h3 {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
}
@media (max-width: 1280px) {
    .page-template-page-ise_class .class__list .inner .class__box h3,
    .page-template-page-shima_class .class__list .inner .class__box h3,
    .page-template-page-akebono_class .class__list .inner .class__box h3 {
        font-size: 1.9rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-ise_class .class__list .inner .class__box h3,
    .page-template-page-shima_class .class__list .inner .class__box h3,
    .page-template-page-akebono_class .class__list .inner .class__box h3 {
        font-size: 1.7rem;
    }
}
.page-template-page-ise_class .class__list .inner .class__box .w95,
.page-template-page-shima_class .class__list .inner .class__box .w95,
.page-template-page-akebono_class .class__list .inner .class__box .w95 {
    width: min(95px, 100%);
}
.page-template-page-ise_class .class__list .inner .class__box .w130,
.page-template-page-shima_class .class__list .inner .class__box .w130,
.page-template-page-akebono_class .class__list .inner .class__box .w130 {
    width: min(130px, 100%);
}
.page-template-page-ise_class .class__list .inner .class__box .w150,
.page-template-page-shima_class .class__list .inner .class__box .w150,
.page-template-page-akebono_class .class__list .inner .class__box .w150 {
    width: min(150px, 100%);
}
.page-template-page-ise_class .class__list .inner .class__box .w200,
.page-template-page-shima_class .class__list .inner .class__box .w200,
.page-template-page-akebono_class .class__list .inner .class__box .w200 {
    width: min(200px, 100%);
}
.page-template-page-ise_class .class__list .inner .class__box .teacher__container,
.page-template-page-shima_class .class__list .inner .class__box .teacher__container,
.page-template-page-akebono_class .class__list .inner .class__box .teacher__container {
    display: flex;
    justify-content: center;
    gap: 48px;
}
@media (max-width: 1280px) {
    .page-template-page-ise_class .class__list .inner .class__box .teacher__container,
    .page-template-page-shima_class .class__list .inner .class__box .teacher__container,
    .page-template-page-akebono_class .class__list .inner .class__box .teacher__container {
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-page-ise_class .class__list .inner .class__box .teacher__container,
    .page-template-page-shima_class .class__list .inner .class__box .teacher__container,
    .page-template-page-akebono_class .class__list .inner .class__box .teacher__container {
        gap: 15px;
    }
}
.page-template-page-ise_class .class__list .inner .class__box .teacher__container .teacher__box,
.page-template-page-shima_class .class__list .inner .class__box .teacher__container .teacher__box,
.page-template-page-akebono_class .class__list .inner .class__box .teacher__container .teacher__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.page-template-page-ise_class .class__list .inner .class__box .teacher__container .teacher__box img,
.page-template-page-shima_class .class__list .inner .class__box .teacher__container .teacher__box img,
.page-template-page-akebono_class .class__list .inner .class__box .teacher__container .teacher__box img {
    flex: 1 1;
    -o-object-fit: contain;
       object-fit: contain;
}
.page-template-page-ise_class .class__list .inner .class__box .teacher__container .teacher__box .name,
.page-template-page-shima_class .class__list .inner .class__box .teacher__container .teacher__box .name,
.page-template-page-akebono_class .class__list .inner .class__box .teacher__container .teacher__box .name {
    font-size: 2.1rem;
    text-align: center;
}
@media (max-width: 1280px) {
    .page-template-page-ise_class .class__list .inner .class__box .teacher__container .teacher__box .name,
    .page-template-page-shima_class .class__list .inner .class__box .teacher__container .teacher__box .name,
    .page-template-page-akebono_class .class__list .inner .class__box .teacher__container .teacher__box .name {
        font-size: 1.9rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-ise_class .class__list .inner .class__box .teacher__container .teacher__box .name,
    .page-template-page-shima_class .class__list .inner .class__box .teacher__container .teacher__box .name,
    .page-template-page-akebono_class .class__list .inner .class__box .teacher__container .teacher__box .name {
        font-size: 1.6rem;
    }
}
.page-template-page-ise_class .class__list .inner .class__box .description,
.page-template-page-shima_class .class__list .inner .class__box .description,
.page-template-page-akebono_class .class__list .inner .class__box .description {
    border: 2px solid var(--color-orange);
    border-radius: 20px;
    padding: 40px 50px;
    line-height: 1.9;
}
@media (max-width: 1280px) {
    .page-template-page-ise_class .class__list .inner .class__box .description,
    .page-template-page-shima_class .class__list .inner .class__box .description,
    .page-template-page-akebono_class .class__list .inner .class__box .description {
        border-radius: 10px;
        padding: 20px 30px;
    }
}
@media (max-width: 768px) {
    .page-template-page-ise_class .class__list .inner .class__box .description,
    .page-template-page-shima_class .class__list .inner .class__box .description,
    .page-template-page-akebono_class .class__list .inner .class__box .description {
        border: 1px solid var(--color-orange);
        border-radius: 5px;
        padding: 20px;
    }
}

/* ------------------------------------- /
/  入園のご案内
/* ------------------------------------- */
.page-template-page-ise_information .requirements .inner,
.page-template-page-shima_information .requirements .inner,
.page-template-page-akebono_information .requirements .inner {
    max-width: 1023px;
    padding: 0 min(6%, 62px);
    line-height: 1.9;
}
.page-template-page-ise_information .requirements .inner h2,
.page-template-page-shima_information .requirements .inner h2,
.page-template-page-akebono_information .requirements .inner h2 {
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--color-orange);
    text-align: center;
    line-height: 1.4;
}
@media (max-width: 1280px) {
    .page-template-page-ise_information .requirements .inner h2,
    .page-template-page-shima_information .requirements .inner h2,
    .page-template-page-akebono_information .requirements .inner h2 {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-ise_information .requirements .inner h2,
    .page-template-page-shima_information .requirements .inner h2,
    .page-template-page-akebono_information .requirements .inner h2 {
        font-size: 2.4rem;
    }
}
.page-template-page-ise_information .requirements .inner h3,
.page-template-page-shima_information .requirements .inner h3,
.page-template-page-akebono_information .requirements .inner h3 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-orange);
    text-align: center;
    line-height: 1.4;
}
@media (max-width: 1280px) {
    .page-template-page-ise_information .requirements .inner h3,
    .page-template-page-shima_information .requirements .inner h3,
    .page-template-page-akebono_information .requirements .inner h3 {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-ise_information .requirements .inner h3,
    .page-template-page-shima_information .requirements .inner h3,
    .page-template-page-akebono_information .requirements .inner h3 {
        font-size: 2rem;
    }
}
.page-template-page-ise_information .requirements .inner .txt,
.page-template-page-shima_information .requirements .inner .txt,
.page-template-page-akebono_information .requirements .inner .txt {
    text-align: center;
}
@media (max-width: 768px) {
    .page-template-page-ise_information .requirements .inner .txt,
    .page-template-page-shima_information .requirements .inner .txt,
    .page-template-page-akebono_information .requirements .inner .txt {
        text-align: left;
    }
}
.page-template-page-ise_information .requirements .inner .indent,
.page-template-page-shima_information .requirements .inner .indent,
.page-template-page-akebono_information .requirements .inner .indent {
    text-indent: -1em;
    padding-left: 1em;
}
.page-template-page-ise_information .requirements .inner .border,
.page-template-page-shima_information .requirements .inner .border,
.page-template-page-akebono_information .requirements .inner .border {
    height: 4px;
    background-image: radial-gradient(circle, var(--color-orange) 2px, transparent 2px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 10px 4px;
}
.page-template-page-ise_information .requirements .inner .font24,
.page-template-page-shima_information .requirements .inner .font24,
.page-template-page-akebono_information .requirements .inner .font24 {
    font-size: 2.4rem;
}
@media (max-width: 1280px) {
    .page-template-page-ise_information .requirements .inner .font24,
    .page-template-page-shima_information .requirements .inner .font24,
    .page-template-page-akebono_information .requirements .inner .font24 {
        font-size: 1.9rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-ise_information .requirements .inner .font24,
    .page-template-page-shima_information .requirements .inner .font24,
    .page-template-page-akebono_information .requirements .inner .font24 {
        font-size: 1.7rem;
    }
}
.page-template-page-ise_information .requirements .inner table,
.page-template-page-shima_information .requirements .inner table,
.page-template-page-akebono_information .requirements .inner table {
    border-collapse: separate;
    width: min(600px, 100%);
    border-top: 1px solid #503535;
    border-left: 1px solid #503535;
    border-radius: 10px;
    line-height: 1.4;
}
.page-template-page-ise_information .requirements .inner table thead,
.page-template-page-shima_information .requirements .inner table thead,
.page-template-page-akebono_information .requirements .inner table thead {
    background: #FFF2D3;
}
.page-template-page-ise_information .requirements .inner table thead tr th,
.page-template-page-shima_information .requirements .inner table thead tr th,
.page-template-page-akebono_information .requirements .inner table thead tr th {
    border-bottom: 1px solid #503535;
    border-right: 1px solid #503535;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    padding: 15px 20px;
}
@media (max-width: 768px) {
    .page-template-page-ise_information .requirements .inner table thead tr th,
    .page-template-page-shima_information .requirements .inner table thead tr th,
    .page-template-page-akebono_information .requirements .inner table thead tr th {
        padding: 5px 3px;
        font-size: 1.3rem;
    }
}
.page-template-page-ise_information .requirements .inner table thead tr th:first-child,
.page-template-page-shima_information .requirements .inner table thead tr th:first-child,
.page-template-page-akebono_information .requirements .inner table thead tr th:first-child {
    border-radius: 9px 0 0 0;
}
.page-template-page-ise_information .requirements .inner table thead tr th:last-child,
.page-template-page-shima_information .requirements .inner table thead tr th:last-child,
.page-template-page-akebono_information .requirements .inner table thead tr th:last-child {
    border-radius: 0 9px 0 0;
}
.page-template-page-ise_information .requirements .inner table tbody tr td,
.page-template-page-shima_information .requirements .inner table tbody tr td,
.page-template-page-akebono_information .requirements .inner table tbody tr td {
    border-bottom: 1px solid #503535;
    border-right: 1px solid #503535;
    text-align: center;
    vertical-align: middle;
    padding: 15px 20px;
}
@media (max-width: 768px) {
    .page-template-page-ise_information .requirements .inner table tbody tr td,
    .page-template-page-shima_information .requirements .inner table tbody tr td,
    .page-template-page-akebono_information .requirements .inner table tbody tr td {
        padding: 5px;
    }
}
.page-template-page-ise_information .requirements .inner table tbody tr td:first-child,
.page-template-page-shima_information .requirements .inner table tbody tr td:first-child,
.page-template-page-akebono_information .requirements .inner table tbody tr td:first-child {
    border-radius: 0 0 0 9px;
}
.page-template-page-ise_information .requirements .inner table tbody tr td:last-child,
.page-template-page-shima_information .requirements .inner table tbody tr td:last-child,
.page-template-page-akebono_information .requirements .inner table tbody tr td:last-child {
    border-radius: 0 0 9px 0;
}

/* ------------------------------------- /
/  えがお保育園（伊勢）
/* ------------------------------------- */
.page-template-page-ise h2,
.page-template-page-akebono h2,
.page-template-page-shima h2 {
    font-size: 3.8rem;
    color: var(--color-orange);
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .page-template-page-ise h2,
    .page-template-page-akebono h2,
    .page-template-page-shima h2 {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-ise h2,
    .page-template-page-akebono h2,
    .page-template-page-shima h2 {
        font-size: 2.4rem;
    }
}
.page-template-page-ise .about__top .inner,
.page-template-page-akebono .about__top .inner,
.page-template-page-shima .about__top .inner {
    position: relative;
}
.page-template-page-ise .about__top .inner::before,
.page-template-page-akebono .about__top .inner::before,
.page-template-page-shima .about__top .inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 12.7vw;
    aspect-ratio: 245/130;
    background: url(../img/ise/about_bg_1.webp) center/100% no-repeat;
}
.page-template-page-ise .about__bottom .inner .wrapper,
.page-template-page-akebono .about__bottom .inner .wrapper,
.page-template-page-shima .about__bottom .inner .wrapper {
    position: relative;
}
.page-template-page-ise .about__bottom .inner .wrapper::after,
.page-template-page-akebono .about__bottom .inner .wrapper::after,
.page-template-page-shima .about__bottom .inner .wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 9.5vw;
    aspect-ratio: 182/120;
    background: url(../img/ise/about_bg_2.webp) center/100% no-repeat;
}
.page-template-page-ise .about,
.page-template-page-akebono .about,
.page-template-page-shima .about {
    background: #FFFBF0;
}
.page-template-page-ise .about .inner .container,
.page-template-page-akebono .about .inner .container,
.page-template-page-shima .about .inner .container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
@media (max-width: 1280px) {
    .page-template-page-ise .about .inner .container,
    .page-template-page-akebono .about .inner .container,
    .page-template-page-shima .about .inner .container {
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-page-ise .about .inner .container,
    .page-template-page-akebono .about .inner .container,
    .page-template-page-shima .about .inner .container {
        gap: 10px;
    }
}
.page-template-page-ise .about .inner .container a,
.page-template-page-akebono .about .inner .container a,
.page-template-page-shima .about .inner .container a {
    width: calc((100% - 60px) / 3);
    border-radius: 40px;
    position: relative;
}
@media (max-width: 1280px) {
    .page-template-page-ise .about .inner .container a,
    .page-template-page-akebono .about .inner .container a,
    .page-template-page-shima .about .inner .container a {
        width: calc((100% - 40px) / 3);
        border-radius: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-page-ise .about .inner .container a,
    .page-template-page-akebono .about .inner .container a,
    .page-template-page-shima .about .inner .container a {
        width: calc((100% - 20px) / 3);
        border-radius: 10px;
    }
}
@media (max-width: 500px) {
    .page-template-page-ise .about .inner .container a,
    .page-template-page-akebono .about .inner .container a,
    .page-template-page-shima .about .inner .container a {
        width: 100%;
    }
}
.page-template-page-ise .about .inner .container a img,
.page-template-page-akebono .about .inner .container a img,
.page-template-page-shima .about .inner .container a img {
    border-radius: inherit;
}
.page-template-page-ise .about .inner .container a .txt,
.page-template-page-akebono .about .inner .container a .txt,
.page-template-page-shima .about .inner .container a .txt {
    padding: 25px;
    height: 100px;
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFFBF0;
    border-radius: 20px 0 40px 0;
    font-size: 3.2rem;
}
@media (max-width: 1280px) {
    .page-template-page-ise .about .inner .container a .txt,
    .page-template-page-akebono .about .inner .container a .txt,
    .page-template-page-shima .about .inner .container a .txt {
        font-size: 2rem;
        padding: 10px;
        height: 60px;
        border-radius: 10px 0 20px 0;
    }
}
@media (max-width: 768px) {
    .page-template-page-ise .about .inner .container a .txt,
    .page-template-page-akebono .about .inner .container a .txt,
    .page-template-page-shima .about .inner .container a .txt {
        font-size: 1.4rem;
        height: 50px;
        border-radius: 5px 0 10px 0;
        padding: 5px;
    }
}
.page-template-page-ise .map,
.page-template-page-akebono .map,
.page-template-page-shima .map {
    overflow: hidden;
    position: relative;
}
.page-template-page-ise .map .map_bg_1,
.page-template-page-akebono .map .map_bg_1,
.page-template-page-shima .map .map_bg_1 {
    position: absolute;
    width: 23%;
    top: 0;
    left: -2%;
}
.page-template-page-ise .map .map_bg_2,
.page-template-page-akebono .map .map_bg_2,
.page-template-page-shima .map .map_bg_2 {
    position: absolute;
    width: 16%;
    bottom: 0;
    left: 5%;
}
.page-template-page-ise .map .map_bg_3,
.page-template-page-akebono .map .map_bg_3,
.page-template-page-shima .map .map_bg_3 {
    position: absolute;
    width: 24%;
    right: -2%;
    top: 40%;
}
.page-template-page-ise .map .inner img,
.page-template-page-akebono .map .inner img,
.page-template-page-shima .map .inner img {
    max-width: 980px;
    margin: 0 auto;
    width: 50vw;
}
@media (max-width: 768px) {
    .page-template-page-ise .map .inner img,
    .page-template-page-akebono .map .inner img,
    .page-template-page-shima .map .inner img {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .page-template-page-ise .map .wrapper,
    .page-template-page-akebono .map .wrapper,
    .page-template-page-shima .map .wrapper {
        padding: 20px;
        display: flex;
        gap: 5%;
    }
    .page-template-page-ise .map .wrapper .map_bg_1, .page-template-page-ise .map .wrapper .map_bg_2, .page-template-page-ise .map .wrapper .map_bg_3,
    .page-template-page-akebono .map .wrapper .map_bg_1,
    .page-template-page-akebono .map .wrapper .map_bg_2,
    .page-template-page-akebono .map .wrapper .map_bg_3,
    .page-template-page-shima .map .wrapper .map_bg_1,
    .page-template-page-shima .map .wrapper .map_bg_2,
    .page-template-page-shima .map .wrapper .map_bg_3 {
        position: unset;
        width: 30%;
    }
}
.page-template-page-ise .access,
.page-template-page-akebono .access,
.page-template-page-shima .access {
    position: relative;
    z-index: 0;
}
.page-template-page-ise .access::before,
.page-template-page-akebono .access::before,
.page-template-page-shima .access::before {
    content: "";
    position: absolute;
    width: 30%;
    aspect-ratio: 572/210;
    top: 20%;
    right: 0;
    background: url(../img/ise/access_bg_1.svg) center/100% no-repeat;
    z-index: -1;
}
.page-template-page-ise .access::after,
.page-template-page-akebono .access::after,
.page-template-page-shima .access::after {
    content: "";
    position: absolute;
    width: 25%;
    aspect-ratio: 477/175;
    bottom: 0;
    left: 0;
    background: url(../img/ise/access_bg_2.svg) center/100% no-repeat;
    z-index: -1;
}
.page-template-page-ise .access .inner .container,
.page-template-page-akebono .access .inner .container,
.page-template-page-shima .access .inner .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
@media (max-width: 768px) {
    .page-template-page-ise .access .inner .container,
    .page-template-page-akebono .access .inner .container,
    .page-template-page-shima .access .inner .container {
        flex-direction: column;
        gap: 30px;
    }
}
.page-template-page-ise .access .inner .container iframe,
.page-template-page-akebono .access .inner .container iframe,
.page-template-page-shima .access .inner .container iframe {
    width: 50%;
    border-radius: 40px;
}
@media (max-width: 1280px) {
    .page-template-page-ise .access .inner .container iframe,
    .page-template-page-akebono .access .inner .container iframe,
    .page-template-page-shima .access .inner .container iframe {
        border-radius: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-page-ise .access .inner .container iframe,
    .page-template-page-akebono .access .inner .container iframe,
    .page-template-page-shima .access .inner .container iframe {
        width: 100%;
        border-radius: 10px;
    }
}
.page-template-page-ise .access .inner .container .txt,
.page-template-page-akebono .access .inner .container .txt,
.page-template-page-shima .access .inner .container .txt {
    width: 50%;
    padding-left: 5%;
}
@media (max-width: 768px) {
    .page-template-page-ise .access .inner .container .txt,
    .page-template-page-akebono .access .inner .container .txt,
    .page-template-page-shima .access .inner .container .txt {
        padding-left: 0;
        width: 100%;
    }
}
.page-template-page-ise .access .inner .container .txt table,
.page-template-page-akebono .access .inner .container .txt table,
.page-template-page-shima .access .inner .container .txt table {
    width: 100%;
}
.page-template-page-ise .access .inner .container .txt table th, .page-template-page-ise .access .inner .container .txt table td,
.page-template-page-akebono .access .inner .container .txt table th,
.page-template-page-akebono .access .inner .container .txt table td,
.page-template-page-shima .access .inner .container .txt table th,
.page-template-page-shima .access .inner .container .txt table td {
    padding: 15px 0;
    background-image: radial-gradient(circle, #d97627 2px, transparent 2px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 10px 4px;
}
.page-template-page-ise .access .inner .container .txt table th,
.page-template-page-akebono .access .inner .container .txt table th,
.page-template-page-shima .access .inner .container .txt table th {
    font-weight: 700;
    padding-right: 30px;
}
@media (max-width: 768px) {
    .page-template-page-ise .access .inner .container .txt table th,
    .page-template-page-akebono .access .inner .container .txt table th,
    .page-template-page-shima .access .inner .container .txt table th {
        padding-right: 10px;
    }
}

/* ------------------------------------- /
/  お問い合わせ先
/* ------------------------------------- */
.page-template-page-contact .contact__list .inner {
    max-width: 1023px;
    padding: 0 min(6%, 62px);
}
.page-template-page-contact .contact__list .inner .contact__box {
    padding: 100px 0;
    text-align: center;
}
@media (max-width: 1280px) {
    .page-template-page-contact .contact__list .inner .contact__box {
        padding: 60px 0;
    }
}
@media (max-width: 768px) {
    .page-template-page-contact .contact__list .inner .contact__box {
        padding: 30px 0;
    }
}
.page-template-page-contact .contact__list .inner .contact__box h2 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-orange);
    text-align: center;
}
@media (max-width: 1280px) {
    .page-template-page-contact .contact__list .inner .contact__box h2 {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-contact .contact__list .inner .contact__box h2 {
        font-size: 2rem;
    }
}
.page-template-page-contact .contact__list .inner .border {
    height: 4px;
    background-image: radial-gradient(circle, var(--color-orange) 2px, transparent 2px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 10px 4px;
}/*# sourceMappingURL=style.css.map */