/* 商品一覧 */
.productsArchive {
  --color-primary: #b81620;
  --color-black: #000000;
  --color-black2: #010101;
  --color-white: #ffffff;
  --font-inter: "Inter", sans-serif;
}

.productsArchiveHeading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  --font-inter: "Inter", sans-serif;
}

.productsArchiveHeading__link {
  margin-block: 80px 20px; 
  font-size: 16px;
  line-height: 1.63;
  font-family: var(--font-inter);
  transition: opacity 0.3s ease;
  color: var(--color-black);
  
  @media (max-width: 768px) {
    font-size: 15px;
    margin-block: 40px 5px; 
  }

  @media (any-hover: hover) {
    &:hover {
      opacity: 0.8;
    }
  }

  img {
    width: 20px;
    height: auto;
  }
}

.productsArchiveHeading__title {
  color: #D00716;
  font-size: 30.8px;
  padding-block-end: 40px;
  position: relative;
  z-index: 1;
}

.productsArchiveHeading__title:after {
  content: "";
  background: #D00716;
  display: inline-block;
  height: 1px;
  width: 100px;
  margin-left: 20px;
  vertical-align: middle;
}

.productsArchiveHeading__title:first-letter {
	font-size: 200%;
}

@media screen and (max-width: 767px) {
	.productsArchiveHeading__title {
		font-size: 21.6px;
		padding-block-end: 20px;
	}
	.productsArchiveHeading__title:after {
		width: 50px;
	}
}

.productsArchive {
  padding-block-end: 100px;

  @media (max-width: 768px) {
    padding-block-end: 70px;
  }
}

.productsArchive__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: 30px 50px;
  max-width: 890px;
  margin-inline: auto;

  @media (max-width: 768px) {
    grid-template-columns: 1fr;
  }
}

.productsArchive__imgContent {
}

.productsArchive__imgContent a {
  transition: opacity 0.3s ease;
  
  @media (any-hover: hover) {
    &:hover {
      opacity: 0.8;
    }
  }
}

.productsArchive__img img {
  width: 100%;
  height: auto;
}

.productsArchive__textContent {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.productsArchive__contentTop {
}

.productsArchive__subTitle {
  font-size: 20px;
  font-family: var(--font-inter);
  margin: 0;

  @media (max-width: 768px) {
    font-size: 16px;
    text-align: center;
  }
}

.productsArchive__title {
  font-size: 28px;
  font-weight: 500;
  font-family: var(--font-inter);

  @media (max-width: 768px) {
    font-size: 24px;
    text-align: center;
    margin-block-start: initial;
  }
}

.productsArchive__description {
  font-size: 15px;
  line-height: 1.67;
  margin-block-start: 10px;
  margin-block-end: 0;
  font-family: var(--font-inter);

  @media (max-width: 768px) {
    font-size: 14px;
    line-height: 1.36;
    width: fit-content;
    margin-inline: auto;
  }
}

.productsArchive__copy {
  display: block;
  font-size: 9px;
  color: var(--color-primary);
  font-family: var(--font-inter);
  margin-block-start: 10px;

  @media (max-width: 768px) {
    font-size: 9px;
    width: fit-content;
    margin-inline: auto;
  }
}

.productsArchive__copy.is_right {
  text-align: right;

  @media (max-width: 768px) {
    text-align: left;
  }
}

.productsArchive__contentBottom {
  margin-block-start: 70px;

  @media (max-width: 768px) {
    margin-block-start: 15px;
  }
}

.productsArchive__sail {
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-inter);

  span {
    font-size: 17px;
    font-weight: 500;
  }
  strong {
    font-size: 35px;
    font-weight: 500;
    margin-inline: 0 -0.15em;
    line-height: 1.3;
  }

  @media (max-width: 768px) {
    width: fit-content;
    margin-inline: auto;
  }
}

.productsArchive__price {
  display: flex;
  align-items: center;
  gap: 10px;

  @media (max-width: 768px) {
    justify-content: center;
  }
}

.productsArchive__priceSub {
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  border: 1px solid;
  padding: 3px 6px;
  font-family: var(--font-inter);
}

.productsArchive__priceMain {
  font-family: var(--font-inter);
  font-size: 18px;
  font-weight: 500;

  strong {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.3;
  }

  small {
    font-size: 10px;
    font-weight: 400;
  }
}

.productsArchive__contentBtnWrap {
  margin-block-start: 10px;
  /* margin-block-start: 70px; */

  /* @media (max-width: 768px) {
    margin-block-start: 15px;
  } */
}

.productsArchive__btn {
  width: 100%;
  max-width: 250px;
  min-height: 56px;
  color: var(--color-white);
  background: var(--color-primary);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-inter);
  display: grid;
  place-items: center;
  transition: opacity 0.3s ease;

  @media (max-width: 768px) {
    max-width: 340px;
    margin-inline: auto;
    font-size: 20px;
  }

  @media (any-hover: hover) {
    &:hover {
      opacity: 0.8;
    }
  }
}

.productsArchive__body {
  margin-block-start: 90px;

  @media (max-width: 768px) {
    margin-block-start: 80px;
  }
}

.productsArchive__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 28px;

  @media (max-width: 768px) {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 28px;
  }
}

.productsArchive__item {
  display: grid;
  grid-template-rows: subgrid;
  gap: 0;
  grid-row: span 3;
}

#topContents .productsArchive__itemImg,
.productsArchive__itemImg {
  width: 100%;
  aspect-ratio: 185 / 225;
  margin: 0;

  img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  a {
    transition: opacity 0.3s ease;

    @media (any-hover: hover) {
      &:hover {
        opacity: 0.8;
      }
    }
  }
}

.productsArchive__itemSubTitle {
  margin-block-start: 17px;
  font-size: 13px;
  line-height: 1.3;
  text-align: center;
  font-family: var(--font-inter);

  @media (max-width: 768px) {
    margin-block-start: 15px;
  }
}

.productsArchive__itemTitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  font-family: var(--font-inter);
  margin-block-start: 2px;

  @media (max-width: 768px) {
    font-size: 16px;
    margin-block-start: 5px;
  }
}

.productsArchive__itemBottom {
  margin-block-start: 14px;
  display: flex;
  justify-content: center;
}

.productsArchive__itemBtn {
  width: 100%;
  max-width: 114px;
  min-height: 30px;
  border: 1px solid;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  display: grid;
  place-items: center;
  font-family: var(--font-inter);
  transition: opacity 0.3s ease;
  color: var(--color-black2);

  @media (any-hover: hover) {
    &:hover {
      opacity: 0.8;
    }
  }
}

.productsArchive__bnr {
  max-width: 613px;
  margin-inline: auto;
  margin-block-start: 97px;

  @media (max-width: 768px) {
    margin-block-start: 62px;
  }
}

.productsArchive__bnr a{
  transition: opacity 0.3s ease;

  @media (any-hover: hover) {
    &:hover {
      opacity: 0.8;
    }
  }
}

.productsArchive__bnrItem img {
  display: block;
  width: 100%;
  height: auto;
}

.productsArchive__bnrLink {
  margin-block-start: 13px;
}

.productsArchive__bnrLink a {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.55;
  font-family: var(--font-inter);
  transition: opacity 0.3s ease;
  display: block;
  width: fit-content;
  margin-left: auto;


  @media (max-width: 768px) {
    font-size: 16px;
  }

  img {
    width: 22px;
    height: auto;
  }

  @media (max-width: 768px) {
    img {
      width: 20px;
    }
  }

  @media (any-hover: hover) {
    &:hover {
      opacity: 0.8;
    }
  }
}


/* common.css */
#topContents {
  padding-block-start: 0;
}

.bg-white {
  background-color: #ffffff;
}

@media screen and (max-width: 767px) {
  iframe.news_iframe {
      height: 225px;
  }
}


/* top.css */
#topMain {
  padding-inline: 0;
}