@charset "utf-8";
.detail__content {
  width: 100%;
}

.detail__content img {
  margin-top: 40px;
  aspect-ratio: 800/474;
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
  max-height: 474px;
}

.detail__content h2 {
  margin-top: 60px;
  font-size: clamp(18px, 1.62vw, 22px);
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail__content h2::before {
  content: "";
  width: 3px;
  height: 30px;
  background: var(--color-base);
}

@media screen and (min-width: 768px) {
  .detail__content h2 {
    gap: 27px;
  }
}

.detail__content h3 {
  margin-top: 40px;
  font-size: clamp(16px, 1.32vw, 18px);
  font-weight: 700;
  line-height: 1.2;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
}

@media screen and (min-width: 768px) {
  .detail__content h3 {
    margin-top: 80px;
  }
}

.detail__content h3::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--color-base);
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (min-width: 768px) {
  .detail__content h3 {
    padding-bottom: 27px;
  }
}

.detail__content p {
  margin-top: 29px;
  line-height: calc(30 / 16);
  font-size: clamp(14px, 1.18vw, 16px);
}

.detail__button {
  margin-top: 30px;
  text-align: center;
  display: block;
}
