.temp_sc1 .con_area .top_list .top_item .img_box {
    position: relative;
    background: url(./sc1_img.png) no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    aspect-ratio: 350 / 350;
    display: flex;
    padding: 20px;
;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}


.temp_sc1 {
  padding: 75px 0;
}

.headline_area {
  margin-bottom: 80px;
}

.headline {
    font-weight: 400;
    font-size: 42px;
    line-height: 1.4;
}

.emphasis {
    font-weight: 800;
}

.temp_sc1 .headline_area {
    text-align: center;
}

.underline {
    width: fit-content;
    position: relative;
    z-index: 1;
    margin: auto;
}

.underline::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    display: block;
    background: #b3f2ea;
    width: 100%;
    height: 40%;
    z-index: -1;
}
.sub_headline {
    font-weight: 400;
    font-size: 22px;
    line-height: 1.4;
    color: #1f1f1f;
    margin-bottom: 5px;
}

.temp_sc1 .con_area .top_list {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: repeat(2,1fr);
    gap: 35px;
}
.temp_sc1 .con_area .top_list .top_item {
    flex: 1;
    transition: 0.3s;
    position: relative;
}
.temp_sc1 .con_area .top_list .top_item a {
    display: block;
    width: 100%;
    height: 100%;
}
.temp_sc1 .con_area .top_list .top_item .img_box img {
    max-width: 70%;
    height: 100px;
}
.temp_sc1 .con_area .top_list .top_item .txt_box {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    font-size: 18px;
    line-height: 1.4;
    margin-top: 15px;
}
.temp_sc1 .con_area .top_list .top_item .txt_box .desc {

}
.temp_sc1 .con_area .top_list .top_item .title {
    font-size: 25px;
    font-weight: 800;
    line-height: 1.2;
    width: fit-content;
    text-align: center;
    color: #1e85b6;
    word-break: keep-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 1;
}

.temp_sc1 ::before {
    display: none;
}

@media (max-width: 1200px){
    .temp_sc1 .con_area .top_list {
    grid-template-columns: repeat(2,1fr);
}
}
@media (max-width: 767px){
.temp_sc1 .con_area .top_list .top_item .title {
    font-size: 23px;
}
.temp_sc1 .con_area .top_list .top_item .img_box img {
    height: 70px;
}
}

@media (max-width: 586px){
    .temp_sc1 .con_area .top_list {
    grid-template-columns: repeat(1,1fr);
}
.temp_sc1 .con_area .top_list .top_item .img_box img {
    height: 100px;
}
}