/* CSS Document */
.detail_box {
  padding: 0 10px clamp(40px, 8vw, 80px);
}
.detail_box .detail_wrapper {
  background: #cccccc;
  margin: 0 auto;
  max-width: 980px;
  width: 100%;
}
.detail_box .detail_inner {
  padding: 10px;
}
.detail_box .detail_title {
  font-size: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: #000;
  padding: 10px 20px;
}
.detail_box .detail_title i {
  width: clamp(21px, 3vw, 30px);
}
.detail_box .detail_title p {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.25;
  margin-left: 1rem;
  width: calc(100% - 30px);
}
.detail_box .detail_list {
  background: #fff;
  margin-bottom: 40px;
}
.detail_box .detail_list li {
  margin-bottom: 5px;
}
.detail_box .detail_list li:last-child {
  margin-bottom: 0;
}
.detail_box .detail_list dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.detail_box .detail_list dl dt {
  background: #000;
  color: #ff0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  font-weight: 400;
  padding: 10px;
  text-align: center;
  width: 31.25%;
}
@media screen and (max-width: 500px) {
  .detail_box .detail_list dl dt {
    width: 100%;
  }
}
.detail_box .detail_list dl dd {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 400;
  color: #000;
  padding: 0 10px;
  width: 68.75%;
}
@media screen and (max-width: 500px) {
  .detail_box .detail_list dl dd {
    padding: 10px;
    width: 100%;
  }
}
.detail_box .detail_btn_box {
  background: #e5e5e5;
  padding: 20px;
}
.detail_box .detail_btn_box a {
  background: #e64c4c;
  box-shadow: 0 5px 0 #9e2929;
  border-radius: 10px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  font-weight: 500;
  display: block;
  line-height: 1;
  padding: 20px 10px;
  text-align: center;
  transition: all 0.3s;
  margin: 0 auto;
  max-width: 440px;
  width: 100%;
}
.detail_box .detail_btn_box a:hover {
  background: #9e2929;
  box-shadow: 0 5px 0 #9e2929, 0 0 10px #e64c4c inset;
}/*# sourceMappingURL=detail.css.map */