@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: 10%;
  transform: translateY(-50%);
  font-family: "Inter", sans-serif;
  font-size: 6rem;
  font-weight: 400;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #hero .page-title {
    font-size: 9vw;
    line-height: 1.2;
  }
}

.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%;
  }
}

.cbp-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;
  }
}

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

#no-ingredient {
  margin-top: 100px;
}
@media only screen and (max-width: 767px) {
  #no-ingredient {
    margin-top: 50px;
  }
}
#no-ingredient .inner {
  margin: 0 auto;
  padding: 90px 0;
  width: 100%;
  max-width: 1080px;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  #no-ingredient .inner {
    padding: 45px 0;
  }
}
#no-ingredient .content-tx {
  margin-top: 0;
  width: 90%;
  max-width: 890px;
}
#no-ingredient .title {
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #no-ingredient .title {
    font-size: 5vw;
  }
}
#no-ingredient .fig {
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  #no-ingredient .fig {
    margin-top: 25px;
  }
}

#forest {
  margin-top: 150px;
  padding-top: 0;
  height: 330px;
  background-image: url(../img/concept_kaess_bg.jpg);
  background-size: 970px;
  background-position: right top;
}
@media only screen and (max-width: 767px) {
  #forest {
    height: 50vw;
    margin-top: 80px;
    background-size: 100%;
  }
}
#forest .media-img {
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  #forest .media-img {
    width: 93vw;
    height: auto;
  }
}
#forest .media-body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  width: 400px;
}
@media only screen and (max-width: 767px) {
  #forest .media-body {
    margin-top: 30px;
    width: 75%;
  }
}
#forest .content-tx {
  margin-top: 6em;
}

#forest-friendly {
  margin: 80px auto 0;
  width: 100%;
  max-width: 1080px;
}

.ff-container {
  margin: 20px auto 0;
  padding: 70px 13% 75px;
  width: 100%;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .ff-container {
    padding: 35px 10%;
  }
}
.ff-container h5 {
  margin-top: 3em;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .ff-container h5 {
    font-size: 3.6vw;
  }
}
.ff-container .fig {
  margin: 40px auto 0;
  width: 90%;
}
@media only screen and (max-width: 767px) {
  .ff-container .fig {
    margin-top: 30px;
  }
}

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

.ff-title {
  margin-top: 0.5em;
  font-size: 3rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .ff-title {
    font-size: 5vw;
  }
}

.ff-tx {
  margin-top: 1.5em;
}

.ff-box {
  margin-top: 60px;
  padding: 50px 75px;
  width: 100%;
  border: solid 1px #c6c6c6;
}
@media only screen and (max-width: 767px) {
  .ff-box {
    margin-top: 40px;
    margin-left: -5vw;
    padding: 25px 30px;
    width: 90vw;
  }
}
.ff-box h4 {
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .ff-box h4 {
    font-size: 4vw;
  }
}

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