a {
  color: inherit;
  text-decoration: none;
}

.productlist {
  --inner-width: 92%;
}
.productlist button {
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .productlist {
    --inner-width: 100%;
  }
}
.productlist__inner {
  width: 100%;
  max-width: var(--container-default);
  margin: 0 auto;
  padding-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  .productlist[data-pattern=leftnav] .productlist__inner {
    display: grid;
    grid-template-columns: 24% 1fr;
    gap: 3rem 5rem;
  }
  .productlist[data-pattern=leftnav] .productlist__leftnav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .productlist[data-pattern=leftnav] .productlist__leftnav .form__section--item {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .productlist__headarea {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-gray-300);
  }
}
.productlist__heading {
  margin: 0;
  --title-direction: row;
}
@media screen and (min-width: 768px) {
  .productlist__heading .c-page-title--ja {
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  .productlist__heading {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-gray-300);
  }
}
.productlist__itemcount {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .productlist__itemcount {
    font-size: 1.4rem;
  }
}
.productlist__itemcount .c-pager {
  margin-top: 0;
  font-size: inherit;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.productlist__itemcount .c-pager__totalcount {
  display: inline-block;
  font-weight: var(--fw-bold);
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .productlist__itemcount .c-pager__totalcount {
    font-size: 2.1rem;
  }
}
.productlist__itemcount .c-pager__item {
  display: none;
}
.productlist__itemcount .c-pager__button {
  width: 3.2rem;
  grid-template-rows: 1fr;
}
@media screen and (max-width: 767px) {
  .productlist__itemcount {
    padding: 1.5rem 0;
  }
  .productlist__itemcount .c-pager__wrapper {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .productlist__listarea {
    padding: 0 1.5rem;
  }
}
.productlist__controlarea {
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .productlist__controlarea {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  /* .productlist__controlarea .button__category--open {
    min-width: unset;
    height: 4rem;
    padding-block: 0;
    padding-inline: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
  } */
}

.sortbox__content {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .sortbox__content {
    display: inline-flex;
    padding: 1.5rem 0 1.5rem;
  }
}
.sortbox .option--active {
  display: inline-block;
  font-weight: var(--fw-semibold);
  padding-right: 3rem;
  background-image: url(../Contents/ThemeImage/common/arrow.svg);
  background-repeat: no-repeat;
  background-size: 1.5rem 1rem;
  background-position: top 50% right 0.5rem;
}
@media screen and (max-width: 767px) {
  .sortbox .option--active {
    width: 100%;
  }
}
.sortbox__item {
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .sortbox__item {
    width: 100%;
  }
}
.sortbox__item dt {
  display: flex;
  gap: 0.6rem;
}
@media screen and (min-width: 768px) {
  .sortbox__item dt {
    padding-bottom: 0.6rem;
  }
}
@media screen and (max-width: 767px) {
  .sortbox__item dt {
    width: 100%;
    height: 4rem;
    padding: 0 1rem;
    border: 1px solid var(--color-gray-300);
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
  }
}
.sortbox__item dd {
  width: 100%;
  position: relative;
}
.sortbox__options {
  visibility: hidden;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: var(--option-width);
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-300);
  border-radius: 0.4rem;
  font-size: 1.3rem;
  transition: height var(--transition-default);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .sortbox__options {
    --option-width: 20rem;
  }
}
@media screen and (max-width: 767px) {
  .sortbox__options {
    --option-width: 100%;
  }
}
.sortbox__options li {
  --color-active: var(--color-secondary);
  font-size: inherit;
}
.sortbox__options li a {
  transition: background-color var(--transition-default);
}
.sortbox__options li:not(.active) > a, .sortbox__options li.active {
  display: block;
  padding: 1.5rem 1rem;
}
.sortbox__options li.active {
  font-weight: var(--fw-semibold);
  background-color: var(--color-active);
}
@media (hover: hover) {
  .sortbox__options li:not(.active) > a:hover {
    background-color: var(--color-active);
  }
}

.categorytree__list[data-structure=parent] {
  padding: 0 1rem;
}
.categorytree__list[data-structure=child] {
  overflow: hidden;
  padding-left: 1.4rem;
}
.categorytree__item--summary {
  display: flex;
  align-items: center;
  padding: 1.5rem 1rem;
  list-style: none;
  text-align: left;
}
.categorytree__item--summary::-webkit-details-marker {
  display: none;
}
.categorytree__item--details.js-accordionDetails > .categorytree__item--summary {
  position: relative;
  justify-content: space-between;
}
.categorytree__item--details.js-accordionDetails > .categorytree__item--summary::before, .categorytree__item--details.js-accordionDetails > .categorytree__item--summary::after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1px;
  background-color: var(--color-gray-600);
}
.categorytree__item--details.js-accordionDetails > .categorytree__item--summary::before {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%) rotate(-90deg);
  transition: transform var(--transition-default);
}
.categorytree__item--details.js-accordionDetails > .categorytree__item--summary + .categorytree__list li:first-child a {
  padding-top: 0.75rem;
}
.categorytree__item--details.js-accordionDetails[data-state-accordion=opened] > .categorytree__item--summary::before {
  transform: translateY(-50%);
}
.categorytree__item + .categorytree__item {
  border-top: 1px solid var(--color-gray-300);
}

/* .modal__content--head {
  position: relative;
}
.modal__content--body {
  overflow: hidden;
  overflow-y: auto;
}
.modal__button--close {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  margin: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .modal__button--close {
    width: 2rem;
    height: 2rem;
    right: 1rem;
  }
}
.modal__button--close span {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.modal__button--close span::before, .modal__button--close span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--color-gray-600);
  position: absolute;
  top: 50%;
  left: 50%;
  transition: transform var(--transition-default);
}
.modal__button--close span::before {
  transform: translateY(-50%) translateX(-50%) rotate(-45deg);
}
.modal__button--close span::after {
  transform: translateY(-50%) translateX(-50%) rotate(45deg);
} */

/* @media screen and (min-width: 768px) {
  .productlist[data-pattern=leftnav] .form__section--heading {
    --heading-sidepadding: 2rem;
    padding-left: var(--heading-sidepadding);
    padding-right: var(--heading-sidepadding);
    text-align: left;
    position: relative;
  }
  .productlist[data-pattern=leftnav] [data-is-accordion] .form__section--heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  .productlist[data-pattern=leftnav] [data-is-accordion] .form__section--heading::before, .productlist[data-pattern=leftnav] [data-is-accordion] .form__section--heading::after {
    content: "";
    display: inline-block;
    width: 1.4rem;
    height: 2px;
    background-color: var(--color-gray-600);
  }
  .productlist[data-pattern=leftnav] [data-is-accordion] .form__section--heading::before {
    position: absolute;
    top: 50%;
    right: var(--heading-sidepadding);
    transform: translateY(-50%);
    transition: transform var(--transition-default);
  }
  .productlist[data-pattern=leftnav] [data-is-accordion].closed .form__section--heading::before {
    transform: translateY(-50%) rotate(-90deg);
  }
  .productlist[data-pattern=leftnav] [data-is-accordion].closed .modal__content--body {
    display: none;
  }
  .productlist[data-pattern=leftnav] .modal__button--close {
    display: none;
  }
  .productlist[data-pattern=maxwidth] .modal__container {
    display: none;
    position: absolute;
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition-default);
  }
  .productlist[data-pattern=maxwidth] .modal__content {
    position: fixed;
    z-index: 1000;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    max-width: 70rem;
    height: 70svh;
    background-color: var(--color-white);
    margin: 0 !important;
    display: grid;
    grid-template-rows: auto 1fr;
  }
  .productlist[data-pattern=maxwidth] .modal__content--head {
    padding: 1.5rem;
    font-size: 1.8rem;
  }
  .productlist[data-pattern=maxwidth] .modal__overlay {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
  }
} */
/* @media screen and (max-width: 767px) {
  .modal__container {
    display: none;
    position: absolute;
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition-default);
  }
  .modal__content {
    position: fixed;
    z-index: 1000;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    max-width: 90%;
    height: 90svh;
    background-color: var(--color-white);
    margin: 0 !important;
    display: grid;
    grid-template-rows: auto 1fr;
  }
  .modal__overlay {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
  }
} */
.c-heading + .product__container {
  margin-top: 2rem;
}

.product__history {
  width: var(--inner-width);
  margin-inline: auto;
  margin-block: 2rem;
}

@media screen and (max-width: 767px) {
  .product__history .product__container {
    max-width: 35.8rem;
    overflow: hidden;
    overflow-x: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 0.5rem;
  }
  .product__history .product__container .product__item {
    width: 12rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 768px) {
  .product__history .product__container {
    --grid-columns: 6;
  }
}


/* ===========================================================
  商品一覧（通常表示）
=========================================================== */
@media screen and (min-width: 768px) {
  [data-list-layout="list"] {
    --grid-columns: 1;
  }
}
[data-list-layout="list"] .product__item {
  display: grid;
  grid-template-columns: 25% 1fr;
  column-gap: 3rem;
  grid-auto-rows: auto;
}
[data-list-layout="list"] .product__item + .product__item {
  padding-top: 4rem;
  border-top: 1px solid var(--color-gray-200);
}
[data-list-layout="list"] .product__item--image {
  height: fit-content;
}
[data-list-layout="list"] .product__item--icon {
  position: relative;
}
[data-list-layout="list"] .product__item--name {
  margin-top: 0;
  margin-bottom: 1rem;
}
[data-list-layout="list"] .product__item--name,
[data-list-layout="list"] .product__item--name > a {
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.05em;
}
[data-list-layout="list"] .product__item--id {
  margin-top: 0;
  font-size: 1.6rem;
}

[data-list-layout="list"] .product__item--icon:has(.product__icon) {
  margin-bottom: 1rem;
}

[data-list-layout="list"] .product__item--detail > .product__item--price .product__price--numeric {
  font-size: 2rem;
}

[data-list-layout="list"] .variation__list--container {
  grid-column: 1 / span 2;
}

@media screen and (min-width: 768px) {
  [data-list-layout="list"] .variation__list--container {
    display: grid;
    grid-template-columns: 25% 1fr;
    column-gap: 3rem;
    grid-auto-rows: auto;
  }
  [data-list-layout="list"] .variation__list--container::before {
    content: '';
  }
}

[data-list-layout="list"] .variation__item {
  border-bottom: 1px solid var(--color-gray-200);
  display: grid;
  grid-template-columns: 35% 1fr 35%;
  align-items: center;
  column-gap: 1rem;
  padding-block: 2rem;
}

@media screen and (max-width: 767px) {
  [data-list-layout="list"] .product__item {
    grid-template-columns: 50% 1fr;
    column-gap: 2rem;
  }
  [data-list-layout="list"] .variation__item {
    grid-template-columns: 45% auto;
  }
  [data-list-layout="list"] .variation__item--price {
    grid-row: 2 / 3;
    align-self: start;
  }
  [data-list-layout="list"] .variation__item--actions {
    grid-row: 1 / span 2;
  }
}

[data-list-layout="list"] .variation__item--container:first-of-type {
  border-top: 1px solid var(--color-gray-200);
}
[data-list-layout="list"] .variation__item--container {
  margin-block: 2rem;
}
[data-list-layout="list"] .variation__item--variation-name2 {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  font-size: 1.3rem;
  font-weight: var(--fw-bold);
}
[data-list-layout="list"] .variation__item .variation__item--stock {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
}
[data-list-layout="list"] .variation__item--actions {
  display: grid;
  row-gap: 0.25rem;
}
[data-list-layout="list"] .variation__item--actions .c-button {
  min-width: auto;
  width: 100%;
  padding-inline: 0;
  padding-block: 1rem;
}

.product__favorite--add {
  --color-favorite-accent: #E25858;
  width: 5rem;
  height: 5rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 50%;
  display: grid;
  justify-content: center;
  align-items: center;
  row-gap: 0.5rem;
  padding: 1rem;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  text-decoration: none;
  z-index: 2;
}
@media (hover: hover) {
  .product__favorite--add .product__favorite--icon path {
    transition: fill var(--transition-default);
  }
  .product__favorite--add:hover .product__favorite--icon path {
    fill: var(--color-favorite-accent);
  }
}

@media screen and (max-width: 767px) {
  [data-list-layout="list"] {
    display: grid !important;
    grid-template-columns: 1fr;
  }
}




/* ===============================================
  * Override *
=============================================== */

/*
 * 共通
 */

.global-contents__inner {
  --asset-icon-arrow-down: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%3E%20%3Cg%20id%3D%22arrow%22%20transform%3D%22translate(20)%20rotate(90)%22%3E%20%3Crect%20id%3D%22bg%22%20width%3D%2220%22%20height%3D%2220%22%20fill%3D%22rgba(237%2C125%2C84%2C0)%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9%22%20d%3D%22M0%2C8.75%2C5%2C4.375%2C0%2C0%22%20transform%3D%22translate(7.5%205.5)%22%20fill%3D%22none%22%20stroke%3D%22%23382d29%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');

  width: 100%;
}

.productlist__listarea {
  --padding-horizontal-product-list: 1.5rem;

  padding-inline: 0;
}

.c-breadcrumb,
.productlist[data-pattern=leftnav] .productlist__inner {
  width: min(100%, 120rem);
  margin-inline: auto;
}

@media (min-width: 768px) {
  .productlist[data-pattern=leftnav] .productlist__inner {
    grid-template-columns: 20% 1fr;
    column-gap: 3.3%;
  }
}

/* 詳細検索モーダル - 追従ボタン */

.button__advancedsearch--open {
  display: none !important;
}

/* 絞り込みリンク */

.product-list__filtering-link {
  display: grid;
  place-content: center;

  padding: .8rem;
  background-color: var(--color-white);
  border: solid 1px var(--color-project-ui-border-sub);
  border-radius: .5rem;

  font-size: 1.4rem;
  font-weight: var(--fw-medium);
  letter-spacing: .06em;
  line-height: 1;
  word-break: keep-all;
}

.product-list__filtering-link[data-state-current] {
  border-color: var(--color-primary);
  color: var(--color-primary);
  font-weight: var(--fw-bold);
}


/*
 * レフトナビ
 */

.product-list__left-nav-details {
  background-color: var(--color-project-bg-beige-default);
}

.product-list__left-nav-summary {
  padding: 1.2rem 1rem;

  font-size: 1.6rem;
  font-weight: var(--fw-bold);
  letter-spacing: .06em;
  line-height: calc(24 / 16);
}

summary.product-list__left-nav-summary {
  display: grid;
  grid-template-columns: 1fr 2rem;
  align-items: center;
  column-gap: 2rem;
}

summary.product-list__left-nav-summary::after {
  content: "";

  width: 100%;
  aspect-ratio: 1;
  background-image: var(--asset-icon-arrow-down);
  background-repeat: no-repeat;
  background-size: contain;

  transition: scale var(--transition-default);
}

[data-state-accordion="opened"] summary.product-list__left-nav-summary::after {
  scale: 1 -1;
}

.product-list__left-nav-details .product-list__filtering-list {
  display: grid;
  row-gap: .5rem;

  padding: 1rem 1rem 2rem;
}

.product-list__left-nav-details .product-list__filtering-link {
  justify-content: flex-start;

  padding-block: 1rem;
  padding-inline: 2rem 1.5rem;
}

.productlist__leftnav .c-button--open-advanced-search {
  margin-top: 1rem;
  margin-inline: auto 0;
}


/*
 * 見出しエリア
 */

.productlist__headarea {
  display: grid;
  grid-template-areas: "heading-text heading-text" "item-count sortbox";
  grid-template-columns: 1fr 22.6rem;
  align-items: center;
  row-gap: 1rem;

  padding-inline: var(--padding-horizontal-product-list);
  padding-bottom: 1.5rem;
  border-bottom: solid 4px var(--color-project-bg-beige-default);
}

@media (min-width: 768px) {
  .productlist__headarea {
    grid-template-areas: "heading-text item-count sortbox";
    grid-template-columns: auto auto 1fr;
    column-gap: 1.5rem;

    padding-inline: 0;
  }
}

.productlist__headarea .productlist__heading {
  grid-area: heading-text;

  padding: 0;
  border: none;

  font-size: 2.2rem;
  font-weight: var(--fw-medium);
  letter-spacing: .06em;
  line-height: calc(32 / 22);
}

@media (min-width: 768px) {
  .productlist__headarea .productlist__heading {
    font-size: 3rem;
    line-height: 1;
  }
}

.productlist__headarea .productlist__heading .c-page-title__item {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

.productlist__headarea .productlist__itemcount {
  grid-area: item-count;

  padding: 0;
}

@media (min-width: 768px) {
  .productlist__headarea .productlist__itemcount {
    margin-top: 1rem;
  }

  .productlist__headarea .productlist__itemcount .c-pager > *:not(.c-pager__totalcount) {
    display: none !important;
  }
}

.productlist__headarea .productlist__itemcount .c-pager__totalcount {
  font-size: 1.5rem;
  font-weight: var(--fw-medium);
  letter-spacing: .06em;
  line-height: calc(21 / 15);
}

@media (min-width: 768px) {
  .productlist__headarea .productlist__itemcount .c-pager__totalcount {
    font-size: 1.8rem;
    line-height: calc(26 / 18);
  }
}

.productlist__headarea .sortbox {
  grid-area: sortbox;
}

@media (min-width: 768px) {
  .productlist__headarea .sortbox__content {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-self: flex-end;

    padding-block: 0;
  }

  .productlist__headarea .sortbox__item {
    width: 22.6rem;
  }

  .productlist__headarea .sortbox__item dt {
    display: flex;
    align-items: center;

    width: 100%;
    height: 4rem;
    padding: 0 1rem;
    border: 1px solid var(--color-gray-300);
    border-radius: 0.4rem;
  }
}

.productlist__headarea .sortbox__item .option--active {
  width: 100%;

  background-image: var(--asset-icon-arrow-down);
  background-size: 2rem;
  background-position: top 50% right 0;

  font-size: 1.4rem;
  font-weight: var(--fw-regular);
  letter-spacing: .06em;
}

.productlist__headarea .c-form__input--check {
  display: none !important;
}


/*
 * コントロールエリア
 */

.productlist__controlarea {
  display: grid;
  grid-template-columns: initial;

  padding-block: 1.5rem;
}

.productlist__controlarea--top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-inline: var(--padding-horizontal-product-list);
}

.productlist__controlarea--top > b {
  font-size: 1.5rem;
  font-weight: var(--fw-medium);
  letter-spacing: .06em;
  line-height: calc(21 / 15);
}

.productlist__controlarea--middle .c-tab-panel__tab-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: .3rem;

  background-color: var(--color-white);
}

.productlist__controlarea--middle .c-tab-panel__button--tab {
  display: grid;
  grid-template-columns: 1fr 2rem;
  align-items: center;
  column-gap: 1rem;

  padding: 1rem;
  background-color: var(--color-project-ui-gray);

  color: var(--color-button-text, var(--color-project-text-sub));
  font-size: 1.4rem;
  font-weight: var(--fw-medium);
  letter-spacing: .06em;
  line-height: 1;
  word-break: keep-all;

  transition: background-color 150ms ease;
}

.productlist__controlarea--middle .c-tab-panel__button--tab::after {
  content: "";

  width: 100%;
  aspect-ratio: 1;
  background-image: var(--asset-icon-arrow-down);
  background-repeat: no-repeat;
  background-size: contain;

  transition: scale 150ms ease;
}

.productlist__controlarea--middle .c-tab-panel__button--tab[aria-selected="true"],
.productlist__controlarea--middle .c-tab-panel:not(:has([type="button"][aria-selected="true"])) .c-tab-panel__button--tab {
  background-color: var(--color-project-bg-beige-default);
}

.productlist__controlarea--middle .c-tab-panel__button--tab[aria-selected="true"]::after {
  scale: 1 -1;
}

.productlist__controlarea--middle .c-tab-panel__panel-container {
  position: relative;

  width: 100vw;
  height: 6.5rem;
  background-color: var(--color-project-bg-beige-default);

  overflow: hidden;
  transition: height var(--transition-default);
}

.productlist__controlarea--middle .c-tab-panel:not(:has([type="button"][aria-selected="true"])) .c-tab-panel__panel-container {
  height: 0;
}

.productlist__controlarea--middle .c-tab-panel__panel[role="tabpanel"][aria-hidden="true"] {
  display: none;
}

.productlist__controlarea--middle .c-tab-panel__panel {
  padding: 1.5rem;

  overflow-x: auto;
}

.productlist__controlarea--middle .product-list__filtering-list {
  display: flex;
  align-items: center;
  column-gap: .5rem;

  width: fit-content;
}

.productlist__controlarea--bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-inline: var(--padding-horizontal-product-list);
}

@media (min-width: 768px) {
  .productlist__controlarea--bottom {
    padding-inline: 0;
  }
}

.productlist__controlarea--bottom .sortbox__content {
  display: none !important;
}

.productlist__controlarea--bottom .c-form__input--check {
  margin: 0;

  font-size: 1.4rem;
  font-weight: var(--fw-regular);
  letter-spacing: .06em;
}

.product-list__status-list {
  display: flex;
  align-items: center;
  column-gap: .5rem;
}

.product-list__status-list-item {
  display: grid;
  grid-template-columns: 2.5rem auto;
  align-items: center;
  column-gap: .2rem;

  font-size: 1.3rem;
  font-weight: var(--fw-medium);
  letter-spacing: .06em;
  line-height: calc(21 / 13);
}


/*
 * ウィンドウショッピングエリア
 */


/* レイアウト */

.product__container[data-list-layout="window"] {
  --border-style: solid 1px var(--color-project-ui-gray);

  position: relative;

  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 0;

  border-top: var(--border-style);
}

@media (min-width: 768px) {
  .product__container[data-list-layout="window"] {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product__container[data-list-layout="window"]::after {
  content: "";

  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 1px;
  background-color: var(--color-project-ui-gray);
}

.product__container[data-list-layout="window"] .product__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;

  padding: 1.9rem var(--padding-horizontal-product-list) 2.5rem;
}

@media (max-width: 767px) {
  .product__container[data-list-layout="window"] > * {
    border-bottom: var(--border-style);
  }

  .product__container[data-list-layout="window"] > *:nth-child(odd) {
    border-right: var(--border-style);
  }
}

@media (min-width: 768px) {
  .product__container[data-list-layout="window"] > * {
    border-bottom: var(--border-style);
  }

  .product__container[data-list-layout="window"] > *:not(:nth-child(4n)) {
    border-right: var(--border-style);
  }
}


/* 商品情報 */

.product__container[data-list-layout="window"] .product-list__place {
  margin-bottom: .5rem;
}

.product__container[data-list-layout="window"] .product-list__text--place {
  display: grid;
  grid-template-columns: 2rem auto;
  align-items: center;

  font-size: 1.3rem;
  font-weight: var(--fw-medium);
  letter-spacing: .1em;
  line-height: 1;
}

@media (min-width: 768px) {
  .product__container[data-list-layout="window"] .product-list__text--place {
    grid-template-columns: 2.2rem auto;

    margin-bottom: .6rem;

    font-size: 1.5rem;
  }
}

.product__container[data-list-layout="window"] .product-list__text--place::before {
  content: "";

  width: 100%;
  aspect-ratio: 1;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%3E%20%3Cg%20id%3D%22icon_-_map%22%20data-name%3D%22icon%20-%20map%22%20transform%3D%22translate(-56.524%20-2876)%22%3E%20%3Crect%20id%3D%22base%22%20width%3D%2220%22%20height%3D%2220%22%20transform%3D%22translate(56.524%202876)%22%20fill%3D%22rgba(255%2C255%2C255%2C0)%22%2F%3E%20%3Cg%20id%3D%22MAP%22%20transform%3D%22translate(-668.531%202620.165)%22%3E%20%3Cg%20id%3D%22%E3%83%91%E3%82%B9%22%20fill%3D%22%23f27649%22%3E%20%3Cpath%20d%3D%22M%20734.9009399414062%20273.5975646972656%20C%20733.8441162109375%20272.2863464355469%20730.9281616210938%20268.6201171875%20730.1588745117188%20267.145751953125%20C%20729.7588500976562%20266.379638671875%20729.5560302734375%20265.5493469238281%20729.5560302734375%20264.6778564453125%20C%20729.5560302734375%20261.7317810058594%20731.9529418945312%20259.3349914550781%20734.8991088867188%20259.3349914550781%20C%20737.84521484375%20259.3349914550781%20740.2420654296875%20261.7317810058594%20740.2420654296875%20264.6778564453125%20C%20740.2420654296875%20265.4956970214844%20740.0623168945312%20266.2803039550781%20739.7078247070312%20267.0098571777344%20C%20738.9613037109375%20268.546142578125%20735.9752197265625%20272.2761535644531%20734.9009399414062%20273.5975646972656%20Z%22%20stroke%3D%22none%22%2F%3E%20%3Cpath%20d%3D%22M%20734.8991088867188%20259.8349914550781%20C%20732.2286376953125%20259.8349914550781%20730.0560302734375%20262.0075073242188%20730.0560302734375%20264.6778564453125%20C%20730.0560302734375%20265.4679260253906%20730.23974609375%20266.2203674316406%20730.6021118164062%20266.9144592285156%20C%20731.2288208007812%20268.115478515625%20733.483642578125%20271.0266418457031%20734.9026489257812%20272.8021850585938%20C%20736.3486328125%20271.0061950683594%20738.6515502929688%20268.0395812988281%20739.2581176757812%20266.7913513183594%20C%20739.5792236328125%20266.1304321289062%20739.7420654296875%20265.4193725585938%20739.7420654296875%20264.6778564453125%20C%20739.7420654296875%20262.0075073242188%20737.5695190429688%20259.8349914550781%20734.8991088867188%20259.8349914550781%20M%20734.8991088867188%20258.8349914550781%20C%20738.1260375976562%20258.8349914550781%20740.7420654296875%20261.45068359375%20740.7420654296875%20264.6778564453125%20C%20740.7420654296875%20265.5923461914062%20740.531982421875%20266.4577941894531%20740.1575317382812%20267.2283935546875%20C%20739.2103881835938%20269.177490234375%20734.8991088867188%20274.3895263671875%20734.8991088867188%20274.3895263671875%20C%20734.8991088867188%20274.3895263671875%20730.6904907226562%20269.2454223632812%20729.715576171875%20267.3770751953125%20C%20729.2940673828125%20266.5697937011719%20729.0560302734375%20265.6517028808594%20729.0560302734375%20264.6778564453125%20C%20729.0560302734375%20261.45068359375%20731.6719970703125%20258.8349914550781%20734.8991088867188%20258.8349914550781%20Z%22%20stroke%3D%22none%22%20fill%3D%22%23f27649%22%2F%3E%20%3C%2Fg%3E%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%22%20cx%3D%221.656%22%20cy%3D%221.656%22%20r%3D%221.656%22%20transform%3D%22translate(732.929%20266.066)%20rotate(-76.663)%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-size: contain;
}

.product__container[data-list-layout="window"] .product__item--link {
  display: grid;
  align-content: flex-start;
  row-gap: 1rem;

  margin-bottom: 1rem;
}

.product__container[data-list-layout="window"] .product__item--image {
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
}

.product__container[data-list-layout="window"] .product__item--name {
  margin: 0;

  font-size: 1.4rem;
  font-weight: var(--fw-medium);
  letter-spacing: .06em;
  line-height: calc(18.2 / 14);

  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media (min-width: 768px) {
  .product__container[data-list-layout="window"] .product__item--name {
    font-size: 1.7rem;
    line-height: calc(25.5 / 17);
  }
}

.product__container[data-list-layout="window"] .product__item--icon {
  position: static;

  margin-bottom: .5rem;
}

@media (min-width: 768px) {
  .product__container[data-list-layout="window"] .product__item--icon {
    margin-bottom: 1rem;
  }
}

.product__container[data-list-layout="window"] .product__item--schedule {}

.product__container[data-list-layout="window"] .product-list__schedule-text--time {
  display: grid;
  grid-template-columns: 1.5rem auto;
  align-items: center;
  column-gap: .5rem;

  font-size: 1.3rem;
  font-weight: var(--fw-medium);
  letter-spacing: .06em;
  line-height: 1;
}

.product__container[data-list-layout="window"] .product-list__schedule-text--time::before {
  content: "";

  width: 100%;
  aspect-ratio: 1;
  margin-top: .2rem;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2215%22%20height%3D%2215%22%20viewBox%3D%220%200%2015%2015%22%3E%20%3Cg%20id%3D%22%E6%99%82%E8%A8%88%22%20transform%3D%22translate(-357.12%20-630)%22%3E%20%3Cg%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_3%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%203%22%20transform%3D%22translate(357.12%20630)%22%20fill%3D%22%23fff%22%20stroke%3D%22%23382d29%22%20stroke-width%3D%221%22%3E%20%3Ccircle%20cx%3D%227.5%22%20cy%3D%227.5%22%20r%3D%227.5%22%20stroke%3D%22none%22%2F%3E%20%3Ccircle%20cx%3D%227.5%22%20cy%3D%227.5%22%20r%3D%227%22%20fill%3D%22none%22%2F%3E%20%3C%2Fg%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_16%22%20data-name%3D%22%E3%83%91%E3%82%B9%2016%22%20d%3D%22M366.12%2C632.916v4.012H369.4%22%20transform%3D%22translate(-1.632%201.373)%22%20fill%3D%22%23fff%22%20stroke%3D%22%23382d29%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-size: contain;
}

.product-list__schedule-container {
  margin-top: .8rem;
  padding-top: .8rem;
  border-top: var(--border-style);
  border-color: var(--color-project-ui-border-primary);
}

@media (min-width: 768px) {
  .product-list__schedule-container {
    margin-top: 1rem;
    padding-top: .5rem;
  }
}

.product-list__schedule-container table {
  width: 100%;
}

.product-list__schedule-table-body {
  display: grid;
  /* grid-template-columns: auto auto 1fr; */
  grid-template-columns: 6rem 3.5rem 1fr;
  gap: .3rem .5rem;
}

@media (min-width: 768px) {
  .product-list__schedule-table-body {
    grid-template-columns: 7rem 4.5rem 1fr;
  }
}

.product-list__schedule-table-row {
  display: grid;
  grid-column: span 3;
  grid-template-columns: subgrid;
  align-items: center;
}

.product-list__schedule-table-data--date,
.product-list__schedule-table-data--time {
  font-size: 1.3rem;
  font-weight: var(--fw-medium);
  letter-spacing: .02em;
  line-height: calc(16.9 / 13);
}

@media (min-width: 768px) {
  .product-list__schedule-table-data--date,
  .product-list__schedule-table-data--time {
    font-size: 1.5rem;
  }
}

.product-list__schedule-table-data--status .product-list__schedule-status-icon {
  display: none;
  place-content: center;
  text-align: center;
}

.product-list__schedule-table-data--status .product-list__schedule-status-icon svg {
  width: 2.5rem;
}

.product-list__schedule-table-data--status[data-sale-status="on-sale"] .product-list__schedule-status-icon[data-sale-status="on-sale"],
.product-list__schedule-table-data--status[data-sale-status="last"] .product-list__schedule-status-icon[data-sale-status="last"],
.product-list__schedule-table-data--status[data-sale-status="finished"] .product-list__schedule-status-icon[data-sale-status="finished"] {
  display: grid;
}

.product-list__schedule-table-data--status[data-sale-status="reception"] .product-list__schedule-status-icon[data-sale-status="reception"],
.product-list__schedule-table-data--status[data-sale-status="cancel"] .product-list__schedule-status-icon[data-sale-status="cancel"] {
  display: grid;
  color: var(--color-project-calendar-cancel);
  font-size: .9rem;
  font-weight: var(--fw-bold);
  letter-spacing: normal;
  line-height: calc(10 / 9);
  word-break: keep-all;
}


/* **もっと見る** 機能 */

.js-expandScheduleContent {
  overflow: hidden;

  opacity: 0;

  transition: height var(--transition-default);
  will-change: height;
}

.js-expandScheduleContent.is-initialized {
  opacity: 1;
}

.js-expandScheduleContent__toggleBtn {
  display: grid;
  grid-template-columns: auto 1rem;
  align-items: center;
  column-gap: .5rem;

  margin-top: 1rem;
  margin-inline: auto;
  padding-bottom: .35rem;
  border-bottom: solid 1px var(--color-text-default);

  font-family: var(--font-main);
  font-size: 1.2rem;
  font-weight: var(--fw-regular);
  letter-spacing: .06em;
  line-height: 1;
}

@media (min-width: 768px) {
  .js-expandScheduleContent__toggleBtn {
    font-size: 1.3rem;
  }
}

.js-expandScheduleContent__toggleBtn::after {
  content: "";

  width: 1rem;
  aspect-ratio: 1;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210%22%20height%3D%2210%22%20viewBox%3D%220%200%2010%2010%22%3E%20%3Cg%20id%3D%22arrow%22%20transform%3D%22translate(10)%20rotate(90)%22%3E%20%3Crect%20id%3D%22bg%22%20width%3D%2210%22%20height%3D%2210%22%20fill%3D%22rgba(237%2C125%2C84%2C0)%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9%22%20d%3D%22M0%2C7%2C4%2C3.5%2C0%2C0%22%20transform%3D%22translate(3%201.5)%22%20fill%3D%22none%22%20stroke%3D%22%23382d29%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-size: contain;

  transition: scale var(--transition-default);
}

.js-expandScheduleContent__toggleBtn[data-state="active"]::after {
  scale: 1 -1;
}


/* 最近チェックしたレッスン */

#dvCheckList.product__history .js-historySlider [class*="swiper-button-"] {
  top: var(--swiper-navigation-top-offset);
}

#dvCheckList.product__history .js-historySlider .swiper-button-next {
  right: var(--swiper-navigation-sides-offset);
}

#dvCheckList.product__history .js-historySlider .swiper-button-prev {
  left: var(--swiper-navigation-sides-offset);
}
