@charset "utf-8";

/*
  File Name   : guide.css
  Description : コンテンツエリア関係 他
*/

/* section-guide
============================================================ */
.section-guide section {
  margin-top: 3em;
}
.section-guide > section > section {
  margin-right: 20px;
}
.section-guide > section > div,
.section-guide > section > p,
.section-guide > section > ul,
.section-guide > section > ol {
  margin-right: 20px;
  margin-left: 20px;
}
.section-guide section section {
  margin-top: 2.5em;
  padding-left: 20px;
}
.section-guide section:first-child {
  margin-top: 0;
}
.section-guide section h2 {
  margin-bottom: 1em;
  padding: 15px 20px;
  background: var(--base-color);
  color: var(--font-color5);
  line-height: 1.4;
}
.section-guide section h3 {
  margin-bottom: 0.75em;
  padding: 0 5px 5px;
  border-bottom: 1px solid var(--base-color);
  line-height: 1.4;
}
.section-guide section h4 {
  margin-bottom: 0.5em;
  padding: 0 5px 5px;
  border-bottom: 1px dashed var(--base-color);
  line-height: 1.4;
}
.section-guide section h5 {
  margin-bottom: 0.5em;
}
.section-guide section p {
  margin-bottom: 1.5em;
}
.section-guide section p:last-child {
  margin-bottom: 0;
}
.section-guide section img {
  max-width: 100%;
  height: auto;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.section-guide section ul {
  margin-bottom: 1.5em;
  text-indent: 0;
}
.section-guide section ul li {
  margin-bottom: 0.5em;
  padding-left: 1.4em;
  text-indent: -1.4em;
}
.section-guide section ul.license li {
  margin-bottom: 0.75em;
}
.section-guide section ul li:last-child {
  margin-bottom: 0;
}
.section-guide section ul li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  margin-bottom: 3px;
  border-radius: 10px;
  background: var(--base-color);
  vertical-align: middle;
}
.section-guide section ul li > * {
  text-indent: 0;
}
.section-guide section ul li:last-child img:last-child {
  margin-bottom: 0;
}
.section-guide section ol {
  margin-bottom: 2em;
  padding-left: 0;
  counter-reset: item;
}
.section-guide section ol > li {
  margin-bottom: 0.5em;
  padding-left: 1.65em;
  text-indent: -1.65em;
}
.section-guide section ol > li::before {
  content: counter(item);
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 0.5em;
  margin-bottom: 3px;
  border-radius: 20px;
  background: var(--base-color);
  color: var(--font-color5);
  font-size: 0.8em;
  font-weight: bold;
  line-height: 20px;
  text-align: center;
  text-indent: 0;
  counter-increment: item;
}
.section-guide section ol li > * {
  text-indent: 0;
}
.section-guide section ol li:last-child img:last-child {
  margin-bottom: 0;
}
.section-guide section .memo {
  margin-top: 2em;
  border: 1px solid var(--base-color);
}
.section-guide section ul > li > .memo,
.section-guide section ol > li > .memo {
  margin-top: 0.25em;
}
.section-guide section .memo .title {
  margin-bottom: 0;
  padding: 2px 10px;
  background: var(--base-color);
  color: var(--font-color5);
}
.section-guide section .memo ul,
.section-guide section .memo .body {
  margin-bottom: 0;
  padding: 15px;
}
.section-guide section .notice {
  margin-top: 2em;
  border: 1px solid #353535;
}
.section-guide section .notice .title {
  margin-bottom: 0;
  padding: 2px 10px;
  background: #353535;
  color: var(--font-color3);
}
.section-guide section .notice ul,
.section-guide section .notice .body {
  margin-bottom: 0;
  padding: 15px;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .section-guide section h2 {
    padding: 5px 20px;
  }
  .section-guide section ul li {
    padding-left: 1.35em;
    text-indent: -1.35em;
  }
  .section-guide section ul li::before {
    width: 8px;
    height: 8px;
    border-radius: 8px;
  }
  .section-guide section ol > li {
    padding-left: 1.75em;
    text-indent: -1.75em;
  }
  .section-guide section ol > li::before {
    width: 18px;
    height: 18px;
    border-radius: 18px;
    line-height: 18px;
  }
}
