@charset "utf-8";

/* -------------------------------------------------------
main
------------------------------------------------------- */
#main {
  padding: 80px 40px 160px 40px;
}

.product-title {
  font-size: 1.4rem;
  font-weight: normal;
  margin: 40px 0 30px 0;
}

.flex-box {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
}

.item:first-of-type {
  width: 50%;
}

.item:last-of-type {
  width: 42%;
  font-size: 1.4rem;
}

.item p {
  text-align: justify;
  margin-bottom: 30px;
}

.item dl {
  display: flex;
  flex-wrap: wrap;
}

.item dt {
  width: 30%;
}

.item dd {
  width: 70%;
}

.back-to-products {
  text-align: center;
  font-size: 1.4rem;
  margin-top: 65px;
}

.back-to-products a:hover {
  opacity: 0.7;
}


/* -------------------------------------------------------
mobile用
------------------------------------------------------- */
@media screen and (max-width: 900px) {
  /* -------------------------------------
  main
  ------------------------------------- */
  .flex-box {
    flex-direction: column;
  }

  .item:first-of-type {
    width: 100%;
    margin-bottom: 35px;
  }

  .item:last-of-type {
    width: 100%;
  }
}