@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');
/*
 * base styles
 *
*/
html {
  font-size: 62.5%;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  width: 100%;
  min-width: 1080px;
  color: #171725;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

hr {
  margin: 0;
}

/* ----- common ----- */
.container {
  padding: 60px 0 60px;
}
.container:nth-of-type(even) {
  background-color: #f8f9fb;
}

.content {
  max-width: 1080px;
  margin: 0 auto;
}

/*
 * header content styles
 *
*/
.header {
  position: fixed;
  width: 100%;
  background-color: #ffffff;
  padding: 14px 0 14px;
  z-index: 10;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__nav {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 700;
}
.header__nav li:nth-child(n + 2) {
  margin-left: 3rem;
}
.header__login {
  transition: 0.4s;
}
.header__login:hover {
  opacity: 60%;
}

.header-shadow {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/*
 * footer content styles
 *
*/
.footer {
  padding: 60px 0 10px;
  text-align: center;
}
.footer__nav {
  margin-top: 80px;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.9rem;
}
.footer__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__nav-list li:nth-child(n + 2) {
  margin-left: 20px;
}
.footer__copyright {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.9rem;
  color: #5a5a5a;
  margin-top: 10px;
}

.header-container {
  padding: 19px 0 19px;
}

.main {
  padding-top: 70px;
  line-height: 1.5;
}

.content-container {
  font-size: 1.4rem;
  border-top: 1px solid #e2e6ed;
  border-bottom: 1px solid #e2e6ed;
}

.title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin: 80px 0 80px;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 40px;
  text-align: center;
}

.article-title {
  margin-top: 1em;
}

.indentation {
  text-indent: 1em;
}

.supplementary-provisions {
  margin-top: 40px;
  margin-bottom: 40px;
}

ol {
  counter-reset: item;
  list-style-type: none;
}
ol.list-number > li {
  text-indent: -2em;
  padding-left: 2em;
}
ol.list-number > li::before {
  display: marker;
  counter-increment: item;
  padding-right: 0.5em;
  content: '(' counter(item) ')';
}
ol.list-alphabet {
  padding-left: 1em;
}
ol.list-alphabet li {
  text-indent: -1em;
  padding-left: 1em;
}

.link {
  color: #0d6efd;
  text-decoration: underline;
}

/*
 * scroll button style
 *
*/
.scroll-top-button {
  cursor: pointer;
  position: fixed;
  bottom: 21px;
  right: 160px;
  height: 50px;
  width: 50px;
  background-color: #ffffff;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16);
  border-radius: 4px;
  opacity: 0;
  transition-duration: 0.3s;
}
.scroll-top-button::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  top: 45%;
  right: 16px;
  border-top: 2px solid #0fb6b2;
  border-left: 2px solid #0fb6b2;
  transform: rotate(45deg) skew(5deg, 5deg);
}
.scroll-top-button.show {
  opacity: 1;
}
/*# sourceMappingURL=terms-of-service.css.map */
