:root {
  --aqua: #09c6f5;
  --blue: #0077f0;
  --pink: #db1678;
  --navy-blue: #061147;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #0f0f0f;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

a {
  color: #fff !important;
}

/* header : 全体

====================================================*/

header {
  background-color: #0f0f0f;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 4rem;
  position: fixed;
  z-index: 5;
  width: 100%;
  top: 0;
  height: 70px;
}

.header__logo {
  display: block;
  height: 40px;
}

.header__logo img {
  height: 100%;
  object-fit: contain;
}

.header__link {
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  display: block;
}

/*  外枠 : body-wrap
  .body-wrap>.main-wrap
  .body-wrap>.sub-wrap

====================================================*/

.section {
  padding: 2rem 0;
  margin-top: 68px;
}

/* footer

====================================================*/
#footer {
  background-color: #212121;
  padding: 0 24px;
}

#footer > .logo {
  text-align: center;
  padding: 32px 0;
}

#footer .menu-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 87px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  color: #fff;
}

#footer .menu,
#footer .sns {
  max-width: 500px;
  width: 100%;
}

#footer .menu .logo {
  margin-bottom: 22px;
}

#footer .menu ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 21px;
}

#footer .menu ul:last-child {
  margin-bottom: 0;
}

#footer .menu ul li {
  margin-right: 12px;
}

#footer .menu ul a {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  display: flex;
  align-items: center;
}

#footer .menu ul a::after {
  content: "＞";
  display: block;
  font-size: 12px;
  font-weight: 400;
  margin-left: 6px;
}

#footer .sns {
  display: flex;
  align-items: center;
}

#footer .sns a {
  color: #fff;
  font-size: 32px;
  margin-left: 16px;
}

#footer .copy {
  color: #fff;
  text-align: center;
  padding: 32px 0;
  display: block;
}

#footer ul {
  display: flex;
}

.footer_ttl {
  font-size: 24px;
  font-weight: 700;
  text-align: left;
}

.menu .footer_ttl {
  margin-bottom: 22px;
}

@media screen and (max-width: 500px) {
  #footer .menu-wrap {
    flex-direction: column;
  }

  #footer .menu {
    margin-bottom: 40px;
  }

  #footer .sns {
    display: block;
  }

  #footer .sns .footer_ttl {
    margin-bottom: 16px;
  }

  #footer .sns a {
    margin-left: 0;
    margin-right: 16px;
  }

  #footer .menu ul li {
    margin-bottom: 8px;
  }
}

.section__wrap {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.section__wrap h1 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2rem;
}

.section__wrap h2 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.section__wrap p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20.8px;
  text-align: left;
  margin-bottom: 20px;
}

.section__wrap ol {
  list-style-type: none;
  counter-reset: cnt 0;
  margin-bottom: 16px;
}

.section__wrap ol li {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20.8px;
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
}
.section__wrap > ol > li {
  font-size: 14px;
  font-weight: 400;
  line-height: 20.8px;
  text-align: left;
}
.section__wrap > ol > li::before {
  counter-increment: cnt 1;
  content: counter(cnt) ". ";
}

.section__wrap > ol.section__list--paren > li {
  text-indent: -44px;
  padding-left: 34px; 
}

.section__wrap > ol.section__list--paren > li::before {
  counter-increment: cnt 1;
  content: "（" counter(cnt) "）";
  margin-right: 8px;
}

.section__wrap > ol > li > ol {
  list-style-type: none;
  counter-reset: cnt 0;
  margin-top: 16px;
}
.section__wrap h2:nth-of-type(3) + ol.section__list--nested > li,
.section__wrap h2:nth-of-type(4) + ol.section__list--nested > li,
.section__wrap h2:nth-of-type(5) + ol.section__list--nested > li {
  text-indent: -28px;
  padding-left: 28px;
  counter-increment: cnt;
}
.section__wrap > h2:nth-of-type(3) + ol.section__list--nested > li::before {
  content: "3-" counter(cnt);
  margin-right: 8px;
}
.section__wrap > h2:nth-of-type(4) + ol.section__list--nested > li::before {
  content: "4-" counter(cnt);
  margin-right: 8px;
}
.section__wrap > h2:nth-of-type(5) + o.section__list--nested > li::before {
  content: "5-" counter(cnt);
  margin-right: 8px;
}
.section__wrap > ol > li > ol > li::before {
  counter-increment: cnt 1;
  content: "（" counter(cnt) "）";
}

.section__wrap > ol > li > ol > li {
  text-indent: -2.5em;
  padding-left: 2em;
  font-size: 14px;
  font-weight: 400;
  line-height: 20.8px;
  text-align: left;
}
.section__wrap > ol > li > ul {
  margin-top: 8px;
  list-style-type: disc;
  list-style-position: outside;
}
.section__wrap > ol > li > ul li::before {
  content: "" !important;
}

.text_align--right{
  text-align: right;
}