@charset "UTF-8";
.page__header {
  background-image: url(../img/products/header_bg.jpg);
}

.lead__text {
  padding-bottom: 50px;
}
@media screen and (max-width: 1280px) {
  .lead__text {
    padding-bottom: 2.6042vw;
  }
}
@media screen and (max-width: 810px) {
  .lead__text {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 520px) {
  .lead__text {
    padding-bottom: 25px;
  }
}

.slide__wrapper {
  overflow: hidden;
}
.slide__wrapper .swiper {
  padding: 80px 0;
}
@media screen and (max-width: 520px) {
  .slide__wrapper .swiper {
    padding: 40px 0;
  }
}

.swiper-wrapper {
  transition-timing-function: ease;
}

.swiper-slide {
  z-index: 1;
}
.swiper-slide img {
  width: 100%;
  transition: all 0.1s 0s;
}
.swiper-slide.swiper-slide-active {
  z-index: 2;
}
.swiper-slide.swiper-slide-active img {
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
  transform: scale(1.2);
  transition: all 0.5s 1s;
}
@media screen and (max-width: 520px) {
  .swiper-slide.swiper-slide-active img {
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.3);
  }
}

.swiper__button {
  position: absolute;
  top: calc(50% - 60px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 60%;
}
@media screen and (max-width: 810px) {
  .swiper__button {
    width: 86%;
  }
}
@media screen and (max-width: 520px) {
  .swiper__button {
    top: calc(50% - 20px);
  }
}
.swiper__button .swiper-button-next,
.swiper__button .swiper-button-prev {
  background-color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background-repeat: no-repeat;
  background-position-y: center;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
  background-size: 16px 25px;
  transition: background-color 0.3s;
}
@media screen and (max-width: 520px) {
  .swiper__button .swiper-button-next,
.swiper__button .swiper-button-prev {
    width: 40px;
    height: 40px;
    background-size: 12.8px 20px;
  }
}
.swiper__button .swiper-button-next:hover,
.swiper__button .swiper-button-prev:hover {
  background-color: #ef9999;
}
.swiper__button .swiper-button-prev {
  background-image: url(../img/common/icon_left_pink.svg);
  left: -30px;
  background-position-x: 45%;
}
@media screen and (max-width: 520px) {
  .swiper__button .swiper-button-prev {
    left: -20px;
  }
}
.swiper__button .swiper-button-prev:hover {
  background-image: url(../img/common/icon_left_white.svg);
}
.swiper__button .swiper-button-prev::after {
  content: "";
}
.swiper__button .swiper-button-next {
  background-image: url(../img/common/icon_right_pink.svg);
  right: -30px;
  background-position-x: 55%;
}
@media screen and (max-width: 520px) {
  .swiper__button .swiper-button-next {
    right: -20px;
  }
}
.swiper__button .swiper-button-next:hover {
  background-image: url(../img/common/icon_right_white.svg);
}
.swiper__button .swiper-button-next::after {
  content: "";
}

.slide__wrapper .swiper-pagination {
  position: static;
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 520px) {
  .slide__wrapper .swiper-pagination {
    margin-top: 30px;
  }
}
.slide__wrapper .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #c9caca;
  display: inline-block;
  opacity: 1;
  margin-left: 15px;
}
.slide__wrapper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fcc3c1;
}
.slide__wrapper .swiper-pagination .swiper-pagination-bullet:first-child {
  margin-left: 0;
}

.section__introduction {
  padding-top: 100px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1280px) {
  .section__introduction {
    padding-top: 5.2083vw;
    padding-bottom: 4.6875vw;
  }
}
@media screen and (max-width: 810px) {
  .section__introduction {
    padding-top: 100px;
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 520px) {
  .section__introduction {
    padding-top: 50px;
    padding-bottom: 45px;
  }
}
.section__introduction .polygon {
  width: 100vw;
  height: 27.5%;
  top: 0;
  right: 110px;
  background-image: linear-gradient(90deg, #fff7f1 0%, #ffecdc 100%);
  border-radius: 0 8px 8px 0;
}
@media screen and (max-width: 1164px) {
  .section__introduction .polygon {
    right: 10%;
  }
}
@media screen and (max-width: 810px) {
  .section__introduction .polygon {
    width: 100%;
    right: 0;
    border-radius: 0;
    height: 100%;
  }
}

.introduction__inner.has__polygon {
  z-index: 10;
}

.introduction__head {
  text-align: center;
  margin-bottom: 45px;
}
@media screen and (max-width: 1280px) {
  .introduction__head {
    margin-bottom: 2.3438vw;
  }
}
@media screen and (max-width: 810px) {
  .introduction__head {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 520px) {
  .introduction__head {
    margin-bottom: 20px;
  }
}

.introduction__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.introduction__column {
  width: 46.3636%;
  margin-top: 60px;
}
@media screen and (max-width: 1280px) {
  .introduction__column {
    margin-top: 3.125vw;
  }
}
@media screen and (max-width: 810px) {
  .introduction__column {
    width: 100%;
    margin-top: 60px;
  }
}
@media screen and (max-width: 520px) {
  .introduction__column {
    margin-top: 45px;
  }
}
.introduction__column:nth-child(1), .introduction__column:nth-child(2) {
  margin-top: 0;
}
@media screen and (max-width: 810px) {
  .introduction__column:nth-child(2) {
    margin-top: 60px;
  }
}
@media screen and (max-width: 520px) {
  .introduction__column:nth-child(2) {
    margin-top: 30px;
  }
}
.introduction__column h3 {
  text-align: center;
  font-weight: 300;
  margin-bottom: 20px;
}
@media screen and (max-width: 1280px) {
  .introduction__column h3 {
    margin-bottom: 1.0417vw;
  }
}
@media screen and (max-width: 810px) {
  .introduction__column h3 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 520px) {
  .introduction__column h3 {
    margin-bottom: 10px;
  }
}
.introduction__column p {
  line-height: 2.2;
}

.introduction__img__box {
  margin-bottom: 30px;
}
@media screen and (max-width: 1280px) {
  .introduction__img__box {
    margin-bottom: 1.5625vw;
  }
}
@media screen and (max-width: 810px) {
  .introduction__img__box {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 520px) {
  .introduction__img__box {
    margin-bottom: 15px;
  }
}
.introduction__img__box img {
  width: 100%;
}

.section__retail {
  padding-top: 60px;
  padding-bottom: 90px;
}
@media screen and (max-width: 1280px) {
  .section__retail {
    padding-top: 3.125vw;
    padding-bottom: 4.6875vw;
  }
}
@media screen and (max-width: 810px) {
  .section__retail {
    padding-top: 60px;
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 520px) {
  .section__retail {
    padding-top: 30px;
    padding-bottom: 45px;
  }
}
.section__retail .polygon {
  width: 100vw;
  height: 27.2727%;
  top: 0;
  left: 110px;
  background-image: linear-gradient(90deg, #fff7f1 0%, #ffecdc 100%);
  border-radius: 8px 0 0 8px;
}
@media screen and (max-width: 1164px) {
  .section__retail .polygon {
    left: 10%;
  }
}
@media screen and (max-width: 810px) {
  .section__retail .polygon {
    width: 100%;
    left: 0;
    border-radius: 0;
    height: 100%;
  }
}

.retail__inner.has__polygon {
  z-index: 10;
}

.retail__head {
  text-align: center;
  margin-bottom: 45px;
}
@media screen and (max-width: 1280px) {
  .retail__head {
    margin-bottom: 2.3438vw;
  }
}
@media screen and (max-width: 810px) {
  .retail__head {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 520px) {
  .retail__head {
    margin-bottom: 20px;
  }
}

.retail__lead {
  text-align: center;
  margin-bottom: 45px;
}
@media screen and (max-width: 1280px) {
  .retail__lead {
    margin-bottom: 2.3438vw;
  }
}
@media screen and (max-width: 810px) {
  .retail__lead {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 520px) {
  .retail__lead {
    margin-bottom: 20px;
  }
}

.retail__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.retail__column {
  position: relative;
  width: 27.2727%;
  margin-bottom: 60px;
  padding-bottom: 70px;
}
@media screen and (max-width: 1280px) {
  .retail__column {
    margin-bottom: 3.125vw;
  }
}
@media screen and (max-width: 810px) {
  .retail__column {
    width: 46.5%;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 520px) {
  .retail__column {
    width: 100%;
    margin-bottom: 45px;
    padding-bottom: 0;
  }
}

.retail__img__box {
  margin-bottom: 30px;
}
@media screen and (max-width: 1280px) {
  .retail__img__box {
    margin-bottom: 1.5625vw;
  }
}
@media screen and (max-width: 810px) {
  .retail__img__box {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 520px) {
  .retail__img__box {
    margin-bottom: 15px;
  }
}
.retail__img__box img {
  width: 100%;
}

@media screen and (max-width: 520px) {
  .retail__text__box {
    margin-bottom: 15px;
  }
}
.retail__text__box h3 {
  font-weight: 300;
  margin-bottom: 20px;
}
@media screen and (max-width: 1280px) {
  .retail__text__box h3 {
    margin-bottom: 1.0417vw;
  }
}
@media screen and (max-width: 810px) {
  .retail__text__box h3 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 520px) {
  .retail__text__box h3 {
    margin-bottom: 10px;
  }
}
.retail__text__box p {
  line-height: 2.2;
}

.retail__data {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 520px) {
  .retail__data {
    position: static;
  }
}
.retail__data .price__box {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.retail__data .price__box dd {
  text-align: right;
}

.retail__list li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 30px;
  line-height: 2.2;
}
@media screen and (max-width: 1280px) {
  .retail__list li {
    margin-bottom: 1.5625vw;
  }
}
@media screen and (max-width: 810px) {
  .retail__list li {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 520px) {
  .retail__list li {
    margin-bottom: 15px;
  }
}
.retail__list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}
/*# sourceMappingURL=maps/products.css.map */