.categoryGift {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}

.categoryGift * {
  box-sizing: border-box;
}

.categoryGift a {
  color: inherit;
  text-decoration: none;
}

.categoryGift img {
  display: block;
  width: 100%;
  height: auto;
}

.categoryGift__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* FV */
.categoryGift-hero {
  background: #f6f1eb;
  padding: 54px 0;
}

.categoryGift-hero__wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}

.categoryGift-hero__eyebrow {
  font-size: 13px;
  color: #9b6a52;
  letter-spacing: .08em;
  margin-bottom: 12px;
}

.categoryGift-hero__title {
  font-family: serif;
  font-size: 38px;
  line-height: 1.5;
  font-weight: 500;
  margin: 0 0 14px;
}

.categoryGift-hero__lead {
  color: #9b6a52;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 18px;
}

.categoryGift-hero__text {
  font-size: 14px;
  margin: 0;
}

.categoryGift-hero__image {
  overflow: hidden;
}

/* section */
.categoryGift-section {
  padding: 58px 0 0;
}

.categoryGift-section__head {
  text-align: center;
  margin-bottom: 30px;
}

.categoryGift-section__sub {
  color: #c57b57;
  font-size: 13px;
  letter-spacing: .08em;
  margin-bottom: 6px;
}

.categoryGift-section__title {
  font-family: serif;
  font-size: 27px;
  font-weight: 500;
  margin: 0;
}

/* popular */
.categoryGift-popular {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.categoryGift-popular__card {
  background: #fff;
  border: 1px solid #e8ded5;
  transition: .25s;
}

.categoryGift-popular__card:hover {
  opacity: .82;
}

.categoryGift-popular__image {
  aspect-ratio: 1 / .78;
  overflow: hidden;
  background: #f4eee8;
}

.categoryGift-popular__image img {
  height: 100%;
  object-fit: cover;
}

.categoryGift-popular__name {
  padding: 13px 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

/* category grid */
.categoryGift-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.categoryGift-card {
  background: #fff;
  border: 1px solid #e8ded5;
  display: flex;
  flex-direction: column;
}

.categoryGift-card__image {
  aspect-ratio: 4 / 2.55;
  overflow: hidden;
  background: #f4eee8;
}

.categoryGift-card__image img {
  height: 100%;
  object-fit: cover;
}

.categoryGift-card__body {
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.categoryGift-card__title {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 10px;
}

.categoryGift-card__links {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}

.categoryGift-card__links li {
  font-size: 13px;
  line-height: 1.7;
}

.categoryGift-card__links a {
  color: #555;
}

.categoryGift-card__links a::before {
  content: "›";
  color: #c57b57;
  margin-right: 6px;
}

.categoryGift-card__more {
  display: block;
  text-align: right;
  color: #9b6a52;
  font-size: 13px;
  margin-top: auto;
}

.categoryGift-card__more::after {
  content: " →";
}


/* SP */
@media screen and (max-width: 768px) {
  .categoryGift__inner {
    padding: 0 16px;
  }

  .categoryGift-hero {
    padding: 40px 0;
  }

  .categoryGift-hero__wrap {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .categoryGift-hero__title {
    font-size: 30px;
  }

  .categoryGift-hero__lead {
    font-size: 16px;
  }

  .categoryGift-section {
    padding-top: 46px;
  }

  .categoryGift-popular {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .categoryGift-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .categoryGift-card__body {
    padding: 16px 14px;
  }

  .categoryGift-productsIntro {
    margin-top: 44px;
    padding: 26px 18px;
  }
}