@charset "UTF-8";

/* ===== Base ===== */
section#mente-box {
    padding: 40px 0 0;
}

/* Closed notice */
.closed-notice {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.closed-notice__title {
    margin: 0 0 1rem;
    font-size: 1.8rem;
    line-height: 1.5;
}

.closed-notice__badge {
    color: #d70000;
    font-size: 1.1em;
    font-weight: 700;
}

.closed-notice p {
    margin: 0 0 1rem;
    line-height: 1.8;
}

.next-date {
    color: #d70000;
    font-weight: 700;
}

/* Tour notice */
.tour-notice {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.4rem;
}

.tour-notice__figure {
    margin: 0 0 1.5rem;
}

.tour-notice__figure img {
    display: block;
    width: 100%;
    height: auto;
}

.tour-notice__title {
    margin: 0 0 1rem;
    font-size: 1.8rem;
    line-height: 1.5;
}

.tour-notice p {
    margin: 0 0 1rem;
    line-height: 1.8;
}

.tour-notice__detail {
    margin: 1.5rem 0;
    border-top: 1px solid #CACAC9;
}

.tour-notice__detail > div {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #CACAC9;
}

.tour-notice__detail dt {
    flex: 0 0 6em;
    font-weight: 700;
}

.tour-notice__detail dd {
    flex: 1 1 60%;
    margin: 0;
    line-height: 1.7;
}

.tour-notice__contact {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    list-style: none;
    background: #f7f7f7;
    border-radius: 8px;
}

.tour-notice__contact li {
    line-height: 1.9;
}

.tour-notice__contact .label {
    display: inline-block;
    width: 3.5em;
    font-weight: 700;
}

/* ===== CTA ===== */
.cta-container {
    padding: 20px;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    text-align: center;
}

.cta-lead {
    margin-bottom: 15px;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.btn-apply {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding: 22px 40px;
    background-color: #00a15d;
    color: #ffffff !important;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 15px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-apply::after {
    content: "";
    position: absolute;
    right: 30px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 18px;
    border-color: transparent transparent transparent #ffffff;
}

.btn-apply:hover {
    background-color: #00874e;
    transform: translateY(-2px);
}

/* ===== SP (max 767px) ===== */
@media screen and (max-width: 767px) {
    #main {
        margin-bottom: 0 !important;
    }

    section#mente-box {
        padding: 10vw 2vw 0;
    }

    /* Closed notice */
    .closed-notice {
        margin-bottom: 1.5rem;
    }

    .closed-notice__title {
        font-size: 1.4rem;
        line-height: 1.6;
    }

    .closed-notice p {
        font-size: 1.2rem;
        line-height: 1.9;
    }

    /* Tour notice */
    .tour-notice {
        font-size: 1.2rem;
    }

    .tour-notice__figure {
        margin-bottom: 1rem;
    }

    .tour-notice__title {
        font-size: 1.4rem;
        line-height: 1.6;
    }

    .tour-notice p {
        line-height: 1.9;
    }

    .tour-notice__detail {
        margin: 1.2rem 0;
    }

    .tour-notice__detail > div {
        padding: 0.7rem 0;
    }

    .tour-notice__detail dt {
        flex-basis: 100%;
        margin-bottom: 0.2rem;
    }

    .tour-notice__detail dd {
        flex-basis: 100%;
    }

    .tour-notice__contact {
        padding: 0.9rem 1rem;
    }

    .tour-notice__contact li {
        line-height: 2;
    }

    .tour-notice__contact .label {
        width: 3em;
    }

    /* CTA */
    .cta-lead {
        font-size: 14px;
    }

    .btn-apply {
        padding: 15px 20px;
        font-size: 20px;
        border-radius: 10px;
    }

    .btn-apply::after {
        right: 20px;
        border-width: 8px 0 8px 12px;
    }
}