@charset "UTF-8";

/***
* common_sp.css
*/

/*---------------------------------------------------------------
ヘッダー高さの単一定義（Ver7.0 反映時に追加）

#headerInner の height と、「ヘッダー分を引く」calc() は必ずこの変数を参照する。
JS 側もヘッダーを実測せず、CSS が決めた高さに従う（js/common.js / js/label_top.js）。
上流 UA-26Autumn Ver7.0 は CSS に 55px/44px を直書きしつつ JS で実測していたため、
両者がずれる余地があった。テーマでは定義をここ1か所に集約している。

PC（min-width:1000px）の上書きは common_pc.css の :root にある。
---------------------------------------------------------------*/
:root {
  --uaHeaderHeight: 44px;
}

/* 375px */

.aside .filterBtns {
	background-color: #fff;
}

.aside.fixed .filterBtns {
	position: fixed;
	left: 0;
	top: 0;
	width: auto;
	padding-left: 20px;
	padding-right: 20px;
}

.aside.fixed.show .filterBtns {
	padding-top: 105px;
	padding-bottom: 10px;
	transition: padding 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.copy {
	mix-blend-mode: difference;
	color: #fff;
}

@media only print, only screen and (min-width: 18.75em) {

#itemCredit #itemImgThumb {
  display: block;
}

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

.sp {
  display: block;
}

.hover:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

.hyphen {
  position: relative;
  top: -0.5vw;
}

.btn {
  padding: 1px 8px 3px;
  color: #000;
  background: #fff;
  border: 1px solid #000;
  border-radius: 3px;
  font-size: 17px;
  text-align: center;
  display: inline-block;
  position: relative;
  transition-duration: 0.5s;
}

.btns li {
  display: inline-block;
}

.jp {
  font-family: dnp-shuei-nmincho-std, serif;
}

.narrow {
  transform: scale(0.6, 1);
  display: inline-block;
  letter-spacing: 0.2em;
}

.parent {
  position: relative;
  top: -0.04em;
}

/***+*******+****
* layout
*/

/***
* header
*/

#header {
  width: 100%;
  overflow: hidden;
}

#headerInner {
  width: 100%;
  height: var(--uaHeaderHeight);
  position: fixed;
  background: transparent;
  z-index: 3333;
}

#headerInner::before {
  content: "";
  width: 100%;
  height: 66px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    #fff 0,
    #fff 60%,
    rgba(255, 255, 255, 0.9) 68%,
    rgba(255, 255, 255, 0.62) 78%,
    rgba(255, 255, 255, 0.28) 90%,
    rgba(255, 255, 255, 0) 100%
  );
}

#logoSpAnchor {
  position: absolute;
  top: 0;
}

#logo {
  width: 158px;
  position: relative;
  margin: 10px 0 0 12px;
}

#genderBtns {
  position: absolute;
  top: 11px;
  right: 45px;
}

#genderBtns li {
  font-size: 13px;
  display: inline-block;
}

#genderBtns li::after {
  content: "/";
  padding: 0 5px 0 8px;
  color: #bbb;
}

#genderBtns li:last-child::after {
  display: none;
}

#genderBtns a {
  color: #bbb;
}

.women #genderBtns a.navWomen,
.men #genderBtns a.navMen{
  color: #000;
}

/* btnMenu */

#btnMenu {
	display: block;
	width: 15px;
	height: 20px;
	padding: 20px 13px 11px;
	color: #000;
	font-size: 1.5em;
	cursor: pointer;
	position: fixed;
	top: -7px;
	right:0;
	z-index: 6666;
}

.bars {
  background: transparent !important;
}

.bars.active:before, .bars.active:after {
	background: #000;
	top: 0;
	width: 100%;
	user-select: none;
}

.bars.active:before {
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.bars.active:after {
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.bars {
	width: 100%;
	height: 1px;
	margin-top: .3em;
	background: #000;
	position: relative;
	display: block;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.bars:before {
	top: -3px;
}

.bars:after {
  top: 3px;
}

.bars:before, .bars:after {
	width: 100%;
	height: 1px;
	background: #000;
	position: absolute;
	left: 0;
	content: '';
	-moz-transform: rotate(0);
	-ms-transform: rotate(0);
	-webkit-transform: rotate(0);
	transform: rotate(0);
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

/*
 * Ver8.2：left: 0 を追加。position: fixed なのに left 未指定（auto）だったため、
 * 静的位置＝#footer の内側（padding: 0 15px）が起点になり、
 * オーバーレイ全体が右へ 15px ずれていた。左端 15px が覆われず、
 * LOOKの写真やコンテンツがその幅だけ白くならずに残る。
 */
#closeOverlay {
  width: 100%;
  height: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1111;
  opacity: 0;
  visibility: hidden;
  transition-duration: 0.5s;
}

#closeOverlay.active {
  opacity: 0.9;
  visibility: visible;
  transition-duration: 0.5s;
}

#closeOverlay.is-look-item-closing {
  transition-duration: 0.8s;
}

#navWrap {
  height: calc(100% - 58px);
  padding-top: 24px;
  overflow: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

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

#nav {
  width: 100%;
  height: calc(100vh - var(--uaHeaderHeight));
  height: calc(100dvh - var(--uaHeaderHeight));
  position: fixed;
  top: 0;
  left: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  scroll-behavior: auto;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 800ms cubic-bezier(0.23, 1, 0.32, 1),
    top 800ms cubic-bezier(0.23, 1, 0.32, 1),
    visibility 0s linear 800ms;
}

#nav.active {
  opacity: 1;
  visibility: visible;
  top: var(--uaHeaderHeight);
  transition:
    opacity 800ms cubic-bezier(0.23, 1, 0.32, 1),
    top 800ms cubic-bezier(0.23, 1, 0.32, 1),
    visibility 0s;
}

#nav > ul {
  padding: 36px 15px 0;
  display: block;
  font-size: 14px;
  line-height: 2;
}

#nav h3 {
  margin-bottom: 10px;
  font-size: 12px;
}

.navDropdown {
  margin-bottom: 40px;
}

.navHasDropdown > a {
  margin-bottom: 16px;
  font-size: 14px;
  display: inline-block;
}

#navLabels {
  float: none;
  margin: 0 0 80px 0;
}

#navItemCat {
  float: none;
  margin: 0 0 80px 0;
}

.navList ul {
  float: none;
  margin-right: 0;
}

.navLabelImg,
.navItemImg{
  margin-top: 10px;
  font-size: 10px;
}

.navDropdown .navLabelImg {
  width: 35%;
  position: fixed;
  top: 75px;
  right: 15px;
  opacity: 0;
  visibility: hidden;
  transition-duration: 0.5s;
}

.navDropdown a:hover .navLabelImg {
  opacity: 1;
  visibility: visible;
  transition-duration: 0.5s;
}

.navDropdown .navItemImg {
  width: 35%;
  position: fixed;
  top: 75px;
  right: 15px;
  opacity: 0;
  visibility: hidden;
  transition-duration: 0.5s;
}

.navDropdown a:hover .navItemImg {
  opacity: 1;
  visibility: visible;
  transition-duration: 0.5s;
}

.navHasDropdown .sp {
  display: inline-block;
}

.navDropdown .df {
  width: 35%;
  position: fixed;
  top: 85px;
  right: 15px;
  z-index: 1111;
}

.navDropdown .df .navLabelImg,
.navDropdown .df .navItemImg {
  width: 100%;
  position: static;
  opacity: 1;
  visibility: visible;
  transition-duration: 0.5s;
}

#navItemCategories .df {
  display: none;
}

#navLablIndex .df {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.5s var(--motion-soft),
    visibility 0s;
}

#navLablIndex .navDropdown:has(.navDropdownList:hover) .df {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s var(--motion-soft),
    visibility 0s linear 0.5s;
}

#nav:has(#navItemCategories .navDropdownList a:hover) #navLablIndex .navLabelImg {
  display: none;
}

/***
* main
*/

#main {
  padding-top: 80px;
}

section {
  padding: 60px 15px 0;
  position: relative;
}

section:first-child {
  padding: 0;
}

#allLook section:first-child {
  padding: 0 0 0;
}

#allLook .ttl,
#item .ttl {
  padding-bottom: 80px;
}

.ttl {
  width: 100%;
  padding: 30px 0 40px;
  font-size: 18px;
  text-align: center;
  position: relative;
  z-index: 111;
}

.ttl::before {
  content: '[';
  padding-right: 0.5em;
  display: inline-block;
  position: relative;
  top: -2px;
  opacity: 0;
  transform: translateX(0);
  transition: opacity 0.5s var(--motion-luxury), transform 0.8s var(--motion-soft);
}

.ttl::after {
  content: ']';
  padding-left: 0.5em;
  display: inline-block;
  position: relative;
  top: -2px;
  opacity: 0;
  transform: translateX(0);
  transition: opacity 0.5s var(--motion-luxury), transform 0.8s var(--motion-soft);
}

.ttl.is-ttl-revealed::before {
  opacity: 1;
  transform: translateX(-0.65em);
}

.ttl.is-ttl-revealed::after {
  opacity: 1;
  transform: translateX(0.65em);
}

#womenLabelTtl {
  padding: 0 0;
}

#itemCategories {
  padding-bottom: 80px;
}

/*
.aside {
  margin-bottom: 26px;
  float: none;
  position: relative;
  top: auto;
  left: 0;
  font-size: 16.5px;
  line-height: 1.75;
  z-index: 111;
}

.aside ul {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.aside ul::-webkit-scrollbar {
  display: none;
}

.aside .fadeRight {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to left, white, rgba(255, 255, 255, 0));
}

.aside ul::-webkit-scrollbar {
  display: none;
}

.aside li {
  display: inline-block;
}

.aside li::after {
  content: "/";
  padding: 0 0.1em 0 0.5em;
}

.aside li:last-child::after {
  display: none;
}
*/

/*
.aside li a {
position: relative;
}
*/

/*
.aside li a::after {
content: '';
width: 0;
height: 1px;
transform: scaleY(0.5);
position: absolute;
bottom: 0;
left: 0;
background: #000;
transition: all 800ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
}

.aside li a:hover::after {
width: 100%;
transition: all 800ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
}
*/

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

/* labelThumbList */

#labelThumbList {
  width: 100%;
  margin-bottom: -30px;
}

#labelThumbList ul {
  width: calc(100% + 1px);
}

#labelThumbList li {
  width: calc(100% / 2 - 1px);
  float: left;
  margin: 0 1px 15px 0;
  position: relative;
}

.genderTop #womenLabel {
  padding: 0 20px;
}

.genderTop #labelThumbList ul {
  width: calc(100% + 1px);
}

.genderTop #labelThumbList li {
  width: calc(100% / 2 - 1px);
  margin: 0 1px 20px 0;
}

.thumbLogo {
  position: relative;
}

/*
.thumbLogo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ccc;
  transform-origin: 0 0;
}
*/

.thumbLogo img {
  width: calc(100% + 1px);
  margin: 0 auto;
  margin-right: -1px;
  position: relative;
  z-index: 1111;
}

.genderTop .thumbLogo img {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.thumbImg {
  margin-right: 0;
  overflow: hidden;
  z-index: 1111;
}

#labelThumbList li .thumbImg img {
  transform: scale(1);
  transition-duration: 0.5s;
}

#labelThumbList li:hover .thumbImg img {
  transform: scale(1.1);
  transition-duration: 0.5s;
}

#labelThumbList li .thumbImg {
  position: relative;
}

#labelThumbList li .thumbImg::after {
  display: none !important;
}

#labelListWrap {
  width: 100%;
  display: none;
}

#btnLabels {
  width: 146px;
  float: none;
  position: fixed;
  top: auto;
  right: 15px;
  bottom: 15px;
  z-index: 999;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.5s ease,
    visibility 0s linear 0.5s;
}

#btnLabels.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

#womenLabel #labelThumbList,
#womenLabel #labelListWrap {
  position: relative;
  z-index: 0;
}

#btnLabels li {
  display: inline-block;
  vertical-align: top;
}

#btnLabels .btn {
  padding: 2px 10px 3px 24px;
  font-size: 17px;
  line-height: 1;
  position: relative;
  box-sizing: border-box;
  border: 1px solid #000;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

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

#btnLabels #btnGrid .btn::after {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  color: inherit;
  background-color: currentColor;
  -webkit-mask: url("../img/icon_grid.svg") center / contain no-repeat;
  mask: url("../img/icon_grid.svg") center / contain no-repeat;
}

#btnLabels #btnList .btn::after {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  color: inherit;
  background-color: currentColor;
  -webkit-mask: url("../img/icon_list.svg") center / contain no-repeat;
  mask: url("../img/icon_list.svg") center / contain no-repeat;
}

#labelTopLookTtl {
  margin-bottom: 60px;
  font-size: 26px;
  text-align: center;
}

/* itemCategoryList */

#itemCategoryList {
  width: 100%;
}

#itemCategoryList ul {
  width: calc(100% + 1px);
}

#itemCategoryList li {
  width: calc(100% / 2 - 1px);
  float: left;
  margin: 0 1px 1px 0;
  text-align: center;
  position: relative;
}

#itemCategoryList li a {
  padding: 0;
  display: block;
  position: relative;
}

#itemCategoryList li a .itemThumbTxt {
  width: 100%;
  position: absolute;
  bottom: 0;
}

.womenItemThumbImg {
  overflow: hidden;
}

#itemCategoryList li .womenItemThumbImg img {
  transform: scale(1);
  transition-duration: 0.5s;
}

#itemCategoryList li:hover .womenItemThumbImg img {
  transform: scale(1.15);
  transition-duration: 0.5s;
}

.itemCategoryThumbTtl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-bottom: 40px;
  font-size: 18px;
  text-align: center;
  white-space: nowrap;
}

.itemThumbImg {
  margin-bottom: 0;
}

.itemThumbTxt {
  padding-bottom: 15px;
}

.itemThumbTxt h5 {
  font-size: 14px;
}

/***
* gender top
*/

#genderTtl {
  padding: 120px 0 60px;
  text-align: center;
  white-space: nowrap;
}

#genderTtl h3 {
  margin: 0 0 12px 0;
  font-size: 23.5px;
  text-align: center;
}

#genderTtl .article {
  font-size: 7.47vw;
  text-align: right;
  z-index: 2223;
}

#mainTtl a {
  position: relative;
  display: inline-block;
  transform: translateZ(0);
}

#genderTtlBtns {
  display: inline-block;
  position: relative;
  top: -3px;
}

#genderTtlBtns ul {
  margin: 0;
  padding: 0;
}

#genderTtlBtns li {
  display: inline-block;
}

.genderTop section:nth-child(2) .ttl{
  padding: 70px 0 50px;
}

/***
* label top
*/

/*
 * Ver7.0：ヘッダー高の2倍を引いた高さ（上流の calc(100vh - 44px - 44px) 相当）。
 * 上流は js/common.js で $(window).height() を実測して inline style を当てていたが、
 * テーマでは CSS に任せて JS からは触らない（js/common.js のコメント参照）。
 *
 * Ver8.2：dvh → svh。#labelTopIntro は通常フローの要素なので、dvh だとSPの
 * アドレスバー開閉のたびにドキュメント高さが変わり、スクロールがバネのように揺れる。
 * svh（アドレスバー表示時の高さ）は開閉で変化しないので固定値として使える。
 * label top ではさらに js/label_top.js の実測値で上書きする（css/label_top.css 参照）。
 * 100vh は svh 非対応ブラウザ向けのフォールバック。
 */
#labelTopIntro {
  width: 100%;
  height: calc(100vh - var(--uaHeaderHeight) * 2);
  height: calc(100svh - var(--uaHeaderHeight) * 2);
}

#btnlabelImg{
  width: 100%;
  padding: 20px 0;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 999;
  text-align: center;
  font-size: 14px;
  color: #fff;
}

#labelTopLogo {
  --labelTopLogoScale: 1;
  width: 100%;
  margin: 0 auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding-bottom: 40px;
}

#labelTopLogo img {
  transform: scale(var(--labelTopLogoScale));
  transform-origin: center center;
  will-change: transform;
}

/* Ver7.0：レーベル名の打ち文字は恒久的に非表示（common_pc.css の同ルール参照）。 */
#labelTopName {
  margin: 36px 0 200px;
  font-size: 28px;
  text-align: center;
  display: none;
}

.labelTop #loader {
  width: 100%;
  height: 100%;
  position: fixed;
  background: #fff;
  z-index: 7777;
}

.labelTop #loaderLogo {
  width: 140%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: all 2000ms cubic-bezier(0.23, 1, 0.32, 1);
}

.labelTop #loaderLogo img {
  padding-bottom: 80px;
}

.labelTop #loaderLogo.active {
  transform: translate(-50%, -50%) scale(0.95);
  transition: all 2000ms cubic-bezier(0.23, 1, 0.32, 1);
}

.labelTop #loaderLogo.blur {
  filter: blur(5px);
  transition: all 3000ms cubic-bezier(0.23, 1, 0.32, 1);
}

/* データ置き場（表示しない） */
#labeltopSliderData {
  display: none;
}

#itemCategoriesList {
  margin: -20px 0 40px;
  text-align: center;
  position: relative;
  z-index: 111;
}

#itemCategoriesList li {
  display: inline-block;
  margin-bottom: 4px;
}

#itemCategoriesList .btn {
  padding: 2px 5px 3px;
  font-size: 14px;
  border: 1px solid #ccc;
}

#itemCategoriesList li.active .btn {
  color: #fff;
  background: #000;
  border: 1px solid #000;
}

/* 該当商品が0件のカテゴリー。js/common.js の markEmptyItemFilters() が .is-empty を付ける。
   非表示にせず薄く残し、pointer-events でクリックとホバーを止める。 */
#itemCategoriesList li.is-empty .btn {
  opacity: 0.3;
  pointer-events: none;
}

/* itemTuhmb */

#itemThumbList {
  width: 100%;
  overflow: hidden;
  margin-bottom: -30px;
}

#itemThumbList ul {
  width: calc(100% + 1px);
}

/* 段階描画（js/common.js）のIntersectionObserverが監視するトリガー。PC/SP共通。
   高さ0のままだと、親 #itemThumbList（overflow:hidden）の下端と完全に一致して
   クリップ後の交差矩形が面積0になり、Safariでは交差と判定されず一覧が
   初期24件で止まる。1pxの高さを与えてクリップ矩形の内側に入れる。 */
#itemThumbListSentinel {
  height: 1px;
}

#itemThumbList li {
  width: calc(100% / 2 - 1px);
  float: left;
  font-size: 12px;
  line-height: 1.25;
  margin: 0 1px 30px 0;
  position: relative;
}

.itemThumbListImg {
  overflow: hidden;
  margin-bottom: 0;
}

@media only screen and (max-width: 999px) {
  .itemThumbListImg a.itemThumbSwiper {
    display: block;
    overflow: hidden;
    touch-action: pan-y;
  }

  .itemThumbListImg a.itemThumbSwiper .swiper-wrapper,
  .itemThumbListImg a.itemThumbSwiper .swiper-slide,
  .itemThumbListImg a.itemThumbSwiper picture {
    height: 100%;
  }

  .itemThumbListImg a.itemThumbSwiper .swiper-wrapper {
    transition-timing-function: ease-out;
  }

  .itemThumbListImg a.itemThumbSwiper .swiper-slide {
    overflow: hidden !important;
  }

  .itemThumbListImg a.itemThumbSwiper picture {
    width: 100%;
    display: block;
  }

  .itemThumbListImg a.itemThumbSwiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .itemThumbListImg a.itemThumbSwiper .number0,
  .itemThumbListImg a.itemThumbSwiper .number1 {
    position: relative;
    top: auto;
    left: auto;
    opacity: 1;
    transition: none;
  }

  .itemThumbListImg .itemThumbSwiperPagination.swiper-pagination {
    position: relative;
    bottom: 25px;
    left: auto;
    width: 100%;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .itemThumbListImg .itemThumbSwiperPagination .swiper-pagination-bullet {
    width: 3px;
    height: 3px;
    margin: 0;
    border-radius: 0;
    background: #fff;
    border: 1px solid #000;
    opacity: 1;
  }

  .itemThumbListImg .itemThumbSwiperPagination .swiper-pagination-bullet-active {
    background: #000;
    border: 1px solid #000;
  }
}

.itemThumbListLabel {
  padding-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.itemThumbListTxt {
  padding: 0 10px;
}

.itemThumbListBtn {
  padding: 0 10px;
}

.itemThumbListPrice {
  margin-bottom: 15px;
}

.itemThumbListBtn .btn {
  width: calc(50% - 2px);
  float: left;
  font-size: 10px;
  padding: 4px 0 6px;
  border-radius: 0;
}

.itemThumbListBtn .itemThumbListBtnBuy a {
  margin-left: -1px;
}

#itemImgThumbAnchorSp {
  margin-top: 2px;
}

#itemImgThumb .slick-slide {
  margin-right: 5px;
}

@media only screen and (max-width: 768px) {
  #itemImgThumb .thumSlider {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  #itemImgThumb .thumSlider::-webkit-scrollbar {
    display: none;
  }

  #itemImgThumb .thumSlider > li {
    width: calc((100% - 25px) / 5.3);
    flex: 0 0 calc((100% - 25px) / 5.3);
    margin-right: 5px;
  }
}

#btnAllItem {
  margin: 20px 0 60px;
  text-align: center;
}

#btnAllItem .btn {
  width: calc(100% - 60px);
  font-size: 21px;
  padding: 26px 0 30px;
}

#btnAllItem .btn::after {
  content: '';
  width: 14px;
  height: 8px;
  background: url("../img/icon_arrow2.svg") center no-repeat;
  background-size: 14px auto;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}

/***
* item Detail
*/

#detail #main {
  padding: 0 0 0 0;
}

#itemImg {
  float: none;
  margin: 0 auto;
}

#itemImgMain {
  width: 100%;
  float: none;
  margin-bottom: 40px;
}

#itemImgMain.itemMainSwiper {
  overflow: hidden;
  touch-action: pan-y;
}

#itemImgMain.itemMainSwiper .swiper-wrapper {
  transition-timing-function: ease-out;
}

#itemImgMain.itemMainSwiper .swiper-slide {
  width: 100%;
  margin-bottom: 0;
  flex-shrink: 0;
}

#itemImgMain.itemMainSwiper .swiper-slide img {
  width: 100%;
  display: block;
}

#itemImgMain li {
  margin-bottom: 10px;
}

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

#itemCredit {
  width: calc(100% - 80px);
  float: none;
  margin: 0 auto;
}

#itemCreditInnerMain h4 {
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-size: 15px;
  line-height: 1.357;
}

#itemCreditItemName {
  margin-bottom: 2px;
  font-size: 21px;
  display: block;
}

#itemCreditInnerMain p {
  margin-bottom: 20px;
  font-size: 12px;
  text-align: justify;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

#itemCredit dl {
  margin-bottom: 26px;
  font-size: 14px;
  line-height: 1.45;
  white-space: nowrap;
}

.itemCreditInnerSubTtl,
.itemCreDescriptionTtl {
  font-size: 14px;
}

.itemCreDescription {
  margin-top: 30px;
}

.itemCreDescriptionTtl {
  margin-bottom: 10px;
}

.itemCreDescriptionTxt {
  font-size: 14px;
  line-height: 2;
}

#btnBuy .btn {
  width: 100%;
  padding: 6px 0 10px;
  font-size: 15px;
  color: #fff;
  background: #000;
  border: 1px solid #000;
}

/* ITEM詳細 BUYボタンの矢印（#btnBuy .btn::after）は不要との指示で削除（2026-08-19）。
   矢印はSPのみに入っていた（common_pc.css の #btnBuy .btn には元から無し）。 */

#itemImgThumb {
  width: 100%;
  margin-bottom: 26px;
  overflow: hidden;
  position: relative;
}

#itemImgThumb::after {
  content: "";
  width: 48px;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff);
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.3s ease;
}

#itemImgThumb.is-thumb-end::after {
  opacity: 0;
}


#itemImgThumbBg {
  width: 100%;
  height: 2px;
  background: #ccc;
  position: absolute;
  bottom: 0;
  display: none; /******************************************************************************************************/
}

#itemImgThumbCurrent {
  width: 40px;
  height: 2px;
  background: #000;
  position: absolute;
  bottom: 0;
  z-index: 1111;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

#itemImgThumb li {
  margin-bottom: 4px;
  opacity: 0.3;
  transition: opacity 0.5s;
}

#itemImgThumb li.active {
  opacity: 1;
}

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

/* modal */

#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;
}

/***
* all looks
*/

#lookbooksThumbList {
  width: calc(100% - 30px);
  margin: 0 auto;
  overflow: hidden;
}

#lookbooksThumbList ul {
  width: 100%;
}

#lookbooksThumbList li {
  width: 100%;
  float: none;
  margin: 0 0 40px 0;
  padding: 0 0 15px;
  position: relative;
  border: none;
}

#lookbooksThumbList li::after {
  content: '';
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  top: 30px;
  left: 0;
}

.lookbooksThumbImg {
  width: 100%;
}

.lookbooksThumbImg {
  overflow: hidden;
}

#lookbooksThumbList li .lookbooksThumbImg img {
  transform: scale(1);
  transition-duration: 0.5s;
}

#lookbooksThumbList li:hover .lookbooksThumbImg img {
  transform: scale(1.1);
  transition-duration: 0.5s;
}

.lookbooksThumbTxt {
  width: 100%;
  margin-bottom: 15px;
  padding-bottom: 20px;
}

.lookbooksThumbLogo {
  width: 100%;
}

.lookbooksThumbTxt h4 {
  float: left;
  font-size: 17px;
}

.lookbooksThumbTxt h5 {
  float: right;
  font-size: 12px;
  margin-top: 2px;
}

/***
* footer
*/

#footer {
  padding: 0 15px;
}

#footerInner {
  padding-top: 100px;
  position: relative;
}

#genderList {
  width: 100%;
  margin: 0 auto 24px;
  padding: 0;
  overflow: hidden;
}

#genderList ul {
  width: 100%;
}

#genderList li {
  width: 100%;
  z-index: 1;
  border-radius: 0;
  position: relative;
}

.women #genderList li:first-child .genderListTtl::before,
.men #genderList li:last-child .genderListTtl::before {
  content: "[";
  padding-right: 20px;
  position: relative;
  top: -2px;
}

.women #genderList li:first-child .genderListTtl::after,
.men #genderList li:last-child .genderListTtl::after {
  content: "]";
  padding-left: 20px;
  position: relative;
  top: -2px;
}

.genderListImg {
  overflow: hidden;
}

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

#genderList li:last-child a::after {
  display: none;
}

#genderList li::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  opacity: 0;
  z-index: 3333;
  transform: scale(1);
  filter: blur(0);
  transition-duration: 0.5s;
  pointer-events: none;
}

#genderList img {
  transform: scale(1);
  transition-duration: 0.5s;
}

#genderList li p {
  margin-top: 10px;
  font-size: 13px;
}

#genderList a:hover {
  color: #000;
}

.genderListTtl {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 0;
  color: #fff;
  font-size: 24px;
  z-index: 5555;
}

#genderList li:first-child {
  float: none;
  margin-bottom: 2px;
}

#genderList li:last-child {
  float: none;
}

#genderList li:last-child .spBdT {
  display: block;
}

#btnBackToTop {
  padding-bottom: 223px;
  font-size: 21px;
  text-align: center;
  display: block;
}

#btnBackToTop a {
  position: relative;
}

#footerLogo {
  width: 160px;
  margin: 140px auto 100px;
}

#footerNav {
  margin-bottom: 70px;
  padding-bottom: 120px;
  text-align: center;
}

#footerNav li {
  margin-right: 0;
  font-size: 13px;
  line-height: 2.33;
  display: block;
}

#footerNav li:last-child {
  margin: 10px 0 0 0;
}

#footerNav li#footerNavSns {
  line-height: 1.8;
}

#footerLogo {
}

#footerNavSub h6 {
  font-size: 11px;
  position: absolute;
  bottom: 20px;
}

#footerNavPageTop {
  font-size: 14px;
  margin-bottom: 100px;
  text-align: center;
}

#footerCopy {
  font-size: 13px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

#footerNavSnsTtl {
  margin-top: 20px;
  display: inline-block;
}

/***
* 2026 Spring & Summer
*/

/* label Top */

#list #main {
  padding: var(--uaHeaderHeight) 0 0 0;
}

#list #mainTtl {
  width: 1000px;
  position: fixed;
  top: 50%;
  left: 50%;
  padding-bottom: 90px;
  transform: translate(-50%, -50%);
  z-index: -1;
}

#labelImgWrapper {
  width: 100%;
}

#labelImg.isReleased {
  position: absolute;
  top: var(--labelImgReleaseTop, 0px);
  left: 0;
  right: 0;
  transform: translate3d(0, 0, 0);
}

#labelImgTtl {
  width: 100%;
  height: var(--labelImgTtlHeight, 0px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 450ms cubic-bezier(0.23, 1, 0.32, 1), visibility 0s linear 450ms;
  position: sticky;
  top: var(--labelImgTtlTop, 100vh);
}

#labelImgTtl.isReady.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 450ms cubic-bezier(0.23, 1, 0.32, 1), visibility 0s linear 0s;
}

#labelImgTtlInner {
  width: 100%;
  font-size: 6.93vw;
  position: relative;
  top: 50%;
  padding-bottom: 20px;
  transform: translateY(-50%);
  text-align: center;
}

#labelImgTtlInner h2 {
  margin-bottom: 30px;
}

#labelImgTtlLink {
  font-family: "clarendon-urw", Helvetica, Arial, "sans-serif";
  font-weight: 500;
  font-size: 14px;
  position: relative;
  z-index: 1111;
}

/* Ver8.0：上下 margin は look.css の #look .noItem #labelLead が持つので削除。 */
#labelLead {
  padding: 0 15px;
  position: relative;
  font-size: 14px;
  line-height: 2;
  text-align: left !important;
  margin-bottom: 0;
}

#labelLead br.sp {
  display: none;
}

#labelLead ul {
  margin-top: 10px;
  text-align: center;
}

#labelLead li {
  display: inline-block;
  margin-right: 5px;
  position: relative;
}

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

#labelLead h3 {
  margin-bottom: 20px;
}

#labelLead .btn {
  width: 80px;
  padding: 2px 4px 3px;
  font-size: 16px;
  line-height: 1;
}

#labelLead .ja {
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 2.11;
}

section#labelTopLook {
  padding: 80px 0;
}

#labelTopLook .ttl {
  width: calc(100% - 30px);
  padding-left: 15px;
  position: relative;
  margin-bottom: 16px;
  background: none;
}

#labelTopLookList {
  width: 100%;
  overflow: hidden;
  margin-bottom: 41px;
}

#labelTopLookList ul {
  white-space: nowrap;
}

#labelTopLookInner #btnLookSeason {
  opacity: 1;
  visibility: visible;
  position: absolute;
  left: 0;
  transition-duration: 0.5s;
}

#labelTopLookInner:hover #btnLookSeason {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  transition-duration: 0.5s;
}

#labelTopLookInner #btnLookView {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  transition-duration: 0.5s;
}

#labelTopLookInner:hover #btnLookView {
  opacity: 1;
  visibility: visible;
  position: absolute;
  left: 0;
  transition-duration: 0.5s;
}

#labeltopSlider {
  width: 100%;
  margin-bottom: 30px;
  overflow: hidden;
}

#labeltopSliderInner {
  position: relative;
  width: 100%;
  touch-action: pan-y;
  min-height: 1px;
}

#labeltopSliderInner img {
  display: block;
  width: 100%;
  height: auto;
}

.labeltopCell {
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--cellW, 220px);
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.labeltopCellInner {
  width: 100%;
  transform: translate3d(0, 0, 0);
}

.labeltopCellLink {
  display: block;
  width: 100%;
  text-decoration: none;
}

.labeltopCell img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

#btnLook {
  width: calc(100% - 30px);
  margin: 0 auto;
  padding: 10px 0 12px;
  background: #fff;
  border: 1px solid #000;
  z-index: 1111;
  position: relative;
}

/* #btnLook（Lookbook の View More）の矢印は不要との指示で削除（2026-08-18）。 */

#btnLook p {
  width: 100%;
  padding-top: 13px;
  text-align: left;
  font-size: 14px;
  transition-duration: 0 !important;
}

#btnLook h4 {
  font-size: 14px;
  text-align: center;
}

#btnLook #btnViewMore {
  position: relative;
  font-size: 16px;
}

#btnLook #btnViewMore::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  transition-duration: 0.5s;
}

#btnLook:hover #btnViewMore::after {
  background: #ccc;
  transition-duration: 0.5s;
}

.loopTtl {
  width: 100%;
  margin-bottom: 140px;
  overflow: hidden;
  font-size: 6.4vw;
  white-space: nowrap;
}

.loopTtlYear {
  font-size: 7.47vw;
  position: relative;
  top: -1px;
}

.slick-dots {
  color: #999;
}

.slick-dots::before {
  content: "(";
}

.slick-dots::after {
  content: ")";
}

.slick-dots li {
  width: 12px !important;
  height: 25px !important;
  color: #bbb !important;
  padding-bottom: 6px !important;
}

.slick-dots li button {
  width: 12px !important;
  height: 25px !important;
  color: #bbb !important;
  font-size: 14px !important;
  border-bottom: 1px solid #fff;
  transition-duration: 0.5s;
}

.slick-dots li.slick-active {
  color: #000 !important;
  transition-duration: 0.5s;
}

.slick-dots li::after {
  content: "/";
  width: 50px;
  text-align: center;
  position: absolute;
  top: 4px;
  right: -30px;
}

.slick-dots li:last-child::after {
  display: none;
}

.swiper-slide {
  width: 50%;
  height: auto;
  overflow: visible !important;
}

.swiper-slide .inner {
  margin: auto 0;
}

.swiper-slide.is-small .inner {
  margin-top: auto;
  margin-bottom: 0;
}

#labelTopSlider .swiper-slide.is-small {
  margin-top: 100%;
  transition-duration: 0.5s;
}

#labelTopSlider .swiper-slide img {
  width: calc(100% - 16px);
  float: right;
  margin-right: 16px;
  transition-duration: 1s;
}

#labelTopSlider .swiper-slide.is-small img {
  width: calc(100% - 16px) !important;
  float: left;
  margin-left: 16px;
  transition-duration: 1s;
}

#labelTopLookInner a {
  position: relative;
  display: block;
}

/*
#btnLook {
  width: calc(100% - 31px);
  height: 130px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1111;
  text-align: center;
}

#btnLook p {
  width: 100%;
  padding-top: 14px;
  text-align: center;
  font-size: 12px;
  transition-duration: 0 !important;
}

#btnLookInner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

#btnLook #btnViewMore {
  position: relative;
  font-size: 13px;
}

#btnLook #btnViewMore::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #ccc;
  position: absolute;
  bottom: 0;
  left: 0;
}
*/

.itemSort {
  width: 78%;
  float: right;
  margin: -29px 0 30px;
  font-size: 14px;
  line-height: 1.39;
  position: relative;
  z-index: 2222;
  overflow: hidden;
}

.itemSort ul {
  width: 100%;
  margin-left: 19px;
}

.itemSort li {
  display: inline-block;
}

.itemSort li::after {
  content: " / ";
}

.itemSort li:last-child::after {
  display: none;
}

.itemSort li.active a {
  color: #999;
}

h2 span {
  color: #000;
  display: inline-block;
  transition: transform 1.6s cubic-bezier(0.65, 0.02, 0.23, 1);
  transform: translate(20%, 100%);
  position: relative;
  z-index: 1;
}

h2 span:before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(-40%);
  transition: transform 1.6s cubic-bezier(0.65, 0.02, 0.23, 1);
}

h2 span.row {
  overflow: hidden;
  padding: 0 10px;
  line-height: 1.18;
  display: block;
  transform: none;
}

h2 span.row:before {
  display: none;
}

h2 .animate {
  transform: translate(0, 0);
}

h2 .animate:before {
  transform: translateY(100%);
}

.ttlWrap,
#womenLabelTtl {
  position: relative;
}

.btnFilter {
  position: absolute;
  bottom: 15px;
  right: 0;
  font-size: 12px;
  z-index: 2223;
}

#itemImgThumbAnchorSp li {
  border: 1px solid #fff;
  transition-duration: 0.5s;
} 

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

.filterWrap {
  width: 100%;
  position: absolute;
  top: 86px;
  left: 0;
  padding: 10px 0 20px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  line-height: 1.85;
  z-index: 2222;
  margin-top: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 800ms cubic-bezier(0.23, 1, 0.32, 1);
}

.filterWrap::after {
  content: '';
  width: 100%;
  height: 1px;
  background: #ccc;
  position: absolute;
  bottom: 0;
}

#womenLabel .filterWrap {
  top: 78px;
}

.filterWrap.active {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
  transition: all 800ms cubic-bezier(0.23, 1, 0.32, 1);
}

.filterWrap a {
  color: #bbb;
}

.filterWrap li.active a {
  color: #000;
}

.genderTop #subGenderTtl {
  display: none;
}

#subGenderTtl {
  border-top: 1px solid #000;
}

#subGenderTtl {
  padding: 70px 0 0;
  font-size: 14px;
  line-height: 1.17;
  text-align: center;
  color: #bbb;
  border-top: 1px solid #000;
}

#subGenderTtl strong {
  color: #000;
}

.btnFilter {
  position: absolute;
  bottom: 15px;
  right: 0;
  font-size: 12px;
  z-index: 3334;
}

.btnFilter::before {
  content: "( ";
}

.btnFilter::after {
  content: " )";
}

.btnFilter a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #000;
}

.jsFilterBtn {
  cursor: pointer;
}

.jsFilterBtn .filterIcon {
  position: relative;
  width: 11px;
  height: 9px;
  display: block;
  margin-top: 2px;
}

.jsFilterBtn .line,
.jsFilterBtn .dot {
  position: absolute;
  transition: all 400ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
}

.jsFilterBtn .line {
  left: 0;
  width: 11px;
  height: 1px;
  background: #000;
  transform-origin: center center;
}

.jsFilterBtn .line1 {
  top: 0;
}

.jsFilterBtn .line2 {
  top: 4px;
}

.jsFilterBtn .line3 {
  top: 8px;
}

.jsFilterBtn .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  transform: scale(0.75);
  transform-origin: center center;
}

.jsFilterBtn .dot1 {
  top: -1.5px;
  left: 1px;
}

.jsFilterBtn .dot2 {
  top: 2.5px;
  left: 7px;
}

.jsFilterBtn .dot3 {
  top: 6.5px;
  left: 1px;
}

.btnFilter.isClose .jsFilterBtn .line1 {
  top: 4px;
  transform: rotate(45deg);
}

.btnFilter.isClose .jsFilterBtn .line2 {
  opacity: 0;
}

.btnFilter.isClose .jsFilterBtn .line3 {
  top: 4px;
  transform: rotate(-45deg);
}

.btnFilter.isClose .jsFilterBtn .dot {
  opacity: 0;
  transform: scale(0);
}

.filterWrap {
  display: none;
}

.filterWrap.active {
  display: block;
}

#subItemAnchor,
#subGenderAnchor {
  padding-top: 60px;
}

#subItemAnchor {
  padding-top: 40px;
}

#listTop {
  width: 100%;
  position: relative;
}

#itemDetail {
  margin-top: var(--uaHeaderHeight);
}

/******************* 26AW ********************/

.num {
  font-size: 1.1em;
  letter-spacing: -0.02em;
}

.btnViewMore {
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  padding: 5px 8px;
  background: #fff;
  font-size: 11px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(115%);
  transition:
    opacity 0.3s ease 0.65s,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.65s;
}

.btnViewMore::after {
  content: "+";
  padding-left: 4px;
  display: inline-block;
}

#lookList > ul > li.is-btn-visible .btnViewMore {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

#lookList > ul > li .animate-elm.show .btnViewMore {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

/* lookItem */
.btnItemClose {
  width: calc(100% - 20px);
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 15px;
  z-index: 1111;
  padding: 20px 0 20px 35px;
  display: block;
  background: url("../img/icon_close.svg") left no-repeat;
  background-size: 20px auto;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s var(--motion-soft), visibility 0s linear 0.45s;
}

.lookItem.is-show .btnItemClose {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.45s var(--motion-soft) 0.18s, visibility 0s linear 0.18s;
}

.lookItem.is-hide .btnItemClose {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--motion-soft), visibility 0s linear 0.35s;
}

.lookItem {
  width: calc(100% - 60px);
  height: 100%;
  position: fixed;
  top: 0;
  left: -100%;
  padding: 60px 15px;
  background: #fff;
  z-index: 4444;
  overflow-y: scroll;
  visibility: hidden;
  pointer-events: none;
  transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.8s;
}

.lookItem.is-show {
  visibility: visible;
  pointer-events: auto;
  left: 0;
  transition-delay: 0s;
}

.lookItem.is-hide {
  visibility: hidden;
  pointer-events: none;
  left: -100%;
  transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.8s;
}

.lookItem.is-force-hide {
  transition: none;
}

.lookItem::-webkit-scrollbar {
  display: none;
}

.lookItemList {
  margin-bottom: 60px;
}

.lookItemList li {
  width: calc(100% / 2);
  float: left;
  margin-bottom: 10px;
}

#look .itemThumbListTxt {
  padding: 10px;
  font-size: 12px;
}

#look .thumbBtn {
  bottom: 10px;
  margin-right: -1px;
  padding: 6px 0;
  border: 1px solid #ccc;
}

#labelListWrap {
  width: 100%;
  padding-top: 50px;
  display: none;
}

#labelListWrap h5 {
  float: none;
}

#labelListWrap li {
  padding: 10px 0;
  border-top: 1px solid #ccc;
}

#labelListWrap li:last-child {
  border-bottom: 1px solid #ccc;
}

.labelListName {
  width: auto;
  margin-bottom: 6px;
  font-size: 16px;
}

#labelListWrap h5.labelListImage {
  width: auto;
  float: right;
}

.labelListImage img {
  width: 60px;
  margin-top: -22px;
  display: inline-block;
  font-size: 14px;
}

.labelListLooks {
  width: auto;
  font-size: 14px;
  margin-bottom: 6px;
}

.labelListItems {
  width: auto;
  font-size: 14px;
}

#btnlabelImg span{
  position: relative;
}

#btnlabelImg span::after{
  content: "";
  width: 0;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  animation: bdAnimaiton 2s linear infinite;
}

@keyframes bdAnimaiton {
  0% {
    width: 0%;
  }
  
  33% {
    width: 100%;
  }

  66% {
    width: 0%;
    left: auto;
    right: 0;
  }
  
  100% {
    width: 0%;
  }
}
  
}


@media only print, only screen and (min-width: 18.75em) {
  #labelImgMain {
    transition: none !important;
  }
}

/* Ver8.3：iOS Safari のリンクプレビュー（長押しコールアウト）をSPメニューで抑止する */
@media only screen and (max-width: 999px) {
  #nav a {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
  }

  /* PC用のプレビューカードはSPでは出さない */
  #nav .navDropdown .df {
    display: none;
  }

  /* SPではドロップダウンのカード装飾を外し、中身だけを見せる */
  #nav .navDropdown {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
}
