@charset 'utf-8';

body {
  font-family: "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
}

section {
  margin-bottom: 1.5rem;
}

.container {
  max-width: 768px;
}

header {
  background-color: #8A0D45;
  height: 120px;
}

.banner {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

@media (max-width: 575.98px) {
  header { height: 100px; }
  .banner { height: 100px; }
}

@media (max-width: 480.98px) {
  header { height: 90px; }
  .banner { height: 90px; }
}

@media (max-width: 420.98px) {
  header { height: 80px; }
  .banner { height: 80px; }
}

h1 {
  color: #333;
  margin-bottom: 1rem;
}

h2 {
  margin: 0 0 1rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid #333333;
  color: #333;
  font-weight: bold;
}

h3 {
  border-left: 4px solid #333333;
  padding: .25rem 1.5rem;
  margin: 0 0 1rem 0;
  color: #333;
}

h4 {
  margin: 1rem 0 .75rem 0;
  padding: .25rem .25rem .25rem .25rem;
  border-bottom: 1px solid #333333;
  color: #333;
  font-weight: bold;
}

h5 {
  margin: 1rem 0 .75rem 0;
  padding: .25rem .25rem .25rem .25rem;
  border-bottom: 1px dotted #333333;
  color: #333;
}

h6 {
  margin: 0 0 .25rem 0;
  padding: .25rem .25rem .25rem .25rem;
  color: #333;
  text-decoration: underline;
}

del {
  text-decoration: none;
  font-weight: normal;
  color: gray;
}

li.del {
  font-weight: normal;
  color: gray;
}

li {
  padding: 2px 0;
}

ul.asterisk {
  padding-left: 1rem;
}
ul.asterisk li {
  list-style-type: none;
  text-indent: -1rem;
  /* padding: 2px 0; */
}
ul.asterisk li:before {
  display: inline;
  content: "※";
  /* padding-right: 2px; */
}

ol.asterisk {
  padding-left: 2.5rem;
  counter-reset: nitem;
}
ol.asterisk li {
  list-style-type: none;
  text-indent: -2.5rem;
  /* padding: 2px 0; */
}
ol.asterisk li:before {
  display: inline;
  padding-right: .5rem;
  counter-increment: nitem;
  content: "※" counter(nitem) ")";
}

.required {
  color: red;
}
