@charset "UTF-8";
/* variables
----------------------------------------------------*/
.product-page,
.detail-page {
  position: relative;
}
.product-page .contents,
.detail-page .contents {
  margin-top: 100px;
}
@media only screen and (max-width: 767px) {
  .product-page .contents,
.detail-page .contents {
    margin-top: 60px;
  }
}

/* topicpath
----------------------------------------------------*/
.topicpath {
  margin: 0 auto;
  width: 90%;
  max-width: 1100px;
}
.topicpath ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.topicpath li {
  font-size: 1.2rem;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .topicpath li {
    font-size: 2.6vw;
  }
}
.topicpath li::after {
  content: "＞";
  position: relative;
  padding: 0 1em;
  font-weight: 200;
  color: #444;
}
.topicpath li.current::after {
  content: "";
}

/* products
----------------------------------------------------*/
.products {
  margin-top: 30px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .products {
    margin-top: 15px;
  }
}
.products .title {
  font-family: "Inter", sans-serif;
  font-size: 6rem;
  font-weight: 400;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .products .title {
    font-size: 9vw;
  }
}
.products .inner {
  margin: 0 auto;
  width: 90%;
  max-width: 1920px;
}
@media only screen and (max-width: 2132px) {
  .products .inner {
    max-width: 1600px;
  }
}
@media only screen and (max-width: 1776px) {
  .products .inner {
    max-width: 1280px;
  }
}
@media only screen and (max-width: 1421px) {
  .products .inner {
    max-width: 960px;
  }
}
@media only screen and (max-width: 1065px) {
  .products .inner {
    max-width: 640px;
  }
}

.product-cat {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  margin: 50px auto 0;
  width: calc(100% - 40px);
}
.product-cat .product-cat-title {
  font-size: 2.4rem;
  font-weight: 500;
}
.product-cat .item-counter {
  text-align: right;
}

.item-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 40px auto 0;
  width: 100%;
}
.recommend .item-list {
  -ms-flex-pack: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .recommend .item-list {
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .item-list {
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 20px;
  }
}

.item {
  position: relative;
  margin: 20px;
  width: 280px;
  background: #fff;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}
.item:hover {
  transform: perspective(400px) rotateY(-2deg) rotateX(2deg) rotateZ(2deg) translate(-1%, -1%) scale(1.05);
  box-shadow: 30px 30px 30px 0 rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 767px) {
  .item {
    margin: 10px 2%;
    width: 46%;
  }
}
.item a {
  display: block;
  width: 100%;
  height: 100%;
}

.item-new::before {
  transform: rotate(-45deg) translate(-25%, -100%);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 23px;
  background: #484e5c;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.15);
}
.item-new::after {
  transform: rotate(-45deg) translate(-25%, -74%);
  content: "NEW";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 30px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 23px;
  text-align: center;
  color: #e6deb3;
}

.item-tags {
  position: absolute;
  top: 10px;
  right: 0;
}
.item-tags li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
  width: 60px;
  height: 30px;
  font-size: 1.2rem;
  letter-spacing: 0;
  color: #484e5c;
  background: #F5F5F5;
}
@media only screen and (max-width: 767px) {
  .item-tags li {
    margin-top: 3px;
    width: 9vw;
    height: 3.5vw;
    font-size: 1.8vw;
  }
}

.item-name {
  padding: 0 1em;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .item-name {
    font-size: 2.6vw;
  }
}

.item-price {
  margin-top: 1em;
  padding-bottom: 50px;
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .item-price {
    font-size: 3.5vw;
    padding-bottom: 25px;
  }
}

/* detail
----------------------------------------------------*/
.product-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 30px auto 0;
  width: 90%;
  max-width: 1100px;
}
@media only screen and (max-width: 767px) {
  .product-col {
    display: block;
    width: 85%;
  }
}

.product-img {
  position: relative;
  width: 46%;
  max-width: 505px;
  height: 800px;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .product-img {
    width: 100%;
    height: 150vw;
  }
}
.product-img .main-img {
  position: relative;
  width: 100%;
  height: 56vw;
  max-height: 684px;
}
@media only screen and (max-width: 767px) {
  .product-img .main-img {
    height: 115vw;
  }
}
.product-img .main-img li {
  width: 100%;
}
.product-img .thumb {
  margin-top: 20px;
  width: 100%;
}
.product-img .thumb li {
  margin: 0 2%;
}
.product-img .thumb .slick-current {
  border: solid 1px #A28346;
}

.product-info {
  margin-left: 10%;
  width: 43%;
}
@media only screen and (max-width: 767px) {
  .product-info {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
}

.product-name {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .product-name {
    font-size: 5vw;
  }
}

.product-spec {
  margin-top: 2em;
  font-family: YakuHanJP, "Inter", "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "Lucida Grande", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .product-spec {
    font-size: 3vw;
  }
}

.product-price {
  margin-top: 0.2em;
  font-family: YakuHanJP, "Inter", "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "Lucida Grande", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .product-price {
    font-size: 4vw;
  }
}
.product-price span {
  position: relative;
  top: -0.2em;
  font-size: 67%;
}

.btn-product-buy {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .btn-product-buy {
    margin-top: 20px;
  }
}
.btn-product-buy + .btn-product-buy {
  margin-top: 10px;
}
.btn-product-buy + .btn-trialset {
  margin-top: 30px;
}

.product-lead {
  margin-top: 2.4em;
  font-size: 2.4rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .product-lead {
    font-size: 4vw;
  }
}

.product-tx {
  margin-top: 1em;
}

.product-ingredient {
  margin-top: 3em;
}
.product-ingredient dt {
  position: relative;
  padding-bottom: 0.8em;
  border-bottom: solid 1px #707070;
}
.product-ingredient dt:hover {
  cursor: pointer;
}
.product-ingredient dt::before {
  position: absolute;
  top: 14px;
  right: 20px;
  content: "";
  width: 11px;
  height: 1px;
  background: #000;
  transition: transform 0.3s;
}
@media only screen and (max-width: 767px) {
  .product-ingredient dt::before {
    right: 5px;
  }
}
.product-ingredient dt::after {
  position: absolute;
  top: 9px;
  right: 25px;
  content: "";
  width: 1px;
  height: 11px;
  background: #000;
  transition: transform 0.3s, opacity 0.5s;
}
@media only screen and (max-width: 767px) {
  .product-ingredient dt::after {
    right: 10px;
  }
}
.product-ingredient dt.open::before {
  transform: rotate(90deg);
  opacity: 0;
}
.product-ingredient dt.open::after {
  transform: rotate(90deg);
}
.product-ingredient dd {
  display: none;
  margin-top: 1em;
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .product-ingredient dd {
    font-size: 3vw;
  }
}

.features {
  margin: 120px auto 0;
  width: 85%;
  max-width: 1000px;
}
@media only screen and (max-width: 767px) {
  .features {
    margin: 100px auto 0;
    width: 75%;
  }
}

.feature .note {
  text-align: right;
}
.feature .note-left {
  text-align: left;
}

.feature-num {
  font-family: "Inter", sans-serif;
  color: #A28346;
}

.feature-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .feature-col {
    display: block;
  }
}

.feature-tx {
  width: 45%;
}
@media only screen and (max-width: 767px) {
  .feature-tx {
    width: 100%;
  }
  .feature-tx .feature-fig {
    width: 80%;
  }
  .feature-tx + .feature-tx {
    margin-top: 4em;
  }
}
.feature-tx .title {
  margin-top: 1.2em;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .feature-tx .title {
    font-size: 5vw;
  }
}
.feature-tx .sub-title {
  margin-top: 1.5em;
  font-size: 1.7rem;
}
@media only screen and (max-width: 767px) {
  .feature-tx .sub-title {
    font-size: 3.5vw;
  }
}
.feature-tx p {
  margin-top: 1.5em;
}
.feature-tx p + .feature-fig {
  margin-top: 3em;
}
.feature-tx .sub-title + p {
  margin-top: 1em;
}
.feature-tx .step-num {
  font-family: "Inter", sans-serif;
  margin-top: 1.8em;
}
.feature-tx .step-num + p {
  margin-top: 0.8em;
}

.feature-tx_accross {
  margin-top: 3em;
  width: 100%;
}

.feature-media {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  margin: 120px auto 0;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .feature-media {
    margin: 100px auto 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}

.feature-media-img {
  max-width: 690px;
  margin-left: -150px;
  margin-right: 100px;
  box-shadow: 2px 2px 30px 0 rgba(0, 0, 0, 0.16);
}
@media only screen and (max-width: 767px) {
  .feature-media-img {
    margin: 30px 0 0 -5%;
    width: 110%;
  }
}

.feature-media-img-clipping {
  margin-right: 70px;
  box-shadow: none;
}
@media only screen and (max-width: 767px) {
  .feature-media-img-clipping {
    margin-right: 0;
  }
}

.feature-media-tx {
  flex-shrink: 0;
  margin-left: -4%;
}

.fragrance {
  margin-top: 120px;
}
@media only screen and (max-width: 767px) {
  .fragrance {
    margin-top: 100px;
  }
}
.fragrance .feature-col {
  -ms-flex-align: center;
  align-items: center;
}
.fragrance .feature-tx {
  flex-shrink: 0;
}
.fragrance .feature-fig {
  flex-shrink: 1;
  max-width: 460px;
}
@media only screen and (max-width: 767px) {
  .fragrance .feature-fig {
    margin-top: 3em;
  }
}

.howto {
  margin: 120px auto 0;
  width: 90%;
  max-width: 1000px;
}
@media only screen and (max-width: 767px) {
  .howto {
    margin: 100px auto 0;
    width: 90%;
  }
}
.howto .title {
  font-family: "Inter", sans-serif;
  font-size: 6rem;
  font-weight: 400;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .howto .title {
    font-size: 9vw;
  }
}

.howto-steps {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .howto-steps {
    flex-wrap: wrap;
  }
}

.howto-step {
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .howto-step {
    margin-top: 30px;
  }
}
.howto-steps_3 .howto-step {
  margin: 30px 1% 0;
  width: 31.333%;
}
@media only screen and (max-width: 767px) {
  .howto-steps_3 .howto-step {
    width: 98%;
  }
}

.howto-img-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

.howto-img {
  margin: 0 auto;
  width: 100%;
  max-width: 245px;
  border: solid 1px #c6c6c6;
}
.howto-img-col .howto-img {
  margin: 0 8px;
}
@media only screen and (max-width: 767px) {
  .howto-img {
    max-width: 45%;
  }
}

.howto-tx {
  margin-top: 2em;
  padding: 0 25px;
  text-align: center;
}
.howto-tx h4 {
  padding-bottom: 0.5em;
  font-size: 1.7rem;
}
@media only screen and (max-width: 767px) {
  .howto-tx h4 {
    font-size: 3.2vw;
  }
}

.use-process {
  margin: 50px auto 0;
  padding: 30px 40px;
  width: 100%;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .use-process {
    margin: 30px auto 0;
    padding: 2em;
    font-size: 2.6vw;
  }
}
.use-process em {
  color: #A28346;
}

.recommend {
  margin-top: 120px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .recommend {
    margin-top: 100px;
  }
}
.recommend .title {
  font-family: "Inter", sans-serif;
  font-size: 6rem;
  font-weight: 400;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .recommend .title {
    font-size: 9vw;
  }
}
.recommend .inner {
  margin: 0 auto;
  width: 90%;
  max-width: 1100px;
}

/* btn
----------------------------------------------------*/
.btn {
  position: relative;
  font-size: 1.6rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .btn {
    font-size: 3.6vw;
  }
}
.btn p {
  font-size: 1.5rem;
  color: #484e5c;
}
@media only screen and (max-width: 767px) {
  .btn p {
    font-size: 3vw;
  }
}
.btn a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 370px;
  height: 80px;
  text-align: center;
  color: #fff;
  background: #484e5c;
  transition: background 0.15s linear;
}
@media only screen and (max-width: 767px) {
  .btn a {
    width: 100%;
    height: 60px;
  }
}
.btn a:hover {
  cursor: pointer;
  background: #747c8d;
}

.btn.comingsoon {
  pointer-events: none;
}

.btn-media {
  position: absolute;
  z-index: 100;
  width: 620px;
}
@media only screen and (max-width: 767px) {
  .btn-media {
    position: relative;
    top: auto !important;
    left: auto !important;
    bottom: auto !important;
    right: auto !important;
    margin: 0 auto;
    width: 95%;
  }
}
.btn-media a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  padding: 0 20px;
  width: 100%;
  height: 165px;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .btn-media a {
    padding: 0.5em 5%;
    height: auto;
  }
  .btn-media a .btn-media-icon {
    width: 20%;
    height: auto;
  }
  .btn-media a .tx {
    font-size: 3vw;
  }
}
.btn-media a:hover .arrow {
  animation: arrow 1s ease-out infinite forwards;
}
.btn-media .arrow {
  display: block;
  position: relative;
  top: 4px;
  margin-left: 30px;
  width: 30px;
  height: 1px;
  background-color: #222;
  transform-origin: top left;
}
.btn-media .arrow::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 1px solid #222;
  transform: rotate(-45deg);
  transform-origin: right bottom;
  position: absolute;
  bottom: 1px;
  right: 0px;
}

.btn-tx-arrow2 {
  position: relative;
  z-index: 100;
  display: inline-block;
  float: left;
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .btn-tx-arrow2 {
    float: none;
  }
}
.btn-tx-arrow2 a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  padding: 1em 50px;
  background: #fff;
}
.btn-tx-arrow2 .arrow {
  display: block;
  position: relative;
  top: 4px;
  margin-left: 50px;
  width: 50px;
  height: 1px;
  background-color: #222;
  transform-origin: top left;
}
@media only screen and (max-width: 767px) {
  .btn-tx-arrow2 .arrow {
    width: 40px;
  }
}
.btn-tx-arrow2 .arrow::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 1px solid #222;
  transform: rotate(-45deg);
  transform-origin: right bottom;
  position: absolute;
  bottom: 1px;
  right: 0px;
}
@media only screen and (max-width: 767px) {
  .btn-tx-arrow2 .arrow::after {
    width: 7px;
    height: 7px;
  }
}

@keyframes arrow {
  0% {
    transform: scale(0, 1);
    opacity: 0;
  }
  30% {
    transform: scale(1.3, 1);
    opacity: 1;
  }
  60% {
    transform: scale(1.3, 1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3, 1);
    opacity: 0;
  }
}
.btn-tx-link {
  margin-top: 1em;
  font-family: YakuHanJP, "Inter", "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "Lucida Grande", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
}
@media only screen and (max-width: 767px) {
  .btn-tx-link {
    font-size: 3vw;
  }
}

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