@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;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.l-con { font-family: "Noto Sans JP", "Open Sans", "Inter", 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/gw/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);
            }
        }
    }

}