@charset "UTF-8";
.fx−bright {
  opacity: 0;
  transition: opacity;
  transition-delay: 0.5s;
  transition-duration: 2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.inview .fx−bright {
  opacity: 1;
  animation: bright 1.5s 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes bright {
  0% {
    filter: brightness(1000%) blur(50px);
  }
  100% {
    filter: brightness(100%) blur(0);
  }
}
.fx-delay05 {
  transition-delay: 0.5s;
}

.fx-delay06 {
  transition-delay: 0.6s;
}

.fx-delay07 {
  transition-delay: 0.7s;
}

.fx-delay08 {
  transition-delay: 0.8s;
}

.fx-delay09 {
  transition-delay: 0.9s;
}

.fx-delay10 {
  transition-delay: 1s;
}

.fx-delay11 {
  transition-delay: 1.1s;
}

.fx-delay12 {
  transition-delay: 1.2s;
}

body {
  background: linear-gradient(to right, #e9dfd1 0%, #fcf8ee 50%, #e9dfd1 100%);
}
@media only screen and (max-width: 640px) {
  body {
    background-size: 200%;
  }
}

#main-content {
  width: 100%;
  color: #333;
  padding: 0;
  font-weight: 300;
  overflow: hidden;
}
#main-content p {
  letter-spacing: 0.05em;
}
#main-content p.small {
  font-size: 0.7%;
}
#main-content .note {
  margin-top: 1em;
  font-size: min(2.5vw, 12px);
}
#main-content .sup {
  position: relative;
  top: -0.1em;
  font-size: 75%;
  vertical-align: top;
}

.pc {
  display: block;
}

.sp,
.sp-img {
  display: none !important;
}

@media only screen and (max-width: 640px) {
  .sp {
    display: block !important;
  }

  span.sp {
    display: inline !important;
  }

  .pc {
    display: none;
  }
}
#hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #EBF0FF;
  background: linear-gradient(90deg, #ebf0ff 15%, #d9fff9 50%, #ffe9f3 85%);
  background: #EBF0FF;
  background: linear-gradient(90deg, #ebf0ff 15%, #d9fff9 50%, #ffe9f3 85%);
  background: #EBF0FF;
  background: linear-gradient(90deg, #ebf0ff 15%, #d9fff9 50%, #ffe9f3 85%);
  background: #EBF0FF;
  background: linear-gradient(90deg, #ebf0ff 15%, #d9fff9 50%, #ffe9f3 85%);
}
.hero {
  margin: 0;
  position: relative;
  width: 100%;
  height: 60vw;
  z-index: 1;
}
@media only screen and (max-width: 640px) {
  .hero {
    height: 160vw;
  }
}
.hero li {
  position: absolute;
  width: 33.4%;
}
.hero .hero01 {
  top: 0;
  left: 0;
}
@media only screen and (max-width: 640px) {
  .hero .hero01 {
    width: 100vw;
  }
}
.hero .hero02 {
  top: 0;
  left: 33.3333333333%;
}
@media only screen and (max-width: 640px) {
  .hero .hero02 {
    top: 80vw;
    left: 0vw;
    width: 50vw;
  }
}
.hero .hero03 {
  top: 0;
  right: 0;
}
@media only screen and (max-width: 640px) {
  .hero .hero03 {
    top: 80vw;
    left: 50;
    width: 50vw;
  }
}

.hero-title {
  position: absolute;
  top: 54.4vw;
  left: 0;
  width: 100%;
  height: 5.7vw;
  z-index: 10;
  background: #E73477;
  background: linear-gradient(90deg, rgba(231, 52, 119, 0.9) 0%, rgba(226, 10, 50, 0.9) 20%, rgba(226, 10, 50, 0.9) 80%, rgba(231, 52, 119, 0.9) 100%);
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 1.5s ease, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media only screen and (max-width: 640px) {
  .hero-title {
    width: 100%;
    height: 16vw;
    top: 80vw;
  }
}
.hero-title .inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}
@media only screen and (max-width: 640px) {
  .hero-title .inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.hero-title h1 {
  margin-top: 0.1em;
  margin-left: 3em;
  font-family: "Metropolis", sans-serif;
  font-size: 3.5vw;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
}
@media only screen and (max-width: 640px) {
  .hero-title h1 {
    margin-left: 0;
    font-size: 5.5vw;
  }
}
.hero-title .hero-limited {
  margin-left: 2em;
  padding: 0.3em 0.9em;
  font-size: 15px;
  line-height: 1;
  color: #fff;
  text-align: center;
  border: solid 1px #fff;
  border-radius: 30px;
}
@media only screen and (max-width: 640px) {
  .hero-title .hero-limited {
    margin-top: -1.2em;
    margin-left: 0;
    font-size: 2.8vw;
  }
}

.inview .hero-title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1.2s;
}
.inview .hero-title .inner {
  opacity: 1;
  transition-delay: 2s;
}

.hero-about {
  padding: 80px 0 100px;
}
@media only screen and (max-width: 640px) {
  .hero-about {
    padding: 50px 0 40px;
  }
}
.hero-about p {
  font-size: min(3.2vw, 16px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s 2.2s ease, transform 1s 2.2s ease;
}
.inview .hero-about p {
  opacity: 1;
  transform: translateY(0);
}

/* .set
----------------------------------------------------*/
.set {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
  background: #dfe5ef;
  overflow: none;
}
@media only screen and (max-width: 640px) {
  .set {
    display: block;
    padding-bottom: 40px;
  }
}
.set .set-img {
  position: relative;
  width: 100%;
  opacity: 0;
  transition: opacity 2s;
}
@media only screen and (max-width: 640px) {
  .set .set-img {
    width: 200%;
  }
}
@media only screen and (max-width: 640px) {
  .set .set-url {
    width: 200%;
  }
}
.set .set-tx {
  position: relative;
  margin-left: -50%;
  padding: 10px 0;
  right: 0;
  width: 50%;
}
.set .set-tx .inner {
  padding: 0 2% 0 10%;
  box-sizing: border-box;
}
@media only screen and (max-width: 640px) {
  .set .set-tx {
    width: 100%;
    margin: 0;
  }
  .set .set-tx .inner {
    padding: 20px 5% 0;
    width: 100%;
  }
}
.set.inview .set-url,
.set.inview .set-title,
.set.inview h2,
.set.inview h3,
.set.inview p,
.set.inview .set-img,
.set.inview .price-info,
.set.inview .btn,
.set.inview .check-list {
  opacity: 1;
  transform: translateY(0);
}
.set .set-title,
.set h2,
.set h3 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s 0.5s ease, transform 1s 0.5s ease;
}
.set .set-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center;
}
.set .set-title-tx {
  margin-right: 1em;
}
.set .set-title-badge {
  padding-right: 10px;
  width: 70px;
  flex-shrink: 0;
}
@media only screen and (max-width: 640px) {
  .set .set-title-badge {
    padding-right: 0;
    width: 18vw;
  }
}
.set p,
.set .price-info,
.set .btn {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s 1s ease, transform 1s 1s ease;
}
.set h2 {
  margin: 0;
  font-family: Metropolis, sans-serif;
  font-size: min(5vw, 50px);
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.1em;
  color: #d11545;
}
@media only screen and (max-width: 640px) {
  .set h2 {
    margin-top: 0.1em;
    font-size: 8vw;
  }
}
.set h2 span {
  font-size: min(3vw, 15px);
  font-weight: 500;
  line-height: 2;
  text-align: left;
  letter-spacing: 0.1em;
}
.set h3 {
  margin-top: 0.3em;
  font-size: min(3vw, 14px);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #d11545;
}
.set p {
  margin-top: 2em;
  font-size: min(2vw, 15px);
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 640px) {
  .set p {
    font-size: 3.4vw;
    text-align: justify;
  }
}
.set .price-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 2em;
}
.set .price {
  font-size: 16px;
  font-weight: 500;
  color: #d11545;
  letter-spacing: 0.1em;
}
.set .price em {
  font-family: Metropolis, sans-serif;
  font-size: 200%;
  font-style: normal;
}
@media only screen and (max-width: 640px) {
  .set .price em {
    font-size: 200%;
  }
}
.set .free-shipping {
  display: inline-block;
  position: relative;
  margin-left: 20px;
  padding: 3px 10px;
  font-size: 14px;
  font-weight: 500;
  color: #d11545;
  border: solid 2px #d11545;
  border-radius: 4px;
}

.check-list {
  margin-top: 3em;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s 1s ease, transform 1s 1s ease;
}
@media only screen and (max-width: 640px) {
  .check-list {
    margin-top: 2em;
  }
}
.check-list li {
  position: relative;
  margin-top: 1em;
  margin-left: 1.7em;
  font-size: min(3.6vw, 15px);
  font-weight: 400;
  list-style: none;
}
@media only screen and (max-width: 640px) {
  .check-list li {
    font-size: 3.6vw;
  }
}
.check-list li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: -1.5em;
  display: inline-block;
  width: 17px;
  height: 15px;
  background: url(../check_01.png) no-repeat;
  background-size: 100%;
}
@media only screen and (max-width: 640px) {
  .check-list li::before {
    top: 7px;
  }
}
.set02 .check-list li::before {
  background: url(../check_02.png) no-repeat;
  background-size: 100%;
}
.set03 .check-list li::before {
  background: url(../check_03.png) no-repeat;
  background-size: 100%;
}

.set02 {
  background: #e1f1f5;
}
.set02 .set-tx {
  right: 45%;
}
.set02 .set-tx h2, .set02 .set-tx h3, .set02 .set-tx .price, .set02 .set-tx .free-shipping {
  color: #106961;
}
.set02 .free-shipping {
  border: solid 2px #106961;
}
@media only screen and (max-width: 640px) {
  .set02 .set-img img {
    transform: translateX(-50%);
  }
  .set02 .set-tx {
    right: 0;
  }
}

.set03 {
  background: #fbebec;
}
.set03 .set-tx h2, .set03 .set-tx h3, .set03 .set-tx .price, .set03 .set-tx .free-shipping {
  color: #cd2e88;
}
.set03 .free-shipping {
  border: solid 2px #cd2e88;
}

.set-item {
  padding-bottom: 120px;
  background: #DFE5EF;
  background: linear-gradient(180deg, #dfe5ef 25%, #e1f1f5 50%, #fbebec 75%);
}
.set-item .inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
  padding-top: 120px;
  width: 90%;
  max-width: 1150px;
}
@media only screen and (max-width: 640px) {
  .set-item .inner {
    display: block;
    padding-top: 10px;
    width: 100%;
  }
}

.item {
  margin: 0 3%;
  width: 44%;
}
@media only screen and (max-width: 640px) {
  .item {
    margin: 0;
    width: 100%;
  }
}
.item.inview .item-ph,
.item.inview .item-tx,
.item.inview .icon {
  opacity: 1;
  transform: translateY(0);
}
.item .item-ph {
  width: 100%;
  max-width: 510px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
@media only screen and (max-width: 640px) {
  .item .item-ph {
    margin: 0 auto;
    width: 90%;
  }
}
.item .item-tx {
  margin-top: 10px;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s 0.3s ease, transform 1s 0.3s ease;
}
@media only screen and (max-width: 640px) {
  .item .item-tx {
    padding: 0;
    margin: 20px auto 0;
    width: 90%;
    text-align: center;
  }
}
.item .item-tx .badge {
  display: inline-block;
  margin-bottom: 5px;
  padding: 2px 8px;
  font-size: min(3vw, 15px);
  border: solid 1px #333;
}
@media only screen and (max-width: 640px) {
  .item .item-tx .badge {
    margin-bottom: 10px;
  }
}
.item .item-tx h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #333;
}
@media only screen and (max-width: 640px) {
  .item .item-tx h3 {
    font-size: 120%;
    text-align: center;
  }
}
.item .item-tx h4 {
  margin-top: 0.5em;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #333;
  font-weight: 300;
  line-height: 1.5;
}
@media only screen and (max-width: 640px) {
  .item .item-tx h4 {
    font-size: 90%;
    text-align: center;
  }
}
.item .item-tx p {
  margin-top: 1.5em;
  font-size: min(3.5vw, 15px);
  line-height: 1.9;
}
@media only screen and (max-width: 640px) {
  .item .item-tx p {
    margin-left: 0.5em;
    text-align: justify;
  }
}
.item p.note {
  margin-top: 1em;
  font-size: 12px;
  line-height: 1.8;
}
@media only screen and (max-width: 640px) {
  .item p.note {
    margin: 1em auto 0;
    width: 90%;
  }
}
.item .item-color,
.item .item-fig {
  margin: 30px auto 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
}
@media only screen and (max-width: 640px) {
  .item .item-color,
.item .item-fig {
    width: 90%;
  }
}
.item .item-color .inner,
.item .item-fig .inner {
  margin: 0 auto;
  padding: 25px 0;
  width: 75%;
}
.item .item-fig .inner {
  margin: 0 auto;
  padding: 40px;
  width: 80%;
}
.item .item-fig-tx {
  width: 100%;
}
.item .item-fig-tx h5 {
  margin-top: 1em;
  font-size: 17px;
  text-align: center;
  color: #dd585a;
}
.item .item-fig-tx p {
  margin-top: 1em;
  font-size: 14px;
  text-align: center;
}

.icon {
  margin-top: 1em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s 0.6s ease, transform 1s 0.3s ease;
}
@media only screen and (max-width: 640px) {
  .icon {
    -ms-flex-pack: center;
    justify-content: center;
    margin: 1em auto 0;
    width: 90%;
  }
}
.icon li {
  margin-top: 10px;
  margin-right: 10px;
  padding: 2px 15px 3px;
  font-size: min(3vw, 14px);
  border: solid 1px #333;
  border-radius: 20px;
}

.icon + .icon {
  margin-top: 0;
}

#item02 {
  margin-top: 400px;
}

#item03 {
  margin-top: 100px;
}

#item04 {
  margin-top: 150px;
}

#item05 {
  margin-top: -300px;
}

#item06 {
  margin-top: 100px;
}

#item07 {
  margin-top: -60px;
}

#item08 {
  margin-top: 110px;
}

#item09 {
  margin-top: 100px;
}

@media only screen and (max-width: 640px) {
  #item01 {
    margin-top: 60px;
  }

  #item02,
#item03,
#item04,
#item05,
#item06,
#item07,
#item08,
#item09 {
    margin-top: 80px;
  }
}
.btn {
  margin-top: 20px;
  font-size: 16px;
  line-height: 60px;
  text-align: center;
  color: #fff;
}
.btn a {
  display: block;
  width: 100%;
  height: 60px;
  text-align: center;
  color: #fff;
  background: #d11545;
  border-radius: 5px;
  transition: 0.15s linear;
  box-sizing: border-box;
}
.set02 .btn a, #coffret02 .btn a {
  background: #106961;
}
.set03 .btn a, #coffret03 .btn a {
  background: #cd2e88;
}
.btn a:hover {
  opacity: 0.6;
  cursor: pointer;
}
.btn p.note {
  margin: 0;
  font-size: 0.7em;
  line-height: 1.5;
  text-align: center;
  color: #b58e65 !important;
}

.btn-buy a {
  width: 100%;
  max-width: 400px;
}

@media only screen and (max-width: 640px) {
  .btn {
    font-size: 100%;
    line-height: 50px;
  }
  .btn a {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 50px;
  }
  .btn p.note {
    margin: 0;
    line-height: 1.5;
    text-align: center;
    color: #b58e65 !important;
  }
}
#products {
  background: #B2C3E9;
  background: linear-gradient(135deg, rgba(178, 195, 233, 0.8) 15%, rgba(151, 214, 204, 0.8) 50%, rgba(246, 188, 214, 0.8) 90%);
  padding-bottom: 20px;
}
#products .inner {
  margin: 0 auto;
  width: 90%;
  max-width: 1000px;
}
@media only screen and (max-width: 640px) {
  #products .inner {
    width: 97%;
  }
}
@media only screen and (max-width: 640px) {
  #products {
    padding-bottom: 30px;
  }
}
#products .products-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 120px;
}
@media only screen and (max-width: 640px) {
  #products .products-title {
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 60px;
  }
}
#products .products-title-tx {
  margin-left: 80px;
  margin-right: 1em;
}
@media only screen and (max-width: 640px) {
  #products .products-title-tx {
    margin-left: 20px;
  }
}
#products .products-title-badge {
  padding-right: 10px;
  padding-bottom: 30px;
  width: 110px;
  flex-shrink: 0;
}
@media only screen and (max-width: 640px) {
  #products .products-title-badge {
    margin-top: 1em;
    margin-left: 1.2em;
    width: 25vw;
  }
}
#products h2 {
  margin: 0;
  font-family: Metropolis, sans-serif;
  font-size: min(11vw, 50px);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
}
@media only screen and (max-width: 640px) {
  #products h2 {
    text-align: left;
  }
}
#products h3 {
  padding-top: 1em;
  font-size: min(3vw, 16px);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1em;
  color: #fff;
}
@media only screen and (max-width: 640px) {
  #products h3 {
    text-align: left;
  }
}
#products .sns {
  margin-top: 150px;
}
@media only screen and (max-width: 640px) {
  #products .sns {
    margin-top: 100px;
  }
}

.product-info {
  position: relative;
  margin-top: 120px;
  padding: 50px 1% 50px 1%;
  width: 100%;
  border-radius: 60px;
  background: #fff;
  box-sizing: border-box;
  border: solid 10px #dfe5ef;
}
@media only screen and (max-width: 640px) {
  .product-info {
    margin-top: 40px;
    padding: 50px 1% 10px 1%;
    border: solid 6px #dfe5ef;
  }
  .product-info + .product-info {
    margin-top: 80px;
  }
}
.product-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-10px, -10px);
  width: 280px;
  height: 180px;
  background: url(../ribbon_01.png) no-repeat;
  background-size: 100%;
}
@media only screen and (max-width: 640px) {
  .product-info::before {
    width: 200px;
    transform: translate(-10px, -10px);
  }
}
@media only screen and (max-width: 640px) {
  .product-info {
    padding-top: 70px;
    width: 100%;
  }
}
.product-info .container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
@media only screen and (max-width: 640px) {
  .product-info .container {
    display: block;
    padding: 20px 2% 60px 2%;
  }
}
.product-info .product-ph {
  width: 48%;
  max-width: 500px;
}
@media only screen and (max-width: 640px) {
  .product-info .product-ph {
    margin: 0 auto;
    width: 100%;
    z-index: 10;
  }
}
.product-info .product-tx {
  position: relative;
  width: 53%;
  z-index: 1;
}
@media only screen and (max-width: 640px) {
  .product-info .product-tx {
    margin: -50px auto 0;
    padding-top: 20px;
    width: 100%;
  }
}
.product-info h4 {
  font-family: Metropolis, YakuHanJP, "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "Lucida Grande", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, Helvetica, Verdana, Arial, Helvetica, sans-serif;
  font-size: min(6.5vw, 26px);
  font-weight: 400;
  color: #d11545;
  letter-spacing: 0.05em;
  text-align: center;
}
.product-info ul {
  margin-top: 3em;
}
@media only screen and (max-width: 640px) {
  .product-info ul {
    margin-left: auto;
    margin-right: auto;
    width: 95%;
  }
}
.product-info ul li {
  margin-top: 1em;
}
.product-info ul li h5 {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}
@media only screen and (max-width: 640px) {
  .product-info ul li h5 {
    font-size: 3.5vw;
  }
}
.product-info ul li h5 span {
  font-size: 80%;
}
.product-info ul li p {
  font-size: 12px;
  margin-top: 5px;
  line-height: 1.5;
}
.product-info .price {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin-top: 3em;
}
@media only screen and (max-width: 640px) {
  .product-info .price {
    margin-left: auto;
    margin-right: auto;
    width: 95%;
  }
}
.product-info .yaman-price {
  position: relative;
  font-size: min(2.8vw, 13px);
}
.product-info .yaman-price span {
  position: relative;
  font-family: Metropolis, sans-serif;
  font-size: 180%;
  letter-spacing: 0;
}
.product-info .yaman-price span::after {
  content: "";
  position: absolute;
  top: 0.1em;
  left: 0;
  width: 75px;
  height: 20px;
  background: url(../price_line_01.png) no-repeat;
  background-size: 100%;
}
.product-info .price-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0.5em;
}
.product-info .total-price {
  font-size: min(3.6vw, 16px);
  font-weight: 500;
  color: #d11545;
  letter-spacing: 0.1em;
}
.product-info .total-price em {
  font-family: Metropolis, sans-serif;
  font-size: 250%;
  font-style: normal;
}
@media only screen and (max-width: 640px) {
  .product-info .total-price em {
    font-size: 200%;
  }
}
.product-info .free-shipping {
  display: inline-block;
  position: relative;
  margin-left: 20px;
  padding: 3px 10px;
  font-size: 14px;
  font-weight: 500;
  color: #d11545;
  border: solid 2px #d11545;
  border-radius: 4px;
}
.product-info .price-off {
  margin-left: 20px;
  width: 90px;
}
@media only screen and (max-width: 640px) {
  .product-info .price-off {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(35%, -20%);
  }
}

#coffret02 {
  border: solid 10px #e1f1f5;
}
#coffret02::before {
  background: url(../ribbon_02.png) no-repeat;
  background-size: 100%;
}
#coffret02 h4, #coffret02 .total-price {
  color: #106961;
}
#coffret02 .free-shipping {
  color: #106961;
  border: solid 2px #106961;
}
#coffret02 .yaman-price span::after {
  background: url(../price_line_02.png) no-repeat;
  background-size: 100%;
}

#coffret03 {
  border: solid 10px #fbebec;
}
#coffret03::before {
  background: url(../ribbon_03.png) no-repeat;
  background-size: 100%;
}
#coffret03 h4, #coffret03 .total-price {
  color: #cd2e88;
}
#coffret03 .free-shipping {
  color: #cd2e88;
  border: solid 2px #cd2e88;
}
#coffret03 .yaman-price span::after {
  background: url(../price_line_03.png) no-repeat;
  background-size: 100%;
}

.btn.comingsoon {
  position: relative;
}
.btn.comingsoon a {
  opacity: 0.5;
  pointer-events: none;
}
.btn.comingsoon:after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  content: "coming soon";
  color: #666;
  line-height: 25px;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  .btn.comingsoon:after {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
  }

  .btn.comingsoon:after {
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
