@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

html,
body {
  position: relative;
  z-index: 0;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: auto;
  word-break: break-word;
  font-display: swap;
  font-size: 16px;
  font-size: 25%;
  font-weight: 400;
  background: #060404;
  line-height: 2;
  font-family: Geologica, Noto Sans JP, メイリオ, sans-serif;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  overflow-y: visible;
}
@media screen and (min-width: 1000px) {
  html,
  body {
    overflow: visible;
  }
}
html.no-scroll,
body.no-scroll {
  overflow-x: hidden;
  overflow-y: hidden;
}

main {
  font-size: 3.25rem;
  min-height: 100svh;
  padding: 18rem 0 0;
  background: #fafafa;
}
@media screen and (min-width: 1000px) {
  main {
    font-size: 3.5rem;
    padding: 0;
  }
}
main.is_post {
  background: #ffffff;
}

._header {
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18rem;
  width: 100%;
  background: #060404;
  color: #ffffff;
  padding: 0 2.5vw;
  font-size: 3rem;
  z-index: 9999;
}
@media screen and (min-width: 1000px) {
  ._header {
    padding: 0 10rem;
    position: sticky;
  }
}
._header .row {
  position: relative;
  display: grid;
  grid-template-columns: 100%;
  align-items: center;
  width: 100%;
  height: 100%;
}
._header .row > *:not(.logo, .hamburger, .hamburger_menus) {
  display: none;
}
@media screen and (min-width: 1000px) {
  ._header .row {
    grid-template-columns: repeat(3, 1fr);
  }
  ._header .row > *:not(.logo) {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  ._header .row {
    grid-template-columns: repeat(3, 1fr);
  }
}
._header .site-name {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 100%;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  pointer-events: none;
}
._header .logo {
  position: relative;
  width: 35rem;
  height: 100%;
  margin: 0.75rem 0 0;
  transition: 0.2s;
  filter: invert(1);
  margin: 0 2rem 0 0;
  justify-self: center;
}
@media screen and (min-width: 1000px) {
  ._header .logo {
    justify-self: unset;
    margin: 0;
  }
}
._header .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
._header .menu-item {
  text-align: center;
}
._header .menu-item > a::before {
  content: attr(data-desc);
  font-size: 2rem;
  display: block;
}

.menu-header-container {
  display: none;
  /*@include xls() {
      display: block;
  }*/
}
.menu-header-container .menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2em;
  line-height: 1.5;
}

.hamburger_menus {
  display: block;
  transition: 0.2s;
  transform: translate3d(100%, 0, 0);
  position: absolute;
  top: 100%;
  right: -2.5vw;
  width: min(85vw, 100rem);
  height: calc(100vh - 18rem);
  background: #323232;
  padding: 6rem 8rem 10rem;
  overflow-y: auto;
}
.hamburger_menus.open {
  /*display: block !important;
  opacity: 1;*/
  transform: translate3d(0, 0, 0);
}
@media screen and (min-width: 1000px) {
  .hamburger_menus {
    display: none !important;
  }
}
.hamburger_menus .menu {
  margin: 7.5rem 0;
  padding: 0 5rem 0 0;
}
.hamburger_menus .menu-item {
  font-size: 2em;
  font-weight: 600;
  text-align: right;
  padding: 1rem 0;
}
.hamburger_menus .menu-item > a {
  text-transform: uppercase;
}
.hamburger_menus .post-container {
  margin: 10rem -8rem 0 0;
  width: calc(100% + 8rem);
  padding: 0 8rem 0 0;
}
.hamburger_menus .post-container .posts {
  display: flex !important;
  gap: 4rem !important;
}
.hamburger_menus .post-container .post {
  width: min(50vw, 70rem);
}

.hamburger {
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  display: block;
  width: 7rem;
  height: 5rem;
}
@media screen and (min-width: 1000px) {
  .hamburger {
    display: none !important;
  }
}
.hamburger .wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.hamburger span {
  position: absolute;
  right: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: 0.3s;
}
.hamburger span:nth-child(1) {
  top: 0;
  transform-origin: right;
}
.hamburger span:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.hamburger span:nth-child(3) {
  bottom: 0;
  transform-origin: right;
}
.hamburger.active span:nth-child(1) {
  top: -0.5px;
  transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  bottom: -0.5px;
  transform: rotate(45deg);
}

._footer {
  background: #060404;
  color: #ffffff;
  font-size: 3rem;
}
._footer .wrap {
  padding: 10rem 5vw 7rem;
}
._footer .menu {
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 3em;
  text-transform: uppercase;
}
._footer .cc {
  text-align: center;
  margin: 8rem auto 0;
}
._footer .searchform {
  width: min(100%, 150rem);
}

.footer_ttl {
  font-size: 8rem;
  font-weight: 800;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  .footer_ttl {
    font-size: 10rem;
    text-align: left;
  }
}

.footer-container {
  display: flex;
  flex-flow: column nowrap;
  gap: 5rem;
}
@media screen and (min-width: 1000px) {
  .footer-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
  .footer-container #footer-menu {
    grid-column: span 2;
  }
}

.search {
  width: 100%;
}
.search .post_tags {
  margin: 0 0 2rem;
}

.searchform {
  position: relative;
  width: 100%;
  color: #060404;
}
.searchform > input {
  background: #ffffff;
  width: 100%;
  padding: 0.5em 2em;
  border-radius: 999px;
}
.searchform .searchsubmit {
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}
.searchform .searchsubmit::before {
  font-family: "Material Icons";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga";
  content: "search";
  font-size: 5rem;
}

.sns-icons {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  gap: 1em;
}
@media screen and (min-width: 1000px) {
  .sns-icons {
    justify-content: flex-start;
  }
}
.sns-icons .icon {
  position: relative;
  display: inline-block;
  width: 10rem;
  height: 10rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  border: 2px solid;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 50%;
}
.sns-icons .icon.x {
  background-image: url(../img/icon/sns/x.png);
}
.sns-icons .icon.insta {
  background-image: url(../img/icon/sns/Instagram.png);
}
.sns-icons .icon.tiktok {
  background-image: url(../img/icon/sns/tiktok.png);
  background-size: 80%;
}

#footer-menu {
  margin: 6rem 0 0;
}
#footer-menu .menu-item {
  border-bottom: 1px solid;
}
#footer-menu .menu-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-flow: row nowrap;
  padding: 0 1rem;
  font-size: 8rem;
  font-weight: 800;
}
@media screen and (min-width: 1000px) {
  #footer-menu .menu-item > a {
    font-size: 10rem;
  }
}
#footer-menu .menu-item > a::after {
  content: "»";
}

._sec {
  position: relative;
  display: block;
}
._sec:has(.wrap) {
  padding: 10rem 5vw;
}
@media screen and (min-width: 1000px) {
  ._sec:has(.wrap) {
    padding: 15rem 7.5vw;
  }
}
._sec .wrap {
  display: block;
  margin: 0 auto;
  width: min(100%, 1400px);
}
._sec.post-contents .wrap, ._sec.post-parts .wrap {
  width: min(100%, 1000px);
}
._sec.post-parts {
  padding-top: 0;
}
._sec:last-of-type {
  padding-bottom: 15rem;
}
@media screen and (min-width: 1000px) {
  ._sec:last-of-type {
    padding-bottom: 20rem;
  }
}

.sec-ttl {
  position: relative;
  display: flex;
  flex-flow: column wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 0 6rem;
  border-bottom: 2px solid #060404;
  margin: 0 auto 10rem;
  padding: 0 2rem 2rem;
  line-height: 1.2;
}
.sec-ttl.label {
  background: #060404;
  color: #ffffff;
  padding: 4rem 2rem 2rem;
  border-radius: 1rem;
  align-items: center;
}
.sec-ttl .sec-ttl_sub {
  font-size: 8rem;
  font-weight: 800;
}
@media screen and (min-width: 1000px) {
  .sec-ttl .sec-ttl_sub {
    font-size: 10rem;
  }
}
.sec-ttl .sec-ttl_main {
  font-size: 3.5rem;
  font-weight: 600;
  padding: 0 0 0 0.25rem;
}
@media screen and (min-width: 1000px) {
  .sec-ttl .sec-ttl_main {
    font-size: 4rem;
  }
}

.post-ttl {
  margin: 0 auto 4rem;
}
@media screen and (min-width: 1000px) {
  .post-ttl {
    margin: 0 auto 5rem;
  }
}

.t-upper {
  text-transform: uppercase;
}

.post-items {
  margin: 0 auto 8rem;
}
@media screen and (min-width: 1000px) {
  .post-items {
    margin: 0 auto 10rem;
  }
}
.post-items .row {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
}

.page-nate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  margin: 10rem 0 0;
}
@media screen and (min-width: 1000px) {
  .page-nate {
    gap: 2em;
  }
}
.page-nate .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 3em;
  height: 3em;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 2rem;
}
.page-nate .page-numbers:not(.dots) {
  background: #060404;
  color: #ffffff;
  border-radius: 1rem;
}
.page-nate .page-numbers.current {
  background: #ffffff;
  color: #060404;
  border: 1px solid #808080;
}

/*.post-contents {

    img {
        /*margin: 0 auto 8rem;
        @include pc() {
            margin: 0 auto 10rem;
        }
    }
}*/
.post-contents_body {
  position: relative;
  display: block;
}
.post-contents_body > h2,
.post-contents_body > h3 {
  display: block;
  line-height: 1.4;
  font-weight: 700;
}
.post-contents_body > h2 {
  font-size: 6rem;
  margin: 8rem 0 0;
}
@media screen and (min-width: 1000px) {
  .post-contents_body > h2 {
    font-size: 8rem;
  }
}
.post-contents_body > h3 {
  font-size: 4.5rem;
  margin: 8rem 0 1em;
}
@media screen and (min-width: 1000px) {
  .post-contents_body > h3 {
    font-size: 6rem;
  }
}
.post-contents_body h2 + h3,
.post-contents_body h3 + h2 {
  margin: 1rem 0 1em;
}
.post-contents_body h2 + p {
  margin-top: 8rem;
}
.post-contents_body p + h2 {
  margin-top: 1.5em;
}
.post-contents_body > p {
  line-height: 1.75;
  margin: 1.75em 0 1.75em;
}
.post-contents_body .post_shop-link > a {
  display: block;
  margin: 10rem auto 8rem;
  font-size: 4rem;
  font-weight: 600;
  color: #ffffff;
  background: #060404;
  text-align: center;
  border-radius: 1rem;
  padding: 1em;
}
@media screen and (min-width: 1000px) {
  .post-contents_body .post_shop-link > a {
    margin: 20rem auto 8rem;
  }
}

.newarrival-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.newarrival-slider .new-arrival_items {
  width: 100%;
}
.newarrival-slider .item {
  position: relative;
}
.newarrival-slider .item_link {
  position: relative;
  display: grid;
  grid-template-columns: 100%;
  align-items: stretch;
  gap: 0;
}
.newarrival-slider .item_link > * {
  grid-row: 1;
  grid-column: 1;
}
.newarrival-slider .item_tag {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #060404;
  font-size: 2rem;
  line-height: 1;
  background: #060404;
  color: #ffffff;
  padding: 0.7em 1.5em 0.6em;
  border-radius: 999px;
  z-index: 1;
}
.newarrival-slider .item_tag > span {
  line-height: 1;
}
@media screen and (min-width: 1000px) {
  .newarrival-slider .item_tag {
    font-size: 3rem;
  }
}
.newarrival-slider .item_contents {
  font-size: 2rem;
  line-height: 1.2;
  color: #414141;
  width: 100%;
  padding: 1em;
  align-self: end;
  z-index: 1;
}
@media screen and (min-width: 1000px) {
  .newarrival-slider .item_contents {
    font-size: 3rem;
  }
}
.newarrival-slider .item_img {
  padding: 2rem;
  background: #ffffff;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
@media screen and (min-width: 1000px) {
  .newarrival-slider .item_img {
    padding: 5rem;
  }
}

.fv {
  height: calc(85svh - 18rem);
}
@media screen and (min-width: 1000px) {
  .fv {
    height: calc(75svh - 18rem);
  }
}

.topics-slider {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.topics-slider .posts {
  display: flex;
  gap: 0;
}
.topics-slider .post {
  width: 100%;
  height: 100%;
  color: #ffffff;
}
.topics-slider .post .post_link {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 100%;
  align-items: end;
  width: 100%;
  height: 100%;
}
.topics-slider .post .post_link > * {
  grid-row: 1;
  grid-column: 1;
}
.topics-slider .post img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  transition: 0.5s;
}
.topics-slider .post:not(.swiper-slide-active) img {
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  filter: blur(5px);
  -webkit-filter: blur(5px);
}
.topics-slider .post_ttl {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 1000px) {
  .topics-slider .post_ttl {
    font-size: 6rem;
  }
}
.topics-slider .post_contents {
  position: relative;
  overflow: hidden;
  width: 90%;
  margin: 0 auto;
  padding: 2em;
  transition: 0.3s;
  /*&::before {
      position: absolute;
      left: 0;
      bottom: 0;
      content: "";
      display: block;
      width: 100%;
      height: 0;
      background: $body_light;
      z-index: -1;
      transition: .5s;
  }*/
}
.topics-slider .swiper-slide-active {
  /*.post_ttl {
      font-size: 7rem;
  }*/
}
.topics-slider .swiper-slide-active .post_contents {
  color: #060404;
  border-radius: 2rem 2rem 0 0;
  background: #fafafa;
  box-shadow: 0 4px 37px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 1000px) {
  .topics-slider .swiper-slide-active .post_contents {
    padding: 3em 3em 2em;
  }
}
.topics-slider .swiper-slide-active .post_contents::before {
  height: 100%;
}
.topics-slider .post_img {
  z-index: -1;
}
.topics-slider .post_tags {
  margin: 0 0 3rem;
}
.topics-slider .post_img {
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.not-img {
  background: #060404;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.not-img img {
  width: 80%;
  height: auto;
}

.post_tags {
  font-size: 2.5rem;
  display: flex;
  flex-flow: row wrap;
  gap: 1rem 2rem;
}
.post_tags .tag {
  display: inline-block;
  background: #060404;
  color: #ffffff;
  padding: 0.3em 2em 0.2em;
  border-radius: 999px;
}

.posts {
  display: flex;
  flex-flow: row nowrap;
  width: -moz-fit-content;
  width: fit-content;
  align-items: stretch;
  gap: 4rem;
}
@media screen and (min-width: 768px) {
  .posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 1px;
  }
}
@media screen and (min-width: 1000px) {
  .posts {
    grid-template-columns: repeat(4, 1fr);
  }
}

.post-contents .thumbnail {
  width: 100%;
}
.post-contents .thumbnail img {
  width: 100%;
  height: auto;
  aspect-ratio: unset;
}
.post-contents .wp-block-embed-youtube {
  display: block;
  width: 100%;
  height: auto;
  margin: 20rem auto;
}
.post-contents .wp-block-embed-youtube iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.post-container {
  overflow-y: visible;
  overflow-x: auto;
}
.post-container::-webkit-scrollbar {
  width: 100%;
  overflow: hidden;
  height: 2px;
}
.post-container::-webkit-scrollbar-track {
  background-color: rgba(215, 215, 215, 0.5);
  border-radius: 999px;
}
.post-container::-webkit-scrollbar-thumb {
  background-color: rgba(6, 4, 4, 0.8);
  border-radius: 999px;
}

.post {
  border-radius: 1rem;
  transition: 0.3s;
  width: 75vw;
}
@media screen and (min-width: 768px) {
  .post {
    width: 100%;
  }
}

.post_link,
.post_contents {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4rem;
}

.post_link {
  height: 100%;
}

.post_img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
}

.post_ttl {
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.4;
}

.post_contents {
  width: 100%;
  padding: 4rem;
}

.post_content_body {
  line-height: 1.75;
  font-size: 2.5rem;
}

.post_date {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0 0.25em;
  margin: auto 0 0 auto;
  font-size: 3rem;
  color: #808080;
}
.post_date::before {
  font-family: "Material Icons";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga";
  content: "schedule";
  font-size: 1.2em;
}

.sec-href {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4rem 0 auto;
}
@media screen and (min-width: 1000px) {
  .sec-href {
    justify-content: flex-end;
  }
}
.sec-href .sec-href_a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 4rem;
  border-bottom: 2px solid;
}
@media screen and (min-width: 1000px) {
  .sec-href .sec-href_a {
    font-size: 5rem;
  }
}
.sec-href .sec-href_a::after {
  font-family: "Material Icons";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga";
  content: "navigate_next";
  line-height: 1;
  text-transform: none;
}

.post_links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2vw;
  align-items: stretch;
}

.post_links_link {
  position: relative;
  border-radius: 1rem;
  border: 2px solid #060404;
  padding: 1.7em;
  background: #fafafa;
  width: 100%;
}
.post_links_link > .link_ttl {
  font-weight: 600;
  font-size: 1.1em;
  line-height: 1.2;
}
.post_links_link > .link_body {
  color: #323232;
  font-size: 0.8em;
  line-height: 1.4;
  margin: 1em 0 0;
}
.post_links_link::before, .post_links_link::after {
  position: absolute;
  top: -0.7em;
  display: inline-block;
  font-weight: 600;
  line-height: 1;
  font-size: 1.5em;
}
.post_links_link.link-prev::before {
  content: "Previous";
  text-align: left;
  left: 0;
}
.post_links_link.link-next {
  margin: 0 0 0 auto;
  grid-column: 2;
}
.post_links_link.link-next::before {
  content: "Next";
  text-align: right;
  right: 0;
}

.topics .posts {
  display: grid;
  grid-template-columns: 100%;
}
@media screen and (min-width: 1000px) {
  .topics .posts {
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem;
  }
}
.topics .post {
  width: 100%;
  background: #ffffff;
  padding: 5rem;
  border-radius: 1rem;
}
.topics .post_link {
  display: grid;
  gap: 4rem;
  align-items: stretch;
  height: 100%;
  grid-template-columns: 40% 1fr;
}
@media screen and (min-width: 1000px) {
  .topics .post_link {
    gap: 4rem 6rem;
  }
}
.topics .post_img {
  aspect-ratio: 1/1;
  height: 100%;
}
.topics .post_ttl {
  font-size: 1.3em;
  font-weight: 600;
}
.topics .post_contents {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3rem;
  padding: 0;
}
.topics .post_content_body {
  font-size: 3rem;
}
.topics .post_date {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0 0.25em;
  margin: auto 0 0 auto;
  font-size: 3rem;
  color: #808080;
}
.topics .post_date::before {
  font-family: "Material Icons";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga";
  content: "schedule";
  font-size: 1.2em;
}

.search .posts {
  display: grid;
  grid-template-columns: 100%;
  gap: 6rem;
  align-items: stretch;
  /*.post_img {
      //height: 100%;
      //aspect-ratio: unset;
  }*/
}
@media screen and (min-width: 768px) {
  .search .posts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1000px) {
  .search .posts {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1400px) {
  .search .posts {
    grid-template-columns: repeat(4, 1fr);
  }
}
.search .posts .post {
  width: 100%;
  padding: 3rem;
  background: #ffffff;
}
@media screen and (min-width: 1000px) {
  .search .posts .post {
    padding: 4rem;
  }
}
.search .posts.search {
  margin: 8rem auto 0;
}
.search .posts .post_ttl {
  font-size: unset;
}
.search .posts .post_contents {
  padding: 0;
  gap: 0 4rem;
}
.search .post_link {
  display: grid;
  grid-template-columns: 30% 1fr;
  align-items: center;
}
@media screen and (min-width: 1000px) {
  .search .post_link {
    grid-template-columns: 100%;
  }
}

.archives .archives_container .posts {
  display: grid;
  grid-template-columns: 100%;
  width: 100%;
}
.archives .archives_container .post_link {
  grid-template-columns: 100%;
}
@media screen and (min-width: 1000px) {
  .archives .archives_container .post_link {
    grid-template-columns: 30% 1fr;
  }
}
.archives .archives_container .post_img {
  aspect-ratio: 16/9;
  -o-object-position: 50% 0;
     object-position: 50% 0;
}
.archives .archives_container .post_contents {
  padding: 2rem;
}

.post-type_other .post_tags .tag {
  background: #414141;
}

.post-type_news .post_tags .tag {
  background: #323232;
}

.post {
  transition: 0.2s;
}
.post img,
.post .post_ttl {
  transition: 0.2s;
}
.post:hover {
  box-shadow: 0 4px 37px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.post:hover img {
  filter: brightness(0.6);
}
.post:hover .post_ttl {
  text-decoration: underline;
}

.item:hover .item_contents {
  text-decoration: underline;
}

.post_links_link:hover > .link_ttl,
.post_links_link:hover > .link_body {
  text-decoration: underline;
}

.archives {
  /*.archives_container {

      .post:hover {
          .post_img {
              aspect-ratio: 1/1;
          }
      }
  }*/
}
.archives .archives_container .post_img {
  transition: 0.3s;
}

.sec-href .sec-href_a {
  transition: 0.2s;
  padding: 0 0 0 0.5em;
  gap: 0.5em;
}
.sec-href .sec-href_a::after {
  transition: 0.2s;
}
.sec-href .sec-href_a:hover {
  color: #414141;
  padding: 0 0 0 1em;
}
.sec-href .sec-href_a:hover::after {
  padding: 0 0 0 1em;
}

#header-menu .menu-item > a:hover {
  text-decoration: underline;
}

#footer-menu .menu-item {
  transition: 0.2s;
}
#footer-menu .menu-item:hover {
  color: #323232;
}
#footer-menu .menu-item > a::after {
  transition: 0.2s;
}
#footer-menu .menu-item > a:hover::after {
  padding: 0 1em 0 0;
}/*# sourceMappingURL=main.css.map */