@charset "UTF-8";
/* ========================================
  コンテンツ
 ========================================= */
.content {
  margin: 0 auto;
  max-width: 750px;
}
.content h2 {
  margin-bottom: 0;
}
.content .item {
  margin-bottom: 60px;
}
.content .item__name {
  padding: 30px 0;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background-color: #3b3b3b;
}
.content .price-info {
  margin-bottom: 4em;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.5;
}
.content .cta-single .price-info {
  margin-bottom: 1em;
}
.content .price-info .price-info__price {
  font-size: 2.6rem;
  font-weight: 700;
}
.content .price-info .price-info__tax {
  font-size: 1.4rem;
}
.content .price-info .price-info__sale {
  margin-right: 0.5em;
  font-weight: 700;
}

@media (width < 768px) {
  .content .item {
    margin-bottom: 16vw;
  }
  .content .item__name {
    padding: 6.4vw 0;
    font-size: 2.2rem;
  }
  .content .price-info {
    margin-bottom: 2em;
    font-size: 1.6rem;
  }
  .content .price-info .price-info__price {
    font-size: 2.2rem;
  }
}
/* ========================================
  ページトップ
========================================= */
#page-top {
  text-align: center;
}
#page-top a {
  display: inline-block;
  padding: 1em;
  font-weight: 700;
  border: 1px solid #595757;
}
#page-top a:hover {
  color: #fff;
  background: #595757;
}

/* ========================================
  CTA
 ========================================= */
/* CTA 共通 */
.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.cta .btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 8px;
  padding: 0.5em;
  width: 320px;
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
  background-color: #3b3b3b;
  border-radius: 37px;
  cursor: pointer;
  transition: all 0.3s;
}
.cta .btn-cart:hover {
  background-color: #000;
}
.cta .good-value {
  position: relative;
}
.cta .good-value::before {
  content: "＼1番お得！／";
  display: block;
  position: absolute;
  top: -1.5em;
  left: 50%;
  font-size: 2.0rem;
  font-weight: 700;
  color: #B9647B;
  transform: translateX(-50%);
}

.cta .txt-point {
  padding: 0.5em;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
  color: #3b3b3b;
  background-color: #E9D9AB;
  border-radius: 50%;
}
.cta .txt-point span {
  font-size: 2.4rem;
}
.cta .txt-buy {
  font-weight: 700;
  font-feature-settings: "palt";
}
.cta .txt-buy span {
  font-size: 2.6rem;
  padding-right: 2px;
}

.cta-single {
  flex-wrap: wrap;
}
.cta-single .btn-cart {
  font-size: 1.6rem;
}
.cta-single .txt-buy span {
  font-size: 2.2rem;
}
.cta-single .txt-point {
  font-size: 1.4rem;
}
.cta-single .txt-point span {
  font-size: 2.2rem;
}

.single-img {
  margin-top: 80px;
}

@media (width < 768px) {
  .cta {
    flex-direction: column;
    gap: 5.33vw;
    margin-top: 8vw;
  }
  .cta .btn-cart {
    margin: 0 auto;
    padding: 3.73vw;
    gap: 0 2.13vw;
    width: 80%;
    font-size: 1.6rem;
    border-radius: 10.667vw;
  }
  .cta .good-value {
    margin-top: 5.333vw;
    width: 80%;
  }
  .cta .good-value::before {
    font-size: 1.8rem;
  }
  .cta .good-value .btn-cart {
    width: 100%;
  }
  .cta .txt-point {
    font-size: 1.4rem;
  }
  .cta .txt-point span {
    font-size: 2.0rem;
  }
  .cta .txt-buy span {
    font-size: 2.2rem;
  }

  .cta-single {
    flex-direction: row;
    gap: 2.67vw;
    margin: 8vw auto 0;
    width: 90%;
  }
  .cta-single li {
    width: calc(50% - 1.335vw);
  }
  .cta-single .btn-cart {
    gap: 0 1.067vw;
    width: 100%;
    font-size: 1.1rem;
  }
  .cta-single .txt-point {
    font-size: 1.0rem;
  }
  .cta-single .txt-point span {
    font-size: 1.4rem;
  }
  .cta-single .txt-buy {
    line-height: 1.2;
  }
  .cta-single .txt-buy span {
    font-size: 1.4rem;
  }

  .single-img {
    margin: 13.333vw auto 0;
    width: 90%;
  }
}
/* ========================================
  エフェクト
 ========================================= */
/* 光るボタン */
.shiny-btn {
  position: relative;
  overflow: hidden;
}

.shiny-btn::after {
  content: "";
  position: absolute;
  top: -10%;
  left: -20%;
  width: 84px;
  height: 100%;
  transform: scale(2) rotate(20deg) translate3d(0, 0, 0);
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.5) 100%, rgba(255, 255, 255, 0) 0);
  -webkit-animation-name: shiny;
  animation-name: shiny;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@media (width < 768px) {
  #container main > .inner {
    padding: 0;
  }
  .shiny-btn::after {
    width: 11.2vw;
  }
}
@-webkit-keyframes shiny {
  0% {
    left: -20%;
  }
  10% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
@keyframes shiny {
  0% {
    left: -20%;
  }
  10% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
/* アップダウン */
.updown {
  -webkit-animation-name: updown1;
  animation-name: updown1;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes updown1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes updown1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
/* ========================================
  swiper
 ========================================= */
.swiper-wrap.color {
  position: relative;
  overflow: hidden;
}
.swiper-wrap.color .swiper-pagination-bullets {
  position: static;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 10px 0 40px;
  padding: 4px 0;
  box-sizing: border-box;
}
.swiper-pagination-bullet-active {
  background: #595757 !important;
}

@media (width < 750px) {
  .swiper-wrap.color .swiper-pagination-bullets {
    margin-bottom: 2.67vw 0 5.33vw;
  }
}

/* ========================================
  注意事項
 ========================================= */
.attention {
  margin-top: 40px;
  padding: 40px;
  background-color: #eee;
}

.attention__heading {
  margin: 0 0 1em;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}

.attention__text {
  line-height: 1.7;
}
.attention__text a {
  color: #B9647B;
}
.attention__text p + p {
  margin-top: 1em;
}
.attention__text ul {
  margin-bottom: 1em;
}
.attention__text ul li {
  padding: 0.5em 1em;
}
.attention__text ul li:not(:last-of-type) {
  border-bottom: 1px dashed #595757;
}
.attention__text ul li::before {
  content: "・";
  display: inline-block;
  text-indent: -1em;
}

@media (width < 820px) {
  .attention {
    margin: 10.67vw 5.4vw 0;
    padding: 8vw 5.33vw;
    font-size: 1.4rem;
  }
  .attention__heading {
    margin: 0 0 0.5em;
    font-size: 2.0rem;
  }
}