@charset "UTF-8";

@import "imports/base.css";
@import "imports/parts.css";
@import "imports/general_classes.css";
@import "common_ms.css?260403";

.error_inline {
  display: block !important;
  padding: 1px !important;
  color: var(--color-error);
}
.warning_inline {
  display: block !important;
  padding: 1px !important;
  color: black;
}

/* //////////////////////////////////////////////////

Title : common.css

Created       : 2023-04-13
Last Modified : 2023-07-13

==========================================
Content

    01: common
    02: typography
    03: button
    04: pager
    05: breadcrumbs
    06: newsItem
    07: searchBox
    08: products
    09: info area
    10: category component
    11: category accordion (SP)
    12: category links (PC/SP)
    13: tab
    14: accordion
    15: header
    16: hamburger
    17: bottom-menu
    18: footer
    19: overlay
    20: Product items
    21: Recommend

////////////////////////////////////////////////// */
/* ===================== 01: common */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* html {
  font-size: 62.5%;
} */
/* --- for small viewport --- */
@media screen and (max-width: 768px) {
  html {
    font-size: calc(10 * (100vw / 375));
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 769px) and (max-width: 1200px) {
  html {
    font-size: calc(10 * (100vw / 1200));
  }
}

body {
  overflow-x: hidden;
  width: 100vw;
  font-family: var(--font-ja);
  font-size: 1.3rem;
  color: var(--color-text-primary);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}

body input,
body textarea,
body select{
  font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif!important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font: unset;
}

img,
svg,
video {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a,
picture {
  display: block;
}

a {
  transition: var(--transition-default);
  -webkit-tap-highlight-color: rgb(0 0 0 / 16%);
}

summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

/* --- for large viewport --- */
@media screen and (min-width: 769px) {
  select:hover {
    cursor: pointer;
  }
}

/* --- for small viewport --- */
@media screen and (max-width: 768px) {
  .visible-phone {
    display: var(--disp-val, block);
  }
  .visible-tablet {
    display: none;
  }
  .visible-desktop {
    display: none;
  }
  .hidden-phone {
    display: none;
  }
  .hidden-tablet {
    display: var(--disp-val, block);
  }
  .hidden-desktop {
    display: var(--disp-val, block);
  }
}
/* --- for middle viewport --- */
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .visible-phone {
    display: none;
  }
  .visible-tablet {
    display: var(--disp-val, block);
  }
  .visible-desktop {
    display: none;
  }
  .hidden-phone {
    display: var(--disp-val, block);
  }
  .hidden-tablet {
    display: none;
  }
  .visible-desktop {
    display: var(--disp-val, block);
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 1201px) {
  .visible-phone {
    display: none;
  }
  .visible-tablet {
    display: none;
  }
  .visible-desktop {
    display: var(--disp-val, block);
  }
  .hidden-phone {
    display: var(--disp-val, block);
  }
  .hidden-tablet {
    display: var(--disp-val, block);
  }
  .hidden-desktop {
    display: none;
  }
}

/* ヘッダーの上にコンテンツが重なるのを防ぐため */
#Wrap_lower {
  isolation: isolate;
}
/* --- for small viewport --- */
@media screen and (max-width: 768px), print {
  #Wrap_lower {
    padding-top: var(--headerHeight, 0px) !important;
  }
}

/* ===================== 02: typography */
.c-heading {
  display: flex;
  align-items: center;
}
.c-heading::after {
  content: "";
  flex-shrink: 0;
  height: 1px;
  background-color: var(--color-light-grey);
}
.c-heading span {
  flex-shrink: 0;
  line-height: 1.2;
}
.c-heading .c-heading__en {
  order: -1;
  font-family: var(--font-en);
  letter-spacing: 0.08em;
}
.c-heading .c-heading__ja {
  order: 1;
  font-family: var(--font-ja);
}
/* --- for small viewport --- */
@media screen and (max-width: 768px) {
  .c-heading {
    column-gap: 1rem;
    font-size: 2.3rem;
  }
  .c-heading::after {
    width: 4rem;
  }
  .c-heading .c-heading__en {
    font-size: 2.3rem;
    line-height: 1.74;
  }
  .c-heading .c-heading__ja {
    font-size: 1.3rem;
    line-height: 2.15;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 769px) {
  .c-heading {
    column-gap: 3rem;
    font-size: 2.8rem;
  }
  .c-heading::after {
    width: 4.5rem;
  }
  .c-heading .c-heading__en {
    font-size: 2.8rem;
    line-height: 1.2;
  }
  .c-heading .c-heading__ja {
    font-size: 1.5rem;
    line-height: 1.12;
    letter-spacing: 0.1em;
  }
}

/* ===================== 03: button */
.c-btn-primary {
  position: relative;
  display: grid;
  place-items: center;
  width: var(--btn-width);
  min-height: var(--btn-height);
  font-size: var(--btn-fz);
  color: var(--color-white);
  text-align: center;
  line-height: 1.28;
  letter-spacing: 0.1em;
  background-color: var(--color-grey);
  border-radius: 0.6rem;
}
.c-btn-primary--invert {
  color: var(--color-text-primary);
  background-color: var(--btn-invert-bg, var(--color-white));
  border: 1px solid var(--color-grey);
}
.c-btn-primary--hasArrow {
  padding: 0 4.6rem;
}
.c-btn-primary--hasArrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.5rem;
  z-index: 1;
  transform: translateY(-50%);
  display: block;
  width: 1.9rem;
  aspect-ratio: 19 / 6;
  background: url(../Contents/ImagesPkg/common/icons/ion-btn-arrow-white.svg)
    center / 100% no-repeat;
}
.c-btn-primary--invert.c-btn-primary--hasArrow::after {
  background: url(../Contents/ImagesPkg/common/icons/ion-btn-arrow-black.svg);
}
/* --- for small viewport --- */
@media screen and (max-width: 768px) {
  .c-btn-primary {
    --btn-width: 31.5rem;
    --btn-height: 5rem;
    --btn-fz: 1.4rem;
    margin-left: auto;
    margin-right: auto;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 769px) {
  .c-btn-primary {
    --btn-width: 28rem;
    --btn-height: 5rem;
    --btn-fz: 1.4rem;
    transition: all var(--transition-default);
  }
  .c-btn-primary:not(.c-btn-primary--invert):hover {
    background-color: var(--color-primary);
  }
  .c-btn-primary--invert:hover {
    background-color: #ccc;
    border: 1px solid #ccc;
  }
}

/* ===================== 04: pager */
.c-pager,
.c-pager__main {
  display: flex;
}
.c-pager {
  justify-content: space-between;
  gap: 0.5rem;
}
.c-pager .c-pager__arrows,
.c-pager .c-pager__list[aria-current="page"],
.c-pager .c-pager__list--omit,
.c-pager .c-pager__list:not([aria-current="page"]) a {
  display: grid;
  place-items: center;
}
.c-pager .c-pager__list[aria-current="page"],
.c-pager .c-pager__list--omit,
.c-pager .c-pager__list:not([aria-current="page"]) a {
  aspect-ratio: 1;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.c-pager .c-pager__arrows {
  flex-shrink: 0;
}
.c-pager .c-pager__arrows::before {
  content: "";
  width: 100%;
  background: center / 100% no-repeat;
}
.c-pager .c-pager__main {
  flex-wrap: wrap;
}
.c-pager .c-pager__list[aria-current="page"] {
  color: var(--color-white);
  background-color: var(--color-grey);
}
.c-pager .c-pager__next::before {
  transform: rotate(180deg);
}
/* --- for small viewport --- */
@media screen and (max-width: 768px) {
  .c-pager .c-pager__list[aria-current="page"],
  .c-pager .c-pager__list--omit,
  .c-pager .c-pager__list:not([aria-current="page"]) a {
    width: 2.9rem;
    font-size: 1.5rem;
  }
  .c-pager .c-pager__arrows {
    width: 0.58rem;
  }
  .c-pager .c-pager__arrows::before {
    height: 1.015rem;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%227.327%22%20height%3D%2211.208%22%20viewBox%3D%220%200%207.327%2011.208%22%3E%0A%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_3866%22%20data-name%3D%22%E3%83%91%E3%82%B9%203866%22%20d%3D%22M26.181%2C28.354l-5.8-5.077%2C5.8-5.077%22%20transform%3D%22translate(-19.315%20-17.673)%22%20fill%3D%22none%22%20stroke%3D%22%23878787%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%221.4%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  }
  .c-pager__main {
    justify-content: center;
    gap: 0.7rem;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 769px) {
  .c-pager,
  .c-pager__main {
    gap: 1rem;
  }
  .c-pager .c-pager__arrows,
  .c-pager .c-pager__list[aria-current="page"],
  .c-pager .c-pager__list--omit,
  .c-pager .c-pager__list:not([aria-current="page"]) a {
    width: 3.4rem;
  }
  .c-pager .c-pager__list[aria-current="page"],
  .c-pager .c-pager__list:not([aria-current="page"]) a {
    font-size: 1.6rem;
  }
  .c-pager .c-pager__arrows {
    transition: opacity var(--transition-default);
  }
  .c-pager .c-pager__arrows:hover {
    opacity: var(--hover-opacity);
  }
  .c-pager .c-pager__arrows {
    width: 0.6rem;
  }
  .c-pager .c-pager__arrows::before {
    height: 1.409rem;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%227.452%22%20height%3D%2214.998%22%20viewBox%3D%220%200%207.452%2014.998%22%3E%0A%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_3909%22%20data-name%3D%22%E3%83%91%E3%82%B9%203909%22%20d%3D%22M6%2C14.09%2C0%2C7.045%2C6%2C0%22%20transform%3D%22translate(0.919%200.454)%22%20fill%3D%22none%22%20stroke%3D%22%23878787%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%221.4%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  }
  .c-pager .c-pager__list:not([aria-current="page"]) a {
    transition: all var(--transition-default);
  }
  .c-pager .c-pager__list:not([aria-current="page"]) a:hover {
    color: var(--color-white);
    background-color: var(--color-grey);
  }
}

/* ===================== 05: breadcrumbs */
.c-breadcrumb {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  margin: 0.7rem 0 0.5rem;
  padding: 1rem 0;
}
.c-breadcrumb--hasContainer {
  width: 100%;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}
.c-breadcrumb ol,
.c-breadcrumb li:not(:last-of-type) {
  display: flex;
  align-items: center;
  column-gap: 0.6rem;
}
.c-breadcrumb li {
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--color-grey);
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.c-breadcrumb li:not(:last-of-type)::after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.8rem;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%227.778%22%20height%3D%227.778%22%20viewBox%3D%220%200%207.778%207.778%22%3E%0A%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_3863%22%20data-name%3D%22%E3%83%91%E3%82%B9%203863%22%20d%3D%22M1751.527%2C356.113h-5.5v-5.5h1v4.5h4.5Z%22%20transform%3D%22translate(990.596%201490.327)%20rotate(-135)%22%20fill%3D%22%23c6c6c6%22%2F%3E%0A%3C%2Fsvg%3E%0A")
    center / 100% no-repeat;
}
/* --- for large viewport --- */
@media screen and (min-width: 769px) {
  .c-breadcrumb--hasContainer {
    width: min(100%, var(--container-default) + var(--container-padding) * 2);
    margin-left: auto;
    margin-right: auto;
  }
  .c-breadcrumb a {
    transition: opacity var(--transition-default);
  }
  .c-breadcrumb a:hover {
    opacity: var(--hover-opacity);
  }
}

/* ===================== 06: newsItem */
.c-newsItem {
}
.c-newsItem .c-newsItem__link {
  display: flex;
  flex-direction: column;
}
.c-newsItem .c-newsItem__head {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-shrink: 0;
}
.c-newsItem .c-newsItem__date {
  color: var(--color-grey);
}
.c-newsItem .c-newsItem__category {
  font-size: 1.2rem;
  color: var(--color-primary);
}
.c-newsItem .c-newsItem__body {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 1.3rem;
  letter-spacing: 0;
}
/* --- for small viewport --- */
@media screen and (max-width: 768px), print {
  .c-newsItem .c-newsItem__link {
    row-gap: 0.8rem;
    line-height: 1.6;
  }
  .c-newsItem .c-newsItem__head {
    column-gap: 1.5rem;
  }
  .c-newsItem .c-newsItem__date {
    flex-shrink: 0;
    font-size: 1.2rem;
  }
  .c-newsItem .c-newsItem__category {
    letter-spacing: 0.1em;
  }
  .c-newsItem .c-newsItem__body {
    line-height: 2;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 769px), print {
  .c-newsItem .c-newsItem__link {
    gap: 0 3rem;
    transition: opacity var(--transition-default);
  }
  .c-newsItem .c-newsItem__link:hover {
    opacity: var(--hover-opacity);
  }
  .c-newsItem .c-newsItem__head {
    column-gap: 1.5rem;
  }
  .c-newsItem .c-newsItem__date {
    font-size: 1.3rem;
  }
}

/* ===================== 07: searchBox */
/* #dvProductSearch select {
  width: unset;
} */
.c-searchBox {
  display: flex;
  flex-direction: column;
}
.c-searchBox .c-searchBox__form {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--color-bg-primary);
  border: 1px solid #eaeaea;
  border-radius: 0.3rem;
}
.c-searchBox .c-searchBox__form::after {
  content: "";
  align-self: stretch;
  flex-shrink: 0;
  width: 1px;
  background-color: #eaeaea;
}
.c-searchBox .c-searchBox__selectBox,
.c-searchBox .c-searchBox__textBox {
  height: 100%;
}
.c-searchBox .c-searchBox__selectBox,
.c-searchBox .c-searchBox__textBox,
.c-searchBox .c-searchBox__textBox::placeholder {
  /* font-family: var(--font-ja) !important; */
  font-size: 1.2rem;
  color: var(--color-text-primary);
  letter-spacing: 0.1em;
  background-color: transparent;
}
.c-searchBox .c-searchBox__selectBox {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  order: -1;
  background: url(../Contents/ImagesPkg/common/icons/icon_select-arrow.svg)
    center right 0.85rem / 0.7rem 0.389rem no-repeat;
}
.c-searchBox .c-searchBox__textBox-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  order: 1;
  width: 100%;
  padding-right: 1.4rem;
}
.c-searchBox .c-searchBox__textBox {
  display: flex;
  align-items: center;
  width: 100%;
}
.c-searchBox .c-searchBox__button {
  flex: 0 0 2.2rem;
}
.c-searchBox .c-searchBox__button img {
  vertical-align: middle;
}
.c-searchBox .c-searchBox__tooltip {
  position: absolute;
  top: 140%;
  left: 0;
  z-index: var(--zindex-front);
  display: none;
  place-items: center;
  padding: 0.2rem 1rem;
  font-size: 1.2rem;
  color: var(--color-white);
  white-space: nowrap;
  text-align: center;
  background-color: var(--color-text-primary);
  border-radius: 100vh;
  box-shadow: 0 0.3rem 0.6rem var(--shadow-primary);
}
.c-searchBox .c-searchBox__tooltip::before {
  content: "";
  position: absolute;
  bottom: 99%;
  left: 2rem;
  width: 0;
  height: 0;
  border: 1rem solid transparent;
  border-bottom: 1rem solid var(--color-text-primary);
}
.c-searchBox .c-searchBox__keywords {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.c-searchBox .c-searchBox__keywords a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.8rem;
  padding: 0 1rem;
  font-size: 1.1rem;
  color: #989898;
  letter-spacing: 0.04em;
  background-color: var(--color-bg-primary);
  border-radius: 0.4rem;
}
.c-searchBox .c-searchBox__keywords a::before {
  content: "#";
}
/* --- for small viewport --- */
@media screen and (max-width: 768px), print {
  .c-searchBox {
    row-gap: 1.3rem;
  }
  .c-searchBox .c-searchBox__form {
    height: 4.52rem;
  }
  .c-searchBox .c-searchBox__selectBox {
    max-width: 9.75rem;
    padding: 1rem 1.5rem 1rem 1rem;
  }
  .c-searchBox .c-searchBox__textBox {
    padding: 1rem 1rem 1rem 1.5rem;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 769px), print {
  .c-searchBox {
    row-gap: 2rem;
  }
  .c-searchBox .c-searchBox__form {
    height: 4rem;
  }
  .c-searchBox .c-searchBox__selectBox {
    max-width: 10.95rem;
    padding: 1rem 2.4rem 1rem 1.5rem;
  }
  .c-searchBox .c-searchBox__textBox {
    padding: 1rem 1rem 1rem 1.5rem;
  }
  .c-searchBox .c-searchBox__keywords a {
    transition: all var(--transition-default);
  }
  .c-searchBox .c-searchBox__keywords a:hover {
    color: var(--color-bg-primary);
    background-color: #989898;
  }
}
/* --- for middle viewport --- */
@media screen and (min-width: 769px) and (max-width: 1300px) {
  .c-searchBox .c-searchBox__textBox-wrapper {
    padding-right: 0.7rem;
  }
  .c-searchBox .c-searchBox__selectBox {
    max-width: 8rem;
    padding-left: 0.5rem;
    padding-right: 2rem;
  }
  .c-searchBox .c-searchBox__textBox {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .c-searchBox .c-searchBox__button {
    flex-basis: 1.8rem;
  }
}

/* ===================== 08: products */
.c-product {
}
.c-product .c-product__image {
  position: relative;
}
.c-product .c-product__image img {
  aspect-ratio: 1;
  object-fit: contain;
}
.c-product .c-product__image .soldout {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: var(--zindex-front);
  display: grid;
  place-items: center;
  width: 100%;
  height: 2.3rem;
  font-size: 1.2rem;
  color: var(--color-white);
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-align: center;
  background-color: rgb(0 0 0 / 50%);
}
.c-product .c-product__cicon {
  display: grid;
}
.c-product-ranking .c-product {
  padding-top: 2rem;
}
.c-product .c-product__rank {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: 1px solid var(--color-grey);
  background-color: #ffffff;
  font-size: 1.5rem;
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-text-primary);
  position: absolute;
  top: -1.5rem;
  left: 1rem;
  z-index: 2;
}
.c-product .c-product__rank.c-product__rank--1 {
  background-color: #c9b561;
  border: none;
  color: var(--color-white);
}
.c-product .c-product__rank.c-product__rank--2 {
  background-color: #b9b9b9;
  border: none;
  color: var(--color-white);
}
.c-product .c-product__rank.c-product__rank--3 {
  background-color: #b39769;
  border: none;
  color: var(--color-white);
}
.c-product .c-product__pid {
  margin-bottom: 1rem;
  color: #7c7c7c;
}
.c-product .c-product__name {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.c-product .c-product__price {
  line-height: 1.3;
}
.c-product .c-product__price-item {
  display: inline-flex;
  flex-direction: column;
}
.c-product .c-product__price-item > span,
.c-product .price-variation__list .c-product__price-item > p {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}
.c-product .c-product__price-item .price-sale {
  color: var(--color-attention);
}
.c-product .c-product__price-item .tax-excluded {
  font-family: var(--font-en);
}
.c-product .c-product__price-item .tax-included {
  letter-spacing: 0;
}
.c-product .c-product__price-item .price-sale .discountRateS {
  display: inline-grid;
  place-items: center;
  /* padding: 0.1rem 0.5rem; */
  padding: 0 0.5rem;
  font-family: var(--font-en);
  color: var(--color-white);
  line-height: 1.5;
  letter-spacing: 0.02em;
  background-color: var(--color-attention);
}
/* --- for small viewport --- */
@media screen and (max-width: 768px) {
  .c-product {
    width: 15rem;
  }
  .c-product .c-product__image {
    margin-bottom: 0.97rem;
  }
  .c-product .c-product__cicon {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 0.6rem;
    margin-bottom: 2rem;
  }
  .c-product .c-product__cicon img {
    width: 7.2rem;
  }
  .c-product .c-product__name {
    margin-bottom: 0.4rem;
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .c-product .c-product__price-item {
    row-gap: 0.2rem;
  }
  .c-product .c-product__price-item > span,
  .c-product .price-variation__list .c-product__price-item > p {
    column-gap: 0.5rem;
    row-gap: .5rem;
  }
  .c-product .c-product__price-item .tax-excluded {
    font-size: 1.5rem;
  }
  .c-product .c-product__price-item .tax-included {
    font-size: 1rem;
    display: flex;
    font-family: var(--font-en);
  }
  .c-product-ranking .c-product .c-product__price-item .detail__price--discount .tax-included{
    padding-right: 2rem;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 769px) {
  .c-product {
    width: min(100%, 26rem);
  }
  .c-product > a {
    transition: opacity var(--transition-default);
  }
  .c-product > a:hover {
    opacity: var(--hover-opacity);
  }
  .c-product .c-product__image {
    margin-bottom: 1rem;
  }
  .c-product .c-product__cicon {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
    margin-bottom: 1.5rem;
  }
  .c-product .c-product__name {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    line-height: 1.7;
  }
  .c-product .c-product__price-item > span,
  .c-product .price-variation__list .c-product__price-item > p {
    column-gap: 0.7rem;
    row-gap: .2rem;
  }
  .c-product .c-product__price-item .tax-excluded {
    font-size: 1.7rem;
  }
  .c-product .c-product__price-item .tax-included {
    font-size: 1.1rem;
    font-family: var(--font-en);
  }
  #crosssell .c-product .price-variation__list .c-product__price-item > p {
    column-gap: 0.2rem;
  }
  #crosssell .c-product .c-product__price-item .tax-excluded {
    font-size: 1.2rem;
  }
  #crosssell .c-product .c-product__price-item .tax-included {
    font-size: 1rem;
  }
  #crosssell .c-product .c-product__price-item .price-sale .discountRateS{
    padding: 0 0.4rem;
    font-size: 1.1rem;
    line-height: 1.4;
  }
  #crosssell .c-product.c-product__target-item .c-product__price-item.price-variation__item.price-variation__item--disp.price-variation__item--disp-vari-fixed:not(.price-variation__item--disp-fixed) .tax-excluded::after{
    font-size: 1rem;
  }
  #crosssell .c-product.c-product__target-item .mark-more .tax-excluded::after{
    margin-left: -.2rem;
  }
  #crosssell .c-product.c-product__target-item .mark-more .tax-excluded::after, 
  #crosssell .c-product.c-product__target-item .mark-more .tax-included .tax-included-numeric::after {
    font-size: 1rem;
  }
}

/* ===================== 09: info area */
.c-info-area {
}
.c-info-area .c-info-area__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}
.c-info-area .c-info-area__sns li {
  flex: 0 0 2.6rem;
}
.c-info-area .c-info-area__banner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 1.5rem;
}
.c-info-area li {
  flex: 0 0 auto;
}
/* --- for small viewport --- */
@media screen and (max-width: 768px) {
  .c-info-area {
    margin-top: 4rem;
  }
  .c-info-area .c-info-area__banner {
    margin-top: 4rem;
  }
  .c-info-area .c-info-area__banner .c-info-area__banner-keyuca-app {
    width: 19rem;
  }
  .c-info-area .c-info-area__banner .c-info-area__banner-sustainable {
    width: 11.2rem;
  }
  .c-info-area .c-info-area__banner .c-info-area__banner-dolce-felice {
    width: 15.2rem;
  }
  .c-info-area .c-info-area__banner .c-info-area__banner-epos {
    width: 15.2rem;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 769px) {
  .c-info-area {
    flex: 0 0 36.1rem;
  }
  .c-info-area .c-info-area__banner .c-info-area__banner-keyuca-app {
    width: 21.8rem;
  }
  .c-info-area .c-info-area__banner .c-info-area__banner-sustainable {
    width: 12.8rem;
  }
  .c-info-area .c-info-area__banner .c-info-area__banner-dolce-felice {
    width: 17.5rem;
  }
  .c-info-area .c-info-area__banner .c-info-area__banner-epos {
    width: 17.5rem;
  }
}

/* ===================== 10: category component */
/* --- for small viewport --- */
.c-cat-primary-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 1rem;
  font-size: 1.3rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  background-color: var(--color-bg-primary);
}
.c-cat-primary-link::after {
  content: "";
  display: block;
  flex-shrink: 0;
  background: center / 100% no-repeat;
}
.c-cat-secondary-name {
  display: flex;
  align-items: center;
  background-color: var(--color-bg-primary);
}
.c-cat-secondary-name::after {
  content: "";
  display: block;
  flex: 0 0 2rem;
  aspect-ratio: 1;
  background: url(../Contents/ImagesPkg/common/icons/icon_circle-arrow.svg)
    center / 100% no-repeat;
}
.c-cat-secondary-name .c-cat-secondary-name__icon {
  flex: 0 0 4rem;
}
.c-cat-secondary-name .c-cat-secondary-name__text {
  flex: 1 1;
  text-align: left;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
.c-cat-tertiary-list {
  display: grid;
}
.c-cat-tertiary-list a {
  display: flex;
  align-items: center;
}
.c-cat-tertiary-list a::before {
  content: "";
  display: block;
  flex-shrink: 0;
  background: center / 100% no-repeat;
}
@media screen and (max-width: 768px) {
  .c-cat-primary-link {
    width: 100%;
    height: 5.5rem;
    padding: 0 1.5rem;
  }
  .c-cat-primary-link::after {
    width: 0.4rem;
    height: 0.9rem;
    background-image: url(../Contents/ImagesPkg/common/icons/icon_arrow-right.svg);
  }
  .c-cat-secondary-name {
    column-gap: 1.5rem;
    width: 100%;
    height: 5.5rem;
    padding: 0 1rem;
  }
  .c-cat-secondary-name::after {
    transition: transform var(--transition-default);
  }
  .c-cat-secondary-name.js-accordionTitle--open::after {
    transform: rotate(-180deg);
  }
  .c-cat-secondary-name .c-cat-secondary-name__text {
    font-size: 1.3rem;
  }
  .c-cat-tertiary-list {
    grid-template-columns: 100%;
    row-gap: 2.1rem;
  }
  .c-cat-tertiary-list a {
    column-gap: 0.93rem;
    line-height: 1.25;
    letter-spacing: 0.1em;
  }
  .c-cat-tertiary-list a::before {
    flex-basis: 0.504rem;
    height: 0.966rem;
    background-image: url(../Contents/ImagesPkg/common/icons/icon_arrow-right.svg);
  }
  .c-cat-tertiary-list span {
    font-size: 1.2rem;
    line-height: 1.25;
    letter-spacing: 0.1em;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 769px) {
  .c-cat-primary-link {
    width: 37rem;
    height: 4rem;
    padding: 0 2rem 0 1.4rem;
    transition: background-color var(--transition-default);
  }
  .c-cat-primary-link:hover {
    background-color: #d3d3d3;
  }
  .c-cat-primary-link::after {
    width: 0.421rem;
    height: 0.7rem;
    background-image: url(../Contents/ImagesPkg/common/icons/icon_arrow-right-rounded.svg);
  }
  .c-cat-secondary-name {
    column-gap: 1rem;
    height: 5rem;
    padding: 0 1.2rem 0 1rem;
    transition: background-color var(--transition-default);
  }
  .c-cat-secondary-name:hover {
    background-color: #d3d3d3;
  }
  .c-cat-secondary-name::after {
    transform: rotate(-90deg);
  }
  .c-cat-secondary-name .c-cat-secondary-name__text {
    font-size: 1.4rem;
  }
  .c-cat-tertiary-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem 0.6rem;
  }
  .c-cat-tertiary-list a {
    column-gap: 0.75rem;
    height: 100%;
    line-height: 1.45;
    letter-spacing: 0.05em;
  }
  .c-cat-tertiary-list a::before {
    flex-basis: 0.428rem;
    height: 0.6rem;
    background-image: url(../Contents/ImagesPkg/common/icons/icon_arrow-right-rounded.svg);
  }
  .c-cat-tertiary-list span {
    font-size: 1.1rem;
    line-height: 1.45;
    letter-spacing: 0;
  }
  .c-cat-tertiary-list a:hover span {
    text-decoration: underline;
  }
}

/* ===================== 11: category accordion (SP) */
.m-category-acc {
}
.m-category-acc .m-category-acc__heading {
  padding: 1.5rem 2.4rem;
  font-size: 1.5rem;
  color: var(--color-white);
  line-height: 2;
  letter-spacing: 0.1em;
  background-color: var(--color-grey);
  border-radius: 0.6rem 0.6rem 0 0;
}
.m-category-acc .m-category-acc__primary-wrap {
  display: flex;
  flex-direction: column;
  margin-top: 0.6rem;
  row-gap: 1rem;
}
.m-category-acc .m-category-acc__primary-name {
  display: grid;
  justify-content: start;
  align-items: center;
  height: 6rem;
  margin-bottom: 0.2rem;
  padding: 0 2.4rem;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  background-color: var(--color-white);
}
.m-category-acc .m-category-acc__primary .m-category-acc__primary-body {
  display: block;
}
.m-category-acc .m-category-acc__primary-body {
  padding: 1rem;
  background-color: var(--color-white);
}
.m-category-acc .m-category-acc__secondary {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.m-category-acc .m-category-acc__tertiary-body {
  padding: 1.7rem 1.9rem 3rem;
  background-color: var(--color-bg-primary);
}
.m-category-acc .m-category-acc__tertiary-all-link {
  display: grid;
  place-items: center;
  width: 100%;
  height: 3.6rem;
  margin-top: 2rem;
  font-size: 1.2rem;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0.1em;
  background-color: var(--color-grey);
  border-radius: 100vh;
}

/* ===================== 12: category links (PC/SP) */
/* --- for large viewport --- */
@media screen and (min-width: 769px) {
  .m-cat-list__section {
    --list-grid-column-gap: 1rem;
    --list-grid-column-count: 3;
  }
  .m-cat-list__section .c-cat-primary-link {
    /* ボタンのサイズをリストの1カラムと合わせる */
    width: calc(
      (
          100% -
            (var(--list-grid-column-gap) * (var(--list-grid-column-count) - 1))
        ) / var(--list-grid-column-count)
    );
  }
  .m-cat-list__section > ul {
    display: grid;
    grid-template-columns: repeat(var(--list-grid-column-count), 1fr);
    gap: 2.6rem var(--list-grid-column-gap);
    margin-top: 1.1rem;
  }
  .m-cat-list__section .c-cat-tertiary-list {
    margin-top: 1.5rem;
  }
}

/* ===================== 13: tab */
.js-tabController {
  display: flex;
}
.js-tabItem {
  display: none;
}
.js-tabItem.tabItem-active {
  display: var(--disp-val, block);
}
.c-tabController {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  padding: 0.4rem;
  border-radius: 100vh;
  background-color: var(--color-white);
}
.c-tabController li {
  display: grid;
  place-items: center;
  text-align: center;
  line-height: 1.4;
  border-radius: 100vh;
  transition: all var(--transition-default);
}
.c-tabController li.tab-active {
  color: var(--color-white);
  background-color: var(--color-grey);
}
/* --- for small viewport --- */
@media screen and (max-width: 768px) {
  .js-tabController {
    display: flex;
    column-gap: 0.8rem;
  }
  .c-tabController {
  }
  .c-tabController li {
    flex: 1 0 auto;
    height: 3.2rem;
    padding: 0 0.4rem;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
  }
  .c-tabController li.tab-active {
    letter-spacing: 0.1em;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 769px) {
  .js-tabController {
    display: flex;
  }
  .js-tabController li {
    font-size: 1.6rem;
  }
  .js-tabController li:hover {
    cursor: pointer;
  }
  .c-tabController {
    display: inline-flex;
  }
  .c-tabController li {
    flex: 0 0 auto;
    width: 13rem;
    height: 3rem;
    font-size: 1.2rem;
  }
  .c-tabController li:hover {
    opacity: var(--hover-opacity);
  }
}

/* ===================== 14: accordion */
.js-accordion .js-accordionItem {
  display: none;
}
/* --- for large viewport --- */
@media screen and (min-width: 769px) {
  .js-accordion .js-accordionTitle:hover {
    cursor: pointer;
  }
}

/* ===================== 15: header */
#Header .header_body {
  position: relative;
  z-index: var(--zindex-header);
  background-color: var(--color-white);
}
#Header .header__info-item[data-info-type="banner"] {
  background-color: var(--color-info-bg, #e2dec5);
}
#Header .header__info-item[data-info-type="text"] {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 3rem;
  font-size: 1.2rem;
  color: var(--color-info-text, var(--color-white));
  text-align: center;
  background-color: var(--color-info-bg, #cbba9a);
}
#Header .header__info-item a {
  display: grid;
  place-items: center;
  height: 100%;
}
#Header .header__main {
  position: relative;
}
#Header .header__inner {
  display: grid;
  align-items: center;
}
#Header .header__logo {
  grid-area: logo;
}
#Header .header__logo a {
  display: grid;
  place-items: center;
}
#Header .header__menu-wrap {
  grid-area: menu;
}
#Header .header__small-icon {
  display: grid;
  justify-content: end;
  align-items: center;
  grid-template-columns: repeat(3, 2.5rem);
}
#Header .header__small-icon .icon-slide {
  display: none;
  position: absolute;
  width: 28rem;
  top: calc(100% + 1.5rem);
  right: -7.5rem;
}
@media screen and (min-width: 769px) {
  #Header .header__small-icon li:has(.icon-slide) {
    position: relative;
  }
  #Header .header__small-icon .icon-slide:before {
    content: "";
    position: absolute;
    top: -16px;
    right: 8.0rem;
    margin-left: -7px;
    border: 7px solid transparent;
    border-bottom: 10px solid #f4f4f4;
  }
}
@media screen and (max-width: 768px) {
  #Header .header__small-icon .icon-slide {
    width: 100%;
    top: 100%;
    right: unset;
    left: 0;
  }
}
#Header .header__small-icon .icon-slide .icon-slide-list {
  padding: 1.5rem 3rem;
  background-color: #f4f4f4;
  box-shadow: 0 0.5rem 0.6rem var(--shadow-primary);
}
#Header .header__small-icon .icon-slide .icon-slide-list > li {
  padding-block: 0.3rem;
}
#Header .header__small-icon .icon-slide .icon-slide-list > li a {
  line-height: 2.3;
}
#Header .header__small-icon-list--cart {
  position: relative;
}
#Header .header__small-icon-list--cart .product-count {
  position: absolute;
  top: 0;
  right: 0;
  z-index: var(--zindex-front);
  transform: translate(50%, -40%);
  display: grid;
  justify-content: center;
  align-items: baseline;
  font-family: var(--font-en);
  text-align: center;
  color: var(--color-white);
  line-height: 1.4;
  letter-spacing: 0;
  background-color: var(--color-secondary);
  border-radius: 50%;
}
/* --- for small viewport --- */
@media screen and (max-width: 768px) {
  #Header .header_body {
    position: fixed;
    top: 0;
    width: 100vw;
    transition: transform var(--transition-default);
  }
  #Header[data-header-state="unexpanded"] .header_body {
    transform: translateY(calc(-100% + var(--headerMainHeight, 0px)));
  }
  #Header[data-header-state="expanded"] .header_body {
    transform: translateY(-100%);
  }
  #Header .header__app-banner {
    position: relative;
    display: none;
  }
  #Header .header__app-banner-close {
    position: absolute;
    top: 50%;
    right: 2.3rem;
    transform: translateY(-50%);
    width: 1.4rem;
    aspect-ratio: 1;
    background: url(../Contents/ImagesPkg/common/app_banners/icon-app_banner_close.svg)
      center / 100% no-repeat;
    border: none;
  }
  #Header .header__info-item[data-info-type="text"] > a {
    padding: 0 2.5rem;
  }
  #Header .header__info-item[data-info-type="banner"] picture {
    height: 6rem;
  }
  #Header .header__info-item[data-info-type="banner"] img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  #Header .header__main {
    box-shadow: 0 0.5rem 0.6rem var(--shadow-primary);
  }
  #Header .header__inner {
    grid-template-columns: 3rem 2.6rem 10.8rem 1fr;
    grid-template-areas: "hamburger . logo menu";
    padding: 2rem 2.5rem;
  }
  #Header .header__hamburger {
    grid-area: hamburger;
  }
  #Header .header__hamburger button {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 3rem;
    background-color: unset;
    border: none;
  }
  #Header .header__hamburger .header__hamburger-icon {
    overflow: hidden;
    position: relative;
    display: block;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    margin: 0 auto;
  }
  #Header .header__hamburger .header__hamburger-icon span {
    position: absolute;
    left: 0;
    transform-origin: center;
    display: block;
    width: 100%;
    height: 1px;
    margin: auto;
    background-color: var(--color-grey);
    transition: all var(--transition-default);
  }
  #Header .header__hamburger .header__hamburger-icon .hamb-line1 {
    top: 20%;
  }
  #Header .header__hamburger .header__hamburger-icon .hamb-line2 {
    top: 0;
    bottom: 0;
  }
  #Header .header__hamburger .header__hamburger-icon .hamb-line3 {
    bottom: 20%;
  }
  #Header .header__hamburger.is-menu-open .header__hamburger-icon .hamb-line1 {
    top: 0;
    bottom: 0;
    transform: rotate(-45deg);
  }
  #Header .header__hamburger.is-menu-open .header__hamburger-icon .hamb-line2 {
    opacity: 0;
  }
  #Header .header__hamburger.is-menu-open .header__hamburger-icon .hamb-line3 {
    top: 0;
    bottom: 0;
    transform: rotate(45deg);
  }
  #Header .header__hamburger .header__hamburger-text {
    font-family: var(--font-en);
    font-size: 1rem;
    text-align: center;
    color: var(--color-grey);
    letter-spacing: 0.1em;
    white-space: nowrap;
  }
  #Header .header__logo {
    width: 100%;
  }
  #Header .header__menu-wrap {
    justify-self: end;
  }
  #Header .header__small-icon {
    column-gap: 1rem;
  }
  #Header .header__small-icon-list--cart .product-count {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1rem;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 769px) {
  #Header {
    position: sticky;
    top: 0;
    z-index: var(--zindex-header);
    width: 100vw;
  }
  #Header .header__main {
    box-shadow: 0 0.3rem 0.6rem var(--shadow-primary);
  }
  #Header .header__app-banner {
    display: none !important;
  }
  #Header .header__info-item[data-info-type="banner"] picture {
    max-width: 100rem;
    margin: 0 auto;
  }
  #Header .header__inner {
    grid-template-columns: 15rem 1fr;
    grid-template-areas: "logo menu";
    column-gap: 6.7rem;
    width: min(100%, var(--container-default) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
  }
  #Header .header__logo {
    width: 100%;
  }
  #Header .header__logo a {
    transition: opacity var(--transition-default);
  }
  #Header .header__logo a:hover {
    opacity: var(--hover-opacity);
  }
  #Header .header__menu-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  #Header .header__left-menu {
    flex-shrink: 0;
    margin-right: 7rem;
  }
  #Header .header__left-menu > ul {
    display: flex;
    align-items: center;
    column-gap: 5rem;
  }
  #Header .header__left-menu-item {
    padding: 3.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border var(--transition-default);
  }
  #Header .header__left-menu-item:hover {
    border-bottom-color: var(--color-dark-grey);
  }
  #Header .header__left-menu-name {
    font-size: 1.3rem;
    color: var(--color-grey);
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.1em;
    transition: color var(--transition-default);
  }
  #Header dt.header__left-menu-name {
    display: flex;
    align-items: center;
    column-gap: 1rem;
  }
  #Header dt.header__left-menu-name::after {
    content: "";
    display: block;
    width: 1rem;
    aspect-ratio: 5 / 3;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210.414%22%20height%3D%225.914%22%20viewBox%3D%220%200%2010.414%205.914%22%3E%0A%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_138%22%20data-name%3D%22%E3%83%91%E3%82%B9%20138%22%20d%3D%22M5252.689%2C2804.3l4.5%2C4.5-4.5%2C4.5%22%20transform%3D%22translate(2814.008%20-5251.982)%20rotate(90)%22%20fill%3D%22none%22%20stroke%3D%22%23b9b9b9%22%20stroke-linecap%3D%22round%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%221%22%2F%3E%0A%3C%2Fsvg%3E%0A")
      center / 100%;
    transition: transform var(--transition-default);
  }
  #Header .header__left-menu-item:hover .header__left-menu-name {
    color: var(--color-text-primary);
    opacity: 1;
    cursor: pointer;
  }
  #Header .header__left-menu-item:hover dt.header__left-menu-name::after {
    transform: rotate(180deg);
  }
  #Header .header__left-menu-contents {
    --dropdown-menu-height: min(63.6rem, 90vh);

    overflow-y: auto;
    overscroll-behavior-y: contain;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: var(--zindex-behind);
    width: min(80%, 140rem);
    max-height: 80vh;
    max-height: 80dvh;
    margin: 0 auto;
    padding: 3rem 3rem 4rem;
    background-color: var(--color-white);
    box-shadow: 0 0.3rem 0.6rem var(--shadow-primary);
    opacity: 0;
    visibility: hidden;
    transition: all 0.01s ease;
  }
  #Header .header__left-menu-item:hover .header__left-menu-contents {
    opacity: 1;
    visibility: visible;
  }
  #Header .header__left-menu-contents .m-cat-list__wrap {
    display: grid;
    align-items: start;
    grid-template:
      "title contents" 3.6rem
      "controller contents" 1fr / 15rem 1fr;
  }
  #Header .header__left-menu-contents .m-cat-list__title {
    grid-area: title;
  }
  #Header .header__left-menu-contents .m-cat-list__controller {
    overflow-y: auto;
    overscroll-behavior-y: contain;
    display: flex;
    flex-direction: column;
    row-gap: 0.9rem;
    grid-area: controller;
    padding: 0;
    max-height: var(--dropdown-menu-height);
    border-radius: 0;
    scrollbar-width: none;
  }
  #Header
    .header__left-menu-contents
    .m-cat-list__controller::-webkit-scrollbar {
    display: none;
  }
  #Header .header__left-menu-contents .m-cat-list__controller li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 0.5rem;
    width: 100%;
    height: 5rem;
    padding: 0 1.63rem 0 2rem;
    font-size: 1.3rem;
    line-height: 1.46;
    letter-spacing: 0.05em;
    background-color: var(--color-bg-primary);
    border-radius: 0.6rem 0 0 0.6rem;
    transition: color var(--transition-default),
      background-color var(--transition-default);
  }
  #Header .header__left-menu-contents .m-cat-list__controller li::after {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 1.106rem;
    height: 0.624rem;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%226.237%22%20height%3D%2211.06%22%20viewBox%3D%220%200%206.237%2011.06%22%3E%0A%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_1456%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%201456%22%20transform%3D%22translate(-10.538%2021.91)%20rotate(-90)%22%3E%0A%20%20%20%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_3853%22%20data-name%3D%22%E3%83%91%E3%82%B9%203853%22%20d%3D%22M0%2C10.56a.5.5%2C0%2C0%2C1-.354-.146.5.5%2C0%2C0%2C1%2C0-.707L4.323%2C5.03-.354.354a.5.5%2C0%2C0%2C1%2C0-.707.5.5%2C0%2C0%2C1%2C.707%2C0L5.737%2C5.03.354%2C10.414A.5.5%2C0%2C0%2C1%2C0%2C10.56Z%22%20transform%3D%22translate(21.41%2011.038)%20rotate(90)%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A")
      center / 100% no-repeat;
    opacity: 0;
    transition: opacity var(--transition-default);
  }
  #Header .header__left-menu-contents .m-cat-list__controller li.tab-active {
    color: var(--color-white);
    background-color: var(--color-grey);
  }
  #Header
    .header__left-menu-contents
    .m-cat-list__controller
    li.tab-active::after {
    opacity: 1;
  }
  #Header
    .header__left-menu-contents
    .m-cat-list__controller
    li.tab-active::after {
    opacity: 1;
  }
  #Header .header__left-menu-contents .m-cat-list__contents {
    grid-area: contents;
    margin-top: 0.3rem;
    padding: 3.2rem 2.5rem 3.6rem 3rem;
    border: 2px solid #efefef;
    scrollbar-width: none;
  }
  #Header .header__left-menu-contents .m-cat-list__contents::-webkit-scrollbar {
    display: none;
  }
  #Header .header__left-menu-contents .c-btn-primary {
    display: none;
  }
  #Header .header__search {
    position: relative;
    width: min(100%, 48rem);
    height: 4rem;
    margin-right: 2rem;
  }
  #Header .c-searchBox {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: var(--zindex-front);
    width: 100%;
    background: unset;
    transition: all 0.1s linear;
  }
  #Header
    :is(.header__search:hover, .header__search:focus-within)
    .c-searchBox {
    top: -2rem;
    width: calc(100% + (3rem * 2));
    padding: 2rem 3rem 3rem;
    background-color: #fff;
    box-shadow: 0 0.3rem 0.6rem var(--shadow-primary);
  }
  #Header :is(.header__search:hover, .header__search:focus-within)::before {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #Header .header__search .c-searchBox > div:first-of-type {
    display: none;
  }
  #Header .header__search .c-searchBox__form {
    width: 100%;
  }
  #Header .header__search .c-searchBox__keywords {
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-default);
  }
  #Header
    :is(.header__search:hover, .header__search:focus-within)
    .c-searchBox__keywords {
    height: 100%;
    opacity: 1;
    visibility: visible;
  }
  #Header .header__icon-menu-wrap {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    column-gap: 2.5rem;
  }
  #Header .header__icon-menu-wrap::after {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 1px;
    height: 4rem;
    background-color: var(--color-bg-primary);
  }
  #Header .header__large-icon {
    display: flex;
    order: -1;
    justify-content: flex-end;
    align-items: center;
    flex-shrink: 0;
    column-gap: 1.5rem;
  }
  #Header .header__large-icon a {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity var(--transition-default);
  }
  #Header .header__large-icon a:hover {
    opacity: var(--hover-opacity);
  }
  #Header .header__large-icon figure {
    flex: 0 0 auto;
    width: 2.5rem;
  }
  #Header .header__large-icon span {
    font-size: 1.1rem;
    color: var(--color-grey);
    line-height: 1.6;
  }
  #Header .header__small-icon {
    order: 1;
    column-gap: 1.2rem;
  }
  #Header .header__small-icon a {
    transition: opacity var(--transition-default);
  }
  #Header .header__small-icon a:hover {
    opacity: var(--hover-opacity);
  }
  #Header .header__small-icon-list--cart .product-count {
    width: 1.6rem;
    height: 1.6rem;
    font-size: 1.1rem;
  }
}
/* --- for middle viewport --- */
@media screen and (min-width: 769px) and (max-width: 1300px) {
  #Header .header__inner {
    grid-template-columns: 13rem 1fr;
    column-gap: 1.5rem;
    width: 100%;
  }
  #Header .header__icon-menu-wrap {
    column-gap: 1rem;
  }
  #Header .header__left-menu {
    margin-right: 1rem;
  }
  #Header .header__left-menu > ul {
    column-gap: 1.5rem;
  }
  #Header dt.header__left-menu-name {
    column-gap: 0.5rem;
  }
  #Header .header__search {
    margin-right: 1rem;
  }
  #Header .header__search-selectBox {
    flex: 0 0 8rem;
  }
  #Header .header__search-selectBox select {
    padding-left: 1rem;
  }
  #Header .header__search-input {
    padding-left: 1rem;
  }
  #Header .header__large-icon {
    column-gap: 0.8rem;
  }
  #Header .header__large-icon span {
    font-size: 1rem;
  }
}

/* ===================== 16: hamburger */
#Hamburger {
  position: absolute;
  top: 100%;
  left: -100%;
  z-index: var(--zindex-behind);
  width: 100%;
  height: calc(100vh - var(--footerMenuHeight));
  background-color: var(--color-bg-primary);
  transition: left var(--transition-default);
}
@supports (height: 100dvh) {
  #Hamburger {
    height: calc(100dvh - var(--footerMenuHeight));
  }
}
#Hamburger.is-menu-open {
  left: 0;
}
#Hamburger .hamburger__inner {
  overflow-y: auto;
  overscroll-behavior-y: contain;
  height: 100%;
  padding: 3rem var(--container-padding) calc(12rem + var(--footerMenuHeight));
}
#Hamburger .hamburger__login-button {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1rem;
  width: 100%;
  padding: 1.5rem 1rem;
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 0.1em;
  background-color: var(--color-white);
  border-radius: 0.6rem;
}
#Hamburger .hamburger__login-button::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 2rem;
  aspect-ratio: 1;
  background: url(../Contents/ImagesPkg/common/icons/icon_user-black.svg) center /
    100% no-repeat;
}
#Hamburger .hamburger__page-list {
  margin-top: 3rem;
}
#Hamburger .hamburger__page-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 5.2rem;
  column-gap: 1.4rem;
}
#Hamburger .hamburger__page-list li {
  border-bottom: 1px solid var(--color-white);
}
#Hamburger .hamburger__page-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 1rem;
  height: 100%;
  line-height: 1.25;
}
#Hamburger .hamburger__page-list a::after {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 0.4rem;
  aspect-ratio: 4 / 9;
  background: url(../Contents/ImagesPkg/common/icons/icon_arrow-right.svg)
    center / 100% no-repeat;
}
#Hamburger .hamburger__category-list {
  margin-top: 3rem;
}
#Hamburger .hamburger__info-area .c-info-area__sns svg {
  color: var(--color-grey);
}

/* ===================== 17: bottom-menu */
#bottom_menu {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: var(--zindex-header);
  width: 100%;
  height: 6rem;
  background-color: var(--color-bg-secondary);
  border-top: 1px solid var(--color-white);
}
#bottom_menu .bottom-menu__wrap {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 7.4rem 1fr;
  height: 100%;
}
#bottom_menu .bottom-menu__list {
  display: flex;
  align-items: center;
}
#bottom_menu .bottom-menu__list:not(.bottom-menu__list--isCenter)::after {
  content: "";
  display: block;
  width: 1px;
  height: 3.2rem;
  background-color: #dcdcdc;
}
#bottom_menu .bottom-menu__list--isCenter {
  flex: 0 0 7.4rem;
}
#bottom_menu .bottom-menu__item {
  color: var(--color-grey);
}
#bottom_menu .bottom-menu__item:not(.bottom-menu__item--search) {
  flex: 1 1 auto;
}
#bottom_menu .bottom-menu__item:not(.bottom-menu__item--search):nth-of-type(1) {
  order: -1;
}
#bottom_menu .bottom-menu__item:not(.bottom-menu__item--search):nth-of-type(2) {
  order: 1;
}
#bottom_menu .bottom-menu__item--search {
  position: relative;
  flex: 0 0 100%;
  color: var(--color-white);
}
#bottom_menu .bottom-menu__item--search::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  aspect-ratio: 1;
  z-index: var(--zindex-behind);
  color: var(--color-white);
  background-color: var(--color-secondary);
  border-radius: 50%;
}
#bottom_menu .bottom-menu__item--active:not(.bottom-menu__item--search) {
  color: #333;
}
#bottom_menu .bottom-menu__item--search.bottom-menu__item--active::before {
  background-color: var(--color-grey);
}
#bottom_menu .bottom-menu__item a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 6rem;
}
#bottom_menu .bottom-menu__item--search a {
  border-radius: 50%;
}
#bottom_menu .bottom-menu__item svg {
  flex-shrink: 0;
  width: 2.5rem;
}
#bottom_menu .bottom-menu__name {
  font-size: 1.1rem;
  text-align: center;
  letter-spacing: 0;
}

/* ===================== 18: footer */
#Foot {
}
#Foot .footer_body {
  color: var(--color-white);
  background-color: var(--color-grey);
}
#Foot .footer__page-list {
  display: grid;
}
#Foot .footer__page-list a {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.9rem;
  height: 100%;
  letter-spacing: 0.1em;
}
#Foot .footer__page-list a::before {
  content: "";
  display: block;
  flex-shrink: 0;
  background: center / 100% no-repeat;
}
#Foot .footer__bottom-logo {
  display: grid;
  place-items: center;
}
#Foot .footer__bottom-copyright {
  font-family: var(--font-en);
  letter-spacing: 0.1em;
}
#Foot .pagetop {
  position: fixed;
  z-index: var(--zindex-headerBack);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-default);
}
#Foot .pagetop.show {
  opacity: 1;
  visibility: visible;
}
#Foot .pagetop__link {
  display: grid;
  place-items: center;
  background-color: var(--color-bg-secondary);
  box-shadow: 0 0.3rem 0.6rem rgb(0 0 0 / 16%);
  border: 1px solid var(--color-white);
  border-radius: 50%;
}
#Foot .pagetop__txt {
  display: none;
}
/* --- for small viewport --- */
@media screen and (max-width: 768px) {
  #Foot .footer__body-top {
    padding: 3rem 3rem 2rem;
  }
  #Foot .footer__category-primary-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 0.5rem;
    height: 6rem;
    padding-right: 1rem;
    font-size: 1.5rem;
    line-height: 1.4;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #b9b9b9;
  }
  #Foot .footer__category-primary-title::after {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 2rem;
    aspect-ratio: 1;
    background: url(../Contents/ImagesPkg/common/icons/icon_circle-arrow-grey.svg)
      center / 100% no-repeat;
    transition: transform var(--transition-default);
  }
  #Foot .footer__category-primary-title.js-accordionTitle--open::after {
    transform: rotate(180deg);
  }
  #Foot .footer__category-list {
  }
  #Foot .footer__category-list > li {
    border-bottom: 1px solid #b9b9b9;
  }
  #Foot .footer__category-list > li > a {
    display: flex;
    align-items: center;
    column-gap: 1rem;
    height: 5.2rem;
    font-size: 1.4rem;
    line-height: 1.4;
    letter-spacing: 0.1em;
  }
  #Foot .footer__category-list > li > a::before {
    content: "";
    width: 0.504rem;
    height: 0.966rem;
    background: url(../Contents/ImagesPkg/common/icons/icon_arrow-right-grey.svg)
      center / 100% no-repeat;
  }
  #Foot .footer__page-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
    margin-top: 2.7rem;
  }
  #Foot .footer__page-list a {
    column-gap: 0.9rem;
    font-size: 1.2rem;
    line-height: 1.25;
  }
  #Foot .footer__page-list a::before {
    width: 0.504rem;
    height: 0.966rem;
    background-image: url(../Contents/ImagesPkg/common/icons/icon_arrow-right-grey.svg);
  }
  #Foot .footer__body-bottom {
    padding: 2rem 3rem 12rem;
  }
  #Foot .footer__bottom-logo {
    width: 11.5rem;
    margin: 0 auto;
  }
  #Foot .footer__sns-area {
    display: none;
  }
  #Foot .footer__bottom-copyright {
    margin-top: 2.3rem;
    text-align: center;
  }

  #Foot .pagetop {
    right: 1rem;
    bottom: 7rem;
  }
  #Foot .pagetop__link {
    width: 4.5rem;
    height: 4.5rem;
  }
  #Foot .pagetop__link svg {
    width: 0.7rem;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 769px) {
  #Foot .footer__body-top-inner,
  #Foot .footer__body-bottom-inner {
    width: min(100%, var(--container-default) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
  }
  #Foot .footer__body-top {
    padding: 6.2rem 0 4.5rem;
  }
  #Foot .footer__body-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 4rem;
  }
  #Foot .footer__category-list {
    display: none;
  }
  #Foot .footer__page-list {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, auto);
    grid-auto-flow: column;
    gap: 2.1rem 1rem;
    flex: 1 1;
  }
  #Foot .footer__page-list a {
    column-gap: 0.94rem;
    font-size: 1.3rem;
  }
  #Foot .footer__page-list a::before {
    width: 0.625rem;
    height: 1rem;
    background-image: url(../Contents/ImagesPkg/common/icons/icon_arrow-right-rounded-grey.svg);
  }
  #Foot .footer__info-area .c-info-area__sns {
    display: none;
  }
  #Foot .footer__info-area .c-info-area {
    flex-shrink: 0;
  }
  #Foot .footer__body-bottom {
    padding: 3.6rem 0;
    border-top: 1px solid #9a9a9a;
  }
  #Foot .footer__body-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 1rem;
  }
  #Foot .footer__bottom-icons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 6.4rem;
  }
  #Foot .footer__bottom-logo {
    flex-shrink: 0;
    width: 15.015rem;
  }
  #Foot .footer__sns-area .c-info-area__sns {
    justify-content: flex-start;
  }
  #Foot .footer__bottom-copyright {
    font-size: 1.1rem;
    text-align: right;
  }

  #Foot .pagetop {
    right: 2rem;
    bottom: 2rem;
  }
  #Foot .pagetop__link {
    width: 5rem;
    height: 5rem;
  }
  #Foot .pagetop__link svg {
    width: 0.62rem;
  }
}

/* ===================== 19: overlay */
.navigation-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--zindex-headerBack);
  width: 100%;
  height: 100%;
  background-color: var(--shadow-primary);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-default);
}
.navigation-overlay.js-overlayTarget--onHeader {
  z-index: 0;
}
.navigation-overlay.js-overlayTarget--active {
  opacity: 1;
  visibility: visible;
}

/* ===================== 20: Product items */
.product__listitem {
  width: 100%;
}
.product__listitem--container {
  width: 100%;
  margin-top: 1.8rem;
  overflow-x: auto;
  overflow-y: hidden;
}
.product__listitem--title {
  width: 75%;
  word-break: keep-all;
  font-size: min(1.6rem, calc(16 * (100vw / 375)));
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.875;
  padding-left: 8%;
}
.product__listitem--wrapper {
  width: max-content;
  display: flex;
  column-gap: 3.2vw;
  padding: 0 8% 1rem;
}
.product__listitem--item {
  width: min(13rem, calc(130 * (100vw / 375)));
  flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  .product__listitem--container {
    margin-top: 2.5rem;
    overflow: hidden;
  }
  .product__listitem--title {
    font-size: min(1.6rem, calc(16 * (100vw / 1600)));
    padding-left: 0;
  }
  .product__listitem--title .sponly {
    display: none;
  }
  .product__listitem--wrapper {
    width: 100%;
    column-gap: 1.21428571%;
    padding: 0;
  }
  .product__listitem--item {
    width: 11.42857143%;
  }
  .product__listitem--item:nth-of-type(n + 9) {
    display: none;
  }
  #crosssell .product__listitem--item:nth-of-type(n + 9){
    display: inherit;
  }
}
/* ===================== 21: Recommend */
.product__recommend .dv_rc_header,
.product__recommend .dv_rc_title,
.product__recommend .dv_rc_description {
  display: none;
}
.product__recommend #dvRecommend {
  margin: 10rem 0 0;
  padding: 7.5rem 0 0;
  position: relative;
}
.product__recommend #dvRecommend::before {
  width: 200vw;
  height: 1px;
  background-color: #d9d9d9;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.product__recommend .dv_rc_name {
  height: calc(2.19999rem * 2);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6923;
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 1.5rem;
}
.product__recommend .dv_rc_price {
  font-family: var(--font-en);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.2941;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .product__recommend #dvRecommend {
    margin: 3.5rem 0 0;
    padding: 3.5rem 0 0;
  }
  .product__recommend .swiper-slide {
    width: min(13rem, calc(130 * (100vw / 375)));
    flex-shrink: 0;
  }
  .product__recommend .swiper-wrapper {
    width: max-content;
    display: flex;
    column-gap: 3.2vw;
    padding: 0 8% 1rem;
  }
  .product__recommend .dv_rc_price {
    font-family: var(--font-en);
    font-size: 1.2rem;
  }
  .product__recommend .product__listitem--container {
    overflow-x: auto;
  }
}

/* バリエーション価格を表示した際の制御 */
.c-product.c-product__target-item .c-product__price-item.price-variation__item{
  display: none;
}
.c-product.c-product__target-item .c-product__price-item.price-variation__item.price-variation__item--disp,
.c-product.c-product__target-item .c-product__price-item.price-variation__item.dispproper-price,
.c-product.c-product__target-item .c-product__price-item.price-variation__item.dispsale-price{
  display: inline-flex;
}

.c-product.c-product__target-item .mark-more .tax-excluded::after, 
.c-product.c-product__target-item .mark-more .tax-included .tax-included-numeric::after {
  content: '～';
}
.c-product.c-product__target-item .mark-more .discountRateS {
  display: inline-flex;
  align-items: center;
}
.c-product.c-product__target-item .mark-more .discountRateS::before{
  content: '～';
  font-size: 1rem;
}

.dispsale-price:has(.discountRateS) .target__variation-price--proper,
.dispsale-price:has(.discountRateS) .priceBefore{
  position: relative;
}
.dispsale-price:has(.discountRateS) .target__variation-price--proper::before,
.dispsale-price:has(.discountRateS) .priceBefore::before{
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  display: block;
  margin: auto;
  width: 100%;
  height: 0.1rem;
  padding: 0;
  background-color: var(--color-text-primary);
}

.c-product.c-product__target-item .c-product__price-item.price-variation__item.price-variation__item--disp.price-variation__item--disp-single .detail__price--old-price .tax-excluded::after,
.c-product.c-product__target-item .c-product__price-item.price-variation__item.price-variation__item--disp.price-variation__item--disp-single .detail__price--old-price .tax-included .tax-included-numeric::after{
  display: none;
}

.c-product.c-product__target-item .c-product__price-item.price-variation__item.price-variation__item--disp.price-variation__item--disp-vari-fixed:not(.price-variation__item--disp-fixed) .detail__price--old-price .tax-excluded::after,
.c-product.c-product__target-item .c-product__price-item.price-variation__item.price-variation__item--disp.price-variation__item--disp-vari-fixed:not(.price-variation__item--disp-fixed) .detail__price--old-price .tax-included .tax-included-numeric::after{
  display: none;
}

.c-product.c-product__target-item:has(.detail__price--old-price-same) .c-product__price-item.price-variation__item.price-variation__item--disp.price-variation__item--from .detail__price--old-price .tax-excluded::after,
.c-product.c-product__target-item:has(.detail__price--old-price-same) .c-product__price-item.price-variation__item.price-variation__item--disp.price-variation__item--from .detail__price--old-price .tax-included .tax-included-numeric::after{
  display: none;
}

/* バリエーションごとの価格で追加 */
.c-product__price:has(.price-variation__item) .price-single{
  display: none;
}