.pr{
    position: relative;
}
.df{
    display: flex;
}
.df_cl{
    display: flex;
    flex-direction: column;
}
a{
    text-decoration: none;
}
.w1{
    width: 100%;
}
.section.section_1{
    padding: 60px 5%;
    align-items: center;
    justify-content: flex-start;
    gap: 60px;
}
.section_text_box{
    padding: 20px;
    &.type_1{
        max-width: 800px;
        background: white;
        border: 1px solid #f0938f;
    }
}
.section_text{
    text-align: justify;
    letter-spacing: 0.1em;
    &.type_1{
        font-size: 16px;
        font-weight: bold;
    }
    &.type_2{
        font-size: 28px;
    }
    &.type_3{
        font-size: 14px;
    }
    &.type_4{
        font-size: 20px;
        padding: 5px 10px;
        &.for_label{
            width: 150px;
            font-weight: bold;
        }
    }
}
.column_title_box{
    &.type_1{
        align-items: center;
        gap: 5px;
    }
}
.section_content_column{
    align-items: center;
    gap: 20px;
    &.type_2{
        max-width: 800px;
    }
}
.section_column_anchor_box{
    max-width: 400px;
    gap: 10px;
    align-items: center;
}
.section_column_anchor{
    aspect-ratio: 4 / 1;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    border: 2px solid white;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background: #615725;
    border-radius: 100vh;
}
.column_anchor_text{
    font-size: 20px;
    color: white;
    &.type_1{
        span{
            font-weight: bold;
            color: white;
        }
    }
    &.type_2{
        font-weight: bold;
    }
}
.section.section_2{
    padding: 60px 5%;
    background: white;
    align-items: center;
    gap: 60px;
}
.section_content_row{
    padding: 20px 0;
    gap: 10px;
    align-items: flex-start;
    border-bottom: 1px solid #f0938f;
}
@media all and (max-width: 800px){
    .section_text{
        &.type_2{
            font-size: 24px;
        }
        &.type_4{
            font-size: 18px;
        }
    }
}

@media all and (max-width: 450px){
    .section_text{
        &.type_2{
            font-size: 20px;
        }
        &.type_3{
            font-size: 12px
        }
        &.type_4{
            font-size: 16px;
            padding: 5px 0;
            &.for_label{
                width: 100px;
            }
        }
    }
    .column_anchor_text{
        font-size: 18px;
    }
}
