@charset "UTF-8";

/* =========================================================
   商品一覧ページ専用CSS
   ========================================================= */

/* Base
--------------------------------------------------------- */
.item-page {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 12px 80px;
  color: #1f1f1f;
  font-family: "Noto Serif JP", "Zen Old Mincho", serif;
}

.item-page a {
  color: inherit;
  text-decoration: none;
}

/* Common section
--------------------------------------------------------- */
.item-section {
  margin: 0 0 104px;
}

.item-section__head {
  margin-bottom: 40px;
  text-align: center;
}

.item-section__label {
  margin: 0 0 14px;
  color: #9b7a3f;
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .18em;
}

.item-section__head h2,
.item-standard__body h2,
.item-course__box h2 {
  margin: 0 0 16px;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: .08em;
}

.item-section__head p,
.item-standard__body p,
.item-course__box p {
  margin: 0;
  color: #5f5b54;
  font-size: 15px;
  line-height: 2;
  text-align: center;
}

/* Button
--------------------------------------------------------- */
.item-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 176px;
  min-height: 46px;
  margin-top: 28px;
  padding: 0 28px;
  border: 1px solid #9b7a3f;
  border-radius: 999px;
  color: #7a5b26;
  font-size: 14px;
  letter-spacing: .08em;
  transition: .2s ease;
}

.item-button:hover {
  background: #9b7a3f;
  color: #fff;
}

/* FV
--------------------------------------------------------- */
.item-fv {
  margin: 40px 0 96px;
}

.item-fv__visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(
      90deg,
      rgba(20, 18, 15, .45) 0%,
      rgba(20, 18, 15, .15) 35%,
      rgba(20, 18, 15, 0) 60%
    ),
    url("../img/item/item_fv.jpg") center center / cover no-repeat;
}

.item-fv__copy {
  position: absolute;
  top: 50%;
  left: 64px;
  max-width: 520px;
  color: #fff;
  transform: translateY(-50%);
}

.item-fv__label {
  margin: 0 0 14px;
  color: #e8d8b8;
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .18em;
}

.item-fv h1 {
  margin: 0 0 22px;
  font-size: 44px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: .08em;
}

.item-fv__text {
  margin: 0;
  font-size: 16px;
  line-height: 2.2;
}

/* Category
--------------------------------------------------------- */
.item-category__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  max-width: 900px;
  margin: 60px auto 0;
}

.item-category__card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
  background-image: var(--cat-img);
  background-position: center;
  background-size: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
  transition: .3s ease;
}

.item-category__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .22);
}

.item-category__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

.item-category__card span {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .08em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .5);
}

/* Products
--------------------------------------------------------- */
.item-products__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 34px 24px;
}

.item-product {
  display: block;
}

.item-product__image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  margin-bottom: 14px;
  border-radius: 14px;
  background: #f4f0e8;
  color: #9b9285;
}

.item-product__name {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}
.item-product__card {
  height: 100%;
}

.item-product__image {
  overflow: hidden;
}

.item-product__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Standard
--------------------------------------------------------- */
.item-standard {
  padding: 72px 48px;
  background: #f7f3ec;
}

.item-standard__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.item-standard__item {
  position: relative;
  padding: 0 18px;
  text-align: center;
}

.item-standard__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 16px;
  right: -14px;
  width: 1px;
  height: calc(100% - 16px);
  background: rgba(80, 70, 55, .16);
}

.item-standard__icon {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 18px;
}

.item-standard__item h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .08em;
}

.item-standard__item p {
  margin: 0;
  color: #5f5b54;
  font-size: 13px;
  line-height: 1.9;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .item-standard {
    padding: 44px 20px;
    border-radius: 18px;
  }

  .item-standard__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 36px;
  }

  .item-standard__item {
    padding: 0;
  }

  .item-standard__item:not(:last-child)::after {
    display: none;
  }
}

.item-standard__button{
    margin-top:60px;
    text-align:center;
}

/* SP
--------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .item-page {
    padding-bottom: 56px;
  }

  .item-section {
    margin-bottom: 72px;
  }

  .item-section__head {
    margin-bottom: 28px;
  }

  .item-section__head h2,
  .item-standard__body h2,
  .item-course__box h2 {
    font-size: 18px;
  }
.item-section__head p,
.item-standard__body p,
.item-course__box p {
  text-align: left;
}
  .item-fv {
    margin: 24px 0 64px;
  }

	.item-fv__visual {
	  min-height: auto;
	  padding-top: 68%;
	  border-radius: 18px;
	  background: url("../img/item/item_fv.jpg") right center / cover no-repeat;
	}

  .item-fv__copy {
    position: static;
    max-width: none;
    padding: 28px 8px;
    color: #1f1f1f;
    transform: none;
  }

  .item-fv__label {
    color: #9b7a3f;
  }

  .item-fv h1 {
    font-size: 30px;
    line-height: 1.65;
	color:#fff;
  }

  .item-fv__text {
    font-size: 14px;
	color:#fff;
  }

  .item-category__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 36px;
  }

  .item-category__card {
    width: 150px;
  }

  .item-category__card span {
    font-size: 18px;
  }

  .item-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }

  .item-standard__inner {
    display: block;
    padding: 28px 20px;
    border-radius: 18px;
  }

  .item-standard__image {
    min-height: 220px;
    margin-bottom: 28px;
  }

  .item-reading__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .item-course__box {
    padding: 40px 22px;
    border-radius: 18px;
  }
}
