/* feature/
----------------------------------- */
#price {
  padding-left: clamp(2rem, 8vw, 12rem);
  padding-right: clamp(2rem, 8vw, 12rem);
  padding-right: clamp(2rem, 4vw, 150px);
  padding-left: clamp(2rem, 4vw, 150px);
  padding-right: clamp(2rem, 8.5vw, 8.5vw);
  padding-left: clamp(2rem, 8.5vw, 8.5vw);
}
@media screen and (max-width: 767px) {
  #price {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
#price {
  max-width: 1400px;
  margin: 0 auto;
}
#price .tax {
  margin-bottom: 3rem;
}
#price .priceContainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6.9vw, 10rem) clamp(2rem, 4.2vw, 6rem);
  margin-bottom: clamp(2rem, 6.9vw, 10rem);
}
#price h2 {
  font-size: clamp(1.8rem, 1.5vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  margin-bottom: 4rem;
}
#price #typeguide01,
#price #typeguide02 {
  grid-column: 1/3;
}
#price .materialguide {
  border-top: 1px dashed;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 1rem 0;
  padding-top: 1rem;
}
#price .materialguide dt,
#price .materialguide dd {
  padding-bottom: 1rem;
  border-bottom: 1px dashed;
}
#price .materialguide dd {
  padding-left: clamp(2rem, 2.8vw, 4rem);
}
#price .photo {
  margin-bottom: 3rem;
}
#price .pricetable {
  width: 100%;
  border-collapse: collapse;
}
#price .pricetable th,
#price .pricetable td {
  padding: 0.75rem 1rem;
  font-weight: normal;
  vertical-align: top;
}
#price .pricetable thead {
  background: #2F1616;
  color: #FFF;
  text-align: center;
}
#price .pricetable thead th:not(:last-child) {
  border-right: 1px solid;
}
#price .pricetable thead th {
  white-space: nowrap;
}
#price .pricetable tbody th,
#price .pricetable tbody td {
  border-bottom: 1px solid #DCDBDB;
  text-align: left;
  font-weight: normal;
}
#price .pricetable tbody td {
  text-align: center;
  white-space: nowrap;
}
#price .pricetable tbody tr.noline th,
#price .pricetable tbody tr.noline td {
  border-bottom: none;
}
#price .notice {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: max-content 1fr;
}
#price .notice li {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
  gap: 0.5rem 1rem;
}
@media screen and (max-width: 768px) {
  #price .priceContainer {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 6.9vw, 10rem) clamp(2rem, 4.2vw, 6rem);
    margin-bottom: clamp(2rem, 6.9vw, 10rem);
  }
  #price #typeguide01,
  #price #typeguide02 {
    grid-column: 1/2;
  }
  #price h2 {
    position: relative;
    padding-right: 2rem;
    margin-bottom: 1rem;
  }
  #price h2::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: calc(50% - 4px);
    width: 8px;
    aspect-ratio: 1;
    border-right: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(45deg);
  }
  #price h2.active::after {
    transform: rotate(-135deg);
  }
  #price section .data {
    display: none;
  }
  #price .materialguide {
    border-top: 1px solid;
    grid-template-columns: 1fr;
  }
  #price .materialguide dt {
    font-weight: 500;
  }
  #price .materialguide dd {
    padding-left: clamp(2rem, 2.8vw, 4rem);
    border-bottom: 1px solid;
  }
}

/*# sourceMappingURL=price.css.map */