@charset "UTF-8";
.main-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.main-bg img:nth-of-type(1) {
  position: absolute;
  top: 0;
  right: 0;
  width: 307px;
  height: 360px;
}
.main-bg img:nth-of-type(2) {
  position: absolute;
  bottom: -450px;
  left: -850px;
  width: 1185px;
  height: 1185px;
  animation: rotate_anim 120s linear infinite;
}

@keyframes rotate_anim {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media only screen and (max-width: 768px) {
  .main-bg img:nth-of-type(1) {
    top: 30px;
    width: 153px;
    height: 180px;
  }
  .main-bg img:nth-of-type(2) {
    top: calc(100ch - 367px);
    bottom: auto;
    left: -425px;
    width: 592px;
    height: 592px;
  }
}
.main-area .section-content {
  max-width: 780px;
}
.main-area.font-jp {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.main-area h3 {
  margin-bottom: 1.5em;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2em;
}
.main-area h4 {
  margin: 2em 0 1.5em;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2em;
}
.main-area p, .main-area li {
  margin-bottom: 2em;
  line-height: 1.5em;
}
.main-area p strong, .main-area li strong {
  font-weight: 700;
}
.main-area li:not(.legal-item) {
  margin-left: 1em;
  text-indent: -1em;
  counter-increment: number-list;
}
.main-area li:not(.legal-item)::before {
  content: counter(number-list) ".";
}
.main-area a {
  font-weight: 700;
  text-decoration: underline;
  transition: opacity 0.3s;
}
.main-area a:hover {
  opacity: 0.5;
}
.main-area .sub-list {
  margin: 1em 0 0 1em;
}
.main-area .sub-list li {
  margin: 0 0 1em 1.5em;
  text-indent: -1.5em;
  counter-increment: sub-list;
}
.main-area .sub-list li::before {
  content: "(" counter(sub-list) ")";
}
.main-area .dot-list li {
  margin: 0 0 1em 1.5em;
  text-indent: -1.1em;
}
.main-area .dot-list li::before {
  content: "•";
  margin-right: 0.5em;
}
.main-area .other-date {
  text-align: right;
}
.main-area .legal-item {
  display: flex;
  align-items: center;
}
.main-area .legal-item .position {
  width: 20%;
  box-sizing: border-box;
}
.main-area .legal-item .text {
  position: relative;
  padding-left: 20px;
  margin-left: 20px;
  width: 80%;
  font-size: 17px;
  font-weight: 700;
  word-wrap: break-word;
}
.main-area .legal-item .text::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #adadad;
}

@media only screen and (max-width: 768px) {
  .main-area p {
    margin: 0;
  }
  .main-area .legal-item {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 4em;
  }
  .main-area .legal-item .position {
    margin-bottom: 10px;
    width: 100%;
  }
  .main-area .legal-item .text {
    padding: 10px 0 0 0;
    margin-left: 0;
    width: 100%;
  }
  .main-area .legal-item .text::after {
    width: 100%;
    height: 1px;
  }
}/*# sourceMappingURL=other.css.map */