@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css?family=Sawarabi+Mincho&display=swap&subset=japanese');
@import url('https://fonts.googleapis.com/css?family=Cardo:400,700&display=swap');
@import url('https://fonts.cdnfonts.com/css/old-english-five');
html, body, header, nav, ul, li, p, a, div, img, dd, dt, dl, h1, h2, h3, h4, h5, h6 {
	padding: 0;
	margin: 0;
	list-style: none;
	text-decoration: none;
	box-sizing: border-box;
}

body{
	overflow-x: unset;
}

.clearfix:before, .clearfix:after {
	content: ' ';
	display: table;
	clear: both;
}

.blog_inner p{
margin-bottom: 0.5em;	
}

.blog_inner ul{
margin-bottom: 0;
margin-left: 0;
}

#lookbook .btn {
  display: inline-block;
  padding: 13px 20px;
  color: #fff;
  text-decoration: none;
  position: relative;
  background: transparent;
  border: 1px solid #e1e1e1;
  font: 12px/1.2 "Oswald", sans-serif;
  letter-spacing: 0.4em;
  text-align: center;
  text-indent: 2px;
  text-transform: uppercase;
  transition: color 0.1s linear 0.05s;
}

#lookbook .btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e1e1e1;
  z-index: 1;
  opacity: 0;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
}

#lookbook .btn::after {
  transition: border 0.1s linear 0.05s;
}

#lookbook .btn .btn-inner {
  position: relative;
  z-index: 2;
}

#lookbook .btn:hover {
  color: #373737;
  transition: color 0.1s linear 0s;
}

#lookbook .btn:hover::before {
  top: 0;
  height: 100%;
  opacity: 1;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
}

#lookbook .btn:hover::after {
  border-color: #373737;
  transition: border 0.1s linear 0s;
}

#lookbook .slideshow {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 1;
}

#lookbook .slideshow .slideshow-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#lookbook .slideshow .slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#lookbook .slideshow .slide {
  display: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#lookbook .slideshow .slide.is-active {
  display: block;
}

#lookbook .slideshow .slide.is-loaded {
  opacity: 1;
}

#lookbook .slideshow .slide .caption {
  padding: 0 100px;
}

#lookbook .slideshow .slide .image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  z-index: 1;
  background-size: cover;
  image-rendering: optimizeQuality;
}

#lookbook .slideshow .slide .image-container::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

#lookbook .slideshow .slide .image {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

#lookbook .slideshow .slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

#lookbook .slideshow .slide .title {
  margin: 0 auto 15px;
  max-width: 1000px;
  font: 300 50px/1.2 "Oswald", sans-serif;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

#lookbook .slideshow .slide .text {
  margin: 0 auto;
  max-width: 1000px;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.15rem;
}

#lookbook .slideshow .slide .btn {
  margin: 15px 0 0;
  border-color: #fff;
}

#lookbook .slideshow .slide .btn::before {
  background: #fff;
}

#lookbook .slideshow .pagination {
  position: absolute;
  bottom: 35px;
  left: 0;
  width: 100%;
  height: 12px;
  cursor: default;
  z-index: 2;
  text-align: center;
}

#lookbook .slideshow .pagination .item {
  display: inline-block;
  padding: 15px 5px;
  position: relative;
  width: 46px;
  height: 32px;
  cursor: pointer;
  text-indent: -999em;
  z-index: 1;
}

#lookbook .slideshow .pagination .item + .page {
  margin-left: -2px;
}

#lookbook .slideshow .pagination .item::before {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  left: 5px;
  width: 36px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.2s ease;
}

#lookbook .slideshow .pagination .item::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  left: 5px;
  height: 2px;
  width: 0;
  background: #fff;
  z-index: 2;
  transition: width 0.2s ease;
}

#lookbook .slideshow .pagination .item:hover::before,
#lookbook .slideshow .pagination .item.is-active::before {
  background-color: #fff;
}

#lookbook .slideshow .arrows .arrow {
  margin: -33px 0 0;
  padding: 20px;
  position: absolute;
  top: 50%;
  cursor: pointer;
  z-index: 3;
}

#lookbook .slideshow .arrows .prev {
  left: 30px;
}

#lookbook .slideshow .arrows .prev:hover .svg {
  left: -10px;
}

#lookbook .slideshow .arrows .next {
  right: 30px;
}

#lookbook .slideshow .arrows .next:hover .svg {
  left: 10px;
}

#lookbook .slideshow .arrows .svg {
  position: relative;
  left: 0;
  width: 14px;
  height: 26px;
  fill: #fff;
  transition: left 0.2s ease;
}


#lookbook {
	width: unset;
	margin:0 auto;
	padding:0;
	font-size:16px;
	font-weight:normal;
	font-family: 'Noto Sans JP', sans-serif;
	overflow: hidden;
	text-align: center;
	background: #000;
	color: #fff;
}

#lookbook img {
	max-width:100%;
	height:auto;
	border: none;
	vertical-align: bottom;
}

#lookbook p{
	font-size: 0.95em!important;
	margin-top: 0!important;
   text-align: center;
	font-family: "Oswald", sans-serif;
}

#lookbook h1,
#lookbook h2,
#lookbook h3,
#lookbook h4,
#lookbook h5{
color: #fff;
text-align:center;
font-weight:normal;
background: none;
border: none;
/*font-family: 'DIN-Condensed', sans-serif;
font-family:'Old English Five';*/
font-family: "Oswald", sans-serif;
font-optical-sizing: auto;
}

#lookbook h1{
	font-size: 3em;
	line-height: 130%;
	margin-bottom: 20px;
	letter-spacing: 2px;
	margin: 50px auto;
}

#lookbook h1 span{
display: block;
font-family: 'DIN-Condensed', sans-serif;
font-weight: normal;
font-size: 0.35em;
}
	
	
#lookbook h2{
	font-size: 2em;
	font-weight: normal;
}

#lookbook h4{
	padding: 2%;
	/*background: #1a1a1a;*/
	text-align: left;
	letter-spacing: 0.1em;
     text-transform: uppercase;
	 font: 300 45px/1.2 "Oswald", sans-serif;
}

#lookbook h4 span{
	font-size: 0.55em;
}

#lookbook .lookbook_wrap{
	width:100%!important;
	max-width:800px;
	margin:0 auto;
	padding:0;
	text-align: center;
    position: relative;
}

#lookbook .flex{
 display: -webkit-flex; /* Safari */
 display: flex;
 -webkit-flex-wrap: wrap; /* Safari */
 flex-wrap: wrap;
 width: 100%;
 position: relative;
}

#lookbook p.main_text{
	margin: 0 auto 20px!important;
	text-align: center;
	line-height: 180%;
	display: block!important;
}

#lookbook p.main_text2{
	margin: 30px auto 20px!important;
	text-align: left;
	line-height: 180%;
	display: block!important;
	width: 80%;
}

#lookbook p.main_text2 span{
font-weight: bold;
font-size: 1.3em;
display: block;
}



#lookbook .img-frame{
   position: relative;
   width: 100%;
   height: 1000px;
   overflow: hidden;
   margin: 0 auto;
}

#lookbook .img-01,
#lookbook .img-02,
#lookbook .img-03,
#lookbook .img-04,
#lookbook .img-05,
#lookbook .img-06,
#lookbook .img-07,
#lookbook .img-08,
#lookbook .img-09,
#lookbook .img-10,
#lookbook .img-11,
#lookbook .img-12,
#lookbook .img-13,
#lookbook .img-14,
#lookbook .img-15{
   position: absolute;
   top:0;
   left:0;
   width: 100%;
   height: 100%;
   background-position: center;
   background-repeat: no-repeat;
 background-size: contain;
}
#lookbook .img-01{
   background-image: url('https://www.peetonline.com/images/mcd/2026/lookbook/styling/01/05.jpg');
   animation: slide-animation-01 24s infinite;
}
#lookbook .img-02{
   background-image: url('https://www.peetonline.com/images/mcd/2026/lookbook/styling/01/06.jpg');
   animation: slide-animation-02 24s infinite;
}
#lookbook .img-03{
   background-image: url('https://www.peetonline.com/images/mcd/2026/lookbook/styling/01/07.jpg');
   animation: slide-animation-03 24s infinite;
}

#lookbook .img-04{
   background-image: url('https://www.peetonline.com/images/mcd/2026/lookbook/styling/02/05.jpg');
   animation: slide-animation-01 24s infinite;
}
#lookbook .img-05{
   background-image: url('https://www.peetonline.com/images/mcd/2026/lookbook/styling/02/06.jpg');
   animation: slide-animation-02 24s infinite;
}
#lookbook .img-06{
   background-image: url('https://www.peetonline.com/images/mcd/2026/lookbook/styling/02/07.jpg');
   animation: slide-animation-03 24s infinite;
}

#lookbook .img-07{
   background-image: url('https://www.peetonline.com/images/mcd/2026/lookbook/styling/03/04.jpg');
   animation: slide-animation-01 24s infinite;
}
#lookbook .img-08{
   background-image: url('https://www.peetonline.com/images/mcd/2026/lookbook/styling/03/05.jpg');
   animation: slide-animation-02 24s infinite;
}
#lookbook .img-09{
   background-image: url('https://www.peetonline.com/images/mcd/2026/lookbook/styling/03/06.jpg');
   animation: slide-animation-03 24s infinite;
}

#lookbook .img-10{
   background-image: url('https://www.peetonline.com/images/mcd/2026/lookbook/styling/04/05.jpg');
   animation: slide-animation-01 24s infinite;
}
#lookbook .img-11{
   background-image: url('https://www.peetonline.com/images/mcd/2026/lookbook/styling/04/06.jpg');
   animation: slide-animation-02 24s infinite;
}
#lookbook .img-12{
   background-image: url('https://www.peetonline.com/images/mcd/2026/lookbook/styling/04/07.jpg');
   animation: slide-animation-03 24s infinite;
}

#lookbook .img-13{
   background-image: url('https://www.peetonline.com/images/mcd/2026/lookbook/styling/05/05.jpg');
   animation: slide-animation-01 24s infinite;
}
#lookbook .img-14{
   background-image: url('https://www.peetonline.com/images/mcd/2026/lookbook/styling/05/06.jpg');
   animation: slide-animation-02 24s infinite;
}
#lookbook .img-15{
   background-image: url('https://www.peetonline.com/images/mcd/2026/lookbook/styling/05/07.jpg');
   animation: slide-animation-03 24s infinite;
}

@keyframes slide-animation-01 {
    0% {opacity: 1; transform: scale(1.0);}
  30% {opacity: 1;}
  40% {opacity: 0; transform: scale(1.15);}
  90% {opacity: 0}
100% {opacity: 1; transform: scale(1.0);}
}
@keyframes slide-animation-02 {
    0% {opacity: 0;}
  30% {opacity: 0; transform: scale(1.1);}
  40% {opacity: 1;}
  60% {opacity: 1;}
  70% {opacity: 0; transform: scale(1.0);}
100% {opacity: 0;}
}
@keyframes slide-animation-03 {
    0% {opacity: 0;}
  60% {opacity: 0;  transform: scale(1.0);}
  70% {opacity: 1;}
  90% {opacity: 1;}
100% {opacity: 0; transform: scale(1.1);}
}

#lookbook section{
	background: #000!important;
}

#lookbook section.style{
	width: 100%;
	margin: 100px auto;
	max-width: 800px;
}

#lookbook section.style .mainimage{
	position: relative;
	width: 100%;
}

#lookbook section.style .subimage{
	margin: 80px auto;
	width: 100%;
}

/*STYLE1*/

#lookbook section.style1{
    max-width: 100%!important;
}

#lookbook section.style1 .mainimage{
	width: 100%;
}

#lookbook section.style1 .mainimage div{
	width: 100%;
}

/*#lookbook section.style1 h2{
	position: absolute;
	bottom: 10%;
	right: 6%;
	color: white;
}*/

#lookbook section.style1 .subimage{
	width: 100%;
    position: relative;
    background: linear-gradient(#000 0% 10%, #1a1a1a 10% 90%, #000 90% 100%)
}

#lookbook section.style1 .subimage .subimage1{
	width: 75%;
    margin-left: 0;
    padding-bottom: 30%;
}

#lookbook section.style1 .subimage .subimage2{
	width: 55%;
    position: absolute;
    bottom: 0;
    right: 0;
}

#lookbook section.style1 .mainimage2 {
	width: 100%;
    margin-left: 0;
}

/*STYLE2*/

#lookbook section.style2 .mainimage{
    width: 100%;
    margin-bottom: 50px;
    background: url(https://www.peetonline.com/images/mcd/2026/lookbook/back.png) no-repeat;
	background-size: contain;
	background-position: center;
}

#lookbook section.style2 .mainimage .mainimage-1{
	width: 40%;
    margin-left: 3%;
    position: relative;
    z-index: 1;
    /*padding-top: 30px;*/
	 padding-top: 0;
}

#lookbook section.style2 .mainimage .mainimage-2{
	width: 75%;
    margin-left: 20%;
    margin-top: -8%;
    z-index: 0;
    position: relative;
}

#lookbook section.style2 .mainimage .mainimage-3{
	width: 55%;
    margin-left: 0;
    margin-top: -16%;
    z-index: 1;
    position: relative;
     /*padding-top: 30px;*/
	 padding-top: 0;
	
}

/*#lookbook section.style2 h2{
	position: absolute;
	top: 6%;
	right: 20%;
}*/

#lookbook section.style2 .mainimage2{
	width: 90%;
	margin: auto;
}

/*STYLE3*/

#lookbook section.style3 .mainimage{
	position: relative;
	width: 100%;
}

#lookbook section.style3 .subimage{
    position: relative;
}

#lookbook section.style3 h2{
	position: absolute;
	bottom: 15%;
	right: 8%;
    background: #1a1a1a;
}

#lookbook section.style3 .subimage1{
	width: 55%;
    margin-left: 42%;
    position: relative;
    z-index: 1;
}

#lookbook section.style3 .subimage2{
	width: 55%;
    margin-left: 3%;
    margin-top: -15%;
}

/*STYLE4*/

#lookbook section.style4 .mainimage .mainimage1{
	width: 100%;
	position: relative;
}

#lookbook section.style4 .mainimage .mainimage1 div{
  width: 80%;
  margin: auto;
}

/*#lookbook section.style4 h2{
    position: absolute;
    top: 10%;
    left: 15%;
	color: black;
}*/

#lookbook section.style4 .subimage{
	margin: 50px auto 80px;
}

#lookbook section.style4 .subimage1{
	width: 60%;
	margin:auto;
}

#lookbook section.style4 .subimage2{
	width: 75%;
	margin-left: 5%;
	margin-top: 40px;
}


/*STYLE5*/

#lookbook section.style5 .mainimage1{
	width: 100%;
    position: relative;
}

#lookbook section.style5 .mainimage div{
	width: 100%;
    position: relative;
}

#lookbook section.style5 .subimage{
    width: 100%;
    position: relative;
    background: url(https://www.peetonline.com/images/mcd/2026/lookbook/back2.png) no-repeat;
	background-size: contain;
	background-position: center;
}

#lookbook section.style5 .subimage .subimage1{
	width: 55%;
    margin-left: 3%;
    padding-bottom: 25%;
}

#lookbook section.style5 .subimage .subimage2{
	width: 47%;
    position: absolute;
    bottom: 0;
    right: 3%;
}

#lookbook section.style5 .mainimage2{
	width: 90%;
    margin: auto;
}


/*STYLE6*/

#lookbook section.style6 .mainimage1{
	width: 100%;
    position: relative;
}

#lookbook section.style6 .mainimage div{
	width: 100%;
    position: relative;
}

#lookbook section.style6 .subimage{
    width: 100%;
    position: relative;
}

#lookbook section.style6 .subimage .subimage1{
	width: 50%;
    margin-left: 3%;
    padding-bottom: 25%;
}

#lookbook section.style6 .subimage .subimage2{
	width: 50%;
    position: absolute;
    bottom: 0;
    right: 3%;
}

#lookbook section.style6 .mainimage2{
	width: 95%;
    margin: 25px auto;
}

#lookbook section.style6 .slide_area{
  position: relative;
  width: 80%;
  z-index: 5;
  margin: 140px auto 0;
}

#lookbook section.style6 .slide_area .slide{
  position: relative;
  -webkit-animation: intro_slide 12s linear infinite;
  animation: intro_slide 12s linear infinite;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

#lookbook section.style6 .slide_area .slide01{
  position: relative;
  z-index: 3;
  transform: rotate(-4.37deg);
}

#lookbook section.style6 .slide_area .slide02{
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  transform: rotate(-0.5deg);
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

#lookbook section.style6 .slide_area .slide03{
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transform: rotate(3.65deg);
  -webkit-animation-delay: 8s;
  animation-delay: 8s;
}


@keyframes intro_slide {
  0% {
    z-index: 3;
    opacity: 1;
  }

  28% {
    opacity: 1;
  }

  33.33% {
    z-index: 3;
    opacity: 0;
  }

  34% {
    z-index: 1;
  }

  38.66% {
    opacity: 1;
  }

  66.65% {
    z-index: 1;
  }

  66.66% {
    z-index: 2;
  }

  99.99% {
    z-index: 2;
  }

  100% {
    z-index: 2;
  }
}

/*STYLe7*/
#lookbook section.style7 .carousel { 
  perspective: 1200px; 
  padding: 4% 14% 10%;
  font-size:0; 
  margin-bottom: 3rem; 
}
#lookbook section.style7 figure.spinner { 
  transform-style: preserve-3d; 
  height: 300px; 
  transform-origin: 50% 50% -500px; 
  transition: 1s; 
} 
#lookbook section.style7 figure.spinner img { 
  width: 100%; max-width: 325px; 
  position: absolute; left: 22%;
  transform-origin: 50% 50% -500px;
  outline:1px solid transparent; 
}
#lookbook section.style7 figure.spinner img:nth-child(1) { transform:rotateY(0deg); 
}
#lookbook section.style7 figure.spinner img:nth-child(2) { transform: rotateY(-45deg); }
#lookbook section.style7 figure.spinner img:nth-child(3) { transform: rotateY(-90deg); }
#lookbook section.style7 figure.spinner img:nth-child(4) { transform: rotateY(-135deg); }
#lookbook section.style7 figure.spinner img:nth-child(5){ transform: rotateY(-180deg); }
#lookbook section.style7 figure.spinner img:nth-child(6){ transform: rotateY(-225deg); }
#lookbook section.style7 figure.spinner img:nth-child(7){ transform: rotateY(-270deg); }
#lookbook section.style7 figure.spinner img:nth-child(8){ transform: rotateY(-315deg); }
#lookbook section.style7 .carousel ~ span { 
  color: #fff; 
  margin: 5%; 
  display: inline-block; 
  text-decoration: none; 
  font-size: 2rem; 
  transition: 0.6s color; 
  position: relative; 
  margin-top: 0rem; 
  border-bottom: none; 
  line-height: 0; }
#lookbook section.style7 .carousel ~ span:hover {
color: #888; cursor: pointer;
}

#lookbook section.style .textaria,
#lookbook section.style .textaria .comment{
	margin: 50px auto!important;
	width: 90%;
	max-width: 600px;
}

#lookbook p.itemname{
	width: 100%;
	margin: 20px auto 10px!important;
	font-size: 1.1em!important;
}

#lookbook p.price,
p.price{
	width: 100%;
	display: block;
	font-size: 0.8em!important;
}

#lookbook p.price span,
p.price span{
	color: #C52F32;
	font-size: 1.3em!important;
	font-weight: bold;
}

#lookbook section.item2{
	width: 100%;
	max-width: 800px;
	margin: 30px auto 0;
	text-align: center;
}


#lookbook section.item2 img{
	width: 100%;
}
#lookbook section.item2 .flex div {
	flex-basis: 50%;
	padding: 0%;
}

#lookbook p.itemname2 {
	font-size: 0.95em!important;
	margin: 0px auto 0px!important;
	font-weight: 600;
	text-align: center;
}

#lookbook p.price2 {
	font-size: 1.3em!important;
	margin: 10px auto!important;
	text-align: center;
}

/* 購入ボタン */

#lookbook section.style .otheritem,
.itemlist a,
#lookbook .itemlist a,
#lookbook .itemlist .coming{
	display: block;
	width: 100%;
	max-width: 100px;
	padding: 12px 0;
	text-align: center;
	border: 1px solid #fff;
	background: #000;
	color: #FFF;
	/*-webkit-transition: 5s;
	-moz-transition: 5s;
	-o-transition: 5s;
	-ms-transition: 5s;*/
	transition: 0.6s;
	margin: 0 auto;
}

#lookbook section.style .otheritem{
    font-family: 'DIN-Condensed', sans-serif;
    font-size: 2em;
    text-align: center;
    max-width: 500px;
    width: 65%;
}

#lookbook section.style .otheritem:hover,
.itemlist a:hover,
#lookbook .itemlist a:hover{
	background: #FFF;
	text-align: center;
	border: 1px solid #000;
	color: #000;
}

#lookbook .itemlist,
.itemlist{
 font-size: 0.95em!important;
 text-align: left;
 display: -webkit-flex; /* Safari */
 display: flex;
 -webkit-flex-wrap: wrap; /* Safari */
 flex-wrap: wrap;
 width: 100%;
 max-width: 600px;
 margin: 10px 0;
 font-family: 'Noto Sans JP', sans-serif;
}

#lookbook .itemlist{
 font-size: 0.95em!important;
}

.itemlist div:first-child{
	width: 75%;
	padding: 3px 1% 3px 0;
}

.itemlist div:last-child{
	width: 25%;
	display: flex;
	align-items: center;
	padding-right: 1%;
}



/* profile */

#lookbook section.profile{
	width: 85%;
	max-width: 500px;
	margin: 0 auto 100px;
}

#lookbook section.profile div:first-child{
	flex-basis: 30%;
}

#lookbook section.profile div:last-child{
	flex-basis: 70%;
	padding-left: 15%;
	text-align: left;
	line-height: 150%;
	margin: auto;
}

#lookbook section.profile p.modelname{
	font-weight: 500;
	font-size: 2em!important;
	font-family: 'DIN-Condensed', sans-serif;
	color: #fff;
	line-height: 100%;
	text-align: left;
}

#lookbook section.profile p.proftext{
	font-size: 0.8em!important;
	text-align: left;
}

#lookbook section.profile div:last-child div{
	margin: 5px 0 0;
	width: 100%;
	padding-left: 0!important;
}

#lookbook section.profile div:last-child p.icon{
	margin: 0 auto!important;
	text-decoration: underline;
	font-size: 0.75em!important;
	flex-basis: 50%;
	text-align: left;
}

#lookbook section.profile a{
	 text-decoration: underline;
	 color: #fff;
}

#lookbook .profile div:last-child p.icon img{
	width: 20%;
	max-width: 20px;
	vertical-align: middle;
	padding-right: 2%;
	display: inline-block!important;
}

/* 回遊リンク */

#lookbook .Banner4 {
	text-align: center;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 100px;
}

#lookbook .Banner4 h3 {
	font-size: 30px !important;
	margin: 50px auto;
	padding: 20px 0;
	border-top: double #fff;
	border-bottom: 1px solid #fff;
	color: #fff;
	letter-spacing: 3px;
}

#lookbook .Banner4 ul {
	display:inline;
}

#lookbook .Banner4 ul li {
	display:inline-block;
	width: 47% !important;
	margin: 1% 1% 2% 1%;
}

.featherlight-content{
	width: 100%;
	max-width: 600px!important;
	font-family: 'Noto Sans JP','DIN-Condensed', sans-serif;
    padding: 40px!important;
    border-bottom: 0!important;
}

.featherlight-content p{
	font-size: 1em!important;
    color: #666;
}

.featherlight-content p.colorname{
    width: 100%;
    border-bottom: 1px solid #666666;
    font-family: 'DIN-Condensed', sans-serif;
    font-size: 1.8em!important;
    color: #555555;
}

.featherlight-content .name{
	width: 80%;
	margin: 20px auto;
}

.featherlight-content a:hover{
	text-decoration: none!important;
}

.featherlight-content a {
	outline:none!important;
}

@media only screen and (min-width:749px){

.pc_none{
	display: none!important;
}

}

	
/* profile */

#lookbook section.profile .flex div{
	padding: 0 4%;
}

/* ヘッダー・フッターの崩れを直す */

#news_detail .detail{
	width:100%!important;
}

#news_detail .detail .head{
	width: 1000px!important;
	margin: 0 auto 50px!important;
}

#news_detail .detail .content p:first-child{
	margin: 0 auto;
	max-width: 1000px!important;
}

#topicpath{
	width: 1168px;
	margin: 0 auto;
}

.paging{
	width: 1000px;
	margin: 0 auto;
}
.item_category_links{
	width: 1168px;
	margin: 100px auto 0;
}

@media screen and (max-width:748px) {

.sp_none {
	display:none;
}
	
#lookbook .slideshow .slide .title{
font:300 6vw/2 "Oswald", sans-serif!important;
}	
	
#lookbook .slideshow .pagination{
bottom:45vh!important;
}		

#lookbook .slideshow .slide .image-container,
#lookbook .slideshow .slide-content {
height: 60%;
}	

#lookbook .slideshow .pagination .item{
width: 40px;
left:0;
}		
	
#lookbook .slideshow {
overflow:  unset;
position: unset;
  width: 100%;
  height: 100vh;
  z-index: 1;
  margin-bottom: -70vw;
}	
		
#lookbook .img-frame{
margin-top:-70vw;
}
	
#lookbook .slideshow .arrows .arrow {
margin: -200px 0 0;
}	
				
#lookbook h1{
font-size: 8vw;
line-height: 130%;
width: 90%;
margin: 7vw auto 5.5vw;
}

#lookbook h1 span{
	font-size: 3vw;
}	
	
#lookbook section.style h2{
	font-size: 4.5vw;
	font-weight: normal;
}
	
#lookbook h4{
	font-size: 6.5vw;
	padding: 5%;
}

#lookbook p,
#lookbook div{
	font-size: 3vw!important;
	line-height: 180%;
}

#lookbook p.main_text{
	display: block!important;
	width: 90%;
	margin: 14.125vw auto 2.25vw!important;
}
	
#lookbook p.main_text2{
	display: block!important;
	width: 90%;
	margin: 3vw auto!important;
}	

#lookbook section.style{
	margin: 20.375vw auto;
}

#lookbook section.style1{
	margin: 14.125vw auto 20.375vw;
}

#lookbook section.style .subimage{
	margin: 10.125vw auto;
}
	
#lookbook section.style4 .subimage{
	margin: 8.5vw auto!important;
}

#lookbook section.style6 .slide_area {	
margin: 14.5vw auto 75vw;
}	
	

		
	
/* 3D完全停止 */
  #lookbook section.style7 figure.spinner {
    transform: none !important;
  }

  /* 横スクロール化（8枚見せる） */
  #lookbook section.style7 figure.spinner {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 0 10px;
	 height: auto;
	  
  }

  #lookbook section.style7 figure.spinner img {
    position: relative !important;
    transform: none !important;
    left: 0 !important;
    display: block;
    width: 95%;
    max-width: fit-content;
    flex-shrink: 0;
	  margin-bottom: 35vw;
  }

				
#lookbook section.style7 .carousel ~ span { 
display: none;
}		
	
#lookbook section.style .textaria,
#lookbook section.style .textaria .comment{
	margin: -60.25vw auto 7vw!important;
}

#lookbook .mainitemlist a{
	margin-bottom: 9.125vw;
}

#lookbook .itemlist div{
	font-size: 3vw!important;
	line-height: 150%!important;
}

p.price,
#lookbook p.price,
#lookbook p.model{
	font-size: 2.8vw!important;
	line-height: 180%;
}

#lookbook .itemlist div:first-child{
	width: 82%;
	padding: 1vw 1% 1vw 0;
}

#lookbook .itemlist div:last-child{
	width: 18%;
}

#lookbook section.profile .flex div h5{
	font-size: 4.25vw;
	margin: 15px auto 5px;
}

#lookbook section.profile .flex div p.text{
	font-size: 2.78vw!important;
	margin: 10px auto 0!important;
}

#lookbook .itemlist .coming{
	line-height: 100%;
}

.featherlight-content{
    padding: 5% 15px!important;
    font-size: 3.125vw!important;
}

.featherlight-content p.colorname{
    font-size: 5.5vw!important;
}
	
#lookbook .Banner4 h3	{
    font-size: 5vw!important;
}
		
	
	
.itemlist a{
	padding:8px 0;
}
	
#lookbook .itemlist, .itemlist{
	font-size: 0.85em!important;
}	
	
#lookbook section.profile div:last-child{
	padding-left: 5%;
}	
	

/* 100%表示用 */

#news_detail .detail{
	margin: 0 auto;
}

/* 回遊リンク */

#lookbook .Banner4 {
	text-align: center;
	width: 100%;
}

#lookbook .Banner4 ul{
	margin: 0 auto;
	width: 95%;
}

#lookbook .Banner4 ul li {
	width: 95% !important;
	margin: 0 0 5% 0 !important;
}

/* ヘッダー */

#news_detail .detail .content p:first-child img{
	display: none;
}

#lookbook .header{
	position: relative;
	height: 130vw;
}

#lookbook .header .title{
	position: absolute;
	bottom: 2%;
	left: 32%;
	width: 50%;
}

}