@charset "UTF-8";

/* =========================================== */
/*    spc 商品概要
/* =========================================== */


.spc {
  background-color: #FBFBFB;
}

.spc__main {
  position: relative;
  max-width: 1000px;
  margin: auto;
  padding: 150px 0 140px;
}

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

@media screen and (max-width: 767px) {
  .spc__main {
    padding: 10vw 5vw;
  }

  .spc__item {
    display: block;
  }
}

.spc__img {
  user-select: none;
  text-align: center;
  width: 45%;
}

@media screen and (max-width: 767px) {
  .spc__img {
    width: 80%;
    margin: auto;
  }
}

.spc__info {
  width: 52%;
  padding-top: 10px;
}

.spc__info .amazon-btn {
  margin: 0 0 40px;
}

@media screen and (max-width: 767px) {
  .spc__info {
    width: auto;
    padding-top: 5vw;
  }

  .spc__info .amazon-btn {
    margin: 0 0 10vw;
    text-align: center;
  }
}

.spc__catch {
  font-size: 22px;
  font-weight: 900;
  font-family: "Yu Mincho", "游明朝", YuMincho, "游明朝体", serif;
  margin-bottom: 30px;
}

.spc__name {
  font-size: 18px;
  margin-bottom: 5px;
}

.spc__size {
  font-size: 18px;
  margin-bottom: 20px;
}

.spc__price {
  font-size: 16px;
  margin-bottom: 30px;
}

.spc__price span {
  font-family: Optima, yugothic, "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic Pro", Arial, sans-serif;
  font-size: 22px;
}

@media screen and (max-width: 767px) {
  .spc__catch {
    font-size: 4.2vw;
    margin-bottom: 6vw;
  }

  .spc__name {
    font-size: 3.6vw;
    margin-bottom: 1vw;
  }

  .spc__size {
    font-size: 3.6vw;
    margin-bottom: 4vw;
  }

  .spc__price {
    font-size: 3.2vw;
    margin-bottom: 6vw;
  }

  .spc__price span {
    font-size: 4.6vw;
  }
}

.spc__color {
  margin-bottom: 30px;
}

.spc__color--title {
  font-size: 18px;
  font-family: Optima, Candara, Calibri, Segoe, Segoe UI, Arial, sans-serif;
  margin-bottom: 7px;
}

.spc__color ul {
  display: flex;
  flex-wrap: wrap;
}

.spc__color ul li {
  user-select: none;
  display: flex;
  padding: 5px 10px;
  cursor: pointer;
  border: 1px solid #707070;
  margin: 0 15px 7px 0;
  /* background-color: #ececec; */
}

.spc__color ul li.is-active {
  border: solid 2px #E75297;
  background-color: #fff;
  cursor: initial;
}

.spc__color ul li:hover {
  background-color: #fff;
  /* opacity: 0.7; */
  transition: all 0.1s ease-out;
}

.spc__color ul li.is-active:hover {
  opacity: 1;
}

.spc__color ul li::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 100px;
  margin-right: 8px;
}

@media screen and (max-width: 767px) {
  .spc__color {
    margin-bottom: 5vw;
  }

  .spc__color--title {
    font-size: 3.8vw;
    margin-bottom: 2vw;
  }

  .spc__color ul li {
    font-size: 3vw;
    padding: 1.5vw 3vw;
    margin: 0 2vw 1.5vw 0;
  }

  .spc__color ul li::before {
    display: block;
    content: "";
    width: 4vw;
    height: 4vw;
    margin-right: 2vw;
  }
}

.spc__exp {
  margin-bottom: 25px;
}

.spc__exp ul li {
  text-indent: -1.2em;
  padding-left: 1em;
}

.spc__exp small {
  font-size: 80%;
}

@media screen and (max-width: 767px) {
  .spc__exp {
    margin-bottom: 5vw;
  }
}


.spc__detail--title {
  border-bottom: 1px solid #707070;
  padding: 10px 0;
}

.spc__ingredient {
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .spc__detail--title {
    padding: 2vw 0;
  }

  .spc__ingredient {
    margin-bottom: 3vw;
  }
}


/* 表示切替　*/
.ja-switch {
  display: none;
}

.ja-switch.is-show {
  display: block;
  animation: appear 0.8s ease;
}

@keyframes appear {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .ja-switch.is-show {
    display: block;
  }
}

/*アコーディオン*/
.acc_contents {
  display: none;
  padding: 15px 0 5px;
}

.acc_contents p {
  padding-bottom: 6px;
}

.acc_btn {
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease 0s;
}

.acc_btn .acc_icon {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 5px;
  transition: all 0.3s;
  height: 10px;
  width: 10px;
}

.acc_btn .acc_icon span {
  background-color: #333;
  height: 1px;
  position: absolute;
  transition: all 0.3s;
  width: 100%;
}

.acc_btn .acc_icon span:nth-of-type(2) {
  transform: rotate(90deg);
}

.acc_btn .acc_icon.active span:first-of-type {
  display: none;
}

.acc_btn .acc_icon.active span:nth-of-type(2) {
  transform: rotate(180deg);
}

@media screen and (max-width: 767px) {
  .acc_contents {
    padding: 3vw 0 0 0;
  }

  .acc_btn .acc_icon {
    height: 2vw;
    width: 2vw;
    right: 1vw;
  }
}

/* =========================================== */
/*    バナーエリア
/* =========================================== */
.banner-area {
  max-width: 1000px;
  padding: 0 15px 50px;
  margin: 0 auto;
}

/* =========================================== */
/*    Foundation Map
/* =========================================== */
.map {
  width: auto;
  max-width: 1000px;
  margin: 100px auto;
}

.map--title {
  text-align: center;
  margin-bottom: 35px;
}

.map--title>img {
  max-width: 630px;
  margin: auto;
}

.map--lead-text {
  text-align: center;
  font-size: 26px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro",
    "Hiragino Mincho Pro", serif;
  margin-bottom: 70px;
}

.map--area {
  position: relative;
}

.map--area li {
  position: absolute;
}

.map--area li img {
  transition-duration: 0.5s;
}

.map--area li img:hover {
  transform: scale(1.1);
  transition-duration: 0.5s;
}

.map--area li.map_toneupbase {
  width: 142px;
  top: 60px;
  left: 310px;
}

.map--area li.map_cream_essence {
  width: 116px;
  top: 60px;
  left: 520px;
}

.map--area li.map_foundation_mineral {
  width: 175px;
  top: 360px;
  left: 580px;
}

.map--area li.map_powder_pearl {
  width: 200px;
  top: 10px;
  left: 50px;
}

.map--area li.map_powder_toumei {
  width: 200px;
  top: 445px;
  left: 50px;
  z-index: 2;
}

.map--area li.map_powder_kusumi {
  width: 200px;
  top: 245px;
  left: 50px;
  z-index: 2;
}

.map--area li.map_powder_mat {
  width: 200px;
  top: 670px;
  left: 50px;
  z-index: 1;
}

.map--area li.map_cream_highcover {
  width: 98px;
  top: 510px;
  left: 760px;
}

.map--area li.map_concealer {
  width: 105px;
  top: 570px;
  left: 870px;
}

.map--area li.map_pffoundation {
  width: 190px;
  top: 136px;
  left: 698px;
}

.map--area li.map_makekeepmist {
  width: 183px;
  top: -65px;
  right: 42px;
}

@media screen and (max-width: 1000px) {
  .map {
    margin: 10vw 5vw;
  }

  .map--title {
    margin-bottom: 5vw;
  }

  .map--title>img {
    width: 100%;
    margin: auto;
  }

  .map--lead-text {
    font-size: 4.6vw;
    margin-bottom: 10vw;
  }

  .map--area li.map_toneupbase {
    width: 16vw;
    top: 8vw;
    left: 26vw;
  }

  .map--area li.map_cream_essence {
    width: 13vw;
    top: 8vw;
    left: 50vw;
  }

  .map--area li.map_foundation_mineral {
    width: 18vw;
    top: 39vw;
    left: 50vw;
  }

  .map--area li.map_powder_pearl {
    width: 21vw;
    top: 0;
    left: 4vw;
  }

  .map--area li.map_powder_toumei {
    width: 21vw;
    top: 24vw;
    left: 4vw;
  }

  .map--area li.map_powder_kusumi {
    width: 21vw;
    top: 52vw;
    left: 4vw;
  }

  .map--area li.map_powder_mat {
    width: 21vw;
    top: 73vw;
    left: 4vw;
  }

  .map--area li.map_cream_highcover {
    width: 11vw;
    top: 62vw;
    left: 60vw;
  }

  .map--area li.map_concealer {
    width: 13vw;
    top: 67vw;
    left: 70vw;
  }

  .map--area li.map_pffoundation {
    width: 20vw;
    top: 17.6vw;
    left: 65vw;
  }

  .map--area li.map_makekeepmist {
    width: 19vw;
    top: -4vw;
    right: 0;
  }
}



/* =========================================== */
/*    製品一覧スライダー
/* =========================================== */

.product-list {
  max-width: 1000px;
  padding: 0 15px;
  margin: auto;
}

.product-list__main{
  text-align: center;
}
.product-list__main-text{
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  font-size: clamp(20px,4vw,30px);
  color: #82705b;
  border-bottom: 1px solid #82705b;
  margin-bottom: 30px;
  padding-bottom: 10px;
  padding-inline: 0.4em;
  display: inline-block;
  font-weight: 500;
}

.product-list__title {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  font-size: clamp(20px,4vw,30px);
  color: #82705b;
  border-bottom: 1px solid #82705b;
  margin-bottom: 30px;
}

.product-list__title span {
  display: inline-block;
  font-weight: 500;
  padding-bottom: 10px;
  border-bottom: 12px solid #82705b;
  padding-inline: 0.4em;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1100px) {
  .product-list {
    overflow: hidden;
  }
}

@media screen and (max-width: 767px) {
  .product-list {
    max-width: auto;
    padding: 0;
    margin: 0 5vw;
  }

  .product-list__title {
    font-size: 4.8vw;
    margin-bottom: 5vw;
  }

  .product-list__title span {
    padding-bottom: 2vw;
    border-bottom: 2vw solid #82705b;
  }
}

.product-list__slider {
  position: relative;
  margin-bottom: 80px;
}

.product-list .slick-track,
.limited__design .slick-track {
  display: flex;
  align-items: stretch;
}

.product-list__slider--item {
  position: relative;
  padding: 0 15px 10px;
  float: inherit;
}

.product-list .slick-slide {
  height: auto;
}

.product-list__slider figure {
  margin-bottom: 16px;
}

.product-list__slider figure img {
  max-width: 100%;
  height: auto;
  margin: auto;
}

.product-list__slider a:hover img {
  opacity: 0.7;
  transition-duration: 0.5s;
}

.product-list__slider--title {
  font-size: 16px;
  color: #511810;
  margin-bottom: 5px;
  font-weight: 500;
}

.product-list__slider--text {
  font-size: 13px;
  margin-bottom: 10px;
}

.product-list__slider--price {
  position: absolute;
  bottom: 50px;
  left: 20px;
}

.product-list__slider--btn {
  overflow: hidden;
  position: relative;
  font-size: 16px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  width: 90%;
  height: 40px;
  border: 1px solid #707070;
  background: url("../img/itemlist/btn_arrow_gray.png") no-repeat top 50% right 20px;
  transition: 0.3s ease-in-out;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.product-list__slider--btn:hover {
  text-decoration: none;
  background: url("../img/itemlist/btn_arrow_gray.png") no-repeat top 50% right 10px;
}

.product-list__slider--btn:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out;
  transform: translateX(-100%);
}

.product-list__slider--btn:hover:before {
  transform: translateX(0);
}

@media screen and (max-width: 767px) {
  .product-list__slider {
    margin: 0 10vw 10vw;
  }

  .product-list__slider--item {
    padding: 0 15px;
  }

  .product-list__slider figure {
    margin-bottom: 3vw;
  }

  .product-list__slider--title {
    font-size: 4vw;
    margin-bottom: 2vw;
  }

  .product-list__slider--text {
    font-size: 3.2vw;
    margin-bottom: 3vw;
  }

  .product-list__slider--price {
    position: inherit;
    bottom: 0;
    left: 0;
    margin-bottom: 2vw;
  }

  .product-list__slider--btn {
    width: 100%;
    padding: 3vw;
    height: 12vw;
    background: url("/img/itemlist/btn_arrow_gray.png") no-repeat top 50% right 5vw;
    position: inherit;
    bottom: 0;
    left: 0;
    transform: translate(0, 0);
  }

  .product-list__slider--btn:hover {
    background: url("../img/itemlist/btn_arrow_gray.png") no-repeat top 50% right 3vw;
  }

  .product-list__slider--btn::after {
    width: 7vw;
    height: 2.5vw;
    right: 3vw;
  }
}

/* slick arrow */
.product-list .slick-prev,
.limited__design .slick-prev {
  position: absolute;
  transform: translate(0, -50%);
  top: 40%;
  left: -60px;
  background: url("../img/itemlist/arrow_prev.png") no-repeat center center;
  background-size: contain;
  height: 30px;
}

.product-list .slick-next,
.limited__design .slick-next {
  position: absolute;
  transform: translate(0, -50%);
  top: 40%;
  right: -50px;
  background: url("../img/itemlist/arrow_next.png") no-repeat center center;
  background-size: contain;
  height: 30px;
}

.product-list .slick-prev:before,
.limited__design .slick-prev:before {
  content: "" !important;
}

.product-list .slick-next:before,
.limited__design .slick-next:before {
  content: "" !important;
}

.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 767px) {

  .product-list .slick-prev,
  .limited__design .slick-prev {
    position: absolute;
    transform: translate(0, -50%);
    top: 40%;
    left: -7vw;
    height: 10vw;
  }

  .product-list .slick-next,
  .limited__design .slick-next {
    position: absolute;
    transform: translate(0, -50%);
    top: 40%;
    right: -7vw;
    height: 10vw;
  }
}