@charset "utf-8";

:root {
  --gap-p-parts-set-discount: 60px;
  --nav-height: 80px;
}

html:has(.p-parts-set-discount) {
  scroll-padding-top: var(--nav-height);
}

.p-side-menu {
  display: none;
}

.p-parts-set-discount {
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

.p-parts-set-discount img {
  max-width: 100%;
}

.p-parts-set-discount>section {
  padding: var(--gap-p-parts-set-discount) 0;
}

.p-parts-set-discount>section section+section {
  margin-top: var(--gap-p-parts-set-discount);
}

.p-parts-set-discount input[type="radio"] {
  display: none;
}

.p-parts-set-discount label {
  padding: 15px;
  display: grid;
  grid-template-rows: auto 1fr auto auto auto;
  outline: 1px solid #ccc;
  gap: 15px;
  cursor: pointer;
  position: relative;
}

.p-parts-set-discount label:hover {
  animation: hover-flash 1s forwards;
  opacity: 1;
}

.p-parts-set-discount label.out-of-stock {
  cursor: not-allowed;
  opacity: 0.5;
  filter: grayscale(1);
  order: 999;
}

.p-parts-set-discount label.out-of-stock img {
  opacity: 0.25;
}

.p-parts-set-discount label.out-of-stock:hover {
  -webkit-animation-name: none;
  animation-name: none;
}

/* .p-parts-set-discount label h3{
  height: calc(45px * 1.25);
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 1.25;
} */

.p-parts-set-discount label img {
  width: 50%;
  aspect-ratio: 1/1;
  margin: 0 auto;
}

.p-parts-set-discount label p:has(span[data-key="amttaxnounit"]) {
  font-weight: 700;
  color: #e43344;
}

.p-parts-set-discount label span[data-key="amttaxnounit"] {
  font-size: 120%;
}

.p-parts-set-discount label p[data-key="stkname"] {
  font-size: 80%;
}

.p-parts-set-discount label:has(input[type="radio"]:checked) {
  outline: 3px solid #004da1;
}

.p-parts-set-discount label:has(input[type="radio"]:checked)::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 7px;
  width: 7px;
  height: 15px;
  border: solid #004da1;
  border-width: 0 .30px .30px 0;
  transform: rotate(45deg);
  animation: bounce 0.5s forwards;
}

@keyframes bounce {
  25% {
    transform: scale(2) rotate(45deg);
  }

  50% {
    transform: scale(0.75) rotate(45deg);
  }

  75% {
    transform: scale(1.5) rotate(45deg);
  }

  100% {
    transform: scale(1) rotate(45deg);
  }
}

.p-parts-set-discount .u-pc-width {
  width: 92vw;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0;
}

.p-parts-set-discount .c-headline {
  margin-bottom: calc(var(--gap-p-parts-set-discount) / 2);
}

.p-parts-set-discount .section-recommend {
  background: #fbf4e2;
}

.p-parts-set-discount .discount-value{
  color:#e43344;
}

.p-parts-set-discount .section-recommend .discount-value{
  color:#ffd400;
}

.p-parts-set-discount .section-campaign {
  background: #f3f3f3;
}

.p-parts-set-discount .set {
  background: #fff;
  border: 3px solid #004da1;
  padding: 15px;
}

.p-parts-set-discount .set .c-headline {
  width: calc(100% + 30px);
  margin: -15px -15px 15px -15px;
  padding: calc(var(--gap-p-parts-set-discount) / 4);
  background: #004da1;
}

.p-parts-set-discount .set .c-headline__h3 {
  color: #fff;
  margin: 0 auto;
  line-height: 1.25;
}

.p-parts-set-discount .set .set__pname {
  margin-top: 15px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  padding-bottom: 1px;
}

.p-parts-set-discount .set .set__normal-price {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 700;
}

.p-parts-set-discount .set .set__bundle-total-price {
  margin-bottom: 15px;
  color: #e43344;
  font-size: 24px;
  font-weight: 700;
}

.p-parts-set-discount .set .c-button--primary-blue {
  width: 100%;
}

.p-parts-set-discount .set .c-button--primary-blue img {
  height: 1em;
}

.p-parts-set-discount .set--child {
  border: 1px solid #ccc;
  box-shadow: 3.5px 3.5px 0 0 rgba(72, 72, 72, .1);
}

.p-parts-set-discount .set--child .c-headline {
  background: #f3f3f3;
}

.p-parts-set-discount .set--child .c-headline__h4 {
  font-size: 20px;
  font-weight: 700;
}

.p-parts-set-discount .lead {
  position: relative;
  margin-bottom: 30px;
  padding: 15px;
  background: #eee;
  border-radius: 45px;
  font-size: 120%;
  font-weight: 700;
  text-align: center;
}

.p-parts-set-discount .lead::after {
  content: "";
  display: block;
  height: 15px;
  aspect-ratio: 1/0.866;
  background: #eee;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.p-parts-set-discount .total-price {
  padding: 15px;
  background: #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.p-parts-set-discount .total-price .c-button[disabled] {
  filter: grayscale(1);
  opacity: 0.25;
  pointer-events: none;
  cursor: not-allowed;
}

.p-parts-set-discount .total-price table tr th,
.p-parts-set-discount .total-price table tr td {
  padding: 7px 0;
}

.p-parts-set-discount .total-price table tr th {
  text-align: right;
}

.p-parts-set-discount .total-price table tr th+td {
  padding-left: 7px;
  text-align: left;
}

.p-parts-set-discount .discount-price__wrapper {
  color: #e43344;
  font-size: 140%;
  font-weight: 700;
}

.p-parts-set-discount .saved-price__wrapper {
  color: #e43344;
  font-size: 120%;
  font-weight: 700;
}

.p-parts-set-discount .nav {
  height: var(--nav-height);
  background: #000;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
}

.p-parts-set-discount .nav__list {
  width: 100%;
  height: 100%;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
}

.p-parts-set-discount .nav__list-item {
  width: calc(100% / 3);
  border-left: 1px solid #fff;
}

.p-parts-set-discount .nav__list-item:last-child {
  border-right: 1px solid #fff;
}

.p-parts-set-discount .nav__list-item a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25em;
  width: 100%;
  height: 100%;
  line-height: 1.2;
  text-align: center;
  color: #fff;
}

.p-parts-set-discount .nav__list-item a:hover {
  opacity: 0.7;
}

.nav__list-item--special a {
  background-color: #e32211;
}

.p-parts-set-discount .nav__list-item-tag-update {
  margin: 0 auto .5em auto;
  font-weight: bold;
  background: #ff0;
  color: #e43344;
  padding: 0 2em;
  font-size: 0.8em;
  border-radius: 1em;
  width: fit-content;
}

.p-parts-set-discount .other-set .u-pc-width {
  display: flex;
  justify-content: flex-end;
}

.p-parts-set-discount .other-set .u-pc-width .c-button {
  width: fit-content;
  padding-right: 45px;
  padding-left: 25px;
}

.p-parts-set-discount .lazy-product {
  opacity: 0;
  transition: all 0.3s ease;
}

.p-parts-set-discount .lazy-product.is-active {
  opacity: 1;
}

.p-parts-set-discount .grid-container .c-button {
  width: 100%;
}

.p-parts-set-discount .category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.p-parts-set-discount .category-tabs button {
  width: calc((100% - (5px * 3)) / 4);
  height: 44px;
  padding: 0;
  background: #efefef;
  border-top: none;
  border: 2px solid #004da1;
  border-radius: 1140px;
  display: block;
  text-align: center;
  font-weight: 700;
}

.p-parts-set-discount .category-tabs button[aria-selected="true"] {
  background: #004da1;
  color: #fff;
}

.p-parts-set-discount .static-thumb {
  display: block;
  width: 240px;
  margin: 0 auto 15px auto;
}

.p-parts-set-discount .text-center {
  text-align: center;
}

.p-parts-set-discount .set-separator {
  height: 100%;
  font-weight: 700;
  position: relative;
  display: block;
}

.p-parts-set-discount .set-separator::before {
  content: '';
  width: 1px;
  height: 100%;
  background: #484848;
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
}

.p-parts-set-discount .set-separator::after {
  content: 'または';
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 15px;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  background: #fff;
  display: block;
}

@media screen and (max-width:767px) {
  :root {
    --gap-p-parts-set-discount: 30px;
    --nav-height: 50px;
  }

  .p-parts-set-discount .nav {
    font-size: 12px;
  }

  .p-parts-set-discount .category+.category {
    margin-top: var(--gap-p-parts-set-discount);
  }

  .p-parts-set-discount .c-button {
    height: 44px;
  }

  .p-parts-set-discount label .c-button {
    justify-content: flex-start;
    padding: 0 15px;
  }

  .p-parts-set-discount label .c-button::after {
    right: 15px;
  }

  .p-parts-set-discount .discount-price__wrapper {
    font-size: 120%;
  }

  .p-parts-set-discount .saved-price__wrapper {
    font-size: 110%;
  }

  .p-parts-set-discount .static-thumb {
    width: 32vw;
  }

  .p-parts-set-discount .set-separator {
    height: 45px;
  }

  .p-parts-set-discount .set-separator::before {
    content: '';
    width: 100%;
    height: 1px;
    left: 0;
    top: 50%;
  }

  .p-parts-set-discount .category-tabs button {
    width: calc((100% - (5px * 1)) / 2);
    font-size: 12px;
  }

  .p-parts-set-discount .set .set__normal-price {
    font-size: 14px;
  }

  .p-parts-set-discount .set .set__bundle-total-price {
    font-size: 16px;
  }
}