@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
/*テーマカラー設定 - プレミアムシルバー・ゴールド基調*/
:root {
  --main-color: #6B7280; /* 落ち着いたシルバーグレー */
  --accent-color: #d4c4a8; /* 温かみのあるベージュゴールド */
  --accent-color02: #c4b896; /* ダークベージュゴールド */
  --main-bg-color: #fff;
  --lp-marker-color: #dfd1a7; /* 温かみのあるベージュゴールド */
  --premium-silver: #E5E7EB; /* プレミアムシルバー */
  --warm-gold: #faf7f0; /* 温かみのあるベージュゴールド背景 */
  --main-font: "Shippori Mincho", serif;
  --sub-font: "Noto Serif JP", serif;
}

.p-lp-wrapper {
  padding-bottom: 1px;
  font-family: var(--main-font);
  background: linear-gradient(135deg, var(--premium-silver) 0%, #fff 25%, var(--warm-gold) 50%, #fff 75%, var(--premium-silver) 100%);
  background-attachment: fixed;
}

.p-lp-hero {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color02) 100%);
}
.p-lp-hero .l-inner {
  padding: 0;
}
.p-lp-hero img {
  margin-inline: auto;
}

.p-lp-section-title {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, auto);
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  color: var(--main-color);
  margin-bottom: 30px;
}
.p-lp-section-title::before, .p-lp-section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 8px;
  border-top: 2px solid var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
}
@media (width < 768px) {
  .p-lp-section-title {
    font-size: min(5vw, 1.5rem);
  }
  .p-lp-section-title::before, .p-lp-section-title::after {
    width: 30px;
  }
}

/* カテゴリーボタン */
.p-lp-anchor {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}

.p-lp-anchor li {
  width: 49%;
}

.p-lp-anchor.-jc-center {
  justify-content: center;
}

@media screen and (width >= 768px) {
  .p-lp-anchor.-line2 li {
    width: calc(50% - 1.5px);
  }
  .p-lp-anchor.-line3 li {
    width: calc(33.333% - 2px);
  }
  .p-lp-anchor.-line4 li {
    width: calc(25% - 2.25px);
  }
  .p-lp-anchor.-line5 li {
    width: calc(20% - 2.4px);
  }
  .p-lp-anchor.-line6 li {
    width: calc(16.6666666667% - 2.5px);
  }
}
@media screen and (width < 768px) {
  .p-lp-anchor.-sp-line3 li {
    width: calc(33.333% - 2px);
  }
  .p-lp-anchor.-sp-line4 li {
    width: calc(25% - 2.25px);
  }
  .p-lp-anchor.-sp-line5 li {
    width: calc(20% - 2.4px);
  }
  .p-lp-anchor.-sp-line6 li {
    width: calc(16.6666666667% - 2.5px);
  }
}
.p-lp-anchor li a {
  display: block;
  place-content: center;
  height: 100%;
  min-height: 60px;
  padding: 12px 1px;
  font-family: var(--sub-font);
  font-size: min(4.5vw, 1.3rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-align: center;
  border-radius: 4px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color02) 100%);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(212, 196, 168, 0.3);
  transition: all 0.3s ease;
}
.p-lp-anchor li a:hover {
  background: linear-gradient(135deg, var(--accent-color02) 0%, var(--accent-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 196, 168, 0.4);
}

@media screen and (width >= 768px) {
  .p-lp-anchor {
    flex-wrap: wrap;
  }
  .p-lp-anchor li a {
    padding: 8px 10px;
    min-height: 80px;
    font-size: min(4vw, 1.5rem);
  }
}
/* キャッチコピー
========================== */
.p-lp-catchcopy {
  padding-block: 60px;
}
@media (width < 768px) {
  .p-lp-catchcopy {
    padding-block: 30px;
  }
}

.p-lp-catchcopy-body {
  padding: 40px 30px;
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
  background: linear-gradient(135deg, #fff 0%, var(--warm-gold) 100%);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(107, 114, 128, 0.1);
  border: 1px solid var(--premium-silver);
}
@media (width < 768px) {
  .p-lp-catchcopy-body {
    padding: 30px 15px;
  }
}

.p-lp-catchcopy-title {
  font-size: min(4.8vw, 2rem);
  line-height: 1.6;
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: var(--main-color);
}
.p-lp-catchcopy-title strong {
  font-weight: 700;
}

.p-lp-catchcopy-list {
  position: relative;
  font-size: min(3.8vw, 1.5rem);
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  max-width: max-content;
  margin: 30px auto 0;
}
@media (width < 768px) {
  .p-lp-catchcopy-list {
    margin-top: 20px;
  }
}
.p-lp-catchcopy-list li {
  position: relative;
  padding-left: calc(min(3.8vw, 1.5rem) + 0.8rem);
}
.p-lp-catchcopy-list li + li {
  margin-top: 15px;
}
.p-lp-catchcopy-list .-icon {
  position: absolute;
  top: 0;
  left: 0;
  translate: 0 -13%;
  line-height: 1;
  color: var(--accent-color);
  font-size: 150%;
  font-weight: 800;
  margin-right: 0.5em;
}

/* カタログギフト-ピックアップ */
.p-lp-lineup-tile__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
@media (width < 768px) {
  .p-lp-lineup-tile__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-lp-lineup-tile__item {
  position: relative;
}
.p-lp-lineup-tile__item img {
  aspect-ratio: 1/1;
  object-fit: cover;
}
.p-lp-lineup-tile__item a {
  position: relative;
  display: block;
}
.p-lp-lineup-tile__item a:hover {
  opacity: 1;
}
.p-lp-lineup-tile__item a:hover .p-lp-lineup-tile__desc {
  opacity: 1;
}
.p-lp-lineup-tile__item.-pickup {
  grid-column: span 2;
  grid-row: span 2;
}
@media (width < 768px) {
  .p-lp-lineup-tile__item.-pickup {
    grid-row: span 1;
  }
  .p-lp-lineup-tile__item.-pickup img {
    aspect-ratio: 2/1;
  }
}

.p-lp-lineup-tile__desc {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 5%;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #fff;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0.3333333333), rgba(0, 0, 0, 0.6));
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
@media (width < 768px) {
  .p-lp-lineup-tile__desc {
    font-size: 0.7rem;
  }
}
.p-lp-lineup-tile__desc strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
}
@media (width < 768px) {
  .p-lp-lineup-tile__desc strong {
    font-size: 1.1rem;
  }
}

.p-lp-price {
  margin-bottom: 0;
  padding-block: 60px;
  background-color: #fff;
}

.p-lp-gift {
  padding-block: 60px;
  background-color: #fff;
}

.p-lp-gift-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (width < 768px) {
  .p-lp-gift-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (width >= 768px) {
  .p-lp-gift-item {
    display: contents;
  }
}

.p-lp-gift-button {
  display: grid;
  padding: 30px 20px;
  font-weight: 500;
  text-align: center;
  border-radius: 20px;
  color: #fff;
  transition: all 0.3s ease;
}
@media (width >= 768px) {
  .p-lp-gift-button {
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 0;
  }
}
@media (width < 768px) {
  .p-lp-gift-button {
    grid-template-columns: 70px 1fr;
    grid-template-rows: auto;
    align-items: center;
    gap: 0 10px;
    padding: 15px 15px;
  }
}
.p-lp-gift-button.-gourmet {
  background: #d19b9b;
  box-shadow: 0 4px 15px rgba(209, 155, 155, 0.2);
}
.p-lp-gift-button.-gourmet:hover {
  box-shadow: 0 6px 20px rgba(244, 164, 96, 0.2);
}
.p-lp-gift-button.-goods {
  background: #8ababf;
  box-shadow: 0 4px 15px rgba(138, 186, 191, 0.2);
}
.p-lp-gift-button.-goods:hover {
  box-shadow: 0 6px 20px rgba(138, 186, 191, 0.2);
}
.p-lp-gift-button.-experience {
  background: #949d7a;
  box-shadow: 0 4px 15px rgba(148, 157, 122, 0.2);
}
.p-lp-gift-button.-experience:hover {
  box-shadow: 0 6px 20px rgba(148, 157, 122, 0.2);
}
.p-lp-gift-button.-all {
  background: #c1ac8f;
  box-shadow: 0 4px 15px rgba(193, 172, 143, 0.2);
}
.p-lp-gift-button.-all:hover {
  box-shadow: 0 6px 20px rgba(193, 172, 143, 0.2);
}
.p-lp-gift-button:hover {
  opacity: 0.8;
  transform: translateY(-3px);
}

.p-lp-gift-icon {
  aspect-ratio: 1/1;
  width: 150px;
  margin: 0 auto 10px;
  padding: 12%;
  background: #fff;
  border-radius: 50%;
}
@media (width >= 768px) {
  .p-lp-gift-icon {
    grid-row: 1;
  }
}
@media (width < 768px) {
  .p-lp-gift-icon {
    grid-row: span 2;
    margin: 0;
    width: 100%;
    padding: 20%;
  }
}

.p-lp-gift-title {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.3;
}
@media (width >= 768px) {
  .p-lp-gift-title {
    align-self: center;
    grid-row: 2;
  }
  .p-lp-gift-title.-pc-small {
    font-size: 1.4rem;
  }
}
@media (width < 768px) {
  .p-lp-gift-title {
    font-size: 1.3rem;
  }
}

.p-lp-gift-text {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-top: 10px;
}
@media (width >= 768px) {
  .p-lp-gift-text {
    align-self: center;
    grid-row: 3;
  }
}
@media (width < 768px) {
  .p-lp-gift-text {
    font-size: 0.85rem;
    margin-top: 3px;
  }
}

.p-lp-catalog-item {
  display: grid;
  background: linear-gradient(135deg, #fff 0%, var(--warm-gold) 100%);
  padding: 40px 30px;
  margin-inline: auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(107, 114, 128, 0.1);
  border: 1px solid var(--premium-silver);
}
.p-lp-catalog-item + .p-lp-catalog-item {
  margin-top: 80px;
}
@media (width >= 768px) {
  .p-lp-catalog-item {
    grid-template-columns: 1fr 1.2fr;
    grid-auto-rows: auto;
    gap: 20px 10px;
  }
}

.p-lp-catalog-item__title {
  font-size: min(1.3rem, 5vw);
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  color: #a89557;
}
.p-lp-catalog-item__title span {
  display: block;
  margin-top: 8px;
  margin-bottom: 15px;
  font-size: 150%;
  font-weight: 600;
  line-height: 1.3;
}
@media (width >= 768px) {
  .p-lp-catalog-item__title {
    font-size: 1.4rem;
    align-self: end;
    grid-column: 2/3;
  }
  .p-lp-catalog-item__title span {
    font-size: 180%;
    margin-bottom: 0;
  }
}

@media (width >= 768px) {
  .p-lp-catalog-item__img {
    grid-column: 1/2;
    grid-row: 1/3;
  }
}

.p-lp-catalog-item__text {
  max-width: max-content;
  margin: 0 auto;
}
.p-lp-catalog-item__text li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-top: 15px;
}
.p-lp-catalog-item__text li::before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
}
.p-lp-catalog-item__text li span {
  display: inline;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 80%, var(--lp-marker-color) 85%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 1s ease;
}
.p-lp-catalog-item__text li span:nth-child(2) {
  transition-delay: 0.3s;
}
.p-lp-catalog-item__text li span:nth-child(3) {
  transition-delay: 0.6s;
}
.p-lp-catalog-item__text li span:nth-child(4) {
  transition-delay: 0.9s;
}
.p-lp-catalog-item__text li span:nth-child(5) {
  transition-delay: 1.2s;
}
.p-lp-catalog-item__text li span:nth-child(6) {
  transition-delay: 1.5s;
}
.p-lp-catalog-item__text li span.is-active {
  background-size: 100% 100%;
}

.p-lp-catalog-item__price {
  line-height: 1.5;
  margin-top: 15px;
  text-align: center;
}
.p-lp-catalog-item__price span {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--main-color);
}
.p-lp-catalog-item__price small {
  display: block;
}

.p-lp-catalog-item__button {
  display: block;
  margin: 20px auto 0;
  max-width: 400px;
  padding: 15px 0px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color02) 100%);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(212, 196, 168, 0.3);
  transition: all 0.3s ease;
}
.p-lp-catalog-item__button:hover {
  background: linear-gradient(135deg, var(--accent-color02) 0%, var(--accent-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 196, 168, 0.4);
}

.p-lp-info {
  padding-block: 60px;
  background-color: #fff;
}

.p-lp-info-body .p-cmn-section__body {
  justify-content: center;
}

.p-lp-howto-section {
  max-width: 960px;
  margin-inline: auto;
}
.p-lp-howto-section + .p-lp-howto-section {
  margin-top: 50px;
}

.p-lp-howto__title {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color02) 100%);
  color: #fff;
  padding: 10px 20px;
  box-shadow: 0 2px 8px rgba(212, 196, 168, 0.3);
}

.p-lp-howto__body {
  padding: 20px 30px;
  background: linear-gradient(135deg, #fff 0%, var(--warm-gold) 100%);
  border-radius: 0 0 10px 10px;
  border: 1px solid var(--premium-silver);
  border-top: none;
}

.p-lp-howto__list li {
  position: relative;
  padding-left: 2.5rem;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-top: 15px;
}
.p-lp-howto__list li .-number {
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 10px;
  line-height: 1;
  color: #fff;
  background-color: var(--main-color);
}

.p-lp-howto__notes {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 15px;
}

.p-lp-howto__table + .p-lp-howto__table {
  margin-top: 15px;
}
.p-lp-howto__table dt {
  font-weight: 600;
}