#header a {
  line-height: 1;
  box-sizing: border-box;
}
#header .hdlogo h1 {
  display: flex;
  align-items: center;
  justify-content: center;
}
#header_wrap {
  transition: 0.3s all ease-out;
}
#header_wrap li.hdmenu {
  letter-spacing: 0.5px;
}
#header_wrap.small {
  padding: 0;
}
#header_wrap.small li.hdlogo {
  width: 91px;
  min-width: 91px;
  height: 40px;
  margin-top: 0;
  background-size: contain;
}
#header_wrap.small li.hdlogo a {
  display: block;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  color: transparent;
}
#header_wrap.small li.hdmenu {
  margin-right: 22px;
  margin-top: 2px;
}
#header_wrap.small li.hdmenu a {
  font-size: 12px;
  padding: 15px 10px;
}
#header_wrap.small li.hdmenu_instagram {
  margin-right: 16px;
  margin-left: 5px;
}

.hdmenu_youtube a, .hdmenu_instagram a {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  width: 100%;
  height: 24px;
  padding: 0;
}
.hdmenu_youtube {
  width: 90px;
  margin-right: 0;
}
.hdmenu_youtube a {
  background-image: url("../../images/icon_youtube.png");
}
.hdmenu_instagram {
  width: 20px;
  margin-right: 8px;
  margin-left: 30px;
}
.hdmenu_instagram a {
  background-image: url("../../images/icon_instagram.png");
}

.menu_cat_list {
  position: relative;
  z-index: 1000;
}
.menu_cat_list a {
  color: #fff;
  text-decoration: none;
}
.menu_cat_list > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .menu_cat_list > ul {
    gap: 16px 4px;
    font-size: 14px;
    position: relative;
    padding-bottom: 32px;
  }
}
.menu_cat_list > ul > li {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 480px) {
  .menu_cat_list > ul > li {
    position: static;
  }
}
.menu_cat_list > ul > li > a,
.menu_cat_list > ul > li > span {
  border: solid 1px #fff;
  padding: 5px 1em;
  border-radius: 5px;
  background-color: #000;
}
.menu_cat_list > ul > li > a:hover,
.menu_cat_list > ul > li > span:hover {
  cursor: pointer;
  opacity: 0.6;
}
@media screen and (max-width: 480px) {
  .menu_cat_list > ul > li > a,
  .menu_cat_list > ul > li > span {
    font-size: 14px;
    padding: 4px 8px;
  }
}
.menu_cat_list > ul > li.current > a,
.menu_cat_list > ul > li.current > span {
  background-color: #fff;
  color: #000;
}
.menu_cat_list > ul > li .menu_sub {
  position: absolute;
  top: calc(1em + 8px + 16px);
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  transform-origin: 50% 0;
  transform: scale(1, 0);
  opacity: 0;
  transition: 0.3s all ease-out;
}
@media screen and (max-width: 480px) {
  .menu_cat_list > ul > li .menu_sub {
    left: 0;
    top: calc((1em + 8px + 16px) * 2);
  }
}
.menu_cat_list > ul > li .menu_sub li,
.menu_cat_list > ul > li .menu_sub a {
  margin: 0;
}
.menu_cat_list > ul > li .menu_sub a {
  background-color: #000;
  color: #a09d9d;
  padding: 5px 1em;
  border-radius: 5px;
  font-size: 90%;
  border: solid 1px #a09d9d;
  background-color: #000;
}
.menu_cat_list > ul > li .menu_sub a:hover {
  opacity: 1;
  color: #fff;
  border-color: #fff;
}
.menu_cat_list > ul > li .menu_sub.active {
  transform: scale(1);
  opacity: 1;
  z-index: 2;
}
.menu_cat_list > ul > li .menu_sub li.current a {
  border-color: #fff;
  color: #fff;
}

#content_archive {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 32px;
}

.archive_card {
  width: calc((100% - 32px) / 2);
  position: relative;
}
@media screen and (max-width: 480px) {
  .archive_card {
    width: 100%;
  }
}
.archive_card a {
  color: #fff;
  text-decoration: none;
}
.archive_card_thum {
  aspect-ratio: 1.618/1;
  overflow: hidden;
}
.archive_card_thum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.archive_card_author {
  position: absolute;
  z-index: 1;
  top: 8px;
  left: 8px;
  text-shadow: 1px 1.2px 3px rgba(0, 0, 0, 0.7);
}
.archive_card_info {
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
  align-items: center;
  gap: 4px 16px;
}
.archive_card_date, .archive_card_cat {
  font-size: 90%;
  color: #a09d9d;
  line-height: 1;
}
.archive_card_date {
  padding-top: 4px;
}
.archive_card_cat {
  border: solid 1px #a09d9d;
  padding: 4px 1em;
  border-radius: 5px;
}
.archive_card_title {
  width: 100%;
}