@charset "utf-8";

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Thin.woff2') format('woff2');
  font-weight: 100;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraLight.woff2') format('woff2');
  font-weight: 200;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Light.woff2') format('woff2');
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Black.woff2') format('woff2');
  font-weight: 900;
  font-display: swap;
}

:root {
  --color-wt: #FFFFFF;
  --color-black1: #000;
  --color-black3: #121212;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
input,
textarea,
select,
button,
table {
  font-family: 'Pretendard', sans-serif;
  font-size: 24px;
  word-break: keep-all;
  color: #222;
  line-height: 1.5;
  word-break: break-all;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  color: inherit;
}

ol,
ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

em {
  font-style: normal;
}


/* Helper Classes */
.no_style {
  margin: 0;
  padding: 0;
  border: 0;
  background: none
}

.text-right {
  text-align: right;
}

/* 1560px */
.container {
  width: 100%;
  max-width: 1600px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.main-header:hover {
  background: #fff;
}

.main-header:hover .container a {
  color: #111;
}

.main-header .logo-off {
  width: 185px;
  display: block;
}

.main-header:hover .logo-off {
  display: none;
}

.main-header .logo-on {
  display: none;
  width: 185px;
}

.main-header:hover .logo-on {
  display: block;
}

.main-header>.container {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header>.container a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.main-header>.container a:hover,
.main-header>.container a.add-color {
  font-weight: 700;
  color: #003F7C;
}

.main-header>.container a.university-link {
  width: 133px;
  height: 43px;
  border-radius: 100px;
  font-size: 16px;
  gap: 14px;
  background: rgba(0, 0, 0, 0.38);
}

.main-header .gnb-nav {
  display: flex;
  align-items: center;
  gap: 68px;
  color: var(--color-wt);
}

.main-header .gnb-nav ul {
  display: flex;
}

.main-header .gnb-nav ul li {
  width: 150px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-depth-nav {
  display: none;
  background: #fff;
  border-top: 1px solid #e2e2e2;
}

.pc-depth-nav.acc {
  display: block;
}

.pc-depth-nav .container>ul {
  display: flex;
  justify-content: flex-end;
}

.pc-depth-nav .container>ul>li {
  border-left: 1px solid #e2e2e2;
}

.pc-depth-nav .container>ul>li:last-child {
  border-right: 1px solid #e2e2e2;
}

.pc-depth-nav .container>ul li.pc-nav-list {
  display: flex;
  justify-content: center;
}

.pc-depth-nav .container>ul li.pc-nav-list a {
  display: block;
  width: 150px;
  font-size: 15px;
  color: #424242;
  padding: 12px 10px;
  text-align: center;
  line-height: 125%;
}

.pc-depth-nav .container>ul li.pc-nav-list a:hover {
  font-weight: 600;
  color: #222;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.is-open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 20px;
  border-bottom: 1px solid #E2E2E2;
  box-shadow: 0 8px 0 5px #F5F6F9;
}

.mobile-logo img {
  width: 144px;
  height: auto;
}

.mo-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.mobile-menu-top {
  padding: 20px;
  border-bottom: 1px solid #E6E6E6;
}

.mobile-university-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  background: #003F7C;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
}

.mobile-university-btn svg {
  width: 18px;
  height: 18px;
}

.mobile-menu-nav {
  padding: 0;
}

.mobile-menu-section {
  padding: 20px 20px 16px 20px;
  box-shadow: 0 8px 0 5px #F5F6F9;
  margin-top: 8px;
}

.mobile-menu-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 8px;
  background: none;
  border: none;
  font-size: 20px;
  font-weight: 700;
  color: #111;
  text-align: left;
  cursor: pointer;

}

.mobile-menu-section.is-open .mobile-menu-title {
  border-bottom: 1px solid #E2E2E2;
  padding: 4px 8px 12px 8px;
}

.mobile-menu-title:active {
  background: rgba(0, 0, 0, 0.03);
}

.mobile-menu-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  transition: transform 0.3s ease;
}

.mobile-menu-section.is-open .mobile-menu-arrow {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: none;
  padding: 0;
}

.mobile-submenu a {
  display: block;
  padding: 5px 8px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #424242;
}

.mobile-submenu a:first-child {
  padding-top: 12px;
}

.mobile-submenu a:last-child {
  padding-bottom: 0;
}

.mobile-submenu a:active {
  background: rgba(0, 0, 0, 0.03);
}

/* main-visual */
.main-visual {
  position: relative;
}

.slide-card-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 80px;
}

.slide-card-title h2 {
  width: 715px;
  font-size: 58px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--color-black3);
}

.slide-card-title p {
  width: 715px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-black3);
}

.video-bg {
  position: relative;
  line-height: 0;
}

.video-bg video {
  display: block;
  width: 100%;
  height: auto;
}

.video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

.main-visual .container {
  position: absolute;
  bottom: 15%;
  color: var(--color-wt);
  font-weight: 800;
  font-size: clamp(64px, 8vw, 122px);
  line-height: 1.3;
  z-index: 100;
  max-width: 100%;
}

.main-visual-cantainer {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.w-section {
  padding: 132px 0 0;
  position: relative;
  top: -100px;
  border-radius: 100px 100px 0 0;
  z-index: 110;
  background: var(--color-wt);
  overflow: hidden;
}

img.bg-text {
  position: absolute;
  z-index: -1;
}

img.bg-text.bg-text1 {
  right: 10px;
  bottom: 576px;
}

img.bg-text.bg-text2 {
  right: 0px;
  bottom: -16px;
  transform: translateX(211px);
}

.eulji-accordion {
  display: flex;
  gap: 14px;
  align-items: stretch;
}

.eulji-card {
  position: relative;
  display: block;
  flex: 1;
  min-width: 86px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: flex 520ms cubic-bezier(.2, .8, .2, 1),
    filter 520ms cubic-bezier(.2, .8, .2, 1),
    transform 520ms cubic-bezier(.2, .8, .2, 1),
    min-height 520ms cubic-bezier(.2, .8, .2, 1);
  filter: grayscale(1) contrast(1.05);
  height: 437px;
}

.eulji-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .32));
  pointer-events: none;
}

.eulji-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .22);
  opacity: .35;
  transition: opacity 520ms cubic-bezier(.2, .8, .2, 1);
  pointer-events: none;
}

.eulji-card__title {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 420ms ease, transform 420ms ease;
  white-space: nowrap;
  z-index: 2;
}

.eulji-card__vtitle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  color: #C5C5C5;
  font-weight: 700;
  font-size: 14px;
  opacity: 1;
  transition: opacity 260ms ease;
  z-index: 2;
  pointer-events: none;
  text-align: center;
  width: 80px;
}

.eulji-card__arrow {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 78px;
  height: 78px;
  background: #0b2c62;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 420ms ease, transform 420ms ease;
  z-index: 2;
}

.eulji-card__arrow img {
  width: 21px;
  height: 21px;
}

.eulji-card.is-active {
  flex: 6.2;
  filter: grayscale(0) contrast(1);
}

.eulji-card.is-active::after {
  opacity: .15;
}

.eulji-card.is-active .eulji-card__title {
  opacity: 1;
  transform: translateY(0);
}

.eulji-card.is-active .eulji-card__vtitle {
  opacity: 0;
}

.eulji-card.is-active .eulji-card__arrow {
  opacity: 1;
  transform: translateY(0);
}

.eulji-card:hover {
  filter: grayscale(.35) contrast(1.02);
}

.thumbnail-card-wrap {
  margin-top: 250px;
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.thumb-item {
  display: block;
  width: 100%;
  overflow: hidden;
}

.thumb-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
}

.thumb-item:hover img {
  transform: scale(1.04);
}

.thumb-item:focus-visible {
  outline: 3px solid rgba(11, 44, 98, .35);
  outline-offset: 4px;
}

.media-section {
  padding: 132px 0;
  background: linear-gradient(180deg, #1D2B38 0%, #061626 100%);
  color: #fff;
}

.media-head {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 46px;
}

.media-title {
  margin: 0;
  font-size: 58px;
  font-weight: 600;
  line-height: 1.4;
}

.media-title .mo-media-more {
  display: none;
}

.media-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(6px);
}

.media-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 160px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 400;
  color: #ABB0B5;
  transition: background 200ms ease, color 200ms ease;
  white-space: nowrap;
}

.media-tab.is-active {
  background: #00357A;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.media-more {
  margin-left: auto;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-wt);
  font-size: 24px;
  font-weight: 400;
}

.pc-media-more {
  display: inline-flex;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.media-panel[data-tab-panel="tab2"] .media-grid {
  grid-template-columns: repeat(3, 1fr);
}

.media-panel[data-tab-panel="tab2"] .media-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.media-panel[data-tab-panel="tab2"] .media-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.media-panel[data-tab-panel="tab2"] .media-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.media-card {
  display: block;
  color: inherit;
}

.media-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.media-meta {
  margin-top: 18px;
}

.media-card-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.media-card-date {
  margin-top: 12px;
  font-size: 15px;
  color: #787878;
  font-weight: 500;
  line-height: 1.4;
}

.media-panel {
  display: none;
}

.media-panel.is-active {
  display: block;
}

.news-area {
  padding: 140px 0 90px;
  background: #fff;
}

.news-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 80px;
}

.news-title {
  margin: 0;
  font-size: 58px;
  font-weight: 600;
  color: var(--color-black3);
}

.news-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 400;
  color: var(--color-black3);
  margin-top: auto;
}

.news-list {
  border-top: 1px solid var(--color-black1);
}

.news-row,
.news-list-data .als-item>a {
  display: grid;
  grid-template-columns: 160px 1fr 160px;
  align-items: center;
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid var(--color-black1);
}

.news-cat {
  font-size: 22px;
  font-weight: 600;
  color: #A9A9A9;
  line-height: 1.4;
  white-space: nowrap;
}

.news-text,
.txt_type1 {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-black1);
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-date,
.txt_type3 {
  justify-self: end;
  font-size: 15px;
  font-weight: 400;
  color: #787878;
  white-space: nowrap;
}

.value-video-area {
  padding: 0 0 40px;
  background: #fff;
}

.value-video {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.value-video .value-video__box {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.value-video__media {
  width: 100%;
  height: 500px;
  display: block;
  object-fit: cover;
}

.value-video .value-video__box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.value-video__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  padding: 0 40px;
}

.value-video__overlay p {
  margin: 0;
  color: #fff;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.site-footer {
  background: #0f0f0f;
  color: #fff;
  padding: 56px 0 54px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}

.footer-info {
  margin-top: 36px;
  color: var(--color-wt);
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.8;
}

.footer-info strong {
  color: var(--color-wt);
  font-weight: 600;
  margin-right: 12px;

}

.footer-info .gap {
  display: inline-block;
  width: 24px;
}

.footer-copy {
  margin-top: 20px;
  font-size: 14px;
  color: #ABABAB;
}

.footer-right {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 113px;
}

.footer-select {
  position: relative;
  width: 260px;
}

.footer-select-btn {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px 0 14px;
  border-bottom: 1px solid #E6E6E6;
  color: var(--color-wt);
  font-size: 14px;
  font-weight: 400;
}

.footer-select-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 200ms ease;
}

.footer-select[data-open="true"] .footer-select-ico {
  transform: rotate(180deg);
}

.footer-select-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  top: auto;
  width: 100%;
  background: rgba(20, 20, 20, .98);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  padding: 10px 0;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
  display: none;
  z-index: 99;
}

.footer-select[data-open="true"] .footer-select-menu {
  display: block;
}

.footer-select-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--color-wt);
}

.footer-select-menu a:hover {
  background: rgba(255, 255, 255, .08);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: var(--color-wt);
}

.footer-links a {
  font-weight: 500;
  opacity: 0.5;
}

.footer-links a.is-strong {
  font-weight: 500;
  opacity: 1;
}

br.m-br {
  display: none;
}

.footer-left>a {
  display: block;
}

.footer-left>a>img {
  width: 185px;
}

.main-header>.container a.mo-menu {
  display: none;
}


@media (max-width: 1200px) {

  .news-row,
  .news-list-data .als-item>a {
    grid-template-columns: 120px 1fr 120px;
  }

  .value-video__media {
    height: 420px;
  }

  .value-video__overlay p {
    font-size: 34px;
  }

  .media-head {
    flex-wrap: wrap;
  }

  .thumb-grid {
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .main-visual-cantainer {
    text-align: center;
  }

  .main-visual-cantainer>p {
    display: inline;
  }

  .main-visual .container {
    bottom: 25%;
    color: var(--color-wt);
    font-weight: 800;
    font-size: 28px;
    line-height: 1.3;
    z-index: 100;
    max-width: 100%;
  }

  .w-section {
    padding: 62px 0 0;
    border-radius: 40px 40px 0 0;
  }

  .slide-card-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .slide-card-title h2 {
    width: 100%;
    font-size: 28px;
  }

  .slide-card-title p {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
  }

  .main-header .gnb-nav {
    display: none;
  }

  .video-bg {
    position: relative;
    line-height: 0;
    height: 620px;
    overflow: hidden;
  }

  .video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    width: 100%;
    align-items: flex-start;
    gap: 26px;
    margin-left: 0;
  }

  .footer-select {
    width: 100%;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .thumb-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .thumbnail-card-wrap {
    margin-top: 62px;
  }

  .eulji-accordion {
    flex-direction: column;
    height: auto;
  }

  .eulji-card {
    min-width: auto;
    min-height: 86px;
  }

  .eulji-card.is-active {
    min-height: 320px;
  }

  .news-head {
    align-items: center;
    margin-bottom: 34px;
  }

  .news-more {
    padding-top: 0;
    margin: 0;
    font-size: 18px;
  }

  .news-row,
  .news-list-data .als-item>a {
    gap: 10px 16px;
    padding: 18px 0;
  }

  .news-date {
    grid-column: 2 / 3;
    justify-self: start;
  }

  .news-text {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .value-video__media {
    height: 340px;
  }

  .value-video__overlay p {
    font-size: 26px;
  }

  .als-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-header>.container a.mo-menu {
    display: block;
  }

  .pc-depth-nav {
    display: none !important;
  }

  .main-header .logo-off {
    width: 144px;
  }

  .main-header .logo-on {
    width: 144px;
  }

  .main-header:hover {
    background: none;
  }

  .main-header:hover .logo-on {
    display: none;
  }

  .main-header:hover .logo-off {
    display: block;
  }

  .news-text,
  .txt_type1 {
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 700px) {
  .main-visual-cantainer {
    text-align: left;
  }

  .main-visual-cantainer>p {
    display: block;
  }

  .media-more {
    font-size: 18px;
  }

  .media-title {
    font-size: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .media-title .mo-media-more {
    display: flex;
    margin: 0;
  }

  .pc-media-more {
    display: none;
  }

  .media-tabs {
    width: 100%;
    justify-content: space-between;
    background: none;
    gap: 0px;
    padding: 0px;
  }

  .media-tab {
    flex: 1;
    font-size: 16px;
  }

  .thumb-grid {
    grid-template-columns: 1fr;
  }

  .media-card+.media-card {
    display: none;
  }

  .als-wrapper {
    grid-template-columns: 1fr;
  }

  .media-tab.is-active {
    font-size: 16px;
    font-weight: 500;
  }

  .media-section {
    padding: 62px 0;
  }

  .news-area {
    padding: 62px 0 62px;
  }

  .value-video-area {
    padding: 0px;
  }

  .value-video {
    padding: 0px;
  }

  .news-title {
    font-size: 28px;
  }

  .news-row,
  .news-list-data .als-item>a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 12px;
  }

  br.m-br {
    display: block;
  }

  .footer-info {
    font-size: 14px;
  }

  .footer-copy {
    font-size: 13px;
  }

  .site-footer {
    padding: 52px 0;
  }

  .footer-left>a>img {
    width: 144px;
  }

  .media-grid {
    display: block;
  }
}

.news-list-data>div {
  display: none;
}

.news-list-data ul>.als-item a span.txt_type2 {
  display: none;
}

.news-list-data .als-item:first-child {
  border-top: 1px solid #000;
}


.als-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 34px;
}

.als-wrapper .als-item a {
  display: block;
  color: inherit;
}

.als-wrapper .als-item span img {
  width: 100% !important;
  max-width: 220px !important;
  height: auto !important;
  display: block !important;
  margin: 0 auto;
}

.als-wrapper .txt_type1 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
  margin-bottom: 10px;
}

.als-wrapper .txt_type3 {
  display: block;
  margin-top: 12px;
  font-size: 15px;
  color: #787878;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 1024px) {
  .als-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
  }
}

@media (max-width: 768px) {
  .als-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
  }
}

@media (max-width: 600px) {
  .als-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.mobile-subsubmenu.is-static {
  display: block;
  padding: 2px 0 10px;
}

.mobile-subsubmenu.is-static a {
  display: block;
  padding: 6px 8px 6px 20px;
  font-size: 14px;
  color: #555;
  position: relative;
}

.mobile-subsubmenu.is-static a::before {
  content: "-";
  position: absolute;
  left: 8px;
  top: 6px;
  color: #999;
}

.mobile-submenu a.non-target {
  cursor: default;
  pointer-events: none;
}

.main-header.is-fixed {
  background: #fff;
}

.main-header.is-fixed .container a {
  color: #111;
}

.main-header.is-fixed .logo-off {
  display: none;
}

.main-header.is-fixed .logo-on {
  display: block;
}

.mo-menu .ham-on {
  display: none;
}

.mo-menu .ham-off {
  display: block;
}

.main-header.is-fixed .mo-menu .ham-off {
  display: none;
}

.main-header.is-fixed .mo-menu .ham-on {
  display: block;
}