@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Libre+Bodoni:ital,wght@0,400..700;1,400..700&family=Zen+Kaku+Gothic+New&display=swap');

/* Micro clearfix */
.vis-lp .cf { zoom: 1; }
.vis-lp .cf:before, .vis-lp .cf:after { content: ""; display: table; }
.vis-lp .cf:after { clear: both; }

/* 必要要素の初期設定 */
.vis-lp body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  margin: 0;
  padding: 0;
  color:#000000;
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  background-color:#fafafa;
  /*
  min-width:1000px;
  */
}

.vis-lp *:focus {
  outline: none;
}

.vis-lp a {
  text-decoration:none;
  outline:none;
}

.vis-lp a:focus{
  outline: none;
}

.vis-lp a:hover{
  opacity:0.7; 
}

.vis-lp a{
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  cursor:pointer;
}

.vis-lp ul {
  margin: 0;
  padding: 0;
}

.vis-lp li{
  list-style:none; 
}

/* ベースレイアウト */
/*画面遷移アニメーション*/
.vis-lp .splashbg{
  display: none;
}

/*bodyにappearクラスがついたら出現*/
.vis-lp body.appear .splashbg{
  display: block;
  content: "";
  position:fixed;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleX(0);
  background-color: #D6D6C0;/*伸びる背景色の設定*/
  animation-name:PageAnime;
  animation-duration:1.4s;
  animation-timing-function:ease-in-out;
  animation-fill-mode:forwards;
}

@keyframes PageAnime{
  0% {
    transform-origin:left;
    transform:scaleX(0);
  }
  50% {
    transform-origin:left;
    transform:scaleX(1);
  }
  50.001% {
    transform-origin:right;
  }
  100% {
    transform-origin:right;
    transform:scaleX(0);
  }
}

#wrapper {
  width: 100%;
  margin: -100px 0 0 0;
  padding:0;
  opacity: .0; 
  filter: alpha(opacity=0); 
  -ms-filter: "alpha(opacity=0)"; 
  -khtml-opacity: .0; 
  -moz-opacity: .0; 
  overflow-x: hidden;
	
}

.vis-lp .contents{
  width:100%;
  position:relative;
	margin: 0;
	padding: 0;
	display: block;
	top:0;
	
}

.vis-lp .img-blur {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1;
  transition: 0.2s;
}

@-webkit-keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(8px);
    -moz-filter: blur(8px);
    -ms-filter: blur(8px);
    -o-filter: blur(8px);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}

@keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(8px);
    -moz-filter: blur(8px);
    -ms-filter: blur(8px);
    -o-filter: blur(8px);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}

.vis-lp .isPlay {
  animation-name: play;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  position: relative;
  opacity: 1 !important;
}
  
.vis-lp .isPlay:before {
  animation-name: maskOut;
  animation-duration: 0.8s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient( 109.6deg,  rgba(174,174,170,1) 11.2%, rgba(126,115,111,1) 91.1% );
}

@keyframes play {
  from {
    transform: translateX(-100%);
  }
  
  to {
    transform: translateX(0);
  }
}

@keyframes maskOut {
  from {
    transform: translateX(0);
  }
  
  to {
    transform: translateX(100%);
  }
}

.vis-lp .isPlay2 {
  animation-name: play2;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  position: relative;
  opacity: 1 !important;
}
  
.vis-lp .isPlay2:before {
  animation-name: maskOut2;
  animation-duration: 0.8s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient( 109.6deg,  rgba(174,174,170,1) 11.2%, rgba(126,115,111,1) 91.1% );
}

@keyframes play2 {
  from {
    transform: translateX(100%);
  }
  
  to {
    transform: translateX(0);
  }
}

@keyframes maskOut2 {
  from {
    transform: translateX(0);
  }
  
  to {
    transform: translateX(-100%);
  }
}

.vis-lp .online{
  display: block;
  position: fixed;
  z-index: 9999;
  right: 20px;
  bottom: 240px;
}

.vis-lp .kv{
  position: relative;
  background: #FFF8FB;
  padding: 20px 0 40px 0;
  display: block;
	margin: 0;
	top:0;
}

.vis-lp .kv img{
  display: block;
  margin: 0 10%;
  width:80%;
	height: auto;
}

.vis-lp .delay-time02{
  animation-delay: 0.4s;
}

.vis-lp .delay-time04{
  animation-delay: 0.6s;
}

.vis-lp .delay-time06{
  animation-delay: 0.8s;
}

.vis-lp .delay-time08{
  animation-delay: 1.2s;
}

.vis-lp .info_txt{
  display: block;
  margin: 80px 0 80px 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 15px;
  color: #000000;
  line-height: 2.1em;
  text-align: center;
}

.vis-lp .teaser_mv{
  display: block;
  margin: 0 auto;
  width: 640px;
}

.vis-lp .teaser_mv .mvtitle{
    width: 504px;
	margin: 0 auto;
  }
  
  .vis-lp .teaser_mv .mvtitle img{
    width: 100%;
    height: auto;
  }
	

.vis-lp .teaser_mv .inner{
	width: 100%;
	padding: 20px 0;
	margin: 40px 0 0 0;
	background-color: #FCEAF2;
	text-align: center;
	
}

.vis-lp .teaser_mv .inner p{
	font-size: 20px;
	font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
	color: #000000;
}


.vis-lp .teaser_mv .inner p .pinkR{
	font-size: 24px;
	color: #D86583;
}

.vis-lp .teaser_mv .samplemv{
  width: 560px;
  margin: 40px auto;
  display: block;
}

.vis-lp .teaser_mv .samplemv iframe{
  width: 560px;
	height: 315px;
  
}


.vis-lp #chart{
  position: relative;
  display: block;
  margin: 60px auto;
  width: 100%;
}

.vis-lp #chart .ctitle{
  display: block;
  margin: 0 auto;
  width: 138px;
}

.vis-lp #chart .chartimg{
  display: block;
  margin: 40px auto 60px auto;
  width: 1167px;
}

.vis-lp #chart .charabtn{
  width: 360px;
  height: 60px;
  background: #D86583;
  display: block;
  margin: 0 auto 20px auto;
  text-align: center;
}

.vis-lp #chart .charabtn a{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  color: #ffffff;
  line-height: 60px;
  text-align: center;
  display: block;
}

.vis-lp #chart .shindan{
  width: 360px;
  height: 60px;
  background: #ffffff;
  display: block;
  margin: 0 auto 20px auto;
  text-align: center;
  border: 1px solid #666666;
}

.vis-lp #chart .shindan a{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  color: #666666;
  line-height: 60px;
  text-align: center;
  display: block;
}

.vis-lp #chart .shindantxt{
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
}

.vis-lp #story{
  width: 100%;
  position: relative;
  display: block;
  margin: 80px auto;
}

.vis-lp #story .stitle{
  display: block;
  width: 129px;
  margin: 0 auto;
}

.vis-lp #story .inner{
  width: 100%;
  margin: 0;
  padding: 150px 0;
  position: relative;
  top: 40px;
}

.vis-lp #story .inner::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FCEAF2;
  transform: skewY(-4deg);
  z-index: -1;
}

.vis-lp #story .charabox{
  width: 788px;
  margin: 0 auto 40px auto;
  background: #FDF6F9;
  border-radius: 8px;
  padding: 0 0 40px 0;
  overflow: auto;
}

.vis-lp #story .charabox .lcbox{
  display: block;
  float: left;
  margin: 40px 0 0 40px;
  width: 370px;
}

.vis-lp #story .charabox .lcbox .charainfo{
  position: relative;
  display: block;
  margin: 0 0 0 0;
  text-align: center;
}

.vis-lp #story .charabox .lcbox .charainfo img{
	width: 160px;
	height: auto;
	display: block;
	margin: 0 auto;
}

.vis-lp #story .charabox .lcbox .charainfo .cname{
  font-size: 18px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #D86583;
  padding: 0;
  margin: 4px 0 0 0;
}
.vis-lp #story .charabox .lcbox .charainfo .cnameR{
  font-size: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #333333;
  padding: 0;
  margin: 4px 0 0 0;
}

.vis-lp #story .charabox .lcbox .charainfo .cnameR2{
  font-size: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #D86583;
  padding: 0;
  margin: 4px 0 0 0;
}

.vis-lp #story .charabox .lcbox .charainfo .cname2{
  font-size: 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #000000;
}

.vis-lp #story .charabox .lcbox .storytxt{
  position: relative;
  display: block;
  margin: 40px 0 0 0;
}
.vis-lp #story .charabox .lcbox .stxt{
  font-size: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 2.2em;
  color: #333333;
  padding: 0 0 30px 0;
}

.vis-lp #story .charabox .lcbox .fk01{
	display: block;
	margin: 0 0 10px 0;
}

.vis-lp #story .charabox .lcbox .fk02{
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
}
.vis-lp #story .charabox .rcbox{
  display: block;
  float: left;
  margin: 40px 0 0 50px;
  width: 270px;
}

.vis-lp #story .charabox .rcbox .pvbox{
	display: block;
	margin:  0 0 20px 0;
}

.vis-lp #story .charabox .rcbox .pvtitle{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  padding: 4px 0;
  border-radius: 4px;
  width: 100%;
  background: #D86583;
  text-align: center;
  color: #ffffff;
	display: block;
	margin:  0 0 20px 0;
}

.vis-lp #story .charabox .rcbox .coming{
		display: block;
		width: 220px;
		margin: 40px auto;
	}
	
	
	.vis-lp #story .charabox .rcbox .coming img{
		display: block;
		width: 100%;
		height: auto;
	}


.vis-lp #story .charabox .rcbox .samplemv2{
  width: 50%;
  margin: 0 auto;
}

.vis-lp #story .charabox .rcbox .pvbox iframe{
    width: 240px;
    margin: 0 auto;
	display: block;
	  
  }
	


.vis-lp #story .samplemv{
  width: 408px;
  margin: 40px auto 0 auto;
  display: block;
}

.vis-lp #story .samplemv iframe{
  width: 408px;
	height: 726px;
  
}






.vis-lp #bagintro{
  clear: both;
  display: block;
  position: relative;
  width: 600px;
  margin:  160px auto;
}

.vis-lp #bagintro .bagtitle{
  text-align: center;
  font-family: "Libre Bodoni", serif;
  font-size: 36px;
  font-weight: 700;
  padding: 0;
  margin: 40px 0 20px 0;
	color: #000000;
}

.vis-lp #bagintro .bagtxt{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 15px;
  color: #333333;
  line-height: 2.1em;
  text-align: center;
}

.vis-lp #akari{
  position: relative;
  display: block;
  width: 100%;
}

.vis-lp #akari .inner{
  width: 100%;
  margin: 0;
  padding: 10px 0 0 0;
  position: relative;
  top: 0px;
}

.vis-lp #akari .inner::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FCEAF2;
  transform: skewY(5deg);
  z-index: -1;
}

.vis-lp #akari .inner .bagslide01{
  width: 400px;
  margin: 0 auto;
  display: block;
  position: relative;
}

.vis-lp #akari .inner .bagslide01 .bagname{
  font-family: "Libre Bodoni", serif;
  font-size: 44px;
  font-weight: 700;
  padding: 0;
  position: absolute;
  z-index: 9;
  left: -150px;
  top: -60px;
	color: #000000;
	line-height: 1.2em;
}

.vis-lp #akari .inner .bagslide01 .bagname .pink{
  color: #D86583;
}

.vis-lp .slick{
  display: block;
  margin: -40px 0 0 0;
  width: 400px;
}

.vis-lp .slick-dots li button:before{
  font-size:20px;
}

.slick-dots li.slick-active button:before
{
    opacity: 1;
    color: #F16E86;
}

.vis-lp .bagtxt{
  font-size: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #333333;
	display: block;
	margin: 6px 0 4px 0;
	padding: 6px 0 4px 0;
}

.vis-lp .bagbuy01{
  display: block;
  position: absolute;
  right: -250px;
  top:240px;
}

.vis-lp .bagbuy02{
  display: block;
  margin: 0 0 20px 0;
}

.vis-lp .bagitem{
  font-size: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #000000;
  padding: 0;
  margin: 0 0 4px 0;
}

.vis-lp .price{
  font-size: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #333333;
  padding: 0;
  margin: 0 0 14px 0;
}

.vis-lp .small{
  font-size: 12px;
}

.vis-lp .look01{
  position: relative;
  display: block;
  width: 1060px;
  margin: 100px auto 0 auto;;
  overflow: auto;
}

.vis-lp .look01 .look01L{
  display: block;
  float: left;
  width: 560px;
  position: relative;
  margin: 0 120px 0 0;
  padding: 0 0 300px 0;
}

 .vis-lp .look01_01{
    width: 378px;
    height: auto;
  }

.vis-lp .look01_02{
  display: block;
  position: absolute;
  right: 0;
  top: 300px;
	width: 264px;
	height: auto;
}

.vis-lp .look01 .look01R{
  display: block;
  float: left;
  position: relative;
  margin: 120px 0 0 0;
}

.vis-lp .look02{
  position: relative;
  display: block;
  width: 1060px;
  margin: 0 auto 80px auto;;
  overflow: auto;
}

.vis-lp .look02 .look02L{
  display: block;
  float: right;
  position: relative;
  margin: 40px 50px 0 0;
  padding: 0 0 0 0;
}

.vis-lp .look02 .look02R{
  display: block;
  float: right;
  position: relative;
  margin: 0 0 0 0;
  width: 670px;
  overflow: auto;
}

.vis-lp .look02 .look02R .look02_01{
  display: block;
  margin: 0 10px 0 0;
  float: left;
	width: 328px;
	height: auto;
}

.vis-lp .look02 .look02R .look02_02{
  display: block;
  margin: 0 0 0 0;
  float: left;
	width: 328px;
	height: auto;
}

.vis-lp #yuzuki{
  position: relative;
  display: block;
  width: 100%;
  clear: both;
}

.vis-lp #yuzuki .inner{
  width: 100%;
  margin: 240px 0 220px 0;
  padding: 0 0 0 0;
  position: relative;
}

.vis-lp #yuzuki .inner .bagslide01{
  width: 400px;
  margin: 0 auto;
  display: block;
  position: relative;
}

.vis-lp #yuzuki .inner .bagslide01 .bagname{
  font-family: "Libre Bodoni", serif;
  font-size: 44px;
  font-weight: 700;
  padding: 0;
  position: absolute;
  z-index: 9;
  left: -150px;
  top: -60px;
	color: #000000;
	line-height: 1.2em;
}

.vis-lp #yuzuki .inner .bagslide01 .bagname .pink{
  color: #D86583;
}

.vis-lp .look03{
  position: relative;
  display: block;
  width: 1060px;
  margin: 120px auto 80px auto;;
  overflow: auto;
}

.vis-lp .look03 .look03L{
  display: block;
  float: right;
  position: relative;
  margin: 40px 50px 0 0;
  padding: 0 0 0 0;
}

.vis-lp .look03 .look03R{
  display: block;
  float: right;
  position: relative;
  margin: 0 0 0 0;
  width: 730px;
  overflow: auto;
}

.vis-lp .look03 .look03R .look03_01{
  display: block;
  margin: 0 20px 0 0;
  float: left;
	width: 378px;
	height: auto;
}

.vis-lp .look03 .look03R .look03_02{
  display: block;
  margin: 240px 0 0 0;
  float: left;
	
	width: 326px;
	height: auto;
}

.vis-lp .look03 .look03R .look03_03{
  display: block;
  margin: 0 0 0 0;
  position: absolute;
  left: 265px;
  bottom: 140px;
	width: 174px;
	height: auto;
}

.vis-lp .look04{
  position: relative;
  display: block;
  width: 760px;
  margin: 120px auto 80px auto;;
  overflow: auto;
}

.vis-lp .look04 .look04L{
  display: block;
  position: relative;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  overflow: auto;
}

.vis-lp .look04 .look04L .look04_01{
  display: block;
  float: left;
	width: 380px;
	height: auto;
}
.vis-lp .look04 .look04L .look04_02{
  display: block;
  float: left;
	width: 380px;
	height: auto;
}

.vis-lp .look04 .look04R{
  display: block;
  clear: both;
  overflow: auto;
  position: relative;
  margin: 40px 0 0 0;
}

.vis-lp .look04 .look04R .bagbuy02{
  display: block;
  margin: 0 40px 0 0;
  float: left;
}

.vis-lp .bottominfo .charabtn{
  width: 360px;
  height: 60px;
  background: #D86583;
  display: block;
  margin: 0 auto 40px auto;
  text-align: center;
}

.vis-lp .bottominfo .charabtn a{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  color: #ffffff;
  line-height: 60px;
  text-align: center;
  display: block;
}

.vis-lp .bottominfo .shindan{
  width: 360px;
  height: 60px;
  background: #ffffff;
  display: block;
  margin: 0 auto 80px auto;
  text-align: center;
  border: 1px solid #666666;
}

.vis-lp .bottominfo .shindan a{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  color: #666666;
  line-height: 60px;
  text-align: center;
  display: block;
}


.vis-lp .kijimaarea{
	display: block;
	width: 646px;
	margin: 80px auto;
	overflow: auto;
}

.vis-lp .kijimaarea .kj{
	display: block;
	width: 160px;
	margin: 0 20px 0 0;
	float: left;
}

.vis-lp .kijimaarea .kj img{
	width: 100%;
	height: auto;
}

.vis-lp .kijimaarea .kjinfo{
	display: block;
	width: 466px;
	margin: 0 0 0 0;
	float: left;
}

.vis-lp .kijimaarea .kjinfo .kname{
	font-size: 18px;
	color: #D86583;
	font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
	padding: 0;
	margin: 20px 0 10px 0;
}
.vis-lp .kijimaarea .kjinfo .kinfo{
	font-size: 14px;
	color: #333333;
	font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
	padding: 0;
	margin: 0;
	line-height: 1.7em;
}


/*castページ*/
.vis-lp #cast{
  width: 100%;
  position: relative;
  background: #FFF8FB;
  padding: 80px 0 40px 0;
  display: block;
  margin: 0 0 60px 0;
}

.vis-lp #cast .casttitle{
  display: block;
  width: 104px;
  margin: 0 auto 20px auto;
}

.vis-lp #cast .castarea{
  display: block;
  width: 700px;
  margin: 0 auto 40px auto;
  border-bottom: 1px solid #eeeeee;
  padding: 0 0 20px 0;
}

.vis-lp #cast .castarea .castname{
  font-size: 18px;
  color: #D86583;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  margin: 0 0 20px 0;
}

.vis-lp #cast .castarea .cast_txt{
  font-size: 15px;
  color: #333333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.8em;
  padding: 0;
  margin: 0 0 20px 0;
}

.vis-lp #cast .castarea .cast_txt .caname{
  font-weight: 600;
  font-size: 16px;
}

.vis-lp #cast .cabox .insptxt{
  font-size: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #D86583;
  padding: 0;
  margin: 2px 0 0 0;
  display:block;
}

.vis-lp #cast .cabox{
  display: block;
  position: relative;
  overflow: auto;
  width: 100%;
  margin: 0 0 20px 0;
}

.vis-lp #cast .cabox .calbox{
  width:160px;
  display: block;
  margin: 0 20px 0 0;
  float: left;
}

.vis-lp #cast .cabox .carbox{
  width:520px;
  display: block;
  margin: 0 0 0 0;
  float: left;
}

.vis-lp .foo.delighter {
  transition: all .3s ease-out;
  transform: translateY(40px);
  opacity: 0;
}

.vis-lp .foo.delighter.started {
  transform: none;
  opacity: 1;
}
  
/* エンド時のスタイル */
.vis-lp .foo.delighter.started.ended {
}

.vis-lp .foo2.delighter {
  transition: all .6s ease-out;
  transform: translateY(60px);
  opacity: 0;
}

.vis-lp .foo2.delighter.started {
  transform: none;
  opacity: 1;
}
  
/* エンド時のスタイル */
.vis-lp .foo2.delighter.started.ended {
}

.vis-lp .foo3.delighter {
  transition: all .6s ease-out;
  transform: translateX(60px);
  opacity: 0;
}

.vis-lp .foo3.delighter.started {
  transform: none;
  opacity: 1;
}
  
/* エンド時のスタイル */
.vis-lp .foo3.delighter.started.ended {
}

.vis-lp .foo4.delighter {
  transition: all .6s ease-out;
  transform: translateX(-60px);
  opacity: 0;
}

.vis-lp .foo4.delighter.started {
  transform: none;
  opacity: 1;
}
  
/* エンド時のスタイル */
.vis-lp .foo4.delighter.started.ended {
}

.vis-lp .pc{
  display: block;
}

.vis-lp .sp{
  display:none;
}

@media only screen and (max-width: 1200px) {
}

@media only screen and (max-width: 800px) {
  .vis-lp .sp{
    display: block;
  }

  .vis-lp .pc{
    display:none;
  }

  /* ベースレイアウト */
  #wrapper {
    width: 100%;
    margin: 0;
    padding:0;
    /*
    opacity: .0; 
    filter: alpha(opacity=0); 
    -ms-filter: "alpha(opacity=0)"; 
    -khtml-opacity: .0; 
    -moz-opacity: .0; 
    */
    overflow-x: hidden;
  }

  .vis-lp .contents{
    width:100%;
    position:relative;
  }

  .vis-lp .online{
    display: block;
    position: fixed;
    z-index: 9999;
    right: 10px;
	  
	  top:auto;
    bottom: 130px;
  }
	
	.vis-lp .online img{
		width: 80px;
		height: auto;
	}

  .vis-lp .kv{
    position: relative;
    background: #FFF8FB;
    padding: 20px 0 40px 0;
    display: block;
  }

  .vis-lp .kv img{
    width: 96%;
    display: block;
    margin: 0 2%;
  }

  .vis-lp .delay-time02{
    animation-delay: 0.4s;
  }

  .vis-lp .delay-time04{
    animation-delay: 0.6s;
  }

  .vis-lp .delay-time06{
    animation-delay: 0.8s;
  }

  .vis-lp .delay-time08{
    animation-delay: 1.2s;
  }

  .vis-lp .info_txt{
    display: block;
    margin: 80px 0 80px 0;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 15px;
    color: #000000;
    line-height: 2.2em;
    text-align: center;
  }

  .vis-lp .teaser_mv{
    display: block;
    margin: 0 auto;
    width: 90%;
  }
  
  .vis-lp .teaser_mv .mvtitle{
    width: 100%;
  }
  
  .vis-lp .teaser_mv .mvtitle img{
    width: 100%;
    height: auto;
  }
	
	
	
.vis-lp .teaser_mv .inner{
	width: 100%;
	padding: 20px 0;
	margin: 40px 0 0 0;
	background-color: #FCEAF2;
	text-align: center;
	
}

.vis-lp .teaser_mv .inner p{
	font-size: 18px;
	margin: 0;
	padding: 0;
	font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
	color: #000000;
}


.vis-lp .teaser_mv .inner p .pinkR{
	font-size: 22px;
	color: #D86583;
}
	
	
	.vis-lp .teaser_mv .samplemv{
  width: 320px;
  margin: 40px auto;
  display: block;
}

.vis-lp .teaser_mv .samplemv iframe{
  width: 320px;
  height: 180px;
}



  .vis-lp #chart{
    position: relative;
    display: block;
    margin: 60px auto;
    width: 98%;
  }

  .vis-lp #chart .ctitle{
    display: block;
    margin: 0 auto;
    width: 138px;
  }

  .vis-lp #chart .chartimg{
    display: block;
    margin: 40px auto 60px auto;;
    width: 100%;
  }
  
  .vis-lp #chart .chartimg img{
    width: 100%;
    height: auto;
  }

  .vis-lp #chart .charabtn{
    width: 320px;
    height: 60px;
    background: #D86583;
    display: block;
    margin: 0 auto 20px auto;
    text-align: center;
  }

  .vis-lp #chart .charabtn a{
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 14px;
    color: #ffffff;
    line-height: 60px;
    text-align: center;
    display: block;
  }

  .vis-lp #chart .shindan{
    width: 320px;
    height: 60px;
    background: #ffffff;
    display: block;
    margin: 0 auto 20px auto;
    text-align: center;
    border: 1px solid #666666;
  }

  .vis-lp #chart .shindan a{
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 14px;
    color: #666666;
    line-height: 60px;
    text-align: center;
    display: block;
  }

  .vis-lp #chart .shindantxt{
    text-align: center;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
    display: block;
    font-size: 13px;
  }

  .vis-lp #story{
    width: 100%;
    position: relative;
    display: block;
    margin: 80px auto;
  }

  .vis-lp #story .stitle{
    display: block;
    width: 129px;
    margin: 0 auto;
  }

  .vis-lp #story .inner{
    width: 100%;
    margin: 0;
    padding: 100px 0;
    position: relative;
    top: 40px;
  }

  .vis-lp #story .inner::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FCEAF2;
    transform: skewY(-4deg);
    z-index: -1;
  }

  .vis-lp #story .charabox{
    width: 90%;
    margin: 0 auto 20px auto;
    background: #FDF6F9;
    border-radius: 8px;
    padding: 0 0 20px 0;
    overflow: auto;
  }

  .vis-lp #story .charabox .lcbox{
    display: block;
    float: none;
    margin: 40px 0 0 4%;
    width: 92%
  }

  .vis-lp #story .charabox .lcbox .charainfo{
    position: relative;
    display: block;
    margin: 0 0 0 0;
    text-align: center;
  }

  .vis-lp #story .charabox .lcbox .charainfo .cname{
    font-size: 18px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #D86583;
  }

  .vis-lp #story .charabox .lcbox .charainfo .cname2{
    font-size: 12px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #000000;
  }

  .vis-lp #story .charabox .lcbox .storytxt{
    position: relative;
    display: block;
    margin: 20px 0 0 0;
  }
  .vis-lp #story .charabox .lcbox .stxt{
    font-size: 14px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 600;
    font-style: normal;
    line-height: 2.2em;
    color: #333333;
    padding: 0 0 30px 0;
  }
	
	
	.vis-lp #story .charabox .lcbox .fk01{
		width: 30px;
		height: auto;
	}

  .vis-lp #story .charabox .lcbox .fk02{
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
	  width: 30px;
		height: auto;
  }
  .vis-lp #story .charabox .rcbox{
    display: block;
    float: none;
    margin: 40px 5% 0 5%;
    width: 90%;
  }

  .vis-lp #story .charabox .rcbox .pvtitle{
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 600;
    padding: 4px 0;
    border-radius: 4px;
    width: 100%;
	  font-size: 18px;
    background: #D86583;
    text-align: center;
    color: #ffffff;
  }
	
	
	.vis-lp #story .charabox .rcbox .coming{
		display: block;
		width: 220px;
		margin: 40px auto;
	}
	
	
	.vis-lp #story .charabox .rcbox .coming img{
		display: block;
		width: 220px;
		height: auto;
	}
	
  .vis-lp #story .charabox .rcbox .samplemv2{
    width: 50%;
    margin: 0 auto;
  }

 .vis-lp #story .charabox .rcbox .pvbox iframe{
    width: 280px;
	 height: 158px;
    margin: 0 auto;
	display: block;
	  
  }
	
	
	

.vis-lp #story .samplemv{
  width: 272px;
  margin: 40px auto 0 auto;
  display: block;
}

.vis-lp #story .samplemv iframe{
  width: 272px;
  height: 484px;
}


  .vis-lp #bagintro{
    clear: both;
    display: block;
    position: relative;
    width: 90%;
    margin:  120px auto;
  }
  
  .vis-lp #bagintro img{
    width: 100%;
    height: auto;
  }

  .vis-lp #bagintro .bagtitle{
    text-align: center;
    font-family: "Libre Bodoni", serif;
    font-size: 36px;
    font-weight: 700;
    padding: 0;
    margin: 40px 0 20px 0;
  }

  .vis-lp #bagintro .bagtxt{
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 15px;
    color: #333333;
    line-height: 2.1em;
    text-align: center;
  }

  .vis-lp #akari{
    position: relative;
    display: block;
    width: 100%;
    margin: 180px 0 0 0;
  }

  .vis-lp #akari .inner{
    width: 100%;
    margin: 0;
    padding: 10px 0 0 0;
    position: relative;
    top: 40px;
  }

  .vis-lp #akari .inner::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FCEAF2;
    transform: skewY(8deg);
    z-index: -1;
  }

  .vis-lp #akari .inner .bagslide01{
    width: 76%;
    margin: 0 auto;
    display: block;
    position: relative;
  }

  .vis-lp #akari .inner .bagslide01 .bagname{
    font-family: "Libre Bodoni", serif;
    font-size: 36px;
    font-weight: 700;
    padding: 0;
    position: absolute;
    z-index: 9;
    left: -20px;
    top: -40px;
  }

  .vis-lp #akari .inner .bagslide01 .bagname .pink{
    color: #D86583;
  }

  .vis-lp .slick{
    display: block;
    margin: -40px 0 0 0;
    width: 100%;
  }
  
  .vis-lp .slick img{
    width: 100%;
    height: auto;
  }

  .vis-lp .slick-dots li button:before{
    font-size:20px;/*初期値は6px*/
  }
	
	.slick-dots li.slick-active button:before
{
    opacity: 1;
    color: #F16E86;
}

  .vis-lp .bagtxt{
    font-size: 14px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #333333;
  }

  .vis-lp .bagbuy01{
    display: block;
    position: relative;
    right: 0;
    top:30px;
    margin: 30px 0 0 0;
  }

  .vis-lp .bagbuy02{
    display: block;
    margin: 0 0 20px 0;
  }

  .vis-lp .bagitem{
    font-size: 14px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #000000;
    padding: 0;
    margin: 0 0 4px 0;
  }

  .vis-lp .price{
    font-size: 14px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #333333;
    padding: 0;
    margin: 0 0 14px 0;
  }
  
  .vis-lp .small{
    font-size: 12px;
  }

  .vis-lp .look01{
    position: relative;
    display: block;
    width: 90%;
    margin: 100px 5% 0 5%;
    overflow: auto;
  }

  .vis-lp .look01 .look01L{
    display: block;
    float: none;
    width: 100%;
    position: relative;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
  }
  
  .vis-lp .look01_01{
    width: 80%;
    height: auto;
  }

  .vis-lp .look01_02{
    width: 70%;
    height: auto;
    display: block;
    position: relative;
    margin: 0 0 0 30%;
    right: 0;
    top: -30px;
  }

  .vis-lp .look01 .look01R{
    width: 80%;
    display: block;
    float: none;
    position: relative;
    margin: 40px 0 0 0;
  }

  .vis-lp .look02{
    position: relative;
    display: block;
    width: 90%;
    margin: 40px auto 80px auto;;
    overflow: auto;
  }

  .vis-lp .look02 .look02L{
    display: block;
    float: none;
    position: relative;
    margin: 40px 0 0 0;
    padding: 0 0 0 0;
  }

  .vis-lp .look02 .look02R{
    display: block;
    float: none;
    position: relative;
    margin: 0 0 0 0;
    width: 100%;
    overflow: auto;
  }

  .vis-lp .look02 .look02R .look02_01{
    display: block;
    margin: 0 0 10px 0;
    float: none;
    width: 100%;
    height: auto;
  }

  .vis-lp .look02 .look02R .look02_02{
    display: block;
    margin: 0 0 0 0;
    float: none;
    width: 100%;
    height: auto;
  }

  .vis-lp #yuzuki{
    position: relative;
    display: block;
    width: 100%;
    clear: both;
  }

  .vis-lp #yuzuki .inner{
    width: 100%;
    margin: 240px 0 0 0;
    padding: 0 0 0 0;
    position: relative;
  }

  .vis-lp #yuzuki .inner .bagslide01{
    width: 76%;
    margin: 0 auto;
    display: block;
    position: relative;
  }

  .vis-lp #yuzuki .inner .bagslide01 .bagname{
    font-family: "Libre Bodoni", serif;
    font-size: 36px;
    font-weight: 700;
    padding: 0;
    position: absolute;
    z-index: 9;
    left: -20px;
    top: -40px;
  }

  .vis-lp #yuzuki .inner .bagslide01 .bagname .pink{
    color: #D86583;
  }

  .vis-lp .look03{
    position: relative;
    display: block;
    width: 90%;
    margin: 120px 5% 80px 5%;
    overflow: auto;
  }

  .vis-lp .look03 .look03L{
    display: block;
    float: none;
    position: relative;
    margin: 40px 0 0 0;
    padding: 0 0 0 0;
    width: 100%;
  }

  .vis-lp .look03 .look03R{
    display: block;
    float: none;
    position: relative;
    margin: 0 auto;
    width: 100%;
    overflow: auto;
  }

  .vis-lp .look03 .look03R .look03_01{
    display: block;
    margin: 0 0 20px 0;
    float: none;
    width: 100%;
    height: auto;
  }

  .vis-lp .look03 .look03R .look03_02{
    display: block;
    margin: 0 0 0 0;
    float: none;
    width: 100%;
    height: auto;
  }

  .vis-lp .look03 .look03R .look03_03{
    display: block;
    margin: 0 0 0 0;
    position: absolute;
    left: 55%;
    bottom: 440px;
    width: 40%;
    height: auto;
  }

  .vis-lp .look04{
    position: relative;
    display: block;
    width: 90%;
    margin: 120px auto 80px auto;;
    overflow: auto;
  }

  .vis-lp .look04 .look04L{
    display: block;
    position: relative;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    overflow: auto;
  }

  .vis-lp .look04 .look04L .look04_01{
    display: block;
    float: none;
    width: 100%;
    height: auto;
  }
  .vis-lp .look04 .look04L .look04_02{
    display: block;
    float: none;
    width: 100%;
    height: auto;
    margin: 0 0 20px 0;
  }

  .vis-lp .look04 .look04R{
    display: block;
    clear: both;
    overflow: auto;
    position: relative;
    margin: 20px 0 0 0;
  }

  .vis-lp .look04 .look04R .bagbuy02{
    display: block;
    margin: 0 0 20px 0;
    float: none;
  }

  .vis-lp .bottominfo{
    display: block;
    padding: 20px 0 40px 0;
  }
  .vis-lp .bottominfo .charabtn{
    width: 360px;
    height: 60px;
    background: #D86583;
    display: block;
    margin: 60px auto 40px auto;
    text-align: center;
  }

  .vis-lp .bottominfo .charabtn a{
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 14px;
    color: #ffffff;
    line-height: 60px;
    text-align: center;
    display: block;
  }

  .vis-lp .bottominfo .shindan{
    width: 360px;
    height: 60px;
    background: #ffffff;
    display: block;
    margin: 0 auto 80px auto;
    text-align: center;
    border: 1px solid #666666;
  }

  .vis-lp .bottominfo .shindan a{
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 14px;
    color: #666666;
    line-height: 60px;
    text-align: center;
    display: block;
  }
	
	a .buy{
		width: 90px;
		height: auto;
	}

  /*castページ*/
  .vis-lp #cast{
    width: 100%;
    position: relative;
    background: #FFF8FB;
    padding: 80px 0 40px 0;
    display: block;
    margin: 0 0 60px 0;
  }

  .vis-lp #cast .casttitle{
    display: block;
    width: 104px;
    margin: 0 auto 20px auto;
  }

  .vis-lp #cast .castarea{
    display: block;
    width: 80%;
    margin: 0 auto 40px auto;
    border-bottom: 1px solid #eeeeee;
    padding: 0 0 20px 0;
  }

  .vis-lp #cast .castarea .castname{
    font-size: 18px;
    color: #D86583;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 600;
    font-style: normal;
  }

  .vis-lp #cast .castarea .cast_txt{
    font-size: 15px;
    color: #333333;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
    line-height: 1.8em;
    padding: 0;
    margin: 0 0 20px 0;
  }

  .vis-lp #cast .castarea .cast_txt .caname{
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    display: block;
  }
  
  .vis-lp #cast .cabox .insptxt{
    font-size: 14px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #D86583;
    padding: 0;
    margin: 2px 0 0 0;
    display:block;
    text-align: center;
  }

  .vis-lp #cast .cabox{
    display: block;
    position: relative;
    overflow: auto;
    width: 100%;
    margin: 0 0 20px 0;
  }

  .vis-lp #cast .cabox .calbox{
    width:160px;
    display: block;
    margin: 0 auto 20px auto;
    float: none;
  }

  .vis-lp #cast .cabox .carbox{
    width:100%;
    display: block;
    margin: 0 0 0 0;
    float: none;
  }
	
	
.vis-lp .kijimaarea{
	display: block;
	width: 80%;
	margin: 0 auto 40px auto;
	overflow: auto;
	text-align: center;
}

.vis-lp .kijimaarea .kj{
	display: block;
	width: 120px;
	margin: 0 auto 20px  auto;
	float: none;
}

.vis-lp .kijimaarea .kj img{
	width: 100%;
	height: auto;
}

.vis-lp .kijimaarea .kjinfo{
	display: block;
	width: 100%;
	margin: 0 0 0 0;
	float: none;
}

.vis-lp .kijimaarea .kjinfo .kname{
	font-size: 18px;
	color: #D86583;
	font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
	padding: 0;
	margin: 20px 0 10px 0;
}
.vis-lp .kijimaarea .kjinfo .kinfo{
	width: 80%;
	text-align: left;
	font-size: 14px;
	color: #333333;
	font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
	padding: 0;
	margin: 0 auto;
	line-height: 1.7em;
}

	
	
	
	
	
}

