@charset "utf-8";

/* -------------------------------------
    header
-----------------------------------------*/
.header_wrap {
    position: relative;
    z-index: 110;
}

.header_wrap header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 80px;
    padding: 0 116px 0 40px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    z-index: 1;
    transition: all .5s ease;
}

.header_wrap .header_btn {
    position: fixed;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    height: 80px;
    padding: 0 20px 0 0;
    z-index: 3;
}

.header_wrap .header_btn .-_btn  {
    width: 120px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.header_wrap .header_btn .-_btn:hover {
    filter: brightness(120%);
    opacity: .7;
}

.header_wrap .header_btn .-_btn span {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding-left: 7px;
}

.header_wrap .header_btn .request_btn { background: #C7861D;}

.header_wrap .header_btn .request_btn:before {
    content: "";
    width: 14px;
    height: 16px;
    background: url(../images/ico_material.svg) no-repeat 0 1px;
    background-size: 100% auto;
}

.header_wrap .header_btn .reservation_btn { background: #113065;}

.header_wrap .header_btn .reservation_btn:before {
    content: "";
    width: 14px;
    height: 15px;
    background: url(../images/ico_house.svg) no-repeat 0 1px;
    background-size: 100% auto;
}


@media screen and (max-width: 898px) {
    .header_wrap header {
        height: 60px;
        padding-right: calc(20 / 430 * 100vw); padding-left: calc(20 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
        padding-right: calc(20 / 430 * 100cqw); padding-left: calc(20 / 430 * 100cqw);
    }

    .header_wrap .header_btn {
        gap: 10px;
        height: 60px;
        padding: 0 10px 0 0;
    }

    .header_wrap .header_btn .-_btn {
        width: 80px;
        height: 30px;
        border-radius: 3px;
    }

    .header_wrap .header_btn .-_btn span {
        font-size: 10px;
        padding-left: 4px;
    }

    .header_wrap .header_btn .reservation_btn:before {
        width: 8px;
        height: 9px;
    }

    .header_wrap header .logo {
        width: 160px;
    }
}



/* -------------------------------------
    全体
-----------------------------------------*/
html {
    scroll-behavior: smooth;
}

body,
button,
input,
select,
textarea {
    font-family: "Noto Sans JP", sans-serif;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.l-con { font-family: "Noto Sans JP", sans-serif;}

.l-content { container-type: inline-size;}

main {
    background-color: #fff;
    padding-top: 80px;
}

@media screen and (max-width: 898px) {
    main { padding-top: 60px;}
}



/* -------------------------------------
    l-section
-----------------------------------------*/
.l-section {
    font-size: calc(14 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    font-size: calc(14 / 430 * 100cqw);
    line-height: 1.8;
}

.l-section img { width: 100%;}

@media screen and (min-width: 768px) {
    .l-section img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* -------------------------------------
    l-bg
-----------------------------------------*/
.l-bgwrap {
    position: relative;
    z-index: 10;
}
@media screen and (max-width: 959px) {
    .l-bgwrap {
        position: absolute;
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .l-bgwrap {
        display: none;
    }
}

.l-bg {
    position: relative;
    background: linear-gradient(to top, #003A7E, #000F21);
    background-size: cover;
    width: 100%;
}
.l-bg.fixed { position: fixed;}

.l-bg_sideL,
.l-bg_sideR {
    display: flex; align-items: center; justify-content: center;
    width: calc((100% - (454px + 12px + 12px)) / 2);
    position: fixed; bottom: 0;
    background: linear-gradient(to top, #003A7E, #000F21);
}

.l-bg_sideL {
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.l-bg_sideR {
    left: calc(((100% - (454px + 12px + 12px)) / 2) + (454px + 12px + 12px));
}

.l-bg_sideL .-_lp_name { display: none;}

@media (min-width: 898px) {
    .l-bg,
    .l-bg_sideL,
    .l-bg_sideR {
        height: calc(100% - 80px);
    }
}

@media (max-width: 897.98px) {
    .l-bg,
    .l-bg_sideL,
    .l-bg_sideR {
        height: calc(100% - 60px);
    }
}

@media screen and (min-width: 1280px) {
    .l-bg_sideL .-_lp_name {
        display: block;
        width: 90%;
        max-width: 358px;
        transform: translateY(-51px);
    }
}

@media screen and (min-width: 1080px) and (max-width: 1279.98px) {
    .l-bg_sideL {
        width: 13%;
    }

    .l-bg_sideR {
        width: calc(100% - (454px + 12px + 12px) - 13%);
        left: calc(13% + (454px + 12px + 12px));
    }
}

@media screen and (min-width: 860px) and (max-width: 1079.98px) {
    .l-bg_sideL {
        width: 8%;
    }

    .l-bg_sideR {
        width: calc(100% - (454px + 12px + 12px) - 8%);
        left: calc(8% + (454px + 12px + 12px));
    }
}

@media screen and (max-width: 859.98px) {
    .-_lp_name { display: none !important;}
}

@media screen and (max-width: 767.98px) {
    .l-bg_sideL,
    .l-bg_sideR { display: none;}
}


/* -------------------------------------
    l-content
-----------------------------------------*/
@media screen and (max-width: 860px) {
    .l-content-wrap {
        position: relative;
        width: 100%;
        z-index: 10;
    }
}

.l-content {
    position: relative; z-index: 90;
    width: 478px;
    background-color: #fff;
    margin: 0 auto;
}

@media screen and (max-width: 1279.98px) {
    .l-content {
        margin-left: 13%;
    }
}
@media screen and (max-width: 1080.98px){
    .l-content {
        margin-left: 8%;
    }
}
@media screen and (max-width: 859.98px){
    .l-content {
        margin-left: auto;
    }
}
@media screen and (max-width: 767.98px) {
    .l-content {
        width: 100%;
        border: none;
    }
}



/* -------------------------------------
    l-footer
-----------------------------------------*/
.l-footer {
    text-align: center;
    padding: 40px 0 100px;
    border-top: 1px solid #003067;
}

.l-footer .logo {
    display: block;
    width: fit-content;
    margin: 0 auto 30px;
}

.l-footer .copy {
    font-size: 10px;
    color: #003067;
}


/* -------------------------------------
        PC/SP非表示
-----------------------------------------*/
@media screen and (min-width: 768px) {
    .pc_non { display: none;}
}
@media screen and (max-width: 767px) {
    .sp_non { display: none;}
}


/**
 * CP25
 */
.l-vertical {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.l-center {
    display: grid;
    place-items: center;
}
.l-cta-area {
    background-color: #001841;
    padding: 32px;
}
.l-cta {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;

    img {
        opacity: 1;
        transition: opacity 0.3s ease;
        position: relative;
        z-index: 2;
    }
}
.l-cta:hover {
    transform: scale(1.04, 1.04);

    img {
        opacity: 0.7;
    }
}
.l-cta::after {
    content: "";
    display: block;
    background-color: #fff;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    position: absolute;
    z-index: 1;
    top: 1px;
    left: 1px;
}

.p-present {
    background-image: url('/25cp/summer/assets/images/bg-present.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}



/* -------------------------------------
    p-regulation / p-accordion
-----------------------------------------*/
.p-regulation {
    padding: calc(24 / 430 * 100vw) calc(40 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    padding: calc(24 / 430 * 100cqw) calc(40 / 430 * 100cqw);
    background-color: #013A7D;
}

.p-regulation h3 {
    margin-bottom: calc(16 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    margin-bottom: calc(16 / 430 * 100cqw);
}

.p-regulation p {
    color: #fff;
}

.p-accordion {
    font-size: calc(12 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    font-size: calc(12 / 430 * 100cqw);
    color: #fff;
    line-height: 1.8;
}

.p-accordion__summary {
    margin: 0;
}

.p-accordion__detail p {
    margin: 0;
    line-height: 1.8;
}

/* toggle button */
.p-accordion__toggle {
    display: flex;
    align-items: center;
    width: 100%;
    gap: calc(10 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    gap: calc(10 / 430 * 100cqw);
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(16 / 430 * 100vw) 0; /* cqw未サポートiPhone15以前対策 */
    padding: calc(16 / 430 * 100cqw) 0;
    font-family: "Noto Sans JP", sans-serif;
    transition: opacity 0.3s ease;
}

.p-accordion__toggle:hover {
    opacity: 0.7;
}

.p-accordion__toggle::before,
.p-accordion__toggle::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #fff;
    opacity: 0.4;
}

.p-accordion__toggle-text {
    color: #fff;
    font-size: calc(13 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    font-size: calc(13 / 430 * 100cqw);
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.p-accordion__toggle-icon {
    display: block;
    width: calc(26 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    width: calc(26 / 430 * 100cqw);
    height: calc(26 / 430 * 100vw); /* cqw未サポートiPhone15以前対策 */
    height: calc(26 / 430 * 100cqw);
    flex-shrink: 0;
    background: url(../images/arrow-down.svg) no-repeat center center;
    background-size: contain;
}

.p-accordion__toggle.is-open .p-accordion__toggle-icon {
    background-image: url(../images/arrow-up.svg);
}

/**
    p-standard
 */
.p-standard {
    background-color: #113065;
    padding-top: 32px;
    padding-bottom: 8px;

    .-_block {
        margin: 24px;
    }
}

/**
    slider
 */
.p-slider {
    background-color: #113065;
    padding-top: 40px;
    padding-bottom: 40px;

    .swiper {

        .swiper-wrapper {

            .swiper-slide {
                width: calc(282% / 430 * 100);
            }
        }

        .swiper-navigation {
            .swiper-button-prev,
            .swiper-button-next {
                width: 32px;
                height: 32px;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: opacity 0.3s ease;
                background-repeat: no-repeat;
                background-position: center center;
                background-size: contain;

                svg {
                    display: none;
                }
            }

            .swiper-button-prev {
                background-image: url(../images/arrow-left.svg);
            }

            .swiper-button-next {
                background-image: url(../images/arrow-right.svg);
            }
        }
    }

}

/*
   p-25plans
*/
.p-25plans {
    background-color: #000;
}

.p-planAccordion {
    background-color: #000;
    color: #fff;
    width: 100%;
    padding: 0 0 28px;
    box-sizing: border-box;
}

.p-planAccordion__item {
    border-bottom: 1px solid #cfb956;
}

.p-planAccordion__item:first-child {
    border-top: 1px solid #cfb956;
}

.p-planAccordion__trigger {
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 62px;
    padding: 14.5px 24px;
    border: none;
    background: transparent;
    color: #d6c04d;
    cursor: pointer;
    box-sizing: border-box;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
    transition: opacity 0.3s ease;
}

.p-planAccordion__trigger:hover {
    opacity: 0.7;
}

.p-planAccordion__trigger:focus-visible,
.p-planCard:focus-visible,
.p-planModal__close:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}

.p-planAccordion__item.is-open .p-planAccordion__trigger {
    border-bottom: 1px solid #cfb956;
}

.p-planAccordion__icon {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    margin-left: 20px;
    flex-shrink: 0;
}

.p-planAccordion__icon::before,
.p-planAccordion__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 2px;
    background-color: #cfb956;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.p-planAccordion__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.p-planAccordion__item.is-open .p-planAccordion__icon::after {
    transform: translate(-50%, -50%) rotate(0deg) scaleX(0);
}

.p-planAccordion__panel {
    display: none;
    padding: 28px 0 42px;
}

.p-planAccordion__item.is-open .p-planAccordion__panel {
    display: block;
}

.p-planAccordion__list {
    display: grid;
    gap: 32px;
    margin: 0 40px;
    padding: 0;
    list-style: none;
}

.p-planCard {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.p-planCard:hover {
    opacity: 0.82;
    transform: translateY(-2px);
}

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

.p-planAccordion__note {
    margin: 22px 0 0;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

body.is-plan-modal-open {
    overflow: hidden;
}

.p-planModal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 300;
    padding: 24px 16px;
    box-sizing: border-box;
    overflow-y: auto;
}

.p-planModal.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-planModal__overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.76);
}

.p-planModal__dialog {
    position: relative;
    width: min(100%, 390px);
    margin: auto;
    padding: 16px;
    border-radius: 6px;
    background-color: #333;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    box-sizing: border-box;
    color: #fff;
    outline: none;
}

.p-planModal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 22px;
}

.p-planModal__heading {
    min-width: 0;
    flex: 1;
}

.p-planModal__close {
    display: grid;
    justify-items: center;
    width: 38px;
    padding: 0;
    border: none;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.p-planModal__close:hover {
    opacity: 0.7;
}

.p-planModal__close-icon {
    position: relative;
    display: block;
    width: 36px;
    height: 36px;
    margin-bottom: 4px;
}

.p-planModal__close-icon::before,
.p-planModal__close-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 2px;
    background-color: #fff;
}

.p-planModal__close-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.p-planModal__close-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.p-planModal__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0 8px;
    line-height: 1.2;
}

.p-planModal__code {
    color: #f0d36a;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.p-planModal__category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 24px;
    padding: 3px 9px;
    border-radius: 6px;
    color: #fff;
    box-sizing: border-box;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.1;
}

.p-planModal__category.is-floor1 {
    background-color: #6a9df1;
}

.p-planModal__category.is-floor2 {
    background-color: #b45ee8;
}

.p-planModal__category.is-floor3 {
    background-color: #45c957;
}

.p-planModal__title {
    margin: 0;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
}

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

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

.p-planModal__intro {
    margin: 0 0 22px;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.55;
}

.p-planModal__spec {
    margin: 0 0 24px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    white-space: pre-line;
}

.p-planModal__point {
    margin-top: 4px;
}

.p-planModal__point-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    color: #f0d36a;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
}

.p-planModal__point-title::before,
.p-planModal__point-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #f0d36a;
}

.p-planModal__point-list {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
}

.p-planModal__point-list li {
    position: relative;
    padding-left: 14px;
}

.p-planModal__point-list li::before {
    content: "";
    position: absolute;
    top: 0.82em;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #fff;
    transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
    .p-planAccordion__trigger {
        min-height: 58px;
        font-size: 17px;
    }

    .p-planAccordion__panel {
        padding: 24px 0 36px;
    }

    .p-planAccordion__list {
        gap: 24px;
    }

    .p-planModal {
        padding: 14px;
    }

    .p-planModal__dialog {
        margin: auto;
        padding: 16px;
        border-radius: 6px;
    }

    .p-planModal__close {
        width: 38px;
        font-size: 11px;
    }

    .p-planModal__close-icon {
        width: 36px;
        height: 36px;
    }

    .p-planModal__close-icon::before,
    .p-planModal__close-icon::after {
        width: 44px;
        height: 2px;
    }

    .p-planModal__title {
        font-size: 22px;
    }
}

@media screen and (max-width: 374px) {
    .p-planAccordion__trigger {
        font-size: 16px;
    }

    .p-planModal__meta {
        align-items: flex-start;
        flex-direction: column;
    }
}
