@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');
/* Micro clearfix */

.cf { zoom: 1; }
.cf:before, .cf:after { content: ""; display: table; }
.cf:after { clear: both; }

/* 必要要素の初期設定 */

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;
 */
 
}

*:focus {
  outline: none;
}


a {
 text-decoration:none;
 outline:none;
}

a:focus{
	outline: none;
}

a:hover{
	opacity:0.7;	
}

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


ul {
 margin: 0;
 padding: 0;

}

li{
	list-style:none;	
}

/* ベースレイアウト */

/*画面遷移アニメーション*/
.splashbg{
    display: none;
}

/*bodyにappearクラスがついたら出現*/
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: 0;
 padding:0;
	
/*
 opacity: .0; 
	filter: alpha(opacity=0); 
	-ms-filter: "alpha(opacity=0)"; 
	-khtml-opacity: .0; 
	-moz-opacity: .0; 
*/
	overflow-x: hidden;

}

.contents{
	width:100%;
	position:relative;
	
}


header{
	overflow: auto;
	position: relative;
}

header{
	
}


	

.catch{
	overflow: auto;
	position:fixed;
	width:582px;
	/*top:40px;*/
	margin:0 0 0 0;
	padding:0 0 0 0;
	display:block;
	left: 50%;
	top: 20%;
	transform: translateX(-50%) translateY(-20%);
	z-index: -1;
}

img {
  opacity: 0;
  -moz-transition: -moz-transform 1s linear;
  -webkit-transition: -webkit-transform 1s linear;
  -o-transition: -o-transform 1s linear;
  -ms-transition: -ms-transform 1s linear;
  transition: transform 1s linear;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
	
	 
}


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


#videocont{
	opacity: 0;
	
}

#videocont video {
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
}

#videocont_sp{
	opacity: 0;
	display: none;
	
}

#videocont_sp video {
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
}



  
.box {
  width: 100%;
  height: auto;
  margin: 0 0 0 0;
  overflow: hidden;
}

.box .boxInner {
  width: inherit;
  height: inherit;
  line-height: auto;
  font-size: 1.5em;


  opacity: 0;
}

.box .boxInner2 {
  width: inherit;
  height: inherit;
  line-height: auto;
  font-size: 1.5em;


  opacity: 0;
}

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

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



#lookcontainer{
	background: #FCFBF7;
	width: 100%;
	position: relative;
	padding: 100px 0 160px 0;
	margin: 500px 0 0 0;
}

#look01{
	width: 100%;
	position: relative;
	display: block;
	margin: 0 auto 0 auto;
	padding: 0;
	clear: both;
	
	
}

#look01 .num{
	width: 44px;
	position: relative;
	display: block;
	margin: 0 0 20px 20px;
	
	
}

#look01 .imgcont{
	overflow: auto;
	position: relative;
	
}

#look01 .imgcont img{
	width: 100%;
	height: auto;
	display: block;
	
	margin: 0 0 0 0;
	
	
}



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

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

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

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

.credit{
	width: 300px;
	display: block;
	overflow: auto;
	margin: 0 auto;
	font-size:12px;
	
}


.credit .toggle_btn{
	cursor: pointer;
	display: block;
	width: 60px;
	height: 9px;
	margin: 0;
	background: url("../images/credit_open.svg") no-repeat  top left;
}


.credit .toggle_btn.selected {
	background: url(../images/credit_close.svg) no-repeat top left;
}


.credit_txt{
	position: relative;
	overflow: auto;
	display: none;
	max-width: 400px;
}


.credit .credit_txt p{
	text-align: left;
	display: inline-block;
	float: left;
	vertical-align: top;
	margin: 0 0 10px 0;
	padding: 0;
	clear: both;
}

.credit .credit_txt a{
	display: inline-block;
	text-align: right;
	float: right;
	vertical-align: top;
	font-weight: 600;
	margin: 0;
	padding: 0; 
	color:#000000;
	text-decoration: underline;
}



#look01 .sampletxt{
	display: block;
	float: left;
	margin: 130px 0 0 30px;
}


#look01 .credit{
	float: right;
	margin: 20px 5% 0 0;
	position: relative;
}

#look01 .credit .toggle_btn{
	display: block;
	float: right;
	margin: 0 0 20px 0;
}


#look01 .credit_txt{
	position: relative;
	overflow: auto;
	display: none;
	max-width: 400px;
	clear: both;
}



#look02{
	width: 100%;
	position: relative;
	display: block;
	margin: 400px auto 0 auto;
	padding: 0;
	clear: both;
	
}

#look02 .num{
	width: 44px;
	position: relative;
	display: block;
	margin: 0 0 20px 20px;
	
	
}

#look02 .imgcont{
	width: 100%;
	margin: 0 0 0 0;
	display: block;
	position: relative;
	cursor: pointer;
	
	
}


#look02 .credit{
	float: right;
	margin: 20px 5% 0 0;
	position: relative;
}

#look02 .credit .toggle_btn{
	display: block;
	float: right;
	margin: 0 0 20px 0;
}


#look02 .credit_txt{
	position: relative;
	overflow: auto;
	display: none;
	max-width: 400px;
	clear: both;
}





#look03{
	width: 100%;
	position: relative;
	display: block;
	margin: 280px auto 0 auto;
	padding: 0;
	clear: both;
	
	
}

#look03 .num{
	width: 44px;
	position: relative;
	display: block;
	margin: 0 0 20px 20px;
	
}

#look03 .imgcont{
	overflow: auto;
	position: relative;
	
}

#look03 .imgcont img{
	width: 44%;
	height: auto;
	display: block;
	float: left;
	margin: 0 12% 0 0;
	
	
}

#look03 .imgcont img:last-child{
	margin: 0 0 0 0;
}
#look03 .credit{
	float: right;
	margin: 20px 5% 0 0;
	position: relative;
}

#look03 .credit .toggle_btn{
	display: block;
	float: right;
	margin: 0 0 20px 0;
}


#look03 .credit_txt{
	position: relative;
	overflow: auto;
	display: none;
	max-width: 400px;
	clear: both;
}



#look04{
	width: 40%;
	position: relative;
	display: block;
	margin: 200px auto 0 auto;
	padding: 0;
	clear: both;
	
}
#look04 .num{
	width: 44px;
	position: relative;
	display: block;
	margin: 0 0 20px 20px;
	
}
#look04 .numsp{
	display: none;
}


#look04 .credit{
	float: right;
	margin: 20px 5% 0 0;
	position: relative;
}

#look04 .credit .toggle_btn{
	display: block;
	float: right;
	margin: 0 0 20px 0;
}


#look04 .credit_txt{
	position: relative;
	overflow: auto;
	display: none;
	max-width: 400px;
	clear: both;
}


#look04 .imgcont{
	width: 100%;
	margin: 0 auto;
	display: block;
	position: relative;
	cursor: pointer;
	
	
}




#look04 .imgcont img{
	display: block;
	width: 100%;
	height: auto;
	
	
}



#look05{
	width: 100%;
	position: relative;
	display: block;
	margin: 280px auto 0 auto;
	padding: 0;
	clear: both;
	
	
}

#look05 .num{
	width: 44px;
	position: relative;
	display: block;
	margin: 0 0 20px 20px;
	
}

#look05 .imgcont{
	overflow: auto;
	position: relative;
	
}

#look05 .imgcont img{
	width: 44%;
	height: auto;
	display: block;
	float: right;
	margin: 0 0 0 12%;
	
	
}

#look05 .imgcont img:last-child{
	margin: 0 0 0 0;
}
#look05 .credit{
	float: right;
	margin: 20px 5% 0 0;
	position: relative;
}

#look05 .credit .toggle_btn{
	display: block;
	float: right;
	margin: 0 0 20px 0;
}


#look05 .credit_txt{
	position: relative;
	overflow: auto;
	display: none;
	max-width: 400px;
	clear: both;
}




#look06{
	width: 100%;
	position: relative;
	display: block;
	margin: 280px auto 0 auto;
	padding: 0;
	clear: both;
	
	
}

#look06 .num{
	width: 44px;
	position: relative;
	display: block;
	margin: 0 0 20px 20px;
	
	
}

#look06 .imgcont{
	overflow: auto;
	position: relative;
	
}

#look06 .imgcont img{
	width: 100%;
	height: auto;
	display: block;
	
	margin: 0 0 0 0;
	
	
}

#look06 .credit{
	float: right;
	margin: 20px 5% 0 0;
	position: relative;
}

#look06 .credit .toggle_btn{
	display: block;
	float: right;
	margin: 0 0 20px 0;
}


#look06 .credit_txt{
	position: relative;
	overflow: auto;
	display: none;
	max-width: 400px;
	clear: both;
}




#look07{
	width: 100%;
	position: relative;
	display: block;
	margin: 280px auto 0 auto;
	padding: 0;
	clear: both;
	
	
}

#look07 .num{
	width: 44px;
	position: relative;
	display: block;
	margin: 0 0 20px 20px;
	
}

#look07 .imgcont{
	overflow: auto;
	position: relative;
	
}

#look07 .imgcont img{
	width: 44%;
	height: auto;
	display: block;
	float: left;
	margin: 0 12% 0 0;
	
	
}

#look07 .imgcont img:last-child{
	margin: 0 0 0 0;
}
#look07 .credit{
	float: right;
	margin: 20px 5% 0 0;
	position: relative;
}

#look07 .credit .toggle_btn{
	display: block;
	float: right;
	margin: 0 0 20px 0;
}


#look07 .credit_txt{
	position: relative;
	overflow: auto;
	display: none;
	max-width: 400px;
	clear: both;
}






#look08{
	width: 100%;
	position: relative;
	display: block;
	margin: 280px auto 0 auto;
	padding: 0;
	clear: both;
	
	
}

#look08 .num{
	width: 44px;
	position: relative;
	display: block;
	margin: 0 0 20px 20px;
	
}



#look08 .lookbg{
	background: #E5E5E5;
	width: 100%;
	overflow: auto;
	padding: 0;
	margin: 0;
	vertical-align: bottom;

}



#look08 .lookbg .lookbg_inner{
	width: 44%;
	display: block;
	margin: 0 6% 0 50%;
	padding: 0;
	vertical-align: bottom;
	overflow: auto;
	
}

#look08 .lookbg .lookbg_inner img{
	vertical-align: top;
}

#look08 .credit{
	float: right;
	margin: 20px 5% 0 0;
	position: relative;
}

#look08 .credit .toggle_btn{
	display: block;
	float: right;
	margin: 0 0 20px 0;
}


#look08 .credit_txt{
	position: relative;
	overflow: auto;
	display: none;
	max-width: 400px;
	clear: both;
}




#look09{
	width: 100%;
	position: relative;
	display: block;
	margin: 280px auto 0 auto;
	padding: 0;
	clear: both;
	
	
}

#look09 .num{
	width: 44px;
	position: relative;
	display: block;
	margin: 0 0 20px 20px;
	
}



#look09 .lookbg{
	background: #E5E5E5;
	width: 100%;
	overflow: auto;
	padding: 0;
	margin: 0;
	vertical-align: bottom;

}



#look09 .lookbg .lookbg_inner{
	width: 44%;
	display: block;
	margin: 0 50% 0 6%;
	padding: 0;
	vertical-align: bottom;
	overflow: auto;
	
}

#look09 .lookbg .lookbg_inner img{
	vertical-align: top;
}

#look09 .credit{
	float: right;
	margin: 20px 5% 0 0;
	position: relative;
}

#look09 .credit .toggle_btn{
	display: block;
	float: right;
	margin: 0 0 20px 0;
}


#look09 .credit_txt{
	position: relative;
	overflow: auto;
	display: none;
	max-width: 400px;
	clear: both;
}






#look10{
	width: 100%;
	position: relative;
	display: block;
	margin: 280px auto 0 auto;
	padding: 0;
	clear: both;
	
	
}

#look10 .num{
	width: 44px;
	position: relative;
	display: block;
	margin: 0 0 20px 20px;
	
}

#look10 .imgcont{
	overflow: auto;
	position: relative;
	
}

#look10 .imgcont img{
	width: 44%;
	height: auto;
	display: block;
	float: left;
	margin: 0 12% 0 0;
	
	
}

#look10 .imgcont img:last-child{
	margin: 0 0 0 0;
}
#look10 .credit{
	float: right;
	margin: 20px 5% 0 0;
	position: relative;
}

#look10 .credit .toggle_btn{
	display: block;
	float: right;
	margin: 0 0 20px 0;
}


#look10 .credit_txt{
	position: relative;
	overflow: auto;
	display: none;
	max-width: 400px;
	clear: both;
}









#fmain{
	position: relative;
	clear: both;
	display: block;
	margin: 600px 0 0 0;
}
	
	#fmain_sp{
	position: relative;
	clear: both;
		display: none;
	margin: 600px 0 0 0;
}

#fmain .creditimg{
	position: absolute;
	display: block;
	z-index: 9999;

  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}


#cast{
	clear: both;
	width: 100%;
	margin: 0 0 100px 0;
	text-align: center;
	font-size: 11px;
	line-height: 2em;
	padding: 100px 0 40px 0;
}


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


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


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


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

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


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

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


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


.footer{
	clear: both;
	width:100%;
	
	background: #F7F7F4;
	padding:40px 0;
	margin:0;
	text-align: center;
}


.footer a{
	display: inline-block;
	margin: 0 40px 0 0;
	font-size: 16px;
	font-weight: 700;
	color: #333333;
	
	
}

.copyright{
	display: block;
	text-align: center;
	margin: 40px 0 0 0;
	font-size: 10px;
}

.pc{
	display: block;
}

.sp{
	display:none;
}


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

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

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

}

.contents{
	width:100%;
	position:relative;
	
}


header{
	overflow: auto;
	position: relative;
}

header{
	
}


	

.catch{
	overflow: auto;
	position:fixed;
	width:90%;
	/*top:40px;*/
	margin:0 auto;
	padding:0 0 0 0;
	display:block;
	left: 50%;
	top: 15%;
	transform: translateX(-50%) translateY(-15%);
	z-index: -1;
}
	
	.catch img{
		width: 100%;
		height: auto;
	}

img {
  opacity: 0;
  -moz-transition: -moz-transform 1s linear;
  -webkit-transition: -webkit-transform 1s linear;
  -o-transition: -o-transform 1s linear;
  -ms-transition: -ms-transform 1s linear;
  transition: transform 1s linear;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;

	-webkit-tap-highlight-color: rgba(0,0,0,0);
	 cursor:pointer;
}
	
	
	


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


#videocont{
	opacity: 0;
	display: none;
	
}

#videocont video {
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
}

#videocont_sp{
	opacity: 0;
	display: block;
	
}

#videocont_sp video {
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
}





	
	
	
	
	
	
	
	
  
.box {
  width: 100%;
  height: auto;
  margin: 0 0 0 0;
  overflow: hidden;
}

.box .boxInner {
  width: inherit;
  height: inherit;
  line-height: auto;
  font-size: 1.5em;


  opacity: 0;
}

.box .boxInner2 {
  width: inherit;
  height: inherit;
  line-height: auto;
  font-size: 1.5em;


  opacity: 0;
}

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

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




#lookcontainer{
	background: #ffffff;
	width: 100%;
	position: relative;
	padding: 100px 0 20px 0;
	margin: 460px 0 0 0;
}

	#lookcontainer .inner{
		width: 96%;
		margin: 0 2%;
	}
#look01{
	width: 100%;
	position: relative;
	display: block;
	margin: 0 auto 0 auto;
	padding: 0;
	clear: both;
	
	
}

#look01 .num{
	width: 44px;
	position: relative;
	display: block;
	margin: 0 0 20px 0;
	
	
}

#look01 .imgcont{
	overflow: auto;
	position: relative;
	
}

#look01 .imgcont img{
	width: 100%;
	height: auto;
	display: block;
	
	margin: 0 0 0 0;
	
	
}



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

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

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

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

.credit{
	width: 300px;
	display: block;
	overflow: auto;
	margin: 0 auto;
	font-size:12px;
	
}


.credit .toggle_btn{
	cursor: pointer;
	display: block;
	width: 60px;
	height: 9px;
	margin: 0;
	background: url("../images/credit_open.svg") no-repeat  top left;
}


.credit .toggle_btn.selected {
	background: url(../images/credit_close.svg) no-repeat top left;
}


.credit_txt{
	position: relative;
	overflow: auto;
	display: none;
	max-width: 400px;
}


.credit .credit_txt p{
	text-align: left;
	display: inline-block;
	float: left;
	vertical-align: top;
	margin: 0 0 10px 0;
	padding: 0;
	clear: both;
}

.credit .credit_txt a{
	display: inline-block;
	text-align: right;
	float: right;
	vertical-align: top;
	font-weight: 600;
	margin: 0;
	padding: 0; 
	color:#000000;
	text-decoration: underline;
}



#look01 .sampletxt{
	display: none;
	float: left;
	margin: 130px 0 0 30px;
}


#look01 .credit{
	float: right;
	margin: 20px 5% 0 0;
	position: relative;
}

#look01 .credit .toggle_btn{
	display: block;
	float: right;
	margin: 0 0 20px 0;
}


#look01 .credit_txt{
	position: relative;
	overflow: auto;
	display: none;
	max-width: 400px;
	clear: both;
}



#look02{
	width: 100%;
	position: relative;
	display: block;
	margin: 200px auto 0 auto;
	padding: 0;
	clear: both;
	
}

#look02 .num{
	width: 44px;
	position: relative;
	display: block;
	margin: 0 0 20px 0;
	
	
}

#look02 .imgcont{
	width: 100%;
	margin: 0 0 0 0;
	display: block;
	position: relative;
	cursor: pointer;
	
	
}


#look02 .credit{
	float: right;
	margin: 20px 5% 0 0;
	position: relative;
}

#look02 .credit .toggle_btn{
	display: block;
	float: right;
	margin: 0 0 20px 0;
}


#look02 .credit_txt{
	position: relative;
	overflow: auto;
	display: none;
	max-width: 400px;
	clear: both;
}





#look03{
	width: 100%;
	position: relative;
	display: block;
	margin: 220px auto 0 auto;
	padding: 0;
	clear: both;
	
	
}

#look03 .num{
	width: 44px;
	position: relative;
	display: block;
	margin: 0 0 20px 0;
	
}

#look03 .imgcont{
	overflow: auto;
	position: relative;
	
}

#look03 .imgcont img{
	width: 100%;
	height: auto;
	display: block;
	float: none;
	margin: 0 0 10px 0;
	
	
}

#look03 .imgcont img:last-child{
	margin: 0 0 0 0;
}
#look03 .credit{
	float: right;
	margin: 20px 5% 0 0;
	position: relative;
}

#look03 .credit .toggle_btn{
	display: block;
	float: right;
	margin: 0 0 20px 0;
}


#look03 .credit_txt{
	position: relative;
	overflow: auto;
	display: none;
	max-width: 400px;
	clear: both;
}



#look04{
	width: 100%;
	position: relative;
	display: block;
	margin: 200px auto 0 auto;
	padding: 0;
	clear: both;
	
}
#look04 .num{
	width: 44px;
	position: relative;
	display: block;
	margin: 0 0 20px 0;
	
}


#look04 .credit{
	float: right;
	margin: 20px 5% 0 0;
	position: relative;
}

#look04 .credit .toggle_btn{
	display: block;
	float: right;
	margin: 0 0 20px 0;
}


#look04 .credit_txt{
	position: relative;
	overflow: auto;
	display: none;
	max-width: 400px;
	clear: both;
}


#look04 .imgcont{
	width: 100%;
	margin: 0 auto;
	display: block;
	position: relative;
	cursor: pointer;
	
	
}




#look04 .imgcont img{
	display: block;
	width: 100%;
	height: auto;
	
	
}



#look05{
	width: 100%;
	position: relative;
	display: block;
	margin: 200px auto 0 auto;
	padding: 0;
	clear: both;
	
	
}

#look05 .num{
	width: 44px;
	position: relative;
	display: block;
	margin: 0 0 20px 0;
	
}

#look05 .imgcont{
	overflow: auto;
	position: relative;
	
}

#look05 .imgcont img{
	width: 100%;
	height: auto;
	display: block;
	float: none;
	margin: 0 0 10px 0;
	
	
}

#look05 .imgcont img:last-child{
	margin: 0 0 0 0;
}
#look05 .credit{
	float: right;
	margin: 20px 5% 0 0;
	position: relative;
}

#look05 .credit .toggle_btn{
	display: block;
	float: right;
	margin: 0 0 20px 0;
}


#look05 .credit_txt{
	position: relative;
	overflow: auto;
	display: none;
	max-width: 400px;
	clear: both;
}




#look06{
	width: 100%;
	position: relative;
	display: block;
	margin: 200px auto 0 auto;
	padding: 0;
	clear: both;
	
	
}

#look06 .num{
	width: 44px;
	position: relative;
	display: block;
	margin: 0 0 20px 0;
	
	
}

#look06 .imgcont{
	overflow: auto;
	position: relative;
	
}

#look06 .imgcont img{
	width: 100%;
	height: auto;
	display: block;
	
	margin: 0 0 0 0;
	
	
}

#look06 .credit{
	float: right;
	margin: 20px 5% 0 0;
	position: relative;
}

#look06 .credit .toggle_btn{
	display: block;
	float: right;
	margin: 0 0 20px 0;
}


#look06 .credit_txt{
	position: relative;
	overflow: auto;
	display: none;
	max-width: 400px;
	clear: both;
}




#look07{
	width: 100%;
	position: relative;
	display: block;
	margin: 200px auto 0 auto;
	padding: 0;
	clear: both;
	
	
}

#look07 .num{
	width: 44px;
	position: relative;
	display: block;
	margin: 0 0 20px 0;
	
}

#look07 .imgcont{
	overflow: auto;
	position: relative;
	
}

#look07 .imgcont img{
	width: 100%;
	height: auto;
	display: block;
	float: none;;
	margin: 0 0 10px 0;
	
	
}

#look07 .imgcont img:last-child{
	margin: 0 0 0 0;
}
#look07 .credit{
	float: right;
	margin: 20px 5% 0 0;
	position: relative;
}

#look07 .credit .toggle_btn{
	display: block;
	float: right;
	margin: 0 0 20px 0;
}


#look07 .credit_txt{
	position: relative;
	overflow: auto;
	display: none;
	max-width: 400px;
	clear: both;
}






#look08{
	width: 100%;
	position: relative;
	display: block;
	margin: 200px auto 0 auto;
	padding: 0;
	clear: both;
	
	
}

#look08 .num{
	width: 44px;
	position: relative;
	display: block;
	margin: 0 0 20px 0;
	
}



#look08 .lookbg{
	background: #E5E5E5;
	width: 100%;
	overflow: auto;
	padding: 0;
	margin: 0;
	vertical-align: bottom;

}



#look08 .lookbg .lookbg_inner{
	width: 100%;
	display: block;
	margin: 0 0 0 0;
	padding: 0;
	vertical-align: bottom;
	overflow: auto;
	
}

#look08 .lookbg .lookbg_inner img{
	vertical-align: top;
}

#look08 .credit{
	float: right;
	margin: 20px 5% 0 0;
	position: relative;
}

#look08 .credit .toggle_btn{
	display: block;
	float: right;
	margin: 0 0 20px 0;
}


#look08 .credit_txt{
	position: relative;
	overflow: auto;
	display: none;
	max-width: 400px;
	clear: both;
}




#look09{
	width: 100%;
	position: relative;
	display: block;
	margin: 200px auto 0 auto;
	padding: 0;
	clear: both;
	
	
}

#look09 .num{
	width: 44px;
	position: relative;
	display: block;
	margin: 0 0 20px 0;
	
}



#look09 .lookbg{
	background: #E5E5E5;
	width: 100%;
	overflow: auto;
	padding: 0;
	margin: 0;
	vertical-align: bottom;

}



#look09 .lookbg .lookbg_inner{
	width: 100%;
	display: block;
	margin: 0;
	padding: 0;
	vertical-align: bottom;
	overflow: auto;
	
}

#look09 .lookbg .lookbg_inner img{
	vertical-align: top;
}

#look09 .credit{
	float: right;
	margin: 20px 5% 0 0;
	position: relative;
}

#look09 .credit .toggle_btn{
	display: block;
	float: right;
	margin: 0 0 20px 0;
}


#look09 .credit_txt{
	position: relative;
	overflow: auto;
	display: none;
	max-width: 400px;
	clear: both;
}






#look10{
	width: 100%;
	position: relative;
	display: block;
	margin: 200px auto 0 auto;
	padding: 0;
	clear: both;
	
	
}

#look10 .num{
	width: 44px;
	position: relative;
	display: block;
	margin: 0 0 20px 0;
	
}

#look10 .imgcont{
	overflow: auto;
	position: relative;
	
}

#look10 .imgcont img{
	width: 100%;
	height: auto;
	display: block;
	float: none;
	margin: 0 0 10px 0;
	
	
}

#look10 .imgcont img:last-child{
	margin: 0 0 0 0;
}
#look10 .credit{
	float: right;
	margin: 20px 5% 0 0;
	position: relative;
}

#look10 .credit .toggle_btn{
	display: block;
	float: right;
	margin: 0 0 20px 0;
}


#look10 .credit_txt{
	position: relative;
	overflow: auto;
	display: none;
	max-width: 400px;
	clear: both;
}




	
	
	
	

#fmain{
	position: relative;
	clear: both;
	display: none;
	margin: 300px 0 0 0;
}
	
	#fmain_sp{
	position: relative;
	clear: both;
		display: block;
	margin: 240px 0 0 0;
}
	
	
	
	

#fmain_sp .creditimg{
	position: absolute;
	display: block;
	z-index: 9999;

  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}


#cast{
	clear: both;
	width: 90%;
	margin: 100px auto 100px auto;
	text-align: center;
	font-size: 11px;
	line-height: 2em;
	padding: 50px 0 40px 0;
}

	
	#cast img{
		width: 74%;
		height: auto;
		margin: 0 13%;
		display: block;
	}

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


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


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


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

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


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

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


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


.footer{
	clear: both;
	width:100%;
	
	background: #F7F7F4;
	padding:20px 0;
	margin:0;
	text-align: center;
}


.footer a{
	display: block;
	line-height: 1.8em;
	margin: 0 0 0 0;
	font-size: 16px;
	font-weight: 700;
	color: #333333;
	
	
}

.copyright{
	display: block;
	text-align: center;
	margin: 20px 0 0 0;
	font-size: 10px;
}

	
	
	
}