body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #26292b;
  letter-spacing: 0;
}
a {
  transition: all 0.4s;
}
a:hover {
  opacity: 0.8;
}

/*----------
 utility
 ------- */

.inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.inner-md {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.inner-sm {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 1000px) {
  .inner {
    padding: 0 16px;
  }
  .inner-md {
    padding: 0 16px;
  }

  .inner-sm {
    padding: 0 16px;
  }
}

.pc-only {
  display: block;
}
.sp-only {
  display: none;
}

@media screen and (max-width: 1000px) {
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: block !important;
  }
}

/*----------
 sub-page-heading
 ------- */
.sub-page-heading {
  background-image: url(../../img/common/sub-page-heading-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  height: 360px;
  padding-top: 165px;
}

.sub-page-heading-breadcrumb {
  display: flex;
  gap: 10px;
}
.sub-page-heading-breadcrumb a,
.sub-page-heading-breadcrumb span {
  color: #727272;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.sub-page-heading-title {
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-top: 25px;
}

@media screen and (max-width: 1000px) {
  .sub-page-heading {
    /* height: 300px; */
    height: 100%;
    padding-top: 100px;
    padding-bottom: 20px;
  }

  .sub-page-heading-breadcrumb {
    gap: 8px;
  }
  .sub-page-heading-breadcrumb a,
  .sub-page-heading-breadcrumb span {
    font-size: 11px;
  }

  .sub-page-heading-breadcrumb .last-span {
    flex: 1;
    min-width: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .sub-page-heading-breadcrumb span.last-span {
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    width: 100%; /* 幅を確定させる */
  }

  .sub-page-heading-title {
    font-size: 28px;
    margin-top: 24px;
  }
}

.login-btn a {
  max-width: 188px;
  margin: 0 auto;
  margin-top: 20px;
}

.form-privacy-policy-title,
.form-notice-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #26292b;
  margin-top: 30px;
}

.form-privacy-policy-content,
.form-notice-content {
  max-height: 300px;
  overflow: scroll;
  background-color: #fff;
  padding: 20px;
}

.form-privacy-policy-content-title {
  font-weight: bold;
  font-size: 22px;
  margin-top: 20px;
  margin-bottom: 16px;
}

.form-privacy-policy-content-subtitle {
  font-weight: bold;
  font-size: 18px;
  margin: 16px 0 8px;
}

.form-privacy-policy-content ul {
  margin: 10px 0;
}
.form-privacy-policy-content ul li {
  line-height: 1.8;
  padding-left: 1em;
  text-indent: -1em;
}

.form-notice-content p {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.8;
}
