﻿@charset "UTF-8";

/* =========================================================
   タイツ商品一覧
   ========================================================= */


/* =========================================================
   タイツを探す
   ========================================================= */

.tights-find-links {
  width: 100%;
  margin: 0 0 0;
  padding: 22px 24px;
  box-sizing: border-box;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}


/* =========================================================
   デニール別
   ========================================================= */

.tights-denier-links {
  width: 100%;
  margin: 0;
  padding: 0;
}

.tights-denier-links h2 {
  margin: 0 0 12px;
  padding: 0;
  color: #333;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.tights-denier-links__list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 16px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tights-denier-links__list li {
  flex: 0 0 auto;
}

.tights-denier-links__list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background-color: #fff;
  color: #555;
  text-decoration: none;
  line-height: 1;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.tights-denier-links .denier-number {
  display: block;
  margin-bottom: 3px;
  font-size: 1.2rem;
  font-weight: 600;
}

.tights-denier-links .denier-unit {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: #777;
}


/* =========================================================
   デニール：PC
   ========================================================= */

@media screen and (min-width: 768px) {

  .tights-denier-links__list a:hover {
    border-color: #E60012;
    color: #E60012;
    background-color: #fff;
  }

}


/* =========================================================
   色別
   ========================================================= */

.tights-color-links {
  margin: 12px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid #f0f0f0;
}

.tights-color-links h2 {
  margin: 12px 0 12px;
  padding: 0;
  color: #333;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.tights-color-links__list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: none;
  gap: 5px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.tights-color-links__list li {
  flex: 0 0 auto;
}


/* =========================================================
   色玉
   ========================================================= */

.tights-color-links__circle {
  display: block;
  width: 52px;
  height: 52px;
  margin: 0 auto 5px;
  border: 1px solid #ddd;
  border-radius: 50%;
  box-sizing: border-box;
}


/* 色 */

.tights-color-links__circle--all {
  background: linear-gradient(
    135deg,
    #ff1744 0%,
    #ff9100 20%,
    #ffd600 38%,
    #43d17a 55%,
    #00b8d9 70%,
    #536dfe 84%,
    #d500f9 100%
  );
  border-color: #ccc;
}

.tights-color-links__circle--black {
  background: #222;
}

.tights-color-links__circle--beige {
  background: #d8b99a;
}

.tights-color-links__circle--red {
  background: #E60012;
}

.tights-color-links__circle--white {
  background: #fff;
}

.tights-color-links__circle--green {
  background: #65966b;
}

.tights-color-links__circle--pink {
  background: #e6a4b5;
}

.tights-color-links__circle--blue {
  background: #5d7fae;
}

.tights-color-links__circle--purple {
  background: #8970a5;
}

.tights-color-links__circle--yellow {
  background: #d9c35a;
}

.tights-color-links__circle--brown {
  background: #80604c;
}

.tights-color-links__circle--gray {
  background: #999;
}

.tights-color-links__circle--navy {
  background: #344766;
}


/* =========================================================
   色名
   ========================================================= */

.tights-color-links__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}

.tights-color-links__sub-label {
  display: block;
  margin-top: 3px;
  color: #777;
  font-size: 0.65rem;
  font-weight: 400;
}


/* =========================================================
   色別：PC
   ========================================================= */

@media screen and (min-width: 768px) {

  .tights-color-links__list a {
    width: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .tights-color-links__list a > span:not(.tights-color-links__circle) {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .tights-color-links__list a:hover {
    color: #E60012;
  }

  .tights-color-links__list a:hover
  .tights-color-links__circle {
    border-color: #E60012;
  }

}


/* =========================================================
   タイツ：スマートフォン
   ========================================================= */

@media screen and (max-width: 767px) {

  .tights-find-links {
    margin: 10px 0 10px;
    padding: 16px 0;
  }

  /* デニール */

  .tights-denier-links h2 {
    margin-bottom: 8px;
    font-size: 1.25rem;
  }

  .tights-denier-links__list {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0;
    padding: 0 16px 4px;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .tights-denier-links__list::-webkit-scrollbar {
    display: none;
  }

  .tights-denier-links__list a {
    width: 58px;
    height: 58px;
  }

  .tights-denier-links .denier-number {
    font-size: 1.1rem;
  }

  .tights-denier-links .denier-unit {
    font-size: 0.7rem;
  }


  /* 色別 */

  .tights-color-links {
    margin: 28px 0 0;
    padding: 18px 0 0;
    border-top: 1px solid #f0f0f0;
  }

  .tights-color-links h2 {
    margin: 8px 0 8px;
    font-size: 1.25rem;
  }

  .tights-color-links__list {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 4px;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0;
    padding: 0 16px 4px;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .tights-color-links__list::-webkit-scrollbar {
    display: none;
  }

  .tights-color-links__list a {
    width: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .tights-color-links__circle {
    width: 44px;
    height: 44px;
    margin: 0 auto 5px;
  }

  .tights-color-links__label {
    font-size: 0.75rem;
  }

  .tights-color-links__sub-label {
    margin-top: 2px;
    font-size: 0.65rem;
  }

}


/* =========================================================
   スクロールバー
   ========================================================= */

.tights-denier-links__scrollbar,
.tights-color-links__scrollbar {
  display: none;
}

.tights-denier-links__scrollbar-inner,
.tights-color-links__scrollbar-inner {
  display: block;
  width: 24px;
  height: 3px;
  background: #999;
  border-radius: 3px;
  transform: translateX(0);
}

@media screen and (max-width: 767px) {

  .tights-denier-links__scrollbar,
  .tights-color-links__scrollbar {
    display: block;
    position: relative;
    width: 80px;
    height: 3px;
    margin: 4px auto 0;
    background: #e5e5e5;
    border-radius: 3px;
    overflow: hidden;
  }

  .tights-denier-links__scrollbar-inner,
  .tights-color-links__scrollbar-inner {
    width: 24px;
  }

}


/* =========================================================
   温感・冬対策タイツリンク
   ========================================================= */

.tights-group-links {
  max-width: 900px;
  margin: 50px auto 20px;
  padding: 0 20px;
  color: #484848;
}

.tights-group-links .product-description {
  margin: 0 0 40px;
  font-size: 14px;
  line-height: 1.9;
  color: #666;
}

.tights-group-links__heading {
  position: relative;
  margin-bottom: 12px;
  padding-left: 14px;
}

.tights-group-links__heading::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 3px;
  height: 24px;
  background: #E60012;
}

.tights-group-links__heading h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: #333;
}

.tights-group-links__description {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.8;
  color: #777;
}

.tights-group-links__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #ddd;
}

.tights-group-links__list li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #ddd;
}

.tights-group-links__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 8px 0 4px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}

.tights-group-links__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #E60012;
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.2s ease;
}

.tights-group-links__list a:hover {
  padding-left: 10px;
  color: #E60012;
}

.tights-group-links__list a:hover .tights-group-links__arrow {
  transform: translateX(4px);
}


/* =========================================================
   温感・冬対策タイツリンク：スマートフォン
   ========================================================= */

@media screen and (max-width: 767px) {

  .tights-group-links {
    margin: 38px auto 15px;
    padding: 0 15px;
  }

  .tights-group-links .product-description {
    margin-bottom: 32px;
    font-size: 13px;
    line-height: 1.85;
  }

  .tights-group-links__heading {
    margin-bottom: 10px;
    padding-left: 12px;
  }

  .tights-group-links__heading::before {
    top: 3px;
    width: 3px;
    height: 21px;
  }

  .tights-group-links__heading h2 {
    font-size: 17px;
  }

  .tights-group-links__description {
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.75;
  }

  .tights-group-links__list a {
    min-height: 54px;
    padding: 0 4px;
    font-size: 14px;
  }

  .tights-group-links__arrow {
    font-size: 23px;
  }

}