.idx_top{
    height: 60rem;
    position: relative;
}

.idx_top span{
    position: absolute;
    top: 13rem;
    color: rgb(var(--color-primary-white));
    font-family: "Noto Sans JP";
    font-weight: 600;
    font-size: 2.5rem;
}

.idx_top span.lang_en{
    font-family: "Inter";
    font-weight: 500;
}
.idx_top .bg{
    z-index: 10;
    position: absolute;

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

.idx_top .bg.swiper .swiper-wrapper .swiper-slide img{
    width: 100%;
    height: 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.1);
}


.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_missions.content_box_wrapper{
    row-gap: 5rem;
    background-color: rgb(var(--color-primary-white));
    --idx_missions_padding: 7rem;
    z-index: 52;
    overflow-x: clip;
    padding-bottom: 0;
	padding-top: 3rem;
}

.idx_missions.content_box_wrapper::before{
    position: absolute;
    content: "";
    width: 100%;
    height: var(--idx_missions_padding);
    background-color: rgb(var(--color-primary-white));
    top: calc(-1 * var(--idx_missions_padding) + 2px);
    clip-path: ellipse(57% 100% at 50% 100%);
}

.idx_missions.content_box_wrapper::after{
    position: absolute;
    content: "";
    width: 100%;
    height: var(--idx_missions_padding);
    background-color: rgb(var(--color-primary-white));
    bottom: calc(-1 * var(--idx_missions_padding) + 2px);
    clip-path: ellipse(57% 100% at 50% 0%);
}

.idx_missions .content_box.icon_list{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 0 1rem;
}

.idx_missions .content_box.icon_list .icon_box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 1rem;
}

.idx_missions .content_box.icon_list .icon_box img{
    height: 8rem;
    width: 8rem;
    object-fit: contain;
}

.idx_missions .content_box.icon_list .icon_box span{
    font-size: 1.4rem;
    font-weight: 600;
    font-family: "Noto Sans JP";
}

.idx_missions .content_box.mission_desc{
    display: flex;
    flex-direction: column;
    row-gap: 1.8rem;
    margin-top: 2rem;
    text-align: center;
    color: rgb(var(--color-base-black));
}

.idx_missions .content_box.mission_desc p{
    font-family: "Noto Serif JP";
    font-size: 1rem;
    line-height: 1.5rem;
}

.idx_missions .content_box.line_box{
    display: flex;
    flex-direction: row;
    column-gap: 2rem;
    align-items: center;
    justify-content: center;
}

.idx_missions .content_box.line_box::before{
    content: "";
    display: block;
    width: 0.25rem;
    height: 3rem;
    background-color: rgb(237, 0, 0);
    margin-top: 2rem;
}

@media screen and (max-width: 600px) {
    .idx_missions .content_box.icon_list{
        padding: 0 2rem;
		column-gap: 2rem;
    }
    .idx_missions .content_box.icon_list .icon_box img{
        height: 5rem;
        width: 5rem;
    }
}

.idx_collections.content_box_wrapper{
    background-color: rgb(var(--color-base-black));
    padding-top: 15rem;
    padding-bottom: 10rem;
}

.idx_collections.content_box_wrapper .content_box.title_box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 6rem;
}

.idx_collections.content_box_wrapper .content_box.title_box h2{
    color: rgb(var(--color-primary-white));
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 1.5rem;
}

.idx_collections .item_list {
    margin-top: 0rem;
    margin-bottom: 2rem;
    row-gap: 3rem;
}

.idx_collections .item_list .item span{
    font-family: "Inter";
    font-size: 0.85rem;
    color: rgb(var(--color-primary-white));
}

.idx_collections .see_more_box{
    display: flex;
    align-items: end;
}

.idx_collections .see_more_box a{
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    font-family: "Noto Serif JP";
    font-size: 0.8rem;
    color: rgb(var(--color-primary-white));
}

.idx_collections .see_more_box a .arrow_box{
    border-radius: 100rem;
	background-color: rgb(var(--color-white));
}

.idx_collections .see_more_box a img{
    height: 1.5rem;
    width: 1.5rem;
	filter: invert(10%) sepia(97%) saturate(5845%) hue-rotate(357deg) brightness(100%) contrast(117%);
}

@media screen and (max-width: 600px) {
	.idx_collections.content_box_wrapper .content_box.title_box h2{
		font-size: 1.2rem;
	}
}

.idx_aboutus.content_box_wrapper{
    background-color: rgb(var(--color-primary-white));
    padding-top: 0rem;
    padding-bottom: 0rem;
    overflow-x: clip;
    position: relative;
    z-index: 60;
    padding-top: 3rem;
    padding-bottom: 2rem;
}
.idx_aboutus.content_box_wrapper::before{
    position: absolute;
    content: "";
    width: 100%;
    height: calc(2rem + 2px);
    background-color: rgb(var(--color-primary-white));
    top: -2rem;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
}
.idx_aboutus.content_box_wrapper::after{
    position: absolute;
    content: "";
    width: 100%;
    height: calc(2rem + 2px);
    background-color: rgb(var(--color-primary-white));
    bottom: -2rem;
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
}

.idx_aboutus.content_box_wrapper .content_box.title_box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
}

.idx_aboutus.content_box_wrapper .content_box.title_box h2{
    color: rgb(var(--color-base-black));
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 1.5rem;
}

.idx_aboutus.content_box_wrapper .content_box.img_swiper{
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
}

.idx_aboutus.content_box_wrapper .content_box.img_swiper .swiper-wrapper{
    transition-timing-function: linear !important;
}


.idx_aboutus.content_box_wrapper .content_box.img_swiper .swiper-slide{
    width: fit-content;
    
}

.idx_aboutus.content_box_wrapper .content_box.img_swiper img{
    width: 20rem;
}

.idx_aboutus.content_box_wrapper .content_box.para_box{
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
    align-items: center;
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
}

.idx_aboutus.content_box_wrapper .content_box.para_box p{
    font-family: "Noto Serif JP";
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4rem;
    color: rgb(var(--color-base-black));
}

.idx_aboutus.content_box_wrapper .content_box.button_box{
    display: flex;
    justify-content: center;
    align-items: center;
}

.idx_aboutus.content_box_wrapper .content_box.button_box a{
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(var(--color-primary-white));
    background-color: rgb(var(--color-base-black));
    padding: 1.2rem 3rem;
    border-radius: 100rem;
    font-weight: 600;
    font-family: "Noto Sans JP";
}

.idx_aboutus.content_box_wrapper .content_box.button_box a span{
    margin-bottom: 0.2rem;
    color: rgb(var(--color-primary-white));
}

@media screen and (max-width: 600px) {
	.idx_aboutus.content_box_wrapper .content_box.title_box h2{
		font-size: 1.2rem;
	}
	.idx_aboutus.content_box_wrapper .content_box.photo_stage img:nth-child(2){
		width: 60%;
	}
}

.idx_collections.idx_collection_archive {
    padding-top: 11rem;
}
.idx_collections.idx_collection_archive .title_box.content_box{
    margin-bottom: 3rem;
}


.about_body.content_box_wrapper{
    background-color: rgb(var(--color-base-black));
    padding-top: 8rem;
}

.about_body.content_box_wrapper .content_box.img_box{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 4rem;
    width: 100%;
    margin-bottom: 4rem;
}
.about_body.content_box_wrapper .content_box.img_box img{
    object-fit: cover;
    aspect-ratio: 4/3;
    height: 100%;
    width: 100%;
    flex-grow: 0;
}

.about_body.content_box_wrapper .content_box.para_box{
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
    margin-bottom: 3.5rem;
    text-align: center;
}
.about_body.content_box_wrapper .content_box.para_box p{
    color: rgb(var(--color-primary-white));
    font-family: "Noto Serif JP";
    font-size: 0.9rem;
    line-height: 1rem;
}

.about_body.content_box_wrapper .content_box.button_box{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 6rem;
}
.about_body.content_box_wrapper .content_box.button_box a{
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(var(--color-base-black));
    background-color: rgb(var(--color-primary-white));
    padding: 1rem 2.5rem;
    border-radius: 100rem;
    font-weight: 600;
    font-family: "Noto Sans JP";
}

.about_body.content_box_wrapper .content_box.button_box a span{
    margin-bottom: 0.3rem;
    color: rgb(var(--color-base-black));
    font-size: 0.9rem;
}
.about_body.content_box_wrapper .content_box.line_box::before{
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: rgb(var(--color-primary-white));
    margin-bottom: 5rem;
}

.about_body.content_box_wrapper .content_box.info_box{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    column-gap: 2rem;
    margin-bottom: 12rem;
}

.about_body.content_box_wrapper .content_box.info_box div.left{
    flex-grow: 1;
    flex-shrink: 1;
    color: rgb(var(--color-primary-white));
    font-family: "Noto Serif JP";
    font-size: 0.8rem;
}

.about_body.content_box_wrapper .content_box.info_box div.left h2{
    font-size: 1.5rem;
    color: rgb(var(--color-primary-white));
    font-family: "Noto Sans JP";
    font-weight: 400;
    margin-bottom: 2rem;
}

.about_body.content_box_wrapper .content_box.info_box div.left table{
    width: 100%;
    border-collapse: collapse;
}

.about_body.content_box_wrapper .content_box.info_box div.left table th,
.about_body.content_box_wrapper .content_box.info_box div.left table td{
    color: rgb(var(--color-primary-white));
    font-weight: 400;
    font-family: "Noto Sans JP";
    padding-bottom: 1.5rem;

}

.about_body.content_box_wrapper .content_box.info_box div.left table th{
    min-width: 2rem;
    padding-right: 2rem;
}

.about_body.content_box_wrapper .content_box.info_box div.right{
    flex-grow: 1;
    flex-shrink: 1;
    width: 30%;
    height: 20rem;
}

.about_body.content_box_wrapper .content_box.info_box div.right iframe{
    width: 100%;
    height: 100%;
    border: none;
}


@media screen and (max-width: 600px) {
	.about_body.content_box_wrapper .content_box.img_box{
		grid-template-columns: repeat(1, 1fr);
	}
	.about_body.content_box_wrapper .content_box.img_box img{
		display: none;
	}
	.about_body.content_box_wrapper .content_box.img_box img:nth-child(1){
		display: block;
	}
	
    .about_body.content_box_wrapper .content_box.info_box{
        flex-direction: column;
        row-gap: 5rem;
    }

    .about_body.content_box_wrapper .content_box.info_box div.right{
        width: 100%;
        height: 30rem;
    }
}

.content_box_wrapper.cont_box {
    background-color: rgb(var(--color-base-black));

}
.content_box_wrapper.cont_box .content_box{
    column-gap: 7rem;
}
.content_box_wrapper.cont_box .cont_form_box{
    flex-direction: column;
    height: auto;
}
.content_box_wrapper.cont_box .cont_form_box h1{
    color: rgb(var(--color-primary-white));
    font-family: "Noto Sans JP";
    margin-bottom: 2rem;
	font-size: 1.5rem;
}
.content_box_wrapper.cont_box .cont_form_box form.wpcf7-form{
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
}

.content_box_wrapper.cont_box .cont_form_box .ts_box{
	margin-top: 0.5rem;
	margin-bottom: 0.9rem;
}

.cont_form_box span{
    display: block;
    font-family: "Noto Serif JP";
    font-weight: 500;
    font-size: 0.8rem;
    padding-bottom: 0.4rem;
    color: rgb(var(--color-primary-white));
}

.cont_form_box .item_box_row div{
    flex-grow: 1;
    flex-shrink: 1;
}
.cont_form_box .link_button{
    font-family: "Noto Serif JP";
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.cont_form_box .link_button:hover{
    color: rgb(var(--color-base-black));
    background-color: rgb(var(--color-primary-white));
}

.cont_box .content_box.row .row_item.image_box{
    width: 20rem;
    justify-content: end;
	min-width: 45%;
}
.cont_box .content_box.row .row_item.image_box img{
    height: 50vh;
    width: 100%;
}
.cont_box .content_box.row{
    height: auto;
}

.cont_form_box .item_box_col label {
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
}

.content_box_wrapper.collections_list{
    background-color: rgb(var(--color-base-black));
    padding-top: 5rem;
    padding-bottom: 10rem;
}
.content_box_wrapper.collections_list .item_list .item span{
    font-family: "Inter";
    font-size: 0.85rem;
    color: rgb(var(--color-primary-white));
}

.content_box_wrapper.car_single{
    background-color: rgb(var(--color-base-black));
    padding-top: 11rem;
    row-gap: 3rem;
    padding-bottom: 10rem;
}

.content_box_wrapper.car_single .top_image_box{
    width: 100%;
}

.content_box_wrapper.car_single .car_info_box{
    display: flex;
    align-items: center;
}
.content_box_wrapper.car_single .car_info_box h1{
    color: rgb(var(--color-primary-white));
    font-family: "Inter";
    font-weight: 600;
    font-size: 2rem;
}
.content_box_wrapper.car_single .car_info_box span{
    color: rgb(var(--color-primary-white));
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 1rem;
}
.content_box_wrapper.car_single .car_info_box span.price_holder{
    font-family: "Inter";
}
.content_box_wrapper.car_single .car_info_box span.price_holder::before{
    content: "¥  ";
}

.content_box_wrapper.car_single .para_box{
    display: flex;
    align-items: start;
    justify-content: center;
    row-gap: 0.5rem;
}

.content_box_wrapper.car_single .para_box p{
    color: rgb(var(--color-primary-white));
    font-family: "Noto Sans JP";
    font-size: 1rem;
}

.content_box_wrapper.car_single .image_grid{
    margin-top: 5rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(23rem, 1fr));
    column-gap: 1rem;
    row-gap: 1rem;
    width: 100%;
}

.content_box_wrapper.car_single .image_grid img{
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.notfound_box{
    position: relative;
}
.notfound_box .content_box::after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--color-black), 0.5);
}
.notfound_box h1{
    color: rgb(var(--color-white));
}

@media screen and (max-width: 600px) {
	.content_box_wrapper.cont_box .cont_form_box{
		padding-top: 8rem;
	}
}