@charset "UTF-8";
.create-title {
  text-align: left;
}
.create-title h2 {
  margin: 0 0 30px 0;
  font-size: 3rem;
  letter-spacing: 0.1vw;
  line-height: 100%;
}
.create-title h3 {
  margin-top: 120px;
  font-size: 1.5rem;
  color: #595959;
}
.create-top p {
  text-align: left;
  margin: 100px 0;
}
.create-top {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto
}
.create-top img {
  width: 100%;
  height: auto;
  object-fit: cover; /* 画像を整える */
  border-radius: 10px; /* 画像も少し丸める */
  border: 3px solid #404040;
}
.create-top_url {
  text-align: left;
  font-size: 1.6rem;
}
@media (max-width: 600px) {
  .create-top p {
    margin: 50px 0;
  }
  .create-top_url {
    font-size: 1.4rem;
  }
  .create-title h2 {
    font-size: 6.5vw;
  }
}
.create-details__wrapper {
  width: 80%;
  padding-inline: 20px;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 100px;
}
.create-details__wrapper ul li {
  display: flex;
  text-align: left;
  justify-content: flex-start;
  padding: 45px 20px;
  border-top: dashed 1px #595959;
}
.create-details__wrapper ul li h3 {
  width: 120px;
  font-size: 1.6rem;
  color: #0D0D0D;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.create-details__wrapper ul li p {
  padding-left: 50px;
  line-height: 2em;
  font-size: 1.5rem;
  flex: 1;
}
.create-details__wrapper ul li:last-child {
  border-bottom: solid 1px #595959;
}
@media screen and (max-width: 960px) {
  .create-details__wrapper ul li {
    display: flex;
    flex-direction: column;
    justify-content: normal;
    padding: 32px 0px;
  }
  .create-details__wrapper ul li h3 {
    font-size: 11.5px;
    letter-spacing: 0.12em;
    font-weight: 500;
    padding-top: 0px;
    /* padding-bottom: 20px; */
  }
  .create-details__wrapper ul li p {
    padding-left: 0px;
    line-height: 1.8em;
    font-size: 13px;
    flex: 1;
    text-align: justify;
  }
}