@charset "utf-8";

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 80%;
  margin: 0 auto 15px;
}
th,
td {
  font-weight: normal;
  text-align: left;
}
th {
  font-weight: bold;
}
caption {
  font-weight: normal;
  text-align: left;
}

/* ----------------------------------------------------------
    フォーム系
------------------------------------------------------------- */
input,
textarea,
select {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  *font-size: 14px;
}
input,
button {
  line-height: normal;
  vertical-align: middle;
}

input[type="text"],
input[type="password"],
textarea {
  width: 100%;
  padding: 16px;
  background: #fff;
  border: 1px solid #000;
  -moz-box-shadow: inset 3px 3px 0 0 rgba(0, 0, 0, 0.03);
  -webkit-box-shadow: inset 3px 3px 0 0 rgba(0, 0, 0, 0.03);
  box-shadow: inset 3px 3px 0 0 rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
}
input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus {
  border: 1px solid #209dd9;
}

input[type="button"] {
  cursor: pointer;
}

.box__ttl input[type="button"] {
  margin-right: 5px;
  height: 26px;
  line-height: 26px;
}

input[type="submit"],
.return_btn {
  padding: 8px 32px;
  border: 1px solid #000;
  background: #fff;
  cursor: pointer;
  transition: 0.3s;
}
input[type="submit"]:hover,
.return_btn:hover {
  background-color: #000;
  color: #fff;
}

input[type="checkbox"] {
  cursor: pointer;
}

input[type="submit"]:disabled,
input[type="button"]:disabled,
input[type="checkbox"]:disabled {
  cursor: default;
}

textarea {
  width: 100%;
  overflow: auto;
  vertical-align: top;
}
select {
  width: 100%;
  padding: 16px;
  line-height: normal;
  background: #fff;
  border: 1px solid #000;
}
label {
  cursor: pointer;
}
legend {
  *margin-left: -7px;
  color: #333;
}

/* ボタンを囲うclassタグ */
.button_box {
  clear: both;
  padding: 8px;
  text-align: center;
}
.button_box input[type="button"] {
  padding: 8px 32px;
  background-color: #fff;
  border: 1px solid #000;
}

/* ----------------------------------------------------------
    メインコンテンツ
------------------------------------------------------------- */
#wrapper {
  width: 80%;
  margin: 20px auto 0;
}

#header {
  padding: 40px 25px 40px;
}

.red_txt {
  color: #ff3333;
}

/* 説明文を表示するためのタグ */
#txt_explain {
  color: #000000;
}

#footer {
  margin-top: 40px;
  padding: 15px 0;
  background: #222;
  color: #fff;
  text-align: center;
  font-size: 12px;
}
#main {
  padding: 32px;
}

.section {
  margin-bottom: 40px;
}
.section:last-child {
  margin-bottom: 0;
}
.section__ttl {
  padding: 10px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  background: #000000;

  font-size: 18px;
}

.block {
  margin-bottom: 15px;
}
.block:last-child {
  margin-bottom: 0;
}
.block__ttl {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}
.block__body {
}

.table {
  border-top: 1px solid #000;
}
.table th {
  padding: 15px;
  color: #000;
  border-bottom: 1px solid #000;
  font-weight: bold;
  font-size: 16px;
}
.table td {
  padding: 15px;
  background: #fff;
  border-bottom: 1px solid #000;
  color: #222;
  font-size: 16px;
}

span.red {
  color: #e5005a;
  font-size: 20px;
}

p {
  font-size: 24px;
  text-align: center;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  #wrapper {
    width: 100%;
    padding: 16px;
  }
  #txt_explain {
    font-size: 16px;
  }
  table {
    width: 100%;
  }
  table tr {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .table th {
    border-bottom: none;
    padding-bottom: 0;
  }
  .table td {
    padding-top: 8px;
  }
  span.red {
    font-size: 16px;
  }
  p {
    font-size: 16px;
    padding: 32px 16px;
  }
}