@charset "utf-8";

/*--------------------------------------------------
 #details
----------------------------------------------------*/
#details div {
  max-width: 960px;
  margin: 0 auto 100px;
}
#details table {
  box-sizing: border-box;
  border-collapse: collapse;
  width: 100%;
}
#details table th, #details table td {
  border-block-end: 1px solid #3A496B;
  padding-inline-start: 8px;
  margin-block-start: 5px;
  vertical-align: middle;
  font-style: normal;
  font-size:1.6rem;
  height: 2.8em;
  line-height: 1.6em;
  text-align: justify;
}
#details table th {
  width: 20%;
  font-weight: normal;
}

#details .form{
	max-width: 300px;
	margin: auto;
}

/*スマホ表示*/
@media (max-width: 767px) {
  #details div {
    padding-left: 10px;
    padding-right: 10px;
  }
  #details table {
    width: 100%;
  }
  #details table th, #details table td {
    display: block;
    width: 100%;
    height: auto;
    border-block-end: 0px;
    padding: 3px 10px;
  }
  #details table th {
    background-color: #EBEAE8;
  }
}


