@charset "utf-8";

/* ========================================
 * テーブル設定
 * ======================================== */
.tableSection {
  margin: 6px 0 15px 0;
  text-align: left;
}
table.type01 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 1px;
  background-color: #cccccc;
  word-wrap: break-word;
}
table.type01 th {
  background-color: #efece7;
  border: 1px solid #fff;
  margin: 1px;
  padding: 6px;
  font-style: normal;
  font-weight: normal;
}
table.type01 td {
  background-color: #fff;
  padding: 6px;
  margin: 1px;
}
/* === table === */
table.type02 th,
table.type02 td {
  font-weight: normal;
  border: 2px solid #d1d1d1;
  vertical-align: middle;
  text-align: center;
}
table.type02 th {
  color: #231815;
  background-color: #efece7;
}
@media screen and (min-width: 768px){
  table.type02 th,
  table.type02 td {
    padding: 10px;
  }
}
@media not all and (min-width: 768px){
  table.type02 th,
  table.type02 td {
    padding: 8px;
  }
}
.center {
  text-align: center;
  vertical-align: middle;
}
.w15p {
  width: 15% !important;
  vertical-align: middle;
}
.w85p {
  width: 85% !important;
  vertical-align: middle;
}
.tableSection .note {
  display: flex;
  margin-top: 5px;
  font-size: 0.9em;
  color: #333;
  gap: 12px;
}
.tableSection .note ol {
  list-style-type: none;
  counter-reset: list-counter;
} 
.tableSection .note ol li {
  counter-increment: list-counter;
  padding-left: 1.5em !important;
  text-indent: -1.5em !important;
}
.tableSection .note ol li::before {
  content: counter(list-counter);
  margin-right: 1em;
}

/* === link list === */
.link__list01 li a {
  color: #7e0017;
  transition: all 0.3s ease;
}
.link__list01 li a:hover {
    opacity: 0.7;
}

/* === title === */
.tit {
  font-weight: bold;
  line-height: 1.3;
  display: inline-block;
}
.tit::before {
  content: "●";
  display: inline-block;
  color: #FF7C80;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .tit {
    font-size: calc(18 / 16 * 1rem);
    margin-bottom: 8px;
  }
  .tit::before {
    font-size: 0.8rem;
    margin-right: 5px;
    padding-top: 4px;
  }
}
@media not all and (min-width: 768px){
  .tit {
    font-size: calc(15 / 16 * 1rem);
    margin-bottom: 4px;
  }
  .tit::before {
    font-size: 0.6rem;
    margin-right: 5px;
    padding-top: 4px;
  }
}

.imageBlock {
  margin: 10px 0;
  text-align: center;
}
.mt15 {
  margin-top: 15px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}