@charset "UTF-8";

#box1 img {
  width: 100%;
  margin: 10px auto;
}

#box1 .table {
  width: 100%;
  margin: 15px 0;
  border-collapse: collapse;
}

#box1 .table caption {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
}

#box1 .table th {
  box-sizing: border-box;
  padding: 8px 16px;
  font-weight: bold;
  background-color: #e4f6ff;
  text-align: center;
  border: 1px solid #666;
}

#box1 .table td {
  box-sizing: border-box;
  padding: 8px 16px;
  border: 1px solid #666;
}

/* ==========================================================
	PC閲覧用 481px以上*/

@media print,
screen and (min-width: 481px) {

  #box1 img {
    width: 240px;
    float: right;
    margin: 0 0 20px 20px;
  }

  #box1 .inner {
    margin-bottom: 25px;
  }
}

/* ==========================================================
	SP閲覧用 480px以下*/

@media screen and (max-width: 480px) {

  #box1 .inner {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  #box1 p {
    padding-bottom: 10px;
  }

}