.l-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 100%;
  background-color: red;
  height: 100px;
}

.l-header__logo {
  width: 100px;
}

.l-header__inner {
  display: block;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.js-gnav-bg {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.js-gnav-bg.is-open {
  opacity: 1;
  pointer-events: auto;
}

.l-header__nav {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.l-header__nav.is-open {
  opacity: 1;
  pointer-events: auto;
}

.l-header__nav.is-open .l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.l-header__nav-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: auto;
  top: 100px;
}

.l-header__nav.is-open .l-header__nav-inner {
  opacity: 1;
  z-index: 1;
}

.l-header__nav-list {
  padding: 70px 25px;
  width: 100%;
}

.l-header__nav-item {
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}

.l-header__nav.is-open .l-header__nav-item {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.l-header__nav.is-open .l-header__nav-item:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.l-header__nav.is-open .l-header__nav-item:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.l-header__nav.is-open .l-header__nav-item:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.l-header__nav.is-open .l-header__nav-item:nth-child(4) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.l-header__nav.is-open .l-header__nav-item:nth-child(5) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.l-header__nav.is-open .l-header__nav-item:nth-child(6) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.l-header__nav.is-open .l-header__nav-item:nth-child(7) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.l-header__nav-anchor {
  display: block;
  position: relative;
  text-decoration: none;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 0.45rem 0.45rem 0;
}
.l-header__nav-anchor span {
  display: block;
  position: relative;
  z-index: 1;
  text-align: left;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid rgb(243, 72, 72);
  background: #fff;
  padding: 11px 14px;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.l-header__nav-anchor::before {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100% - 0.45rem);
  height: calc(100% - 0.45rem);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid rgb(243, 72, 72);
  background-color: #fff;
  z-index: 1;
}

.l-header__bottom-list {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 36px;
  margin-bottom: 30px;
  text-align: center;
  z-index: 1;
}
.l-header__bottom-item {
  display: inline-block;
  padding: 0 16px 24px 16px;
  font-size: 12px;
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}
.l-header__bottom-item:nth-child(3) {
  color: yellow;
}

.l-header__bottom-list.is-open {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.l-header__bottom-list.is-open .l-header__bottom-item:nth-child(1) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.l-header__bottom-list.is-open .l-header__bottom-item:nth-child(2) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.l-header__bottom-list.is-open .l-header__bottom-item:nth-child(3) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.l-header__bottom-list.is-open .l-header__bottom-item:nth-child(4) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.l-header__bottom-list.is-open .l-header__bottom-item:nth-child(5) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.l-header__bottom-list.is-open .l-header__bottom-item:nth-child(6) {
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

.l-content {
  padding-left: 25px;
  padding-right: 25px;
  border-bottom: 2px solid red;
}

.c-heading-lower {
  text-align: center;
  margin: 50px auto 50px auto;
}
@media screen and (min-width: 640px) {
  .c-heading-lower {
    text-align: center;
    margin: 120px auto 110px auto;
  }
}

.c-heading-lower__jp {
  font-size: 24px;
}
@media screen and (min-width: 640px) {
  .c-heading-lower__jp {
    font-size: 36px;
  }
}

.c-heading-lower__en {
  font-size: 18px;
}

.p-text-terms {
  padding-bottom: 30px;
}
@media screen and (min-width: 640px) {
  .p-text-terms {
    width: 100%;
    max-width: 996px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 50px 150px 50px;
    margin: 0 auto 0 auto;
  }
}

.p-text-terms__lead {
  margin-bottom: 30px;
  font-size: 13px;
}
@media screen and (min-width: 640px) {
  .p-text-terms__lead {
    font-size: 15px;
  }
}

.p-text-terms__section {
  margin-top: 30px;
}

.p-text-terms__title {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media screen and (min-width: 640px) {
  .p-text-terms__title {
    font-size: 18px;
  }
}

.p-text-terms__list {
  display: block;
}

.p-text-terms__item {
  font-size: 13px;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 0 0 30px;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  -webkit-font-kerning: auto;
          font-kerning: auto;
}
.p-text-terms__item span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 640px) {
  .p-text-terms__item {
    font-size: 15px;
  }
}

.p-text-terms__subitem {
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 0 0 36px;
}
.p-text-terms__subitem span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.p-text-terms__text {
  font-size: 13px;
}
@media screen and (min-width: 640px) {
  .p-text-terms__text {
    font-size: 15px;
  }
}

.p-text-terms__signature {
  margin-top: 50px;
  font-size: 13px;
}
@media screen and (min-width: 640px) {
  .p-text-terms__signature {
    font-size: 15px;
  }
}

.l-footer__nav {
  display: block;
  letter-spacing: -0.4em;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 22px 0 22px;
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.l-footer__nav-item {
  display: inline-block;
  letter-spacing: normal;
  margin: 0 16px 24px 16px;
}

.l-footer__nav-anchor {
  text-decoration: none;
  color: #000;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 400;
}
@media screen and (min-width: 640px) {
  .l-footer__nav-anchor {
    font-size: 16px;
  }
}

.page-terms .l-footer__nav-terms {
  color: red;
}

.page-law .l-footer__nav-law {
  color: red;
}

.l-footer__logo {
  background-color: red;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
}
.l-footer__logo img {
  width: 100px;
}

.l-footer__copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}