:root {
  --main-color: #333;
  --sub-color: #777;
  --sa-color: #ea0b29;
  --co-color: #828282;
  --otb-color: #b4946c;
}
/* Title */
.u-title-page {
  color: var(--main-color);
  font: 400 20px / 1.4 "Noto Sans JP", sans-serif;
}

.u-title-top {
  text-align: center;
  color: #000;
  font: 700 20px / 1.4 "Noto Sans JP", sans-serif;
}
.u-title-top span {
  display: block;
  margin: 10px 0 0;
  color: #999;
  font: 700 10px / 1.4 "Lato", sans-serif;
  letter-spacing: 0.08em;
}

.u-title {
  color: var(--main-color);
  font: 700 18px / 1.4 "Noto Sans JP", sans-serif;
}

.u-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 1140px;
}

.u-title-link {
  text-decoration: underline;
  color: #ea0b29;
  font: 400 14px / 1.4 "Noto Sans JP", sans-serif;
  transition: 0.3s;
}
.u-title-link:hover {
  text-decoration: underline;
  opacity: 0.6;
}

.u-title-m {
  color: var(--main-color);
  font: 700 14px / 1.4 "Noto Sans JP", sans-serif;
}

.u-title-s {
  color: var(--main-color);
  font: 700 12px / 1.4 "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 750px) {
  .u-title-page {
    font-size: 16px;
  }

  .u-title-top {
    font-size: 20px;
  }
  .u-title-top span {
    font-size: 10px;
  }

  .u-title {
    font-size: 16px;
  }

  .u-title-wrap {
    display: block;
  }
}
/* Accordion */
.u-accordion {
  width: 100%;
  border-bottom: 1px solid #ddd;
}

.u-accordion * {
  font-size: 14px;
}

.u-accordion li {
  position: relative;
  border-top: 1px solid #ddd;
}

.u-accordion a {
  position: relative;
  display: block;
  width: 100%;
  padding: 15px 20px 15px 20px;
  background: #fff;
  cursor: pointer;
}

.u-accordion-child a,
.u-accordion-child .u-form-checkbox label,
.u-accordion-child .u-form-radio label {
  background: #f6f6f6;
}

.u-accordion-gchild a,
.u-accordion-gchild .u-form-checkbox label,
.u-accordion-gchild .u-form-radio label {
  background: #eee;
}

.u-accordion-ggchild a,
.u-accordion-ggchild .u-form-checkbox label,
.u-accordion-ggchild .u-form-radio label {
  background: #e8e8e8;
}

.u-accordion-arrow:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  transform: rotate(45deg);
  z-index: 10;
  display: block;
  width: 9px;
  height: 9px;
  border-top: 1px solid #777;
  border-right: 1px solid #777;
  pointer-events: none;
}

.u-accordion-btn:before {
  content: none;
}
.u-accordion-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 7%;
  transform: translateY(-50%);
  display: block;
  width: 14px;
  height: 14px;
  background: url(../s/store/common/icon-arrow-off.svg) no-repeat;
  background-size: contain;
  background-position: center;
}

.u-accordion-btn.is-open:after {
  background: url(../s/store/common/icon-arrow-on.svg) no-repeat;
  background-size: contain;
  background-position: center;
}

.u-accordion > li > .u-accordion-btn.is-open > span:before,
.u-accordion > li > .u-accordion-btn.is-open > span:after {
  background: #fff;
}

.u-accordion-rarrow:before {
  content: "";
  position: absolute;
  transform: rotate(45deg);
  top: 42%;
  left: auto;
  right: 7.7%;
  display: block;
  width: 9px;
  height: 9px;
  border-top: 1px solid #777;
  border-right: 1px solid #777;
}

.u-accordion-double {
  display: flex;
  flex-wrap: wrap;
}

.u-accordion-double li {
  width: 50%;
}

.u-accordion-double li:nth-of-type(odd) {
  border-right: 1px solid #ddd;
}

.u-accordion-double a,
.u-accordion-double label {
  height: 100%;
}

.u-accordion .u-form-checkbox label,
.u-accordion .u-form-radio label {
  position: relative;
  display: block;
  width: 100%;
  padding: 15px 20px 15px 15px;
}

.u-accordion .u-accordion-space {
  display: block;
  padding: 15px 20px 15px 15px;
  background: #fff;
}
.u-accordion .u-accordion-child .u-accordion-space {
  background: #f6f6f6;
}
.u-accordion .u-accordion-gchild .u-accordion-space {
  background: #eee;
}
.u-accordion .u-accordion-ggchild .u-accordion-space {
  background: #e8e8e8;
}

.u-accordion .u-form-checkbox li:before,
.u-accordion .u-form-radio li:before {
  content: none;
}

.u-accordion .u-form-checkbox,
.u-accordion .u-form-radio {
  cursor: pointer;
}

.u-accordion .u-form-checkbox:hover,
.u-accordion .u-form-radio:hover {
  opacity: 0.6;
}

.u-accordion-input[type="checkbox"] {
  display: none;
}

.u-accordion-ggchild a,
.u-accordion .u-accordion-arrow {
  padding: 15px 20px 15px 40px;
}
/* Button */
.u-btn {
  width: 100%;
  font: 400 14px / 1.4 "Noto Sans JP", serif;
  color: var(--main-color);
  text-decoration: none;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* width */
.u-btn-w170 {
  width: 170px;
}
.u-btn-w240 {
  width: 240px;
}
.u-btn-w220 {
  width: 220px;
}
.u-btn-w300 {
  width: 300px;
}
.u-btn-w335 {
  width: 335px;
}
.u-btn-w400 {
  width: 400px;
}
.u-btn-w500 {
  width: 500px;
}
.u-btn-w600 {
  width: 600px;
}

/* height */
.u-btn-h40 {
  height: 40px;
}
.u-btn-h50 {
  height: 50px;
}
.u-btn-h60 {
  height: 60px;
}
.u-btn-h70 {
  height: 70px;
}

/* radius */
.u-btn-radius {
  border-radius: 5px;
}
.u-btn-radius-full {
  border-radius: 100px;
}

/* outline */
.u-btn-outline {
  border: 1px solid var(--main-color);
}
.u-btn-outline-sa {
  border: 1px solid var(--sa-color);
  color: var(--sa-color);
}
.u-btn-outline-co {
  border: 1px solid var(--co-color);
  color: var(--co-color);
}
.u-btn-outline-otb {
  border: 1px solid var(--otb-color);
  color: var(--otb-color);
}
.u-btn-outline-gray {
  border: 1px solid #999;
  color: #999;
}

/* background */
[class*="u-btn-bg"] {
  color: #fff;
}
.u-btn-bg {
  background-color: var(--main-color);
}
.u-btn-bg-sa {
  background-color: var(--sa-color);
}
.u-btn-bg-co {
  background-color: var(--co-color);
}
.u-btn-bg-otb {
  background-color: var(--otb-color);
}
.u-btn-bg-white {
  background-color: #fff;
}

[class*="u-btn-gender"] {
  font-weight: 500;
}
.u-btn-gender-mens {
  color: #5bf;
}
.u-btn-gender-ladies {
  color: #f88;
}
.u-btn-gender-junior {
  color: #fc0;
}

/* icon */
.u-btn .u-icon {
  margin: 0 15px 0 0;
}
[class*="u-btn-gender"] .u-icon {
  margin: 0 5px 0 -5px;
}

/* SP */
@media screen and (max-width: 750px) {
  .u-btn {
    width: calc(100% - 40px);
  }
  [class*="u-btn-gender"] {
    width: calc(108 * (100vw / 375));
    height: calc(35 * (100vw / 375));
    font-weight: 700;
    font-size: 12px;
    line-height: 1.2;
  }
  [class*="u-btn-gender"] .u-icon {
    margin: 0 calc(10 * (100vw / 375)) 0 0;
  }
}
/* Card */
.u-card,
.u-card > a {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* 中央揃え */
.u-card-content-center,
.u-card-content-center > a {
  align-items: center;
}

/* 画像 */
.u-card-image img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
.u-card-image-rounded,
.u-card-image-rounded * {
  border-radius: 10px;
}
.u-card-image-rounded-full,
.u-card-image-rounded-full * {
  border-radius: 100%;
}

/* iframe */
.u-card iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 287 / 162;
  border-radius: 10px;
}

/* プロフィール */
.u-card-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}
.u-card-profile-image {
  width: 45px;
}
.u-card-profile-image img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
.u-dropdown {
  position: relative;
  width: max-content;
  min-width: 120px;
  height: 30px;
  background: url(../../img/arrow-down.png) no-repeat top 9px right 9px;
  background-color: #fff;
  border: 1px solid #ddd;
  box-sizing: border-box;
  text-align: left;
  font-size: 11px;
}

.u-dropdown-label {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 30px 0 10px;
  cursor: pointer;
}

.u-dropdown-list {
  width: calc(100% + 2px);
  min-width: 120px;
  border: 1px solid #ddd;
  background: #fff;
  padding: 0;
  position: relative;
  left: -1px;
  z-index: 10;
  visibility: hidden;
}

.u-dropdown:hover .u-dropdown-list {
  visibility: visible;
}

.u-dropdown-list li:not(:first-of-type) {
  border-top: 1px solid #ddd;
}
.u-dropdown-list li a {
  height: 30px;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0 10px;
}

.u-dropdown-list li.on a {
  background: #666;
  color: #fff;
  pointer-events: none;
}

.u-dropdown-list li a:hover {
  background: #f6f6f6;
  color: #333;
  opacity: 1;
}
/* u-form */
.u-form-label {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
}
.u-form-checkbox input[type="checkbox"],
.u-form-radio input[type="radio"] {
  display: none;
}
.u-form-label {
  position: relative;
  cursor: pointer;
}
.u-form-label span::before,
.u-form-label span::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
.u-form-name {
  position: relative;
  padding: 0 0 0 30px;
  font-size: 14px;
  color: var(--main-color);
  display: block;
}
/* u-form-checkbox */
.u-form-checkbox {
  position: relative;
}
.u-form-checkbox label span::before,
.u-form-checkbox label span::after {
  width: 20px;
  height: 20px;
  left: 5px;
}
.u-form-checkbox label span::before {
  background: url(../../img/form-checkbox-off.svg) no-repeat center center;
}
.u-form-checkbox input[type="checkbox"]:checked + label span::after {
  background: url(../../img/form-checkbox-on.svg) no-repeat center center;
}
/* u-form-radio */
.u-form-radio label span::before {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  left: 5px;
}
.u-form-radio label span::after {
  background-color: #333;
  border-radius: 50%;
  opacity: 0;
  width: 12px;
  height: 12px;
  left: 9px;
}
.u-form-radio input[type="radio"]:checked + label span::after {
  opacity: 1;
}
/* u-form-text */
.u-form-text-box {
  position: relative;
}
.u-form-text {
  width: 100%;
  border: none;
  border-radius: 5px;
  box-sizing: border-box;
  padding: 12px;
}
.u-form-text-border {
  border: 1px solid #ddd;
}
.u-form-text-radius {
  border-radius: 25px;
}
.u-form-text-h50 {
  height: 50px;
}
.u-form-text-h40 {
  height: 40px;
}
.u-form-text-h30 {
  height: 30px;
}
.u-form-text-gray {
  background-color: #f6f6f6;
}
.u-form-text-white {
  background-color: #fff;
}
.u-form-text-button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(-50%, -50%);
}

/* SP */
@media screen and (max-width: 750px) {
  .u-form-text-box {
    width: calc(100% - 40px);
  }
}
[class*="u-gap-"] {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.u-gap-center {
  align-items: center;
}

.u-gap-10 {
  gap: 10px;
}
.u-gap-15 {
  gap: 15px;
}
.u-gap-20 {
  gap: 20px;
}
.u-gap-25 {
  gap: 25px;
}
.u-gap-30 {
  gap: 30px;
}
.u-gap-35 {
  gap: 35px;
}
.u-gap-40 {
  gap: 40px;
}
.u-gap-50 {
  gap: 50px;
}
.u-gap-60 {
  gap: 60px;
}
.u-gap-70 {
  gap: 70px;
}
.u-gap-80 {
  gap: 80px;
}
.u-gap-90 {
  gap: 90px;
}
.u-gap-100 {
  gap: 100px;
}
/* Header */
.u-hr {
  width: 100%;
  border-top: 1px solid #ddd;
  border-bottom: 9px solid #eee;
  border-left: none;
  border-right: none;
}
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&display=swap");

/* Icon */
.u-icon {
  width: 20px;
  height: 20px;
  display: block;
  background-color: #ff9a9a;
}
.u-icon-search-black {
  background: url(../../img/icon-search-black.svg) no-repeat;
}
.u-icon-search-white {
  background: url(../../img/icon-search-white.svg) no-repeat;
}
.u-icon-search-red {
  background: url(../../img/icon-search-red.svg) no-repeat;
}
.u-icon-search-co {
  background: url(../../img/icon-search-co.svg) no-repeat;
}
.u-icon-search-otb {
  background: url(../../img/icon-search-otb.svg) no-repeat;
}
.u-icon-favorite-black {
  background: url(../../img/icon-favorite-black.svg) no-repeat;
}
.u-icon-cart-black {
  width: 25px;
  height: 19px;
  background: url(../../img/icon-cart-black.svg) no-repeat;
}
.u-icon-cart-white {
  width: 25px;
  height: 19px;
  background: url(../../img/icon-cart-white.svg) no-repeat;
}
.u-icon-pin-black {
  width: 14px;
  height: 20px;
  background: url(../../img/icon-pin-black.svg) no-repeat;
}
.u-icon-pin-white {
  width: 14px;
  height: 20px;
  background: url(../../img/icon-pin-white.svg) no-repeat;
}
.u-icon-pin-red {
  width: 15px;
  height: 21px;
  background: url(../../img/icon-pin-red.svg) no-repeat;
}
.u-icon-pin-co {
  width: 15px;
  height: 21px;
  background: url(../../img/icon-pin-co.svg) no-repeat;
  background-size: contain;
}
.u-icon-pin-otb {
  width: 15px;
  height: 21px;
  background: url(../../img/icon-pin-otb.svg) no-repeat;
  background-size: contain;
}
.u-pagination {
  display: flex;
  gap: 5px;
}
.u-page-link {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--main-color);
}
.u-page-link.active {
  background-color: #f6f6f6;
  pointer-events: none;
}
.u-page-prev {
  background: url(../../img/icon-pagination-arrow.svg) no-repeat;
}
.u-page-next {
  background: url(../../img/icon-pagination-arrow.svg) no-repeat;
  transform: rotate(180deg);
}
.u-official-icons {
  display: flex;
  gap: 20px;
}
.u-official-icons a {
  display: block;
}
.u-official-icons img {
  width: 60px;
}

.u-icon-gender-mens {
  width: 17px;
  height: 19px;
  background: url(../../img/icon-gender-mens.svg) no-repeat;
}
.u-icon-gender-ladies {
  width: 17px;
  height: 19px;
  background: url(../../img/icon-gender-ladies.svg) no-repeat;
}
.u-icon-gender-junior {
  width: 17px;
  height: 19px;
  background: url(../../img/icon-gender-junior.svg) no-repeat;
}

@media screen and (max-width: 750px) {
  .u-official-icons {
    gap: 10px;
  }
  .u-official-icons img {
    width: 40px;
  }

  .u-icon-gender-mens,
  .u-icon-gender-ladies,
  .u-icon-gender-junior {
    width: 12px;
    height: 13px;
    background-size: contain;
  }
}
.u-info {
  width: 100%;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.u-info-tr {
  padding: 30px 0;
  display: flex;
}
.u-info-tr:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.u-info-th {
  width: 120px;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  font-family: "Lato", sans-serif;
  font-size: 11px;
  line-height: 1.5;
}
.u-info-td {
  width: calc(100% - 120px);
  display: grid;
  flex-direction: column;
  gap: 10px;
}
.u-info-td-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.u-info-td .u-text-link {
  display: block;
}
.u-info-new {
  font-weight: bold;
  color: #ea0b29;
}
.u-info-date {
  font-weight: 400;
  color: #777;
}
.u-info-label {
  width: max-content;
  padding: 5px 20px;
  box-sizing: border-box;
  display: inline-block;
}
.u-info-label-red {
  border: 1px solid #ea0b29;
  color: #ea0b29;
}
.u-info-label-gray {
  border: 1px solid #999;
  color: #999;
}
/* SP */
@media screen and (max-width: 750px) {
  .u-info {
    width: calc(100% - 40px);
    margin: 0 20px;
  }
  .u-info-tr {
    flex-direction: column;
  }
  .u-info-th {
    margin-bottom: 10px;
  }
  .u-info-td {
    width: 100%;
  }
}
/* Item */
.u-item {
  position: relative;
}
.u-item > a {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.u-item-image {
  position: relative;
}
.u-item-image img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.u-item-soldout {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 10px;
  color: white;
}

.u-item-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.u-item-gender {
  font-size: 10px;
  color: #999;
}

/* カラーチップ */
.u-item-colors {
  display: none;
  flex-wrap: wrap;
  gap: 5px;
}
[class^="u-item-color-"] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.u-item-color-0 {
  border: 1px solid #ddd;
}
.u-item-color-1 {
  background-color: #cccccc;
}
.u-item-color-2 {
  background-color: #00cc00;
}
.u-item-color-3 {
  background-color: #ffff00;
}
.u-item-color-4 {
  background-color: #996600;
}
.u-item-color-5 {
  background-color: #eeddbb;
}
.u-item-color-6 {
  background-color: #ff0000;
}
.u-item-color-7 {
  background-color: #ff6699;
}
.u-item-color-8 {
  background-color: #9933ff;
}
.u-item-color-9 {
  background-color: #0099ff;
}
.u-item-color-I {
  background-color: #000080;
}
.u-item-color-B {
  background-color: #000;
}
.u-item-color-C {
  background-color: #92964c;
}
.u-item-color-D {
  background-color: #ff9900;
}
.u-item-color-A {
  background-image: url(../../img/color_check_A.png);
}
.u-item-color-E {
  background-image: url(../../img/color_check_E.png);
}
.u-item-color-F {
  background-image: url(../../img/color_check_F.png);
}
.u-item-color-G {
  background-image: url(../../img/color_check_G.png);
}
.u-item-color-H {
  background-image: url(../../img/color_check_H.png);
}
.u-item-color-Z {
  background-image: url(../../img/color_check_Z.png);
}

.u-item-price-sale {
  color: var(--sa-color);
}

/* SP */
@media screen and (max-width: 750px) {
  .u-item-meta {
    padding: 0 10px;
  }
  .u-item-colors {
    display: flex;
  }
}
/* List */

/* PC用リスト - 3列 - 画像287px */
.u-grid-cols3-287 {
  max-width: 893px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 37px 15px;
}
.u-grid-cols3-287 > * {
  width: 287px;
}

/* PC用リスト - 3列 - 画像370px */
.u-grid-cols3-370 {
  max-width: 1140px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 15px;
}
.u-grid-cols3-370 > * {
  width: 370px;
}

/* PC用リスト - 4列 - 画像270px */
.u-grid-cols4-270 {
  max-width: 1140px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 37px 20px;
}
.u-grid-cols4-270 > * {
  width: 270px;
}

/* PC用リスト - 4列 - 画像140px */
.u-grid-cols4-140 {
  max-width: 570px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 37px 3px;
}
.u-grid-cols4-140 > * {
  width: 140px;
}

/* PC用リスト - 4列 - 画像212px */
.u-grid-cols4-212 {
  max-width: 893px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 37px 15px;
}
.u-grid-cols4-212 > * {
  width: 212px;
}

/* PC用リスト - 5列 - 画像212px */
.u-grid-cols5-212 {
  max-width: 1140px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px 20px;
}
.u-grid-cols5-212 > * {
  width: 212px;
}

/* PC用リスト - 8列 - 画像120px */
.u-grid-cols8-120 {
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 30px 20px;
}
.u-grid-cols8-120 > * {
  width: 120px;
}

/* PC用リスト - 8列 - 画像132px */
.u-grid-cols8-132 {
  max-width: 1140px;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 30px 12px;
}
.u-grid-cols8-132 > * {
  width: 132px;
}

/* ランキング */
.u-ranking > * {
  position: relative;
  counter-increment: items;
}
.u-ranking > *::before {
  width: 30px;
  height: 30px;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  content: counter(items);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.u-ranking > *:nth-child(1)::before {
  background-color: #ffdd00;
}
.u-ranking > *:nth-child(2)::before {
  background-color: #bebebe;
}
.u-ranking > *:nth-child(3)::before {
  background-color: #bb8800;
}
.u-ranking > *:nth-child(n + 4)::before {
  background-color: var(--main-color);
}

/* SP用スクロールリスト - 画像210px(デザイン) */
.u-horizontal-scroll-lg {
  width: 100vw;
  overflow-y: hidden;
  overflow-x: scroll;
}
.u-horizontal-scroll-lg .u-horizontal-scroll-items {
  width: max-content;
  display: flex;
  gap: 10px;
  padding: 0 20px;
}
.u-horizontal-scroll-lg .u-horizontal-scroll-items > * {
  width: calc(210 * (100vw / 375));
}

/* SP用スクロールリスト - 画像150px(デザイン) */
.u-horizontal-scroll-md {
  width: 100vw;
  overflow-y: hidden;
  overflow-x: scroll;
}
.u-horizontal-scroll-md .u-horizontal-scroll-items {
  width: max-content;
  display: flex;
  gap: 1px;
  padding: 0 20px;
}
.u-horizontal-scroll-md .u-horizontal-scroll-items > * {
  width: calc(150 * (100vw / 375));
}

/* SP用スクロールリスト - 画像108px(デザイン) */
.u-horizontal-scroll-sm {
  width: 100vw;
  overflow-y: hidden;
  overflow-x: scroll;
}
.u-horizontal-scroll-sm .u-horizontal-scroll-items {
  width: max-content;
  display: flex;
  gap: 1px;
  padding: 0 20px;
}
.u-horizontal-scroll-sm .u-horizontal-scroll-items > * {
  width: calc(108 * (100vw / 375));
}

/* SP用スクロールリスト - 画像100px(デザイン) */
.u-horizontal-scroll-xs {
  width: 100vw;
  overflow-y: hidden;
  overflow-x: scroll;
}
.u-horizontal-scroll-xs .u-horizontal-scroll-items {
  width: max-content;
  display: flex;
  gap: 0 15px;
  padding: 0 20px;
}
.u-horizontal-scroll-xs .u-horizontal-scroll-items > * {
  width: calc(100 * (100vw / 375));
}

/* SP用リスト - 2列 - 画像50%(デザイン) */
.u-grid-cols2-full {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 33px 1px;
}

/* SP用リスト - 2列 - 画像165px(デザイン) */
.u-grid-cols2-165 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 5px;
  padding: 0 20px;
}

/* SP用リスト - 1列 - 画像335px(デザイン) */
.u-flex-col {
  display: flex;
  flex-direction: column;
  gap: 38px;
  padding: 0 20px;
}

/* u-flex - 横並び */
.u-flex {
  display: flex;
}

/* flex - 中央揃え */
.u-flex-center {
  display: flex;
  justify-content: center;
}

/* u-flex - 横並び - 画像370px */
.u-flex-370 {
  gap: 20px 15px;
}
.u-flex-370 > * {
  width: 370px;
}

/* u-flex - 横並び - 画像287px */
.u-flex-287 {
  gap: 37px 15px;
}
.u-flex-287 > * {
  width: 287px;
}

/* u-flex - 横並び - 画像270px */
.u-flex-270 {
  gap: 37px 20px;
}
.u-flex-270 > * {
  width: 270px;
}

/* u-flex - 横並び - 画像212px */
.u-flex-212 {
  gap: 37px 15px;
}
.u-flex-212 > * {
  width: 212px;
}

/* u-flex - 横並び - 画像140px */
.u-flex-140 {
  gap: 37px 3px;
}
.u-flex-140 > * {
  width: 140px;
}

/* u-flex - 横並び - 画像132px */
.u-flex-132 {
  gap: 37px 3px;
}
.u-flex-132 > * {
  width: 132px;
}

/* u-flex - 横並び - 画像120px */
.u-flex-120 {
  gap: 30px 20px;
}
.u-flex-120 > * {
  width: 120px;
}
@media screen and (max-width: 750px) {
  .shop-map {
    width: calc(100% - 40px);
    aspect-ratio: 335/290;
    margin: 0 auto;
  }

  .shop-map svg {
    width: 100%;
    height: 100%;
  }
}
/* Review */
/* Status */
.u-statuses {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 4px;
}
.u-status {
  font-size: 10px;
  padding: 1px 4px;
  color: white;
}
.u-status-comingsoon {
  background-color: #ff329a;
}
.u-status-comingsoon-date {
  color: #ff329a;
}
.u-status-releasesoon {
  background-color: #bea256;
}
.u-status-new {
  background-color: #00de01;
}
.u-status-rearrival {
  background-color: #fe9901;
}
.u-status-backorder {
  background-color: #02bad4;
}
.u-status-sale {
  background-color: #f00;
}
.u-status-outlet {
  color: #f00;
  border: 1px solid #f00;
}
.u-status-media {
  background-color: #3f51b5;
}
.u-status-direct {
  background-color: #018810;
}
.u-status-reserve {
  background-color: #cb34ff;
}
.u-status-secret {
  background-color: #c90;
}
.u-status-bg-pink {
  color: #ff0000;
  background-color: #ffeeee;
}
.u-status-bg-gray {
  background-color: #777;
}
.u-status-gray {
  color: #777;
  border: 1px solid #777;
}

.u-status-price-line-through {
  color: #333;
  text-decoration: line-through;
}
/* Tab */
.u-tab {
  display: flex;
  gap: 0 3px;
  width: 1140px;
  height: 60px;
  margin: 0 auto;
  background: #fff;
  text-align: center;
}

.u-tab-list {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
}

.u-tab-list a {
  display: block;
  width: 100%;
  height: 100%;
}

.u-tab .u-tab-list {
  width: 100%;
  background-color: #f6f6f6;
  text-indent: -9999px;
}
.u-tab .u-tab-list-sa {
  background-image: url(../../img/logo-sa-2025.svg);
  background-repeat: no-repeat;
  background-size: 62.5px 28px;
  background-position: center;
}
.u-tab .u-tab-list-co {
  background-image: url(../../img/logo-co-2025.svg);
  background-repeat: no-repeat;
  background-size: 62.31px 20px;
  background-position: center;
}
.u-tab .u-tab-list-otb {
  background-image: url(../../img/logo-otb.svg);
  background-repeat: no-repeat;
  background-size: 34.74px 30px;
  background-position: center;
}

.u-tab .u-tab-list.active {
  background-color: #fff;
}

.u-tab .u-tab-list.active:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: block;
  width: 100%;
  height: 4px;
}

.u-tab .u-tab-list:first-of-type.active:before {
  background: #ea0b29;
}
.u-tab .u-tab-list:nth-of-type(2).active:before {
  background: #828282;
}
.u-tab .u-tab-list:last-of-type.active:before {
  background: #b4946c;
}

/*********** u-tab-category ***********/
/* 共通 */
[class*="u-tab-category"] {
  width: max-content;
}
[class*="u-tab-category"] > div {
  width: max-content;
  display: flex;
  background-color: white;
}
.u-tab-category-wide .u-tab-list {
  width: 247px !important;
}

/* main */
.u-tab-category > div {
  padding: 3px;
  border-radius: 30px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.16);
}
.u-tab-category .u-tab-list {
  width: 164px;
  height: 40px;
  border-radius: 30px;
  color: var(--main-color);
}
.u-tab-category .u-tab-list.active {
  background: var(--main-color);
  color: #fff;
}

/* sa */
.u-tab-category-sa > div {
  padding: 3px;
  border-radius: 30px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.16);
}
.u-tab-category-sa .u-tab-list {
  width: 164px;
  height: 40px;
  border-radius: 30px;
  color: var(--sa-color);
}
.u-tab-category-sa .u-tab-list.active {
  background: var(--sa-color);
  color: #fff;
}

/* co */
.u-tab-category-co .u-tab-list {
  font-family: "Work Sans", "Noto Sans JP", sans-serif;
  font-weight: 500;
  width: 150px;
  height: 36px;
  color: var(--co-color);
}
.u-tab-category-co .u-tab-list.active {
  background: var(--co-color);
  color: #fff;
}

/* otb */
.u-tab-category-otb > div {
  background-color: #fcf8f2;
  border-radius: 30px;
}
.u-tab-category-otb .u-tab-list {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 500;
  width: 150px;
  height: 36px;
  border-radius: 30px;
  color: var(--otb-color);
}
.u-tab-category-otb .u-tab-list.active {
  background: var(--otb-color);
  color: #fff;
}

/* panel */
.u-tab-panel {
  display: none;
}
.u-tab-panel.active {
  display: block;
}

@media screen and (max-width: 750px) {
  .u-tab {
    width: 100%;
    display: flex;
    gap: calc(2 * (100vw / 375));
    height: calc(60 * (100vw / 375));
  }
  .u-tab .u-tab-list-sa {
    background-size: calc(60 * (100vw / 375)) auto;
  }
  .u-tab .u-tab-list-co {
    background-size: calc(65 * (100vw / 375)) auto;
  }
  .u-tab .u-tab-list-otb {
    background-size: calc(35 * (100vw / 375)) auto;
  }
  .u-tab .u-tab-list.active:before {
    height: calc(4 * (100vw / 375));
  }

  /* u-tab-category */
  [class*="u-tab-category"] {
    width: 100vw;
    overflow-y: hidden;
    overflow-x: scroll;
    padding: 0 20px;
    display: flex;
  }
  [class*="u-tab-category"]::after {
    content: "";
    display: block;
    width: 20px;
  }

  .u-tab-category > div,
  .u-tab-category-sa > div {
    margin: 4px 0;
  }
  .u-tab-category .u-tab-list,
  .u-tab-category-sa .u-tab-list {
    width: calc((100vw - 46px) / 3);
    height: 34px;
  }
  .u-tab-category.u-tab-category-wide .u-tab-list,
  .u-tab-category-sa.u-tab-category-wide .u-tab-list {
    width: calc((100vw - 46px) / 2) !important;
  }
  .u-tab-category-co .u-tab-list,
  .u-tab-category-otb .u-tab-list {
    width: calc((100vw - 40px) / 3);
    height: 30px;
  }
  .u-tab-category-co.u-tab-category-wide .u-tab-list,
  .u-tab-category-otb.u-tab-category-wide .u-tab-list {
    width: calc((100vw - 40px) / 2) !important;
  }

  .u-tab-panel-area {
    width: 100%;
  }
}
/* Tag */

.u-tag {
  display: flex;
  flex-wrap: wrap;
}

.u-tag-a,
.u-tag-b {
  gap: 10px;
}
.u-tag-c,
.u-tag-d {
  gap: 5px;
}

.u-tag-a a {
  display: block;
  height: 40px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #333;
  background: #fff;
}

.u-tag-a-sa a {
  color: var(--sa-color);
  border: 1px solid var(--sa-color);
}

.u-tag-a-co a {
  color: var(--co-color);
  border: 1px solid var(--co-color);
}

.u-tag-a-otb a {
  color: var(--otb-color);
  border: 1px solid var(--otb-color);
}

.u-tag-b a {
  display: block;
  height: 30px;
  padding: 5px 10px;
  border-radius: 15px;
  border: 1px solid #ddd;
  background: #f6f6f6;
}

.u-tag-c a {
  display: block;
  height: 30px;
  padding: 5px 10px;
  border-radius: 15px;
  border: 1px solid #ddd;
  background: #f6f6f6;
}

.u-tag-d a {
  display: block;
  height: 30px;
  padding: 0 10px;
  border-radius: 15px;
  background: #fff;
  line-height: 30px;
}

.u-tag-d a:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 15px;
  height: 15px;
  margin: 0 0 2px 5px;
  background: url(../../img/icon-search-condition-close.svg) no-repeat;
}
/* Text */
.u-text,
.u-text-link {
  font: 400 14px / 1.8 "Noto Sans JP", sans-serif;
}

.u-text-red {
  color: #ff0000;
}

.u-text-darkgray {
  color: var(--main-color);
}

.u-text-gray {
  color: var(--sub-color);
}

.u-text-sa {
  color: var(--sa-color);
}

.u-text-co {
  color: var(--co-color);
}

.u-text-otb {
  color: var(--otb-color);
}

.u-text-all {
  color: #333;
}

.u-text-bold {
  font-weight: 700;
}

.u-text-link {
  text-decoration: underline;
  transition: 0.3s;
}
.u-text-link:hover {
  text-decoration: underline;
  opacity: 0.6;
}

.u-text10 {
  font-size: 10px;
}

.u-text11 {
  font-size: 11px;
}

.u-text12 {
  font-size: 12px;
}

.u-text13 {
  font-size: 13px;
}

.u-text14 {
  font-size: 14px;
}

.u-text16 {
  font-size: 16px;
}

.u-text-arrow:before {
  content: "";
  transform: rotate(45deg);
  display: inline-block;
  vertical-align: middle;
  width: 7px;
  height: 7px;
  margin: 0 12px 0 0;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
}
