/*Section1*/
.section1 {
    position: relative;
    min-height: 100vh;
    position: relative;
    padding-bottom: 50px;
}
.newsTitle{
    width: 100%;
    padding: 50px 20px;
    border-bottom: 1px solid var(--darkGray);
    font-size: 5vw;
    font-weight: bold;
    margin-top: 80px;
}
.newsList{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
    padding: 50px 50px;
}
.aNews{
    display: flex;
    width: calc(33.3333% - 14px);
    aspect-ratio: 8 / 9;
    border: 1px solid var(--darkGray);
    border-radius: 10px;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding: 30px 30px;
    line-height: 1.2em;
    overflow: hidden;
}
.newsImg{
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
}
.newsImg img,
.newsImg video{
    width: 100%;
    object-fit: cover;
}
.newsDate{
    width: 100%;
    font-size: 12px;
    line-height: 1em;
    color: var(--lightGray);
}
.newsType{
    font-size: 10px;
    width: 65px;
    height: 25px;
    border-radius: 20px 20px;
    border: 1px solid var(--darkGray);
    display: flex;
    justify-content: center;
    align-items: center;
}
.newSetting{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}
.newsText{
    width: 100%;
    height: 32%;
    line-height: 1.5em;
    font-size: 20px;
    overflow: hidden;
}
.newsDetailTitle{
    font-size: 3vw;
    line-height: 1em;
}
.newsDetail{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--darkGray);
}
.newsDetailImg{
    width: 33.33%;
    border-right: 1px solid var(--darkGray);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
}
.newsDetailImg img,
.newsDetailImg video{
    width: 100%;
    object-fit: cover;
}

.newsDetaiContent{
    width: 66.66%;
    padding: 50px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    line-height: 1.5em;
}
.newsDetaiContent img{
    width: 90%;
}
.newsBtn{
    margin: 50px auto 0 auto;
}

/*////RWD////*/
@media screen and (max-width:1660px) {}

@media screen and (max-width:1440px) {}

@media screen and (max-width:1366px) {}

@media screen and (max-width:1280px) {
    .newsText {
        font-size: 14px;
    }
}

@media screen and (max-width:1024px) {
    .aNews {
        aspect-ratio: 5 / 6;
        padding: 20px 20px;
    }
   
    
}

@media (orientation:landscape) and (max-height:767px) {}

@media (orientation:portrait) and (max-height:1180px) {
    .aNews {
        width: calc(50% - 10px);
    }
    .newsDetailImg{
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--darkGray);
    }
    .newsDetaiContent{
        width: 100%;
    }
   
}

@media (orientation:portrait) and (max-height:1024px) {}

@media screen and (max-width:480px) {
    .newsTitle {
        padding: 35px 20px;
        font-size: 10vw;
        margin-top: 50px;
    }
    .newsList {
        padding: 20px 20px;
    }
    .aNews {
        aspect-ratio: 2 / 3;
        padding: 10px 10px;
    }
    .newsText {
        font-size: 12px;
    }
  
}

/*Iphone XR 414*896 */
@media (orientation: portrait) and (max-height:896px) {}

/*Iphone 12Pro 390*844 */
@media (orientation: portrait) and (max-height:844px) {}

@media (orientation: portrait) and (max-width:390px) {}

/*Iphone 10 375*812 */
@media (orientation: portrait) and (max-height:812px) {}

@media (orientation: portrait) and (max-width:375px) {}

/*Iphone 8Plus 414*736 */
@media (orientation: portrait) and (max-height:736px) {}

/*Iphone 8 375*667 */
@media (orientation: portrait) and (max-height:667px) {}

@media screen and (max-width:360px) {}

@media screen and (max-width:320px) {}