@charset "UTF-8";

:root {
    --main-color: #36A254;
    --font-color-blown: #4A000B;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Zen Maru Gothic", sans-serif;
    color: #3A3A3A;
    font-weight: 500;
    margin-top: 100px;
}

body.is-locked {
    overflow: hidden;
}

main {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    width: 100%;
    height: 100%;
}

.fadein {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadein.is-active {
    opacity: 1;
    transform: translateY(0);
}

.txt_br_sp {
    display: none;
}

@media screen and (min-width: 1001px) {
    .c-fixed__links-wrap {
        position: fixed;
        right: 0;
        top: 50%;
        z-index: 100;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }

    .c-fixed__link {
        flex: 1;
        width: 60px;
        height: 200px;
        background-color: var(--main-color);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-weight: bold;
        font-size: 18px;
        letter-spacing: 1px;
        border-radius: 20px 0 0 20px;
        -webkit-border-radius: 20px 0 0 20px;
        -moz-border-radius: 20px 0 0 20px;
        -ms-border-radius: 20px 0 0 20px;
        -o-border-radius: 20px 0 0 20px;
        writing-mode: vertical-rl;
        -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: vertical-rl;
    }

    .c-fixed__link:last-child {
        margin-top: 20px;
    }

    .c-fixed__link .icon {
        width: 28px;
        height: 28px;
    }

}

@media screen and (max-width: 1000px) {
    body {
        margin-top: 80px;
    }

    .c-fixed__links-wrap {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 100;
    }

    .c-fixed__links {
        display: flex;
        justify-content: space-between;
        gap: 6px;
        padding-left: 5px;
        padding-right: 5px;
    }

    .c-fixed__link {
        flex: 1;
        height: 45px;
        background-color: var(--main-color);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 16px;
        border-radius: 20px 20px 0 0;
    }

    .c-fixed__link:last-child {
        margin-top: 0px;
    }

    .c-fixed__link .icon {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }

    .txt_br_sp {
        display: block;
    }
}

/* Header */
.l-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    /* height: 150px; */
    height: 100px;
    background-color: #fff;
    box-sizing: border-box;
    /* padding: 36px 0 36px 48px; */
    padding-left: 48px;
}

.l-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.l-header__logo {
    max-width: 245px;
}

.l-header__logo a {
    display: block;
}

.l-header__nav {
    display: flex;
    width: auto;
    height: 100%;
    margin-left: auto;
}

.l-header__nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
}

.l-header__nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 100%;
    text-align: center;
}

.l-header__nav-item:last-child {
    position: relative;
    width: 180px;
    /* border-bottom: 5px solid var(--main-color); */
}

.l-header__nav-item:last-child::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 5px;
    background-color: var(--main-color);
}

.l-header__nav-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 79px;
    font-size: 18px;
    font-weight: bold;
    color: var(--font-color-blown);
    transition: opacity 0.3s;
}

.l-header__nav-item a:hover {
    opacity: 0.7;
}

.l-header__nav-item.has-submenu {
    position: relative;
}

.l-header__submenu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: calc(100% - 5px);
    left: 50%;
    transform: translateX(-50%);
    width: 170%;
    background-color: var(--main-color);
    padding: 10px 18px;
    z-index: 20;
    white-space: nowrap;
    transition: opacity 0.3s, visibility 0.3s;
}

.l-header__submenu::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    border: 8px solid transparent;
    border-bottom-color: var(--main-color);
}

.l-header__nav-item.has-submenu:hover .l-header__submenu {
    opacity: 1;
    visibility: visible;
}

.l-header__submenu li {
    text-align: center;
}

.l-header__submenu li a {
    color: #fff !important;
    font-size: 14px !important;
    font-weight: bold;
    text-decoration: none;
    line-height: 1.4;
    display: block;
    height: auto !important;
    padding: 0;
}

.l-header__submenu li a:hover {
    opacity: 0.7;
}

.l-header__nav-icon {
    width: auto;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.l-header__nav-icon img {
    width: auto;
    max-height: 100%;
}

.l-header__hamburger {
    display: none;
}

.p-drawer {
    display: none;
}

@media screen and (max-width: 1300px) {
    .l-header__logo {
        width: 200px;
    }

    .l-header__nav-list {
        gap: 20px;
    }

    .l-header__nav-item:last-child {
        width: 150px;
    }

    .l-header__nav-item a {
        height: 71px;
        font-size: 16px;
    }
}

@media screen and (max-width: 1200px) {
    .l-header {
        padding-left: 20px;
    }

    .l-header__logo {
        width: 180px;
    }

    .l-header__nav-list {
        gap: 15px;
    }

    .l-header__nav-item:last-child {
        width: 120px;
    }

    .l-header__nav-item a {
        height: 68px;
        font-size: 14px;
    }
}

@media screen and (max-width: 1000px) {
    .l-header {
        height: 80px;
        padding: 0 20px;
    }

    .l-header__logo {
        width: 125px;
    }

    .l-header__nav {
        display: none;
    }

    /* Hamburger */
    .l-header__hamburger {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        cursor: pointer;
    }

    .l-header__hamburger span {
        display: block;
        width: 30px;
        height: 2px;
        background-color: #4e3b30;
    }

    .l-header__hamburger p {
        font-size: 10px;
        font-weight: bold;
        color: #4e3b30;
        margin-top: 2px;
        line-height: 1;
    }


    .p-drawer {
        position: fixed;
        top: 0;
        right: 0;
        display: block;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
        overflow-y: auto;
    }

    .p-drawer.is-active {
        opacity: 1;
        visibility: visible;
    }

    .p-drawer__inner {
        padding: 20px 20px 0px;
        min-height: 100%;
        display: flex;
        flex-direction: column;
    }

    .p-drawer__header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
    }

    .p-drawer__logo {
        width: 125px;
    }

    .p-drawer__close {
        width: 30px;
        height: 30px;
        position: relative;
        cursor: pointer;
    }

    .p-drawer__close span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #3A3A3A;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .p-drawer__close span:nth-child(1) {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .p-drawer__close span:nth-child(2) {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .p-drawer__nav-list {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .p-drawer__nav-item {
        width: 46%;
        height: auto;
        border-bottom: 1px solid var(--font-color-blown);
    }

    .p-drawer__nav-item:nth-child(1),
    .p-drawer__nav-item:nth-child(2) {
        border-top: 1px solid var(--font-color-blown);
    }

    .p-drawer__nav-item a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        color: var(--font-color-blown);
        font-weight: bold;
        letter-spacing: 1px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .p-drawer__nav-item.has-submenu {
        position: relative;
        overflow: visible;
    }

    .p-drawer__submenu {
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: calc(100% + 20px);
        left: 50%;
        width: 100%;
        background-color: var(--main-color);
        padding: 10px 18px;
        z-index: 20;
        white-space: nowrap;
        transition: opacity 0.3s, visibility 0.3s;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
    }

    .p-drawer__submenu::before {
        content: "";
        position: absolute;
        bottom: 95%;
        left: 50%;
        border: 8px solid transparent;
        border-bottom-color: var(--main-color);
        transform: translateX(-50%) rotate(180deg);
        -webkit-transform: translateX(-50%) rotate(180deg);
        -moz-transform: translateX(-50%) rotate(180deg);
        -ms-transform: translateX(-50%) rotate(180deg);
        -o-transform: translateX(-50%) rotate(180deg);
    }

    /* Tap/Hover trigger on SP */
    .p-drawer__nav-item.has-submenu.is-open .p-drawer__submenu,
    .p-drawer__nav-item.has-submenu:hover .p-drawer__submenu {
        opacity: 1;
        visibility: visible;
    }

    .p-drawer__submenu li {
        text-align: center;
    }

    .p-drawer__submenu li a {
        color: #fff !important;
        font-size: 14px !important;
        font-weight: bold;
        text-decoration: none;
        line-height: 1.4;
        display: block;
        padding: 0 !important;
    }

    .p-drawer__submenu li a:hover {
        opacity: 0.7;
    }

    .p-drawer__nav-icon {
        max-width: 60px;
        width: auto;
        height: 19px;
        flex-shrink: 0;
        margin-right: 10px;
    }

    .p-drawer__nav-icon img {
        width: auto;
        -o-object-fit: contain;
        object-fit: contain;
    }

    .p-drawer__footer {
        max-width: 320px;
        width: 100%;
        margin-top: 54px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .p-drawer__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
        height: auto;
        padding: 19.5px 0;
        border-radius: 35px;
        font-weight: bold;
        font-size: 18px;
        position: relative;
        text-decoration: none;
    }

    .p-drawer__btn--green {
        background-color: var(--main-color);
        color: #fff;
    }

    .p-drawer__btn--white {
        background-color: #fff;
        font-size: 20px;
        color: var(--main-color);
        border: 2px solid var(--main-color);
    }

    .p-drawer__btn-icon {
        width: 25px;
        height: 25px;
        margin-right: 16px;
        display: flex;
        align-items: center;
    }

    .p-drawer__btn-arrow {
        margin-left: 16px;
    }

    /* Bottom links */
    .p-drawer__bottom-links {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        gap: 6px;
        padding-left: 5px;
        padding-right: 5px;
    }

    .p-drawer__bottom-link {
        flex: 1;
        height: 45px;
        background-color: var(--main-color);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 16px;
        border-radius: 20px 20px 0 0;
        -webkit-border-radius: 20px 20px 0 0;
        -moz-border-radius: 20px 20px 0 0;
        -ms-border-radius: 20px 20px 0 0;
        -o-border-radius: 20px 20px 0 0;
    }

    .p-drawer__bottom-link .icon {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }
}

/* FV */
.p-fv {
    width: 100%;
    position: relative;
}

.p-fv__icon {
    position: absolute;
    bottom: -2.1vw;
    left: 3.8vw;
    z-index: 1;
    width: 29.7vw;
    height: auto;
    -webkit-animation: floatUpDown 3s ease-in-out infinite;
    animation: floatUpDown 3s ease-in-out infinite;
}

.p-fv__cta {
    position: absolute;
    bottom: -7vw;
    right: 10.7vw;
    width: 22.4vw;
    height: auto;
    z-index: 1;
}

@-webkit-keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.p-fv__slide-wrap {
    background-image: url(../img/top/fv_bg.webp);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding-top: 2.1vw;
    padding-bottom: 4.9vw;
}

.p-fv .splide__slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 1.7vw;
}

.splide__arrow {
    width: 2.8vw;
    height: 2.8vw;
    background: transparent;
    opacity: 1;
}

.splide__arrow svg {
    display: none;
    /* デフォルト矢印消す */
}

/* 左矢印 */
.splide__arrow--prev::before {
    content: "";
    width: 0.9vw;
    height: 0.9vw;
    border-left: 0.3vw solid var(--font-color-blown);
    border-bottom: 0.3vw solid var(--font-color-blown);
    transform: rotate(45deg);
    display: block;
    margin: auto;
}

/* 右矢印 */
.splide__arrow--next::before {
    content: "";
    width: 0.9vw;
    height: 0.9vw;
    border-right: 0.3vw solid var(--font-color-blown);
    border-top: 0.3vw solid var(--font-color-blown);
    transform: rotate(45deg);
    display: block;
    margin: auto;
}

.splide__arrows {
    position: absolute;
    bottom: -2.8vw;
    left: 50%;
    transform: translateX(-50%);
    width: 13.2vw;
    display: flex;
    gap: 2.1vw;
    z-index: 100;
}

.splide__pagination {
    position: absolute;
    bottom: -3.2vw;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5vw;
}

/* ドット全体 */
.splide__pagination__page {
    width: 0.7vw;
    height: 0.7vw;
    background: #BE9D85;
    /* 薄ベージュ */
    opacity: 1;
    margin: 0 0.5vw;
    border-radius: 50%;
    transition: 0.3s;
}

/* アクティブドット */
.splide__pagination__page.is-active {
    background: var(--font-color-blown);
    /* 赤 */
    transform: scale(1);
}

@media screen and (max-width: 768px) {

    .p-fv__icon {
        width: 61.6vw;
        left: -4vw;
        bottom: -5.33vw;
    }

    .p-fv__cta {
        width: 50.93vw;
        height: auto;
        right: -4vw;
        bottom: -13.33vw;
    }

    .p-fv__slide-wrap {
        padding: 2.93vw 3.2vw 38.93vw;
    }

    .splide__pagination {
        bottom: -6.67vw;
    }

    .splide__pagination__page {
        width: 1.33vw;
        height: 1.33vw;
        margin: 0 0.67vw;
    }

    .splide__arrows {
        bottom: -5.87vw;
        width: 40vw;
    }

    /* 左矢印 */
    .splide__arrow--prev::before {
        width: 2.67vw;
        height: 2.67vw;
        border-left: 0.53vw solid var(--font-color-blown);
        border-bottom: 0.53vw solid var(--font-color-blown);
    }

    /* 右矢印 */
    .splide__arrow--next::before {
        width: 2.67vw;
        height: 2.67vw;
        border-right: 0.53vw solid var(--font-color-blown);
        border-top: 0.53vw solid var(--font-color-blown);
    }

    .l-header__nav-item a {
        font-size: 4.8vw;
    }
}

/* =============================
   Section Head (共通)
   ============================= */
.c-section-head {
    text-align: center;
    margin-bottom: 100px;
}

.c-section-head__title {
    font-size: 36px;
    font-weight: bold;
    color: var(--font-color-blown);
    letter-spacing: calc(36px * (2 / 100));
    position: relative;
    display: inline-block;
    /* padding-bottom: 10px; */
}

.c-section-head__sub {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: calc(18px * (2 / 100));
    color: var(--main-color);
}

/* =============================
   Feature Section
   ============================= */
.p-feature {
    position: relative;
    padding: 100px 0 100px;
    background-color: #fff;
}

.p-feature_bg1 {
    position: absolute;
    top: 150px;
    right: 0;
    width: 410px;
    height: auto;
    z-index: 0;
}

.p-feature_bg2 {
    position: absolute;
    top: 970px;
    left: 0;
    width: 460px;
    height: auto;
    z-index: 0;
}

.p-feature_bg3 {
    position: absolute;
    bottom: 290px;
    right: 0;
    width: 410px;
    height: auto;
    z-index: 0;
}

.p-feature__inner {
    position: relative;
    z-index: 1;
    max-width: 1097px;
    margin: 0 auto;
}

/* Feature Item */
.p-feature__item {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-bottom: 80px;
}

.p-feature__item:nth-child(even) {
    margin-bottom: 70px;
}

.p-feature__item:nth-child(odd) {
    margin-bottom: 93px;
}

.p-feature__item:last-child {
    margin-bottom: 0;
}

/* テキスト左・画像右 / 画像左・テキスト右 は order で制御 */
.p-feature__item--text-left,
.p-feature__item--img-left {
    flex-direction: row;
}

.p-feature__text-wrap {
    flex: 1;
}

.p-feature__img-wrap {
    flex-shrink: 0;
    width: 48%;
}

.p-feature__img-wrap img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    aspect-ratio: 121 / 81;
    -o-object-position: bottom;
    object-position: bottom;
}

.p-feature__img-wrap.is-active img {
    -webkit-animation: kakukaku1 1s;
    animation: kakukaku1 1s;
}

@-webkit-keyframes kakukaku1 {
    0% {
        transform: rotate(8deg);
    }

    50% {
        transform: rotate(-2deg);
    }

    100% {
        transform: rotate(0);
    }
}

/* テキスト左・画像右のアイテムでは text-wrap が左 img-wrap が右 */
.p-feature__item--text-left .p-feature__text-wrap {
    order: 1;
}

.p-feature__item--text-left .p-feature__img-wrap {
    order: 2;
}

/* 画像左・テキスト右のアイテムでは img-wrap が左 text-wrap が右 */
.p-feature__item--img-left .p-feature__img-wrap {
    order: 1;
}

.p-feature__item--img-left .p-feature__text-wrap {
    order: 2;
}

.p-feature__item-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--main-color);
    letter-spacing: calc(28px * (2 / 100));
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--main-color);
}

.p-feature__item-body {
    font-size: 18px;
    letter-spacing: calc(18px * (2 / 100));
    line-height: 150%;
}

/* =============================
   Feature レスポンシブ
   ============================= */
@media screen and (max-width: 768px) {
    .p-feature {
        padding: 21.33vw 0 24vw;
    }

    .p-feature_bg1 {
        width: 40vw;
    }

    .p-feature_bg2 {
        width: 40vw;
        top: 320vw;
    }

    .p-feature_bg3 {
        width: 40vw;
        bottom: 130.67vw;
    }

    .p-feature__inner {
        padding: 0 5.33vw;
    }

    .c-section-head {
        margin-bottom: 20.53vw;
    }

    .c-section-head__title {
        font-size: 8.53vw;
    }

    .p-feature__item {
        margin-bottom: 21.33vw;
        flex-direction: column-reverse !important;
        gap: 6.4vw;
        align-items: stretch;
    }

    .p-feature__item:nth-child(odd) {
        margin-bottom: 14.4vw;
    }

    .p-feature__item:nth-child(even) {
        margin-bottom: 14.4vw;
    }

    .p-feature__item:last-child {
        margin-bottom: 0;
    }

    /* モバイルは全アイテム共通: テキスト（見出し＋本文）が上、画像が下 */
    .p-feature__item--text-left .p-feature__text-wrap,
    .p-feature__item--img-left .p-feature__text-wrap {
        order: 1;
    }

    .p-feature__item--text-left .p-feature__img-wrap,
    .p-feature__item--img-left .p-feature__img-wrap {
        order: 2;
    }

    .p-feature__img-wrap {
        width: 100%;
    }

    .p-feature__item-title {
        font-size: 5.33vw;
        margin-bottom: 6.4vw;
        padding-bottom: 3.73vw;
    }

    .p-feature__item-body {
        font-size: 3.73vw;
        line-height: 150%;
    }

    .c-section-head__sub {
        font-size: 4.8vw;
    }
}

/* =============================
   Flow Section
   ============================= */
.p-flow {
    position: relative;
    padding: 100px 0 144px;
    background-color: #E7FFEE;
    overflow: hidden;
}

/* ドット装飾 */
.p-flow__dots {
    position: absolute;
}

.p-flow__dots--lt {
    top: 70px;
    left: 0;
    width: 260px;
    height: auto;
}

.p-flow__dots--rt {
    top: 70px;
    right: 0;
    width: 289px;
    height: auto;
}

.p-flow__dots--lb {
    bottom: 40px;
    left: 0;
    width: 260px;
    height: auto;
}

.p-flow__dots--rb {
    bottom: 40px;
    right: 0;
    width: 289px;
    height: auto;
}

.p-flow__inner {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
}

/* 白カード */
.p-flow__card {
    display: flex;
    gap: 54px;
    background-color: #fff;
    padding: 51px 76px 53px;
    border-radius: 20px;
}

/* AM / PM 列 */
.p-flow__col {
    position: relative;
    padding-top: 65px;
    flex: 1;
}

/* AM / PM ラベル */
.p-flow__period {
    position: absolute;
    top: 0;
    right: 0;
    width: 148px;
    height: auto;
}

.p-flow__period img {
    width: 100%;
    height: auto;
}

/* 各時間アイテム */
.p-flow__item {
    display: flex;
    align-items: flex-start;
    gap: 36px;
}

.p-flow__item-left {
    flex-shrink: 0;
}

.p-flow__clock {
    width: 120px;
    height: auto;
    display: block;
}

.p-flow__item-right {
    flex: 1;
    padding-top: 2px;
}

/* 時刻バッジ */
.p-flow__time {
    display: inline-block;
    background-color: #F96175;
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
    padding: 10px 50px;
    margin-bottom: 18px;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

/* 内容リスト */
.p-flow__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.p-flow__list.mb {
    margin-bottom: 10px;
}

.p-flow__list li.pink {
    color: #F96175;
}

.p-flow__list li {
    font-size: 20px;
    padding-left: 1em;
    position: relative;
}

.p-flow__list li::before {
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
}

.p-flow__list li span {
    font-size: 20px;
}

/* 矢印 */
.p-flow__arrow {
    width: 34px;
    height: auto;
    margin: 30px 0 30px 50px;
}

.p-flow__arrow img {
    width: 100%;
    height: auto;
}

/* 子供イラスト */
.p-flow__illust {
    width: 308px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
}

.p-flow__illust img {
    width: 100%;
    height: auto;
}

/* =============================
   Flow レスポンシブ
   ============================= */
@media screen and (max-width: 768px) {
    .p-flow {
        padding: 21.33vw 0;
    }

    .p-flow__dots {
        width: 18.67vw;
    }

    .p-flow__dots--lt {
        top: 48vw;
    }

    .p-flow__dots--rt {
        top: 48vw;
    }

    .p-flow__inner {
        padding: 0 4.27vw;
    }

    /* モバイルは1カラム縦並び */
    .p-flow__card {
        flex-direction: column;
        gap: 0;
        padding: 3.2vw 3.73vw;
        border-radius: 4.27vw;
    }

    /* AM・PMの各列は区切りなく縦に続く */
    .p-flow__col {
        display: flex;
        flex-direction: column;
        padding-top: 10.13vw;
    }

    /* AM / PM 吹き出しを右寄りに */
    .p-flow__period {
        width: 23.2vw;
        align-self: flex-end;
    }

    .p-flow__period img {
        width: 100%;
        height: auto;
    }

    /* 各アイテム */
    .p-flow__item {
        gap: 5.6vw;
    }

    .p-flow__clock {
        width: 18.67vw;
    }

    .p-flow__time {
        font-size: 4.8vw;
        padding: 1.6vw 7.73vw;
        margin-bottom: 2.67vw;
    }

    .p-flow__list.mb {
        margin-bottom: 2vw;
    }

    .p-flow__list li {
        font-size: 3.73vw;
    }

    .p-flow__list li span {
        font-size: 3.73vw;
    }

    /* 矢印 */
    .p-flow__arrow {
        width: 5.33vw;
        margin: 1.33vw 0 4.53vw 7.73vw;
    }

    /* PM列の上に余白（AMとPMの区切り） */
    .p-flow__col:last-child {
        margin-top: 8.27vw;
    }

    /* 子供イラスト */
    .p-flow__illust {
        margin-top: 12.53vw;
        max-width: 48.27vw;
        margin-left: auto;
        margin-right: auto;
    }

    .p-flow__item-right {
        padding-top: 0.53vw;
    }
}

/* =============================
   Top News Section
   ============================= */
.p-top-news {
    padding: 97px 0 100px;
    background-color: #fff;
}

.p-top-news__inner {
    max-width: 780px;
    margin: 0 auto;
}

/* ニュースリスト */
.p-top-news__list {
    list-style: none;
    padding: 0;
    margin: 0px 0 54px;
}

.p-top-news__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 12px;
    border-bottom: 1px dashed #C8C8C8;
}

/* 日付 */
.p-top-news__date {
    flex-shrink: 0;
    font-size: 18px;
    letter-spacing: calc(18px * (2/ 100));
    min-width: 80px;
}

/* カテゴリバッジ */
.p-top-news__badge {
    flex-shrink: 0;
    display: inline-block;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 16px;
    letter-spacing: calc(16px * (2/ 100));
    font-weight: bold;
    line-height: 1;
    min-width: 80px;
    text-align: center;
}

.p-top-news__badge--green {
    background-color: var(--main-color);
    color: #fff;
}

/* タイトル */
.p-top-news__title {
    font-size: 18px;
    letter-spacing: calc(18px * (2/ 100));
    line-height: 1;
    transition: opacity 0.2s;
    margin-left: 24px;
}

.p-top-news__title:hover {
    opacity: 0.6;
}

/* 一覧ボタン */
.p-top-news__btn-wrap {
    text-align: center;
}

.p-top-news__btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    font-size: 18px;
    line-height: 1;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: background-color 0.2s, color 0.2s;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.p-top-news__btn span {
    margin-right: 15px;
}

.p-top-news__btn:hover {
    background-color: var(--main-color);
    color: #fff;
}

/* =============================
   Top News レスポンシブ
   ============================= */
@media screen and (max-width: 768px) {
    .p-top-news {
        padding: 21.33vw 0 24vw;
    }

    .p-top-news__inner {
        padding: 0 5.33vw;
    }

    .p-top-news .c-section-head {
        margin-bottom: 17.07vw;
    }

    .p-top-news__list {
        margin: 0 0 9.6vw;
    }

    /* 日付+バッジ: 1行目 / タイトル: 2行目 */
    .p-top-news__item {
        flex-wrap: wrap;
        align-items: center;
        gap: 2.67vw 6.4vw;
        padding: 6.4vw 3.2vw;
    }

    .p-top-news__item:first-child {
        padding-top: 0;
    }

    /* 日付 */
    .p-top-news__date {
        font-size: 3.73vw;
        min-width: 16vw;
        flex-shrink: 0;
    }

    /* バッジ */
    .p-top-news__badge {
        font-size: 3.2vw;
        padding: 0.8vw 3.73vw;
        min-width: 20.27vw;
        flex-shrink: 0;
    }

    /* タイトルは2行目にフル幅で表示 */
    .p-top-news__title {
        font-size: 3.73vw;
        line-height: 130%;
        width: 100%;
        order: 3;
        margin-top: 0;
        margin-left: 0;
    }

    /* 一覧ボタン */
    .p-top-news__btn {
        font-size: 4.8vw;
        padding: 4vw 10.67vw;
    }

    .p-top-news__btn span {
        font-size: 4.8vw;
        margin-right: 4.8vw;
    }
}

/* =============================
   Access Section
   ============================= */
.p-access {
    padding-top: 100px;
    background-color: #F7F7F7;
}

.p-access .c-section-head {
    margin-bottom: 64px;
}

.p-access__inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

/* 住所 */
.p-access__address {
    font-size: 16px;
    margin: 0px 0 51px;
    letter-spacing: calc(16px * (2 / 100));
}

/* Googleマップ */
.p-access__map {
    width: 100%;
    line-height: 0;
}

.p-access__map iframe {
    width: 100%;
    height: 480px;
    display: block;
}

/* =============================
   Access レスポンシブ
   ============================= */
@media screen and (max-width: 768px) {
    .p-access {
        padding-top: 21.33vw;
    }

    .p-access__inner {
        padding: 0 5.33vw;
    }

    .p-access__address {
        font-size: 3.73vw;
        letter-spacing: calc(14px * (2/100));
        margin: 0 0 8vw;
    }

    /* モバイルはマップを高く・フル幅 */
    .p-access__map iframe {
        aspect-ratio: 1 / 1;
        height: auto;
    }

    .p-access .c-section-head {
        margin-bottom: 17.07vw;
    }
}

/* =============================
   Footer
   ============================= */
.l-footer {
    position: relative;
    background-color: var(--main-color);
    color: #fff;
    overflow: hidden;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 129px;
}

/* 波形背景 */
.l-footer__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    pointer-events: none;
}

.l-footer__wave img {
    width: 100%;
    height: auto;
    display: block;
}

/* メインエリア */
.l-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1067px;
    margin: 0 auto;
    padding: 100px 0px 35px;
    position: relative;
    z-index: 1;
}

/* 左: 園情報 */
.l-footer__info {
    flex-shrink: 0;
}

.l-footer__name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 3cqh;
}

.l-footer__address {
    font-size: 16px;
    line-height: 1;
    margin-bottom: 8px;
}

.l-footer__address2 {
    font-size: 16px;
    line-height: 1;
    margin-bottom: 16px;
}

/* MAPボタン */
.l-footer__map-btn {
    display: inline-block;
    color: var(--main-color);
    font-size: 16px;
    letter-spacing: calc(16px * (2 / 100));
    line-height: 1;
    font-weight: bold;
    padding: 6px 20px;
    background-color: #fff;
    transition: background-color 0.2s;
    letter-spacing: 0.05em;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

.l-footer__map-btn span {
    margin-right: 8px;
}

.l-footer__map-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* 中央: 電話番号画像 */
.l-footer__tel-wrap {
    flex-shrink: 0;
    margin-right: 40px;
}

.l-footer__tel-img {
    width: 214px;
    height: auto;
    display: block;
    -webkit-animation: floatUpDown 3s ease-in-out infinite;
    animation: floatUpDown 3s ease-in-out infinite;
}

/* 右: ナビ */
.l-footer__nav {
    display: flex;
    gap: 48px;
}

.l-footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.l-footer__nav-item a {
    font-size: 16px;
    line-height: 1;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s;
}

/* .l-footer__nav-item a::before {
    content: "●";
    font-size: 8px;
    color: #fff;
    flex-shrink: 0;
} */

.l-footer__nav-item a:hover {
    opacity: 0.7;
}

/* コピーライト */
.l-footer__copyright {
    font-size: 14px;
    letter-spacing: calc(14px * (2 / 100));
    text-align: center;
    position: relative;
    z-index: 1;
}

.l-footer__copyright p {
    font-size: 13px;
    color: #fff;
    opacity: 0.85;
}

/* =============================
   Footer レスポンシブ
   ============================= */
@media screen and (max-width: 1000px) {
    .l-footer__inner {
        flex-wrap: wrap;
        padding: 48px 0px 32px;
        gap: 32px;
    }

    .l-footer__tel-img {
        width: 214px;
    }

    .l-footer__nav {
        gap: 24px;
    }

    .l-footer__nav-item a {
        font-size: 13px;
    }
}

@media screen and (max-width: 768px) {
    .l-footer {
        padding-right: 5.33vw;
        padding-left: 5.33vw;
        padding-bottom: 36vw;
    }

    /* 縦積み・中央揃え */
    .l-footer__inner {
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 21.33vw 0;
        gap: 9.6vw;
    }

    /* 園名 */
    .l-footer__name {
        font-size: 4.8vw;
        margin-bottom: 9.6vw;
    }

    /* 住所 */
    .l-footer__address {
        font-size: 3.73vw;
        text-align: center;
        margin-bottom: 2.13vw;
    }

    .l-footer__address2 {
        margin-bottom: 4.27vw;
        font-size: 3.2vw;
    }

    /* MAPボタン：中央 */
    .l-footer__map-btn {
        font-size: 4.27vw;
        display: inline-block;
        padding: 1.33vw 5.33vw;
    }

    /* 電話画像：中央・やや大きく */
    .l-footer__tel-wrap {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-right: 0;
        margin-bottom: 4.8vw;
    }

    .l-footer__tel-img {
        width: 57.07vw;
    }

    /* ナビ：2列横並び維持 */
    .l-footer__nav {
        width: 70.4vw;
        margin: auto;
        gap: 12.8vw;
        justify-content: center;
    }

    .l-footer__nav-list {
        gap: 5.33vw;
        align-items: flex-start;
    }

    .l-footer__nav-item a {
        font-size: 3.2vw;
    }

    /* コピーライト */
    .l-footer__copyright {
        font-size: 3.2vw;
        padding: 0;
        text-align: center;
    }

    .l-footer__map-btn span {
        margin-right: 2.13vw;
    }

    .l-footer__copyright p {
        font-size: 3.47vw;
    }
}

/* =============================
   c-layer-fv（下層ページ共通FV）
   ============================= */
.c-layer-fv {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

/* 左: テキストエリア */
.c-layer-fv__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

/* 見出しバッジ */
.c-layer-fv__title-wrap {
    margin-bottom: 80px;
}

.c-layer-fv__title {
    position: relative;
    display: inline-block;
    width: 340px;
    background-color: var(--main-color);
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    padding: 42px 0px;
    border-radius: 0 0 62px 0;
    -webkit-border-radius: 0 0 62px 0;
    -moz-border-radius: 0 0 62px 0;
    -ms-border-radius: 0 0 62px 0;
    -o-border-radius: 0 0 62px 0;
}

.c-layer-fv__title::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 170px;
    height: 100%;
    background-color: #F1F1F1;
    opacity: 0.2;
    border-radius: 0 62px 62px 0;
    -webkit-border-radius: 0 62px 62px 0;
    -moz-border-radius: 0 62px 62px 0;
    -ms-border-radius: 0 62px 62px 0;
    -o-border-radius: 0 62px 62px 0;
}

.c-layer-fv__title span {
    position: relative;
    z-index: 2;
}

/* パンくず */
.c-layer-fv__breadcrumb ol {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.c-layer-fv__breadcrumb ol li {
    font-size: 14px;
    color: #9C9C9C;
    max-width: 10em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.c-layer-fv__breadcrumb ol li+li::before {
    content: " > ";
    margin: 0 4px;
    color: #3A3A3A;
}

.c-layer-fv__breadcrumb ol li a {
    color: #3A3A3A;
    text-decoration: none;
    transition: opacity 0.2s;
}

.c-layer-fv__breadcrumb ol li a:hover {
    opacity: 0.6;
}

/* 右: 画像エリア */
.c-layer-fv__img {
    aspect-ratio: 51 / 25;
}

.c-layer-fv__img picture,
.c-layer-fv__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    border-radius: 40px 0 0 40px;
    -webkit-border-radius: 40px 0 0 40px;
    -moz-border-radius: 40px 0 0 40px;
    -ms-border-radius: 40px 0 0 40px;
    -o-border-radius: 40px 0 0 40px;
}

/* =============================
   c-layer-fv レスポンシブ (SP)
   ============================= */
@media screen and (max-width: 768px) {
    .c-layer-fv {
        flex-direction: column;
        position: relative;
        height: auto;
        padding-bottom: 13.4vw;
    }

    /* SP: 画像を上 */
    .c-layer-fv__img {
        order: 1;
        width: 91%;
        height: auto;
        margin-left: auto;
    }

    .c-layer-fv__img picture {
        height: 100%;
    }

    .c-layer-fv__img picture,
    .c-layer-fv__img img {
        border-radius: 4vw 0 0 4vw;
        -webkit-border-radius: 4vw 0 0 4vw;
        -moz-border-radius: 4vw 0 0 4vw;
        -ms-border-radius: 4vw 0 0 4vw;
        -o-border-radius: 4vw 0 0 4vw;
    }

    /* SP: テキストを下に配置 */
    .c-layer-fv__text {
        position: absolute;
        top: 21.4vw;
        left: 0;
        background-color: unset;
    }

    .c-layer-fv__title-wrap {
        margin-bottom: 14.4vw;
    }

    .c-layer-fv__title::before {
        width: 18.2vw;
    }

    .c-layer-fv__title {
        width: 42.7vw;
        font-size: 4.8vw;
        /* padding: 4.6vw 9.4vw; */
        padding: 4.6vw 0vw;
        border-radius: 0 0 9.6vw 0;
        -webkit-border-radius: 0 0 9.6vw 0;
        -moz-border-radius: 0 0 9.6vw 0;
        -ms-border-radius: 0 0 9.6vw 0;
        -o-border-radius: 0 0 9.6vw 0;
    }

    .c-layer-fv__breadcrumb ol li {
        font-size: 2.2vw;
    }

    .c-layer-fv__breadcrumb ol li+li::before {
        margin: 0 1.07vw;
    }
}

/* =============================
   p-policy（教育理念）
   ============================= */
.p-policy {
    background-color: #E7FFEE;
    padding: 100px 0 147px;
}

.p-policy__inner {
    max-width: 1204px;
    margin: 0 auto;
}

/* セクションヘッドの下マージン調整 */
.p-policy__head {
    margin-bottom: 80px;
}

/* リード文 */
.p-policy__lead {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color);
    letter-spacing: calc(24px * (2 / 100));
    margin-bottom: 80px;
}

/* カード一覧 */
.p-policy__list {
    display: flex;
    align-items: flex-start;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 各カード */
.p-policy__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 64px;
}

.p-policy__item:first-child {
    padding-left: 0;
}

.p-policy__item:nth-child(2) {
    position: relative;
}

.p-policy__item:nth-child(2)::before {
    position: absolute;
    top: 50%;
    left: 0;
    content: '';
    width: 2px;
    height: 90%;
    border-left: 2px dashed #A8E1B8;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.p-policy__item:nth-child(2)::after {
    position: absolute;
    top: 50%;
    right: 0;
    content: '';
    width: 2px;
    height: 90%;
    border-left: 2px dashed #A8E1B8;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.p-policy__item:last-child {
    padding-right: 0;
}

/* 丸形画像 */
.p-policy__img-wrap {
    position: relative;
    width: auto;
    height: auto;
    border-radius: 50%;
    overflow: visible;
    margin-bottom: 48px;
    flex-shrink: 0;
}

.p-policy__img-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
}

/* タイトル */
.p-policy__item-title {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: calc(24px * (2 / 100));
    margin-bottom: 24px;
}

.p-policy__item-title--green {
    color: #36A254;
}

.p-policy__item-title--cyan {
    color: #00BFBF;
}

.p-policy__item-title--pink {
    color: #F96175;
}

/* 説明文 */
.p-policy__item-body {
    width: 80%;
    font-size: 18px;
    letter-spacing: calc(18px * (2 / 100));
    line-height: 130%;
}

/* =============================
   p-policy レスポンシブ (SP)
   ============================= */
@media screen and (max-width: 768px) {
    .p-policy {
        padding: 16vw 0 23.47vw;
    }

    .p-policy__inner {
        padding: 0 5.33vw;
    }

    .p-policy__head {
        margin-bottom: 18.67vw;
    }

    .p-policy__lead {
        font-size: 6.4vw;
        text-align: center;
        margin-bottom: 10.67vw;
    }

    /* SP: 縦積み */
    .p-policy__list {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    /* カード間の縦破線 → 横破線に変更 */
    .p-policy__item+.p-policy__item {
        border-left: none;
        border-top: 0.8vw dashed #a8e0bc;
        padding-top: 9.6vw;
    }

    /* SP各カード */
    .p-policy__item {
        width: 84%;
        padding: 0 4vw 9.6vw;
    }

    .p-policy__item:first-child {
        padding-left: 4vw;
    }

    .p-policy__item:nth-child(2) {
        position: relative;
    }

    .p-policy__item:nth-child(2)::before {
        display: none;
    }

    .p-policy__item:nth-child(2)::after {
        display: none;
    }

    .p-policy__item:last-child {
        padding-right: 4vw;
    }

    .p-policy__item:last-child {
        padding-bottom: 0;
    }

    /* SP: 画像サイズ縮小 */
    .p-policy__img-wrap {
        margin-bottom: 10.13vw;
    }

    .p-policy__item-title {
        font-size: 5.33vw;
        margin-bottom: 5.07vw;
    }

    .p-policy__item-body {
        width: 70%;
        font-size: 3.73vw;
    }
}

/* =============================
   p-about（引き出す保育）
   ============================= */
.p-about {
    background-color: #fff;
    padding: 150px 0 0;
    overflow: hidden;
}

.p-about__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 背景円エリア */
.p-about__bg {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
}

/* 円形背景画像 */
.p-about__bg picture {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 839px;
    z-index: 0;
    pointer-events: none;
}

.p-about__bg picture img {
    width: 100%;
    height: auto;
    display: block;
}

/* テキストコンテンツ（円の上に重なる） */
.p-about__content {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding: 80px 0px;
    text-align: center;
}

/* タイトル */
.p-about__title {
    font-size: 36px;
    font-weight: bold;
    color: var(--font-color-blown);
    letter-spacing: calc(36px * (2 / 100));
    margin-bottom: 54px;
}

/* 本文 */
.p-about__text p {
    font-size: 20px;
    line-height: 48px;
    letter-spacing: calc(20px * (2 / 100));
}

/* 底部イラスト */
.p-about__illust {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: -20px;
}

.p-about__illust-left {
    width: 173px;
}

.p-about__illust-right {
    width: 126px;
}

.p-about__illust img {
    width: 100%;
    height: auto;
    display: block;
}

/* =============================
   p-about レスポンシブ (SP)
   ============================= */
@media screen and (max-width: 768px) {
    .p-about {
        padding: 16vw 0 0;
    }

    .p-about__inner {
        padding: 0;
    }

    /* SP: 背景画像を自然なサイズで表示 */
    .p-about__bg {
        padding: 0;
        margin-bottom: 40vw;
    }

    .p-about__bg picture {
        position: static;
        transform: none;
        max-width: 100%;
        width: 100%;
    }

    .p-about__content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 8vw 13.33vw;
    }

    .p-about__title {
        font-size: 6.4vw;
        margin-bottom: 14.4vw;
    }

    .p-about__text p {
        font-size: 4.27vw;
        line-height: 8.53vw;
    }

    .p-about__illust {
        margin-top: -5.33vw;
        padding-left: 8.53vw;
        padding-right: 8.53vw;
    }

    /* SP: イラストを小さく */
    .p-about__illust-left {
        width: 35.73vw;
    }

    .p-about__illust-right {
        width: 25.87vw;
    }
}

/* =============================
   p-facility-map
   ============================= */
.p-facility-map {
    padding: 100px 0 100px;
}

.p-facility-map__inner {
    max-width: 930px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================
   p-facility（施設紹介）
   ============================= */
.p-facility {
    position: relative;
    background-color: #E7FFEE;
    padding: 188px 0 129px;
    overflow: hidden;
}

/* 背景装飾 blob */
.p-facility__bg {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 302px;
    max-width: 900px;
    pointer-events: none;
    z-index: 0;
}

.p-facility__bg img {
    width: 100%;
    height: auto;
    display: block;
}

.p-facility__bg2 {
    position: absolute;
    bottom: 360px;
    left: 50%;
    transform: translateX(-50%);
    width: 302px;
    max-width: 900px;
    pointer-events: none;
    z-index: 0;
}

.p-facility__bg2 img {
    width: 100%;
    height: auto;
    display: block;
}

.p-facility__inner {
    position: relative;
    z-index: 1;
    max-width: 1135px;
    margin: 0 auto;
}

/* ===== カードグリッド ===== */
.p-facility__list {
    list-style: none;
    padding: 0;
    margin: 0 0 140px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
}

/* 5〜7枚目は3カラム中央寄せ */
.p-facility__item:nth-child(5),
.p-facility__item:nth-child(6),
.p-facility__item:nth-child(7) {
    grid-column: auto;
}

/* 5〜7を3カラムに並べるため、5番目にgrid-column-start指定 */
/* 4列グリッドで5番目から折り返すと1列目スタート → 3列グリッドの中央に見せるためpadding調整 */
/* シンプルな方法: 7アイテムは4-col grid、下段3を中央寄せするためoffset */
/* 実装: 5番目は grid-column: 1 start から始まるので、sectionで別途ラップ */

/* 各カード */
.p-facility__item {
    background-color: #fff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 4px 12.7px #C8C8C8;
}

/* 画像エリア */
.p-facility__img-wrap {
    position: relative;
    width: 100%;
}

.p-facility__img-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    border-radius: 16px 16px 0 0;
    -webkit-border-radius: 16px 16px 0 0;
    -moz-border-radius: 16px 16px 0 0;
    -ms-border-radius: 16px 16px 0 0;
    -o-border-radius: 16px 16px 0 0;
}

/* 番号バッジ */
.p-facility__num {
    position: absolute;
    top: -10px;
    left: -13px;
    width: 48px;
    height: 48px;
    background-color: var(--main-color);
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    line-height: 1;
    padding-bottom: 6px;
}

/* カードテキストエリア */
.p-facility__item-title {
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    color: #F96175;
    letter-spacing: calc(20px * (2 / 100));
    padding: 32px 18.5px 24px;
}

.p-facility__item-body {
    font-size: 16px;
    letter-spacing: calc(16px * (2 / 100));
    line-height: 130%;
    padding: 0 18.5px 27px;
    flex: 1;
}

/* ===== セキュリティボックス ===== */
.p-facility__security {
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 940px;
    margin: 0 auto;
    background-color: #fff;
    border: 2px solid var(--main-color);
    overflow: hidden;
    border-radius: 26px;
    -webkit-border-radius: 26px;
    -moz-border-radius: 26px;
    -ms-border-radius: 26px;
    -o-border-radius: 26px;
}

.p-facility__security-img {
    flex: 0 0 260px;
    overflow: hidden;
}

.p-facility__security-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.p-facility__security-text {
    flex: 1;
    padding: 48.5px 61px 48.5px 41px;
    border-left: none;
    border-radius: 0 26px 26px 0;
    -webkit-border-radius: 0 26px 26px 0;
    -moz-border-radius: 0 26px 26px 0;
    -ms-border-radius: 0 26px 26px 0;
    -o-border-radius: 0 26px 26px 0;
}

.p-facility__security-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    letter-spacing: calc(20px * (2 / 100));
    margin-bottom: 20px;
}

.p-facility__security-note {
    font-size: 16px;
    letter-spacing: calc(16px * (2 / 100));
    line-height: 130%;
}

/* =============================
   p-facility レスポンシブ (SP)
   ============================= */
@media screen and (max-width: 768px) {
    .p-facility-map {
        padding: 13.6vw 5.07vw 18.93vw;
    }

    .p-facility {
        padding: 33.87vw 0 32vw;
    }

    .p-facility__bg {
        top: -16vw;
        width: 40.53vw;
    }

    .p-facility__bg2 {
        bottom: 160vw;
        width: 40.53vw;
    }

    .p-facility__inner {
        padding: 0 5.33vw;
    }

    /* SP: 1カラム */
    .p-facility__list {
        grid-template-columns: 1fr;
        gap: 12vw;
        margin-bottom: 16vw;
    }

    .p-facility__item {
        width: 75%;
        margin-left: auto;
        margin-right: auto;
    }

    /* SP: セキュリティボックス縦積み */
    .p-facility__security {
        flex-direction: column;
        max-width: 100%;
    }

    .p-facility__security-img {
        flex: none;
        width: 100%;
        height: 53.33vw;
    }

    .p-facility__security-text {
        border-top: none;
        border-radius: 0 0 4.27vw 4.27vw;
        padding: 6.4vw 2.67vw 13.33vw;
    }

    .p-facility__security-title {
        font-size: 5.33vw;
        margin-bottom: 6.4vw;
    }

    .p-facility__security-note {
        font-size: 4.27vw;
        padding-left: 0.8vw;
        padding-right: 0.8vw;
    }

    .p-facility__num {
        font-size: 8.53vw;
        padding-bottom: 1.6vw;
    }

    .p-facility__item-title {
        font-size: 5.33vw;
        padding: 8.53vw 4.93vw 6.4vw;
    }

    .p-facility__item-body {
        font-size: 4.27vw;
        padding: 0 4.93vw 7.2vw;
    }
}

/* =============================
   p-facility-map タップヒント（SP専用）
   =============================  */
.p-facility-map__tap-hint {
    display: none;
    /* PCでは非表示 */
}

@media screen and (max-width: 768px) {

    /* 地図エリアをタップ可能に見せる */
    #js-map-trigger {
        position: relative;
        cursor: pointer;
    }

    /* タップヒントバッジ */
    .p-facility-map__tap-hint {
        display: block;
        position: absolute;
        bottom: 2.67vw;
        right: 2.67vw;
        background-color: rgba(0, 0, 0, 0.55);
        color: #fff;
        font-size: 3.2vw;
        letter-spacing: 0.05em;
        padding: 1.33vw 2.67vw;
        border-radius: 26.67vw;
        pointer-events: none;
        -webkit-border-radius: 26.67vw;
        -moz-border-radius: 26.67vw;
    }
}

/* =============================
   p-map-modal（地図モーダル SP用）
   ============================= */

/* モーダル本体 — 初期は非表示 */
.p-map-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.p-map-modal.is-active {
    display: flex;
}

/* 背景オーバーレイ */
.p-map-modal__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.75);
}

/* コンテナ */
.p-map-modal__container {
    position: relative;
    z-index: 1;
    width: 95vw;
    height: 80vh;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* 閉じるボタン */
.p-map-modal__close {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    width: 36px;
    height: 36px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

/* スクロールエリア — 上下左右スクロール可能 */
.p-map-modal__scroll {
    flex: 1;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    /* iOS慣性スクロール */
    cursor: -webkit-grab;
    cursor: grab;
}

/* 画像 — 幅広くして水平スクロールを可能に */
.p-map-modal__img {
    display: block;
    /* 元画像のまま表示（縮小せず）→左右スクロール発生 */
    width: auto;
    min-width: 150%;
    height: auto;
    min-height: 100%;
}

/* =============================
   p-event（年間行事）
   ============================= */
.p-event {
    background-image: url(../img/event/event_bg.webp);
    background-repeat: repeat-y;
    background-size: 100% auto;
    padding: 100px 0 100px;
}

.p-event__inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* 各季節のブロック */
.p-event__season {
    display: flex;
    justify-content: space-between;
    margin-bottom: 110px;
}

.p-event__season:last-child {
    margin-bottom: 0;
}

/* 季節アイコン */
.p-event__season-icon {
    width: 14.2%;
    flex-shrink: 0;
    margin-top: 10px;
}

.p-event__season-icon img {
    width: 100%;
    height: auto;
    display: block;
}

/* 月・テキストブロック */
.p-event__months {
    width: 29%;
    flex-shrink: 0;
}

.p-event__month {
    margin-bottom: 24px;
}

.p-event__month-title {
    font-size: 20px;
    line-height: 1;
    font-weight: bold;
    padding: 10px 14px;
    margin-bottom: 14px;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: calc(20px * (2 / 100));
}

.p-event__month-text {
    font-size: 18px;
    line-height: 130%;
    letter-spacing: calc(18px * (2 / 100));
    padding: 0 14px;
}

/* 冬の注意書き */
.p-event__note {
    font-size: 13px;
    line-height: 1.3;
    margin-top: 54px;
    letter-spacing: 0.05em;
}

/* ギャラリー（写真） */
.p-event__gallery {
    width: 49.3%;
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px 0px;
}

.p-event__card {
    width: 48%;
}

.p-event__card-img {
    margin-bottom: 12px;
}

.p-event__card-img img {
    width: 100%;
    aspect-ratio: 3 / 2;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    box-sizing: border-box;
    border-radius: 10px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    box-shadow: 4px 4px 6.5px rgba(112, 112, 112, 0.25);
}

.p-event__card-text {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: calc(18px * (2 / 100));
}

/* ===== 各季節のカラーテーマ ===== */

/* 春 */
.p-event__season--spring .p-event__month-title {
    background-color: #FDE2E8;
    color: #F96175;
}

/* 夏 */
.p-event__season--summer .p-event__month-title {
    background-color: #DDF0FA;
    color: #4CB0E3;
}

/* 秋 */
.p-event__season--autumn .p-event__month-title {
    background-color: #FEE7D1;
    color: #F7931E;
}

/* 冬 */
.p-event__season--winter .p-event__month-title {
    background-color: #E2EFFF;
    color: #72A5FF;
}

/* =============================
   p-event レスポンシブ (SP)
   ============================= */
@media screen and (max-width: 768px) {
    .p-event {
        background-image: url(../img/event/event_bg_sp.webp);
        padding: 13.33vw 0 29.6vw;
    }

    .p-event__inner {
        padding: 0 5.33vw;
    }

    .p-event__season {
        flex-direction: column;
        align-items: center;
        gap: 12.8vw;
        margin-bottom: 16vw;
    }

    .p-event__season-icon {
        width: 45.33vw;
        margin-top: 0;
    }

    .p-event__months {
        width: 100%;
    }

    .p-event__month-title {
        margin-bottom: 3.73vw;
        padding: 2.67vw 3.73vw;
        font-size: 6.4vw;
    }

    .p-event__month-text {
        padding: 0 3.73vw;
        font-size: 4.27vw;
    }

    .p-event__month:last-child {
        margin-bottom: 0;
    }

    .p-event__gallery {
        width: 100%;
        gap: 4.27vw 4%;
    }

    .p-event__card-text {
        font-size: 3.47vw;
    }

    .p-map-modal__close {
        font-size: 5.87vw;
    }

    .p-event__month {
        margin-bottom: 6.4vw;
    }

    .p-event__note {
        font-size: 3.47vw;
        margin-top: -2.67vw;
    }

    .p-event__card-img {
        margin-bottom: 3.2vw;
    }
}

/* =============================
   p-recruit（募集要項）
   ============================= */
.p-recruit {
    background-color: #E7FFEE;
    padding: 100px 0 120px;
}

.p-recruit__inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* バナー画像 */
.p-recruit__banner {
    max-width: 540px;
    margin: 0 auto 90px;
}

.p-recruit__banner a {
    display: block;
    transition: opacity 0.3s ease;
}

.p-recruit__banner a:hover {
    opacity: 0.8;
}

.p-recruit__banner img {
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
}

/* テーブル（募集要項リスト） */
.p-recruit__table {
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    /* 行間の隙間 */
}

.p-recruit__row {
    display: flex;
    border: 1px solid var(--main-color);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    background-color: #fff;
    min-height: 60px;
    overflow: hidden;
    /* dtの角丸をきれいに見せるため */
}

.p-recruit__row dt {
    width: 23%;
    flex-shrink: 0;
    background-color: var(--main-color);
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 17px 10px;
    letter-spacing: calc(20px * (2 / 100));
    font-size: 20px;
}

.p-recruit__row dd {
    width: 77%;
    display: flex;
    align-items: center;
    padding: 17px 36px;
    line-height: 130%;
    font-size: 20px;
    letter-spacing: calc(20px * (2 / 100));
}

/* メッセージ */
.p-recruit__message {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 180%;
    letter-spacing: calc(24px * (2 / 100));
}

/* =============================
   p-recruit レスポンシブ (SP)
   ============================= */
@media screen and (max-width: 768px) {
    .p-recruit {
        padding: 16vw 0 26.67vw;
    }

    .p-recruit__inner {
        padding: 0 5.33vw;
        max-width: 133.33vw;
    }

    .p-recruit__banner {
        width: 95%;
        margin-bottom: 16vw;
    }

    .p-recruit__table {
        margin-bottom: 16vw;
        gap: 0.8vw;
    }

    .p-recruit__row {
        flex-direction: row;
        border: none;
        background-color: transparent;
        overflow: visible;
        gap: 0.8vw;
    }

    .p-recruit__row dt {
        width: 29%;
        padding: 3.87vw 1.33vw;
        font-size: 4.27vw;
        line-height: 1;
        border-radius: 1.07vw;
        -webkit-border-radius: 1.07vw;
    }

    .p-recruit__row dd {
        width: calc(71% - 0.8vw);
        padding: 4vw 2.67vw;
        font-size: 3.73vw;
        justify-content: center;
        text-align: center;
        line-height: 1.6;
        background-color: #fff;
        border: 0.27vw solid var(--main-color);
        border-radius: 1.07vw;
        -webkit-border-radius: 1.07vw;
    }

    .p-recruit__message {
        font-size: 4.8vw;
        line-height: 180%;
    }
}

/* =============================
   p-flow1（園見学の流れ）
   ============================= */
.p-flow1 {
    padding: 100px 0;
    background-color: #fff;
}

.p-flow1__inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* 英語サブタイトルのPC/SP切り替え */
.p-flow1 .c-section-head__sub .sp {
    display: none;
}

.p-flow1__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
}

.p-flow1__img {
    width: 32%;
    max-width: 346px;
    flex-shrink: 0;
}

.p-flow1__steps {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.p-flow1__step {
    display: flex;
    align-items: center;
}

.p-flow1__step-num {
    font-size: 60px;
    font-weight: bold;
    letter-spacing: calc(60px * (2 / 100));
    color: var(--main-color);
    line-height: 1;
    text-align: center;
    flex-shrink: 0;
    letter-spacing: 0;
}

.p-flow1__step-text {
    margin-top: 7px;
    margin-left: 30px;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: calc(18px * (2 / 100));
}

.p-flow1__arrow {
    width: 50px;
    margin: 36px 0 36px 3px;
    /* 数字の中央にくるように調整 */
}

/* =============================
   p-flow1 レスポンシブ (SP)
   ============================= */
@media screen and (max-width: 768px) {
    .p-flow1 {
        padding: 21.33vw 0 21.33vw;
    }

    .p-flow1__inner {
        padding: 0 7.47vw;
    }

    /* サブタイトルの切り替え */
    .p-flow1 .c-section-head__sub .pc {
        display: none;
    }

    .p-flow1 .c-section-head__sub .sp {
        display: inline;
    }

    .p-flow1__content {
        flex-direction: column;
        gap: 10.67vw;
    }

    .p-flow1__img {
        width: 59%;
        margin: 0 auto;
    }

    .p-flow1__steps {
        width: 100%;
        max-width: 133.33vw;
        margin: 0 auto;
    }

    .p-flow1__step {
        flex-direction: column;
        align-items: center;
    }

    .p-flow1__step-num {
        font-size: 16vw;
        width: auto;
        margin-bottom: 8.53vw;
    }

    .p-flow1__step-text {
        margin-top: 1.87vw;
        font-size: 4.27vw;
        margin-left: 0;
        text-align: left;
        width: 100%;
        max-width: 101.33vw;
        letter-spacing: calc(16px * (2 / 100));
    }

    .p-flow1__arrow {
        width: 13.33vw;
        margin: 9.6vw auto;
        /* 中央揃え */
    }
}

/* =============================
   p-flow2（募集要項・入園手続き）
   ============================= */
.p-flow2 {
    /* padding: 0 0 100px; */
    padding: 100px 0 100px;
    background-color: #fff;
}

.p-flow2__inner {
    max-width: 1160px;
    margin: 0 auto;
}

/* 上部ボックス（募集要項） */
.p-flow2__box {
    border: 3px solid var(--main-color);
    border-radius: 15px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 24px;
    margin-bottom: 100px;
    gap: 24px;
}

.p-flow2__box-icon {
    width: 39px;
    height: auto;
}

.p-flow2__box-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--main-color);
    letter-spacing: calc(36px * (2 / 100));
}

/* サブ見出し */
.p-flow2__heading {
    text-align: center;
    margin-bottom: 100px;
}

.p-flow2__heading h3 {
    display: inline-block;
    font-size: 36px;
    font-weight: bold;
    color: var(--font-color-blown);
    letter-spacing: calc(36px * (2 / 100));
    line-height: 1;
    padding: 0 15px 8px;
    background: linear-gradient(transparent 60%, #FFF56E 60%);
}

/* .p-flow2__heading-txt {
    background: linear-gradient(transparent 65%, #FFF056 65%);
} */

.p-flow2__br-sp {
    display: none;
}

/* テキストブロック */
.p-flow2__text-blocks {
    max-width: 1040px;
    margin: 0 auto;
}

.p-flow2__text-block p {
    font-size: 20px;
    letter-spacing: calc(20px * (2 / 100));
}

.c-text-pink {
    color: #F96175;
    font-weight: bold;
}

/* =============================
   p-flow2 レスポンシブ (SP)
   ============================= */
@media screen and (max-width: 768px) {
    .p-flow2 {
        padding: 21.33vw 0 24vw;
    }

    .p-flow2__inner {
        padding: 0 5.33vw;
    }

    .p-flow2__box {
        padding: 5.33vw;
        margin-bottom: 13.33vw;
        border-width: 0.53vw;
        border-radius: 2.13vw;
        -webkit-border-radius: 2.13vw;
        gap: 6.4vw;
    }

    .p-flow2__box-icon {
        width: 10.67vw;
    }

    .p-flow2__box-title {
        font-size: 8.53vw;
    }

    .p-flow2__heading {
        margin-bottom: 13.33vw;
    }

    .p-flow2__heading h3 {
        padding: 0 4vw 2.13vw;
        font-size: 6.4vw;
        line-height: unset;
        background: unset;
    }

    .p-flow2__heading-txt {
        padding: 0 2.67vw;
        background: linear-gradient(transparent 65%, #FFF56E 65%);
    }

    .p-flow2__br-sp {
        display: inline;
    }

    .p-flow2__text-blocks {
        gap: 8vw;
    }

    .p-flow2__text-block p {
        font-size: 4.27vw;
        line-height: unset;
    }
}

/* =============================
   p-contact-guide（お問い合わせ）
   ============================= */
.p-contact-guide {
    background-color: #F7F7F7;
    padding: 100px 0 110px;
}

.p-contact-guide__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.p-contact-guide__btns {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.p-contact-guide__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 60px;
    border-radius: 32px;
    -webkit-border-radius: 32px;
    -moz-border-radius: 32px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: calc(18px * (2 / 100));
    position: relative;
    transition: opacity 0.3s ease;
}

.p-contact-guide__btn:hover {
    opacity: 0.8;
}

.p-contact-guide__btn--green {
    background-color: var(--main-color);
    color: #fff;
    border: 2px solid var(--main-color);
    gap: 16px;
}

.p-contact-guide__btn--white {
    gap: 8px;
    background-color: #fff;
    color: var(--main-color);
    border: 2px solid var(--main-color);
}

.p-contact-guide__btn-icon {
    width: 24px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}

.p-contact-guide__btn-arrow {
    font-size: 16px;
}

/* =============================
   p-contact-guide レスポンシブ (SP)
   ============================= */
@media screen and (max-width: 768px) {
    .p-contact-guide {
        padding: 21.33vw 0 26.67vw;
    }

    .p-contact-guide__inner {
        padding: 0 7.47vw;
    }

    .p-contact-guide__btns {
        flex-direction: column;
        align-items: center;
        gap: 5.33vw;
    }

    .p-contact-guide__btn {
        font-size: 4.8vw;
        width: 100%;
        max-width: 85.33vw;
    }

    .p-contact-guide__btn-icon {
        margin-top: 0.8vw;
    }

    .p-contact-guide__btn-arrow {
        font-size: 4.27vw;
    }
}

/* =============================
   p-parents（保護者の方へ）
   ============================= */
.p-parents {
    padding: 100px 0 160px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.p-parents__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 10;
}

.p-parents__catch {
    text-align: center;
    font-size: 32px;
    color: #F96175;
    letter-spacing: calc(32px * (2 / 100));
    margin-bottom: 40px;
}

/* ボックス */
.p-parents__box {
    display: flex;
    max-width: 580px;
    margin: 0 auto 50px;
    border: 2px solid var(--font-color-blown);
    border-radius: 12px;
    -webkit-border-radius: 12px;
    overflow: hidden;
}

.p-parents__box-left {
    background-color: var(--font-color-blown);
    color: #fff;
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 10px;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: calc(28px * (2 / 100));
    line-height: 1.5;
}

.p-parents__box-right {
    width: 65%;
    background-color: #fff;
    color: var(--font-color-blown);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.p-parents__box-text1 {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    gap: 24px;
}

.p-parents__box-text1 img {
    width: 52px;
    height: auto;
}

.p-parents__box-plus img {
    width: 24px;
    height: auto;
}

.p-parents__box-text2 {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 0.1em;
}

/* リスト */
.p-parents__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 523px;
    margin: 0 auto 60px;
    gap: 24px 0;
}

.p-parents__list li {
    width: auto;
    min-width: 37%;
    position: relative;
    font-size: 20px;
    line-height: 1;
    letter-spacing: calc(20px * (2 / 100));
    box-sizing: border-box;
}

.p-parents__list li.full-width {
    width: 100%;
}

/* ボタン */
.p-parents__btn-wrap {
    text-align: center;
    margin-bottom: 20px;
}

.p-parents__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 320px;
    height: 64px;
    background-color: #F96175;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 32px;
    letter-spacing: 0.05em;
    position: relative;
    transition: opacity 0.3s;
}

.p-parents__btn:hover {
    opacity: 0.8;
}

.p-parents__btn-arrow {
    font-size: 16px;
}

/* イラスト */
.p-parents__images {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    max-width: 1170px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    pointer-events: none;
    z-index: 1;
}

.p-parents__img1 {
    width: 25vw;
    max-width: 204px;
}

.p-parents__img2 {
    width: 22vw;
    max-width: 178px;
}

/* =============================
   p-parents レスポンシブ (SP)
   ============================= */
@media screen and (max-width: 768px) {
    .p-parents {
        padding: 13.33vw 0 0;
    }

    .p-parents__inner {
        padding: 0 5.33vw;
    }

    .p-parents__catch {
        font-size: 6.4vw;
        line-height: 1;
        margin-bottom: 6.4vw;
    }

    .p-parents__box {
        margin-bottom: 10.67vw;
    }

    .p-parents__box-left {
        width: 38%;
        padding: 4vw 1.33vw;
        font-size: 4.8vw;
    }

    .p-parents__box-right {
        width: 62%;
        padding: 4vw 1.33vw;
    }

    .p-parents__box-text1 {
        font-size: 4vw;
        gap: 1.6vw;
        margin-bottom: 1.07vw;
    }

    .p-parents__box-text1 img {
        width: 8.8vw;
    }

    .p-parents__box-plus img {
        width: 4vw;
    }

    .p-parents__box-text2 {
        font-size: 5.33vw;
    }

    .p-parents__list {
        justify-content: space-between;
        margin-bottom: 13.33vw;
        gap: 4vw 0;
    }

    .p-parents__list li {
        min-width: 43%;
        width: auto;
        font-size: 4vw;
    }

    .p-parents__list li::before {
        top: 1.6vw;
        width: 2.13vw;
        height: 2.13vw;
    }

    .p-parents__btn {
        width: 100%;
        max-width: 85.33vw;
        height: 17.07vw;
        font-size: 4.8vw;
    }

    .p-parents__images {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 10.67vw;
        padding: 0 2.67vw;
        align-items: flex-end;
    }

    .p-parents__img1 {
        width: 32%;
        max-width: 48vw;
    }

    .p-parents__img2 {
        width: 28%;
        max-width: 42.67vw;
    }

    .p-parents__btn-wrap {
        margin-bottom: 5.33vw;
    }

    .p-parents__btn-arrow {
        font-size: 4.27vw;
    }
}

/* =============================
   p-bus（バス時刻表）
   ============================= */
.p-bus {
    padding: 100px 0;
    background-color: #E7FFEE;
    /* 背景色 */
}

.p-bus__inner {
    max-width: 1240px;
    margin: 0 auto;
}

.p-bus__content {
    background-color: #fff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    padding: 28px 25px;
    display: flex;
    justify-content: space-between;
    gap: 38px;
}

.p-bus__item {
    flex: 1;
}

.p-bus__item img {
    width: 100%;
    height: auto;
}

/* =============================
   p-bus レスポンシブ (SP)
   ============================= */
@media screen and (max-width: 768px) {
    .p-bus {
        padding: 21.33vw 0;
    }

    .p-bus__inner {
        padding: 0 5.33vw;
    }

    .p-bus__content {
        padding: 8vw;
        flex-direction: column;
        gap: 8vw;
    }

    .p-bus__item {
        width: 100%;
        max-width: 85.33vw;
        margin: 0 auto;
    }
}

/* =============================
   p-recruit2（教職員募集要項）
   ============================= */
.p-recruit2 {
    padding: 100px 0 168px;
    background-color: #E7FFEE;
}

.p-recruit2__inner {
    max-width: 1028px;
    margin: 0 auto;
}

/* バナー */
.p-recruit2__banner {
    text-align: center;
    margin-bottom: 90px;
}

.p-recruit2__banner img {
    max-width: 540px;
    width: 100%;
    height: auto;
    margin: auto;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: opacity 0.3s;
}

.p-recruit2__banner a:hover img {
    opacity: 0.8;
}

/* サブ見出し */
.p-recruit2__heading {
    text-align: center;
    margin-bottom: 80px;
}

.p-recruit2__heading h3 {
    display: inline-block;
    font-size: 36px;
    font-weight: bold;
    color: var(--font-color-blown);
    letter-spacing: calc(36px * (2 / 100));
    padding: 0 15px 8px;
    background: linear-gradient(transparent 60%, #FFF56E 60%);
}

/* .p-recruit2__heading-txt {
    background: linear-gradient(transparent 65%, #FFF056 65%);
} */

/* テーブル（Grid） */
.p-recruit2__table {
    display: grid;
    grid-template-columns: 250px 1fr 1fr;
    gap: 5px;
    width: 100%;
}

.p-recruit2__th {
    background-color: var(--main-color);
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 4px;
    padding: 16px 10px;
    line-height: 1.5;
}

.p-recruit2__th--empty {
    background-color: var(--main-color);
}

.p-recruit2__th-side {
    background-color: var(--main-color);
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 4px;
    padding: 16px 10px;
    line-height: 1.5;
}

.p-recruit2__td {
    background-color: #fff;
    border: 2px solid var(--main-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 16px;
    font-size: 20px;
    color: #333;
    line-height: 1.6;
}

.p-recruit2__td--empty {
    border: none;
    background-color: transparent;
}

.p-recruit2__td--span2 {
    grid-column: span 2;
}

/* =============================
   p-recruit2 レスポンシブ (SP)
   ============================= */
@media screen and (max-width: 768px) {
    .p-recruit2 {
        padding: 16vw 0 29.33vw;
    }

    .p-recruit2__inner {
        padding: 0 4vw;
    }

    .p-recruit2__banner {
        margin-bottom: 10.67vw;
    }

    .p-recruit2__banner img {
        max-width: 85.33vw;
    }

    .p-recruit2__heading {
        margin-bottom: 8vw;
    }

    .p-recruit2__heading h3 {
        padding: 0 4vw 2.13vw;
        font-size: 5.33vw;
        background: none;
    }

    .p-recruit2__heading-txt {
        padding: 0 2.67vw;
        background: linear-gradient(transparent 60%, #FFF56E 60%);
    }


    .p-recruit2__table {
        grid-template-columns: 32.466% 1fr 1fr;
        gap: 1.07vw;
    }

    .p-recruit2__th {
        font-size: 4.27vw;
        padding: 2.67vw 1.07vw;
    }

    .p-recruit2__th-side {
        font-size: 4.27vw;
        padding: 2.67vw 1.07vw;
    }

    .p-recruit2__td {
        justify-content: center;
        font-size: 3.73vw;
        text-align: center;
        padding: 3.2vw 1.6vw;
        border-width: 0.4vw;
    }

    .p-recruit2__td--span2 {
        justify-content: center;
    }
}

/* =============================
   p-faq（よくある質問）
   ============================= */
.p-faq {
    padding: 100px 0 143px;
    background-color: #fff;
}

.p-faq__inner {
    max-width: 940px;
    margin: 0 auto;
}

.p-faq__lead {
    text-align: center;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 80px;
}

/* アコーディオン全体 */
.p-faq__accordion {
    width: 100%;
}

.p-faq__item {
    border-bottom: 1px solid #E5E5E5;
}

/* 質問部分 (Q) */
.p-faq__q {
    display: flex;
    align-items: center;
    padding: 28px 12px;
    cursor: pointer;
    position: relative;
    color: var(--main-color);
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s;
}

.p-faq__q:hover {
    background-color: #FAFAFA;
}

.p-faq__q-mark {
    font-size: 32px;
    line-height: 26px;
    margin-bottom: 4px;
    margin-right: 24px;
    font-weight: bold;
}

.p-faq__q-text {
    flex: 1;
    padding-right: 40px;
    font-size: 18px;
    line-height: 1.5;
}

/* プラスマイナスアイコン */
.p-faq__icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
}

.p-faq__icon::before,
.p-faq__icon::after {
    content: "";
    position: absolute;
    background-color: #3A3A3A;
    /*アイコンの色*/
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 2px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

/* 横線 */
.p-faq__icon::before {
    width: 14px;
    height: 2px;
}

/* 縦線 */
.p-faq__icon::after {
    width: 2px;
    height: 14px;
    transition: transform 0.3s ease;
}

/* is-open時：縦線を水平にしてマイナスにする */
.p-faq__item.is-open .p-faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

/* 回答部分 (A) */
.p-faq__a {
    display: none;
    /* デフォルトは非表示 */
}

.p-faq__item.is-open .p-faq__a {
    display: block;
    /* 開いている時に表示 */
}

.p-faq__a-inner {
    background-color: #F4FFF7;
    /* 薄い緑色の背景 */
    padding: 32px 12px;
    font-size: 16px;
    letter-spacing: calc(16px * (2 / 100));
    line-height: 1.6;
}

.p-faq__a-inner a {
    text-decoration: underline;
}

.p-faq__a-inner a:hover {
    text-decoration: none;
    opacity: 0.8;
}

/* =============================
   p-faq レスポンシブ (SP)
   ============================= */
@media screen and (max-width: 768px) {
    .p-faq {
        padding: 13.33vw 0 29.33vw;
    }

    .p-faq__inner {
        padding: 0 5.33vw;
    }

    .p-faq__lead {
        width: 81%;
        font-size: 4.27vw;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 16vw;
    }

    .p-faq__q {
        padding: 8.53vw 3.2vw 6.4vw;
        font-size: 4.8vw;
    }

    .p-faq__q-mark {
        margin-bottom: 1.07vw;
        font-size: 8.53vw;
        margin-right: 3.73vw;
    }

    .p-faq__q-text {
        font-size: 4.8vw;
        line-height: 130%;
        padding-right: 8vw;
    }

    .p-faq__icon {
        right: 2.67vw;
    }

    .p-faq__a-inner {
        padding: 7.47vw 3.2vw 7.47vw;
        font-size: 4.27vw;
        letter-spacing: calc(16px * (2 / 100));
        line-height: 160%;
    }
}

/* =============================
   p-contact（お問い合わせ）
   ============================= */
.p-contact {
    padding: 100px 0 112px;
    background-color: #fff;
}

.p-contact__inner {
    max-width: 750px;
    margin: 0 auto;
}

.p-contact__lead {
    text-align: center;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 60px;
}

.p-contact__info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 76px;
    padding: 24px 0;
    margin-bottom: 60px;
    border-top: 2px dashed var(--main-color);
    border-bottom: 2px dashed var(--main-color);
}

.p-contact__info-logo img {
    width: 310px;
    height: auto;
}

.p-contact__info-tel {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p-contact__info-number {
    display: flex;
    align-items: center;
    font-size: 36px;
    font-weight: bold;
    color: var(--main-color);
    letter-spacing: calc(36px * (2 / 100));
    line-height: 1;
}

.p-contact__info-number img {
    width: 43px;
    height: auto;
    margin-right: 5px;
    margin-top: 8px;
}

.p-contact__info-time {
    font-size: 23px;
    margin-top: 6px;
    letter-spacing: calc(23px * (2 / 100));
}

/* フォーム全体 */
.p-contact__form {
    width: 100%;
    margin: 0 auto;
}

.form__item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.form__label {
    width: 230px;
    display: flex;
    align-items: flex-start;
}

.form__label-text {
    font-size: 18px;
    font-weight: bold;
}

.form__required {
    background-color: #F96175;
    color: #fff;
    font-size: 14px;
    padding: 4px;
    margin-left: 24px;
    font-weight: normal;
    white-space: nowrap;
}

.form__input {
    flex: 1;
}

.form__input input[type="text"],
.form__input input[type="tel"],
.form__input input[type="email"],
.form__input textarea,
.form__select-wrap select {
    width: 100%;
    padding: 15px;
    border: 1px solid #DFDFDF;
    background-color: #F6FFF8;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.form__input textarea {
    height: 200px;
    resize: vertical;
}

.form__input input:focus,
.form__input textarea:focus,
.form__select-wrap select:focus {
    outline: none;
    border-color: var(--main-color);
}

.form__select-wrap {
    position: relative;
    width: 100%;
}

.form__select-wrap::after {
    content: "▼";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--main-color);
    font-size: 10px;
    pointer-events: none;
}

.form__select-wrap select {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    color: #A0A0A0;
}

.form__select-wrap select:valid {
    color: #333;
}

.form__privacy {
    text-align: center;
    margin: 48px 0 24px;
}

.form__privacy label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
}

.form__privacy input[type="checkbox"] {
    position: relative;
    margin-right: 10px;
    width: 10px;
    height: 10px;
    border: 1px solid #3A3A3A;
    background-color: #fff;
    cursor: pointer;
    flex-shrink: 0;
}

.form__privacy input[type="checkbox"]:checked {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.form__privacy input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    width: 4px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.form__privacy a {
    color: #333;
    text-decoration: underline;
}

.form__privacy a:hover {
    text-decoration: none;
    opacity: 0.8;
}

.form__submit {
    text-align: center;
}

.form__submit-btn {
    width: 100%;
    max-width: 300px;
    height: 60px;
    background-color: #F96175;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.1em;
    transition: opacity 0.3s;
}

.form__submit-btn:hover:not(:disabled) {
    opacity: 0.8;
}

.form__submit-btn:disabled {
    background-color: #d1d1d1;
    cursor: not-allowed;
    opacity: 0.6;
}

/* =============================
   p-contact レスポンシブ (SP)
   ============================= */
@media screen and (max-width: 768px) {
    .p-contact {
        padding: 13.33vw 0 27.47vw;
    }

    .p-contact__inner {
        padding: 0 5.33vw;
    }

    .p-contact__lead {
        font-size: 4.27vw;
        line-height: 130%;
        margin-bottom: 16vw;
    }

    .p-contact__info {
        flex-direction: column;
        gap: 6.4vw;
        padding: 6.4vw 0;
        margin-bottom: 24vw;
    }

    .p-contact__info-logo img {
        width: 67.47vw;
    }

    .form__item {
        flex-direction: column;
        margin-bottom: 6.67vw;
    }

    .form__label {
        width: 100%;
        margin-bottom: 3.73vw;
        padding-top: 0;
    }

    .form__input {
        width: 100%;
    }

    .p-contact__info-number {
        font-size: 9.6vw;
    }

    .p-contact__info-number img {
        margin-right: 1.33vw;
        margin-top: 2.13vw;
    }

    .p-contact__info-time {
        font-size: 6.13vw;
        margin-top: 1.6vw;
    }

    .form__label-text {
        font-size: 4.8vw;
    }

    .form__required {
        font-size: 3.73vw;
        padding: 1.07vw;
        margin-left: 6.4vw;
    }

    .form__input input[type="text"],
    .form__input input[type="tel"],
    .form__input input[type="email"],
    .form__input textarea,
    .form__select-wrap select {
        padding: 4vw;
        font-size: 4.27vw;
    }

    .form__select-wrap::after {
        font-size: 2.67vw;
    }

    .form__privacy {
        margin: 12.8vw 0 6.4vw;
    }

    .form__privacy label {
        font-size: 4.27vw;
    }

    .form__privacy input[type="checkbox"] {
        margin-right: 2.67vw;
    }

    .form__submit-btn {
        font-size: 4.8vw;
    }

}

/* =============================
   p-thanks（サンクスページ）
   ============================= */
.p-thanks {
    padding: 100px 0;
    background-color: #fff;
}

.p-thanks__inner {
    max-width: 768px;
    margin: 0 auto;
}

.p-thanks__head {
    text-align: center;
    margin-bottom: 82px;
}

.p-thanks__title {
    display: inline-block;
    font-size: 32px;
    font-weight: bold;
    color: var(--font-color-blown);
    line-height: 1.3;
    letter-spacing: 0.1em;
    padding: 0 24px 24px;
    border-bottom: 2px solid var(--main-color);
}

.p-thanks__content {
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: calc(18px * (2 / 100));
}

/* =============================
   p-thanks レスポンシブ (SP)
   ============================= */
@media screen and (max-width: 768px) {
    .p-thanks {
        padding: 13.33vw 0 24vw;
    }

    .p-thanks__inner {
        padding: 0 5.33vw;
    }

    .p-thanks__head {
        margin-bottom: 12.8vw;
    }

    .p-thanks__title {
        padding: 0 6.4vw 6.4vw;
        display: block;
        font-size: 6.4vw;
    }

    .p-thanks__content {
        font-size: 3.73vw;
        letter-spacing: calc(14px * (2 / 100));
    }

    .p-thanks__list {
        padding-left: 0;
    }

    .p-thanks__contact {
        margin-top: 8vw;
    }
}

/* =============================
   p-news（お知らせページ）
   ============================= */
.p-news {
    padding: 100px 0 118px;
    background-color: #fff;
}

.p-news__inner {
    max-width: 1190px;
    margin: 0 auto;
}

.p-news__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.p-news__sidebar {
    width: 250px;
    flex-shrink: 0;
    order: -1;
}

.p-news__main {
    width: 65.3%;
}

/* メインコンテンツ（お知らせリスト） */

.p-news__item {
    border-bottom: 1px dashed #C1C1C1;
}

.p-news__item a {
    display: flex;
    align-items: center;
    gap: 38px;
    padding: 24px 12px;
    transition: opacity 0.3s;
}

.p-news__item:first-child a {
    padding-top: 0;
}

.p-news__item a:hover {
    opacity: 0.7;
}

.p-news__meta {
    display: flex;
    align-items: center;
    gap: 24px;
}

.p-news__date {
    min-width: 80px;
    font-size: 18px;
}

.p-news__cat {
    display: inline-block;
    padding: 6px 20px;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    background-color: var(--main-color);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.p-news__cat--green2 {
    background-color: var(--main-color);
    /* 必要に応じて別の色に変更可能 */
}

.p-news__title {
    font-size: 18px;
    line-height: 1.3;
}

/* ページネーション */
.p-news__pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 18px;
}

.p-news__pagination a,
.p-news__pagination span {
    text-decoration: none;
    letter-spacing: 0.1em;
}

.p-news__pagination .prev {
    font-size: 8px;
}

.p-news__pagination .next {
    font-size: 8px;
}

/* サイドバー */
.p-news__widget {
    margin-bottom: 50px;
}

.p-news__widget-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--font-color-blown);
    border-bottom: 2px solid var(--font-color-blown);
    padding-bottom: 24px;
    margin-bottom: 36px;
    letter-spacing: 0.1em;
}

.p-news__cat-list li {
    line-height: 1;
    margin-bottom: 24px;
}

.p-news__cat-list a {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    font-size: 18px;
    line-height: 1;
    transition: opacity 0.3s;
}

.p-news__cat-list a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-color: var(--main-color);
    border-radius: 50%;
}

.p-news__cat-list a:hover,
.p-news__archive-list a:hover {
    opacity: 0.7;
}

.p-news__archive-list li {
    margin-bottom: 24px;
}

.p-news__archive-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    line-height: 1;
    transition: opacity 0.3s;
}

.p-news__archive-list a::after {
    content: ">";
    color: var(--main-color);
    font-family: monospace;
    font-size: 18px;
}

/* =============================
   p-news レスポンシブ (SP)
   ============================= */
@media screen and (max-width: 768px) {
    .p-news {
        padding: 13.33vw 0 32vw;
    }

    .p-news__inner {
        padding: 0 7.47vw;
    }

    .p-news__container {
        flex-direction: column;
        gap: 21.87vw;
    }

    .p-news__sidebar {
        width: 100%;
        order: 0;
        /* サイドバーを下にする */
    }

    .p-news__main {
        width: 100%;
    }

    .p-news__item a {
        padding: 6.4vw 3.2vw;
        display: block;
    }

    .p-news__meta {
        gap: 4vw;
        margin-bottom: 4.8vw;
    }

    .p-news__date {
        min-width: 16vw;
        font-size: 3.73vw
    }

    .p-news__cat {
        padding: 1.6vw 5.33vw;
        font-size: 3.2vw;
    }

    .p-news__title {
        font-size: 3.73vw;
    }

    .p-news__pagination {
        font-size: 4.8vw;
        margin-top: 10.67vw;
        gap: 2.13vw;
    }

    .p-news__widget-title {
        font-size: 4.8vw;
        padding-bottom: 4.8vw;
        margin-bottom: 6.4vw;
    }

    .p-news__cat-list a {
        font-size: 4.27vw;
        padding-left: 6.67vw;
    }

    .p-news__cat-list a::before {
        width: 4.27vw;
        height: 4.27vw;
    }

    .p-news__widget:last-child {
        margin-bottom: 0;
    }

    .p-news__pagination .prev {
        font-size: 2.13vw;
    }

    .p-news__pagination .next {
        font-size: 2.13vw;
    }

    .p-news__widget {
        margin-bottom: 13.33vw;
    }

    .p-news__cat-list li {
        margin-bottom: 6.4vw;
    }

    .p-news__archive-list li {
        margin-bottom: 6.4vw;
    }

    .p-news__archive-list a {
        font-size: 4.8vw;
    }

    .p-news__archive-list a::after {
        font-size: 4.8vw;
    }
}

/* =============================
   p-news-detail（お知らせ詳細）
   ============================= */
.p-news-detail__header {
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px dashed #C1C1C1;
}

.p-news-detail__title {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
    margin-top: 20px;
    color: #333;
}

.p-news-detail__body {
    font-size: 18px;
    line-height: 130%;
    padding-bottom: 48px;
    border-bottom: 1px dashed #C1C1C1;
    margin-bottom: 48px;
}

.p-news-detail__footer {
    text-align: center;
}

.p-news-detail__back-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 232px;
    height: 43px;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    font-size: 18px;
    letter-spacing: calc(18px * (2 / 100));
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    background-color: #fff;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.p-news-detail__back-btn::after {
    content: "▶";
    font-size: 12px;
    color: var(--main-color);
    margin-left: 20px;
}

.p-news-detail__back-btn:hover {
    background-color: var(--main-color);
    color: #fff;
}

.p-news-detail__back-btn:hover::after {
    color: #fff;
}

/* =============================
   p-news-detail レスポンシブ (SP)
   ============================= */
@media screen and (max-width: 768px) {
    .p-news-detail__header {
        margin-bottom: 6.4vw;
        padding-bottom: 6.4vw;
    }

    .p-news-detail__title {
        margin-top: 5.33vw;
        font-size: 3.73vw;
    }

    .p-news-detail__body {
        font-size: 4.27vw;
        padding-bottom: 6.4vw;
        margin-bottom: 9.6vw;
    }

    .p-news-detail__back-btn {
        font-size: 4.8vw;
    }

    .p-news-detail__back-btn::after {
        font-size: 3.2vw;
        margin-left: 5.33vw;
    }
}

/* blog.css */

.p-blog {
    padding: 100px 0 118px;
    background-color: #fff;
    max-width: 100%;
}

.p-blog__inner {
    max-width: 1150px;
    margin: 0 auto;
}

.p-blog__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.p-blog__sidebar {
    width: 250px;
    flex-shrink: 0;
    order: -1;
    /* Sidebar on the left for PC */
}

.p-blog__main {
    /* flex-grow: 1; */
    width: 65.3%;
}

.p-blog__list {
    display: flex;
    flex-direction: column;
}

.p-blog__item {
    border-bottom: 2px dotted var(--main-color);
}

.p-blog__item>a {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 40px 0;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

.p-blog__item:first-child>a {
    padding-top: 0;
}

.p-blog__item a:hover {
    opacity: 0.7;
}

.p-blog__img {
    width: 300px;
    background-color: #e0e0e0;
    flex-shrink: 0;
}

.p-blog__img img {
    width: 100%;
    height: auto;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 1.5;
    /* 3:2 typical */
}

.p-blog__content {
    flex-grow: 1;
}

.p-blog__date {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #3A3A3A;
    margin-bottom: 8px;
}

.p-blog__title {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.p-blog__text {
    font-size: 15px;
    line-height: 1.6;
    color: #3A3A3A;
    margin-bottom: 24px;
}

.p-blog__btn {
    display: flex;
    justify-content: flex-start;
}

.p-blog__btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 36px;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    background-color: #fff;
}

.p-blog__btn-link:hover {
    background-color: var(--main-color);
    color: #fff;
}

/* Pagination */
.p-blog__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
}

.p-blog__pagination .page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    background-color: #fff;
}

.p-blog__pagination a.page-numbers:hover {
    opacity: 0.7;
}

.p-blog__pagination .current {
    background-color: var(--main-color);
    color: #fff;
}

.p-blog__pagination .dots {
    border: none;
    background: transparent;
    color: var(--main-color);
    width: auto;
}

/* Sidebar */
.p-blog__widget {
    margin-bottom: 50px;
}

.p-blog__widget-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--font-color-blown);
    border-bottom: 2px solid var(--font-color-blown);
    padding-bottom: 16px;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
}

.p-blog__archive-list li {
    margin-bottom: 20px;
}

.p-blog__archive-list a {
    font-size: 16px;
    color: #3A3A3A;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.3s;
}

.p-blog__archive-list a:hover {
    opacity: 0.7;
}

/* Blog Detail */
.p-blog-detail__header {
    margin-bottom: 30px;
}

.p-blog-detail__date {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    color: #3A3A3A;
    margin-bottom: 8px;
}

.p-blog-detail__title {
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.p-blog-detail__body {
    margin-bottom: 50px;
}

.p-blog-detail__body p {
    font-size: 16px;
    line-height: 2;
    color: #3A3A3A;
    margin-bottom: 2em;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.p-blog-detail__body p:last-child {
    margin-bottom: 0;
}

.p-blog-detail__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 60px;
}

.p-blog-detail__gallery-img {
    width: 100%;
    background-color: #e0e0e0;
}

.p-blog-detail__gallery-img img {
    width: 100%;
    height: auto;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 1;
    /* Square images */
}

.p-blog-detail__btn {
    text-align: left;
}

.p-blog-detail__btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 60px;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    background-color: #fff;
    position: relative;
}

.p-blog-detail__btn-link .arrow {
    position: absolute;
    right: 20px;
    font-size: 12px;
}

.p-blog-detail__btn-link:hover {
    background-color: var(--main-color);
    color: #fff;
}

/* Responsiveness */
@media screen and (max-width: 1200px) {
    .p-blog__inner {
        padding: 0 40px;
    }
}

@media screen and (max-width: 1000px) {
    .p-blog__container {
        gap: 40px;
    }

    .p-blog__img {
        width: 250px;
    }

    .p-blog__main {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .p-blog {
        padding: 13.33vw 0 32vw;
    }

    .p-blog__inner {
        padding: 0 7.47vw;
    }

    .p-blog__container {
        flex-direction: column;
        gap: 16vw;
    }

    .p-blog__sidebar {
        width: 100%;
        order: 1;
        /* Sidebar goes below on SP */
    }

    .p-blog__main {
        width: 100%;
    }

    .p-blog__item>a {
        flex-direction: column;
        gap: 0;
        padding: 8vw 0;
    }

    .p-blog__item:first-child>a {
        padding-top: 0;
    }

    .p-blog__img {
        width: 100%;
        margin-bottom: 4.8vw;
    }

    .p-blog__img img {
        aspect-ratio: 1.5;
    }

    .p-blog__date {
        font-size: 3.2vw;
        margin-bottom: 1.6vw;
    }

    .p-blog__title {
        font-size: 4.8vw;
        margin-bottom: 3.2vw;
        line-height: 1.4;
    }

    .p-blog__text {
        font-size: 3.73vw;
        line-height: 1.8;
        margin-bottom: 4.8vw;
    }

    .p-blog__btn-link {
        font-size: 3.73vw;
        padding: 2.1vw 8vw;
        border-radius: 4px;
    }

    /* Pagination */
    .p-blog__pagination {
        margin-top: 10vw;
        gap: 2vw;
    }

    .p-blog__pagination .page-numbers {
        width: 8vw;
        height: 8vw;
        font-size: 3.73vw;
    }

    /* Sidebar */
    .p-blog__widget-title {
        font-size: 5.33vw;
        padding-bottom: 2.67vw;
        margin-bottom: 6vw;
    }

    .p-blog__archive-list li {
        margin-bottom: 4.2vw;
    }

    .p-blog__archive-list a {
        font-size: 4vw;
        font-weight: 500;
    }

    /* Blog Detail SP */
    .p-blog-detail__header {
        margin-bottom: 6.4vw;
    }

    .p-blog-detail__date {
        font-size: 3.2vw;
        margin-bottom: 2vw;
    }

    .p-blog-detail__title {
        font-size: 5.33vw;
        line-height: 1.5;
    }

    .p-blog-detail__body {
        margin-bottom: 8vw;
    }

    .p-blog-detail__body p {
        font-size: 3.73vw;
        line-height: 2;
        margin-bottom: 2em;
    }

    .p-blog-detail__gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 2vw;
        margin-bottom: 12vw;
    }

    .p-blog-detail__btn-link {
        font-size: 3.73vw;
        padding: 3.2vw 12vw;
        border-radius: 4px;
        width: 100%;
    }

    .p-blog-detail__btn-link .arrow {
        right: 4vw;
        font-size: 3vw;
    }
}