/* style */

/* =============================== */
/* =============================== */
/* 全ての数値px を rem/10にて指定 */

@media screen and (min-width: 1222px) {
    /* 1.0remの時、画面幅1221px幅まで10px固定 */
}

@media screen and (max-width: 1221px) and (min-width: 768px) {
    /* 1.0remの時、画面幅1221px幅時に10pxになり、768pxまでvw縮小 */
}

@media screen and (max-width: 767px) {
    /* 1.0remの時、画面幅767px幅から375pxになる時に10pxになる */
}
/* =============================== */
/* =============================== */

/* TOPページ */
/* =============================== */
.top-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 80rem;
}

.top-slider__item {
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.top-slider__item::before {
    content: "";
    background: rgba(255, 255, 255, 0.3);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.top-slider__container {
    max-width: calc(1110px + 10%);
    height: 100%;
    margin: auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.top-slider__heading {
    font-size: 3.2rem;
    margin-bottom: 2.0rem;
    line-height: 1.0;
}

.top-slider__description {
    font-size: 1.8rem;
    margin-bottom: 2.0rem;
}

.top-slider__cta a.btn {
    display: block;
    width: fit-content;
    font-size: 1.8rem;
    line-height: 1.0;
    padding: 1.2rem 5.0rem;
    background: transparent;
    border: 0.1rem solid #333;
    border-radius: 0.4rem;
}

.top-slider__cta a.btn:hover {
    background: #122c89;
    border: 0.1rem solid #122c89;
    color: #fff;
    opacity: 1.0;
}

.top-slider .swiper-button-next,
.top-slider .swiper-button-prev {
    color: #122c89;
}

.top-slider .swiper-pagination-bullet {
    border-radius: unset;
    width: 30px;
    height: 5px;
    background-color: #ccc;
    opacity: unset;
    outline: 1px solid rgba(255, 255, 255, 0.5);
}

.top-slider .swiper-pagination-bullet-active {
    background: #666;
}

@media screen and (max-width: 767px) {
    .top-slider {
        height: 28rem;
    }

    /* .top-slider__item{
        width:100%;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        position:relative;
        z-index:1;
    } */
    /* .top-slider__item::before{
        content:"";
        background:rgba(255,255,255,0.3);
        width:100%;
        height:100%;
        position:absolute;
        top:0;
        left:0;
        z-index:-1;
    } */
    /* .top-slider__container{
        max-width: calc(1110px + 10%);
        height:100%;
        margin: auto;
        padding: 0 5%;
        display:flex;
        flex-direction: column;
        justify-content: center;
    } */
    .top-slider__heading {
        font-size: 2.0rem;
        margin-bottom: 1.4rem;
    }

    .top-slider__description {
        font-size: 1.2rem;
        margin-bottom: 1.4rem;
    }

    .top-slider__cta a.btn {
        font-size: 1.3rem;
        padding: 1.0rem 3.0rem;
        border-radius: 0.3rem;
    }

    .top-slider .swiper-button-next,
    .top-slider .swiper-button-prev {
        display: none;
    }

    .top-slider .swiper-pagination-bullet {
        border-radius: unset;
        width: 30px;
        height: 5px;
        background-color: #ccc;
        opacity: unset;
        outline: 1px solid rgba(255, 255, 255, 0.5);
    }

    .top-slider .swiper-pagination-bullet-active {
        background: #666;
    }
}

/* intro */
.intro__head {
    margin: 3.0rem 0;
}

.intro__title {
    font-size: 2.8rem;
    padding: 5.0rem 0;
    border-top: 0.2rem solid #122c89;
    border-bottom: 0.1rem solid #ccc;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 3.0rem;
}

.intro__desc {
    font-size: 1.6rem;
    line-height: 2.0;
    text-align: center;
}

@media screen and (max-width:767px) {
    .intro__head {
        margin: 2.0rem 0;
    }

    .intro__title {
        font-size: 2.0rem;
        padding: 3.0rem 0;
        margin-bottom: 2.0rem;
    }

    .intro__desc {
        font-size: 1.35rem;
        line-height: 1.8;
    }
}

/* about */
.about__body {
    display: flex;
    gap: 5.0rem;
}

.about__text {
    font-size: 1.6rem;
    margin-top: 3.0rem;
    line-height: 2.0;
}

.about__text:first-of-type {
    margin-top: 0;
}

.about__sign {
    text-align: right;
    font-size: 1.6rem;
    margin-top: 3.0rem;
    font-weight: 600;
}

@media screen and (max-width:767px) {
    .about__body {
        flex-direction: column;
        gap: 3.0rem;
    }

    .about__text {
        font-size: 1.5rem;
        margin-top: 2.0rem;
        line-height: 1.8;
    }

    .about__text:first-of-type {
        margin-top: 0;
    }

    .about__sign {
        font-size: 1.5rem;
        margin-top: 2.0rem;
    }
}

/* features */
.features__head {
    position: relative;
}

.features__head::before {
    content: "";
    background: #122c89;
    width: 100%;
    height: 0.1rem;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translatey(-50%);
    z-index: -1;
}

.features__title {
    font-size: 2.8rem;
    line-height: 1.0;
    padding: 0 2.0rem;
    width: fit-content;
    margin: 0 auto 6.0rem;
    background: #fff;
}

.features__body {
    display: flex;
    flex-wrap: wrap;
    gap: 4.0rem;
}

.feature {
    width: calc(33.33% - 4.0rem);
}

.feature__title {
    font-size: 1.7rem;
    margin: 1.0rem 0;
}

.feature__text {
    font-size: 1.6rem;
}

.features__sub {
    margin-top: 10.0rem;
    display: flex;
    align-items: center;
    gap: 3.0rem;
    padding-bottom: 6.0rem;
    border-bottom: 0.1rem solid #ccc;
}

.features__sub__movie {
    width: 60%;
    position: relative;
}

.features__sub__movie .embed {
    aspect-ratio: 16 / 9;
    /* 16:9 で固定。必要なら 4/3 や 1/1 に */
    width: 100%;
    position: relative;
    overflow: hidden;
}

.features__sub__movie .embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media screen and (max-width:767px) {
    .features__head::before {
        content: "";
        background: #122c89;
        width: 100%;
        height: 0.1rem;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translatey(-50%);
        z-index: -1;
    }

    .features__title {
        font-size: 1.8rem;
        padding: 0 1.0rem;
        margin: 0 auto 3.0rem;
    }

    .features__body {
        flex-direction: column;
        gap: 3.0rem;
    }

    .feature {
        width: 100%;
    }

    .feature__title {
        font-size: 1.6rem;
        margin: 0.8rem 0;
    }

    .feature__text {
        font-size: 1.4rem;
    }

    .features__sub {
        margin-top: 4.0rem;
        flex-direction: column;
        gap: 1.0rem;
        padding-bottom: 4.0rem;
    }

    .features__sub__noteCard {
        width: 100%;
    }

    .features__sub__noteCard iframe {
        width: 100% !important;
    }

    .features__sub__movie {
        width: 100%;
    }
}

/* menu */
.menu__group {
    margin-top: 4.0rem;
}

.menu__group:first-of-type {
    margin-top: 0;
}

.menu__groupTitle {
    width: 100%;
    text-align: center;
    line-height: 1.0;
    padding: 2.0rem;
    font-size: 2.4rem;
    margin-bottom: 3.0rem;
    background: #eee;
}

.menu__row {
    padding: 1.5rem 0;
    border-top: 0.1rem solid #aaa;
}

.menu__row:last-child {
    border-bottom: 0.1rem solid #ccc;
}

.menu__note {
    margin: 2.0rem 0;
}

.menu__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu__label {
    font-size: 1.4rem;
}

.menu__label span {
    display: block;
}

.menu__label--note {
    margin-top: 0.5rem;
}

.menu__price {
    font-size: 1.8rem;
}

@media screen and (max-width:767px) {
    .menu__group {
        margin-top: 3.0rem;
    }

    .menu__groupTitle {
        padding: 2.0rem;
        font-size: 1.8rem;
        margin-bottom: 2.0rem;
    }

    .menu__row {
        padding: 1.2rem 0;
    }

    .menu__note {
        margin: 1.0rem 0;
        font-size: 1.0rem;
    }

    .menu__label {
        font-size: 1.0rem;
    }

    .menu__label--note {
        margin-top: 0.2rem;
    }

    .menu__price {
        font-size: 1.4rem;
    }
}

/* movie */
.movies {
    display: flex;
    gap: 3.0rem;
    margin-bottom: 5.0rem;
}

.movieCard {
    width: calc(33.33% - 3.0rem);
}

.movieCard .embed {
    width: 100%;
    position: relative;
}

.movieCard .embed .embed__ph {
    aspect-ratio: 16 / 9;
    /* 16:9 で固定。必要なら 4/3 や 1/1 に */
    width: 100%;
    position: relative;
    overflow: hidden;
}

.movieCard .embed .embed__ph iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.movieCard__title {
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: 1.0rem;
}

@media screen and (max-width:767px) {
    .movies {
        flex-direction: column;
        gap: 3.0rem;
        margin-bottom: 4.0rem;
    }

    .movieCard {
        width: 100%;
    }

    .movieCard__title {
        font-size: 1.2rem;
        margin-top: 0.8rem;
    }
}

/* access */
.access_body {
    display: flex;
    gap: 4.0rem;
}

.access__left {
    width: 50%;
}

.access__right {
    width: 50%;
}

.logoBig {
    text-align: center;
    margin-bottom: 3.0rem;
}

.logoBig img {
    width: 30rem;
    height: auto;
}

.access__info {
    margin-top: 2.0rem;
    padding-left: 2.5rem;
}

.access__info dt {
    position: relative;
}

.access__info dt::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    content: "";
    left: -2.5rem;
}

.map {
    margin-top: 6.0rem;
}

.map__inner iframe {
    width: 100%;
}

@media screen and (max-width:767px) {
    .access_body {
        flex-direction: column;
        gap: 4.0rem;
    }

    .access__left {
        width: 100%;
    }

    .access__right {
        width: 100%;
    }

    .logoBig {
        text-align: center;
        margin-bottom: 1.0rem;
    }

    .logoBig img {
        width: 12rem;
        height: auto;
    }

    .access__info {
        margin-top: 1.5rem;
    }

    .access__info dt,
    .access__info dd {
        font-size: 1.4rem;
    }

    .map {
        margin-top: 4.0rem;
    }

    .map__inner iframe {
        height: 28.0rem;
    }
}