:root{
    --primary_color:#177BA7;
    --primary_color_hober:#04658F;
    --secondary_color:#00448D;
    --tertiary_color:#0081B0;
    --border_color:#CDCDCD;
    --white:#fff;
    --BK:#6A6A6A;
    --LightGray01: #E3E2E1;
    --LightGray02:#F5F5F5;
    --Blue :#177BA7;
    --DarkGray: #999999;
}
.important_color{
    color: #ff2d2d;
}
*{
    box-sizing: border-box;
}
body{
    margin: 0px;
    padding: 0px;
    min-width: 375px;
}
/* banner */
.banner{
    aspect-ratio: 1920/365;
    background: url('../../img/banner_img.webp');
    background-size:100%;
    margin-bottom: 90px;
}
@media screen and (max-width: 768px){
    .banner{
        margin-bottom: 40px;
    }
}
/* from */
.form_filling{
    /* background: red; */
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 60px;
}
.from_title{
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    line-height: 27.24px;
    color: var(--BK);
    padding-top: 20px;
    padding-bottom: 24px;
    border-top: 1px solid var(--LightGray01);
    border-left: 1px solid var(--LightGray01);
    border-right: 1px solid var(--LightGray01);
    margin: 0px;
}
.form_box{
    width: 100%;
}
.form_col{
    display: grid;
    grid-template-columns: 250px 1fr;
    align-items: center;
    height: 96px;
}
.form_col label{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 40px;
    width: 100%;
    height: 100%;
    border-top: 1px solid var(--LightGray01);
    border-left: 1px solid var(--LightGray01);
    border-right: 1px solid var(--LightGray01);
    font-weight: 700;
    font-size: 20px;
    line-height: 27.24px;
}
.form_col .form_input_box{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    column-gap: 10px;
    padding-left: 20px;
    border-top: 1px solid var(--LightGray01);
    border-left: 1px solid var(--LightGray01);
    border-right: 1px solid var(--LightGray01);
}
.form_col:last-of-type label,
.form_col:last-of-type .form_input_box{
    border-bottom: 1px solid var(--LightGray01);
}
.form_col .form_input_box input{
    width: 100%;
    max-width: 250px;
    line-height: 40px;
    border-radius: 3px;
    border: 1px solid var(--LightGray01);
    padding-left: 10px;
    padding-right: 10px;
}
.form_col .form_input_box input:disabled{
    opacity: 0.3;
    cursor: not-allowed;
}

@media screen and (max-width: 960px){
    .form_filling{
        width: 100%;
    }
    .form_col{
        display: flex;
        flex-direction: column;
        height: auto;
    }
    .form_col label{
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--LightGray01);
        font-size: 16px;
        line-height: 21.79px;
        height: 46px;
    }
    .form_col .form_input_box{
       padding-top: 20px;
       padding-bottom: 20px;
       box-sizing: border-box;
    }
    .form_col:last-of-type label,
    .form_col:last-of-type .form_input_box{
        border-bottom: none;
    }
    .form_col .form_input_box.form_input_box_m{
        display: block;
    }
    .form_col .form_input_box.form_input_box_m input{
        width: calc(100% - 160px);
        min-width: 250px;
        max-width: none;
    }
    .form_col .form_input_box .illustrate_text{
        font-size: 10px;
        font-weight: 400;
        line-height: 13.62px;
        color: var(--BK);
        margin-top: 5px;
        display: block;
    }
}

@media screen and (max-width: 768px){
    .form_col .form_input_box.form_input_box_m input{
        width: calc(100% - 120px);
        min-width: 250px;
        max-width: none;
    }
}

/* 按鈕樣式 */
.from_btn_style{
    padding-top: 8px;
    padding-right: 36px;
    padding-bottom: 8px;
    padding-left: 36px;
    color: var(--white);
    background: var(--Blue);
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
}
.from_btn_style:disabled{
    opacity: 0.3;
    cursor: not-allowed;
}

@media screen and (max-width: 768px){
    .from_btn_style{
        padding-right: 20px;
        padding-left: 20px;
        font-weight: 500;
        font-size: 0.6rem;
        line-height: normal;
        letter-spacing: 0.6px;
    }
}
