@charset "UTF-8";
@import url(/common/css/common.css);
/* variables
----------------------------------------------------*/
/* fx
----------------------------------------------------*/
.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 1s 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−bright2 {
  opacity: 0;
  transform: translateY(20%) perspective(600px) rotateY(15deg);
  transition: opacity transform;
  transition-delay: 1.5s;
  transition-duration: 1.5s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.inview .fx−bright2 {
  opacity: 1;
  transform: translateY(0) perspective(600px) rotateY(0deg) skewX(0);
  animation: bright2 1.5s 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes bright2 {
  0% {
    filter: brightness(1000%) blur(50px);
  }
  100% {
    filter: brightness(100%) blur(0);
  }
}
.inview .fx-flip {
  animation-name: flip;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  perspective-origin: left center;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0;
}

.inview .fx-flip2 {
  animation-name: flip;
  animation-duration: 1s;
  animation-delay: 1.3s;
  animation-fill-mode: forwards;
  perspective-origin: left center;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0;
}

.inview .fx-flip3 {
  animation-name: flip;
  animation-duration: 1s;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
  perspective-origin: left center;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0;
}

@keyframes flip {
  from {
    transform: perspective(600px) rotateY(15deg) skewX(10deg);
    filter: brightness(1000%) blur(50px);
    opacity: 0;
  }
  to {
    transform: perspective(600px) rotateY(0deg) skewX(0);
    filter: brightness(100%) blur(0);
    opacity: 1;
  }
}
.slidein {
  opacity: 0;
  transform: translateY(20%);
  transition: opacity transform;
  transition-delay: 0.7s;
  transition-duration: 2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.slidein.inview {
  opacity: 1;
  transform: translateY(0);
}

/* contents
----------------------------------------------------*/
.contents {
  padding-bottom: 100px;
  width: 100%;
  overflow: hidden;
}

/* hero
----------------------------------------------------*/
#hero {
  position: relative;
  width: 100%;
  height: 70vw;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #hero {
    height: 130vw;
  }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.hero-bg img {
  width: 100%;
  max-width: inherit;
}

.hero-img {
  position: relative;
  margin: 100px auto 0;
  width: 80%;
  box-shadow: 2px 2px 30px 0 rgba(0, 0, 0, 0.06);
}
@media only screen and (max-width: 767px) {
  .hero-img {
    margin: 60px auto 0;
  }
}
.hero-img.fx-bright {
  transition-delay: 2s !important;
}

#holiday-night-kit {
  margin-top: -70px;
  height: 650px;
}
@media only screen and (max-width: 767px) {
  #holiday-night-kit {
    margin-top: 0;
    height: auto;
  }
}
#holiday-night-kit .media-inner {
  -ms-flex-align: center;
  align-items: center;
}
#holiday-night-kit .media-img {
  box-shadow: none;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  #holiday-night-kit .media-img {
    margin: 0 auto;
  }
}
#holiday-night-kit .media-body {
  width: 500px;
}
@media only screen and (max-width: 767px) {
  #holiday-night-kit .media-body {
    width: 80vw;
  }
}

#makanai {
  padding-top: 0;
  background-image: url(../img/makanai_bg.jpg);
  background-size: 1150px;
  background-position: left top;
}
@media only screen and (max-width: 767px) {
  #makanai {
    padding-top: 80px;
    background-size: 100%;
    background-position: left 35%;
  }
}
#makanai .media-img {
  opacity: 0;
}
#makanai .media-body {
  margin-top: 1em;
}
@media only screen and (max-width: 767px) {
  #makanai .media-body {
    margin-top: 5em;
  }
}

#kaess {
  margin-top: 100px;
  padding-top: 150px;
  background-image: url(../img/kaess_bg.jpg);
  background-position: right top;
  background-size: 1150px;
}
@media only screen and (max-width: 767px) {
  #kaess {
    padding-top: 100px;
    background-size: 90%;
  }
}
#kaess .media-img {
  opacity: 0;
}
#kaess .media-body {
  margin-top: 3em;
}

/* products
----------------------------------------------------*/
#products {
  margin-top: 150px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #products {
    margin-top: 100px;
  }
}
#products .inner {
  margin: 0 auto;
  width: 85%;
  max-width: 1920px;
}
@media only screen and (max-width: 2258px) {
  #products .inner {
    max-width: 1600px;
  }
}
@media only screen and (max-width: 1882px) {
  #products .inner {
    max-width: 1280px;
  }
}
@media only screen and (max-width: 1505px) {
  #products .inner {
    max-width: 960px;
  }
}
@media only screen and (max-width: 1129px) {
  #products .inner {
    max-width: 640px;
  }
}
#products .item-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 60px;
  width: 100%;
}
@media only screen and (max-width: 1129px) {
  #products .item-list {
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
#products .item {
  position: relative;
  margin: 20px;
  padding-bottom: 50px;
  width: 280px;
  background: #fff;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}
#products .item:hover {
  transform: perspective(400px) rotateY(-2deg) rotateX(2deg) rotateZ(2deg) translate(-1%, -1%) scale(1.05);
  box-shadow: 20px 20px 20px 0 rgba(0, 0, 0, 0.06);
}
@media only screen and (max-width: 767px) {
  #products .item {
    margin: 1.5%;
    padding-bottom: 25px;
    width: 47%;
  }
  #products .item.skin, #products .item.parts {
    margin: 0 5px;
    width: 280px;
  }
}
#products .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);
}
#products .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;
}
#products .item-tags {
  position: absolute;
  top: 10px;
  right: 0;
}
#products .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) {
  #products .item-tags li {
    margin-top: 3px;
    width: 9vw;
    height: 3.5vw;
    font-size: 1.8vw;
  }
}
#products .item-name {
  padding: 0 1em;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #products .item-name {
    font-size: 2.6vw;
  }
}
#products .item-price {
  margin-top: 1em;
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #products .item-price {
    font-size: 3.5vw;
  }
}

/* pickup
----------------------------------------------------*/
#pickup {
  margin-top: 150px;
  width: 100%;
}
#pickup .inner {
  margin: 0 auto;
  width: 90%;
  max-width: 1300px;
}
#pickup .title {
  text-align: left;
  margin-left: 4em;
}
@media only screen and (max-width: 767px) {
  #pickup .title {
    margin-left: 0.4em;
  }
}

.pickup-oil {
  position: relative;
  height: 850px;
}
@media only screen and (max-width: 767px) {
  .pickup-oil {
    height: auto;
  }
}
.pickup-oil .media-inner {
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .pickup-oil .media-inner {
    padding-top: 8em;
    flex-direction: column-reverse;
  }
}
.pickup-oil .media-fig {
  top: 0;
  right: 0;
  z-index: 0;
  width: 30%;
  max-width: 456px;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .pickup-oil .media-fig {
    width: 50vw;
  }
}
.pickup-oil .media-img {
  margin-top: 100px;
  max-width: 613px;
  height: auto;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .pickup-oil .media-img {
    margin-top: -5em;
    margin-left: -40%;
  }
}
.pickup-oil .media-body {
  z-index: 10;
}
.pickup-oil .btn-media_oil {
  bottom: 70px;
  right: 100px;
}
@media only screen and (max-width: 767px) {
  .pickup-oil .btn-media_oil {
    margin-top: -2em;
  }
}

.pickup-lotion {
  position: relative;
  margin-top: 100px;
  height: 930px;
}
@media only screen and (max-width: 767px) {
  .pickup-lotion {
    height: auto;
  }
}
.pickup-lotion .media-inner {
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .pickup-lotion .media-inner {
    padding-top: 10.5em;
    flex-direction: column-reverse;
  }
}
.pickup-lotion .media-fig {
  top: 0;
  left: 0;
  z-index: 0;
  width: 20%;
  max-width: 252px;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .pickup-lotion .media-fig {
    margin-left: -5%;
    width: 33%;
  }
}
.pickup-lotion .media-fig_2 {
  top: 70px;
  left: 25%;
  z-index: 0;
  width: 20%;
  max-width: 252px;
  opacity: 0;
  transition-delay: 1s;
}
@media only screen and (max-width: 767px) {
  .pickup-lotion .media-fig_2 {
    top: 30px;
    left: 38%;
    width: 33%;
  }
}
.pickup-lotion .media-img {
  margin-top: 100px;
  max-width: 613px;
  height: auto;
  opacity: 0;
  transition-delay: 1s;
}
@media only screen and (max-width: 767px) {
  .pickup-lotion .media-img {
    margin-top: -3em;
    margin-right: -38%;
  }
}
.pickup-lotion .media-body {
  z-index: 10;
}
.pickup-lotion .btn-media_urutsuya {
  bottom: 185px;
  left: 100px;
}
.pickup-lotion .btn-media_shirosube {
  bottom: 0;
  left: 100px;
}
@media only screen and (max-width: 767px) {
  .pickup-lotion .btn-media_shirosube {
    margin-top: 15px;
  }
}

/* news
----------------------------------------------------*/
#news {
  margin-top: 150px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #news {
    margin-top: 100px;
  }
}
#news .inner {
  margin: 0 auto;
  width: 90%;
  max-width: 900px;
}
#news .news-list {
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  #news .news-list {
    margin-top: 30px;
  }
}
#news .news-list dt a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 40px;
  padding-right: 5%;
  width: 100%;
  height: 70px;
  background: #f5f5f5;
}
@media only screen and (max-width: 767px) {
  #news .news-list dt a {
    display: block;
    height: auto;
    padding: 1em 2em 1em 2em;
  }
}
#news .news-list dt a[target=_blank] {
  content: "";
  width: 100%;
  background: #f5f5f5 url(/common/img/blank.svg) no-repeat 97% center;
  background-size: 16px;
}
@media only screen and (max-width: 767px) {
  #news .news-list dt a[target=_blank] {
    background-size: 13px;
  }
}
#news .news-list dd {
  display: none;
}
#news .news-list dd + dt {
  margin-top: 20px;
}
#news .news-date {
  font-family: "Inter", sans-serif;
}
@media only screen and (max-width: 767px) {
  #news .news-date {
    display: block;
    font-size: 3vw;
  }
}
#news .news-title {
  margin-left: 1.5em;
}
@media only screen and (max-width: 767px) {
  #news .news-title {
    display: block;
    margin-left: 0;
    font-size: 3vw;
  }
}

/* shop
----------------------------------------------------*/
#shop {
  margin-top: 220px;
  width: 100%;
  height: 670px;
}
@media only screen and (max-width: 767px) {
  #shop {
    margin-top: 100px;
  }
}
#shop .media-inner {
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  #shop .media-inner {
    flex-direction: column-reverse;
  }
}
#shop .media-img {
  margin-top: -70px;
  width: 600px;
  height: 600px;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  #shop .media-img {
    margin-top: 3em;
    margin-right: -20%;
    width: 80%;
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  #shop .media-bg {
    height: 570px;
  }
  #shop .media-body {
    padding-top: 50px;
  }
}

.home-banner {
  margin: 70px auto 0;
  width: 90%;
  max-width: 900px;
}
.home-banner a {
  display: block;
  transition: opacity 0.3s;
}
.home-banner a:hover {
  opacity: 0.7;
}

/* instagram
----------------------------------------------------*/
#instagram {
  margin-top: 150px;
  width: 100%;
  height: auto;
}
#instagram .media-inner {
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  #instagram .media-inner {
    flex-direction: column-reverse;
  }
}
#instagram .media-img {
  width: 798px;
  height: auto;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  #instagram .media-img {
    margin-top: 3em;
    width: 100%;
  }
}
#instagram .media-title {
  font-weight: 400;
  line-height: 1.5;
}

/* modal-content
----------------------------------------------------*/
.modal-content {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100vw;
  height: 100vh;
  background: #fff;
}
.modal-content .inner {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.modal-content .inner-content {
  position: relative;
  margin: 100px auto;
  padding-bottom: 200px;
  width: 90%;
  max-width: 720px;
}
@media only screen and (max-width: 767px) {
  .modal-content .inner-content {
    margin-top: 70px;
    width: 80%;
  }
}
.modal-content .inner-title .title {
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .modal-content .inner-title .title {
    font-size: 5vw;
  }
}
.modal-content .inner-title .main-img {
  margin-top: 50px;
  margin-left: -5%;
  width: 110%;
}
@media only screen and (max-width: 767px) {
  .modal-content .inner-title .main-img {
    margin-top: 25px;
    margin-left: -12.5%;
    width: 125%;
  }
}
.modal-content .inner-body {
  margin-top: 80px;
}
@media only screen and (max-width: 767px) {
  .modal-content .inner-body {
    margin-top: 50px;
  }
}
.modal-content .inner-body h2 {
  font-size: 3rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .modal-content .inner-body h2 {
    font-size: 5vw;
  }
}
.modal-content p {
  margin-top: 2.5em;
}
.modal-content p + p.note {
  margin-top: 10px;
}
.modal-content .fig {
  margin: 50px auto 0;
  width: 80%;
}
@media only screen and (max-width: 767px) {
  .modal-content .fig {
    margin-left: -5%;
    width: 110%;
  }
}
.modal-content .inner-body-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.modal-content .inner-body-col .inner-body-tx {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .modal-content .inner-body-col .inner-body-tx {
    width: 100%;
  }
}
.modal-content .inner-body-col .fig {
  margin-left: 5%;
  width: 45%;
}
@media only screen and (max-width: 767px) {
  .modal-content .inner-body-col .fig {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
}
.modal-content .btn-close-bottom {
  text-align: center;
}
.modal-content .btn-close-bottom a {
  display: inline-block;
  margin-top: 100px;
  padding-bottom: 0;
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  text-align: center;
  border-bottom: solid 1px #222;
}
@media only screen and (max-width: 767px) {
  .modal-content .btn-close-bottom a {
    margin-top: 80px;
    font-size: 4vw;
  }
}
.modal-content .btn-close-top {
  position: absolute;
  top: 0;
  right: 50px;
}
@media only screen and (max-width: 767px) {
  .modal-content .btn-close-top {
    right: 0;
  }
}
.modal-content .btn-close-top a {
  display: block;
  padding: 50px;
  transition: transform 0.3s ease-out;
  box-sizing: content-box;
}
@media only screen and (max-width: 767px) {
  .modal-content .btn-close-top a {
    padding: 25px;
    width: 30px;
    height: 30px;
  }
  .modal-content .btn-close-top a img {
    width: 100%;
    height: auto;
  }
}
.modal-content .btn-close-top a:hover {
  transform: scale(1.2);
}

#recipe {
  display: none;
}

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