@charset "UTF-8";
/*

  ベリチーム酵素
  トップページ用スタイル

  01. Base
  02. Components
  03. Header/Navigation
  04. Main visual
  05. About
  06. Point
  07. Q&A
  08. Column
  09. Ingredients
  10. Shop
  11. Footer
  12. Animation

*/
/* ==========================================================================
   01. Base
============================================================================= */
html {
  font-size: 62.5%;
}

body {
  background: #fff;
  color: #333;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴシック", "メイリオ", Meiryo, sans-serif;
  font-size: 160%;
  letter-spacing: .025em;
  line-height: 1.6;
}

body:not(.-loaded) #header.clone-header {
  -webkit-transform: translateY(-100%) !important;
  transform: translateY(-100%) !important;
}

@media screen and (max-width: 767.9px) {
  body {
    font-size: 120%;
  }
}

#top-wrapper {
  opacity: 0;
}

#top-wrapper.-active {
  position: relative;
  opacity: 1;
  overflow: hidden;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  -webkit-backface-visibility: hidden;
}

.top-contents * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.top-contents img {
  height: auto;
  line-height: 1;
  max-width: 100%;
  vertical-align: top;
}

.top-contents img.lazyload {
  min-height: 1px;
  opacity: 0;
}

.top-contents img.lazyload.-lazyloaded {
  opacity: 1;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

/* ==========================================================================
   02. Components
============================================================================= */
/* preloader
============================================================================= */
.preloader {
  position: fixed;
  height: 5px;
  width: 100%;
  left: 0;
  z-index: 9999;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.preloader.-hidden {
  opacity: 0;
  -webkit-transition: opacity .4s 0s, visibility 0s .4s, -webkit-transform .4s 0s;
  transition: opacity .4s 0s, visibility 0s .4s, -webkit-transform .4s 0s;
  transition: opacity .4s 0s, transform .4s 0s, visibility 0s .4s;
  transition: opacity .4s 0s, transform .4s 0s, visibility 0s .4s, -webkit-transform .4s 0s;
  visibility: hidden;
}

.preloader-bar {
  background-color: #008999;
  height: 5px;
  width: 100%;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
}

/* box
============================================================================= */
.box-center {
  margin-left: auto;
  margin-right: auto;
  max-width: 1040px;
  padding-left: 40px;
  padding-right: 40px;
}

@media screen and (max-width: 767.9px) {
  .box-center {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.box-center-l {
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  padding-left: 40px;
  padding-right: 40px;
}

@media screen and (max-width: 767.9px) {
  .box-center-l {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

/* bg
============================================================================= */
.bg-dots {
  background-color: #c7efef;
}

.bg-dots::before {
  background: url(img/top/bg_dots1_pc.png) no-repeat center top;
  background-size: cover;
  content: '';
  display: block;
  height: 324px;
  width: 100%;
}

@media screen and (min-width: 1280px) {
  .bg-dots::before {
    background-size: 100% 100%;
    height: 0;
    padding-bottom: 25.31%;
  }
}

@media screen and (max-width: 767.9px) {
  .bg-dots::before {
    background-image: url(img/top/bg_dots1_sp.png);
    height: 42.93vw;
  }
}

.bg-dots::after {
  background: url(img/top/bg_dots2_pc.png) no-repeat center bottom;
  background-size: cover;
  content: '';
  display: block;
  height: 260px;
  width: 100%;
}

@media screen and (min-width: 1280px) {
  .bg-dots::after {
    background-size: 100% 100%;
    height: 0;
    padding-bottom: 20.31%;
  }
}

@media screen and (max-width: 767.9px) {
  .bg-dots::after {
    background-image: url(img/top/bg_dots2_sp.png);
    height: 34.4vw;
  }
}

/* ==========================================================================
   03. Header/Navigation
============================================================================= */
#header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
}

#header #logo {
  margin-left: 0;
}

@media screen and (min-width: 991.1px) {
  #header:not(.clone-header) #nav li a {
    display: block;
  }
  #header:not(.clone-header) #nav li.special a {
    background: url(img/top/nav_selfcheck_w.png) no-repeat left top;
    background-size: contain;
  }
  #header:not(.clone-header) #nav li.product a {
    background: url(img/top/nav_product_w.png) no-repeat left top;
    background-size: contain;
  }
  #header:not(.clone-header) #nav li.column a {
    background: url(img/top/nav_column_w.png) no-repeat left top;
    background-size: contain;
  }
  #header:not(.clone-header) #nav li.qa a {
    background: url(img/top/nav_qa_w.png) no-repeat left top;
    background-size: contain;
  }
  #header:not(.clone-header) #nav li img {
    opacity: 0;
  }
}

@media screen and (max-width: 991px) {
  #header {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100;
  }
  #header #toggle {
    background-color: #fff;
  }
  #header #toggle span {
    background-color: #0f5c6c;
  }
}

#side-shop {
  display: none;
}

@media screen and (max-width: 767.9px) {
  #side-shop {
    display: block;
  }
}

/* ==========================================================================
   04. Main visual
============================================================================= */
#mv {
  overflow: hidden;
  position: relative;
  height: 61.33vw;
  width: 100%;
}

@media screen and (max-width: 1279.9px) {
  #mv {
    height: 785px;
  }
}

@media screen and (max-width: 767.9px) {
  #mv {
    height: auto;
    padding-bottom: 12.8vw;
  }
}

.mv-inner {
  height: 100%;
  width: 100%;
  min-width: 1280px;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 767.9px) {
  .mv-inner {
    min-width: 100%;
    position: static;
    -webkit-transform: none;
    transform: none;
  }
}

.mv-prlx {
  background: url(img/top/mv_bg_pc.png) no-repeat center top;
  background-size: cover;
  height: 44.61vw;
  margin-bottom: 2.34vw;
  position: relative;
  width: 100%;
}

@media screen and (max-width: 1279.9px) {
  .mv-prlx {
    height: 571px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767.9px) {
  .mv-prlx {
    background-image: url(img/top/mv_bg_sp.png);
    height: 70.93vw;
    margin-bottom: 22.67vw;
  }
}

.mv-prlx-layer {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.mv-prlx-layer-food1,
.mv-prlx-layer-food2,
.mv-prlx-layer-food3,
.mv-prlx-layer-food4,
.mv-prlx-layer-food5,
.mv-prlx-layer-block {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -webkit-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  -webkit-transform: translateZ(0);
  overflow: hidden;
}

[class^="mv-image-"] {
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  position: absolute;
}

.mv-image-hamburger {
  background-image: url(img/top/mv_image_hamburger_pc.png);
  top: 22.03vw;
  right: 8.83vw;
  height: 14.45vw;
  width: 14.06vw;
}

@media screen and (max-width: 1279.9px) {
  .mv-image-hamburger {
    top: 282px;
    right: 113px;
    height: 185px;
    width: 180px;
  }
}

@media screen and (max-width: 767.9px) {
  .mv-image-hamburger {
    background-image: url(img/top/mv_image_hamburger_sp.png);
    top: 37.87vw;
    right: -2.4vw;
    height: 18.93vw;
    width: 18.4vw;
  }
}

.mv-image-block {
  background-image: url(img/top/mv_image_block_pc.png);
  top: -2.11vw;
  left: 45.47vw;
  height: 42.42vw;
  width: 42.73vw;
}

@media screen and (max-width: 1279.9px) {
  .mv-image-block {
    top: -27px;
    left: 582px;
    height: 543px;
    width: 547px;
  }
}

@media screen and (max-width: 767.9px) {
  .mv-image-block {
    background-image: url(img/top/mv_image_block_sp.png);
    top: -1.33vw;
    left: 33.33vw;
    height: 60.8vw;
    width: 62.93vw;
  }
}

.mv-image-paella1 {
  background-image: url(img/top/mv_image_paella1_pc.png);
  top: 12.97vw;
  right: 4.92vw;
  height: 10.16vw;
  width: 23.36vw;
}

@media screen and (max-width: 1279.9px) {
  .mv-image-paella1 {
    top: 166px;
    right: 63px;
    height: 130px;
    width: 299px;
  }
}

@media screen and (max-width: 767.9px) {
  .mv-image-paella1 {
    background-image: url(img/top/mv_image_paella1_sp.png);
    top: 23.73vw;
    right: -3.47vw;
    height: 12.8vw;
    width: 29.6vw;
  }
}

.mv-image-paella2 {
  background-image: url(img/top/mv_image_paella2_pc.png);
  top: 4.53vw;
  right: 3.13vw;
  height: 11.02vw;
  width: 12.73vw;
}

@media screen and (max-width: 1279.9px) {
  .mv-image-paella2 {
    top: 58px;
    right: 40px;
    height: 141px;
    width: 163px;
  }
}

@media screen and (max-width: 767.9px) {
  .mv-image-paella2 {
    background-image: url(img/top/mv_image_paella2_sp.png);
    top: 13.33vw;
    right: 1.07vw;
    height: 13.6vw;
    width: 18.13vw;
  }
}

.mv-image-cake1 {
  background-image: url(img/top/mv_image_cake1_pc.png);
  top: 35vw;
  left: 8.83vw;
  height: 10.63vw;
  width: 15.16vw;
}

@media screen and (max-width: 1279.9px) {
  .mv-image-cake1 {
    top: 448px;
    left: 113px;
    height: 136px;
    width: 194px;
  }
}

@media screen and (max-width: 767.9px) {
  .mv-image-cake1 {
    background-image: url(img/top/mv_image_cake1_sp.png);
    top: 57.07vw;
    left: 3.73vw;
    height: 10.67vw;
    width: 15.2vw;
  }
}

.mv-image-cake2 {
  background-image: url(img/top/mv_image_cake2_pc.png);
  top: 25.08vw;
  left: -0.39vw;
  height: 10.31vw;
  width: 26.56vw;
}

@media screen and (max-width: 1279.9px) {
  .mv-image-cake2 {
    top: 321px;
    left: -5px;
    height: 132px;
    width: 340px;
  }
}

@media screen and (max-width: 767.9px) {
  .mv-image-cake2 {
    background-image: url(img/top/mv_image_cake2_sp.png);
    top: 46.4vw;
    left: -1.6vw;
    height: 30.67vw;
    width: 15.2vw;
  }
}

.mv-image-tempra1 {
  background-image: url(img/top/mv_image_tempra1_pc.png);
  top: -1.8vw;
  left: 30.94vw;
  height: 18.28vw;
  width: 27.03vw;
}

@media screen and (max-width: 1279.9px) {
  .mv-image-tempra1 {
    top: -23px;
    left: 396px;
    height: 234px;
    width: 346px;
  }
}

@media screen and (max-width: 767.9px) {
  .mv-image-tempra1 {
    background-image: url(img/top/mv_image_tempra1_sp.png);
    top: -2.13vw;
    left: 40.53vw;
    height: 23.73vw;
    width: 35.47vw;
  }
}

.mv-image-tempra2 {
  background-image: url(img/top/mv_image_tempra2_pc.png);
  top: 0.55vw;
  left: 37.19vw;
  height: 13.67vw;
  width: 15.16vw;
}

@media screen and (max-width: 1279.9px) {
  .mv-image-tempra2 {
    top: 7px;
    left: 476px;
    height: 175px;
    width: 194px;
  }
}

@media screen and (max-width: 767.9px) {
  .mv-image-tempra2 {
    background-image: url(img/top/mv_image_tempra2_sp.png);
    top: 0.53vw;
    left: 48.53vw;
    height: 18.13vw;
    width: 20vw;
  }
}

.mv-image-steak1 {
  background-image: url(img/top/mv_image_steak1_pc.png);
  top: 10.7vw;
  left: 7.5vw;
  height: 12.19vw;
  width: 22.27vw;
}

@media screen and (max-width: 1279.9px) {
  .mv-image-steak1 {
    top: 137px;
    left: 96px;
    height: 156px;
    width: 285px;
  }
}

@media screen and (max-width: 767.9px) {
  .mv-image-steak1 {
    background-image: url(img/top/mv_image_steak1_sp.png);
    top: 16.27vw;
    left: -3.2vw;
    height: 17.07vw;
    width: 31.47vw;
  }
}

.mv-image-steak2 {
  background-image: url(img/top/mv_image_steak2_pc.png);
  top: 20.39vw;
  left: 12.03vw;
  height: 8.44vw;
  width: 14.53vw;
}

@media screen and (max-width: 1279.9px) {
  .mv-image-steak2 {
    top: 261px;
    left: 154px;
    height: 108px;
    width: 186px;
  }
}

@media screen and (max-width: 767.9px) {
  .mv-image-steak2 {
    background-image: url(img/top/mv_image_steak2_sp.png);
    top: 29.07vw;
    left: 1.6vw;
    height: 12vw;
    width: 20.53vw;
  }
}

.mv-copy {
  background: url(img/top/mv_copy_pc.png) no-repeat left top;
  background-size: contain;
  position: absolute;
  left: 21.09vw;
  top: 14.22vw;
  height: 11.88vw;
  width: 58.98vw;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

@media screen and (max-width: 1279.9px) {
  .mv-copy {
    left: 270px;
    top: 182px;
    height: 152px;
    width: 755px;
  }
}

@media screen and (max-width: 767.9px) {
  .mv-copy {
    background-image: url(img/top/mv_copy_sp.png);
    left: 8.8vw;
    top: 28.8vw;
    height: 17.07vw;
    width: 81.6vw;
  }
}

.mv-product {
  position: absolute;
  left: 27.11vw;
  top: 21.64vw;
  width: 47.89vw;
}

.mv-product img {
  height: auto;
  width: 100%;
}

@media screen and (max-width: 1279.9px) {
  .mv-product {
    left: 347px;
    top: 277px;
    height: 345px;
    width: 613px;
  }
}

@media screen and (max-width: 767.9px) {
  .mv-product {
    left: 8.27vw;
    top: 39.2vw;
    width: 88.53vw;
  }
}

.mv-text-wrap {
  font-size: 18px;
  font-size: 1.8rem;
  margin: 0 auto;
  padding-left: 80px;
  width: 640px;
}

@media screen and (max-width: 767.9px) {
  .mv-text-wrap {
    font-size: 3.47vw;
    padding: 0 10.67vw;
    width: 100%;
  }
}

.mv-text1 {
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  font-weight: bold;
  letter-spacing: .1em;
  line-height: 1;
}

@media screen and (max-width: 767.9px) {
  .mv-text1 {
    letter-spacing: .025em;
  }
}

.mv-logo {
  margin-top: 23px;
}

.mv-logo img {
  width: 404px;
}

@media screen and (max-width: 767.9px) {
  .mv-logo {
    margin-top: 3.2vw;
  }
  .mv-logo img {
    width: 100%;
  }
}

.mv-text2 {
  letter-spacing: .02em;
  margin-top: 20px;
}

@media screen and (min-width: 768px), print {
  .mv-text2 {
    white-space: nowrap;
  }
}

@media screen and (max-width: 1279.9px) {
  .mv-text2 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767.9px) {
  .mv-text2 {
    margin-top: 5.33vw;
  }
}

.mv-shop {
  cursor: pointer;
  position: absolute;
  top: 37.5vw;
  right: 0.47vw;
  width: 19.38vw;
  max-width: 248px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media screen and (max-width: 1279.9px) {
  .mv-shop {
    top: inherit;
    bottom: 15px;
  }
}

@media screen and (max-width: 767.9px) {
  .mv-shop {
    display: none;
  }
}

.mv-shop span {
  display: block;
  height: 100%;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.mv-shop span:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.mv-shop img {
  height: auto;
  width: 100%;
}

/* ==========================================================================
   05. About
============================================================================= */
#about {
  padding-top: 134px;
}

@media screen and (max-width: 991px) {
  #about {
    margin-top: 64px;
    padding-top: 70px;
  }
}

@media screen and (max-width: 767.9px) {
  #about {
    margin-top: 0;
    padding-top: 21.87vw;
  }
}

.about-bg {
  background-color: #fcf7f3;
  padding-top: 73px;
}

@media screen and (max-width: 767.9px) {
  .about-bg {
    padding-top: 8.27vw;
  }
}

.about-inner {
  padding: 0 8.33%;
}

@media screen and (max-width: 767.9px) {
  .about-inner {
    padding: 0 10.67vw;
  }
}

/* こんな時に！
============================================================================= */
.about-scene {
  position: relative;
}

.about-scene-title {
  position: absolute;
  left: -66px;
  top: -123px;
  width: 154px;
}

.about-scene-title img {
  height: auto;
  width: 100%;
}

@media screen and (max-width: 767.9px) {
  .about-scene-title {
    left: -5.33vw;
    top: -24.8vw;
    width: 31.47vw;
  }
}

.about-scene-list li {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: .15em;
  line-height: 1.7;
  padding-left: 39px;
  position: relative;
}

@media screen and (max-width: 767.9px) {
  .about-scene-list li {
    font-size: 4.27vw;
    letter-spacing: normal;
    line-height: 2;
    padding-left: 5.2vw;
    text-align: justify;
  }
}

.about-scene-list li + li {
  margin-top: 13px;
}

.about-scene-list li::before {
  background: url(img/top/intro_scene_check.png) no-repeat left top;
  background-size: 100% 100%;
  content: '';
  display: block;
  height: 22px;
  width: 22px;
  position: absolute;
  left: 0;
  top: 10px;
}

@media screen and (max-width: 767.9px) {
  .about-scene-list li::before {
    height: 3.2vw;
    width: 3.2vw;
    top: 2.67vw;
  }
}

.about-scene-list span {
  background: url(img/top/intro_scene_line.png) repeat-x left bottom;
  background-size: 7px 3px;
  padding-bottom: 9px;
}

@media screen and (max-width: 767.9px) {
  .about-scene-list span {
    background-size: 1.07vw auto;
    padding-bottom: 2.4vw;
  }
}

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, .about-scene-list span {
    padding-bottom: 0;
  }
}

/* 商品
============================================================================= */
.about-product {
  margin-top: 46px;
  padding-bottom: 20px;
  position: relative;
}

@media screen and (max-width: 767.9px) {
  .about-product {
    height: auto;
    margin-top: 7.47vw;
    padding-bottom: 2.13vw;
  }
}

.about-product-copy img {
  height: auto;
  width: 55%;
}

@media screen and (max-width: 767.9px) {
  .about-product-copy img {
    width: 74.4vw;
  }
}

.about-product-logo {
  margin-top: 40px;
}

.about-product-logo img {
  height: auto;
  width: 50.38%;
}

@media screen and (max-width: 767.9px) {
  .about-product-logo {
    margin-top: 6.4vw;
  }
  .about-product-logo img {
    width: 45.6vw;
  }
}

.about-product-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 41.62%;
}

.about-product-img img {
  height: auto;
  width: 100%;
}

@media screen and (max-width: 767.9px) {
  .about-product-img {
    right: -1.73vw;
    top: 6.93vw;
    width: 32.67vw;
  }
}

/* ==========================================================================
   06. Point
============================================================================= */
#point {
  color: #263238;
}

/* point1
============================================================================= */
.point1 {
  margin-top: -35px;
}

@media screen and (max-width: 767.9px) {
  .point1 {
    margin-top: -16vw;
  }
}

.point1 .point-title {
  padding-right: 2.29%;
  text-align: center;
}

.point1 .point-title img {
  width: 582px;
  height: auto;
}

@media screen and (max-width: 767.9px) {
  .point1 .point-title {
    padding-right: 0;
  }
  .point1 .point-title img {
    width: 76.8vw;
  }
}

.point1 .point-img {
  margin-top: 50px;
  text-align: center;
}

.point1 .point-img img {
  width: 630px;
  height: auto;
}

@media screen and (max-width: 767.9px) {
  .point1 .point-img {
    margin-top: 3.2vw;
  }
  .point1 .point-img img {
    width: 77.33vw;
  }
}

/* point2
============================================================================= */
.point2 {
  margin: 100px auto 21px;
}

@media screen and (max-width: 767.9px) {
  .point2 {
    margin: 14.13vw 0 11.2vw;
  }
}

.point2 .point-title {
  padding-left: 1.25%;
  text-align: center;
}

.point2 .point-title img {
  width: 415px;
  height: auto;
}

@media screen and (max-width: 767.9px) {
  .point2 .point-title {
    padding-left: 0;
  }
  .point2 .point-title img {
    width: 63.47vw;
  }
}

.point2 .point-img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

@media screen and (max-width: 767.9px) {
  .point2 .point-img-wrap {
    margin-top: 6.4vw;
  }
}

.point2 .point-img {
  padding-left: 14px;
  width: 400px;
}

.point2 .point-img img {
  width: 335px;
  height: auto;
}

@media screen and (max-width: 767.9px) {
  .point2 .point-img {
    padding-left: 6.4vw;
    width: 52vw;
  }
  .point2 .point-img img {
    width: 43.47vw;
  }
}

.point2 .point-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: .025em;
  padding: 18px 80px 0 0;
}

@media screen and (max-width: 767.9px) {
  .point2 .point-text {
    font-size: 3.2vw;
    padding: 0 10.67vw 0 0;
    text-align: justify;
  }
}

/* ==========================================================================
   07. Q&A
============================================================================= */
#qa {
  margin-bottom: 82px;
  padding-top: 104px;
}

@media screen and (max-width: 991px) {
  #qa {
    margin-top: 105px;
    padding-top: 20px;
  }
}

@media screen and (max-width: 767.9px) {
  #qa {
    margin-bottom: 10.67vw;
    margin-top: 0;
    padding: 5.33vw 4.67vw 0 5.33vw;
  }
}

.qa-inner {
  background: url(img/top/qa_bg1.png) , url(img/top/qa_bg3.png) , url(img/top/qa_bg2.png);
  background-repeat: no-repeat, no-repeat, repeat-y;
  background-position: left top, left bottom, left top;
  background-size: 100% auto, 100% auto, 100% auto;
  margin-left: 40px;
  max-width: 881px;
  padding: 120px 12.5%;
}

@media screen and (max-width: 767.9px) {
  .qa-inner {
    margin-left: 0;
    max-width: 100%;
    padding: 17.6vw 10.27vw 14.67vw 7.87vw;
  }
}

.qa-title {
  margin-bottom: 25px;
  text-align: center;
}

.qa-title img {
  height: auto;
  width: 85px;
}

@media screen and (max-width: 767.9px) {
  .qa-title {
    margin-bottom: 23px;
  }
  .qa-title img {
    width: 65px;
  }
}

.qa-set + .qa-set {
  margin-top: 68px;
}

@media screen and (max-width: 767.9px) {
  .qa-set + .qa-set {
    margin-top: 34px;
  }
}

.qa-set-q {
  color: #085666;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  min-height: 38px;
  padding: 6px 0 0 80px;
  position: relative;
}

@media screen and (max-width: 767.9px) {
  .qa-set-q {
    font-size: 14px;
    font-size: 1.4rem;
    min-height: 25px;
    padding: 3px 0 0 43px;
  }
}

.qa-set-q span {
  position: absolute;
  left: 0;
  top: 0;
}

.qa-set-q span img {
  height: 38px;
  width: auto;
}

@media screen and (max-width: 767.9px) {
  .qa-set-q span img {
    height: 25px;
  }
}

.qa-set-a {
  font-size: 18px;
  font-size: 1.8rem;
  margin-top: 18px;
  padding-left: 80px;
}

.qa-set-a p + p {
  margin-top: 28px;
}

@media screen and (max-width: 767.9px) {
  .qa-set-a {
    font-size: 13px;
    font-size: 1.3rem;
    margin-top: 4px;
    padding-left: 43px;
  }
  .qa-set-a p + p {
    margin-top: 21px;
  }
}

/* ==========================================================================
   08. Column
============================================================================= */
#column {
  margin-bottom: -115px;
}

@media screen and (max-width: 767.9px) {
  #column {
    margin-bottom: -4.53vw;
  }
}

.column-banner {
  padding: 0 50px;
}

.column-banner a {
  display: block;
  position: relative;
}

.column-banner img {
  height: auto;
  width: 100%;
}

@media screen and (min-width: 768px), print {
  .column-banner a:hover .column-banner-button span {
    opacity: .6;
  }
}

@media screen and (max-width: 767.9px) {
  .column-banner {
    padding: 0 10.67vw;
  }
}

.column-banner-button {
  background-color: #fff;
  margin: -30px auto 0;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  width: 39.53%;
}

.column-banner-button span {
  display: block;
}

@media screen and (min-width: 768px), print {
  .column-banner-button span {
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
  }
}

@media screen and (max-width: 767.9px) {
  .column-banner-button {
    margin-top: -6vw;
    width: 66.67vw;
  }
}

/* ==========================================================================
   09. Ingredients
============================================================================= */
#ingredients {
  padding: 60px 0 120px;
}

@media screen and (max-width: 767.9px) {
  #ingredients {
    padding: 10.67vw 0 16vw;
  }
}

.ingredients-inner {
  padding: 0 8.33%;
}

@media screen and (max-width: 767.9px) {
  .ingredients-inner {
    padding: 0 5.33vw;
  }
}

.ingredients-title {
  background-color: #008999;
  border-radius: 27px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: bold;
  height: 54px;
}

@media screen and (max-width: 767.9px) {
  .ingredients-title {
    border-radius: 13.5px;
    font-size: 15px;
    font-size: 1.5rem;
    height: 27px;
  }
}

.ingredients-cont {
  padding: 0 10%;
}

@media screen and (max-width: 767.9px) {
  .ingredients-cont {
    padding: 0 5.33vw;
  }
}

/* 成分・分量
============================================================================= */
.ingredients1-tbl-notes {
  font-weight: bold;
  margin-top: 37px;
  text-align: right;
}

@media screen and (max-width: 767.9px) {
  .ingredients1-tbl-notes {
    margin-top: 17px;
  }
}

.ingredients1-tbl {
  margin-top: 7px;
  width: 100%;
}

@media screen and (max-width: 767.9px) {
  .ingredients1-tbl {
    line-height: 5px;
  }
}

.ingredients1-tbl th,
.ingredients1-tbl td {
  letter-spacing: .075em;
  line-height: 1.75;
}

@media screen and (max-width: 767.9px) {
  .ingredients1-tbl th,
  .ingredients1-tbl td {
    line-height: 2.16;
  }
}

.ingredients1-tbl th {
  font-weight: bold;
  text-align: left;
  width: 25%;
}

@media screen and (max-width: 767.9px) {
  .ingredients1-tbl th {
    width: 28.81%;
  }
}

.ingredients1-tbl td:last-child {
  text-align: right;
}

.ingredients1-text {
  font-size: 18px;
  font-size: 1.8rem;
  margin-top: 30px;
}

@media screen and (max-width: 767.9px) {
  .ingredients1-text {
    font-size: 13px;
    font-size: 1.3rem;
    margin-top: 27px;
  }
}

.ingredients1-notes {
  margin-top: 30px;
}

@media screen and (max-width: 767.9px) {
  .ingredients1-notes {
    margin-top: 27px;
  }
}

.ingredients1-notes li {
  padding-left: 1.5em;
  position: relative;
}

.ingredients1-notes li + li {
  margin-top: 10px;
}

@media screen and (max-width: 767.9px) {
  .ingredients1-notes li + li {
    margin-top: 6px;
  }
}

.ingredients1-notes li::before {
  content: '※';
  display: block;
  position: absolute;
  left: 0;
}

/* 用法・用量
============================================================================= */
.ingredients2 {
  margin-top: 55px;
}

@media screen and (max-width: 767.9px) {
  .ingredients2 {
    margin-top: 36px;
  }
}

.ingredients2-text {
  font-size: 18px;
  font-size: 1.8rem;
  margin-top: 34px;
}

@media screen and (max-width: 767.9px) {
  .ingredients2-text {
    font-size: 13px;
    font-size: 1.3rem;
    margin-top: 17px;
  }
}

.ingredients2-tbl-wrap {
  border-top: 2px solid #86cbcf;
  border-bottom: 2px solid #86cbcf;
  margin-top: 34px;
}

@media screen and (max-width: 767.9px) {
  .ingredients2-tbl-wrap {
    border-top-width: 1px;
    border-bottom-width: 1px;
    margin-top: 10px;
  }
}

.ingredients2-tbl {
  width: 100%;
}

.ingredients2-tbl tr:last-child td {
  border-bottom: none;
}

.ingredients2-tbl th,
.ingredients2-tbl td {
  border-left: 2px solid #d9d9d9;
  text-align: center;
  vertical-align: middle;
}

.ingredients2-tbl th:first-child,
.ingredients2-tbl td:first-child {
  border-left: none;
}

@media screen and (max-width: 767.9px) {
  .ingredients2-tbl th,
  .ingredients2-tbl td {
    border-left-width: 1px;
  }
}

.ingredients2-tbl th {
  background-color: #c7efef;
  font-weight: bold;
  padding: 13px;
}

@media screen and (max-width: 767.9px) {
  .ingredients2-tbl th {
    padding: 5px;
  }
}

.ingredients2-tbl td {
  border-bottom: 2px solid #d9d9d9;
  padding: 11px;
  text-align: center;
}

@media screen and (max-width: 767.9px) {
  .ingredients2-tbl td {
    border-bottom-width: 1px;
    padding: 6px 5px;
  }
}

.ingredients2-tbl .pack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.ingredients2-tbl .pack img {
  height: auto;
  width: 25px;
}

@media screen and (max-width: 767.9px) {
  .ingredients2-tbl .pack img {
    width: 13px;
  }
}

.ingredients2-tbl .pack-text {
  padding-left: 15px;
}

@media screen and (max-width: 767.9px) {
  .ingredients2-tbl .pack-text {
    padding-left: 9px;
  }
}

/* ==========================================================================
   10. Shop
============================================================================= */
#shop {
  background-image: url(img/top/shop_bg2_pc.png) , url(img/top/shop_bg3_pc.jpg);
  background-repeat: no-repeat,repeat-x;
  background-position: left top, left top;
  background-size: auto 100%, auto 100%;
  color: #fff;
  position: relative;
}

@media screen and (max-width: 767.9px) {
  #shop {
    background: url(img/top/shop_bg2_sp.png) no-repeat left top;
    background-size: 100% 100%;
    height: 80vw;
  }
}

#shop::before {
  background: url(img/top/shop_bg1_pc.png) no-repeat left top;
  background-size: 100% 100%;
  content: '';
  display: block;
  height: 578px;
  width: 570px;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media screen and (max-width: 767.9px) {
  #shop::before {
    background-image: url(img/top/shop_bg1_sp.png);
    height: 336px;
    width: 207px;
  }
}

.shop-inner {
  margin: 0 auto;
  max-width: 980px;
  padding: 100px 40px 90px;
  position: relative;
}

@media screen and (max-width: 767.9px) {
  .shop-inner {
    padding: 6.93vw 10.67vw 0;
  }
}

.shop-title {
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
    margin-bottom: 30px;
}

@media screen and (max-width: 767.9px) {
  .shop-title {
    font-size: 3.2vw;
      margin-bottom: 20px;
  }
    #shop .shop-title.mt60{
        margin-top: 30px !important;
    }
}

.shop-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
/*  margin-top: 43px;*/
  padding-right: 30px;
}

.shop-banner li {
  margin-right: 10px;
  width: 25%;
}

.shop-banner li:nth-child(4n) {
  margin-right: -30px;
}

@media screen and (max-width: 767.9px) {
  .shop-banner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
/*    margin-top: 5.87vw;*/
    padding-right: 4vw;
  }
  .shop-banner li {
    margin-right: 4vw;
    width: 50%;
  }
  .shop-banner li:nth-child(2n) {
    margin-right: -4vw !important;
  }
  .shop-banner li:nth-child(n+3) {
    margin-top: 4vw;
  }
}

.shop-banner img {
  width: 100%;
}

.shop-notes {
  margin-top: 16px;
  text-align: right;
}

@media screen and (max-width: 767.9px) {
  .shop-notes {
    font-size: 2.4vw;
    -webkit-font-feature-settings: 'palt';
    font-feature-settings: 'palt';
    margin-top: 3.2vw;
  }
}

.shop-modal {
  background-color: rgba(0, 137, 153, 0.95);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease, visibility 0s 0.4s;
  transition: opacity 0.4s ease, visibility 0s 0.4s;
}

@media screen and (max-width: 767.9px) {
  .shop-modal {
    display: none;
  }
}

.shop-modal.-active {
  -webkit-transition: opacity 0.4s ease, visibility 0s 0s;
  transition: opacity 0.4s ease, visibility 0s 0s;
  opacity: 1;
  visibility: visible;
}

.shop-modal-inner {
  font-size: 14px;
  font-size: 1.4rem;
  position: relative;
  text-align: center;
  width: 690px;
}

.shop-modal-banner-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 20px;
  padding-right: 6px;
}

.shop-modal-banner-list li {
  margin-right: 6px;
  width: 50%;
}

.shop-modal-banner-list li:nth-child(2n) {
  margin-right: -6px;
}

.shop-modal-banner-list li:nth-child(n+3) {
  margin-top: 6px;
}

.shop-modal-banner-list a {
  background-color: #fff;
  border: 1px solid #d2d2d2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .shop-modal-banner-list a {
    height: 55px;
  }
}

.shop-modal-banner-list img {
  height: 100%;
  width: auto;
}

.shop-modal-title {
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 43px;
}

.shop-modal-note {
  text-align: right;
}

.shop-modal-close {
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-radius: 35px;
  cursor: pointer;
  height: 70px;
  width: 70px;
  overflow: hidden;
  position: absolute;
  right: -110px;
  top: -30px;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.shop-modal-close:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}


.store_box a{
    background-color: #fff;
    display: block;
    width: 100%;
    padding: 1.5rem 1rem;
    text-decoration: none;
    transition-duration: .5s;
}
.store_box a:hover{
    opacity: .6;
}

.store_box a .store_box__flex{
    display: flex;
    justify-content: center;
    align-items: center;
}
.store_box a .store_box__flex .store_box_icon{
    width: 52px;
}
.store_box a .store_box__flex .store_box_txt p{
   font-size: 18px;
    font-weight: bold;
    color: #b89b73;
    padding-left: 15px;
}

.shop-inner .store_box a{
    max-width: 628px;
    margin: auto;
}

.shop-inner .store_box a:hover{
    opacity: 1;
}

@media (max-width: 767px) {
  #side-shop {
    height: 350px;
      bottom: -350px;
    }
    #side-shop .store_box{
        padding-top: 180px;
        width: 258px;
        margin: auto;
        padding-right: 15px;
    }
    #side-shop .store_box a{
        margin-top: 15px;
    }
    #side-shop .store_box a .store_box__flex .store_box_icon{
    width: 35px;
}
    #side-shop .store_box a .store_box__flex .store_box_icon img{
    width: 100%;
}
#side-shop .store_box a .store_box__flex .store_box_txt p{
   font-size: 16px;
    font-weight: bold;
    color: #b89b73;
    padding-left: 15px;
}
    #side-shop .side-shop_ti{
        text-align: center;
        font-size: 14px;
        font-weight: bold;
    }
    #side-shop .banner-list {
     padding-right: 0px;
}
    #side-shop .banner-list li:nth-child(even){
            margin-right: 0px;
    }
    #side-shop .banner-list li{
            margin-right: 0px;
        padding: 5px;
        width: 46%;
    }
    #side-shop .banner-list li:nth-child(n + 3){
        margin-top: 0;
    }
    .store_box a .store_box__flex .store_box_txt p{
        font-size: 14px;
    }
    .store_box a .store_box__flex .store_box_icon{
    width: 35px;
}
}



@media screen and (max-width: 991px) {
  .shop-modal-close {
    right: -30px;
  }
}

.shop-modal-close span {
  background-color: #fff;
  display: block;
  position: relative;
  height: 100%;
}

.shop-modal-close span::before, .shop-modal-close span::after {
  background-color: #f57c00;
  border-radius: 2px;
  content: '';
  display: block;
  height: 4px;
  width: 30px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transition: width .2s ease;
  transition: width .2s ease;
}

.shop-modal-close span::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.shop-modal-close span::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ==========================================================================
   11. Footer
============================================================================= */
#footer {
  color: #263238;
  margin-top: 0;
  position: relative;
}

#footer a {
  color: #263238;
}

.footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  padding: 65px 0;
  position: relative;
}

@media screen and (max-width: 991px) {
  .footer-inner {
    display: block;
  }
}

@media screen and (max-width: 767.9px) {
  .footer-inner {
    padding: 40px 0 20px;
  }
}

@media screen and (max-width: 767.9px) {
  .footer-pagetop {
    top: 30px !important;
  }
}

.footer-shionogi {
  line-height: 1;
  width: 120px;
}

.footer-shionogi img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 991px) {
  .footer-shionogi {
    margin: 0 auto;
  }
}

@media screen and (max-width: 767.9px) {
  .footer-shionogi {
    width: 160px;
  }
}

.footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 5%;
}

.footer-menu li + li {
  margin-left: 40px;
}

.footer-menu a {
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  .footer-menu {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px;
    margin-left: 0;
  }
  .footer-menu li {
    margin: 0 10px !important;
  }
}

@media screen and (max-width: 767.9px) {
  .footer-menu {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.footer-copyright {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 10px;
  font-size: 1rem;
}

@media screen and (max-width: 991px) {
  .footer-copyright {
    margin-top: 30px;
    position: static;
    text-align: center;
    -webkit-transform: none;
    transform: none;
  }
}

@media screen and (max-width: 767.9px) {
  .footer-copyright {
    margin-top: 24px;
  }
}

/* ==========================================================================
   12. Animation
============================================================================= */
/* Main visual
============================================================================= */
@media screen and (min-width: 768px), print {
  #top-wrapper:not(.-active) #header {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  #top-wrapper:not(.-active) #side-worker {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  #top-wrapper:not(.-active) #side-shop .title {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  #header,
  #side-worker,
  #side-shop .title {
    -webkit-transition: opacity 0.6s ease 1.8s, -webkit-transform 0.6s ease 1.8s;
    transition: opacity 0.6s ease 1.8s, -webkit-transform 0.6s ease 1.8s;
    transition: opacity 0.6s ease 1.8s, transform 0.6s ease 1.8s;
    transition: opacity 0.6s ease 1.8s, transform 0.6s ease 1.8s, -webkit-transform 0.6s ease 1.8s;
  }
  .mv-prlx-layer-food1,
  .mv-prlx-layer-food2,
  .mv-prlx-layer-food3,
  .mv-prlx-layer-food4,
  .mv-prlx-layer-food5 {
    opacity: 0;
    -webkit-transition: opacity 1s ease 0.4s;
    transition: opacity 1s ease 0.4s;
  }
  .mv-prlx-layer-food2 {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
  }
  .mv-prlx-layer-food3 {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
  }
  .mv-prlx-layer-food4 {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
  }
  .mv-prlx-layer-food5 {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
  }
  .mv-prlx-layer-block {
    opacity: 0;
    -webkit-transition: opacity 0.6s ease 1.2s;
    transition: opacity 0.6s ease 1.2s;
  }
  .mv-copy {
    opacity: 0;
    -webkit-transition: opacity 0.6s ease 1.2s;
    transition: opacity 0.6s ease 1.2s;
  }
  .mv-product {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
    -webkit-transition: opacity 0.6s ease 1.8s, -webkit-transform 0.6s ease 1.8s;
    transition: opacity 0.6s ease 1.8s, -webkit-transform 0.6s ease 1.8s;
    transition: opacity 0.6s ease 1.8s, transform 0.6s ease 1.8s;
    transition: opacity 0.6s ease 1.8s, transform 0.6s ease 1.8s, -webkit-transform 0.6s ease 1.8s;
  }
  .mv-text-wrap {
    opacity: 0;
    -webkit-transition: opacity 0.6s ease 1.8s;
    transition: opacity 0.6s ease 1.8s;
  }
  .mv-shop {
    opacity: 0;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
    -webkit-transition: opacity 0.6s ease 1.8s, -webkit-transform 0.6s ease 1.8s;
    transition: opacity 0.6s ease 1.8s, -webkit-transform 0.6s ease 1.8s;
    transition: opacity 0.6s ease 1.8s, transform 0.6s ease 1.8s;
    transition: opacity 0.6s ease 1.8s, transform 0.6s ease 1.8s, -webkit-transform 0.6s ease 1.8s;
  }
  #top-wrapper.-active .mv-prlx-layer-food1,
  #top-wrapper.-active .mv-prlx-layer-food2,
  #top-wrapper.-active .mv-prlx-layer-food3,
  #top-wrapper.-active .mv-prlx-layer-food4,
  #top-wrapper.-active .mv-prlx-layer-food5 {
    -webkit-animation: foodIn 1.8s linear both 0.4s;
    animation: foodIn 1.8s linear both 0.4s;
    opacity: 1;
  }
  #top-wrapper.-active .mv-prlx-layer-food2 {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
  }
  #top-wrapper.-active .mv-prlx-layer-food3 {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
  }
  #top-wrapper.-active .mv-prlx-layer-food4 {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
  }
  #top-wrapper.-active .mv-prlx-layer-food5 {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
  }
  #top-wrapper.-active .mv-prlx-layer-block {
    -webkit-animation: blockIn 1.6s linear both 1.2s;
    animation: blockIn 1.6s linear both 1.2s;
    opacity: 1;
  }
  #top-wrapper.-active .mv-copy {
    -webkit-animation: copyIn 1.6s linear both 1.2s;
    animation: copyIn 1.6s linear both 1.2s;
    opacity: 1;
  }
}

@media screen and (min-width: 768px) and (max-width: 767.9px) {
  #top-wrapper.-active .mv-copy {
    -webkit-animation: copyInSp 1.6s linear both 1.2s;
    animation: copyInSp 1.6s linear both 1.2s;
  }
}

@media screen and (min-width: 768px), print {
  #top-wrapper.-active .mv-product {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  #top-wrapper.-active .mv-text-wrap {
    opacity: 1;
  }
  #top-wrapper.-active .mv-shop {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes copyIn {
  0% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -300, 50, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -300, 50, 0, 1);
  }
  4.3% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -145.72, 24.29, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -145.72, 24.29, 0, 1);
  }
  8.61% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -36.42, 6.07, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -36.42, 6.07, 0, 1);
  }
  12.91% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 15.68, -2.61, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 15.68, -2.61, 0, 1);
  }
  17.22% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 28, -4.67, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 28, -4.67, 0, 1);
  }
  28.33% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 6.19, -1.03, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 6.19, -1.03, 0, 1);
  }
  39.44% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -1.87, 0.31, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -1.87, 0.31, 0, 1);
  }
  61.66% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.12, -0.02, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.12, -0.02, 0, 1);
  }
  83.98% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.01, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.01, 0, 0, 1);
  }
  100% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}

@keyframes copyIn {
  0% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -300, 50, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -300, 50, 0, 1);
  }
  4.3% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -145.72, 24.29, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -145.72, 24.29, 0, 1);
  }
  8.61% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -36.42, 6.07, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -36.42, 6.07, 0, 1);
  }
  12.91% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 15.68, -2.61, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 15.68, -2.61, 0, 1);
  }
  17.22% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 28, -4.67, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 28, -4.67, 0, 1);
  }
  28.33% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 6.19, -1.03, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 6.19, -1.03, 0, 1);
  }
  39.44% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -1.87, 0.31, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -1.87, 0.31, 0, 1);
  }
  61.66% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.12, -0.02, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.12, -0.02, 0, 1);
  }
  83.98% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.01, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.01, 0, 0, 1);
  }
  100% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}

@-webkit-keyframes copyInSp {
  0% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -150, 25, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -150, 25, 0, 1);
  }
  4.3% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -72.86, 12.14, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -72.86, 12.14, 0, 1);
  }
  8.61% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -18.21, 3.04, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -18.21, 3.04, 0, 1);
  }
  12.91% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 7.84, -1.31, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 7.84, -1.31, 0, 1);
  }
  17.22% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 14, -2.33, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 14, -2.33, 0, 1);
  }
  28.33% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 3.09, -0.52, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 3.09, -0.52, 0, 1);
  }
  39.44% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.94, 0.16, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.94, 0.16, 0, 1);
  }
  61.66% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.06, -0.01, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.06, -0.01, 0, 1);
  }
  83.98% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  100% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}

@keyframes copyInSp {
  0% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -150, 25, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -150, 25, 0, 1);
  }
  4.3% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -72.86, 12.14, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -72.86, 12.14, 0, 1);
  }
  8.61% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -18.21, 3.04, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -18.21, 3.04, 0, 1);
  }
  12.91% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 7.84, -1.31, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 7.84, -1.31, 0, 1);
  }
  17.22% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 14, -2.33, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 14, -2.33, 0, 1);
  }
  28.33% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 3.09, -0.52, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 3.09, -0.52, 0, 1);
  }
  39.44% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.94, 0.16, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.94, 0.16, 0, 1);
  }
  61.66% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.06, -0.01, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.06, -0.01, 0, 1);
  }
  83.98% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  100% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}

@-webkit-keyframes blockIn {
  0% {
    -webkit-transform: matrix3d(0.5, 0, 0, 0, 0, 0.5, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.5, 0, 0, 0, 0, 0.5, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  4.3% {
    -webkit-transform: matrix3d(0.76, 0, 0, 0, 0, 0.76, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.76, 0, 0, 0, 0, 0.76, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  8.61% {
    -webkit-transform: matrix3d(0.94, 0, 0, 0, 0, 0.94, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.94, 0, 0, 0, 0, 0.94, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  12.91% {
    -webkit-transform: matrix3d(1.03, 0, 0, 0, 0, 1.03, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.03, 0, 0, 0, 0, 1.03, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  17.22% {
    -webkit-transform: matrix3d(1.05, 0, 0, 0, 0, 1.05, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.05, 0, 0, 0, 0, 1.05, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  28.33% {
    -webkit-transform: matrix3d(1.01, 0, 0, 0, 0, 1.01, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.01, 0, 0, 0, 0, 1.01, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  39.44% {
    -webkit-transform: matrix3d(1.0, 0, 0, 0, 0, 1.0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.0, 0, 0, 0, 0, 1.0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  61.66% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  83.98% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  100% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}

@keyframes blockIn {
  0% {
    -webkit-transform: matrix3d(0.5, 0, 0, 0, 0, 0.5, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.5, 0, 0, 0, 0, 0.5, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  4.3% {
    -webkit-transform: matrix3d(0.76, 0, 0, 0, 0, 0.76, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.76, 0, 0, 0, 0, 0.76, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  8.61% {
    -webkit-transform: matrix3d(0.94, 0, 0, 0, 0, 0.94, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.94, 0, 0, 0, 0, 0.94, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  12.91% {
    -webkit-transform: matrix3d(1.03, 0, 0, 0, 0, 1.03, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.03, 0, 0, 0, 0, 1.03, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  17.22% {
    -webkit-transform: matrix3d(1.05, 0, 0, 0, 0, 1.05, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.05, 0, 0, 0, 0, 1.05, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  28.33% {
    -webkit-transform: matrix3d(1.01, 0, 0, 0, 0, 1.01, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.01, 0, 0, 0, 0, 1.01, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  39.44% {
    -webkit-transform: matrix3d(1.0, 0, 0, 0, 0, 1.0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.0, 0, 0, 0, 0, 1.0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  61.66% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  83.98% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  100% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}

@-webkit-keyframes foodIn {
  0% {
    -webkit-transform: matrix3d(0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  3.5% {
    -webkit-transform: matrix3d(0.81, 0, 0, 0, 0, 0.81, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.81, 0, 0, 0, 0, 0.81, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  6.91% {
    -webkit-transform: matrix3d(0.89, 0, 0, 0, 0, 0.89, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.89, 0, 0, 0, 0, 0.89, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  10.31% {
    -webkit-transform: matrix3d(0.94, 0, 0, 0, 0, 0.94, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.94, 0, 0, 0, 0, 0.94, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  13.71% {
    -webkit-transform: matrix3d(0.97, 0, 0, 0, 0, 0.97, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.97, 0, 0, 0, 0, 0.97, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  20.52% {
    -webkit-transform: matrix3d(1.0, 0, 0, 0, 0, 1.0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.0, 0, 0, 0, 0, 1.0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  27.33% {
    -webkit-transform: matrix3d(1.01, 0, 0, 0, 0, 1.01, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.01, 0, 0, 0, 0, 1.01, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  47.35% {
    -webkit-transform: matrix3d(1.0, 0, 0, 0, 0, 1.0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.0, 0, 0, 0, 0, 1.0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  67.37% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  100% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}

@keyframes foodIn {
  0% {
    -webkit-transform: matrix3d(0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  3.5% {
    -webkit-transform: matrix3d(0.81, 0, 0, 0, 0, 0.81, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.81, 0, 0, 0, 0, 0.81, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  6.91% {
    -webkit-transform: matrix3d(0.89, 0, 0, 0, 0, 0.89, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.89, 0, 0, 0, 0, 0.89, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  10.31% {
    -webkit-transform: matrix3d(0.94, 0, 0, 0, 0, 0.94, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.94, 0, 0, 0, 0, 0.94, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  13.71% {
    -webkit-transform: matrix3d(0.97, 0, 0, 0, 0, 0.97, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.97, 0, 0, 0, 0, 0.97, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  20.52% {
    -webkit-transform: matrix3d(1.0, 0, 0, 0, 0, 1.0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.0, 0, 0, 0, 0, 1.0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  27.33% {
    -webkit-transform: matrix3d(1.01, 0, 0, 0, 0, 1.01, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.01, 0, 0, 0, 0, 1.01, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  47.35% {
    -webkit-transform: matrix3d(1.0, 0, 0, 0, 0, 1.0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.0, 0, 0, 0, 0, 1.0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  67.37% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  100% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}

/* About
============================================================================= */
.about-scene-title {
  opacity: 0;
  -webkit-transition: opacity .4s ease;
  transition: opacity .4s ease;
}

.about-scene-list li {
  opacity: 0;
  -webkit-transform: translate3d(20px, 0, 0);
  transform: translate3d(20px, 0, 0);
  -webkit-transition: opacity .4s ease, -webkit-transform .4s ease;
  transition: opacity .4s ease, -webkit-transform .4s ease;
  transition: opacity .4s ease, transform .4s ease;
  transition: opacity .4s ease, transform .4s ease, -webkit-transform .4s ease;
}

.about-scene-list li:nth-child(1) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.about-scene-list li:nth-child(2) {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.about-scene-list li:nth-child(3) {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

.about-scene-list li:nth-child(4) {
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}

.about-product {
  opacity: 0;
  -webkit-transform: translate3d(0, 30px, 0);
  transform: translate3d(0, 30px, 0);
  -webkit-transition: opacity .6s ease 1.2s, -webkit-transform .6s ease 1.2s;
  transition: opacity .6s ease 1.2s, -webkit-transform .6s ease 1.2s;
  transition: opacity .6s ease 1.2s, transform .6s ease 1.2s;
  transition: opacity .6s ease 1.2s, transform .6s ease 1.2s, -webkit-transform .6s ease 1.2s;
}

@media screen and (max-width: 767.9px) {
  .about-product {
    -webkit-transform: translate3d(0, 15px, 0);
    transform: translate3d(0, 15px, 0);
  }
}

.about-inner.-inviewed .about-scene-title {
  -webkit-animation: aboutSceneTitleIn 1s linear both;
  animation: aboutSceneTitleIn 1s linear both;
  opacity: 1;
}

.about-inner.-inviewed .about-scene-list li {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.about-inner.-inviewed .about-product {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

@-webkit-keyframes aboutSceneTitleIn {
  0% {
    -webkit-transform: matrix3d(0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 1, 0, 14, 14, 0, 1);
    transform: matrix3d(0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 1, 0, 14, 14, 0, 1);
  }
  3.5% {
    -webkit-transform: matrix3d(0.81, 0, 0, 0, 0, 0.81, 0, 0, 0, 0, 1, 0, 10.2, 10.2, 0, 1);
    transform: matrix3d(0.81, 0, 0, 0, 0, 0.81, 0, 0, 0, 0, 1, 0, 10.2, 10.2, 0, 1);
  }
  6.91% {
    -webkit-transform: matrix3d(0.89, 0, 0, 0, 0, 0.89, 0, 0, 0, 0, 1, 0, 6.57, 6.57, 0, 1);
    transform: matrix3d(0.89, 0, 0, 0, 0, 0.89, 0, 0, 0, 0, 1, 0, 6.57, 6.57, 0, 1);
  }
  10.31% {
    -webkit-transform: matrix3d(0.94, 0, 0, 0, 0, 0.94, 0, 0, 0, 0, 1, 0, 3.7, 3.7, 0, 1);
    transform: matrix3d(0.94, 0, 0, 0, 0, 0.94, 0, 0, 0, 0, 1, 0, 3.7, 3.7, 0, 1);
  }
  13.71% {
    -webkit-transform: matrix3d(0.97, 0, 0, 0, 0, 0.97, 0, 0, 0, 0, 1, 0, 1.74, 1.74, 0, 1);
    transform: matrix3d(0.97, 0, 0, 0, 0, 0.97, 0, 0, 0, 0, 1, 0, 1.74, 1.74, 0, 1);
  }
  20.52% {
    -webkit-transform: matrix3d(1.0, 0, 0, 0, 0, 1.0, 0, 0, 0, 0, 1, 0, -0.07, -0.07, 0, 1);
    transform: matrix3d(1.0, 0, 0, 0, 0, 1.0, 0, 0, 0, 0, 1, 0, -0.07, -0.07, 0, 1);
  }
  27.33% {
    -webkit-transform: matrix3d(1.01, 0, 0, 0, 0, 1.01, 0, 0, 0, 0, 1, 0, -0.39, -0.39, 0, 1);
    transform: matrix3d(1.01, 0, 0, 0, 0, 1.01, 0, 0, 0, 0, 1, 0, -0.39, -0.39, 0, 1);
  }
  47.35% {
    -webkit-transform: matrix3d(1.0, 0, 0, 0, 0, 1.0, 0, 0, 0, 0, 1, 0, -0.05, -0.05, 0, 1);
    transform: matrix3d(1.0, 0, 0, 0, 0, 1.0, 0, 0, 0, 0, 1, 0, -0.05, -0.05, 0, 1);
  }
  67.37% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  100% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}

@keyframes aboutSceneTitleIn {
  0% {
    -webkit-transform: matrix3d(0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 1, 0, 14, 14, 0, 1);
    transform: matrix3d(0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 1, 0, 14, 14, 0, 1);
  }
  3.5% {
    -webkit-transform: matrix3d(0.81, 0, 0, 0, 0, 0.81, 0, 0, 0, 0, 1, 0, 10.2, 10.2, 0, 1);
    transform: matrix3d(0.81, 0, 0, 0, 0, 0.81, 0, 0, 0, 0, 1, 0, 10.2, 10.2, 0, 1);
  }
  6.91% {
    -webkit-transform: matrix3d(0.89, 0, 0, 0, 0, 0.89, 0, 0, 0, 0, 1, 0, 6.57, 6.57, 0, 1);
    transform: matrix3d(0.89, 0, 0, 0, 0, 0.89, 0, 0, 0, 0, 1, 0, 6.57, 6.57, 0, 1);
  }
  10.31% {
    -webkit-transform: matrix3d(0.94, 0, 0, 0, 0, 0.94, 0, 0, 0, 0, 1, 0, 3.7, 3.7, 0, 1);
    transform: matrix3d(0.94, 0, 0, 0, 0, 0.94, 0, 0, 0, 0, 1, 0, 3.7, 3.7, 0, 1);
  }
  13.71% {
    -webkit-transform: matrix3d(0.97, 0, 0, 0, 0, 0.97, 0, 0, 0, 0, 1, 0, 1.74, 1.74, 0, 1);
    transform: matrix3d(0.97, 0, 0, 0, 0, 0.97, 0, 0, 0, 0, 1, 0, 1.74, 1.74, 0, 1);
  }
  20.52% {
    -webkit-transform: matrix3d(1.0, 0, 0, 0, 0, 1.0, 0, 0, 0, 0, 1, 0, -0.07, -0.07, 0, 1);
    transform: matrix3d(1.0, 0, 0, 0, 0, 1.0, 0, 0, 0, 0, 1, 0, -0.07, -0.07, 0, 1);
  }
  27.33% {
    -webkit-transform: matrix3d(1.01, 0, 0, 0, 0, 1.01, 0, 0, 0, 0, 1, 0, -0.39, -0.39, 0, 1);
    transform: matrix3d(1.01, 0, 0, 0, 0, 1.01, 0, 0, 0, 0, 1, 0, -0.39, -0.39, 0, 1);
  }
  47.35% {
    -webkit-transform: matrix3d(1.0, 0, 0, 0, 0, 1.0, 0, 0, 0, 0, 1, 0, -0.05, -0.05, 0, 1);
    transform: matrix3d(1.0, 0, 0, 0, 0, 1.0, 0, 0, 0, 0, 1, 0, -0.05, -0.05, 0, 1);
  }
  67.37% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  100% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}

/* Point
============================================================================= */
.point1,
.point2 {
  opacity: 0;
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
  -webkit-transition: opacity .6s ease, -webkit-transform .6s ease;
  transition: opacity .6s ease, -webkit-transform .6s ease;
  transition: opacity .6s ease, transform .6s ease;
  transition: opacity .6s ease, transform .6s ease, -webkit-transform .6s ease;
}

@media screen and (max-width: 767.9px) {
  .point1,
  .point2 {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
}

.point1.-inviewed,
.point2.-inviewed {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Q&A
============================================================================= */
.qa-inner {
  opacity: 0;
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
  -webkit-transition: opacity .6s ease, -webkit-transform .6s ease;
  transition: opacity .6s ease, -webkit-transform .6s ease;
  transition: opacity .6s ease, transform .6s ease;
  transition: opacity .6s ease, transform .6s ease, -webkit-transform .6s ease;
}

@media screen and (max-width: 767.9px) {
  .qa-inner {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
}

.qa-inner.-inviewed {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Column
============================================================================= */
#column {
  opacity: 0;
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
  -webkit-transition: opacity .6s ease, -webkit-transform .6s ease;
  transition: opacity .6s ease, -webkit-transform .6s ease;
  transition: opacity .6s ease, transform .6s ease;
  transition: opacity .6s ease, transform .6s ease, -webkit-transform .6s ease;
}

@media screen and (max-width: 767.9px) {
  #column {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
}

#column.-inviewed {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Ingredients
============================================================================= */
.ingredients-inner {
  opacity: 0;
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
  -webkit-transition: opacity .6s ease, -webkit-transform .6s ease;
  transition: opacity .6s ease, -webkit-transform .6s ease;
  transition: opacity .6s ease, transform .6s ease;
  transition: opacity .6s ease, transform .6s ease, -webkit-transform .6s ease;
}

@media screen and (max-width: 767.9px) {
  .ingredients-inner {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
}

.ingredients-inner.-inviewed {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Shop
============================================================================= */
.shop-inner {
  opacity: 0;
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
  -webkit-transition: opacity .6s ease, -webkit-transform .6s ease;
  transition: opacity .6s ease, -webkit-transform .6s ease;
  transition: opacity .6s ease, transform .6s ease;
  transition: opacity .6s ease, transform .6s ease, -webkit-transform .6s ease;
}

@media screen and (max-width: 767.9px) {
  .shop-inner {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
}

.shop-inner.-inviewed {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
