:root{
    --main: #04325f;
    --sub1: #cee7d7;
    --sub2: #626343;
    --sub3: #94d0c9;
}
.section.section_2{
    border-bottom: 2px solid rgb(98, 99, 67, 0.25);
}
.section_1_content_box.box_2{
    background-image: url(/assets/img/contact_v_a.webp);
    background-size: cover;
    background-position: top;
}
.section_container.container_1{
    width: calc(100% - 200px);
    max-width: 1200px;
    align-self: center;
    align-items: flex-start;
}
.section_text_box.type_1{
    padding: 40px;
    align-items: flex-start;
    gap: 10px;
}
.section_text.text_1{
    font-size: 1.6rem;
    font-weight: 500;
}
.section_text.text_1 .for_anchor{
    font-weight: 500;
    color: var(--main);
    text-decoration: underline;
}
.text_box_border{
    position: absolute;
    background: var(--sub2);
    opacity: 0.25;
}
.text_box_border.type_1,.text_box_border.type_2{
    width: 200px;
    height: 2px;
    left: -10px;
}
.text_box_border.type_1{
    top: 0;
}
.text_box_border.type_2{
    bottom: 0;
}
.text_box_border.type_3,.text_box_border.type_4{
    width: 2px;
    height: 100px;
    left: 0;
}
.text_box_border.type_3{
    top: -20px;
}
.text_box_border.type_4{
    bottom: -20px;
}
.section_border{
    height: 2px;
    opacity: 0.25;
}
.section_border.border_1{
    width: calc(100% - 100px);
    max-width: 1400px;
    background: var(--sub2);
    align-self: flex-end;
}
.section_text_box.type_2{
    max-width: 800px;
    padding: 0 40px;
} 
.telephone_contact_anchor{
    padding: 20px 40px;
    align-items: center;
    gap: 40px;
    background: var(--sub2);
}
.telephone_contact_anchor::before,.telephone_contact_anchor::after{
    content: "";
    position: absolute;
    background: white;
}
.telephone_contact_anchor::before{
    width: 1px;
    height: 100%;
    top: 0;
    right: 10px;
}
.telephone_contact_anchor::after{
    width: 40%;
    height: 1px;
    bottom: 20px;
    right: 0;
}
.telephone_label{
    width: 100px;
    aspect-ratio: 1;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid white;
}
.telephone_label_text{
    font-size: 1.6rem;
    color: white;
}
.telephone_contact_text{
    color: white;
    font-size: 4.8rem;
    letter-spacing: 4px;
    padding-bottom: 5px;
}
.section_text_row{
    align-items: flex-start;
    gap: 5px;
}
.section_text.text_2{
    font-size: 1.4rem;
    font-weight: 500;
}
.section_text.text_2 .privacy_anchor{
    font-weight: 600;
    color: var(--main);
    text-decoration: underline;
}
.section_text.text_2.for_label{
    font-weight: 600;
    color: rgb(222, 8, 8);
}

.form_container{
    padding: 0 40px;
}

.form_input_box{
    flex: 1;
    padding: 20px 0;
}
.form_input_box.box_1{
    max-width: 300px;
    align-items: center;
    gap: 20px;
}
select,input,textarea{
    width: 100%;
    padding: 20px;
    font-size: 1.6rem;
    font-weight: 500;
    border: none;
    outline: 1px solid var(--main);
}
select{
    background: white;
}
select:focus,input:focus,textarea:focus{
    outline: 2px solid var(--sub3);
}
.form_label{
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--main);
    padding: 20px 0;
}
.label_alert{
    font-size: 1.2rem;
    font-weight: 500;
    color: rgb(222, 8, 8);
}
.form_check_row{
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.form_check_box{
    display: flex;
    width: 60px;
    max-width: 60px;
    height: max-content;
    justify-content: center;
    align-items: center;
    flex: 1;
}
input[type="checkbox"].switch{
    font-size: 1.6rem;
    padding: 0;
    appearance: none;
    width: 40px;
    height: 25px;
    background: rgb(224, 224, 224);
    border-radius: 100vh;
    position: relative;
    cursor: pointer;
    outline: none;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    }
    
    input[type="checkbox"].switch:checked{
    background: var(--sub3);
    }
    
    input[type="checkbox"].switch:after{
    position: absolute;
    content: "";
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #fff;
    -webkit-box-shadow: 0 0 .25em rgba(0,0,0,.3);
            box-shadow: 0 0 .25em rgba(0,0,0,.3);
    -webkit-transform: scale(.7);
            transform: scale(.7);
    left: 0;
    top: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    }
    
    input[type="checkbox"].switch:checked:after{
    left: calc(100% - 1.5em);
    }
.form_check_text{
    font-size: 1.6rem;
    font-weight: 500;
    cursor: pointer;
    transition: opacity ease 0.15s, color ease 0.15s;
}
.form_check_text.nonactive{
    opacity: 0.5;
    color: gray;
}
.form_submit_row{
    padding: 20px 0;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.submit_button{
    border: none;
    cursor: pointer;
    max-width: 300px;
    height: 60px;
    align-items: center;
    background: var(--main);
    border-radius: 100vh;
    justify-content: center;
    transition: opacity ease 0.15s;
}
.submit_button.for_return{
    background: var(--sub2);
}
.submit_text{
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 1px;
}
.submit_button.nonactive{
    pointer-events: none;
    opacity: 0.6;
}

.section.for_form{
    padding-top: 120px;
    padding-bottom: 20px;
    align-items: center;
    border-bottom: 2px solid rgb(98, 99, 67, 0.25);
}
.confirm_text_box{
    height: 100%;
    justify-content: center;
    padding: 20px 0;
}
.confirm_text{
    font-size: 1.6rem;
    font-weight: 500;
}
.complete_anchor_box {
    padding-top: 20px;
    justify-content: flex-start;
}

@media all and (max-width:1280px){

}
@media all and (max-width:960px){
    .section_container.container_1{
        width: calc(100% - 120px);
    }
}
@media all and (max-width:768px){
    .section_container.container_1{
        width: calc(100% - 60px);
    }
    .telephone_label{
        width: 80px;
    }
    .telephone_contact_text{
        font-size: 4.2rem;
    }
    .form_input_box.box_1{
        max-width: 200px;
    }
    .form_label,.confirm_text{
        font-size: 1.4rem;
    }
    select,input,textarea{
        padding: 10px 15px;
    }
}
@media all and (max-width:450px){
    .section_container.container_1{
        width: calc(100% - 30px);
    }
    .section_text_box.type_1{
        padding: 40px 20px;
    }
    .section_text_box.type_2{
        padding: 0 20px;
    }
    .section_text.text_1{
        font-size: 1.4rem;
    }
    .telephone_contact_anchor{
        padding: 10px 20px;
        gap: 20px;
    }
    .telephone_contact_text{
        font-size: 2.4rem;
        letter-spacing: 3px;
        padding-bottom: 3px;
    }
    .telephone_contact_anchor::before{
        right: 5px;
    }
    .telephone_contact_anchor::after{
        bottom: 10px;
    }
    .form_container{
        padding: 0 20px;
    }
    form{
        gap: 10px;
    }
    .form_row{
        flex-direction: column;
    }
    .form_input_box{
        flex: none;
        padding: 0;
    }
    .form_label,.confirm_text_box{
        padding: 10px 0;
    }
    .form_check_text{
        font-size: 1.4rem;
    }
    .form_check_row,.form_submit_row{
        padding: 10px 0;
    }
}
@media (any-hover: hover){

}
