:root{
    --main: #fefefe;
    --sub: #264a9e;
    --sub2: #00a0e9;
    --sub3: #cfcfcf;
    --text: #2d2726;
}
.section_1_image{
    background: url(/assets/img/v_10_1.webp);
    background-size: cover;
    background-position: center;
}
.section_text_box{
    &.type_1{
        max-width: 800px;
        padding: 0 40px;
        border-left: 1px solid var(--sub3);
        align-items: flex-start;
        gap: 20px;
        &::before{
            content: "";
            position: absolute;
            width: 100vw;
            height: 100%;
            background: var(--sub3);
            top: 0;
            right: 0;
            transform: translateX(100%);
        }
    }
}
.section_text_row{
    &.type_1{
        align-items: flex-start;
        gap: 5px;
    }
}
.section_text{
    &.type_1{
        font-size: 1.6rem;
    }
    &.type_2{
        font-size: 1.4rem;
        color: rgb(146, 0, 0);
        a{
            color: rgb(146, 0, 0);
            font-weight: bold;
            text-decoration: underline;
        }
    }
    &.type_3{
        font-size: 1.6rem;
        cursor: pointer;
        font-weight: bold;
    }
    &.type_4{
        font-size: 1.2rem;
        color: var(--main);
        padding: 1px 5px;
        &.text_1{
            background: rgb(146, 0, 0);
        }
        &.text_2{
            background: var(--sub);
        }
    }
    &.type_5{
        font-size: 1.4rem;
        a{
            color: var(--sub);
            text-decoration: underline;
        }
    }
}
.section_content_container{
    &.type_1{
        padding: 0 20px;
        max-width: 1000px;
        gap: 40px;
        align-items: flex-start;
    }
}
.form{
    align-items: flex-start;
}
.input_row{
    &.type_1{
        grid-template-columns: 1fr 2fr;
        grid-template-rows: repeat(max-content, max-content);
    }
}
.input_box{
    padding: 20px;
    border-bottom: 1px solid var(--sub3);
    &.type_1{
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        &::before{
            content: "";
            position: absolute;
            width: 1px;
            height: 20px;
            background: var(--sub3);
            bottom: 0;
            right: 0;
        }
    }
    &.type_2{
        align-items: flex-start;
        border-right: 1px solid var(--sub3);
        &.df{
            align-items: center;
            gap: 20px;
        }
    }
    &.type_3{
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
}
.input{
    padding: 5px 10px;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    &.type_1,&.type_3{
        background: #cfcfcf17;
        border: none;
        &:focus{
            border: none;
            outline: none;
        }
    }
    &.type_2{
        background: var(--main);
    }
    &.type_3{
        height: 16rem;
    }
    &::placeholder{
        color: var(--sub3);
    }
}
.submit_box{
    padding: 40px 20px;
    align-items: center;
    justify-content: center;
}
.submit_btn{
    max-width: 250px;
    padding: 20px;
    border: none;
    background: var(--sub);
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
}
.submit_text{
    font-size: 1.6rem;
    color: var(--main);
}
.section_arrow_box{
    overflow: hidden;
    align-items: center;
    &.type_1{
        width: 60px;
        min-width: 60px;
        aspect-ratio: 3 / 1;
        background: var(--main);
        border-radius: 100vh;
    }
}
.section_arrow{
    transform: translateX(100%);
    &.type_1{
        width: 50%;
        text-align: center;
        font-size: 2.8rem;
    }
}
@media all and (max-width: 1280px){

}
@media all and (max-width: 960px){
    
}
@media all and (max-width: 768px){
    .section_text_box{
        &.type_1{
            padding: 0 20px;
        }
    }
    .section_content_container{
        &.type_1{
            padding: 0;
        }
    }
    .input_row{
        &.type_1{
            grid-template-columns: 1fr;
        }
    }
    .input_box{
        &.type_1{
            max-width: 300px;
        }
        &.type_2{
            border-right: none;
        }
    }
}
@media all and (max-width: 450px){
    .section_arrow_box{
        &.type_1{
            width: 60px;
            min-width: 60px;
        }
    }
    .section_arrow{
        &.type_1{
            font-size: 2.8rem;
        }
    }
    .section_text{
        &.type_1,&.type_3{
            font-size: 1.4rem;
        }
        &.type_2{
            font-size: 1.2rem;
        }
    }
    .input_box{
        &.type_1{
            padding-left: 0;
        }
        &.type_2{
            padding: 20px 0;
        }
    }
    .submit_box{
        padding: 20px;
    }
}
@media (any-hover: hover){
    .submit_btn{
        transition: background ease 0.25s;
    }
    .section_arrow{
        transition: transform ease 0.25s, color ease 0.25s;
        transform: translateX(0);
    }
    .submit_btn:hover{
        background: var(--sub2);
        .section_arrow{
            transform: translateX(100%);
            color: var(--sub2);
        }
    }
}
