@charset "UTF-8";

main {
  padding-right: calc((100 / var(--view-size)) * 288 * 1vw);
}
.ingredientsArchive_heading {
  display: flex;
  background-color: #fff;
  border-bottom: solid 1px #656565;
}
.ingredientsArchive_heading_title {
  font-size: calc((100 / var(--view-size)) * 28 * 1vw);
  padding: calc((100 / var(--view-size)) * 20 * 1vw) calc((100 / var(--view-size)) * 40 * 1vw);
  border-right: solid 2px #656565;
}
.ingredientsArchive_postList {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
}
.ingredientsArchive_postList::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #656565;
}
.ingredientsArchive_postList_item {
  background-color: #fff;
}
.ingredientsArchive_postList_item:first-child {
  grid-row: 1 / 4;
  grid-column: 1 / 3;
}
.ingredientsArchive_postList_item:nth-child(2) {
  grid-row: 4 / 7;
  grid-column: 1 / 3;
}
.ingredientsArchive_postList_item:nth-child(3) {
  grid-row: 1 / 3;
  grid-column: 3 / 6;
}
.ingredientsArchive_postList_item:nth-child(4) {
  grid-row: 3 / 5;
  grid-column: 3 / 6;
}
.ingredientsArchive_postList_item:nth-child(5) {
  grid-row: 5 / 7;
  grid-column: 3 / 6;
}
.ingredientsArchive_postList_item:nth-child(6) {
  grid-row: 7 / 9;
  grid-column: 1 / 4;
}
.ingredientsArchive_postList_item:nth-child(7) {
  grid-row: 9 / 11;
  grid-column: 1 / 4;
}
.ingredientsArchive_postList_item:nth-child(8) {
  grid-row: 11 / 13;
  grid-column: 1 / 4;
}
.ingredientsArchive_postList_item:nth-child(9) {
  grid-row: 7 / 10;
  grid-column: 4 / 6;
}
.ingredientsArchive_postList_item:nth-child(10) {
  grid-row: 10 / 13;
  grid-column: 4 / 6;
}
.ingredientsArchive_postList_item > div {
  position: relative;
}
.ingredientsArchive_postList_item > div::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border: solid 2px #656565;
  z-index: 0;
}
.ingredientsArchive_postList_item:nth-child(3) > div,
.ingredientsArchive_postList_item:nth-child(4) > div,
.ingredientsArchive_postList_item:nth-child(5) > div,
.ingredientsArchive_postList_item:nth-child(6) > div,
.ingredientsArchive_postList_item:nth-child(7) > div,
.ingredientsArchive_postList_item:nth-child(8) > div {
  display: flex;
  height: 100%;
}
.ingredientsArchive_postList_item_img {
  overflow: hidden;
}
.ingredientsArchive_postList_item:nth-child(3) .ingredientsArchive_postList_item_img,
.ingredientsArchive_postList_item:nth-child(4) .ingredientsArchive_postList_item_img,
.ingredientsArchive_postList_item:nth-child(5) .ingredientsArchive_postList_item_img,
.ingredientsArchive_postList_item:nth-child(6) .ingredientsArchive_postList_item_img,
.ingredientsArchive_postList_item:nth-child(7) .ingredientsArchive_postList_item_img,
.ingredientsArchive_postList_item:nth-child(8) .ingredientsArchive_postList_item_img {
  width: 55%;
  min-width: 55%;
  height: 100%;
}
.ingredientsArchive_postList_item:nth-child(3) .ingredientsArchive_postList_item_img img,
.ingredientsArchive_postList_item:nth-child(4) .ingredientsArchive_postList_item_img img,
.ingredientsArchive_postList_item:nth-child(5) .ingredientsArchive_postList_item_img img,
.ingredientsArchive_postList_item:nth-child(6) .ingredientsArchive_postList_item_img img,
.ingredientsArchive_postList_item:nth-child(7) .ingredientsArchive_postList_item_img img,
.ingredientsArchive_postList_item:nth-child(8) .ingredientsArchive_postList_item_img img {
  height: 100%;
}
.ingredientsArchive_postList_item_img img {
  aspect-ratio: 342/262;
  transition: transform .3s ease-in, -webkit-transform .3s ease-in;
}
.ingredientsArchive_postList_item_link:hover .ingredientsArchive_postList_item_img img {
  transform: scale(1.1);
}
.ingredientsArchive_postList_item_body {
  border-top: solid 2px #656565;
  display: flex;
  position: relative;
}
.ingredientsArchive_postList_item:nth-child(3) .ingredientsArchive_postList_item_body,
.ingredientsArchive_postList_item:nth-child(4) .ingredientsArchive_postList_item_body,
.ingredientsArchive_postList_item:nth-child(5) .ingredientsArchive_postList_item_body,
.ingredientsArchive_postList_item:nth-child(6) .ingredientsArchive_postList_item_body,
.ingredientsArchive_postList_item:nth-child(7) .ingredientsArchive_postList_item_body,
.ingredientsArchive_postList_item:nth-child(8) .ingredientsArchive_postList_item_body {
  width: 45%;
  display: block;
  border-left: solid 2px #656565;
  border-top: none;
}
.ingredientsArchive_postList_item_body_right {
  width: 100%;
  padding: calc((100 / var(--view-size)) * 12 * 1vw);
  border-left: solid 2px #656565;
}
.ingredientsArchive_postList_item:nth-child(3) .ingredientsArchive_postList_item_body_right,
.ingredientsArchive_postList_item:nth-child(4) .ingredientsArchive_postList_item_body_right,
.ingredientsArchive_postList_item:nth-child(5) .ingredientsArchive_postList_item_body_right,
.ingredientsArchive_postList_item:nth-child(6) .ingredientsArchive_postList_item_body_right,
.ingredientsArchive_postList_item:nth-child(7) .ingredientsArchive_postList_item_body_right,
.ingredientsArchive_postList_item:nth-child(8) .ingredientsArchive_postList_item_body_right {
  width: 100%;
  border-left: none;
}
.ingredientsArchive_postList_item_title {
  margin-top: calc((100 / var(--view-size)) * 6 * 1vw);
  font-weight: 700;
  font-size: calc((100 / var(--view-size)) * 24 * 1vw);
}
.ingredientsArchive_postList_item_cat {
  margin-top: calc((100 / var(--view-size)) * 4 * 1vw);
}
.ingredientsArchive_postList_item_cat a {
  transition: 0.3s;
}
.ingredientsArchive_postList_item_cat a:hover {
  opacity: 0.7;
}
.ingredientsArchive_postList_item_cat span {
  display: inline-block;
  margin-left: calc((100 / var(--view-size)) * 8 * 1vw);
  font-size: calc((100 / var(--view-size)) * 14 * 1vw);
}
.ingredientsArchive_postList_item_cat span:first-child {
  margin-left: 0;
}
.ingredientsArchive_postList_item_time {
  margin-top: calc((100 / var(--view-size)) * 6 * 1vw);
  display: block;
  text-align: right;
  font-size: calc((100 / var(--view-size)) * 12 * 1vw);
}
.ingredientsArchive_pagination {
  position: relative;
  border-bottom: solid 2px #656565;
  padding: 0 15%;
  display: flex;
  justify-content: center;
}
.ingredientsArchive_pagination .page-numbers {
  padding: 0 calc((100 / var(--view-size)) * 20 * 1vw);
  height: calc((100 / var(--view-size)) * 52 * 1vw);
  line-height: calc((100 / var(--view-size)) * 52 * 1vw);
  font-size: calc((100 / var(--view-size)) * 20 * 1vw);
}
.ingredientsArchive_pagination .page-numbers.current {
  border-bottom: solid 3px #000;
}
.ingredientsArchive_pagination .page-numbers.prev, .ingredientsArchive_pagination .page-numbers.next {
  position: absolute;
  width: 15%;
  top: 0;
  text-align: center;
  height: calc((100 / var(--view-size)) * 52 * 1vw);
  font-size: calc((100 / var(--view-size)) * 52 * 1vw);
  line-height: calc((100 / var(--view-size)) * 52 * 1vw);
  padding: 0;
}
.ingredientsArchive_pagination .page-numbers.prev:hover, .ingredientsArchive_pagination .page-numbers.next:hover {
  background-color: #fff;
  border-top: solid 1px #656565;
}
.ingredientsArchive_pagination .page-numbers.prev {
  left: 0;
  border-right: solid 2px #656565;
}
.ingredientsArchive_pagination .page-numbers.next {
  right: 0;
  border-left: solid 2px #656565;
}

@media (max-width: 670px) {
  main {
    padding-right: 0;
  }
  .ingredientsArchive_heading {
    display: block;
    padding: calc((100 / var(--view-size)) * 20 * 1vw) 0;
    border-bottom: solid 2px #656565;
  }
  .ingredientsArchive_heading_title {
    font-size: calc((100 / var(--view-size)) * 24 * 1vw);
    padding: 0 calc((100 / var(--view-size)) * 20 * 1vw);
    border-right: none;
  }
  .ingredientsArchive_postList {
    display: block;
    padding: calc((100 / var(--view-size))* 20* 1vw) calc((100 / var(--view-size))* 20* 1vw) calc((100 / var(--view-size))* 40* 1vw);
  }
  .ingredientsArchive_postList::before {
    display: none;
  }
  .ingredientsArchive_postList_item {
    border: solid 2px #656565;
    margin-top: calc((100 / var(--view-size)) * 20 * 1vw);
  }
  .ingredientsArchive_postList_item > div::before {
    display: none;
  }
  .ingredientsArchive_postList_item:nth-child(3) div,
  .ingredientsArchive_postList_item:nth-child(4) div,
  .ingredientsArchive_postList_item:nth-child(5) div,
  .ingredientsArchive_postList_item:nth-child(6) div,
  .ingredientsArchive_postList_item:nth-child(7) div,
  .ingredientsArchive_postList_item:nth-child(8) div {
    display: block;
    height: initial;
  }
  .ingredientsArchive_postList_item:nth-child(3) .ingredientsArchive_postList_item_img,
  .ingredientsArchive_postList_item:nth-child(4) .ingredientsArchive_postList_item_img,
  .ingredientsArchive_postList_item:nth-child(5) .ingredientsArchive_postList_item_img,
  .ingredientsArchive_postList_item:nth-child(6) .ingredientsArchive_postList_item_img,
  .ingredientsArchive_postList_item:nth-child(7) .ingredientsArchive_postList_item_img,
  .ingredientsArchive_postList_item:nth-child(8) .ingredientsArchive_postList_item_img {
    width: 100%;
    min-width: 100%;
    height: initial;
  }
  .ingredientsArchive_postList_item:nth-child(3) .ingredientsArchive_postList_item_img img,
  .ingredientsArchive_postList_item:nth-child(4) .ingredientsArchive_postList_item_img img,
  .ingredientsArchive_postList_item:nth-child(5) .ingredientsArchive_postList_item_img img,
  .ingredientsArchive_postList_item:nth-child(6) .ingredientsArchive_postList_item_img img,
  .ingredientsArchive_postList_item:nth-child(7) .ingredientsArchive_postList_item_img img,
  .ingredientsArchive_postList_item:nth-child(8) .ingredientsArchive_postList_item_img img {
    height: initial;
  }
  .ingredientsArchive_postList_item_body {
    border-top: solid 2px #656565;
    display: flex;
  }
  .ingredientsArchive_postList_item:nth-child(3) .ingredientsArchive_postList_item_body,
  .ingredientsArchive_postList_item:nth-child(4) .ingredientsArchive_postList_item_body,
  .ingredientsArchive_postList_item:nth-child(5) .ingredientsArchive_postList_item_body,
  .ingredientsArchive_postList_item:nth-child(6) .ingredientsArchive_postList_item_body,
  .ingredientsArchive_postList_item:nth-child(7) .ingredientsArchive_postList_item_body,
  .ingredientsArchive_postList_item:nth-child(8) .ingredientsArchive_postList_item_body {
    width: 100%;
    display: flex;
    border-left: none;
    border-top: solid 2px #656565;
  }
  .ingredientsArchive_postList_item_body_right {
    padding: calc((100 / var(--view-size)) * 10 * 1vw) calc((100 / var(--view-size)) * 6 * 1vw);
    border-left: none;
  }
  .ingredientsArchive_postList_item:nth-child(3) .ingredientsArchive_postList_item_body_right,
  .ingredientsArchive_postList_item:nth-child(4) .ingredientsArchive_postList_item_body_right,
  .ingredientsArchive_postList_item:nth-child(5) .ingredientsArchive_postList_item_body_right,
  .ingredientsArchive_postList_item:nth-child(6) .ingredientsArchive_postList_item_body_right,
  .ingredientsArchive_postList_item:nth-child(7) .ingredientsArchive_postList_item_body_right,
  .ingredientsArchive_postList_item:nth-child(8) .ingredientsArchive_postList_item_body_right {
    border-top: none;
    border-left: none;
    width: 100%;
  }
  .ingredientsArchive_postList_item_title {
    font-size: calc((100 / var(--view-size)) * 18 * 1vw);
  }
  .ingredientsArchive_postList_item_cat {
    margin-top: calc((100 / var(--view-size)) * 1 * 1vw);
  }
  .ingredientsArchive_postList_item_time {
    margin-top: calc((100 / var(--view-size)) * 2 * 1vw);
    display: block;
    text-align: right;
    font-size: calc((100 / var(--view-size)) * 12 * 1vw);
  }
  .ingredientsArchive_pagination {
    position: relative;
    border-bottom: solid 2px #656565;
    padding: 0 15%;
    display: flex;
    justify-content: center;
  }
  .ingredientsArchive_pagination .page-numbers {
    padding: 0 calc((100 / var(--view-size)) * 20 * 1vw);
    height: calc((100 / var(--view-size)) * 52 * 1vw);
    line-height: calc((100 / var(--view-size)) * 52 * 1vw);
    font-size: calc((100 / var(--view-size)) * 20 * 1vw);
  }
  .ingredientsArchive_pagination .page-numbers.current {
    border-bottom: solid 3px #000;
  }
  .ingredientsArchive_pagination .page-numbers.prev, .ingredientsArchive_pagination .page-numbers.next {
    position: absolute;
    width: 15%;
    top: 0;
    text-align: center;
    height: calc((100 / var(--view-size)) * 52 * 1vw);
    font-size: calc((100 / var(--view-size)) * 52 * 1vw);
    line-height: calc((100 / var(--view-size)) * 52 * 1vw);
    padding: 0;
  }
  .ingredientsArchive_pagination .page-numbers.prev:hover, .ingredientsArchive_pagination .page-numbers.next:hover {
    background-color: #fff;
    border-top: solid 1px #656565;
  }
  .ingredientsArchive_pagination .page-numbers.prev {
    left: 0;
    border-right: solid 2px #656565;
  }
  .ingredientsArchive_pagination .page-numbers.next {
    right: 0;
    border-left: solid 2px #656565;
  }
  .ingredientsArchive_pagination {
    padding: 0 12%;
  }
  .ingredientsArchive_pagination .page-numbers {
    padding: 0 calc((100 / var(--view-size)) * 15 * 1vw);
  }
  .ingredientsArchive_pagination .page-numbers.current {
    border-bottom: solid 2px #000;
  }
  .ingredientsArchive_pagination .page-numbers.prev, .ingredientsArchive_pagination .page-numbers.next {
    width: 12%;
    font-size: calc((100 / var(--view-size)) * 32 * 1vw);
  }
}
