/* ----------------------------------------news_top---------------------------------------- */
#news_top {
  padding: 0;
}

#news_top .inner {
  --sub: 15em;
  --gap: 2em;
  gap: var(--gap);
}

#news_top .sub {
  width: var(--sub);
}

#news_top .main {
  width: calc(100% - var(--sub) - var(--gap));
}

#news_top .main .lists {
  --num: 3;
  --gap: 2em;
  gap: var(--gap);
}

#news_top .main .lists a {
  width: calc(100% / var(--num) - var(--gap) * (var(--num) - 1) / var(--num));
  padding: 1em;
  border-radius: 0.5em;
  transition: ease-in 0.2s;
}

#news_top .main .lists a.news:hover {
  box-shadow: 0 0 1em #81C0E9;
}

#news_top .main .lists a.journal:hover {
  box-shadow: 0 0 1em #E97C00;
}

#news_top .main .lists a .img {
  position: relative;
}

#news_top .main .lists a .img:before {
  content: "";
  position: absolute;
  top: 0;
  width: 0.75em;
  height: 1.83em;
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 0% 100%);
}

#news_top .main .lists a.journal .img:before {
  right: 5.84em;
  background-color: #E97C00;
}

#news_top .main .lists a.news .img:before {
  right: 4.03em;
  background-color: #81C0E9;
}

#news_top .main .lists a .img:after {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--bg-color);
  font-weight: bold;
  padding: 0 0.5em 0 0.5em;
}

#news_top .main .lists a.journal .img:after {
  content: "JOURNAL";
  background-color: #E97C00;
}

#news_top .main .lists a.news .img:after {
  content: "NEWS";
  background-color: #81C0E9;
}

#news_top .main .lists a .img img,
#news_top .main .lists a .img .empty {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  background-color: #888888;
}

#news_top .main .lists a .info {
  font-size: 0.875em;
  margin: 0.5em auto;
}

#news_top .main .lists a.journal .info {
  color: #E97C00;
}

#news_top .main .lists a.news .info {
  color: #81C0E9;
}

#news_top .main .lists a .info span {
  display: inline-block;
  padding: 0.2em 1em;
}

#news_top .main .lists a.journal .info .tag {
  border: 1px solid #E97C00;
}

#news_top .main .lists a.news .info .tag {
  border: 1px solid #81C0E9;
}

#news_top .main .lists a h3 {
  font-size: 1em;
  margin: 0.5em auto;
}

#news_top .main .lists a .more {}

#news_top .main .lists a .more svg {}

#news_top .main .lists a.journal .more svg {
  fill: #E97C00;
}

#news_top .main .lists a.news .more svg {
  fill: #81C0E9;
}

#news_top .main .lists a.journal .flex_arrow span.arrow {
  background-color: #E97C00;
}

#news_top .main .lists a.news .flex_arrow span.arrow {
  background-color: #81C0E9;
}

#news_top .main .lists a.journal .flex_arrow span.arrow:before,
#news_top .main .lists a.journal .flex_arrow span.arrow:after {
  background-color: #E97C00;
}

#news_top .main .lists a.news .flex_arrow span.arrow:before,
#news_top .main .lists a.news .flex_arrow span.arrow:after {
  background-color: #81C0E9;
}

@media screen and (max-width: 768px) {
  #news_top .sub {
    width: 100%;
    margin: 2em auto 0;
  }

  #news_top .main {
    width: 100%;
    padding: 0 var(--side-padding);
  }

  #news_top .main .lists {
    --num: 2;
    --gap: 2em;
  }

  #news_top .main .lists a.news .img:before {
    right: 3.93em;
  }

  #news_top .main .lists a.journal .img:before {
    right: 5.7em;
  }

  #news_top .main .lists a .img:before {
    height: 1.8em;
  }
}

/* ----------------------------------------single---------------------------------------- */
#single {
  padding: 0;
}

#single .inner {
  --sub: 15em;
  --gap: 2em;
  gap: var(--gap);
}

#single .sub {
  width: var(--sub);
}

#single .main {
  width: calc(100% - var(--sub) - var(--gap));
}

#single .single {}

#single .single h1 {
  margin: 0 auto 1em;
}

#single .single .tag {
  margin: 0 auto 1em;
}

#single .single .tag span {
  display: inline-block;
  padding: 0.2em 1em;
  color: #E97C00;
  border: 1px solid #E97C00;
}

#single .single .date {
  color: #E97C00;
  margin: 0 auto 1em;
}

#single .single .top {
  margin: 0 auto 1em;
}

#single .single .top img {
  width: 100%;
}

#single .single .top .empty {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  background-color: #888888;
}

#single .single .content {}

#single .single .content>*:not(:last-child) {
  margin: 0 auto 1em;
}

#single .single .content h1 {
  font-size: 1.5em;
}

#single .single .content h2 {}

#single .single .content h3 {}

#single .single .content p {}

#single .single .content ul {}

#single .single .content ul li {}

@media screen and (max-width: 768px) {
  #single .inner {
    --sub: 100%;
  }

  #single .main {
    width: 100%;
    padding: 0 var(--side-padding);
  }
}
