@charset "UTF-8";
/* ====================================
 * 変数定義
==================================== */
/* カラー */
/* 英数字フォント */
/* 画面幅 */
/* 画像パス */
/* アニメーション */
@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideIn {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideOut {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes slideOut {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@keyframes slideDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* ローディング */
@-webkit-keyframes loadingSpinAnim {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes loadingSpinAnim {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
img {
  max-width: 100%;
  height: auto;
}

.u-mt72 {
  margin-top: 72px;
}

.page-lead {
  line-height: 1.6;
}

.p-top-main h2 {
  color: #3c3c43;
}

.u-line-height_180 {
  line-height: 180%;
}

/* ----------------------------------------
  point
 ---------------------------------------- */
.p-top-main .point-title {
  margin-top: 96px;
}
.point__text {
  text-align: left;
  width: 100%;
}
.point .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.point .slide__thumbnail {
  width: 248px;
  margin: 12px auto 0;
  display: none;
}
.point .slide__thumbnail .thumbnail__item {
  position: relative;
  width: 70px;
  height: auto;
}
.point .slide__thumbnail .thumbnail__item::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.point .slide__thumbnail .thumbnail__item.swiper-slide-thumb-active::after {
  background: rgba(0, 0, 0, 0.4);
}
.point .thumbnail__wrapper {
  position: relative;
}
.point .thumbnail__item {
  vertical-align: middle;
}
.point .thumbnail__item img {
  vertical-align: middle;
}
.point .thumbnail__item:hover {
  cursor: pointer;
}
.point .swiper-button-next,
.point .swiper-container-rtl .swiper-button-prev,
.point .swiper-button-prev,
.point .swiper-container-rtl .swiper-button-next {
  position: absolute;
  margin-top: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 99;
}
.point .swiper-button-next::after,
.point .swiper-container-rtl .swiper-button-prev::after,
.point .swiper-button-prev::after,
.point .swiper-container-rtl .swiper-button-next::after {
  content: none;
}
.point .swiper-button-prev,
.point .swiper-container-rtl .swiper-button-next {
  width: 10px;
  height: 20px;
  background: url(../../img/23ss/arrow-left.png) no-repeat center center/contain;
  left: 0;
}
.point .swiper-button-next,
.point .swiper-container-rtl .swiper-button-prev {
  width: 10px;
  height: 20px;
  background: url(../../img/23ss/arrow-right.png) no-repeat center center/contain;
  right: 0;
}

@media screen and (min-width: 751px) {
  .point__slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  .point .swiper-button-prev,
  .point .swiper-button-next {
    display: none;
  }
  .point .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
  }
  .point .swiper-slide {
    width: calc(33.333% - 16px);
  }
}
@media screen and (max-width: 750px) {
  .point .slide__thumbnail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/* ----------------------------------------
  tab
 ---------------------------------------- */
.tab__body:not(.female) {
  display: none;
}

.tab__item {
  font-size: 16px;
  line-height: 1.6;
  font-weight: bold;
  width: calc(33.33333% - 13.33333px);
  width: calc(33.33333% - var(--space-h-s) * 11 / 12 * 4 + var(--space-h-s) * 3);
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.tab__item:hover {
  cursor: pointer;
}
.tab__item.-active {
  position: relative;
  border-top: 3px solid #3c3c43;
  border-right: 1px solid #d8d8d9;
  border-left: 1px solid #d8d8d9;
}

@media screen and (min-width: 751px) {
  .tab {
    margin-top: 72px;
    border-bottom: 1px solid #d8d8d9;
  }
  .tab__item {
    padding: 10px 0;
  }
  .tab__item.-active::after {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -1px;
  }
}
@media screen and (max-width: 750px) {
  .tab {
    width: auto;
    gap: 0 8px;
  }
  .tab__item {
    padding: 8px 0;
    border: 1px solid #d8d8d9;
    width: calc(33.33333% - 29.3333333333px + 24px);
    border-radius: 4px;
    font-size: 14px;
  }
}
.sf-fixedAnchor_itemLink {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.6;
}

@media screen and (max-width: 750px) {
  .sf-fixedAnchor_itemLink {
    min-height: 54px;
    font-size: 12px;
  }
}
/* ----------------------------------------
    section
   ---------------------------------------- */
.section__text {
  text-align: center;
}
.section__price {
  display: inline-block;
  position: relative;
  font-size: 12px;
}
.section__price .num {
  font-size: 24px;
  line-height: 1.6;
  font-weight: bold;
  padding: 0 4px;
  font-family: "Helvetica Neue", sans-serif;
}
.section__price::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #3c3c43;
  position: absolute;
  left: 0;
  bottom: 3px;
}
.section__priceItem {
  display: inline-block;
}
.section__priceItem .section__price {
  margin-top: 6px;
}
.section__priceItem + .section__priceItem {
  margin-left: 24px;
}

.variation__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.variation__color {
  border: 1px solid #d8d8d9;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  padding: 3px;
  overflow: hidden;
  background: #fff;
  margin-right: 8px;
}
.variation__color img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  vertical-align: baseline;
}

@media screen and (max-width: 750px) {
  .section__price {
    margin-top: 8px;
  }
  .section__price .num {
    font-size: 20px;
  }
  .section__price::after {
    bottom: 0;
  }
  .section__img {
    width: calc(100% + 32px);
    margin: auto -16px;
  }
}
.sf-buttonGroup[data-desktop-column="2"] .more__button.sf-button {
  margin: 0 auto;
}

/* ----------------------------------------
  商品一覧
---------------------------------------- */
.itemsList__list {
  margin: 0 auto;
}
.itemsList__listItem__price {
  font-size: 12px;
}
.itemsList__listItem__priceNum {
  font-size: 24px;
  font-weight: bold;
  padding: 0 4px;
  font-family: "Helvetica Neue", sans-serif;
}
.itemsList__listItem__button.sf-button.-small {
  font-size: 14px;
}
.itemsList__listItem__link {
  font-weight: bold;
  padding-right: 20px;
  position: relative;
}
.itemsList__listItem__link::after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background: url(../../img/23ss/arrow.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.itemsList__listItem__colorChip {
  margin-top: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 11px;
}
.itemsList__listItem__colorChip label {
  position: relative;
  display: block;
}
.itemsList__listItem__colorChip label span {
  display: block;
}
.itemsList__listItem__colorChip label:hover {
  cursor: pointer;
}
.itemsList__listItem__colorChip label::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.itemsList__listItem__colorChip input {
  display: none;
}
.itemsList__listItem__colorChip input:checked + label::after {
  background: rgba(0, 0, 0, 0.6);
}
.itemsList__listItem__review {
  background-color: #F2F5F8;
}
.itemsList__listItem__review h4 {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
}
.itemsList__listItem__reviewList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px 20px;
  margin-top: 28px;
}
.itemsList__listItem__reviewItem {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #fff;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 20px;
}
.itemsList__listItem__reviewItem-img img {
  min-width: 40px;
  max-width: 40px;
}
.itemsList__listItem__reviewItem-content {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

@media screen and (min-width: 751px) {
  .itemsList__listItem__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 890px;
    margin: 0 auto;
  }
  .itemsList__listItem__left {
    width: calc(50% - 10px);
    margin-right: 20px;
  }
  .itemsList__listItem__right {
    width: calc(50% - 10px);
  }
  .itemsList__listItem__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .itemsList__listItem__button.sf-button.-small {
    margin-right: 24px;
    width: 182px;
  }
}
@media screen and (max-width: 750px) {
  .itemsList__listItem__button.sf-button.-small {
    padding: 8px 24px;
    margin-bottom: 16px;
  }
  .itemsList__listItem__thumb {
    text-align: center;
  }
  .itemsList__listItem__reviewList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 20px;
  }
}
/* ====================================
 * ダイレクトカートインモーダル
==================================== */
.modal {
  display: none; /* 初回非表示 */
}
.modal__overlay {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: calc(var(--vw, 1vw) * 100);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
}
.modal__container {
  position: relative;
  width: 100%;
  max-height: 100vh;
  background-color: #ffffff;
}
.modal__close {
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.modal__close * {
  pointer-events: none;
}

.modal.is-open {
  display: block;
}

.modal[aria-hidden=false] .modal__container {
  -webkit-animation: fadeIn 0.2s ease;
          animation: fadeIn 0.2s ease;
}

.modal[aria-hidden=true] .modal__container {
  -webkit-animation: fadeOut 0.2s ease;
          animation: fadeOut 0.2s ease;
}

.modal--card .modal__container {
  max-width: 520px;
}
.modal--card .modal__header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 80px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
}
.modal--card .modal__footer {
  padding: 20px 40px;
}
.modal--card .modal__title {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-size: 22px;
  font-weight: bold;
  margin-top: 0;
}
.modal--card .modal__close {
  font-size: 0;
  padding: 17px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 10px;
}
.modal--card .modal__close .co-icon {
  width: 26px;
  height: 26px;
}
.modal--card .modal__content {
  max-height: calc(var(--vh, 1vh) * 100 - 80px - 90px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 20px 40px 0;
}
.modal--card .modal__actionAnc {
  background-color: #3c3c43;
  border-radius: 4px;
  color: #ffffff;
  display: block;
  font-size: 16px;
  font-weight: bold;
  overflow: hidden;
  padding: 0.8927em 1em;
  text-align: center;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  position: relative;
}
.modal--card .modal__actionAnc.js-unsale {
  pointer-events: none;
}
.modal--card .modal__actionAnc.js-unsale::after {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #76767b;
  content: "在庫なし";
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.co-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-style: normal;
  line-height: 1;
  color: #3c3c43;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.co-icon svg {
  height: auto;
  vertical-align: bottom;
  width: 100%;
}

#modal_select .select__heading {
  margin-bottom: 30px;
}

#modal_select .select__title {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 14px;
  font-weight: normal;
}

#modal_select .selectChoices__item {
  margin-right: 16px;
  width: 17.04%;
}
#modal_select .selectChoices__title {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 14px;
  font-weight: bold;
}
#modal_select .selectChoices__title span {
  color: #3c3c43;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1;
  padding-left: 0.2em;
  padding-right: 0.2em;
}
#modal_select .selectChoices:not(:first-child) {
  margin-top: 30px;
}
#modal_select .selectChoices__heading:not(:only-child) {
  margin-bottom: 16px;
}
#modal_select .selectChoices__container {
  margin-left: -40px;
  margin-right: -40px;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
}
#modal_select .selectChoices__carousel {
  position: static;
}
#modal_select .selectChoices__input {
  display: none;
}
#modal_select .selectChoices__label {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 67px;
  outline: none;
  overflow: hidden;
  text-align: center;
  position: relative;
}
#modal_select .selectChoices__label::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 1px solid #d8d8d9;
  pointer-events: none;
}
#modal_select .selectChoices__label:hover::after {
  border: 2px solid #3c3c43;
}
#modal_select .selectChoices__label img {
  height: auto;
  width: 100%;
}
#modal_select .selectChoices__button {
  background-size: 10px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../img/23ss/slide-arrow.png);
  height: 100%;
  margin: 0;
  width: 40px;
  top: 0;
}
#modal_select .selectChoices__button--next {
  right: 0;
}
#modal_select .selectChoices__button--prev {
  left: 0;
  -webkit-transform: scale(-1, 1);
      -ms-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

#modal_select .selectChoices--size .selectChoices__item {
  width: 22.27%;
  margin-right: 16px;
}

#modal_select .selectChoices--size .selectChoices__label {
  padding: 0.5714em 0.75em;
}

#modal_select .selectChoices__input:checked + .selectChoices__label::after {
  border: 2px solid #3c3c43;
}

.swiper-notification {
  display: none;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: "";
}

@media screen and (max-width: 767px) {
  .modal__overlay {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .modal--card[aria-hidden=false] .modal__container {
    -webkit-animation: slideUp 0.3s ease;
            animation: slideUp 0.3s ease;
  }
  .modal--card .modal__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: calc(var(--vh, 1vh) * 80);
    border-radius: 17px 17px 0 0;
  }
  .modal--card .modal__header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 80px;
    padding: 20px 6.667vw;
    position: relative;
  }
  .modal--card .modal__title {
    font-size: 1.8rem;
  }
  .modal--card .modal__content {
    height: calc(var(--vh, 1vh) * 80 - 80px - 100px);
    max-height: calc(var(--vh, 1vh) * 80 - 80px - 100px);
    padding: 0;
  }
  .modal--card .modal__footer {
    margin-top: auto;
    padding: 0 5.3vw 20px;
  }
  .modal--card .modal__actionAnc {
    padding: 1.125em 1em;
  }
  #modal_select .select {
    padding-left: 5.3vw;
    padding-right: 5.3vw;
  }
  #modal_select .select__container {
    margin-top: 32px;
  }
  #modal_select .selectChoices__button--prev, #modal_select .selectChoices__button--next {
    display: none;
  }
  .ua-mp .modal--card .modal__footer {
    padding-bottom: 100px;
  }
}
/* ====================================
 * ページトップ
==================================== */
.pageTop {
  opacity: 0.6;
  height: 50px;
  width: 50px;
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 2;
}
.pageTop__text {
  background: rgb(255, 255, 255);
  border: 1px solid #9D9DA0;
  color: #76767B;
  display: block;
  font-family: "Helvetica", sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  height: 100%;
  margin-left: auto;
  padding: 24px 8px 4px;
  text-align: center;
  width: 100%;
  position: relative;
}
.pageTop__text::before {
  content: "";
  border-top: solid 2px #76767B;
  border-right: solid 2px #76767B;
  height: 10px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 10px;
  position: absolute;
  top: 10px;
  left: 18px;
}
.pageTop.is__bottom__fixed {
  position: absolute;
  bottom: 0;
}

@media screen and (max-width: 750px) {
  .pageTop {
    right: 5.3vw;
  }
  .sf-breadcrumbs {
    margin-top: 64px;
  }
}
@media screen and (min-width: 751px) {
  .more__button-wrap {
    margin-bottom: 114px;
  }
}