@media screen and (min-width: 576px) {
  main #MainContener {
    width: 100vw;
    padding-top: 11.5vh;
  }
}
@media screen and (max-width: 575px) {
  main #MainContener {
    width: 100%;
    padding: 9vh 0px 0px 0px;
  }
  main #MainContener .news-area {
    padding: 0vh 16px 0px 16px;
  }
  main #MainContener .contact-area {
    padding: 0vh 16px 0px 16px;
  }
}
@media (min-width: 576px) {
  .news_info_title {
    width: 100vw;
    padding: 0 2%;
  }
  .news_info_title .title-area {
    width: 100%;
    display: flex;
    align-items: baseline;
    margin: 1% 0;
  }
  .news_info_title .title-area .c-title {
    font-size: 130px;
    font-weight: 100;
    letter-spacing: 3px;
    line-height: 210%;
    color: var(--primary-color);
  }
  .news_info_title .title-area .sub-title {
    margin-left: 2%;
    font-size: 20px;
    font-weight: 180;
    color: var(--primary-color);
  }
  .news_info_title .title-image {
    height: 45vh;
    width: 100%;
  }
  .news_info_title .title-image img {
    border-radius: 20px;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .news-contents {
    width: 100vw;
    display: flex;
    justify-content: center;
  }
  .news-contents .news-content-container {
    width: 60%;
    margin: 15%;
  }
  .news-contents .news-content-container .news {
    margin: 2% 0;
    height: 15vh;
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: solid rgba(211, 222, 235, 0.3) 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
  }
  .news-contents .news-content-container .news:hover {
    background-color: rgba(40, 51, 70, 0.05);
    transform: translateX(5px);
  }
  .news-contents .news-content-container .news:hover .arrow {
    background-color: #283346;
    border-color: #283346;
  }
  .news-contents .news-content-container .news:hover .arrow span {
    color: var(--base-color);
    transform: translateX(3px);
  }
  .news-contents .news-content-container .news:active {
    transform: translateX(2px);
  }
  .news-contents .news-content-container .news time {
    font-size: 14px;
    color: #737F8E;
    font-weight: 150;
    width: 110px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
  }
  .news-contents .news-content-container .news h3 {
    margin-left: 20px;
    font-size: 16px;
    font-weight: 280;
    width: 360px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    color: var(--secondary-color);
  }
  .news-contents .news-content-container .news .arrow {
    margin-left: 35%;
    width: 75px;
    height: 25px;
    border: solid rgba(211, 222, 235, 0.3) 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    transition: all 0.3s ease;
  }
  .news-contents .news-content-container .news .arrow span {
    width: 75px;
    height: 25px;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #737F8E;
    transition: all 0.3s ease;
  }
}
@media (max-width: 575px) {
  .news_info_title {
    width: 100%;
    padding: 0 3%;
    margin-bottom: 15%;
  }
  .news_info_title .title-area {
    width: 100%;
    display: flex;
    align-items: baseline;
    margin: 1% 0;
  }
  .news_info_title .title-area .c-title {
    font-size: 70px;
    font-weight: 100;
    letter-spacing: 3px;
    line-height: 210%;
    color: var(--primary-color);
  }
  .news_info_title .title-area .sub-title {
    margin-left: 2%;
    font-size: 17px;
    font-weight: 180;
    color: var(--primary-color);
  }
  .news_info_title .title-image {
    height: 33vh;
    width: 100%;
  }
  .news_info_title .title-image img {
    border-radius: 20px;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .news-contents {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 50%;
  }
  .news-contents .news-content-container {
    width: 95%;
  }
  .news-contents .news-content-container .news {
    padding: 2% 0;
    height: 10vh;
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: solid rgba(211, 222, 235, 0.3) 1px;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
  }
  .news-contents .news-content-container .news:hover {
    background-color: rgba(40, 51, 70, 0.05);
    transform: translateX(5px);
  }
  .news-contents .news-content-container .news:hover .arrow {
    background-color: #283346;
    border-color: #283346;
  }
  .news-contents .news-content-container .news:hover .arrow span {
    color: var(--base-color);
    transform: translateX(3px);
  }
  .news-contents .news-content-container .news:active {
    transform: translateX(2px);
  }
  .news-contents .news-content-container .news time {
    font-size: 12px;
    color: #737F8E;
    font-weight: 150;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
  }
  .news-contents .news-content-container .news h3 {
    margin-left: 8%;
    font-size: 13px;
    font-weight: 280;
    width: 200px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
  }
  .news-contents .news-content-container .news .arrow {
    width: 75px;
    height: 25px;
    border: solid rgba(211, 222, 235, 0.3) 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    transition: all 0.3s ease;
  }
  .news-contents .news-content-container .news .arrow span {
    width: 75px;
    height: 25px;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #737F8E;
    transition: all 0.3s ease;
  }
} /*# sourceMappingURL=style.css.map */