@charset "utf-8";
aside {
  max-width: 340px;
  min-width: 260px;
  padding-left: 20px;
}
.sideHead {
  font-weight: bold;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}
.sideHead.en {
  font-size: 22px;
}
.sideSec.sideSearchSec .sideHead {
  font-weight: 900;
}
.sideHead::before {
  content: '';
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
}
.sideSec.sideSearchSec .sideHead::before {
  width: 36px;
  height: 24px;
  background-image: url('../img/search.svg');
}
.sideSec.rankSec .sideHead::before {
  width: 36px;
  height: 24px;
  background-image: url(../img/rank.svg);
}
.sideSec.newSec .sideHead::before {
  width: 20px;
  height: 24px;
  background-image: url(../img/new.svg);
}
.sideSec.tagSec .sideHead::before {
  width: 24px;
  height: 24px;
  background-image: url('../img/keywords.svg');
}
.sideSec {
  margin-bottom: 60px;
}
.areaSide {
  background-color: #f6f6e9;
  border-radius: 10px;
  padding: 1.5rem 1rem;
}
.areaSide > ul > li:not(:last-child) {
  margin-bottom: 0.8rem;
  border-radius: 4px;
}
.sideSelectWrap > div:not(:last-child) {
  margin-bottom: 16px;
}
.sideSelectWrap select {
  width: 100%;
  height: 60px;
  padding: 0 24px;
  border-radius: 4px;
  background: #fff;
}
.sideSelectWrap select:focus {
  outline: none;
  box-shadow: none;
}
.sideSelectWrap button {
  border: none;
  cursor: pointer;
  color: #fff;
  background: #5a9f4e;
  display: flex;
  width: 100%;
  height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin-top: 24px;
}

.sideSelectWrap button span {
  font-weight: bold;
}

.sideSelectWrap > div > div:first-child {
  font-weight: bold;
  margin-bottom: 4px;
}
.sideSelectWrap > div > div:nth-child(2) {
  position: relative;
}
.sideSelectWrap > div > div:nth-child(2)::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: calc(50% - 3.5px);
  right: 16px;
  width: 11px;
  height: 7px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/arrow-select.svg);
}
.sideSelectWrap #search-button img {
  margin-right: 16px;
}
.catSide ul li a {
  display: flex;
  align-items: center;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.16);
  margin-bottom: 1.5rem;
  border-radius: 10px;
}
.catSide ul li a:hover {
  -webkit-animation: buttonHover 0.3s forwards;
  animation: buttonHover 0.3s forwards;
}
.catSide ul li a > div {
  width: 70%;
  text-align: center;
}
.catSide figure {
  background: #005792;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0;
}
.catSide figure img {
  padding: 0.5rem;
}
.articleSide li a {
  display: flex;
  margin-bottom: 20px;
}
.tagSec ul {
  display: flex;
  flex-wrap: wrap;
}
.tagSec ul li a {
  display: block;
  margin-right: 8px;
  margin-bottom: 8px;
  padding: 4px 8px;
  background: #fff;
  border-radius: 10px;
}
.articleSide li > span {
  font-weight: bold;
}
.articleSide a figure {
  max-width: 120px;
  margin-right: 8px;
}
.articleSide a figure img {
  aspect-ratio: 46 / 25;
  border-radius: 4px;
  object-fit: cover;
  width: 100%;
}
.articleSide li a > div {
  font-size: 14px;
}
.bannerSec {
  display: flex;
  justify-content: center;
  padding: 20px 35px;
  background: #d0dde9;
}
@media screen and (max-width: 768px) {
  aside {
    display: none;
  }

  .sideHead {
    font-size: clamp(1.875rem, 1.42rem + 2.27vw, 3.125rem);
  }
  .sideHead span:last-child {
    font-size: clamp(0.875rem, 0.757rem + 0.59vw, 1.125rem);
  }
  .areaSide {
    padding: 1.5rem 10%;
  }
  .areaSide .acHead {
    padding: 4% 1.5rem;
    font-size: clamp(1.125rem, 0.886rem + 1.02vw, 1.375rem);
  }
  .areaSide .acContent li {
    font-size: clamp(1rem, 0.761rem + 1.02vw, 1.25rem);
  }
  .areaSide .acContent li:last-child {
    margin-bottom: 0;
  }
  .areaSide .acContent li:not(:last-child) {
    margin-bottom: 0.5rem;
  }
  .areaSide .acContent li a {
    display: block;
    padding: 0.2rem;
  }
  .areaSide .acContent li:first-child {
    margin-top: 1rem;
  }
  .areaSide > ul > li:not(:last-child) {
    margin-bottom: 1rem;
  }
  .catSide ul li a > div {
    font-size: clamp(1rem, 0.523rem + 2.04vw, 1.5rem);
  }
}
