/*共通設定*/
#look-book {
/*
	background: url(../img/mimpi.jpg) no-repeat;
	height: 14000px;
*/
	background-size: 100%;
	font-size: 14px;
	text-align: center;
	line-height: 1.7rem;
	color: #5b5b5b;
	width: 799px;
	margin: auto;
}
#look-book .mimpi .dpy-none {
	display: none;
}
#look-book .flex{
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-flow: row wrap;
	flex-wrap: wrap;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	flex-wrap:wrap;
}


/*スタイル設定*/
#look-book .mimpi .main-visual {
	width: 100%;
}
#look-book .mimpi .main-visual img {
	width: 100%;
}
#look-book .mimpi .block-ttl {
	position: relative;
	margin-bottom: 100px;
}
#look-book .mimpi .block-ttl h1 {
	background: url(../img/mimpi_logo.png) no-repeat;
	background-size: 75%;
	background-position: center;
	height: 70px;
	width: 50%;
	margin: 97px auto 69px;
}
#look-book .mimpi .dsc {
	font-size: 16px;
	line-height: 2.4rem;
}
#look-book .mimpi .dsc .memo {
	font-size: 10px;
}


/* img-list */
#look-book .mimpi .img-list {
	padding-top: 27px;
	position: relative;
}
#look-book .mimpi .img-list .group {
	position: relative;
}
#look-book .mimpi .img-list .overlap {
	height: 950px;
	margin-bottom: 145px;
}
#look-book .mimpi .img-list img {
	width: 100%;
}
#look-book .mimpi .img-list .image01 {
	width: 81%;
	margin: 0 auto 118px;
}
#look-book .mimpi .img-list .image02 {
	margin: 0px auto 128px;
}
#look-book .mimpi .img-list .image03 {
	width: 90%;
	margin: 0px auto 54px;
}
#look-book .mimpi .img-list .image04 {
	width: 90%;
	margin: 0px auto 125px;
}
#look-book .mimpi .img-list .image05 {
	width: 74%;
	margin: 0px 0 40px 43px;
}
#look-book .mimpi .img-list .image06 {
	width: 81%;
	position: absolute;
	z-index: 3;
	right: 40px;
}
#look-book .mimpi .img-list .image07 {
	width: 55%;
	position: absolute;
	top: 344px;
	z-index: 2;
	left: 46px;
}
#look-book .mimpi .img-list .image08 {
	width: 42%;
	position: absolute;
	z-index: 1;
	top: 707px;
	right: 41px;
}
#look-book .mimpi .img-list .image09 {
	margin: 0 0 123px 0;
}
#look-book .mimpi .img-list .image10 {
    width: 74%;
    margin: 0 auto 119px;
}
#look-book .mimpi .img-list .image11 {
    margin: 0px auto 80px;
}
#look-book .mimpi .img-list .image12 {
    width: 74%;
    margin: auto;
}


/* credit */
#look-book .mimpi .credit {
	color: #5b5b5b;
	font-size: 14px;
	text-align: center;
	padding: 100px 0 ;
	position: relative;
	letter-spacing: 0.08rem;
}
#look-book .mimpi .credit .credit-list span {
	font-weight: bold;	
}
#look-book .mimpi .credit .credit-list {
	font-size: 14px;
	font-family: Century Gothic, 'Century Gothic' !important;
	font-weight: normal;
	line-height: 2rem;
	list-style: none;
	padding: 0 0 74px;
}
.item-list-container {
	padding-bottom: 20px;
	text-align: left;
	margin: 0 6px;
}
.item-list-container .item .info {
	height: 20px;
}
#look-book .mimpi .item-list-container .item .item-properties {
	display: none;
}
#look-book .mimpi .item-list-container .item .name {
	height: 42px;
}


/* btn */
#look-book .credit .btn {
	background: url(../img/btn.jpg) no-repeat;
	background-size: 64%;
	background-position: center;
	height: 96px;
	margin: auto;
}
#look-book .credit .btn a {
	width: 512px;
	height: 96px;
	text-indent: -9999px;
	display: block;
	transition : 0.4s;
	margin: auto;
}
#look-book .credit .btn a:hover {
	background: #fff;
	transition : 0.4s;
	opacity: 0.2;
}


/*以下フェードイン表示の指定*/

/* 一覧遅延指定 */
.fadeIn {
  opacity: 0;
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.7s ease-in, -webkit-transform 1s ease;
  transition: opacity 0.7s ease-in, -webkit-transform 1s ease;
  -o-transition: opacity 0.7s ease-in, transform 1s ease;
  transition: opacity 0.7s ease-in, transform 1s ease;
  transition: opacity 0.7s ease-in, transform 1s ease, -webkit-transform 1s ease;
}

.fadeIn.inview {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.fadeIn.delay03s {
  -webkit-transition-delay: 0.3s;
       -o-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.fadeIn.delay05s {
  -webkit-transition-delay: 0.5s;
       -o-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.fadeIn.delay07s {
  -webkit-transition-delay: 0.7s;
       -o-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.fadeIn.delay09s {
  -webkit-transition-delay: 0.9s;
       -o-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.fadeIn.delay11s {
  -webkit-transition-delay: 1.1s;
       -o-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

.fadeIn.delay13s {
  -webkit-transition-delay: 1.3s;
       -o-transition-delay: 1.3s;
          transition-delay: 1.3s;
}

.fadeIn.delay15s {
  -webkit-transition-delay: 1.5s;
       -o-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

.fadeIn.delay20s {
  -webkit-transition-delay: 2s;
       -o-transition-delay: 2s;
          transition-delay: 2s;
}

.fadeIn.delay26s {
  -webkit-transition-delay: 2.6s;
       -o-transition-delay: 2.6s;
          transition-delay: 2.6s;
}
.fadeIn.delay40s {
  -webkit-transition-delay: 4s;
       -o-transition-delay: 4s;
          transition-delay: 4s;
}
 
/*ブランドコンセプト遅延の指定*/
.fadein {
    opacity: 0;
    animation: fadein 1s ease forwards;
}
@keyframes fadein {
    100% {  opacity: 1;}
}

.txt01 {animation-delay: 0.5s;}
.txt02 {animation-delay: 0.8s;}
.txt03 {animation-delay: 1.1s;}
.txt04 {animation-delay: 1.4s;}
.txt05 {animation-delay: 1.8s;}
.txt06 {animation-delay: 2s;}
.txt07 {animation-delay: 1.7s;}
.txt08 {animation-delay: 1.9s;}
.txt09 {animation-delay: 2.3s;}
.txt10 {animation-delay: 2.6s;}
.txt11 {animation-delay: 2.9s;}
.txt12 {animation-delay: 3.3s;}
.txt13 {animation-delay: 3.6s;}
.txt14 {animation-delay: 3.9s;}
.txt15 {animation-delay: 4.1s;}
.txt16 {animation-delay: 4.3s;}
.txt17 {animation-delay: 4.6s;}
.txt18 {animation-delay: 5s;}
.txt19 {animation-delay: 5.3s;}
.txt20 {animation-delay: 5.6s;}
.txt21 {animation-delay: 5.9s;}
.txt22 {animation-delay: 6.3s;}
.txt23 {animation-delay: 6.6s;}
.txt24 {animation-delay: 6.9s;}
.txt25 {animation-delay: 7.3s;}
.txt26 {animation-delay: 7.6s;}
.txt27 {animation-delay: 7.9s;}
.txt28 {animation-delay: 8.3s;}
.txt29 {animation-delay: 8.6s;}
.txt30 {animation-delay: 8.9s;}
.txt31 {animation-delay: 9.3s;}

.fadein {
  opacity : 0;
  transform : translate(0, 30px);
  transition : all 1s;
}

.fadein.active{
  opacity : 1;
  transform : translate(0, 0);
}


