@charset "UTF-8";
/* ------------------------------------------------------------
   page.css
------------------------------------------------------------ */


/* common
------------------------------------------------------------ */
.layer_contents {
  margin: 5px auto;
  width: 85%;
}

.layer_contents .contents {
  background-color: #fff;
}

.layer_contents h1 {
  font-size: 1.75rem;
}

.layer_contents h2 {
  font-size: 1.5rem;
}

.layer_contents h3 {
  font-size: 1.25rem;
}

.layer_contents p, .layer_contents li, .layer_contents th, .layer_contents td {
  font-size: 1rem;
}

.layer_contents .subtitle01 {
  background: #3f51b5;
  color: #fff;
  font-weight: bold;
  margin: 20px 0;
  padding: 15px;
}

.layer_contents .subtitle02 {
  background: #f1f1f1;
  font-weight: bold;
  margin: 30px 0 20px;
  padding: 15px;
}

ol.list_indent li {
  list-style: decimal;
  list-style-position: inside;
}
ol.list_parentheses li {
  counter-increment: cnt;
  list-style-position: inside;
  list-style-type: none;
}

ol.list_parentheses li:before {
  content: "(" counter(cnt) ") ";
  display: marker;
}

ol.list_first li.first {
  counter-increment: cnt;
  list-style-position: inside;
  list-style-type: none;
}

ol.list_first li.first:before {
  content: "(" counter(cnt) ") ";
  display: marker;
}

ol.list_roma li.roma {
  list-style-position: inside;
  list-style-type: lower-roman;
  padding-left: 22px;
}

.layer_contents .list_dot > li {
  margin-bottom: 5px;
  padding-left: 47px;
  position: relative;
}

.layer_contents .list_dot > li::before {
  background: #3f51b5;
  content: "";
  height: 6px;
  left: 37px;
  position: absolute;
  top: 9px;
  width: 6px;
}