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

/***
* common.css
*/

/* reset */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
main, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  vertical-align: top;
  font-size:0;
  line-height: 0;
}
a:focus,
button:focus{
  outline: none;
}
input{
  -webkit-appearance: none;
  border-radius: 0;
  outline:none;
}

sup,
sub{
  line-height: 1;
  vertical-align: baseline;
  position: relative;   
}
sup{ bottom: 5px; }
sub{ top: 0.5em; }

small{
  font-size:72.5%;
}

a{
  color: #000;
}

/* utility */

.floatL{
  float:left;	
}

.floatR{
  float:right;	
}

.clearBoth{
  clear:both;	
}

.clearfix:after{
  content:"."; 
  display:block; 
  height:0; 
  clear:both; 
  visibility:hidden;
}

.clearfix {display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix{ height:1%; }
.clearfix{ display:block; }
/* End hide from IE-mac */

.anti{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.transition{
  -webkit-transition-duration: 0.8s;
	-moz-transition-duration: 0.8s;
	-o-transition-duration: 0.8s;
	transition-duration: 0.8s;
}

::-moz-selection { opacity:0.1; background: #eee; }
::selection { opacity:0.1; background: #eee; }

sup{
  font-size:68.75%;
}

img{
  touch-callout:none;
  user-select:none;
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
}

.ja{
  font-family: a-otf-gothic-bbb-pr6n, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-feature-settings: "palt" 1;
}

.btn{
  background: #fff;
  border: 1px solid #000;
}

.comingSoon{
  opacity: 0.3;
}

.mbShort{
  margin-bottom: 10px !important;
}

.slick-slide{
  outline:none;
}

.fade_off {
  visibility: hidden;
  opacity: 0;
  transition-duration: 1s;
}

.fade_on {
  visibility: visible;
  opacity: 1;
  transition-duration: 1s;
}

/***
* common
*/

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

html,body{
  margin:0;
	height:100%;
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #000;
  background: #fff;
}

a{
  color: #000;
  text-decoration:underline;
}

a:hover{
  text-decoration:none;
}

a.btn{
  text-decoration:none;
  transition-duration: 0.5s;
}

a.btn:hover{
  border-radius: 20px;
  transition-duration: 0.5s;
}

#wrapper{
  width:100%;
  min-height:100%;
  height:auto !important;
  font-family: sans-serif;
  letter-spacing: 0.02em;
  height:100%;
  position:relative;
}

.fade_off{
  visibility: hidden;
  opacity: 0;
  transition-duration: 1s;
}

.fade_on{
  visibility: visible;
  opacity: 1;
  transition-duration: 1s;
}

/***
* common
*/

/* header */

header{
  width: 100%;
  height: 43px;
  background: #fff;
  position: fixed;
  z-index: 7777;
  transition-duration: 0.5s;
}

header.active{
/*  box-shadow: 0px 3px 3px -2px rgba(0,0,0,0.1);*/
  transition-duration: 0.5s;
}

#btnMenu{
  width: 40px;
  height: 40px;
  position: absolute;
  top: 6px;
  left: 20px;
}

.spinner {
  width: 45px;
  margin-top: 10px;
  text-align: center;
}

.spinner > div {
  width: 10px;
  height: 10px;
  margin-right: 5px;
  background-color: #000;
  border-radius: 100%;
  display: block;
  float: left;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

#btnMenu li:last-child{
  margin-right: 0;
}

#nav{
  width: 100%;
  height: 100%;
  padding-bottom: 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8888;
  background: #fff;
  font-size: 20px;
  line-height: 1.8;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
  box-shadow: 0px 3px 3px -3px rgba(0,0,0,0.1);
  z-index:3334;
  transform: translate3d(0,-100%,0);
	transition: all 800ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-webkit-transition: all 800ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
}

#nav.active{
  transform: translate3d(0,0,0);
	transition: all 800ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-webkit-transition: all 800ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
}

#btnNavClose{
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
  font-size: 20px;
  position: fixed;
  top: 15px;
  left: 20px;
  z-index: 9999;
  display: none;
}

#navInnerWrap{
  width: 934px;
  position: relative;
  top: 50%;
  left: 50%;
  margin-top: -40px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#navInnerWomen{
  margin-bottom: 50px;
}

#navInnerMen{
  margin-bottom: 90px;
}

.navGender{
  float: left;
  font-size: 30px;
  position: relative;
  top: -6px;
}

.navList{
  width: 700px;
  float: right;
}

.navList li{
  display: inline-block;
}

.navGenderSub{
  float: left;
}

.navListInner{
  margin-bottom: 60px;
}

.navListInnerList{
  width: 544px;
  float: right;
}

#closeOverlay{
	width:100%;
	height:100%;
	position:fixed;
	top:0;
  left:0;
  z-index:3333;
  display: none;
  -webkit-tap-highlight-color:rgba(0,0,0,0);
}

#closeOverlay.active{
  display: block;
}

/* main */

main{
  padding: 43px 0 210px;
}

#breadCrumb{
  padding: 11px 0;
  font-size: 19px;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
  text-align: center;
}

/* 2022.01.06 add */

#logoInner{
  height: 180px;
  padding-bottom: 18px;
}

#logo{
  margin: 0 auto;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
}

#logoInner img{
  display: block;
  margin: 0 auto;
}

#logoUg{
  width: 69px; 
}

#logoTu{
  width: 78px; 
}

#logoUa{
  width: 180px;
}

#logoMa{
  width: 125px;
}

#logoAm{
  width: 180px;
}

#logoBy{
  width: 184px;
}

#logoOo{
  width: 171px;
}

#logoLo{
  width: 92px;
}

#logoPh{
  width: 111px;
}

#logoAs{
  width: 122px;
}

#logoJu{
  width: 91px;
}

#logoSh{
  width: 138px;
}

#logoMt{
  width: 125px;
}

/* ここまで */

#labelNav{
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 16px;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
}

#labelNav li{
  margin-right: 11px;
  display: inline;
}

#labelNav li:last-child{
  margin-right: 0;
}

#labelLead{
  margin-bottom: 28px;
  font-size: 13px;
  line-height: 2.077;
  letter-spacing: 0.05em;
  text-align: center;
}

#labelImg{
  width: 100%;
  overflow: hidden;
  position: relative;
}

#labelImg #labelTtl{
  margin-top: 56px;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
  font-size: 30px;
  line-height: 1.429;
  text-align: center;
}

#labelTtl a{
  width: 318px;
  height: 46px;
  padding: 20px 0 0;
  color: #fff;
  background: #000;
  font-size: 18px;
  display: block;
  margin: 0 auto;
}

#labelTtl a:hover{
  border-radius: 80px;
}

#labelImg li{
  width: 41.6vw !important;
  display: inline-block;
  margin-right: 4px;
}

#labelImg .slick-dots li{
  width: 30px !important;
  margin-right: 0;
}

.slick-dotted.slick-slider{
  margin-bottom: 40px;
}

.slick-dots{
  bottom: -40px;
  font-size: 17px;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
}

.slick-dots .slick-active{
  position: relative;
}

.slick-dots li::after{
  content: '';
  width: 15px;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-52%);
  bottom: 2px;
  transition-duration: 0.5s;
}

.slick-dots .slick-active::after{
  background: #000;
}

#lookList .slick-dots li::after{
  content: '';
  width: auto;
  height: auto;
  background: none;
  position: relative;
}

#lookList .slick-dots li button:before{
  opacity: 1;
}

#lookList .slick-dots li{
  width: 5px !important;
  height: 5px !important;
}

#lookList .slick-dots li button:before{
  width: 4px;
  height: 4px;
  border: 1px solid #000;
  content: '';
  font-size: 20px;
}

#lookList .slick-dots .slick-active{
  background: #000;
}

#labelSortList{
  margin: 80px 0 70px;
  padding: 15px 0;
  background: #fff;
/*  box-shadow: 0px 3px 3px -2px rgba(0,0,0,0.1);*/
  position: sticky;
  top: 42px;
  z-index: 3333;
}

#labelSortList ul{
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
  text-align: center;
}

#labelSortList li{
  font-size: 16px;
  line-height: 2.2;
  display: inline-block;
}

#labelSortList li a{
  padding: 5px 11px 6px;
}

#labelSortList li.active a{
  padding: 5px 16px 6px;
  border-radius: 20px;
}

#labelItemsThumb{
  width: 89.9vw;
  margin: 0 auto 100px;
  overflow: hidden;
  font-size: 12px;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
  line-height: 1.5;
}

#labelItemsThumb ul{
  width: 94.6vw;
}

#labelItemsThumb li{
  width: 14.28vw;
  float: left;
  margin: 0 4.64vw 3.4vw 0;
  position: relative;
}

.labelItemsThumbImg{
  margin-bottom: 14px;
}

#labelItemsThumb h4{
  white-space: nowrap;  
  overflow: hidden;
  text-overflow: ellipsis;
}

#labelItemsThumb h5{
  margin-bottom: 10px;
}

#labelItemsThumb .btns{
  width: 100%;
  font-size: 0;
}

#labelItemsThumb .btn{
  padding: 6px 0 8px;
  width: calc(100% / 2 - 2px);
  margin-right: -1px;
  display: inline-block;
  font-size: 12px;
  text-align: center;
}

/* labelThumb */

#labelMen{
  margin-bottom: 150px;
}

#tabs{
  margin-bottom: 100px;
  padding: 15px 0;
  background: #fff;
/*  box-shadow: 0px 3px 3px -2px rgba(0,0,0,0.1);*/
  font-size: 19px;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
  position: sticky;
  top: 42px;
  z-index: 3333;
}

#tabsInner ul{
  text-align: center;
}

#tabsInner li{
  display: inline-block;
  text-align: center;
}

#tabsInner li .btn{
  width: 280px;
  padding: 7px 11px 8px;
  display: inline-block;
  transition-duration: 0.5s;
}

#tabsInner li.active .btn{
  border-radius: 20px;
  transition-duration: 0.5s;
}

.labelList{
  width: 90vw;
  margin: 0 auto;
  overflow: hidden;
}

.labelList ul{
  width: 94.6vw;
}

.labelList li{
  width: 19.28vw;
  margin: 0 4.21vw 5.5vw 0;
  float:left;
  position: relative;
  z-index: 1111;
}

/* add */

.labelList img{
  display: block;
  margin-bottom: 20px;
}

.labelList h3{
  padding-bottom: 40px;
}

.labelList h3 img{
  height: 40px;
  margin: 0 auto;
  display: block;
}

.labelList .logoUg{
  width: 63px;  
}

.labelList .logoTu{
  width: 70px;  
}

.labelList .logoUa{
  width: 180px;
}

.labelList .logoMa{
  width: 113px;
}

.labelList .logoAm{
  width: 164px;
}

.labelList .logoBy{
  width: 168px;
}

.labelList .logoOo{
  width: 155px;
}

.labelList .logoLo{
  width: 83px;
}

.labelList .logoPh{
  width: 101px;
}

.labelList .logoAs{
  width: 111px;
}

.labelList .logoJu{
  width: 83px;
}

.labelList .logoSh{
  width: 126px;
}

.labelList .logoMt{
  width: 113px;
}

.labelList li img{
}

.labelListImg{
  position: relative;
}

.hoverImg{
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition-duration: 0.5s;
}

.labelListTop li:hover .hoverImg,
.labelList li:hover .hoverImg{
  visibility: visible;
  opacity: 1;
  transition-duration: 0.5s;
}

.labelList li a{
  display: block;
  padding: 5px;
  border: 1px solid #fff;
  transition-duration: 0.5s;
}

.labelList li a:hover{
  border: 1px solid #000;
  transition-duration: 0.5s;
}

/* labelItem */

#labelItemInner{
  width: 772px;
}

#itemWomen{
  width: 340px;
  float: left;
}

#itemMen{
  width: 340px;
  float: right;
}

#labelItem{
  font-size: 21px;
  line-height: 1.476;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
}

#labelItemInner{
  width: 772px;
  margin: 0 auto;
}

#labelItem h3{
  float: left;
  margin-right: 50px;
}

#labelItem .labelItemInnerList{
  float: left;
}

/* footer */

footer{
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 15px 0;
  font-size: 19px;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
  text-align: center;
}

/***
* TOP
*/

#topLogo{
  padding: 116px 0 100px;
}

#topLogo h1{
  width: 337px;
  margin: 0 auto;
}

/***
* ITEM
*/

#item{
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

#itemImg{
  width: 50%;
  float: right;
}

#itemImg ul{
  padding-right: 18px;
}

#itemImg li{
  margin-bottom: 3px;
}

#itemImg li:last-child{
  margin-bottom: 0;
}

#itemTxt{
  width: 50%;
  float: left;
  position: relative;
}

#itemThumb{
  width: 55px;
  height: calc(100vh - 76px);
  margin: 18px 20px 18px 0;
  float: right;
  position: sticky;
  top: 60px;
  z-index: 1;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

#itemThumb ul{
  margin-bottom: -18px;
}

#itemThumb::-webkit-scrollbar{
  display:none;
}

#itemThumb li{
  margin-bottom: 4px;
  padding: 4px;
  border: 1px solid #fff;
  transition-duration: 0.5s;
}

#itemThumb li.current{
  border: 1px solid #000;
  transition-duration: 0.5s;
}

#itemThumb li:last-child{
  margin-bottom: 0;
}

#itemCreditInner{
  padding: 0 180px 0 120px;
  position: sticky;
  pointer-events: none;
  z-index: 5555;
}

#itemCredit h4{
  margin-bottom: 20px;
  font-size: 19px;
  line-height: 1.632;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
}

#itemCredit p{
  margin-bottom: 30px;
  font-size: 13px;
  line-height: 1.769;
}

#itemCredit dl{
  margin-bottom: 30px;
  font-family: 'Neue Haas Unica W01 Regular', Helvetica, Arial, "sans-serif";
  font-size: 13px;
  line-height: 1.846;
}

#store{
  width: 50%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 5555;
}

#itemCredit p#txtStore{
  margin: 0 200px;
  padding: 26px 30px;
  font-size: 11px;
  background: #fff;
  border: 1px solid #000;
}

#btnStore{
  font-size: 13px;
  padding-bottom: 55px;
  font-family: 'Neue Haas Unica W01 Regular', Helvetica, Arial, "sans-serif";
  pointer-events: auto;
}

#btnBuy{
  width: 230px;
  padding: 10px 0 11px;
  position: absolute;
  right: 180px;
  bottom: 55px;
  color: #fff;
  background: #000;
  font-size: 14px;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
  text-align: center;
  display: block;
  pointer-events: auto;
}

#modal{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8888;
  background: #fff;
  display: none;
}

#modal ul{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 3334;
  background: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

#modal ul::-webkit-scrollbar{
  display: none;
}

#btnModalClose{
  width: 30px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 8888;
}

#modalImg li{
  margin-bottom: 4px;
}

#modalImg li:last-child{
  margin-bottom: 0; 
}

#look{
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
  text-align: center;
}

/* 2022.01.07 add */

#mainVisual{
  margin-bottom: 300px;
}

#lookList li{
  margin-bottom: 300px;
}

#lookList li li{
  margin-bottom: auto;
}

#lookList .lookImg{
  width: 100%;
}

#lookList .lookImg.lookImgL{
  width: 44.3vw;
  margin: 0 auto;
}

#lookList .lookImg.lookImgM{
  width: 44.3vw;
  margin: 0 auto;
}

#lookList .lookImg.lookImgS{
  width: 31.3vw;
  margin: 0 auto;
}

#lookList li .imgDbl{
  width: 91vw;
  margin: 0 auto;
}

#lookList .lookImg.imgL{
  float: left;
}

#lookList .lookImg.imgR{
  float: right;
}

#lookList li:last-child{
  margin-bottom: 90px;
}

#lookList .slick-dots{
  bottom: -40px;
}

#lookList li li:last-child{
  margin-bottom: 0;
}

.lookCredit{
  position: fixed;
  top: 60px;
  left: 18px;
  font-family: 'Neue Haas Unica W01 Regular', Helvetica, Arial, "sans-serif";
  font-size: 11px;
  line-height: 1.545;
  text-align: left;
  visibility: hidden;
  opacity: 0;
  transition-duration: 0.5s;
  z-index: 1111;
}

.active .lookCredit{
  visibility: visible;
  opacity: 1;
  transition-duration: 0.5s;
}

.lookCredit dl{
  margin-bottom: 20px;
}

.lookCredit dl.lookCreditSub{
  margin-bottom: 5px;
}

.lookCredit a{
  width: 70px;
  margin-top: 4px;
  padding: 1px 0;
  font-size: 10px;
  text-align: center;
  display: inline-block;
}

.noLink{
  opacity: 0.2
}

/* 2022.01.10 add */

#logoUg{
  width: 76px; 
}

#logoTu{
  width: 101px; 
}

#logoUa{
  width: 219px;
}

#logoMa{
  width: 125px;
}

#logoAm{
  width: 198px;
}

#logoBy{
  width: 211px;
}

#logoOo{
  width: 175px;
}

#logoLo{
  width: 92px;
}

#logoPh{
  width: 131px;
}

#logoAs{
  width: 132px;
}

#logoJu{
  width: 97px;
}

#logoSh{
  width: 154px;
}

#logoMt{
  width: 136px;
}

#labelTtl{
  text-align: center;
}

#locationCredit{
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
  font-size: 13px;
}

} 

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

html,body{
  margin:0;
	height:100%;
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #000;
  background: #fff;
}

a{
  color: #000;
  text-decoration:underline;
}

a:hover{
  text-decoration:none;
}

a.btn{
  text-decoration:none;
  transition-duration: 0.5s;
}

a.btn:hover{
  border-radius: 20px;
  transition-duration: 0.5s;
}

#wrapper{
  width:100%;
  min-height:100%;
  height:auto !important;
  font-family: sans-serif;
  letter-spacing: 0.02em;
  height:100%;
  position:relative;
}

.fade_off{
  visibility: hidden;
  opacity: 0;
  transition-duration: 1s;
}

.fade_on{
  visibility: visible;
  opacity: 1;
  transition-duration: 1s;
}

/***
* common
*/

/* header */

header{
  width: 100%;
  height: 43px;
  background: #fff;
  position: fixed;
  z-index: 7777;
  transition-duration: 0.5s;
}

header.active{
/*  box-shadow: 0px 3px 3px -2px rgba(0,0,0,0.1);*/
  transition-duration: 0.5s;
}

#btnMenu{
  width: 40px;
  height: 40px;
  position: absolute;
  top: 6px;
  left: 20px;
}

.spinner {
  width: 45px;
  margin-top: 10px;
  text-align: center;
}

.spinner > div {
  width: 10px;
  height: 10px;
  margin-right: 5px;
  background-color: #000;
  border-radius: 100%;
  display: block;
  float: left;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

#nav{
  width: 100%;
  height: 100%;
  padding-bottom: 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8888;
  background: #fff;
  font-size: 20px;
  line-height: 1.6;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
  box-shadow: 0px 3px 3px -3px rgba(0,0,0,0.1);
  z-index:3334;
  transform: translate3d(0,-100%,0);
	transition: all 800ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-webkit-transition: all 800ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
}

#nav.active{
  transform: translate3d(0,0,0);
	transition: all 800ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-webkit-transition: all 800ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
}

#btnNavClose{
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
  font-size: 20px;
  position: fixed;
  top: 15px;
  left: 20px;
  z-index: 9999;
  display: none;
}

#navInnerWrap{
  width: 934px;
  position: relative;
  top: 50%;
  left: 50%;
  margin-top: -40px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#navInnerWomen{
  margin-bottom: 50px;
}

#navInnerMen{
  margin-bottom: 90px;
}

.navGender{
  float: left;
  font-size: 30px;
  position: relative;
  top: -6px;
}

.navList{
  width: 700px;
  float: right;
}

.navList li{
  display: inline-block;
}

.navGenderSub{
  float: left;
}

.navListInner{
  margin-bottom: 60px;
}

.navListInnerList{
  width: 544px;
  float: right;
}

#closeOverlay{
	width:100%;
	height:100%;
	position:fixed;
	top:0;
  left:0;
  z-index:3333;
  display: none;
  -webkit-tap-highlight-color:rgba(0,0,0,0);
}

#closeOverlay.active{
  display: block;
}

/* main */

main{
  padding: 43px 0 210px;
}

#breadCrumb{
  padding: 11px 0;
  font-size: 19px;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
  text-align: center;
}

#logoInner{
  height: 10vw;
  padding-bottom: 1vw;
}

#logo{
  margin: 0 auto;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
}

#logoInner img{
  display: block;
  margin: 0 auto;
}

#logoUg{
  width: 4.16vw; 
}

#logoTu{
  width: 5.55vw; 
}

#logoUa{
  width: 12.08vw;
}

#logoMa{
  width: 6.87vw;
}

#logoAm{
  width: 10.9vw;
}

#logoBy{
  width: 11.6vw;
}

#logoOo{
  width: 9.65vw;
}

#logoLo{
  width: 5.06vw;
}

#logoPh{
  width: 7.22vw;
}

#logoAs{
  width: 7.29vw;
}

#logoJu{
  width: 5.34vw;
}

#logoSh{
  width: 8.47vw;
}

#logoMt{
  width: 7.5vw;
}

/* ここまで */


#labelNav{
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 16px;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
}

#labelNav li{
  margin-right: 11px;
  display: inline;
}

#labelNav li:last-child{
  margin-right: 0;
}

#labelLead{
  margin-bottom: 28px;
  font-size: 13px;
  line-height: 2.077;
  letter-spacing: 0.05em;
  text-align: center;
}

#labelImg{
  width: 100%;
  overflow: hidden;
  position: relative;
}

#labelImg #labelTtl{
  margin-top: 56px;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
  font-size: 30px;
  line-height: 1.429;
  text-align: center;
}

#labelTtl a{
  width: 318px;
  height: 46px;
  padding: 20px 0 0;
  color: #fff;
  background: #000;
  font-size: 18px;
  display: block;
  margin: 0 auto;
}

#labelTtl a:hover{
  border-radius: 80px;
}

#labelImg li{
  width: 41.6vw !important;
  display: inline-block;
  margin-right: 4px;
}

#labelImg .slick-dots li{
  width: 30px !important;
  margin-right: 0;
}

.slick-dotted.slick-slider{
  margin-bottom: 40px;
}

.slick-dots{
  bottom: -40px;
  font-size: 17px;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
}

.slick-dots .slick-active{
  position: relative;
}

.slick-dots li::after{
  content: '';
  width: 15px;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-52%);
  bottom: 2px;
  transition-duration: 0.5s;
}

.slick-dots .slick-active::after{
  background: #000;
}

#labelSortList{
  margin: 80px 0 70px;
  padding: 15px 0;
  background: #fff;
/*  box-shadow: 0px 3px 3px -2px rgba(0,0,0,0.1);*/
  position: sticky;
  top: 42px;
  z-index: 3333;
}

#labelSortList ul{
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
  text-align: center;
}

#labelSortList li{
  font-size: 16px;
  line-height: 2.2;
  display: inline-block;
}

#labelSortList li a{
  padding: 5px 11px 6px;
}

#labelSortList li.active a{
  padding: 5px 16px 6px;
  border-radius: 20px;
}

#labelItemsThumb{
  width: 89.86vw;
  margin: 0 auto 100px;
  overflow: hidden;
  font-size: 12px;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
  line-height: 1.5;
}

#labelItemsThumb ul{
  width: calc(89.86vw + 4vw);
}

#labelItemsThumb li{
  width: 19.79vw;
  float: left;
  margin: 0 3.6vw 3.4vw 0;
  position: relative;
}

.labelItemsThumbImg{
  margin-bottom: 14px;
}

#labelItemsThumb h4{
  white-space: nowrap;  
  overflow: hidden;
  text-overflow: ellipsis;
}

#labelItemsThumb h5{
  margin-bottom: 10px;
}

#labelItemsThumb .btns{
  width: 100%;
  font-size: 0;
}

#labelItemsThumb .btn{
  padding: 6px 0 8px;
  width: calc(100% / 2 - 2px);
  margin-right: -1px;
  display: inline-block;
  font-size: 12px;
  text-align: center;
}

/* labelThumb */

#labelMen{
  margin-bottom: 150px;
}

#tabs{
  margin-bottom: 100px;
  padding: 15px 0;
  background: #fff;
/*  box-shadow: 0px 3px 3px -2px rgba(0,0,0,0.1);*/
  font-size: 19px;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
  position: sticky;
  top: 42px;
  z-index: 3333;
}

#tabsInner ul{
  text-align: center;
}

#tabsInner li{
  display: inline-block;
  text-align: center;
}

#tabsInner li .btn{
  width: 280px;
  padding: 7px 11px 8px;
  display: inline-block;
  transition-duration: 0.5s;
}

#tabsInner li.active .btn{
  border-radius: 20px;
  transition-duration: 0.5s;
}

.labelList{
  width: 90vw;
  margin: 0 auto;
  overflow: hidden;
}

.labelList ul{
  width: calc(89.93vw + 8vw);
}

.labelList li{
  width: 25vw;
  margin: 0 7.5vw 5.5vw 0;
  float:left;
  position: relative;
  z-index: 1111;
}

.labelList img{
  display: block;
  margin-bottom: 30px;
}

.labelList h3{
  padding-bottom: 40px;
}

.labelList .logoUa{
  width: 9.93vw;
  margin: 0 auto;
  display: block;
}

.labelList li img{
  position: relative;
  z-index: -1;
  display: block;
}

/* labelItem */

#labelItemInner{
  width: 772px;
}

#itemWomen{
  width: 340px;
  float: left;
}

#itemMen{
  width: 340px;
  float: right;
}

#labelItem{
  font-size: 21px;
  line-height: 1.476;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
}

#labelItemInner{
  width: 772px;
  margin: 0 auto;
}

#labelItem h3{
  float: left;
  margin-right: 50px;
}

#labelItem .labelItemInnerList{
  float: left;
}

/* footer */

footer{
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 15px 0;
  font-size: 19px;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
  text-align: center;
}

/***
* TOP
*/

#topLogo{
  padding: 116px 0 100px;
}

#topLogo h1{
  width: 337px;
  margin: 0 auto;
}


/***
* ITEM
*/

#item{
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

#itemImg{
  width: 50%;
  float: right;
}

#itemImg ul{
  padding-right: 18px;
}

#itemImg li{
  margin-bottom: 3px;
}

#itemImg li:last-child{
  margin-bottom: 0;
}

#itemTxt{
  width: 50%;
  float: left;
  position: relative;
}

#itemThumb{
  width: 55px;
  height: calc(100vh - 76px);
  margin: 18px 20px 18px 0;
  float: right;
  position: sticky;
  top: 60px;
  z-index: 1;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

#itemThumb ul{
  margin-bottom: -18px;
}

#itemThumb::-webkit-scrollbar{
  display:none;
}

#itemThumb li{
  margin-bottom: 4px;
  border: 1px solid #fff;
  transition-duration: 0.5s;
}

#itemThumb li.active{
  padding: 4px;
  border: 1px solid #000;
  transition-duration: 0.5s;
}

#itemThumb li:last-child{
  margin-bottom: 0;
}

#itemCreditInner{
  padding: 0 180px 0 120px;
  position: sticky;
  pointer-events: none;
  z-index: 5555;
}

#itemCredit h4{
  margin-bottom: 20px;
  font-size: 19px;
  line-height: 1.632;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
}

#itemCredit p{
  margin-bottom: 30px;
  font-size: 13px;
  line-height: 1.769;
}

#itemCredit dl{
  margin-bottom: 30px;
  font-family: 'Neue Haas Unica W01 Regular', Helvetica, Arial, "sans-serif";
  font-size: 13px;
  line-height: 1.846;
}

#store{
  width: 480px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 5555;
}

#itemCredit p#txtStore{
  margin: 0 20px;
  padding: 26px 30px;
  font-size: 11px;
  background: #fff;
  border: 1px solid #000;
}

#btnStore{
  font-size: 13px;
  padding-bottom: 55px;
  font-family: 'Neue Haas Unica W01 Regular', Helvetica, Arial, "sans-serif";
  pointer-events: auto;
}

#btnBuy{
  width: 230px;
  padding: 10px 0 11px;
  position: absolute;
  right: 180px;
  bottom: 55px;
  color: #fff;
  background: #000;
  font-size: 14px;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
  text-align: center;
  display: block;
  pointer-events: auto;
}

#modal{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8888;
  background: #fff;
  display: none;
}

#modal ul{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 3334;
  background: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

#modal ul::-webkit-scrollbar{
  display: none;
}

#btnModalClose{
  width: 30px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 8888;
}

#modalImg li{
  margin-bottom: 4px;
}

#modalImg li:last-child{
  margin-bottom: 0; 
}

#look{
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
  text-align: center;
}

#locationCredit{
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
  font-size: 13px;
}

}

@media screen and (max-width: 719px){
.sp,
.tab,
.tab_sp{
  display: block;
}

.pc,
.pc_tab,
.pcw_pc{
  display: none;
}

html,body{
  margin:0;
	height:100%;
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #000;
  background: #fff;
}

a{
  color: #000;
  text-decoration: underline;
}

a:hover{
  text-decoration: none;
}

#wrapper{
  width:100%;
  min-height:100%;
  height:auto !important;
  font-family: sans-serif;
  letter-spacing: 0.02em;
  height:100%;
  position:relative;
}

.fade_off{
  visibility: hidden;
  opacity: 0;
  transition-duration: 1s;
}

.fade_on{
  visibility: visible;
  opacity: 1;
  transition-duration: 1s;
}

/***
* common
*/

/* header */

header{
  width: 100%;
  height: 45px;
  background: #fff;
  position: fixed;
  z-index: 7777;
}

#btnMenu{
  width: 40px;
  height: 40px;
  position: absolute;
  top: 2px;
  left: 15px;
}

.spinner {
  width: 45px;
  margin-top: 10px;
  text-align: center;
}

.spinner > div {
  width: 8px;
  height: 8px;
  margin-right: 4px;
  background-color: #000;
  border-radius: 100%;
  display: block;
  float: left;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

#nav{
  width: 100%;
  height:100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
  font-size: 18px;
  line-height: 1.8;
  box-shadow: 0px 3px 3px -3px rgba(0,0,0,0.1);
  transform: translate3d(-100%,0,0);
	transition: all 800ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-webkit-transition: all 800ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  z-index: 8888;
}

#nav.active{
  transform: translate3d(0,0,0);
	transition: all 800ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-webkit-transition: all 800ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
}

#nav::-webkit-scrollbar {
  display: none;
}

#btnNavClose{
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
  font-size: 18px;
  position: fixed;
  top: 14px;
  z-index: 9999;
  display: none;
}

#navInnerWrap{
  width: 100%;
  position: relative;
  top: 100px;
  left: 0;
  margin-top: 0;
  -webkit-transform: translate(0);
  transform: translate(0);
}

#navInnerWomen{
  margin-bottom: 100px;
}

#navInnerMen{
  margin-bottom: 90px;
}

.navGender{
  float: left;
  font-size: 23px;
  position: relative;
  top: -6px;
  left: 20px;
}

.navList{
  width: 60%;
  float: right;
}

.navList li{
  display: block;
}

.navGenderSub{
  float: none;
  margin-bottom: 20px;
}

.navListInner{
  margin-bottom: 60px;
}

.navListInnerList{
  width: 100%;
  float: none;
}

#closeOverlay{
	width:100%;
	height:100%;
	position:fixed;
	top:0;
  left:0;
  z-index:3333;
  display: none;
  -webkit-tap-highlight-color:rgba(0,0,0,0);
}

#closeOverlay.active{
  display: block;
}

/* main */

main{
  padding: 45px 0 120px;
}

#breadCrumb{
  padding: 11px 0;
  font-size: 19px;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
  text-align: center;
}

#logoInner{
  height: 100px;
  padding-bottom: 30px;
}

#logo{
  margin: 0 auto 20px;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
}

#logoUg{
  width: 60px; 
}

#logoTu{
  width: 80px; 
}

#logoUa{
  width: 174px;
}

#logoMa{
  width: 99px;
}

#logoAm{
  width: 157px;
}

#logoBy{
  width: 168px;
}

#logoOo{
  width: 139px;
}

#logoLo{
  width: 73px;
}

#logoPh{
  width: 104px;
}

#logoAs{
  width: 105px;
}

#logoJu{
  width: 77px;
}

#logoSh{
  width: 114px;
}

#logoMt{
  width: 108px;
}

/* ここまで */

#labelNav{
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 14px;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
}

#labelNav li{
  margin-right: 11px;
  display: inline;
}

#labelNav li:last-child{
  margin-right: 0;
}

#labelLead{
  margin-bottom: 28px;
  padding: 0 20px;
  font-size: 13px;
  line-height: 2.077;
  letter-spacing: 0.05em;
  text-align: justify;
}

#labelImg{
  width: 100%;
  overflow: hidden;
  position: relative;
}

#labelImg li{
  width: 89.3vw !important;
  display: inline-block;
  margin-right: 4px;
}

#labelImg #labelTtl{
  margin-top: 20px;
  padding: 0 20px;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
  font-size: 30px;
  line-height: 1.429;
  text-align: center;
}

#labelTtl a{
  width: 100%;
  height: 30px;
  padding: 8px 0 0;
  color: #fff;
  background: #000;
  font-size: 16px;
  display: block;
  margin: 0 auto 20px;
}

#labelTtl a:hover{
  border-radius: 80px;
}

#labelImg .slick-dots li{
  width: 20px !important;
  margin-right: 0;
}

.slick-dotted.slick-slider{
  margin-bottom: 40px;
}

.slick-dots{
  bottom: -40px;
  font-size: 13px;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
}

.slick-dots .slick-active{
  position: relative;
}

.slick-dots li::after{
  content: '';
  width: 12px;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-52%);
  bottom: 6px;
  transition-duration: 0.5s;
}

.slick-dots .slick-active::after{
  background: #000;
}

#labelSortList{
  margin: 15px 0 25px;
  padding: 10px 0;
  background: #fff;
  position: sticky;
  top: 45px;
  left: 50%;
  z-index: 3333;
}

#labelSortList ul{
  padding: 0 20px;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
  text-align: left;
}

#labelSortList li{
  font-size: 14px;
  line-height: 2.4;
  display: inline-block;
}

#labelSortList li a{
  padding: 5px 11px 6px;
}

#labelSortList li.active a{
  padding: 5px 16px 6px;
  border-radius: 20px;
}

#labelItemsThumb{
  width: 88vw;
  margin: 0 auto 80px;
  overflow: hidden;
  font-size: 12px;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
  line-height: 1.5;
}

#labelItemsThumb ul{
  width: 91.2vw;
}

#labelItemsThumb li{
  width: 42.4vw;
  float: left;
  margin: 0 3.2vw 30px 0;
  position: relative;
}

.labelItemsThumbImg{
  margin-bottom: 14px;
}

.labelItemsThumbImg img{
  display: block;
}

#labelItemsThumb h5{
  margin-bottom: 10px;
}

#labelItemsThumb .btns{
  width: 100%;
  font-size: 0;
}

#labelItemsThumb .btn{
  padding: 1px 0 2px;
  width: calc(100% / 2 - 2px);
  margin-right: -1px;
  display: inline-block;
  font-size: 10px;
  text-align: center;
}

/* labelThumb */

#labelMen{
  margin-bottom: 80px;
}

#tabs{
  margin-bottom: 60px;
  padding: 10px 0;
  background: #fff;
  position: sticky;
  top: 45px;
  font-size: 16px;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
}

#tabsInner ul{
  text-align: center;
}

#tabsInner li{
  display: inline-block;
  text-align: center;
}

#tabsInner li .btn{
  width: 28vw;
  padding: 6px 0.3vw 7px;
  display: inline-block;
}

#tabsInner li.active .btn{
  border-radius: 20px;
}

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

.labelList ul{
  width: 100%;
}

.labelList li{
  width: 50%;
  margin: 0 0 0 0;
  float:left;
}

#labelThumbTop .labelList ul{
  width: calc(100% - 40px);
  padding: 0 20px;
}

#labelThumbTop .labelList li{
  width: 100%;
  margin: 0 0 20px 0;
  float:left;
}

/* add */

.labelList img{
  display: block;
  margin-bottom: 15px;
}

.labelList h3{
  padding-bottom: 30px;
}

.labelList h3 img{
  height: 30px;
  margin: 0 auto;
  display: block;
}

.labelList .logoUg{
  width: 33px;
}

.labelList .logoTu{
  width: 37px;
}

.labelList .logoUa{
  width: 96px;
}

.labelList .logoMa{
  width: 60px;
}

.labelList .logoAm{
  width: 87px;
}

.labelList .logoBy{
  width: 90px;
}

.labelList .logoOo{
  width: 83px;
}

.labelList .logoLo{
  width: 44px;
}

.labelList .logoPh{
  width: 54px;
}

.labelList .logoAs{
  width: 60px;
}

.labelList .logoJu{
  width: 44px;
}

.labelList .logoSh{
  width: 67px;
}

.labelList .logoMt{
  width: 60px;
}

/* top */

#labelThumbTop .labelList img{
  display: block;
  margin-bottom: 30px;
}

#labelThumbTop .labelList h3 img{
  height: auto;
  margin: 0 auto;
  display: block;
}

#labelThumbTop .labelList .logoUg{
  width: 46px;
}

#labelThumbTop .labelList .logoTu{
  width: 51px;
}

#labelThumbTop .labelList .logoUa{
  width: 131px;
}

#labelThumbTop .labelList .logoMa{
  width: 83px;
}

#labelThumbTop .labelList .logoAm{
  width: 119px;
}

#labelThumbTop .labelList .logoBy{
  width: 123px;
}

#labelThumbTop .labelList .logoOo{
  width: 114px;
}

#labelThumbTop .labelList .logoLo{
  width: 61px;
}

#labelThumbTop .labelList .logoPh{
  width: 73px;
}

#labelThumbTop .labelList .logoAs{
  width: 82px;
}

#labelThumbTop .labelList .logoJu{
  width: 61px;
}

#labelThumbTop .labelList .logoSh{
  width: 92px;
}

#labelThumbTop .labelList .logoMt{
  width: 83px;
}

/* labelItem */

#labelItemInner{
  width: 270px;
  margin: 0 auto;
}

#itemWomen{
  width: 100%;
  float: none;
  margin-bottom: 60px;
}

#itemMen{
  width: 100%;
  float: none;
}

#labelItem{
  font-size: 18px;
  line-height: 2;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
}

#labelItem h3{
  width: 80px;
  float: left;
  text-align: right;
  margin-right: 40px;
}

#labelItem .labelItemInnerList{
  width: 150px;
  float: left;
}

.hoverImg{
  display: none;
}

.labelListTop li:hover .hoverImg,
.labelList li:hover .hoverImg{
}

.labelList li a{
  display: block;
  padding: 0;
  border: 1px solid #fff;
  transition-duration: 0;
}

.labelList li a:hover{
  border: 1px solid #fff;
}

/* footer */

footer{
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 15px 0;
  font-size: 17px;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
  text-align: center;
}

/***
* TOP
*/

#topLogo{
  padding: 65px 0 75px;
}

#topLogo h1{
  width: 65.6vw;
  margin: 0 auto;
}

/***
* ITEM
*/

#item{
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

#itemImg{
  width: 100%;
  margin: 0 auto;
  float: none;
}

#itemImg ul{
  padding-right: 0;
}

#itemImg li{
  margin-bottom: 3px;
}

#itemImg li:last-child{
  margin-bottom: 0;
}

#itemImg li img{
  width: 74.13vw;
  margin: 0 auto;
}

.slick-prev{
  width: 12.8vw;
}

.slick-next{
  width: 12.8vw;
}

#itemTxt{
  width: 100%;
  float: none;
  position: relative;
}

#itemThumb{
  width: calc(100% - 40px);
  height: auto;
  margin: 18px auto 40px;
  float: none;
  position: relative;
  top: 0;
  z-index: 1;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

#itemThumb ul{
  width: calc(100% + 31px);
  margin-bottom: 0;
}

#itemThumb::-webkit-scrollbar{
  display:none;
}

#itemThumb li{
  width: calc(100% / 5 - 21px);
  padding: 4px;
  margin-right: 6px;
  margin-bottom: 6px;
  float: left;
  transition-duration: 0.5s;
}

#itemThumb li.current{
  border: 1px solid #000;
  transition-duration: 0.5s;
}

#itemThumb li:last-child{
  margin-bottom: 0;
}

#itemThumb li a{
  display: block;
}

#itemCredit{
  width: 100%;
  float: none;
}

#itemCreditInner{
  width: auto;
  padding: 0 20px;
  position: relative;
  left: 0;
}

#itemCredit h4{
  margin-bottom: 20px;
  font-size: 19px;
  line-height: 1.632;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
}

#itemCredit p{
  margin-bottom: 30px;
  font-size: 13px;
  line-height: 1.769;
}

#itemCredit dl{
  margin-bottom: 30px;
  font-family: 'Neue Haas Unica W01 Regular', Helvetica, Arial, "sans-serif";
  font-size: 13px;
  line-height: 1.846;
}

#store{
  width: 100%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 5555;
}

#itemCredit p#txtStore{
  font-size: 11px;
}

#btnStore{
  font-size: 13px;
  padding-bottom: 35px;
  font-family: 'Neue Haas Unica W01 Regular', Helvetica, Arial, "sans-serif";
}

#btnBuy{
  width: 100%;
  margin-bottom: 40px;
  padding: 10px 0 11px;
  position: relative;
  right: auto;
  bottom: 0;
  color: #fff;
  background: #000;
  font-size: 16px;
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
  text-align: center;
  display: block;
}

/* 2022.01.07 add */

#mainVisual{
  margin-bottom: 30px;
}

#lookList li{
  margin-bottom: 50px;
}

#lookList li li{
  margin-bottom: auto;
}

#lookList .lookImg{
  width: 100%;
  margin: 0 auto 30px;
}

#lookList .lookImg.lookImgL{
  width: 100%;
  margin: 0 auto 30px;
}

#lookList .lookImg.lookImgM{
  width: calc(100% - 60px);
  margin: 0 auto 30px;
}

#lookList .lookImg.lookImgS{
  width: calc(100% - 60px);
  margin: 0 auto 30px;
}

#lookList li .imgDbl{
  width: 100%;
  margin: 0 auto;
}

#lookList .lookImg.imgL{
  float: none;
}

#lookList .lookImg.lookImgM.imgL{
  float: none;
}

#lookList .lookImg.imgR{
  float: none;
}

#lookList li:last-child{
  margin-bottom: -20px;
}

#lookList li li:last-child{
  margin-bottom: 0;
}

#lookList .slick-dots{
  bottom: -28px;
}

.lookCredit{
  position: relative;
  top: 0;
  left: 0;
  font-family: 'Neue Haas Unica W01 Regular', Helvetica, Arial, "sans-serif";
  font-size: 11px;
  line-height: 1.545;
  text-align: center;
  visibility: visible;
  opacity: 1;
  transition-duration: 0.5s;
  z-index: 1111;
}

.lookCredit dl{
  margin-bottom: 16px;
}

.lookCredit a{
  width: 70px;
  margin-top: 4px;
  padding: 1px 0;
  font-size: 10px;
  text-align: center;
  display: inline-block;
}

.noLink{
  opacity: 0.2
}

#locationCredit{
  font-family: 'Neue Haas Unica W01 Medium', Helvetica, Arial, "sans-serif";
  font-size: 11px;
}

}