@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: 1.2s;
  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.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);
}

.slidein2 {
  opacity: 0;
  transform: translateY(20%);
  transition: opacity transform;
  transition-delay: 1.2s;
  transition-duration: 2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.inview .slidein2 {
  opacity: 1;
  transform: translateY(0);
}

.slidein3 {
  opacity: 0;
  transform: translateY(20%);
  transition: opacity transform;
  transition-delay: 1.7s;
  transition-duration: 2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.inview .slidein3 {
  opacity: 1;
  transform: translateY(0);
}

.slidein_delay1 {
  transform: translateY(20%);
  transition: opacity transform;
  transition-delay: 1.4s;
  transition-duration: 2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.inview .slidein_delay1 {
  opacity: 1;
  transform: translateY(0);
}

.slidein_delay2 {
  transform: translateY(20%);
  transition: opacity transform;
  transition-delay: 1.6s;
  transition-duration: 2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.inview .slidein_delay2 {
  opacity: 1;
  transform: translateY(0);
}

/* contents
----------------------------------------------------*/
.contents {
  margin-top: 60px;
  padding-bottom: 100px;
  width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .contents {
    margin-top: 40px;
    padding-bottom: 0;
  }
}

/* hero
----------------------------------------------------*/
#hero {
  position: relative;
  width: 100%;
  height: 23vw;
  min-height: 300px;
  max-height: 450px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #hero {
    height: 47vw;
    min-height: inherit;
  }
}
#hero .page-title {
  position: absolute;
  top: 50%;
  left: 12%;
  transform: translateY(-50%);
  font-family: "Inter", sans-serif;
  font-size: 6rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  #hero .page-title {
    font-size: 10vw;
  }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-bg img {
  width: 100%;
  max-width: inherit;
}
@media only screen and (max-width: 767px) {
  .hero-bg img {
    position: relative;
    left: -40%;
    width: 200%;
  }
}

.concept-page .media-inner {
  max-width: 1200px;
}

.content-tx {
  margin: 4em auto 0;
  width: 75%;
  max-width: 720px;
}
@media only screen and (max-width: 767px) {
  .content-tx {
    margin-top: 1em;
  }
}

#concept {
  padding-top: 120px;
}
@media only screen and (max-width: 767px) {
  #concept {
    padding-top: 50px;
  }
}
#concept .inner {
  margin: 0 auto;
  width: 75%;
  max-width: 720px;
}
#concept .title {
  font-size: 3rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  #concept .title {
    font-size: 5vw;
  }
}
#concept p {
  margin-top: 3em;
}

/* nav
----------------------------------------------------*/
.concept-nav {
  position: relative;
  margin-top: 150px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .concept-nav {
    margin-top: 70px;
  }
}
.concept-nav .title {
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .concept-nav .title {
    font-size: 5vw;
  }
}
.concept-nav ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 60px auto 0;
  width: 90%;
  max-width: 960px;
}
.concept-nav li {
  margin: 0 2%;
  width: 29.3333%;
  height: 180px;
}
@media only screen and (max-width: 767px) {
  .concept-nav li {
    margin-top: 15px;
    width: 46%;
    height: 30vw;
  }
}
.concept-nav li a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding-bottom: 2em;
  width: 100%;
  height: 100%;
  background: #fff;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.concept-nav li a:hover {
  transform: perspective(400px) rotateY(0deg) rotateX(-10deg) rotateZ(0deg) translate(-1%, -1%) scale(1.05);
  box-shadow: 0px -10px 30px 0 rgba(0, 0, 0, 0.1);
}
.concept-nav li a span {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
}
.concept-nav li a::after {
  content: "";
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  height: 10px;
  background: url(../img/nav_arrow.svg) no-repeat 50% 0;
  background-size: 20px;
}
@media only screen and (max-width: 767px) {
  .concept-nav li a::after {
    bottom: 30px;
    background-size: 12px;
  }
}

#kaess {
  margin-top: 150px;
  padding-top: 0;
  background-image: url(../img/concept_kaess_bg.jpg);
  background-size: 970px;
  background-position: right top;
}
@media only screen and (max-width: 767px) {
  #kaess {
    margin-top: 100px;
    background-size: 100%;
  }
}
#kaess .media-img {
  opacity: 0;
  margin-top: -70px;
}
@media only screen and (max-width: 767px) {
  #kaess .media-img {
    margin-top: -40px;
    width: 55vw;
    height: 33vw;
  }
}
#kaess .media-body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  #kaess .media-body {
    width: 75%;
  }
  #kaess .media-body .media-title {
    transform: translateY(50%);
  }
}
#kaess .content-tx {
  margin-top: 6em;
}

@media only screen and (max-width: 767px) {
  #cbp {
    margin-top: 7em;
  }
  #cbp .media-img {
    width: 93vw;
    height: 48vw;
  }
}
#cbp .media-body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  justify-content: end;
  width: 380px;
}
@media only screen and (max-width: 767px) {
  #cbp .media-body {
    margin-top: 3em;
    width: 75%;
  }
}

@media only screen and (max-width: 767px) {
  #pbr {
    margin-top: 7em;
  }
  #pbr .media-img {
    width: 93vw;
    height: 48vw;
  }
}
#pbr .media-body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  width: 380px;
}
@media only screen and (max-width: 767px) {
  #pbr .media-body {
    margin-top: 3em;
    width: 75%;
  }
}

.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: 2em 50px;
  background: #fff;
}
.btn-tx-arrow2 .arrow {
  display: block;
  position: relative;
  top: 4px;
  margin-left: 100px;
  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;
  }
}

.btn-modal {
  position: relative;
  z-index: 100;
  display: inline-block;
  margin-top: 40px;
  width: 100%;
  height: 100px;
}
@media only screen and (max-width: 767px) {
  .btn-modal {
    margin-left: -10%;
    width: 120%;
    height: 70px;
  }
}
.btn-modal a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-weight: 500;
  background: #fff;
}
.btn-modal a p {
  margin-left: 2em;
}
.btn-modal a:hover .plus {
  animation: plus 1.2s cubic-bezier(0.19, 1, 0.22, 1) infinite forwards;
}
.btn-modal .btn-modal-icon {
  width: 150px;
  height: 100px;
}
@media only screen and (max-width: 767px) {
  .btn-modal .btn-modal-icon {
    width: 105px;
    height: 70px;
  }
}
.btn-modal .plus {
  display: block;
  position: absolute;
  top: 50px;
  right: 40px;
  width: 15px;
  height: 1px;
  background-color: #222;
  transform-origin: center center;
}
@media only screen and (max-width: 767px) {
  .btn-modal .plus {
    top: 35px;
    right: 20px;
  }
}
.btn-modal .plus::after {
  content: "";
  display: block;
  position: absolute;
  top: -7px;
  left: 7px;
  width: 1px;
  height: 15px;
  background-color: #222;
}

@keyframes plus {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}
/* 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;
}

#skincare {
  display: none;
}
#skincare .steps {
  margin-top: 30px;
}
#skincare .step {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 40px;
}
#skincare .step-img {
  width: 50%;
  border: solid 1px #c6c6c6;
}
@media only screen and (max-width: 767px) {
  #skincare .step-img {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
}
#skincare .step-tx {
  width: 40%;
}
@media only screen and (max-width: 767px) {
  #skincare .step-tx {
    margin-top: 1.5em;
    width: 100%;
  }
}
#skincare .step-tx h3 {
  font-family: "Inter", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  #skincare .step-tx h3 {
    font-size: 4vw;
  }
}
#skincare .step-tx p {
  margin-top: 0.5em;
}
#skincare .fragrance {
  margin-top: 100px;
  margin-left: -20%;
  width: 140%;
}
@media only screen and (max-width: 767px) {
  #skincare .fragrance {
    margin-top: 50px;
    margin-left: 0;
    width: 100%;
  }
}
#skincare .fragrance .title {
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #skincare .fragrance .title {
    font-size: 5vw;
  }
}
#skincare .fragrance .fig-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #skincare .fragrance .fig-col {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
#skincare .fragrance .fig-col .fig {
  width: 45%;
}
@media only screen and (max-width: 767px) {
  #skincare .fragrance .fig-col .fig {
    margin-left: 0;
    width: 100%;
  }
}
#skincare .fragrance .fig-col .fig h4 {
  margin-top: 1em;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #skincare .fragrance .fig-col .fig h4 {
    font-size: 4vw;
  }
}
#skincare .fragrance .fig-col .fig p {
  margin-top: 1em;
  text-align: center;
}

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