#gds-grid-01-parent {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(8, 1fr);
    gap: 2rem;
    height: 80rem;
}
    
#gds-grid-01-parent .div1 {
    grid-column: span 3 / span 3;
    grid-row: span 3 / span 3;
}

#gds-grid-01-parent .div2 {
    grid-column: span 2 / span 2;
    grid-row: span 3 / span 3;
    grid-column-start: 4;
}

#gds-grid-01-parent .div3 {
    grid-column: span 2 / span 2;
    grid-row: span 3 / span 3;
    grid-row-start: 4;
}

#gds-grid-01-parent .div4 {
    grid-column: span 3 / span 3;
    grid-row: span 2 / span 2;
    grid-column-start: 3;
    grid-row-start: 4;
}

#gds-grid-01-parent .div5 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 1;
    grid-row-start: 7;
}

#gds-grid-01-parent .div6 {
    grid-column: span 2 / span 2;
    grid-row: span 3 / span 3;
    grid-column-start: 3;
    grid-row-start: 6;
}

#gds-grid-01-parent .div7 {
    grid-row: span 3 / span 3;
    grid-column-start: 5;
    grid-row-start: 6;
}

.idx_top .bg{
    z-index: 10;
    position: absolute;

    height: 100%;
    width: 100%;
    object-fit: cover;
}

.idx_top::after{
    content: "";
    display: block;
    top: 0;
    z-index: 11;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--color-black), 0.6);
}

.idx_top .content_box .logo{
    height: 6rem;
	filter: drop-shadow(0 0 2px rgb(var(--color-black)));
}

.idx_top .bottom_box{
    position: absolute;
    display: flex;
    width: 100%;
    flex-direction: column-reverse;
    align-items: center;
    height: 20rem;
    bottom: 0;
    padding-bottom: 3rem;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(var(--color-base), 1) 5%, rgba(var(--color-base),0) 90%);
}

.idx_nav.content_box_wrapper{
	padding-top: 3rem;
}
.idx_nav .idx_content_title{
    margin-top: 0;
}
.idx_nav .row{
    height: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
}
.idx_nav .nav_box.row_item{
    position: relative;
    min-height: 40rem;
    display: flex;
    flex-direction: column;
}
.idx_nav .nav_box.row_item img{
    height: 20rem;
    flex-grow: 1;
}
.idx_nav .nav_box.row_item .nav_desc{
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
    position: relative;
    padding: 1rem;
    flex-grow: 1;
    background-color: rgb(var(--color-gray-blue));
    padding-bottom: 5rem;
    height: 20rem;
}
.idx_nav .nav_box.row_item .nav_desc h3{
    font-weight: normal;
}

.idx_nav .nav_box.row_item .nav_desc p{
    font-size: 0.7rem;    
}
.idx_nav .nav_box.row_item .nav_desc .icon_arrow{
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    border-radius: 100rem;
    border-width: 0.1rem;
    height: 2rem;
    width: 2rem;
    padding: 0.2rem;
    border-color: rgb(var(--color-black));
}

.idx_content_title{
    margin-top: 1rem;
    margin-bottom: 2rem;
    align-items: center;
}

.idx_reno .idx_reno_desc{
    row-gap: 3rem;
}

.idx_swiper .swiper .swiper-slide{
    width: 90vw;
    position: relative;
    padding: 0 2rem 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
    text-align: center;
}

.idx_swiper .swiper .swiper-slide::after{
    content: "";
    width: 4rem;
    height: 4rem;
    position: absolute;
    bottom: 1rem;
    left: 2rem;
    border-style: none;
    border-left-style: solid;
    border-bottom-style: solid;
    border-color: rgba(var(--color-white),0.5);
    border-width: 1px;
}

.idx_swiper .swiper .swiper-slide img{
    width: 100%;
    height: 50%;
    object-fit: cover;
}

.idx_swiper .swiper .swiper-slide .desc_box{
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.idx_swiper .swiper .swiper-slide p{
    margin: 0 3rem;
}

.idx_swiper .swiper .swiper-slide .link_button{
    margin-top: 10rem;
}

.content_box_wrapper.idx_copy_wrapper p{
	font-size: 1rem;
}

.idx_antique .idx_content_title{
    margin-top: .5rem;
    margin-bottom: 0;
}

.idx_antique #idx-swiper-antique{
    height: 25rem;
    width: 100%;
}
.idx_antique #idx-swiper-antique .swiper-wrapper{
    transition-timing-function: linear !important;
}
.idx_antique #idx-swiper-antique .swiper-slide {
    height: 100%;
    width: 15rem;
}

.idx_antique #idx-swiper-antique .swiper-slide img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}


#idx-goods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
}
    

#idx-goods-grid .div2 {
    grid-column-start: 1;
    grid-row-start: 2;
}

#idx-goods-grid .div3 {
    grid-row: span 2 / span 2;
    grid-column-start: 2;
    grid-row-start: 1;
}

.content_box_wrapper.cont_box .content_box{
    column-gap: 3rem;
    height: auto;
}
.content_box_wrapper.cont_box .cont_form_box{
    flex-direction: column;
    height: auto;
    min-width: 20rem;
}

.content_box_wrapper.cont_box .content_box .row_item.img_box{
    width: 180%;
    height: auto;
}
       
.temp_contact_bar.content_box_wrapper::after{
	content: "";
} 
.temp_contact_bar.content_box_wrapper .content_box{
    margin-bottom: 0;
}

.content_box.item_list.antique_items .item p{
    transition: color .5s ease-in-out;
}

.content_box.item_list.antique_items .item:hover p{
    color: rgb(var(--color-brown));
}

.content_box.item_list.antique_items .item img{
    height: 100%;
    width:100%;
    object-fit: cover;
}

.content_box_wrapper.fullscreen.antique_item_box .content_box{
    column-gap: 2rem;
    height: auto;
    margin-bottom: 0;
    align-items: center;
}

.content_box_wrapper.fullscreen.antique_item_box .anti_desc_box{
    display: flex;
    flex-direction: column;
}
.content_box_wrapper.fullscreen.antique_item_box .anti_item_back_link{
    display: flex;
    column-gap: 0.5rem;
    align-items: center;
    color: rgba(var(--color-white),0.8);
}

.content_box_wrapper.fullscreen.antique_item_box .anti_item_back_link::before{
    content: "";
    display: block;
    height: 0.5rem;
    width: 0.5rem;
    border-left: solid 0.1rem rgba(var(--color-white),0.8);
    border-top: solid 0.1rem rgba(var(--color-white),0.8);
    rotate: -45deg;
}


.content_box_wrapper.fullscreen.antique_item_box .img_swiper{
    width: 60%;
}

.content_box_wrapper.fullscreen.antique_item_box .swiper{
    width: 100%;
    height: 25rem;
}


.content_box_wrapper.fullscreen.antique_item_box .swiper .swiper-pagination-bullet-active {
    background: rgb(var(--color-brown));
}

.content_box_wrapper.fullscreen.antique_item_box .swiper .swiper_arrow{
    height: 2rem;
    width: 2rem;
    top: calc(50% - 1rem);
    position: absolute;
    cursor: pointer;
    filter: invert(64%) sepia(22%) saturate(386%) hue-rotate(349deg) brightness(85%) contrast(78%);
}

.content_box_wrapper.fullscreen.antique_item_box .swiper .swiper_prev_arrow{
    left: .5rem;
    rotate: 180deg;
}

.content_box_wrapper.fullscreen.antique_item_box .swiper .swiper_next_arrow{
    right: .5rem;
}

@media screen and (max-width: 600px) {
    .idx_top.fullscreen{
        height: 30rem;
        min-height: auto;
    }

    .content_box_wrapper.idx_full .idx_content_title{
        align-items: center;
        justify-content: center;
        height: 5rem;
    }
    .idx_nav .nav_wrapper{
        padding: 0;
    }
    .idx_nav .nav_box.row_item{
        min-height: auto;
    }
    .idx_nav .nav_box.row_item .nav_desc{
        display: none;
    }

    .idx_nav .nav_box.row_item img{
        height: 20rem;
    }

    .idx_nav .nav_box.row_item .nav_smt_title{
        position: absolute;
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
        bottom: 1rem;
        left: 0;
    }

    .idx_nav .content_box:nth-last-child(1){
        margin-bottom: 0;
    }

    .content_box_wrapper.idx_copy_wrapper{
        min-height: auto;
        height: 45rem;
        position: relative;
        
    }

    .content_box_wrapper.idx_copy_wrapper .content_box{
        margin: 0;
    }
    .content_box_wrapper.idx_copy_wrapper p{
        font-size: 1rem;
    }


    .content_box_wrapper.idx_full{
        padding: 0;
        row-gap: 0;
    }
    .content_box_wrapper .smt_bg_img{
        width: 100%;
        min-height: 100%;
        object-fit: cover;
    }
    .content_box_wrapper .smt_button_box{
        position: absolute;
        bottom: 2rem;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .content_box_wrapper .smt_button_wide{
        width: 80%;
        padding: 1rem;
        background-color: rgb(var(--color-gray-blue));
        display: flex;
        align-items: center;
        justify-content: center;
    } 

    .content_box_wrapper.cont_box .content_box{
        flex-direction: column-reverse;
        height: auto;
    }

    .content_box_wrapper.cont_box .content_box h1{
        font-size: 1.5rem;
    }
    .content_box_wrapper.cont_box .content_box{
        margin-bottom: 30rem;
    }

    .temp_contact_bar.content_box_wrapper{
        min-height: 20rem;
    }

    .content_box.item_list.antique_items{
        grid-template-columns:none;
        width:100%;
        display: flex;
        flex-direction: column;
    }
    .content_box.item_list.antique_items .item{
        max-height: none;
        max-width: none;
        width: 100%;
    }

    .content_box_wrapper.fullscreen.antique_item_box .anti_desc_box{
        width: 100%;
    }
    .content_box_wrapper.fullscreen.antique_item_box .content_box{
        flex-direction: column-reverse;
    }
    .content_box_wrapper.fullscreen.antique_item_box .img_swiper{
        width: 100%;
        flex-direction: column;
        row-gap: 2rem;
    }
}

.wpcf7 input[type=”text”],
.wpcf7 input[type=”email”],
.wpcf7 input[type=”url”],
.wpcf7 input[type=”tel”],
.wpcf7 textarea {
    width: 100%!important;
}