* {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
}

html {
  font-size: 75%;
}

main {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 32px 16px 0;
}

.section {
  margin-top: 32px;
  padding-bottom: 32px;
}

.header,
.footer {
  width: 100%;
}

.header {
  border-bottom: 1px solid #d9d9d9;
  height: 64px;
  position: fixed;
  background-color: #fff;
}

.footer {
  margin-top: 32px;
}

.footer__inner {
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.header__inner {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.header__logo a {
  display: block;
}

.logo {
  width: auto;
}

.logo img {
  width: auto;
  height: 20px;
}

.copyright {
  margin-top: 10px;
  color: #999999;
  font-size: 1rem;
}

p,
li,
.table th,
.table td {
  font-size: 1.3rem;
  line-height: 1.5;
}

.br--sp {
  display: none;
}

a {
  color: #bd007d;
}

.title {
  width: 100%;
  background-color: #f3f4f6;
  padding-top: 64px;
  margin-bottom: 32px;
}

.h1,
.h2,
.h3,
.h4 {
  line-height: 1.5;
}

.h1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px 16px;
}

.h1--en {
  font-size: 2.4rem;
  font-family: "Montserrat", sans-serif;
}

.h1--ja {
  font-size: 1.4rem;
}

.h2 {
  font-size: 1.8rem;
  border-left: 5px solid #bd007d;
  padding-left: 12px;
  margin-bottom: 24px;
}

.h3 {
  font-size: 1.5rem;
  padding: 10px 15px;
  background-color: #f3f4f6;
  margin-bottom: 16px;
}

.content {
  display: flex;
  flex-direction: column;
  padding-bottom: 24px;
  margin-top: 24px;
  counter-reset: h4-counter;
}

.content__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 16px;
}

.h4 {
  font-size: 1.4rem;
  border-bottom: 1px solid #133051;
  padding-bottom: 10px;

}

.h4::before {
  counter-increment: h4-counter;
  content: counter(h4-counter)". ";
}

.content__item:nth-of-type(n+2) {
  margin-top: 24px;
}

.list-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list__title {
  font-size: 1.3rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.list__item {
  list-style-type: disc;
  list-style-position: inside;
  display: list-item;
  padding-left: 1.5em;
  text-indent: -1.5em;
}

.text--link {
  color: #bd007d;
}

.text--link::after {
  content: "";
  background-image: url('../img/external-link.svg');
  background-repeat: no-repeat;
  background-position: left center;
  padding-right: 1.5rem;
  margin-left: 5px;
}

.table {
  margin-top: 8px;
  border: 1px solid #E0E0E0;
  border-collapse: collapse;
  width: 100%;
}

.table th,
.table td {
  padding: 15px 20px;
  border-bottom: 1px solid #E0E0E0;
}

.table th {
  background-color: #F3F3F3;
  text-align: left;
}

.text--right {
  text-align: right;
}

@media screen and (max-width: 767px) {
  html {
    font-size: 62.5%;
  }

  .title {
    margin-bottom: 0;
  }

  .h4 {
    padding-left: 1.5em;
    text-indent: -1.5em;
  }

  p,
  li,
  .table th,
  .table td {
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .table tr {
    display: flex;
    flex-direction: column;
  }

  .table th {
    border: 1px solid #E0E0E0;
    border-collapse: collapse;
  }

  .table th:first-child,
  .table td:last-child {
    border: 0;
  }

}

@media screen and (max-width: 540px) {
  .br--sp {
    display: block;
  }
}