@charset "UTF-8";


/* MV  */
.mv {
    position: relative;
    width: 100%;
    height: 88vh;
    overflow: hidden;

    .mv_overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.20);
        z-index: 5;
        pointer-events: none;
    }

    .mv_inner {
        position: absolute;
        top: 10%;
        left: 10%;
        color: #fff;
        z-index: 10;

        .mv_lead {
            font-size: clamp(15px, 1.5vw, 24px);
            font-weight: 600;
        }

        .mv_title {
            margin: .5vw 0 1vw;
            line-height: 1.2;
            font-size: clamp(42px, 4vw, 65px);
            font-weight: bold;
        }

        .mv_desc {
            line-height: 1.7;
            font-size: clamp(13px, 1vw, 18px);
            font-weight: 500;
        }
    }

    .mv_main {
        img {
            width: 100%;
            height: 88vh;
            object-fit: cover;
            object-position: center 90%;
        }
    }
}

/* CUSTOM */
.custom {
    /*margin-top: 200px;*/
    margin-top: 100px;
    .custom_inner {
        .custom_cards {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin: 94px auto 0;

            .custom_card {
                display: block;
                width: 32%;
                padding: 37px 28px;
                background-color: #F2FBFF;
                border-radius: 12px;

                .custom_title {
                    width: 100%;
                    margin-bottom: 5px;
                    line-height: 1.5;
                    font-size: 20px;
                    font-weight: bold;
                    color: #333;
                }

                .custom_img {
                    width: 100%;
                    margin: 20px auto 25px;
                }

                .custom_desc {
                    font-size: 12px;
                    line-height: 1.7;
                }
            }
        }
    }
}

/* CONCEPT */
.concept_slider_wrap {
    width: 100%;
    margin: 0 auto;
    padding: 30px 0;
    position: relative;

    .concept_slider {
        .concept_item {
            margin: 0 20px;
            padding: 10px;
            background: #fff;

            img {
                width: 100%;
                height: auto;
                border-radius: 10px;
            }

            .slide_lead {
                padding: 20px;

                .slide_title {
                    font-size: 18px;
                    font-weight: bold;
                    color: var(--primary-color);
                }

                .slide_desc {
                    font-size: 14px;
                    color: #000;
                    margin-top: 10px;
                }
            }
        }
    }

    .swiper-arrows {

        .swiper-button-prev,
        .swiper-button-next {
            color: var(--primary-color);
            font-size: 20px;
        }
    }
}

/* PLAN */
.plan {
    /*margin-top: 150px;*/
    margin-top: 50px;
    .section_header {
        background: url('../img/hiraya/plan_bg.webp') no-repeat center center / cover;
    }

    .plan_inner {
        .floor {
            background: #fff;
            padding: 37px 0 115px;

            .floor_list {
                display: flex;
                justify-content: space-between;
                flex-wrap: wrap;
                list-style: none;
                padding: 0;

                .floor_item {
                    width: 30%;
                    border-radius: 8px;
                    overflow: hidden;
                    color: #000;

                    .floor_image {
                        position: relative;
                        display: inline-block;
                        transition: opacity 0.3s;

                        &:hover {
                            opacity: .8;
                        }

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

                        .floor_icon {
                            position: absolute;
                            bottom: 0;
                            right: 0;
                            font-size: 23px;
                            color: #fff;
                            background-color: var(--primary-color);
                            border-radius: 50%;
                            width: 46px;
                            height: 46px;
                            text-align: center;
                            line-height: 46px;
                        }
                    }


                    .floor_caption {
                        padding: 20px;
                        line-height: 1.5;

                        .floor_caption_city {
                            font-size: 14px;
                        }

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

    #plan_modal {
        position: fixed;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        z-index: 9999;

        .modal_overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1;
        }

        .modal_content {
            position: relative;
            max-width: 100%;
            width: 1100px;
            margin: 0 auto;
            padding: 90px;
            z-index: 10;

            .modal_close {
                position: absolute;
                top: 35px;
                right: 30px;
                width: 35px;
                background: none;
                border: none;
                cursor: pointer;
                color: #fff;

                img {
                    width: 100%;
                }
            }

            .swiper-button-next,
            .swiper-button-prev {
                color: #fff;
                top: 43%;
            }

            .swiper-button-next:after,
            .swiper-button-prev:after {
                font-size: 30px;
            }

            .flow_slider {
                img {
                    width: 100%;
                    height: auto;
                    display: block;
                }
            }

            .thumb_slider {
                margin-top: 20px;
                width: 100%;
                display: flex;
                justify-content: center;

                .swiper-wrapper {
                    display: flex;
                    justify-content: center !important;
                }

                .swiper-slide {
                    height: auto !important;
                    max-width: 120px;
                    max-height: 120px;
                    flex-shrink: 0;
                    transition: opacity 0.3s;
                    cursor: pointer;
                    border: 2px solid transparent;
                    text-align: center;
                    aspect-ratio: 1 / 1 !important;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        display: block;
                    }

                    &.swiper-slide-thumb-active {
                        border-color: #159EDF;
                    }
                }
            }
        }
    }

    /* slider */
	.slick-track{ width: 100% !important;}
.showcase_slide{ width: 100% !important;}
    .showcase_slider {
	width: 100% !important;
        .showcase_img {
            img {
                width: 100%;
		height: 20em;
		object-fit: cover;
            }
        }
    }

    /* INFO */
    .info {
        /*margin-top: 155px;*/
	    margin: 100px auto 150px auto;

        .info_inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;

            .info_lead {
                .info_title {
                    font-size: 30px;
                    line-height: 1.5;
                    font-weight: bold;
                    color: var(--primary-color);
                }

                .info_desc {
                    margin: 30px 0 86px;
                    font-size: 12px;
                    line-height: 1.7;
                }
            }

            .info_img {
                img {
                    width: 100%;
                    border-radius: 10px;
                }
            }
        }

    }
}

/* VOICE */
.voice {
    margin: 100px 0;

    .section_header {
        background: url('../img/hiraya/voice_bg.webp') no-repeat center center / cover;
    }

    .slick-slider {
        margin: 48px auto;
    }

    .voice_link {
        display: flex;
        justify-content: center;
    }
}

/* title */
.title_wrap {
    margin-top: 0;
    margin-bottom: 32px;

    &.title_flex {
        display: flex;
        gap: 24px;
        justify-content: left;
        align-items: baseline;

        .title_desc {
            width: auto;
            margin: 0;
        }
    }

    .title_desc {
        margin: 57px auto;
        text-align: center;
        color: #000;
        font-size: 16px;
        line-height: 2;
    }

    .title_desc_bold {
        margin: 10px auto;
        line-height: 2;
        font-size: 16px;
        font-weight: bold;
        text-align: center;
        color: #000;
    }


    .title_link {
        margin-left: auto;
    }

    h2 {
        line-height: 1.5;
        font-size: 30px;
        text-align: center;
        color: var(--primary-color);

        small {
            font-size: 83%;
        }
    }
}

.section_header {
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: #fff;

    .section_header_title {
        line-height: 1.5;
        font-size: 60px;
        font-weight: bold;
    }

    .section_header_desc {
        font-size: 16px;
    }
}

/* common */
.fadein {
    opacity: 0;
    transition: opacity 1.5s ease;

    &.show {
        opacity: 1;
    }
}



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

    /* MV */
    .mv {
        height: 60vh;
	    & .mv_main {
	        img {
	            width: 100%;
	            height: 60vh;
	            object-fit: cover;
	            object-position: left;
	        }
	    }
        .mv_inner {
            width: 87%;
            top: 5vh;
            left: 50%;
            transform: translateX(-50%);


            .mv_lead {
                font-size: clamp(12px, 3.5vw, 14px);
            }

            .mv_title {
                margin: 2vw 0;
                /*font-size: clamp(20px, 6vw, 40px);*/
                font-size: clamp(20px, 8vw, 40px);
            }

            .mv_desc {
                font-size: clamp(12px, 2vw, 15px);
            }
        }
    }

    /* CUSTOM */
    .custom {
        margin-top: 40px;

        .custom_inner {
            .custom_cards {
                margin: 60px auto 0;
                gap: 20px;
                flex-direction: column;

                .custom_card {
                    width: 100%;

                    .custom_title {
                      font-size: clamp(11px, 4vw, 16px);
                    }

                    .custom_img {
                        margin: 1em auto;
                    }

                    .custom_desc {
                        font-size: clamp(12px, 2.5vw, 16px);
                    }
                }
            }
        }
    }

    /* CONCEPT */
    .concept_slider_wrap {
        .concept_slider {
            width: 80%;

            .concept_item {
                margin: 0;

                img {
                    display: flex;
                    margin: 0 auto;
                }

                .slide_lead {
                    padding: 20px 0;
                }
            }
        }

        .swiper-arrows {

            .swiper-button-prev,
            .swiper-button-next {
                color: var(--primary-color);
                font-size: 20px;
                top: 40%;
            }

            .swiper-button-next:after,
            .swiper-button-prev:after {
                font-size: 30px;
            }
        }
    }

    /* PLAN */
    .plan {
        /*margin-top: 80px;*/
        margin-top: 0px;

        .plan_inner {
            .floor {
                padding: 20px 0 115px;

                .floor_list {
                    justify-content: center;
                    gap: 20px 10px;

                    .floor_item {
                        width: 47%;

                        .floor_caption {
                            padding: 10px 0;

                            .floor_caption_city {
                                font-size: clamp(10px, 2.3vw, 12px);
                            }

                            .floor_caption_title {
                                font-size: clamp(12px, 2.7vw, 14px);
                            }
                        }
                    }
                }
            }
        }

        /* MODAL */
        #plan_modal {

            .modal_content {
                padding: 10%;

                .modal_close {
                    top: 0;
                    right: 5%;
                }

                .thumb_slider {
                    .swiper-slide {
                        width: auto;
                        height: auto !important;
                        max-width: 80px;
                        max-height: 80px;
                    }
                }
            }
        }


        /* INFO */
        .info {
            margin-top: 100px;

            .info_inner {
                flex-direction: column-reverse;

                .info_lead {
                    width: 100%;
                    text-align: center;

                    .info_title {
                        font-size: clamp(18px, 5vw, 30px);
                    }

                    .info_desc {
                        margin: 20px 0 30px;
                        font-size: clamp(12px, 2.5vw, 16px);
                    }
                }

                .info_img {
                    width: 100%;

                    img {
                        height: 20vh;
                        object-fit: cover;
                        object-position: center 90%;
                    }
                }
            }

        }

    }

    /* slider */
    .showcase_slider {
        .showcase_img {
            img {
		height: 14em !important;
            }
        }
    }

    /* VOICE */
    .showcase_slider {
        margin: 50px 0 30px;

        .showcase_img {
            img {
                width: 100%;
                height: 20vh;
                object-fit: cover;
                object-position: center 90%;
            }
        }
    }

    /* title */
    .title_wrap {
        margin-bottom: 20px;

        &.title_flex {
            position: relative;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;

            .title_desc {
                margin-top: 6px;
                font-size: 12px;
                text-align: left;
            }
        }

        .title_desc {
margin: 2em;
            line-height: 1.8;
            font-size: clamp(12px, 3.5vw, 16px);
            text-align: left;
        }

        .title_desc_bold {
            font-size: clamp(12px, 2.5vw, 16px);
        }

        h2 {
            font-size: clamp(18px, 5vw, 30px);
        }
    }

    .section_header {
        height: 40vw;
        margin-bottom: 20px;

        .section_header_title {
            font-size: clamp(28px, 7.3vw, 42px);
        }

        .section_header_desc {
            font-size: clamp(12px, 3vw, 14px);
        }
    }
}