@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --color-def: #B9838C;
  --color-def-rgb: 185, 131, 140;
  --color-primary: #D08481;
  --color-primary-rgb: 107, 22, 39;
  --color-secondary: #A98667;
  --color-secondary-rgb: 169, 134, 103;
  --padding-inner: 40px;
  --number-font: "NotoSans", sans-serif;
}

body {
  &:has(.l-main-2025-holiday) {
    overflow: visible;
  }
}

p {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 1.4rem;
  }
}

.l-main-2025-holiday {
  img {
    height: auto;
  }
}

.breadcrumb {
  color: #fff;
}

.def-section {
  padding-inline: var(--padding-inner);
}
.def-section-inner {
  max-width: 700px;
  width: 100%;
  margin-inline: auto;
}
.def-section-inner-img {
  max-width: 400px;
  width: 100%;
  margin-inline: auto;
}
.def-heading {
  text-align: center;
  font-weight: 500;
  color: #B27A83;

  .heading-en {
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    line-height: 1.43;
  }

  .heading-jp {
    font-size: 12px;
    line-height: 1.8;
    padding-top: 10px;
  }
}
.def-indent-list {
  > li {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 0;
  }
}
.def-number {
  font-family: var(--number-font);
}
@media screen and (max-width: 768px) {
  .def-heading {
    .heading-en {
      font-size: 28px;
      line-height: 1.32;
    }

    .heading-jp {
      font-size: 12px;
      line-height: 2.2;
      padding-top: 0;
    }
  }
}

.text-link {
  text-decoration: underline;
  transition: all .3s;
  opacity: 1;
}
a.text-link:hover {
  text-decoration: none;
  opacity: .5;
}


.top-mv-img img {
    object-fit: cover;
}

/* リードコンテンツ */
.read-section {
  position: relative;
  padding-top: 60px;
  z-index: 10;

  &::before {
    content: '';
    display: block;
    width: 516px;
    height: 503px;
    background-image: url('../../images/limited/2025holiday/img_left_pc.png');
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
  }

  &::after {
    content: '';
    display: block;
    width: 514px;
    height: 471px;
    background-image: url('../../images/limited/2025holiday/img_right_pc.png');
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
  }
}
.read-content {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  z-index: 10;

  .heading-en {
    font-size: 24px;
  }
}
.read-heading {
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}
.read-top-txt {
  text-align: center;
  line-height: 2.31;
}

@media screen and (max-width: 768px) {
  .read-section {
    padding-top: 40px;

    &::before {
      width: 226px;
      height: 224px;
      background-image: url('../../images/limited/2025holiday/img_left_sp.png');
    }

    &::after {
      width: 204px;
      height: 199px;
      background-image: url('../../images/limited/2025holiday/img_right_sp.png');
    }
  }

  .read-content {
    .heading-en {
      font-size: 18px;
    }
  }
}

.product-detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px 70px;
}
.product-detail-content + .product-detail-content {
  margin-top: 60px;
}
.product-detail-content-bottom {
  margin-top: 40px;
}
.product-detail-swiper-thumbs {
  margin-top: 10px;
}
.product-slide-item {
  cursor: pointer;
}
.product-detail-buy {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  box-sizing: border-box;
  background: #fff;
  padding: 20px;
  margin-top: 20px;
}
.product-detail-label {
  max-width: 104px;
  width: 100%;
  height: auto;
  padding-bottom: 14px;
}
.product-detail-label-kairakuten {
  max-width: 211px;
  width: 100%;
  height: auto;
  padding-bottom: 14px;
}
.product-detail-label-kai {
  max-width: 141px;
  width: 100%;
  height: auto;
  padding-bottom: 14px;
}
.product-detail-name {
  color: var(--color-primary);
  font-size: 18px;
  margin-bottom: 20px;
}
.product-detail-price {
  font-size: 18px;
  margin-bottom: 20px;
}
.product-detail-about {
  font-size: 14px;
}
.product-detail-strong {
  font-weight: 500;
  margin-bottom: 20px;
}
.product-detail-attention {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
}

.product-recommend-block {
  p {
    line-height: 1.8;
  }
}
.product-item-heading {
  font-size: 22px;
  font-weight: 500;
  margin: 40px 0 20px;
  text-align: center;
}

.product-link {
  margin: 20px auto 0;
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: auto auto;
  width: max-content;
  min-width: 281px;
  column-gap: 10px;
  background-color: var(--color-def);
  border-radius: 100px;
  color: #fff;
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0;
  padding: 15px;
  transition: all .3s;
}

.swiper-wrapper img {
  height: auto;
}
.swiper-slide-thumb-active {
  opacity: .3;
}
@media screen and (min-width: 769px) {
  .product-detail-content {
    grid-template-columns: 300px 1fr;
  }
  .product-detail-content + .product-detail-content {
    margin-top: 50px;
  }
  .product-detail-buy {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
    background: transparent;
  }
}

/* variation */
.variation-section {
  padding-block: 80px;
  &.product-detail {
    background: #F4EAEB;
  }

  &.product-other {
    background: #FAF9F9;

    .def-heading {
      color: #6E6C70;
    }

    .product-section-row + .product-section-row {
      margin-top: 80px;
    }
  }

  .def-heading {
    margin-bottom: 60px;
  }
}
.variation-content {
  margin-top: 40px;
}
.variation-read-txt {
  text-align: center;
  font-weight: 500;
  margin-bottom: 20px;
}
.variation-btn-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  justify-content: center;
  max-width: 700px;
  margin-inline: auto;
  gap: 20px;
}
.variation-btn-item {
  padding: 20px 20px 40px;
  position: relative;
  display: grid;
  gap: 20px;
  grid-template-rows: subgrid;
  grid-row: span 3;
  background-size: 17px 9px;
  background-repeat: no-repeat;
  background-position: center bottom 20px;

  .heading-jp {
    padding-top: 0;
  }
}
.variation-btn-inner {
  display: contents;
}
.variation-btn-txt {
  font-size: 14px;
  line-height: 1.57;
  text-align: center;
}
.variation-btn-img {
  max-width: 200px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .variation-section {
    padding-block: 60px 40px;

    .def-heading {
      margin-bottom: 20px;
    }

    &.product-other {
      .product-section-row + .product-section-row {
        margin-top: 40px;
      }
    }
  }
  .variation-content {
    margin-top: 20px;
  }
}
@media screen and (max-width: 739px) {
  .variation-btn-item {
    grid-row: span 2;
    padding: 15px 20px 27px;
    gap: 10px;
    background-size: 12px 7px;
    background-position: center bottom 10px;

    .heading-en {
      font-size: 18px;
      line-height: 1.22;
    }

    .heading-jp {
      font-size: 10px;
    }
  }
  .variation-btn-inner {
    display: grid;
    align-items: center;
    grid-template-columns: 100px 1fr;
    column-gap: 10px;
    background-color: #fff;
    padding: 10px;
  }
  .variation-btn-txt {
    text-align: left;
    letter-spacing: 0;
    line-height: 1.36;
  }
}

/* product */
.product-section {
  position: relative;
  padding-block: 100px;
  z-index: 10;

  &.section-other {
    background-color: #EBEBEB;
    padding-bottom: 80px;

    .product-top-txt {
      margin-top: 40px;
    }

    .product-list {
      margin-top: 40px;
      gap: 0 min(40px, 2.77vw);
      > li {
        display: grid;
        align-items: center;
        grid-template-rows: subgrid;
        grid-row: span 6;
        gap: 0;
      }
    }

    .product-read-txt {
      margin-top: 20px;
    }

    .product-name {
      margin-top: 30px;
    }
  }
}
.product-section-row {
  + .product-section-row {
    margin-top: 40px;
  }
}
.product-content {
  max-width: 700px;
  margin-inline: auto;
}
.product-top-img {
  max-width: 137px;
  margin: 0 auto 20px;
}
.product-top-txt {
  text-align: center;
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: 0;
  margin-top: 20px;
}
.product-list {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0 min(80px, 5.55vw);
}
.product-swiper {
  max-width: 300px;
  margin-inline: auto;
  cursor: pointer;

  .swiper-pagination {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 18px;
    line-height: 1;
  }

  .swiper-pagination-bullet {
    margin-inline: 5px !important;
    background: #D9D9D9;
    opacity: 1;
  }
}
.product-name {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;

  .font-s {
    font-size: 14px;
    font-weight: 400;
  }
}
.product-price {
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.44;
  font-weight: 400;
  text-align: center;

  .font-s {
    font-size: 12px;
  }
}
.product-store-link {
  margin: 40px auto 0;
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: auto auto;
  width: max-content;
  min-width: 281px;
  column-gap: 10px;
  background-color: var(--color-def);
  border-radius: 100px;
  color: #fff;
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0;
  padding: 15px;
  transition: all .3s;

  &:hover, &:active {
    background-color: rgba(var(--color-def-rgb), .5);
  }

  .icon-inner {
    fill: #fff;
    transition: all .3s;
  }
}

.product-read-txt {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
.product-read-detail {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.72;
  letter-spacing: 0;
}
.product-banner-block {
  max-width: 400px;
  margin: 60px auto 0;

  a {
    transition: all .3s;
    &:hover, &:active {
      opacity: .8;
    }
  }
}

@media screen and (max-width: 768px) {
  .product-section {
    padding-block: 60px;
  }
  .product-top-txt {
    font-size: 14px;
    line-height: 1.85;
  }
  .product-list {
    margin-top: 20px;
    padding-inline: 20px;
    row-gap: 40px;
  }
  .product-howto-btn {
    margin-top: 60px;
    background-size: 14px 12px;
    background-position: center right 28px;
  }
  .product-store-link {
    max-width: 350px;
  }
}

/* modal */
.howto-modal {
  display: none;
}
.howto-modal-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  display: grid;
  place-content: center;
  padding-inline: 22px;
}
.howto-modal-bg {
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .25);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  cursor: pointer;
}
.howto-modal-body {
  max-width: 840px;
  background-color: #fff;
  position: relative;
  z-index: 2;
  padding: 20px 20px 60px;
  border-radius: 20px;
}
.howto-modal-btn {
  display: grid;
  place-content: center;
  width: 36px;
  height: 36px;
  font-size: 26px;
  margin-inline: auto 0;
}
.howto-modal-wrap {
  margin-top: 40px;
  padding-inline: 40px;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 260px;
  gap: 30px;
}
.howto-modal-detail {
  * {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.75;
  }
}
@media screen and (max-width: 768px) {
  .howto-modal-body {
    .heading-en {
      font-size: 30px;
    }
    .heading-jp {
      font-size: 12px;
    }
  }
  .howto-modal-wrap {
    grid-template-columns: auto;
    padding-inline: 10px;
  }
}


/* status */
.js-fade-item {
  opacity: 0;
  transform: translateY(10px);
  transition: all .8s;
  &.is-fade {
    opacity: 1;
    transform: translateY(0);
  }
}

.to-top {
  z-index: 999;
}