@charset "UTF-8";
.c-item-detail {
  font-family: var(--font-root);
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}
.c-item-detail .sp-width-full {
  width: 100%;
}
.c-item-detail__head {
  order: 1;
}
.c-item-detail__gallery {
  width: 100%;
  order: 2;
}
.c-item-detail__info {
  order: 3;
}
.c-item-detail__tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin-bottom: 6px;
}
.c-item-detail__tag {
  font-size: 1rem;
  padding: 4px 7px;
  border: 1px solid #D6D6D6;
  color: #2C2C2C;
  line-height: 1.4;
}
.c-item-detail__tag.is-new, .c-item-detail__tag.is-limited {
  border-color: var(--color-highlight);
  color: var(--color-highlight);
}
.c-item-detail__tag.is-sold-out {
  background: #2c2c2c;
  color: #fff;
}
.c-item-detail__name {
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 8px;
}
.c-item-detail__txt {
  font-size: 1.4rem;
  line-height: 1.6;
}
.c-item-detail__txt--small {
  font-size: 1rem;
}
.c-item-detail__txt--xs {
  font-size: 1.1rem;
}
.c-item-detail__txt--md {
  font-size: 1.4rem;
}
.c-item-detail__desc {
  font-size: 1.6rem;
  line-height: 1.65;
  margin-bottom: 8px;
}
.c-item-detail__shipping {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 50px;
  line-height: 1.6;
  margin-top: 40px;
}
.c-item-detail__shipping strong {
  font-weight: 700;
  color: var(--color-root);
}
.c-item-detail__shipping-link {
  display: inline-block;
  color: var(--color-link);
  text-decoration: underline;
}
.c-item-detail__shipping-link:hover {
  color: var(--color-highlight);
}
.c-item-detail__rating {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: #2C2C2C;
  text-decoration: unset;
}
.c-item-detail__rating-stars {
  display: flex;
  gap: 2px;
}
.c-item-detail__star {
  display: inline-block;
  width: 11px;
  height: 11px;
  position: relative;
}
.c-item-detail__star::before {
  content: "★";
  color: #ddd;
  font-size: 1.1rem;
  line-height: 1;
}
.c-item-detail__star.is-full::before {
  color: var(--color-highlight);
}
.c-item-detail__star.is-half::before {
  color: #ddd;
}
.c-item-detail__star.is-half::after {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: var(--color-highlight);
  font-size: 1.1rem;
  line-height: 1;
}
.c-item-detail__variant {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100px;
}
.c-item-detail__variant-list {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}
.c-item-detail__variant-swatch {
  background-color: #fff;
  display: block;
  width: 100px;
  height: 100px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.2s;
  overflow: hidden;
}
.c-item-detail__variant-swatch img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-item-detail__variant-name {
  font-size: 1rem;
  color: #555;
  text-align: center;
  line-height: 1.4;
}
.c-item-detail__variant-low-stock {
  color: var(--color-highlight);
}
.c-item-detail__variant.is-active .c-item-detail__variant-swatch, .c-item-detail__variant-swatch:hover {
  border-color: var(--color-highlight);
}
.c-item-detail__variant.is-soldout .c-item-detail__variant-swatch {
  position: relative;
  border-color: rgba(237, 237, 237, 0.5);
}
.c-item-detail__variant.is-soldout .c-item-detail__variant-swatch:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(237, 237, 237, 0.5);
}
.c-item-detail__variant.is-soldout {
  color: #ACACAC;
  pointer-events: none;
}
.c-item-detail__size-accordion {
  margin-bottom: 20px;
}
.c-item-detail__size-select .c-select {
  width: auto;
  max-width: 100%;
}
.c-item-detail__size-item:hover {
  cursor: pointer;
  color: #a50319;
  background-color: rgba(237, 237, 237, 0.5);
}
.c-item-detail__size-item.is-active {
  color: #a50319;
}
.c-item-detail__size-item.is-active::after {
  content: "×";
  /* バツマークを表示 */
  display: inline-block;
  margin-left: 8px;
  /* テキストとの間隔 */
  font-weight: bold;
  pointer-events: none;
}
.c-item-detail__size-item.is-soldout {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.c-item-detail__purchase-box {
  border: 1px solid #D6D6D6;
  padding: 24px;
  margin-bottom: 8px;
  border-radius: 4px;
  background: #fff;
}
.c-item-detail__purchase-title {
  font-size: 1.6rem;
  line-height: 1.6;
}
.c-item-detail__purchase-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.c-item-detail__purchase-row.style01 {
  gap: 24px;
}
.c-item-detail__purchase-row.style02 {
  gap: 12px;
}
.c-item-detail__purchase-row--end .c-item-detail__btn--primary {
  flex-basis: 100%;
}
.c-item-detail__subscription-box {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  max-width: 290px;
  margin-bottom: 16px;
}
.c-item-detail__subscription-text {
  text-indent: 0;
  color: #555;
  margin-top: 16px;
  font-size: 1.2rem;
  text-decoration: underline;
  cursor: pointer;
}
.c-item-detail__subscription-text:hover {
  color: #a50319;
}
.c-item-detail__price-wrap {
  font-family: "Open Sans", sans-serif;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.c-item-detail__price-wrap--between {
  justify-content: space-between;
}
.c-item-detail__price-label {
  font-size: 1.4rem;
}
.c-item-detail__price-original {
  font-size: 1.4rem;
  color: #999;
  font-weight: 700;
  text-decoration: line-through;
}
.c-item-detail__price-sale {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-highlight);
  line-height: 1;
}
.c-item-detail__price-normal {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.c-item-detail__price-unit {
  font-size: 1.2rem;
  font-weight: 400;
}
.c-item-detail__price-unit > span {
  font-size: 1rem;
}
.c-item-detail__benefits {
  display: flex;
  flex-direction: column;
  list-style: none;
  flex-wrap: wrap;
  padding-top: 4px;
}
.c-item-detail__benefits li {
  font-size: 1.2rem;
  line-height: 1.7;
}
.c-item-detail__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
}
.c-item-detail__btns {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  width: 100%;
}
.c-item-detail__btns .c-item-detail__btn-icon--fav {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.c-item-detail__btns .c-item-detail__btn--secondary {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
}
.c-item-detail__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 4px 16px;
  font-size: 1.2rem;
  text-decoration: none;
  cursor: pointer;
  border-radius: 5px;
  transition: opacity 0.2s, background-color 0.2s;
  white-space: nowrap;
  font-family: var(--font-root);
}
.c-item-detail__btn--primary {
  background: #2c2c2c;
  color: #fff;
  border: 0;
  flex: 1;
}
.c-item-detail__btn--primary.sp-full {
  width: 100%;
  flex-basis: 100%;
}
.c-item-detail__btn--secondary {
  background: #fff;
  color: var(--color-root);
  border: 1px solid #D6D6D6;
  padding-left: 12px;
  padding-right: 12px;
}
.c-item-detail__btn--secondary:hover {
  background: #f5f5f5;
}
.c-item-detail__btn--outline {
  background: #fff;
  color: var(--color-root);
  border: 1px solid #D6D6D6;
  width: 100%;
  line-height: 1;
}
.c-item-detail__btn--outline:hover {
  background: var(--color-root);
}
.c-item-detail__btn[disabled] {
  background: #D6D6D6;
  border: 1px solid #D6D6D6;
  color: #333;
  pointer-events: none;
}
.c-item-detail__btn:hover {
  color: #fff;
  background-color: var(--color-highlight);
}
.c-item-detail__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #fff;
  border: 1px solid #D6D6D6;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  border-radius: 4px;
  transition: border-color 0.2s;
}
.c-item-detail__btn-icon svg {
  width: 20px;
  height: 20px;
  color: #2c2c2c;
  transition: fill 0.2s;
}
.c-item-detail__btn-icon--fav.active svg {
  fill: var(--color-highlight);
  color: var(--color-highlight);
}
.c-item-detail__btn-icon--fav:hover svg {
  fill: var(--color-root);
  color: #2c2c2c;
}
.c-item-detail__ingredient {
  margin-top: 40px;
  max-width: 200px;
}
.c-item-detail__ingredient .c-item-detail__btn--outline {
  height: 40px;
}
.c-item-detail__ingredient .c-item-detail__btn--outline:hover {
  background: rgba(214, 214, 214, 0.1);
  color: var(--color-highlight);
}
.c-item-detail .note {
  color: var(--color-highlight);
  font-size: 1.2rem;
  margin-top: 16px;
}
.c-item-detail__stock {
  color: var(--color-highlight);
  font-size: 1.2rem;
}
@media only screen and (min-width: 1024px) {
  .c-item-detail {
    display: grid;
    grid-template-columns: 400px 1fr;
    grid-template-rows: auto 1fr;
    -moz-column-gap: min(64px, 4vw);
         column-gap: min(64px, 4vw);
    row-gap: 0;
    padding-top: 40px;
  }
  .c-item-detail .sp-width-full {
    width: auto;
  }
  .c-item-detail .note {
    margin-top: 8px;
  }
  .c-item-detail__gallery {
    position: sticky;
    top: 72px;
    align-self: flex-start;
    grid-column: 1;
    grid-row: 1/3;
  }
  .c-item-detail__head {
    grid-column: 2;
    grid-row: 1;
  }
  .c-item-detail__info {
    flex: 1;
    min-width: 0;
    padding: 0;
    grid-column: 2;
    grid-row: 2;
  }
  .c-item-detail__tags {
    margin-bottom: 24px;
  }
  .c-item-detail__tag {
    font-size: 1.2rem;
  }
  .c-item-detail__name {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  .c-item-detail__txt--small {
    font-size: 1.2rem;
  }
  .c-item-detail__txt--md {
    font-size: 1.6rem;
  }
  .c-item-detail__desc {
    margin: 16px 0 24px;
    line-height: 1.75;
  }
  .c-item-detail__purchase-row {
    justify-content: space-between;
    margin-bottom: 12px;
    margin-top: 16px;
  }
  .c-item-detail__purchase-row--end .c-item-detail__btn--primary {
    flex-basis: 0;
  }
  .c-item-detail__purchase-title {
    margin-bottom: 16px;
  }
  .c-item-detail__btn {
    padding-left: 24px;
    padding-right: 24px;
  }
  .c-item-detail__btn--primary {
    min-width: 240px;
    flex: none;
  }
  .c-item-detail__btn--primary.sp-full {
    width: auto;
    flex-basis: auto;
  }
  .c-item-detail__btn--secondary {
    padding-left: 16px;
    padding-right: 16px;
    width: auto;
  }
  .c-item-detail__btn--outline {
    width: auto;
    min-width: 200px;
  }
  .c-item-detail__btn-icon {
    width: 56px;
    height: 56px;
  }
  .c-item-detail__btns {
    width: auto;
    flex: 0 0 auto;
  }
  .c-item-detail__btns .c-item-detail__btn--secondary {
    flex: 0 1 auto;
    width: auto;
  }
  .c-item-detail__benefits {
    flex-direction: row;
    gap: 16px;
  }
  .c-item-detail__actions {
    width: auto;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    margin-left: auto;
  }
  .c-item-detail__ingredient {
    margin-top: 64px;
  }
  .c-item-detail__price-wrap--between {
    justify-content: unset;
  }
}

.c-item-detail-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  border-top: 1px solid #EFEFEF;
  transition: transform 0.3s ease, visibility 0.3s ease;
}
.c-item-detail-bar.is-hidden {
  transform: translateY(100%);
  visibility: hidden;
}
.c-item-detail-bar__inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: min(24px, 4vw) !important;
  padding-right: min(24px, 4vw) !important;
}
.c-item-detail-bar__block {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 8px;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.c-item-detail-bar__block > :first-child {
  flex-shrink: 0;
}
.c-item-detail-bar__block .c-item-detail__txt {
  font-size: 1.4rem;
  line-height: 1.3;
}
.c-item-detail-bar__block .c-item-detail__price-original {
  font-size: 0.8rem;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .c-item-detail-bar__block .c-item-detail__price-original,
  .c-item-detail-bar__block .c-item-detail__price-arrow {
    display: none;
  }
}
.c-item-detail-bar__block .c-item-detail__price-sale,
.c-item-detail-bar__block .c-item-detail__price-normal {
  font-size: 2.4rem;
  white-space: nowrap;
}
.c-item-detail-bar__block .c-item-detail__price-wrap {
  flex: 1;
  min-width: 0;
  gap: 3px;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
.c-item-detail-bar__block .c-item-detail__btn {
  max-width: clamp(112px, 186.67vw - 588px, 140px);
  width: clamp(112px, 186.67vw - 588px, 140px);
  height: 40px;
  padding-left: clamp(4px, 120vw - 446px, 22px);
  padding-right: clamp(4px, 120vw - 446px, 22px);
  font-size: 1.2rem;
  flex: none;
}
.c-item-detail-bar__block.style01 {
  width: auto;
  gap: 16px;
  margin: 0 auto;
  justify-content: center;
  flex-direction: row;
  align-items: center;
}
.c-item-detail-bar__block.style01 .c-item-detail__price-wrap {
  justify-content: space-between;
}
.c-item-detail-bar .note {
  color: var(--color-highlight);
  margin-right: 16px;
  font-size: 1.2rem;
}
.c-item-detail-bar.style01 {
  bottom: 15%;
}
@media only screen and (min-width: 768px) {
  .c-item-detail-bar__inner {
    flex-direction: row;
    gap: 34px;
  }
  .c-item-detail-bar__block {
    flex: none;
    width: 50%;
    flex-direction: column;
    align-items: flex-start;
  }
  .c-item-detail-bar__block .sp-display {
    display: none;
  }
  .c-item-detail-bar__block .c-item-detail__txt {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .c-item-detail-bar__block .c-item-detail__price-original {
    display: inline;
    font-size: 1.4rem;
  }
  .c-item-detail-bar__block .c-item-detail__price-sale,
  .c-item-detail-bar__block .c-item-detail__price-normal {
    font-size: 2.2rem;
  }
  .c-item-detail-bar__block .c-item-detail__price-wrap {
    flex: none;
    width: 100%;
    flex-wrap: wrap;
  }
  .c-item-detail-bar__block .c-item-detail__btn {
    max-width: 240px;
    width: 240px;
    height: 56px;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 1.2rem;
  }
  .c-item-detail-bar .note {
    margin-right: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .c-item-detail-bar__block {
    flex: auto;
    gap: max(60px, 3vw);
    width: auto;
    flex-direction: unset;
    align-items: center;
    gap: 10px 20px;
  }
  .c-item-detail-bar__block .c-item-detail__price-wrap {
    flex: none;
    width: auto;
  }
  .c-item-detail-bar__block .c-item-detail__btn {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.l-banner {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: 8px;
}
.l-banner_setmatch {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .l-banner_setmatch {
    max-width: calc(50% - 4px);
  }
}
.l-banner_setmatch img {
  width: 100%;
  aspect-ratio: 2.34375;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-banner_detail {
  width: 100%;
  display: flex;
  gap: 8px;
}
.l-banner_detail-item {
  flex: 0 1 calc(50% - 4px);
  max-width: calc(50% - 4px);
}
.l-banner_detail-item:only-child {
  flex: 1 1 100%;
  max-width: 100%;
}
.l-banner_detail-item img {
  width: 100%;
  aspect-ratio: 2.34375;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 1023px) {
  .l-banner_detail {
    flex-flow: column;
  }
  .l-banner_detail-item {
    flex: 0 1 auto;
    max-width: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .l-banner:has(.l-banner_detail-item:only-child) .l-banner_setmatch {
    max-width: 100%;
  }
}
.l-banner_campaign {
  width: 100%;
}
.l-banner_campaign img {
  width: 100%;
}

.hacobune-app-container {
  background: transparent !important;
}

.itemDetailInfo {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 40px 0;
  font-family: var(--font-root);
}
.itemDetailInfo__title, .itemDetailInfo__heading {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
}
.itemDetailInfo__lead {
  font-size: 1.3rem;
  line-height: 1.8;
}
.itemDetailInfo__title2 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid #D6D6D6;
}
.itemDetailInfo__text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
}
.itemDetailInfo__suitableSizeLink {
  align-self: flex-start;
  font-family: var(--font-root);
  font-size: 1.2rem;
  color: var(--color-root);
  text-decoration: underline;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.itemDetailInfo__suitableSizeLink:hover {
  color: var(--color-highlight);
}
@media only screen and (min-width: 1024px) {
  .itemDetailInfo {
    gap: 20px;
    margin: 60px 0;
  }
  .itemDetailInfo__title, .itemDetailInfo__heading {
    font-size: 1.8rem;
  }
  .itemDetailInfo__lead {
    font-size: 1.4rem;
  }
  .itemDetailInfo__title2 {
    font-size: 1.6rem;
    padding-top: 20px;
  }
  .itemDetailInfo__text {
    font-size: 1.3rem;
  }
  .itemDetailInfo__suitableSizeLink {
    font-size: 1.3rem;
  }
}

.itemDetailInfoImg {
  width: 100%;
}
.itemDetailInfoImg img {
  display: block;
  width: 100%;
}

.itemDetailInfoBtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.itemDetailInfoBtn a {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 320px;
  height: 44px;
  padding: 0 20px;
  font-family: var(--font-root);
  font-size: 1.4rem;
  line-height: 44px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #9e1780;
  border-radius: 3px;
}
.itemDetailInfoBtn a:hover {
  background-color: #bd1c99;
}
@media only screen and (min-width: 1024px) {
  .itemDetailInfoBtn {
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
  }
  .itemDetailInfoBtn a {
    width: 320px;
  }
}
.itemDetailInfoBtn {
  /*
  display: flex;
  flex-direction: column;
  gap: 8px;

  a {
      display: block;
      font-family: var(--font-root);
      font-size: 1.2rem;
      color: var(--color-root);
      text-decoration: underline;

      &:hover {
          color: $color-accent;
      }
  }

  @include mixin.media-up(lg) {
      flex-direction: row;
      gap: 24px;

      a {
          font-size: 1.3rem;
      }
  }
  */
}

.confiage-admin_btn {
  margin-bottom: 20px;
}
.confiage-admin_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: -moz-max-content;
  width: max-content;
  min-width: calc(100% - 20px);
  max-width: 100%;
  min-height: 56px;
  padding: 8px 16px;
  font-family: var(--font-root);
  font-size: 1.5rem;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #9e1780;
  border-radius: 5px;
}
.confiage-admin_btn a:hover {
  background-color: #bd1c99;
}
@media only screen and (min-width: 1024px) {
  .confiage-admin_btn a {
    width: auto;
    min-width: 320px;
  }
}
.confiage-admin_btn {
  /*
  margin-bottom: 0;

  a {
      display: block;
      font-family: var(--font-root);
      font-size: 1.2rem;
      color: var(--color-root);
      text-decoration: underline;

      &:hover {
          color: $color-accent;
      }
  }
  */
}

.confiage-admin_description,
.confiage-admin_img {
  padding: 0;
  background: #fff;
}

.sizeExchangeAndReturnSystem {
  width: 100%;
}
.sizeExchangeAndReturnSystem__link {
  display: block;
}
.sizeExchangeAndReturnSystem__img {
  display: block;
  width: 100%;
}

.e-headline--h2 {
  font-size: 2.4rem;
  margin-bottom: 24px;
}

@media only screen and (max-width: 767px) {
  .l-staffstyling--left {
    padding-left: 24px;
  }
}
.contents_inner {
  padding: 5px 10px 0;
  text-align: left;
  font-family: var(--font-root);
}
.contents_inner .contents_feature-title {
  padding: 35px 0 33px;
  font-size: 2.3rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
.contents_inner .contents_block-title {
  color: #a50319;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}
.contents_inner .contents_block-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
.contents_inner .contents_block-subtitle > span {
  display: inline-block;
  padding: 4px 11px 3px;
  font-size: 1.2rem;
  line-height: 1.3;
  color: #fff;
  background-color: #222;
  border-radius: 11px;
}
.contents_inner .contents-subhead {
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.3;
}
.contents_inner .contents-subhead + p {
  margin-top: 8px;
}
.contents_inner .contents-subtitle_qa {
  position: relative;
  padding-left: 33px;
  padding-bottom: 10px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  border-bottom: 1px solid #d5d5d5;
}
.contents_inner .contents-subtitle_qa::before {
  content: "Q";
  position: absolute;
  top: -3px;
  left: 0;
  display: inline-block;
  padding: 6px 8px;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1;
  color: #fff;
  background-color: #a50319;
  border-radius: 100%;
}
.contents_inner .text {
  margin-top: 15px;
  font-size: 1.4rem;
  line-height: 1.7;
  color: #333;
}
.contents_inner .text:first-child {
  margin-top: 0;
}
.contents_inner .text_qa {
  position: relative;
  margin-top: 15px;
  padding-left: 31px;
  font-size: 1.4rem;
  line-height: 1.7;
  color: #333;
}
.contents_inner .text_qa::before {
  content: "A";
  position: absolute;
  top: -3px;
  left: 0;
  display: inline-block;
  padding: 4px 6px 3px;
  font-size: 1.5rem;
  line-height: 1;
  color: #a50319;
  border: 1px solid #a50319;
  border-radius: 100%;
}
.contents_inner .text_center {
  text-align: center;
}
.contents_inner .text_red {
  color: #a50319;
}
.contents_inner .text_strong {
  color: #222;
  font-weight: bold;
}
.contents_inner .contents-feature-box {
  margin-top: 25px;
  padding: 25px 15px;
  background-color: #fff;
  border-radius: 3px;
}
.contents_inner .contents-feature-box > div:not(:first-child) {
  margin-top: 15px;
}
.contents_inner h2 + .contents-feature-box {
  margin-top: 0;
}
.contents_inner .contents_checklist,
.contents_inner .contents_balloonlist {
  margin-top: 15px;
  padding-left: 0;
  list-style: none;
}
.contents_inner .contents_checklist li,
.contents_inner .contents_balloonlist li {
  position: relative;
  padding: 12px 0 15px 39px;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #333;
  border-top: 1px solid #e6e6e6;
}
.contents_inner .contents_checklist li::before,
.contents_inner .contents_balloonlist li::before {
  position: absolute;
  top: 16px;
  left: 0;
  zoom: 0.5;
}
.contents_inner .contents_checklist li::before {
  content: url("/sp_common/img/icon_checkmark.png");
}
.contents_inner .contents_balloonlist li::before {
  content: url("/sp_common/img/icon_balloon.png");
}
.contents_inner .inline-box {
  position: relative;
  margin-top: 20px;
  overflow: hidden;
}
.contents_inner .inline-box:first-child {
  margin-top: 0;
}
.contents_inner .inline-box.bg_k4 {
  padding: 20px 15px 15px;
  border-radius: 3px;
}
.contents_inner .bg_k4 {
  background-color: #f5f5f5;
}
.contents_inner hr.arrow,
.contents_inner hr.plus {
  display: block;
  margin: 20px auto 0;
  border: none;
  zoom: 0.5;
}
.contents_inner hr.arrow {
  content: url("/sp_common/img/arrow.png");
}
.contents_inner hr.plus {
  content: url("/sp_common/img/plus.png");
}
.contents_inner hr.arrow + .inline-box.bg_k4 {
  margin-top: 10px;
}
.contents_inner .mt20 {
  margin-top: 10px;
}
.contents_inner .mt40 {
  margin-top: 20px;
}
.contents_inner .contents_speclist {
  margin-top: 20px;
  overflow: hidden;
  border-bottom: 1px solid #e6e6e6;
}
.contents_inner .contents_speclist + .contents_speclist {
  margin-top: 10px;
}
.contents_inner .contents_speclist dt:not(:first-child) {
  padding-top: 10px;
}
.contents_inner .contents_speclist .component_text {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.3;
}
.contents_inner .contents_speclist .spec_text {
  margin-top: 2px;
  padding-bottom: 10px;
  font-size: 1.3rem;
  line-height: 1.5;
  color: #666;
}
.contents_inner sup {
  font-size: 1rem;
  vertical-align: top;
}
.contents_inner .contents_movie-title {
  font-size: 2rem;
  color: #a50319;
}
.contents_inner .concept_movie {
  width: 100%;
  max-width: 710px;
  margin: 20px auto 0;
}
.contents_inner #campaign-movie01 iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border: 0;
}

.b-product {
  margin-bottom: 80px;
  background: #FAFAFA;
}
.b-product__heading {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 400;
  margin: 0 0 24px;
}
.b-product__description {
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 0 0 32px;
}
.b-product__banner img {
  vertical-align: middle;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .b-product {
    width: 100%;
    margin-left: -24px;
    width: calc(100% + 48px);
    padding: 0 8px;
  }
  .b-product__description {
    margin-bottom: 16px;
  }
  .b-product__banner {
    width: 100%;
    margin-left: -8px;
    width: calc(100% + 16px);
  }
}

/* --- Card --- */
.product-card {
  display: flex;
  flex-direction: column;
}
.product-card__inner {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.product-card__highlight {
  background: #EFEFEF;
  padding: 16px;
}
.product-card__highlight .product-card__category {
  background: #FAFAFA;
}
.product-card__heading {
  font-size: 2.4rem;
  margin-bottom: 8px;
  line-height: 1.3;
  font-family: var(--font-open-sans);
}
.product-card__heading span {
  margin-left: 16px;
  font-size: 1.6rem;
}
.product-card__image {
  margin: 0;
}
.product-card__image img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.product-card__content {
  display: flex;
  flex-direction: column;
  padding: 16px 20px 0;
}
.product-card__category {
  align-self: flex-start;
  font-size: 1.2rem;
  line-height: 1;
  color: #2C2C2C;
  padding: 8px;
  margin-bottom: 8px;
  border: 1px solid #D6D6D6;
}
.product-card__title {
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 0 0 8px;
}
@media only screen and (max-width: 767px) {
  .product-card__title {
    min-height: 6.72rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
  }
}
.product-card__price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2C2C2C;
  margin: 0 0 24px;
  text-align: right;
  font-family: var(--font-open-sans);
}
.product-card__price--unit {
  font-size: 1.2rem;
  font-weight: normal;
}
.product-card__price--small {
  margin-left: -5px;
  font-size: 1rem;
  font-weight: normal;
}
.product-card__button {
  display: inline-block;
  text-align: center;
  padding: 12px 16px;
  font-size: 1.2rem;
  color: #fff;
  background: #2C2C2C;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.product-card__button:hover {
  background-color: #a50318;
}

@media only screen and (min-width: 768px) {
  .b-product {
    margin-bottom: 64px;
  }
  .b-product__heading {
    margin-bottom: 32px;
  }
  .product-card__inner {
    flex-direction: row;
    gap: 32px;
  }
  .product-card__highlight {
    padding: 24px;
  }
  .product-card__heading {
    margin-bottom: 16px;
  }
  .product-card__image {
    flex: 0 0 200px;
    width: 200px;
    align-self: flex-start;
  }
  .product-card__content {
    flex: 1 1 auto;
    padding: 0;
  }
  .product-card__button {
    min-width: 140px;
    align-self: flex-end;
  }
}
.l-review {
  margin-top: 48px;
}

.l-review__title {
  font-size: 2.4rem;
  margin-bottom: 24px;
}

.l-review__txt {
  display: none;
}

.l-review__accordion.c-accordion {
  gap: 16px;
}

.l-review__accordion {
  margin-bottom: 16px;
}
.l-review__accordion-txt {
  font-size: 1.2rem;
}
.l-review__accordion-txt:not(:last-child) {
  margin-bottom: 16px;
}
.l-review__accordion--narrow {
  max-width: 200px;
}

.l-review__hero {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.l-review__hero-body {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 16px;
}
.l-review__hero-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 16px;
}
.l-review__hero-average {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.l-review__hero-average-label {
  color: #333;
  font-size: 1.5rem;
  line-height: 1.7;
}
.l-review__hero-average-number {
  font-size: 1.5rem;
}
.l-review__hero-average-score {
  align-items: center;
  display: flex;
  gap: 8px;
}
.l-review__hero-total {
  color: #333;
  font-size: 1.4rem;
}
.l-review__hero-distribution {
  width: 100%;
  flex: 1;
}
.l-review__hero-dist-bar {
  background-color: #D6D6D6;
  flex: 1;
  height: 8px;
}
.l-review__hero-dist-bar-fill {
  background-color: #A50319;
  height: 100%;
}
.l-review__hero-dist-count {
  color: #333;
  font-size: 1.2rem;
  min-width: 40px;
  text-align: right;
}
.l-review__hero-dist-item {
  align-items: center;
  display: flex;
  gap: 8px;
}
.l-review__hero-dist-label {
  font-size: 1.2rem;
  text-align: center;
}
.l-review__hero-dist-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.l-review__hero-dist-stars {
  align-items: center;
  display: flex;
  gap: 4px;
}
.l-review__hero-actions {
  display: flex;
  justify-content: center;
}

.l-review__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.l-review__actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.l-review__item {
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  padding: 24px;
  margin-bottom: 16px;
}
.l-review__item-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.l-review__item-user {
  align-items: center;
  display: flex;
  gap: 8px;
}
.l-review__item-avatar {
  align-items: center;
  background-color: #F0EFEF;
  border-radius: 50%;
  display: inline-flex;
  flex-shrink: 0;
  height: 32px;
  justify-content: center;
  overflow: hidden;
  width: 32px;
}
.l-review__item-name {
  font-size: 1.6rem;
}
.l-review__item-name-link {
  color: inherit;
  text-decoration: underline;
}
.l-review__item-profile {
  font-size: 1.2rem;
}
.l-review__item-meta {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}
.l-review__item-rating {
  align-items: center;
  display: flex;
}
.l-review__item-score {
  font-family: var(--font-open-sans);
  color: var(--color-root);
  font-size: 1.4rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1.6;
  margin-left: 8px;
}
.l-review__item-date {
  color: #6A7282;
  font-size: 1.2rem;
  margin-right: 16px;
}
.l-review__item-attrs {
  display: flex;
  flex-wrap: wrap;
  font-weight: bold;
  gap: 4px 24px;
  margin-bottom: 20px;
}
.l-review__item-attr {
  display: flex;
  font-size: 1.3rem;
  gap: 8px;
}
.l-review__item-attr-label {
  flex-shrink: 0;
  font-weight: bold;
}
.l-review__item-attr-label::after {
  content: "｜";
  color: #D6D6D6;
  margin-left: 8px;
}
.l-review__item-attr-value {
  font-weight: bold;
}
.l-review__item-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 8px;
}
.l-review__item-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.l-review__item-lead {
  font-size: 1.4rem;
  font-weight: bold;
}
.l-review__item-text {
  font-size: 1.4rem;
  line-height: 1.8;
}
.l-review__item-figure {
  max-width: 140px;
  height: 162px;
}
.l-review__item-image {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.l-review__item-foot {
  display: flex;
  justify-content: flex-end;
}

.c-btn-helpful {
  font-family: var(--font-root);
  color: var(--color-root);
  width: 100%;
  max-width: 200px;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  border: 1px solid #CCC;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  font-size: 1.2rem;
  gap: 16px;
  padding: 11px 16px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.c-btn-helpful:hover {
  background-color: #FAFAFA;
  color: #A50319;
}
.c-btn-helpful:active, .c-btn-helpful.is-active {
  background-color: #FAFAFA;
  color: #A50319;
}

.c-star-rating {
  color: #A50319;
  display: inline-flex;
  align-items: center;
  font-size: 1.8rem;
  gap: 2px;
  line-height: 1;
}

.c-star-rating__star--filled {
  color: #A50319;
}

.c-star-rating__star--empty {
  filter: grayscale(1) opacity(0.3);
}

.c-btn--dark {
  width: 100%;
  max-width: 342px;
  text-align: center;
  background-color: var(--color-root);
  border-radius: 4px;
  color: var(--color-white);
  display: inline-block;
  font-size: 1.2rem;
  padding: 11px;
  line-height: 1.5;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.c-btn--dark:hover {
  background-color: var(--color-highlight);
}

@media only screen and (min-width: 640px) {
  .c-btn--dark {
    max-width: 200px;
  }
  .l-review__txt {
    display: block;
    margin-bottom: 24px;
  }
  .l-review__hero-body {
    flex-direction: row;
  }
  .l-review__hero-actions {
    justify-content: flex-end;
  }
  .l-review__hero-stats {
    align-items: flex-start;
    width: 323px;
  }
  .l-review__hero-distribution {
    border-left: 1px solid #ACACAC;
    flex: 1;
    padding-left: 48px;
  }
  .l-review__hero-average {
    margin-bottom: 16px;
  }
  .l-review__hero-average-label {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .l-review__actions {
    justify-content: flex-start;
  }
  .l-review__actions--center {
    justify-content: center;
  }
  .l-review__btn-right {
    justify-content: right;
  }
  .l-review__item-head {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .l-review__item-body {
    flex-direction: row;
  }
  .l-review__item-content {
    flex: 1;
  }
  .l-review__item-figure {
    flex-shrink: 0;
    width: 200px;
  }
}
.c-swiper__main {
  width: 100%;
  margin-top: 32px;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #fff;
}
.c-swiper__main .swiper-slide {
  height: 100%;
}
.c-swiper__main .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  transition: opacity 0.3s;
}
@media only screen and (min-width: 768px) {
  .c-swiper__main {
    margin-top: 0;
    max-width: 400px;
  }
}
.c-swiper__thumbnails {
  margin-top: 15px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .c-swiper__thumbnails {
    padding: 0;
    max-width: 400px;
    overflow: visible;
  }
  .c-swiper__thumbnails .swiper-wrapper {
    flex-wrap: wrap;
    gap: 8px;
    transform: none !important;
  }
  .c-swiper__thumbnails .swiper-slide {
    width: auto !important;
    margin: 0 !important;
  }
}
.c-swiper__thumbnail {
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 1px solid transparent;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.2s;
  aspect-ratio: 1/1;
  max-width: 42px;
  min-width: 42px;
  padding: 3px;
}
.c-swiper__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.c-swiper__thumbnail.swiper-slide-thumb-active, .c-swiper__thumbnail:hover {
  border-color: #D6D6D6;
}/*# sourceMappingURL=template.min.css.map */
