/*---------------------------- Common Setteing ----------------------------*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #fff;
   overflow-x: hidden;
}

p {
  font-size: 16px;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

sup {
  font-size: 1.1rem;
  line-height: 1;
  position: relative;
  bottom: 1ex;
  height: 0;
  vertical-align: baseline;
}

b {
  font-weight: bold;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #969696;
  margin: 0;
  padding: 0;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.br-sp {
  display: none;
}

.br-pc {
  display: block;
}

.sp {
  display: none;
}

/*アンカーボタン*/
.btn {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  margin: 0 auto 1.0rem;
  padding: 2.0rem 0;
  text-align: center;
  color: #fff;
}

.btn:hover {
  zoom: 1;
  transition: all .9s;
  opacity: .7;
  filter: alpha(opacity=70);
  -ms-filter: 'alpha(opacity=70)';
  -moz-opacity: .7;
  -khtml-opacity: .7;
}

.btn a {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
}

a:hover {
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
  zoom: 1;
  transition: all .9s;
}

a:hover {
  zoom: 1;
}

/*Lazyload*/
.fadePoint {
  -webkit-transition: opacity 1s ease-in-out 0s, -webkit-transform 1s cubic-bezier(.07, .91, .14, .84) 0s;
  -moz-transition: opacity 1s ease-in-out 0s, -moz-transform 1s ease-in-out 0s;
  -ms-transition: opacity 1s ease-in-out 0s, -ms-transform 1s cubic-bezier(.07, .91, .14, .84) 0s;
  -o-transition: opacity 1s ease-in-out 0s, -o-transform 1s cubic-bezier(.07, .91, .14, .84) 0s;
  transition: opacity 1s ease-in-out 0s, transform 1s cubic-bezier(.07, .91, .14, .84) 0s;
  -webkit-transform: translateY(200px);
  -moz-transform: translateY(200px);
  -ms-transform: translateY(200px);
  -o-transform: translateY(200px);
  transform: translateY(200px);
  opacity: 0;
}

.fadePoint.fade {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

/*---------------------------- Common Sp Setteing ----------------------------*/
@media screen and (max-width: 780px) {
  body {
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }

  p {
    font-size: 3.3vw;
    line-height: 1.6;
  }

  span {
    font-size: 3.1vw;
    line-height: 1.5;
  }

  .br-sp {
    display: block;
  }

  .br-pc {
    display: none;
  }

  /*画像差し替え*/
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

/*---------------------------- Menu pc  ----------------------------*/
#wrap {
  max-width: 1920px;
  margin: 0 auto;
}

#wrapper {
  width: 1920px;
  margin: 0 auto;
  overflow-x: hidden;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  z-index: 999;
}

.inner_wrapper {
  max-width: 1088px;
  margin: 0 auto;
  /* overflow-x: hidden; */
}

header {
  height: 80px;
  position: relative;
}

.header_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 1920px;
  background-color: rgba(255, 255, 255, .7);
  height: 80px;
  box-shadow: 0px 0px 6px -5px rgba(0, 0, 0, 0.7);
  z-index: -1;
}

#global-navi {
  /* position: fixed; */
  margin: 0 auto;
  text-align: center;
  padding: 23px 0;
  width: 1034px;
  z-index: 1;
  top: 0;
  left: 0;
  /* float: left; */
  /* transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%); */
}

nav ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

nav ul li {
  display: inline-block;
  align-self: center;
}

nav ul li::after {
  content: '';
  display: inline-block;
  width: 15px;
  height: 31px;
  background-image: url(../images/nav_side_kei.png);
  background-size: contain;
  margin-left: 16px;
}

nav ul li:first-child:after {
  content: none;
}

nav ul li:last-child:after {
  content: none;
}

/*---------------------------- Menu sp  ----------------------------*/
@media screen and (max-width: 780px) {
  #wrap {
    max-width: 100%;
    margin: 0 auto;
  }

  #wrapper {
    display: block;
    width: 100%;
    height: 0;
    margin: 0 auto;
    /* z-index: 999; */
    /* overflow-x: scroll; */
    top: 0;
    left: 0;
    transform: unset;
    -webkit-transform: unset;
    -ms-transform: unset;
    position: static;
  }

  #wrapper img {
    max-width: 100%;
  }

  /* .header_wrapper {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    overflow-x: scroll;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    z-index: 299;
  } */

  header {
    width: 100%;
    /* height: 80px; */
    margin: 0 auto;
    background: none;
    /* top: 0;
    position: relative;
    z-index: 9999; */
  }

  .header_bg {
    display: none!important;
  }

  #wrapper nav {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100vw;
    height: 100%;
    padding: 15vw 10vw;
    box-sizing: border-box;
    border-radius: 0;
    z-index: 302;
    margin: 0;
    background-color: rgba(255, 255, 255, .9);
    overflow-y: scroll;
  }

  #global-navi {
    /* position: fixed; */
    top: 0;
    right: 0px;
    /* width: 800px; */
    float: left;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
  }

  #wrapper nav ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }

  #wrapper nav ul li {
    display: inline-block;
    align-self: center;
    margin: 5vw 0;
  }

  #wrapper nav ul li img {
    max-height: 5.0vw;
    min-width: 29vw;
  }

  #wrapper nav ul li::after {
    content: none;
  }

  #wrapper .btn-gnavi {
    position: fixed;
    top: 4vw;
    right: 4vw;
    width: 30px;
    height: 24px;
    z-index: 303;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
  }

  #wrapper .btn-gnavi span {
    position: absolute;
    width: 30px;
    height: 2px;
    background: #080304;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
  }

  #wrapper .btn-gnavi span:nth-child(1) {
    top: 0;
    width: 100%;
  }

  #wrapper .btn-gnavi span:nth-child(2) {
    top: 10px;
    width: 65%;
  }

  #wrapper .btn-gnavi span:nth-child(3) {
    top: 20px;
    width: 30%;
  }

  #wrapper .btn-gnavi.open {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: fixed;
    top: 5vw;
    right: 5vw;
  }

  #wrapper .btn-gnavi.open span {
    background: #080304;
  }

  #wrapper .btn-gnavi.open span:nth-child(2) {
    display: none;
  }

  #wrapper .btn-gnavi.open span:nth-child(3) {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    top: 0px;
  }

  #wrapper .btn-gnavi.open span {
    width: 30px;
  }

  #wrapper .contents section p {
    position: absolute;
    top: 50%;
    width: 30%;
    line-height: 1.4;
    font-size: 20px;
    color: #fff;
    text-shadow: 0 0 6px #666;
  }

  #wrapper .contents section:nth-child(odd) p {
    left: 10%;
  }

  #wrapper .contents section:nth-child(even) p {
    right: 10%;
  }

  .sp_menu {
    width: 80vw;
    height: auto;
    position: relative;
    padding-top: 42%;
    display: block;
    z-index: 303;
  }

  .loveliner {
    position: absolute;
    left: 12.5vw;
    right: 35vw;
    top: 8vw;
  }

  .msh {
    position: absolute;
    left: 50vw;
    right: 13.5vw;
    top: 8vw;
  }

  .is {
    position: absolute;
    left: 21vw;
    right: 51vw;
    top: 22vw;
  }

  .fb {
    position: absolute;
    left: 36vw;
    right: 36vw;
    top: 22vw;
  }

  .tw {
    position: absolute;
    left: 51vw;
    right: 21vw;
    top: 22vw;
  }

}

/*---------------------------- Contents  ----------------------------*/
/* Keyvisual */
#kv {
  background-image: url(../images/kv_bg.jpg);
  background-repeat: no-repeat;
  background-size: auto;
  height: 838px;
}

#kv .inner_wrapper {
  position: relative;
  height: 838px;
}

.chara_base01 {
  position: absolute;
  top: 214px;
  left: 0px;
  width: 203px;
  height: 539px;
}

.chara01 {
	position: absolute;
	top: 214px;
	left: 0px;
	width: 209px;
	height: 539px;
	margin-top: -7px;
	margin-left: -6px;
	animation-duration: 1.2s;
	animation-name: BottomToCenter;
	animation-iteration-count: 1;
	animation-delay: 1.2s;
	animation-fill-mode: both;
}

.chara_base02 {
  position: absolute;
  top: 188px;
  left: 221px;
  width: 203px;
  height: 539px;
}

.chara02 {
  position: absolute;
  top: 188px;
  left: 221px;
  margin-top: -17px;
  margin-left: -9px;
  animation-duration: 1.2s;
  animation-name: BottomToCenter;
  animation-iteration-count: 1;
  animation-delay: 1.2s;
  animation-fill-mode: both;
}

.chara_base03 {
  position: absolute;
  top: 214px;
  left: 442px;
  width: 203px;
  height: 539px;
}

.chara03 {
  position: absolute;
  top: 214px;
  left: 442px;
  margin-top: -11px;
  margin-left: -3px;
  animation-duration: 1.2s;
  animation-name: BottomToCenter;
  animation-iteration-count: 1;
  animation-delay: 1.2s;
  animation-fill-mode: both;
}

.chara_base04 {
  position: absolute;
  top: 188px;
  left: 663px;
  width: 203px;
  height: 539px;
}

.chara04 {
	width: 257px;
	position: absolute;
	top: 188px;
	left: 663px;
	margin-top: -5px;
	margin-left: 0px;
	z-index: 20;
	animation-duration: 1.2s;
	animation-name: BottomToCenter;
	animation-iteration-count: 1;
	animation-delay: 1.2s;
	animation-fill-mode: both;
}

.chara_base05 {
  position: absolute;
  top: 214px;
  left: 884px;
  width: 203px;
  height: 539px;
}

.chara05 {
	width: 220px;
	position: absolute;
	top: 215px;
	left: 884px;
	margin-top: -42px;
	margin-right: -10px;
	z-index: 21;
	animation-duration: 1.2s;
	animation-name: BottomToCenter;
	animation-iteration-count: 1;
	animation-delay: 1.2s;
	animation-fill-mode: both;
}

@keyframes TopToCenter {
  0% {
    opacity: 0;
    /* 透明 */
    transform: translateY(-30px);
    /* Y軸方向に30px */
  }

  100% {
    opacity: 1;
    /* 不透明 */
    transform: translateY(0);
  }
}

@keyframes BottomToCenter {
  0% {
    opacity: 0;
    /* 透明 */
    transform: translateY(30px);
    /* Y軸方向に30px */
  }

  100% {
    opacity: 1;
    /* 不透明 */
    transform: translateY(0);
  }
}

.kv_logo {
  position: absolute;
  top: 100px;
  left: 367px;
  animation-duration: 1.6s;
  animation-name: TopToCenter;
  animation-iteration-count: 1;
  animation-delay: 1.6s;
  animation-fill-mode: both;
}

.kv_tlt01 {
  position: absolute;
  top: 105px;
  right: 25px;
  animation-duration: 1.8s;
  animation-name: TopToCenter;
  animation-iteration-count: 1;
  animation-delay: 1.8s;
  animation-fill-mode: both;
}

.kv_tlt02 {
  position: absolute;
  bottom: 47px;
  left: 117px;
  animation-duration: 2.0s;
  animation-name: BottomToCenter;
  animation-iteration-count: 1;
  animation-delay: 2.0s;
  animation-fill-mode: both;
}

.kv_pdc {
  position: absolute;
  bottom: 76px;
  right: 68px;
  animation-duration: 2.0s;
  animation-name: BottomToCenter;
  animation-iteration-count: 1;
  animation-delay: 2.0s;
  animation-fill-mode: both;
  z-index: 21;
}

/* S1 */
#s1 {
  max-width: 1920px;
  background-image: url(../images/s1_bg.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
}

#s1 .inner_wrapper {
  max-width: 1088px;
  position: relative;
  height: 1030px;
}

#s1 .s1_title {
  position: absolute;
  top: 55px;
  left: 192px;
}

#s1 .s1_product {
  position: absolute;
  top: -52px;
  left: -140px;
  z-index: 23;
}

#s1 .s1_movie_wrap {
  position: absolute;
  top: 213px;
  left: 0;
  background-image: url(../images/s1_movie_frame.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  height: 656px;
  width: 1088px;
  z-index: 24;
}

.movie-wrap {
   position: relative;
   padding-top: 56.25%;
   overflow: hidden;
   margin: 20px;
   box-sizing: border-box;
}

.movie-wrap iframe {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}

/* S2 */
#s2 {
  max-width: 1920px;
  background: rgb(248, 228, 214);
  background: -webkit-linear-gradient(left, rgba(248, 228, 214, 1) 0%, rgba(255, 213, 192, 1) 100%);
  background: -o-linear-gradient(left, rgba(248, 228, 214, 1) 0%, rgba(255, 213, 192, 1) 100%);
  background: linear-gradient(to right, rgba(248, 228, 214, 1) 0%, rgba(255, 213, 192, 1) 100%);
}

#s2 .inner_wrapper {
  max-width: 1088px;
  position: relative;
  height: 1152px;
}

#s2 .s2_title {
  position: absolute;
  top: 61px;
  left: 272px;
}

#s2 .s2_txt {
  padding-top: 226px;
  text-align: center;
}

#s2 .s2_txt p {
  font-size: 20px;
  line-height: 1.8;
  color: #231815;
}

/* slider
---------------------------------------------------*/
#slider {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  width: 100%;
  max-width: 1088px;
  margin: 0 auto;
  position: absolute;
  top: 383px;
  left: 0;
  z-index: 32;
}

#slider .slider {
  width: 1008px;
}

#slider ul.pager {
  width: 40px;
  margin-top: 120px;
}

#slider ul.pager li {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  margin-bottom: 20px;
  text-indent: -999px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

#slider ul.pager li:last-of-type {
  margin-bottom: 0;
}

#slider ul.pager li.black {
  background-color: #000;
}

#slider ul.pager li.darkbrown {
  background-color: #4c2b23;
}

#slider ul.pager li.brown {
  background-color: #78462e;
}

#slider ul.pager li.milkbrown {
  background-color: #b1825b;
}

#slider ul.pager li.grege {
  background-color: #726b63;
}

/* current */
#slider ul.pager li.current {
  border: 1px solid #fff;
  background-color: transparent;
}

#slider ul.pager li.current:after {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}

#slider ul.pager li.current.black {
  border-color: #000;
}

#slider ul.pager li.current.darkbrown {
  border-color: #4c2b23;
}

#slider ul.pager li.current.brown {
  border-color: #78462e;
}

#slider ul.pager li.milkbrown {
  border-color: #b1825b;
}

#slider ul.pager li.current.grege {
  border-color: #726b63;
}

#slider ul.pager li.current.black:after {
  background-color: #000;
}

#slider ul.pager li.current.darkbrown:after {
  background-color: #4c2b23;
}

#slider ul.pager li.current.brown:after {
  background-color: #78462e;
}

#slider ul.pager li.current.milkbrown:after {
  background-color: #b1825b;
}

#slider ul.pager li.current.grege:after {
  background-color: #726b63;
}

/* slick theme
---------------------------------------------------*/
.slick-loading .slick-list {
  background: #fff url('./img/ajax-loader.gif') center center no-repeat;
}

.slick-slide {
  margin-left: 40px;
}

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 23px;
  height: 10px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 100;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}

.slick-prev {
  left: 0px;
  background-image: url('../images/arrow_prev.png');
}

.slick-next {
  right: 0px;
  background-image: url('../images/arrow_next.png');
}

.slick-prev.invew {
  -webkit-animation: move-l 1s 2;
  animation: move-l 1s 2;
}

@-webkit-keyframes move-l {
  0% {
    -webkit-transform: translate(100%, -50%);
    transform: translate(100%, -50%);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    opacity: 1;
  }
}

@keyframes move-l {
  0% {
    -webkit-transform: translate(100%, -50%);
    transform: translate(100%, -50%);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    opacity: 1;
  }
}

.slick-next.invew {
  -webkit-animation: move-r 1s 2;
  animation: move-r 1s 2;
}

@-webkit-keyframes move-r {
  0% {
    -webkit-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    opacity: 1;
  }
}

@keyframes move-r {
  0% {
    -webkit-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    opacity: 1;
  }
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '?';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: .75;
  color: black;
}

/* S3 */
#s3 {
  max-width: 1920px;
  background: rgb(255, 240, 238);
  background: -webkit-linear-gradient(left, rgba(255, 240, 238, 1) 0%, rgba(248, 230, 228, 1) 100%);
  background: -o-linear-gradient(left, rgba(255, 240, 238, 1) 0%, rgba(248, 230, 228, 1) 100%);
  background: linear-gradient(to right, rgba(255, 240, 238, 1) 0%, rgba(248, 230, 228, 1) 100%);
}

#s3 .inner_wrapper {
  max-width: 1088px;
  position: relative;
  height: 1937px;
}

#s3 .s3_title {
  position: absolute;
  top: 61px;
  left: 200px;
}

#s3 .s3_chara {
  position: absolute;
  bottom: 0;
  left: -219px;
  z-index: 39;
}

#s3 .s3_inner {
  position: absolute;
  top: 241px;
  left: 0;
  background-color: rgba(255, 255, 255, 0.35);
  width: 1088px;
  height: 1302px;
}

#s3 .s3_s_title01 {
  position: absolute;
  top: 0;
  left: -13px;
}

#s3 .s3_s_title02 {
  position: absolute;
  top: 149px;
  right: -55px;
}

#s3 .s3_list {
  position: absolute;
  top: 340px;
  left: 112px;
}

#s3 .s3_list dl {
  width: 728px;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
}

#s3 .s3_list dl dt {
  width: 120px;
}

#s3 .s3_list dl dt p {
  background-color: #fff;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  color: #231815;
  padding: 5px 0;
  text-align: center;
}

#s3 .s3_list dl dd {
  width: 608px;
  padding-left: 16px;
  font-size: 16px;
  color: #231815;
  margin-bottom: 20px;
  line-height: 1.7;
}

#s3 .s3_product01 {
  position: absolute;
  top: 521px;
  left: 112px;
}

#s3 .s3_product02 {
  position: absolute;
  top: 521px;
  left: 388px;
}

#s3 .s3_product03 {
  position: absolute;
  top: 521px;
  right: 248px;
}

#s3 .s3_product04 {
  position: absolute;
  bottom: -133px;
  left: 260px;
}

#s3 .s3_product05 {
  position: absolute;
  bottom: -133px;
  left: 540px;
}

#s3 .s3_side_product {
  position: absolute;
  top: 264px;
  right: 90px;
}

#s3 .s3_btn {
  position: absolute;
  bottom: 128px;
  left: 128px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 832px;
}

#s3 .s3_btn_bx {
  flex-basis: 400px;
}

/* S4 */
#s4 {
  max-width: 1920px;
  background: rgb(234, 246, 253);
  background: -webkit-linear-gradient(left, rgba(234, 246, 253, 1) 0%, rgba(216, 228, 237, 1) 100%);
  background: -o-linear-gradient(left, rgba(234, 246, 253, 1) 0%, rgba(216, 228, 237, 1) 100%);
  background: linear-gradient(to right, rgba(234, 246, 253, 1) 0%, rgba(216, 228, 237, 1) 100%);
}

#s4 .inner_wrapper {
  max-width: 1088px;
  position: relative;
  height: 1450px;
}

#s4 .s4_title {
  position: absolute;
  top: 61px;
  left: 200px;
}

#s4 .s4_chara {
  position: absolute;
  bottom: 0;
  left: -267px;
  z-index: 39;
}

#s4 .s4_inner {
  position: absolute;
  top: 135px;
  left: 0;
  background-color: rgba(255, 255, 255, 0.35);
  width: 1088px;
  height: 915px;
}

#s4 .s4_s_title01 {
  position: absolute;
  top: 0;
  left: -13px;
}

#s4 .s4_s_title02 {
  position: absolute;
  top: 177px;
  left: 112px;
}

#s4 .s4_product01 {
  position: absolute;
  top: 335px;
  left: 118px;
}

#s4 .s4_product02 {
  position: absolute;
  top: 368px;
  left: 530px;
}

#s4 .s4_product03 {
  position: absolute;
  top: 759px;
  left: 118px;
}

#s4 .s4_product04 {
  position: absolute;
  top: 780px;
  left: 530px;
}

#s4 .s4_btn {
  position: absolute;
  bottom: 128px;
  left: 345px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 832px;
}

#s4 .s4_btn_bx {
  flex-basis: 400px;
}

/* S5 */
#s5 {
  max-width: 1920px;
  background: rgb(247, 239, 255);
  background: -webkit-linear-gradient(left, rgba(247, 239, 255, 1) 0%, rgba(224, 216, 234, 1) 100%);
  background: -o-linear-gradient(left, rgba(247, 239, 255, 1) 0%, rgba(224, 216, 234, 1) 100%);
  background: linear-gradient(to right, rgba(247, 239, 255, 1) 0%, rgba(224, 216, 234, 1) 100%);
}

#s5 .inner_wrapper {
  max-width: 1088px;
  position: relative;
  height: 1449px;
}

#s5 .s5_title {
  position: absolute;
  top: 61px;
  left: 200px;
}

#s5 .s5_chara {
  position: absolute;
  bottom: 0;
  left: -244px;
  z-index: 39;
}

#s5 .s5_inner {
  position: absolute;
  top: 135px;
  left: 0;
  background-color: rgba(255, 255, 255, 0.35);
  width: 1088px;
  height: 926px;
}

#s5 .s5_s_title01 {
  position: absolute;
  top: 0;
  left: -13px;
}

#s5 .s5_s_title02 {
  position: absolute;
  top: 177px;
  left: 112px;
}

#s5 .s5_product01 {
  position: absolute;
  top: 335px;
  left: 118px;
}

#s5 .s5_product02 {
  position: absolute;
  top: 368px;
  left: 530px;
}

#s5 .s5_product03 {
  position: absolute;
  top: 759px;
  left: 118px;
}

#s5 .s5_product04 {
  position: absolute;
  top: 780px;
  left: 530px;
}

#s5 .s5_btn {
  position: absolute;
  bottom: 128px;
  left: 345px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 832px;
}

#s5 .s5_btn_bx {
  flex-basis: 400px;
}

/* S6 */
#s6 {
  max-width: 1920px;
  background: rgb(255, 240, 238);
  background: -webkit-linear-gradient(left, rgba(255, 240, 238, 1) 0%, rgba(248, 230, 228, 1) 100%);
  background: -o-linear-gradient(left, rgba(255, 240, 238, 1) 0%, rgba(248, 230, 228, 1) 100%);
  background: linear-gradient(to right, rgba(255, 240, 238, 1) 0%, rgba(248, 230, 228, 1) 100%);
}

#s6 .inner_wrapper {
  max-width: 1088px;
  position: relative;
  height: 2155px;
}

#s6 .s6_chara {
  position: absolute;
  bottom: 0;
  right: -232px;
  z-index: 39;
}

#s6 .s6_title01 {
  position: absolute;
  top: 61px;
  left: 168px;
}

#s6 .s6_product {
  position: absolute;
  top: -52px;
  left: -140px;
  z-index: 40;
}

#s6 .s6_inner {
  position: absolute;
  top: 241px;
  left: 0;
  background-color: rgba(255, 255, 255, 0.35);
  width: 1088px;
  height: 629px;
  text-align: center;
  padding: 70px 130px;
}

#s6 .s6_inner p {
  font-size: 20px;
  line-height: 1.6;
  margin: 20px 0;
  color: #231815;
}

#s6 .s6_inner b {
  font-size: 20px;
  line-height: 1.6;
  color: #231815;
}

#s6 .s6_title02 {
  position: absolute;
  top: 942px;
  left: 10px;
}

#s6 .s6_inner02 {
  position: absolute;
  top: 1106px;
  left: 0;
  background-color: rgba(255, 255, 255, 0.35);
  width: 1088px;
  height: 918px;
  text-align: center;
  padding: 50px 85px;
}

.s6_inner02_bx {
  background-color: rgba(209, 183, 122, 0.1);
  width: auto;
  padding: 40px 70px;
  text-align: center;
  margin: 60px auto;
}

.s6_inner02_bx img {
  margin-bottom: 25px;
}

.s6_inner02_bx span {
  color: #d1b77a;
  font-size: 15px;
  line-height: 1.6;
}

.s6_inner02_bx p {
  text-align: left;
  color: #231815;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 2px;
}

/* S7 */
#s7 {
  max-width: 1920px;
  background-image: url(../images/s7_bg.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
}

#s7 .inner_wrapper {
  max-width: 1088px;
  position: relative;
  height: 1098px;
}

#s7 .s7_title {
  position: absolute;
  top: 53px;
  left: 291px;
}

#s7 .s7_product {
  position: absolute;
  top: -54px;
  left: -142px;
  z-index: 70;
}

#s7 .s7_txt {
  text-align: center;
  padding-top: 210px;
}

#s7 .s7_txt p {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.8;
  color: #231815;
}

#s7 .s7_photo {
  position: absolute;
  top: 355px;
  left: 16px;
}

#s7 .s7_chara {
  position: absolute;
  bottom: 0;
  left: -150px;
}

#s7 .s7_logo {
  position: absolute;
  bottom: 49px;
  left: 305px;
}

#s7 .s7_insta {
  position: absolute;
  bottom: 50px;
  left: 542px;
}

#s7 .s7_fb {
  position: absolute;
  bottom: 50px;
  left: 637px;
}

#s7 .s7_tw {
  position: absolute;
  bottom: 50px;
  left: 731px;
}

/*S8*/
#s8 {
  max-width: 1920px;
  background: rgb(248, 228, 214);
  background: -webkit-linear-gradient(left, rgba(248, 228, 214, 1) 0%, rgba(255, 213, 192, 1) 100%);
  background: -o-linear-gradient(left, rgba(248, 228, 214, 1) 0%, rgba(255, 213, 192, 1) 100%);
  background: linear-gradient(to right, rgba(248, 228, 214, 1) 0%, rgba(255, 213, 192, 1) 100%);
}

#s8 .inner_wrapper {
  max-width: 1088px;
  padding: 60px 0 50px;
  text-align: center;
}

#s8 h4 {
  font-size: 20px;
  font-weight: bold;
  margin: 45px auto 6px;
  color: #231815;
}

#s8 h3 {
  font-size: 50px;
  font-weight: bold;
  margin: 6px auto 20px;
  color: #231815;
}

#s8 h5 {
  font-size: 16px;
  font-weight: bold;
  margin: 0 auto 50px;
  color: #231815;
}

#s8 p {
  font-size: 16px;
  line-height: 1.8;
  margin: 45px auto 0;
}

/*------------------------- Contents SP Layout -------------------------*/
@media screen and (max-width: 780px) {
  #wrap img {
    max-width: 100%;
  }

  /* Keyvisual */
  #kv {
    background-image: url(../spimages/kv_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: auto;
  }

  #kv .inner_wrapper {
    position: relative;
    height: auto;
    padding-top: 125.6%;
  }

  .chara_base01 {
    position: absolute;
    top: 42vw;
    left: 3vw;
    right: 81vw;
    width: auto;
    height: auto;
  }

  .chara_base02 {
    position: absolute;
    top: 32vw;
    left: 22.5vw;
    right: 61.5vw;
    width: auto;
    height: auto;
  }

  .chara_base03 {
    position: absolute;
    top: 42vw;
    left: 42vw;
    right: 42vw;
    width: auto;
    height: auto;
  }

  .chara_base04 {
    position: absolute;
    top: 32vw;
    left: 61.5vw;
    right: 22.5vw;
    width: auto;
    height: auto;
  }

  .chara_base05 {
    position: absolute;
    top: 42vw;
    left: 81vw;
    right: 3vw;
    width: auto;
    height: auto;
  }

  .chara01 {
    position: absolute;
    top: 41.5vw;
    left: 0.5vw;
    right: 81vw;
    width: auto;
    height: auto;
    animation-duration: 1.2s;
    animation-name: BottomToCenter;
    animation-iteration-count: 1;
    animation-delay: 1.2s;
    animation-fill-mode: both;
    margin: 0;
  }

  .chara02 {
    position: absolute;
    top: 27.8vw;
    left: 20.2vw;
    right: 59.6vw;
    width: auto;
    height: auto;
    animation-duration: 1.2s;
    animation-name: BottomToCenter;
    animation-iteration-count: 1;
    animation-delay: 1.2s;
    animation-fill-mode: both;
    margin: 0;
  }



  .chara03 {
    position: absolute;
    top: 41vw;
    left: 42vw;
    right: 39vw;
    animation-duration: 1.2s;
    animation-name: BottomToCenter;
    animation-iteration-count: 1;
    animation-delay: 1.2s;
    animation-fill-mode: both;
    margin: 0;
  }



  .chara04 {
	  width: auto;
    position: absolute;
    top: 30.6vw;
    left: 61.5vw;
    right: 14.1vw;
    z-index: 20;
    animation-duration: 1.2s;
    animation-name: BottomToCenter;
    animation-iteration-count: 1;
    animation-delay: 1.2s;
    animation-fill-mode: both;
    margin: 0;
  }



  .chara05 {
	  width: auto;
    position: absolute;
    top: 39.5vw;
    left: 81vw;
    right: 0.5vw;
    z-index: 21;
    animation-duration: 1.2s;
    animation-name: BottomToCenter;
    animation-iteration-count: 1;
    animation-delay: 1.2s;
    animation-fill-mode: both;
    margin: 0;
  }


  .kv_logo {
    position: absolute;
    top: 8vw;
    left: 30vw;
    right: 34.5vw;
    animation-duration: 1.6s;
    animation-name: TopToCenter;
    animation-iteration-count: 1;
    animation-delay: 1.6s;
    animation-fill-mode: both;
  }

  .kv_tlt01 {
    position: absolute;
    top: 20vw;
    left: 16vw;
    right: 16vw;
    animation-duration: 1.8s;
    animation-name: TopToCenter;
    animation-iteration-count: 1;
    animation-delay: 1.8s;
    animation-fill-mode: both;
  }

  .kv_tlt02 {
    position: absolute;
    bottom: 3vw;
    left: 3vw;
    right: 54vw;
    animation-duration: 2.0s;
    animation-name: BottomToCenter;
    animation-iteration-count: 1;
    animation-delay: 2.0s;
    animation-fill-mode: both;
  }

  .kv_pdc {
    position: absolute;
    bottom: 5.9vw;
    left: 47.5vw;
    right: 3.5vw;
    animation-duration: 2.0s;
    animation-name: BottomToCenter;
    animation-iteration-count: 1;
    animation-delay: 2.0s;
    animation-fill-mode: both;
    z-index: 21;
  }

  /* S1 */
  #s1 {
    max-width: 1920px;
    background-image: url(../spimages/s1_bg.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
  }

  #s1 .inner_wrapper {
    max-width: 100%;
    position: relative;
    height: auto;
    padding-top: 100.38%;
  }

  #s1 .s1_title {
    position: absolute;
    top: 8vw;
    left: 0;
    right: 3.5vw;
  }

  #s1 .s1_product {
    display: none;
  }

  #s1 .s1_movie_wrap {
    position: absolute;
    top: 27vw;
    left: 3.6vw;
    background-image: url(../spimages/s1_movie_frame.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 92.8vw;
    height: auto;
    padding-top: 62.845%;
    z-index: 24;
  }

  .movie-wrap {
    position: absolute;
    top: 2vw;
    left: 0vw;
    right: 0vw;
    padding-top: 56.25%;
    overflow: hidden;
    width: auto;
    height: auto;
    /* top: -27vw; */
    /* left: 0vw; */
    margin: 3vw;
    box-sizing: border-box;
    z-index: 25;
  }

  .movie-wrap iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
  }

  /* S2 */
  #s2 {
    max-width: 100%;
    background: rgb(248, 228, 214);
    background: -webkit-linear-gradient(left, rgba(248, 228, 214, 1) 0%, rgba(255, 213, 192, 1) 100%);
    background: -o-linear-gradient(left, rgba(248, 228, 214, 1) 0%, rgba(255, 213, 192, 1) 100%);
    background: linear-gradient(to right, rgba(248, 228, 214, 1) 0%, rgba(255, 213, 192, 1) 100%);
  }

  #s2 .inner_wrapper {
    max-width: 100%;
    position: relative;
    height: auto;
    padding-top: 252.56%;
  }

  #s2 .s2_title {
    position: absolute;
    top: 10vw;
    left: 12vw;
    right: 3vw;
  }

  #s2 .s2_txt {
    position: absolute;
    top: 38vw;
    left: 5vw;
    right: 5vw;
    padding: 0;
    text-align: left;
  }

  #s2 .s2_txt p {
    font-size: 3.5vw;
    line-height: 1.8;
    color: #231815;
  }

  /* Slider */
  #slider {
    display: block;
    margin: 0 auto 21vw;
    position: absolute;
    top: 70vw;
    left: 0;
  }

  #slider .slider {
    width: 100%;
  }

  #slider .slider .slick-slide {
    width: 100vw;
    height: 157.8125vw;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0;
  }

  #slider .slider .slick-slide.black {
    background-image: url('../spimages/s2_slide01_1030.png');
  }

  #slider .slider .slick-slide.darkbrown {
    background-image: url('../spimages/s2_slide02_1030.png');
  }

  #slider .slider .slick-slide.brown {
    background-image: url('../spimages/s2_slide03_1030.png');
  }

  #slider .slider .slick-slide.milkbrown {
    background-image: url('../spimages/s2_slide04_1030.png');
  }

  #slider .slider .slick-slide.grege {
    background-image: url('../spimages/s2_slide05_1030.png');
  }

  #slider .slider .slick-slide img {
    display: none;
  }

  .slick-prev, .slick-next {
    top: auto;
    bottom: -11.71875vw;
    width: 4.375vw;
    height: 1.875vw;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  .slick-prev {
    left: 4.6875vw;
  }

  .slick-next {
    right: 4.6875vw;
  }

  @-webkit-keyframes move-l {
    0% {
      -webkit-transform: translate(100%, 0);
      transform: translate(100%, 0);
      opacity: 0;
    }

    100% {
      -webkit-transform: translate(0, 0);
      transform: translate(0, 0);
      opacity: 1;
    }
  }

  @keyframes move-l {
    0% {
      -webkit-transform: translate(100%, 0);
      transform: translate(100%, 0);
      opacity: 0;
    }

    100% {
      -webkit-transform: translate(0, 0);
      transform: translate(0, 0);
      opacity: 1;
    }
  }

  @-webkit-keyframes move-r {
    0% {
      -webkit-transform: translate(-100%, 0);
      transform: translate(-100%, 0);
      opacity: 0;
    }

    100% {
      -webkit-transform: translate(0, 0);
      transform: translate(0, 0);
      opacity: 1;
    }
  }

  @keyframes move-r {
    0% {
      -webkit-transform: translate(-100%, 0);
      transform: translate(-100%, 0);
      opacity: 0;
    }

    100% {
      -webkit-transform: translate(0, 0);
      transform: translate(0, 0);
      opacity: 1;
    }
  }

  #slider ul.pager {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    justify-content: center;
    -webkit-justify-content: center;
    width: auto;
    margin-top: 7.8125vw;
  }

  #slider ul.pager li {
    width: 7.8125vw;
    height: 7.8125vw;
    margin-bottom: 0;
    margin-right: 3.125vw;
  }

  #slider ul.pager li:last-of-type {
    margin-right: 0;
  }

  /* current */
  #slider ul.pager li.current:after {
    width: 5.3125vw;
    height: 5.3125vw;
  }

  /* S3 */
  #s3 {
    max-width: 100%;
    background: rgb(255, 240, 238);
    background: -webkit-linear-gradient(left, rgba(255, 240, 238, 1) 0%, rgba(248, 230, 228, 1) 100%);
    background: -o-linear-gradient(left, rgba(255, 240, 238, 1) 0%, rgba(248, 230, 228, 1) 100%);
    background: linear-gradient(to right, rgba(255, 240, 238, 1) 0%, rgba(248, 230, 228, 1) 100%);
  }

  #s3 .inner_wrapper {
    max-width: 100%;
    position: relative;
    height: auto;
    padding-top: 395.05%;
  }

  #s3 .s3_title {
    position: absolute;
    top: 7vw;
    left: 0;
    right: 8vw;
  }

  #s3 .s3_chara {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 76vw;
    z-index: 39;
  }

  #s3 .s3_inner {
    position: absolute;
    top: 30vw;
    left: 5vw;
    background-color: rgba(255, 255, 255, 0.35);
    width: 90vw;
    height: auto;
    padding-top: 295.52%;
  }

  #s3 .s3_s_title01 {
    position: absolute;
    top: 0;
    left: -1vw;
  }

  #s3 .s3_s_title02 {
    position: absolute;
    top: 26vw;
    right: 10vw;
  }

  #s3 .s3_list {
    position: absolute;
    top: 75vw;
    left: 5vw;
  }

  #s3 .s3_list dl {
    width: 70vw;
    margin-bottom: 2vw;
    display: flex;
    flex-wrap: wrap;
  }

  #s3 .s3_list dl dt {
    width: 25vw;
    margin-bottom: 2vw;
  }

  #s3 .s3_list dl dt p {
    background-color: #fff;
    border-radius: 50px;
    font-size: 3.3vw;
    font-weight: bold;
    color: #231815;
    padding: 1vw 0;
    text-align: center;
  }

  #s3 .s3_list dl dd {
    width: 70vw;
    padding-left: 0;
    font-size: 3.3vw;
    color: #231815;
    margin-bottom: 4vw;
    line-height: 1.9;
  }

  #s3 .s3_product01 {
    position: absolute;
    top: 190vw;
    left: 4vw;
    right: 61.6vw
  }

  #s3 .s3_product02 {
    position: absolute;
    top: 190vw;
    left: 33vw;
    right: 32.6vw
  }

  #s3 .s3_product03 {
    position: absolute;
    top: 190vw;
    right: 4vw;
    left: 61.6vw
  }

  #s3 .s3_product04 {
    position: absolute;
    bottom: -25vw;
    left: 18vw;
    right: 47.6vw;
  }

  #s3 .s3_product05 {
    bottom: -25vw;
    left: 47.6vw;
    right: 18vw;
  }

  #s3 .s3_side_product {
    position: absolute;
    top: 51vw;
    right: -1vw;
    left: 82vw;
  }

  #s3 .s3_btn {
    position: absolute;
    bottom: 8vw;
    left: 25vw;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: 50vw;
  }

  #s3 .s3_btn_bx {
    flex-basis: auto;
    margin-bottom: 2vw;
  }

  /* S4 */
  #s4 {
    max-width: 100%;
    background: rgb(234, 246, 253);
    background: -webkit-linear-gradient(left, rgba(234, 246, 253, 1) 0%, rgba(216, 228, 237, 1) 100%);
    background: -o-linear-gradient(left, rgba(234, 246, 253, 1) 0%, rgba(216, 228, 237, 1) 100%);
    background: linear-gradient(to right, rgba(234, 246, 253, 1) 0%, rgba(216, 228, 237, 1) 100%);
  }

  #s4 .inner_wrapper {
    max-width: 100%;
    position: relative;
    height: auto;
    padding-top: 391.05%;
  }

  #s4 .s4_chara {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 77.5vw;
    z-index: 39;
  }

  #s4 .s4_inner {
    position: absolute;
    top: 10vw;
    left: 5vw;
    background-color: rgba(255, 255, 255, 0.35);
    width: 90vw;
    height: auto;
    padding-top: 326.52%;
  }

  #s4 .s4_s_title01 {
    position: absolute;
    top: 0;
    left: -1vw;
  }

  #s4 .s4_s_title02 {
    position: absolute;
    top: 26vw;
    left: 5vw;
    right: 5vw;
  }

  #s4 .s4_product01 {
    position: absolute;
    top: 72vw;
    left: -1vw;
    right: 5vw;
  }

  #s4 .s4_product02 {
    position: absolute;
    top: 208vw;
    left: 0;
    right: 5vw;
  }

  #s4 .s4_product03 {
    position: absolute;
    top: 139vw;
    left: 5vw;
    right: 5vw;
  }

  #s4 .s4_product04 {
    position: absolute;
    top: 257vw;
    left: 5vw;
    right: 15vw;
  }

  #s4 .s4_btn {
    position: absolute;
    bottom: 10vw;
    left: 25vw;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 50vw;
  }

  #s4 .s4_btn_bx {
    flex-basis: 50vw;
  }

  /* S5 */
  #s5 {
    max-width: 100%;
    background: rgb(247, 239, 255);
    background: -webkit-linear-gradient(left, rgba(247, 239, 255, 1) 0%, rgba(224, 216, 234, 1) 100%);
    background: -o-linear-gradient(left, rgba(247, 239, 255, 1) 0%, rgba(224, 216, 234, 1) 100%);
    background: linear-gradient(to right, rgba(247, 239, 255, 1) 0%, rgba(224, 216, 234, 1) 100%);
  }

  #s5 .inner_wrapper {
    max-width: 100%;
    position: relative;
    height: auto;
    padding-top: 399.05%;
  }

  #s5 .s5_title {
    position: absolute;
    top: 61px;
    left: 200px;
  }

  #s5 .s5_chara {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 77.5vw;
    z-index: 39;
  }

  #s5 .s5_inner {
    position: absolute;
    top: 10vw;
    left: 5vw;
    background-color: rgba(255, 255, 255, 0.35);
    width: 90vw;
    height: auto;
    padding-top: 326.52%;
  }

  #s5 .s5_s_title01 {
    position: absolute;
    top: 0;
    left: -1vw;
  }

  #s5 .s5_s_title02 {
    position: absolute;
    top: 26vw;
    left: 5vw;
    right: 5vw;
  }

  #s5 .s5_product01 {
    position: absolute;
    top: 72vw;
    left: -1vw;
    right: 5vw;
  }

  #s5 .s5_product02 {
    position: absolute;
    top: 208vw;
    left: 0;
    right: 5vw;
  }

  #s5 .s5_product03 {
    position: absolute;
    top: 139vw;
    left: 5vw;
    right: 5vw;
  }

  #s5 .s5_product04 {
    position: absolute;
    top: 257vw;
    left: 5vw;
    right: 15vw;
  }

  #s5 .s5_btn {
    position: absolute;
    bottom: 10vw;
    left: 25vw;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 50vw;
  }

  #s5 .s5_btn_bx {
    flex-basis: 50vw;
  }

  /* S6 */
  #s6 {
    max-width: 100%;
    background: rgb(255, 240, 238);
    background: -webkit-linear-gradient(left, rgba(255, 240, 238, 1) 0%, rgba(248, 230, 228, 1) 100%);
    background: -o-linear-gradient(left, rgba(255, 240, 238, 1) 0%, rgba(248, 230, 228, 1) 100%);
    background: linear-gradient(to right, rgba(255, 240, 238, 1) 0%, rgba(248, 230, 228, 1) 100%);
  }

  #s6 .inner_wrapper {
    max-width: 100%;
    position: relative;
    height: auto;
    padding-top: 561.53%;
  }

  #s6 .s6_chara {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 68vw;
    z-index: 39;
  }

  #s6 .s6_title01 {
    position: absolute;
    top: 11vw;
    left: 1vw;
    right: 10vw;
  }

  #s6 .s6_product {
    display: none;
  }

  #s6 .s6_inner {
    position: absolute;
    top: 48vw;
    left: 5vw;
    background-color: rgba(255, 255, 255, 0.35);
    width: 90vw;
    height: auto;
    padding-top: 190.8%;
    text-align: center;
    padding: 7vw 5vw;
  }

  #s6 .s6_inner p {
    font-size: 3.3vw;
    line-height: 1.6;
    margin: 20px 0;
    color: #231815;
  }

  #s6 .s6_inner b {
    font-size: 3.5vw;
    line-height: 1.6;
    color: #231815;
  }

  #s6 .s6_title02 {
    position: absolute;
    top: 227vw;
    left: 0;
    right: 5vw;
  }

  #s6 .s6_inner02 {
    position: absolute;
    top: 257vw;
    left: 5vw;
    background-color: rgba(255, 255, 255, 0.35);
    width: 90vw;
    height: auto;
    padding-top: 329.4%;
    text-align: center;
    padding: 7vw 5vw 0;
  }

  .s6_inner02_bx {
    background-color: rgba(209, 183, 122, 0.1);
    width: auto;
    padding: 5vw;
    text-align: center;
    margin: 10vw auto 6vw;
  }

  .s6_inner02_bx img {
    margin-bottom: 4vw;
  }

  .s6_inner02_bx span {
    color: #d1b77a;
    font-size: 3.2vw;
    line-height: 1.6;

  }

  .s6_inner02_bx p {
    text-align: left;
    color: #231815;
    font-size: 3.2vw;
    line-height: 1.6;
    margin-bottom: 1vw;
  }

  /* S7 */
  #s7 {
    max-width: 100%;
    background-image: url(../spimages/s7_bg.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
  }

  #s7 .inner_wrapper {
    max-width: 100%;
    position: relative;
    height: auto;
    padding-top: 167.94%;
  }

  #s7 .s7_title {
    position: absolute;
    top: 7vw;
    left: 11vw;
    right: 6vw;
  }

  #s7 .s7_product {
    display: none;
  }

  #s7 .s7_txt {
    text-align: left;
    padding-top: 0;
    position: absolute;
    top: 34vw;
    left: 10vw;
    right: 10vw;
    z-index: 70;
  }

  #s7 .s7_txt p {
    font-size: 3.3vw;
    font-weight: bold;
    line-height: 1.8;
    color: #231815;
  }

  #s7 .s7_photo {
    position: absolute;
    top: 77vw;
    left: 4vw;
    right: 4vw;
  }

  #s7 .s7_chara {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 74.5vw;
  }

  #s7 .s7_logo {
    position: absolute;
    top: 140vw;
    left: 34vw;
    right: 34vw;
  }

  #s7 .s7_insta {
    position: absolute;
    top: 154vw;
    left: 32vw;
    right: 60vw;
  }

  #s7 .s7_fb {
    position: absolute;
    top: 154vw;
    left: 46vw;
    right: 46vw;
  }

  #s7 .s7_tw {
    position: absolute;
    top: 154vw;
    left: 60vw;
    right: 32vw;
  }

  /*S8*/
  #s8 {
    max-width: 100%;
    background: rgb(248, 228, 214);
    background: -webkit-linear-gradient(left, rgba(248, 228, 214, 1) 0%, rgba(255, 213, 192, 1) 100%);
    background: -o-linear-gradient(left, rgba(248, 228, 214, 1) 0%, rgba(255, 213, 192, 1) 100%);
    background: linear-gradient(to right, rgba(248, 228, 214, 1) 0%, rgba(255, 213, 192, 1) 100%);
  }

  #s8 .inner_wrapper {
    max-width: 100%;
    text-align: center;
    padding: 10vw 0;
    /* height: auto;
    padding-top: 104.10%; */
  }

  #s8 .s8_inner {
    margin: 0 10vw;
  }

  #s8 .s8_title {
    margin: 0 10vw 0 -1vw;
  }

  #s8 h4 {
    font-size: 3.9vw;
    font-weight: bold;
    line-height: 1.6;
    margin: 5vw auto 1vw;
    color: #231815;
  }

  #s8 h3 {
    font-size: 5.0vw;
    font-weight: bold;
    margin: 2vw auto 4vw;
    color: #231815;
  }

  #s8 h3 a {
    color: #231815;
  }

  #s8 h5 {
    font-size: 3.3vw;
    font-weight: bold;
    margin: 0 auto 10vw;
    color: #231815;
  }

  #s8 p {
    font-size: 3.1vw;
    line-height: 1.8;
    margin: 5vw auto 0;
  }

  #s8 .s8_logo {
    margin: 0 30vw;
  }






}
