@charset "utf-8";
/* CSS Document */



.form_comtent {
    width: 100%;
    margin: auto;
    box-shadow: 0 0 3vw rgb(0 0 0 / 20%);
    border-radius: 3vw;
    padding: 8vw;
    text-align: center;
    margin-bottom: 12vw;
    opacity: 0;
    transition: all 1.4s;
    transform: translateY(-50px);
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.form_comtent.select_submit{
    box-shadow: none;
}

.form_comtent.select_case{
    opacity: 1;
    transform: none;
    visibility: visible;
    height: 100%;
}
.form_comtent.display-on{
    opacity: 1;
    transition: all 1.4s;
    transform: translateY(0);
    visibility: visible;
    height: 100%;    
}

.form_comtent h2 {
    padding: 0;
    margin: 0 0 1rem;
    font-family: p22-underground, sans-serif;
    font-size: 2.4rem;
    line-height: 1;   
}

.form_comtent p {
    padding: 0;
    margin: 0 0 1rem;
}
.form_content_wrap input{
    display: none;
}


 .check_content {
    padding: 1vw;
    border-radius: 3vw;
    border: 2px solid;
    border-color: transparent;
}

input:checked+label .check_content {
    background: #f3f3f3;
    border-color: #ccc;
}


.parts_silver,
.parts_rosegold{
    transition: all 1.4s;
    transition-delay: 1.4s;
    opacity: 1;
}

.parts_hidden{
    transition: all 1.4s;
    opacity: 0 !important;
    display: none;
}

.form_comtent .select_slide_box {
    width: 100%;
    overflow-x: auto;
}

.form_comtent .select_slide_box > div{
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    justify-content: flex-start;
    grid-gap:3vw;
}

.form_comtent.select_case .select_slide_box > div,
.form_comtent.select_color .select_slide_box > div{
    width: 100%;
    justify-content: space-evenly;
}

.form_comtent .select_slide_box > div label{
    flex-basis: auto;
}

.form_comtent .select_box > div {
    width: 30vw;
}

.form_comtent.select_belt .select_box > div {
    width: 28vw;
}
.chack_name {
    letter-spacing: normal;
    line-height: 1.5;
    display: block;
    font-size: 1rem;
    font-weight: 700;
}

.side_scroll {
    display: block;
    margin-top: 1rem;
}

.side_scroll:after {
    content: "";
    width: 1.5rem;
    height: 1rem;
    display: inline-block;
    background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38.4 10.1"><path fill="%23000000" d="M37.4,10.1H1c-0.6,0-1-0.4-1-1s0.4-1,1-1h33.9l-6.4-6.4c-0.4-0.4-0.4-1,0-1.4s1-0.4,1.4,0l8.1,8.1 c0.3,0.3,0.4,0.7,0.2,1.1C38.1,9.8,37.8,10.1,37.4,10.1z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 0.5rem;
}

.submit_button {
    width: 80%;
    line-height: 4;
    background: #a4907a;
    border: none;
    border-radius: 3vw;
    box-shadow: 0 0 3vw rgb(0 0 0 / 20%);
    color: #fbfbf6;
}

.check_img_box {
    position: relative;
}

.list_case {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}


@media screen and (min-width: 768px) and (max-width: 1024px){
    
.form_comtent .select_box > div {
    width: 20vw;
}
    
.form_comtent.select_belt .select_box > div {
    width: 15vw;
}

.chack_name {
    font-size: 1.25rem;
}    

.form_comtent p {
    padding: 0;
    margin: 0 0 2rem;
    font-size: 1.25rem;
}    

.form_comtent {
    border-radius: 2vw;
    padding: 6vw;
    margin-bottom: 10vw;
}

}

@media screen and (min-width: 1025px){
    
.form_comtent {
    max-width: 1000px;
    padding: 7rem;
    margin-bottom: 10rem;
    border-radius: 3rem;
}
    
.form_comtent .select_slide_box > div {
    flex-wrap: wrap;
    width: 100%;
}

.form_comtent .select_box > div {
    width: 25%;
} 
    
.form_comtent h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}
    
.form_comtent p {
    padding: 0;
    margin: 0 0 3rem;
}

.check_content {
    border-radius: 3rem;
}    
    
.chack_name {
    font-size: 1.5rem;
}    
    
.select_belt .select_slide_box > div {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    width: 100%;
    grid-gap: 2rem;
}
    
.form_comtent.select_belt .select_box > div {
    width: 100%;
}
.side_scroll {
    display: none;
} 
    
.submit_button {
    font-size: 2rem;
    line-height: 3;
    border-radius: 2rem;
}
    
}




/* カスタマイズフローポップアップ */






/* モーダルバナー */
.bg_customize_popup{
    position: fixed;
    display: grid;
    top: 0px;
    left: 0px;
    z-index: 99;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    justify-content: center;
}

.bg_customize_popup.js_active {
    opacity: 1;
    visibility: visible;
}

.customize_popup{
    background-color: #fbfbf6;
    cursor: pointer;
    width: auto;
    height: auto;
    align-self: center;
    position: relative;
    padding: 0;
    box-shadow: 0 0 20px rgb(0 0 0 / 30%);
	max-width: 80vw;
}

.customize_popup_content {
    text-align: center;    
}

.customize_flow_wrap {
    width: 80%;
    margin: 10% auto;
}
.customize_flow_title {
    margin: 0 0 5vw;
    font-size: 1.25rem;
    font-weight: normal;
}

.customize_flow {
    display: grid;
    grid-template-columns: 1fr 2rem 1fr 2rem 1fr;
    grid-gap: 0vw;
    align-items: center;
}
.customize_flow i {
    font-size: 2rem;
}
.customize_flow > div {
    display: grid;
    grid-gap: 2vw;
    line-height: 1;
}
.flow_no {
    font-family: yu-mincho-pr6, serif;
    font-size: 1.25rem;
    font-style: oblique;
}
.flow_desc {
    margin: 0;
    line-height: 1.5;
    font-size: 0.875rem;
}
.flow_desc span{
    display: block;
}

.flow_end {
    margin: 5vw 0;
    font-size: 0.875rem;
    text-align: left;
}

.go_flow {
    line-height: 3;
    background: #a4907a;
    border: none;
    padding: 0 2rem;
    border-radius: 3vw;
    box-shadow: 0 0 3vw rgb(0 0 0 / 20%);
    color: #fbfbf6;
    font-weight: bold;
    font-size: 0.875rem;
}


@media screen and (min-width: 768px) and (max-width: 1024px){
 
    .customize_popup {
      width: 60vw;
        max-width: 500px;
    }
    .customize_flow_title {
        margin: 0 0 2rem;
        font-size: 1.5rem;
    } 
    
    .customize_flow > div {
        grid-gap: 1rem;
    } 
    .flow_no {
        font-size: 2rem;
    }
    .flow_desc {
        margin: 0;
        line-height: 1.5;
        font-size: 1.2rem;
    }    
    .flow_desc span {
        display: inline-block;
    }   
    
    .flow_end {
        margin: 2rem 0 3rem;
        font-size: 1.2rem;
        line-height: 1.5;
    }    
    
    .go_flow {
        font-size: 1.2rem;
    }  
    
    
}


@media screen and (min-width: 1025px){
    
    .customize_popup {
        max-width: 600px;
    }    

    .customize_flow_title {
        font-size: 2rem;
        margin: 0 0 2rem;
    }
    
    .customize_flow > div {
        grid-gap: 1rem;
    }  
    
    .customize_flow i {
        font-size: 2.5rem;
    }
    
    .flow_desc {
        margin: 0;
        line-height: 1.5;
        font-size: 1.4rem;
        letter-spacing: 0.1em;
    }    
    .flow_end {
        margin: 3rem 0;
        font-size: 1.5rem;
        letter-spacing: 0.1em;
    }
    .flow_desc span {
        display: inline-block;
    }
    .go_flow {
        font-size: 2rem;
        line-height: 3;
        border-radius: 2rem;
        padding: 0 4rem;
    }
}