@charset "UTF-8";

/* ORIGINAL PARTS
------------------------------------ */
.bcf-parts {
  overflow: hidden;
  padding-bottom: 112px;
}

.bcf-parts__intro {
  padding-top: 230px;
  padding-bottom: 78px;
}

.bcf-parts__title {
  margin: 0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 58px;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  letter-spacing: .035em;
  text-align: center;
}

.bcf-parts__title-ja {
  margin-top: 18px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.bcf-parts__lead {
  margin-top: 62px;
}

.bcf-parts__lead p {
  margin: 0 0 18px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: .025em;
}

.bcf-parts__lead p:last-child {
  margin-bottom: 0;
}

.bcf-product {
  margin-bottom: 92px;
}

.bcf-product:last-child {
  margin-bottom: 0;
}

.bcf-product__name {
  margin: 0 0 26px;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .01em;
}

.bcf-product__card {
  display: grid;
  grid-template-columns: 450px minmax(0, 1fr);
  gap: 52px;
  min-height: 550px;
  padding: 40px;
  background: #0c0e12;
}

.bcf-gallery {
  min-width: 0;
}

.bcf-gallery button {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  appearance: none;
}

.bcf-gallery__main {
  width: 100%;
  overflow: hidden;
  cursor: zoom-in;
}

.bcf-gallery__main img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: opacity .25s ease, transform .4s ease;
}

.bcf-gallery__main:hover img {
  opacity: .88;
  transform: scale(1.012);
}

.bcf-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  margin-top: 6px;
}

.bcf-gallery__thumb {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
}

.bcf-gallery__thumb::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 2px solid transparent;
  transition: border-color .2s ease, background-color .2s ease;
}

.bcf-gallery__thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: opacity .2s ease;
}

.bcf-gallery__thumb:hover img {
  opacity: .72;
}

.bcf-gallery__thumb.is-current::after {
  border-color: #fff502;
  background: rgba(255, 245, 2, .06);
}

.bcf-product__info {
  min-width: 0;
}

.bcf-product__price {
  min-height: 91px;
  padding: 17px 25px 14px;
  background: #24262b;
}

.bcf-product__price-label {
  display: block;
  margin-bottom: 2px;
  color: #b9bac0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
}

.bcf-product__price p {
  margin: 0;
  color: #fff502;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
}

.bcf-product__price strong {
  font-size: 30px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: .015em;
}

.bcf-product__price p span {
  margin-left: 7px;
  color: #fff;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
}

.bcf-product__subhead {
  margin: 34px 0 26px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}

.bcf-product__details {
  margin-top: 30px;
}

.bcf-product__subhead + .bcf-product__details {
  margin-top: 0;
}

.bcf-product__detail {
  margin-top: 25px;
}

.bcf-product__detail:first-child {
  margin-top: 0;
}

.bcf-product__detail h3 {
  margin: 0 0 8px;
  color: #fff502;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.bcf-product__detail p,
.bcf-product__detail li {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: .015em;
}

.bcf-product__detail p {
  margin: 0;
}

.bcf-product__detail ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bcf-product__detail li {
  position: relative;
  padding-left: 1em;
}

.bcf-product__detail li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

/* Lightbox
------------------------------------ */
body.is-lightbox-open {
  overflow: hidden;
}

.bcf-lightbox {
  position: fixed;
  z-index: 99999;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 90px;
  background: rgba(0, 0, 0, .92);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.bcf-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.bcf-lightbox__dialog {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(1100px, 100%);
  height: 100%;
}

.bcf-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.bcf-lightbox__close {
  position: fixed;
  top: 28px;
  right: 32px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.bcf-lightbox__close::before,
.bcf-lightbox__close::after {
  position: absolute;
  top: 20px;
  left: 6px;
  width: 30px;
  height: 2px;
  content: "";
  background: #fff;
}

.bcf-lightbox__close::before { transform: rotate(45deg); }
.bcf-lightbox__close::after { transform: rotate(-45deg); }

.bcf-lightbox__arrow {
  position: fixed;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  background: transparent;
  cursor: pointer;
}

.bcf-lightbox__arrow--prev {
  left: 34px;
  transform: translateY(-50%) rotate(-135deg);
}

.bcf-lightbox__arrow--next {
  right: 34px;
  transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 1100px) {
  .bcf-product__card {
    grid-template-columns: 42% minmax(0, 1fr);
    gap: 36px;
  }
}

@media (max-width: 767px) {
  .bcf-parts {
    padding-bottom: 65px;
  }

  .bcf-parts__intro {
    padding-top: 140px;
    padding-bottom: 52px;
  }

  .bcf-parts__title {
    font-size: clamp(34px, 10vw, 46px);
    letter-spacing: .02em;
  }

  .bcf-parts__title-ja {
    margin-top: 12px;
    font-size: 13px;
  }

  .bcf-parts__lead {
    margin-top: 40px;
  }

  .bcf-parts__lead p {
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.9;
  }

  .bcf-product {
    margin-bottom: 58px;
  }

  .bcf-product__name {
    margin-bottom: 17px;
    font-size: 19px;
    line-height: 1.55;
  }

  .bcf-product__card {
    display: block;
    min-height: 0;
    padding: 18px;
  }

  .bcf-gallery__thumbs {
    gap: 4px;
    margin-top: 4px;
  }

  .bcf-product__info {
    margin-top: 26px;
  }

  .bcf-product__price {
    min-height: 78px;
    padding: 14px 20px 12px;
  }

  .bcf-product__price strong {
    font-size: 27px;
  }

  .bcf-product__subhead {
    margin: 27px 0 21px;
    font-size: 16px;
  }

  .bcf-product__details {
    margin-top: 25px;
  }

  .bcf-product__detail {
    margin-top: 22px;
  }

  .bcf-product__detail h3 {
    font-size: 13px;
  }

  .bcf-product__detail p,
  .bcf-product__detail li {
    font-size: 12px;
    line-height: 1.9;
  }

  .bcf-lightbox {
    display: none;
  }
}

.bcf-parts__schedule{padding:0 0 90px}.bcf-parts__schedule-title{display:flex;align-items:center;gap:12px;color:#fff502;font-size:16px;font-weight:700;border-bottom:2px solid #fff502;padding-bottom:16px;margin-bottom:20px}.bcf-parts__schedule-title img{width:28px;height:auto}.bcf-parts__schedule-panel{padding:20px;background:rgba(255,255,255,.1);border-radius:4px}.bcf-parts__schedule-panel table{width:100%;border-collapse:collapse}.bcf-parts__schedule-panel tr{border-top:1px solid rgba(255,255,255,.1)}.bcf-parts__schedule-panel tr:first-child{border-top:0}.bcf-parts__schedule-panel td{padding:16px 0;vertical-align:top}.bcf-parts__schedule-date{width:130px;padding-right:20px!important;color:#fff;font-size:14px;font-weight:700;white-space:nowrap}.bcf-parts__schedule-text{color:#fff;font-size:14px;line-height:1.8}@media(max-width:767px){.bcf-parts__schedule-panel tr{display:block;padding:12px 0}.bcf-parts__schedule-panel td{display:block;width:auto;padding:6px 0}}
/* ACF production status: reliable wrapping */
.bcf-parts__schedule-panel table{table-layout:fixed}
.bcf-parts__schedule-text{min-width:0;white-space:normal;overflow:visible;text-overflow:clip;overflow-wrap:anywhere;word-break:break-word}
@media(max-width:767px){.bcf-parts__schedule-date{padding-right:0!important}}

/* BCF PARTS: align production status width with product content */
.bcf-parts__schedule {
  max-width: 1110px;
}

@media (max-width: 767px) {
  .bcf-parts__schedule {
    max-width: none;
  }
}

.bcf-product__price-item + .bcf-product__price-item {
  margin-top: 15px;
}

.bcf-product__price-type {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 700;
}
.bcf-product__price-type {
  color: #fff;
}