@charset "UTF-8";
body {
  background-color: #ff008e;
}

@media screen and (min-width: 768px) {
  .copy {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1340px) {
  .copy {
    /* 幅1340px以下の場合の非表示 */
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-height: 660px) {
  .copy {
    /* 高さ660px以下の場合の非表示 */
    display: none;
  }
}

.scroll {
  position: fixed;
  right: 30px;
  font-family: "Noto Serif JP", serif;
  color: #ffffff;
  font-size: 13px;
  flex-direction: column;
  align-items: center;
  display: none;
  z-index: 99;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .scroll {
    display: flex;
    bottom: min(124px, 22%);
  }
}
.scroll.is-up {
  flex-direction: column-reverse;
  cursor: pointer;
}
.scroll.is-up svg {
  transform: rotate(-90deg);
  position: relative;
  top: 0;
  transition: top 0.3s ease;
}
.scroll.is-up:hover svg {
  top: -6px;
  transition: top 0.3s ease;
}
.scroll svg {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}
.scroll.fade {
  opacity: 0;
}

.page-privacy {
  position: relative;
  padding-top: 96px;
  padding-inline: 10px;
  margin-bottom: 408px;
}
@media screen and (max-width: 767px) {
  .page-privacy {
    margin-bottom: 96px;
  }
}
.page-privacy__content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 100px 9px 222px;
  border: 1px solid #0d0d0d;
  outline: 1px solid #0d0d0d;
  outline-offset: -10px;
}
@media screen and (max-width: 767px) {
  .page-privacy__content {
    padding: 42px 9px 100px;
  }
}
.page-privacy__inner {
  max-width: 800px;
  width: 100%;
  margin-inline: auto;
}
.page-privacy__inner > *:first-child {
  margin-top: 0;
}
.page-privacy__inner > h2 {
  display: block;
  padding: 10px 20px;
  font-size: 2.7rem;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05rem;
  color: #ffffff;
  background-color: #0d0d0d;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .page-privacy__inner > h2 {
    padding: 10px 15px;
    margin-top: 30px;
    font-size: 2.3rem;
  }
}
.page-privacy__inner > p {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  color: #0d0d0d;
  padding-inline: 20px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .page-privacy__inner > p {
    margin-top: 30px;
    line-height: 1.7;
    padding-inline: 15px;
  }
}
.page-privacy__inner > p > a {
  display: inline;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2.1;
  letter-spacing: 0.05rem;
  color: #ff008e;
  text-decoration: underline;
  word-break: break-all;
  word-wrap: break-word;
}
.page-privacy__inner > p > a:hover {
  text-decoration: none;
}
.page-privacy__inner > p > a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url("../../images/news/icon-link-external-01.svg");
  background-size: cover;
  margin-inline: 10px;
}
.page-privacy__inner > ol {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 16px;
}
@media screen and (max-width: 767px) {
  .page-privacy__inner > ol {
    margin-top: 30px;
    margin-inline: 10px;
  }
}
.page-privacy__inner > ol li {
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0;
  color: #0d0d0d;
}
.page-privacy__inner > ol li + li {
  margin-top: 10px;
}
.page-privacy__inner > ol li > a {
  display: inline-block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0;
  color: #ff008e;
  text-decoration: underline;
  word-break: break-all;
  word-wrap: break-word;
}
.page-privacy__inner > ol li > a:hover {
  text-decoration: none;
}
.page-privacy__inner > ol li > a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url("../../images/news/icon-link-external-01.svg");
  background-size: cover;
  margin-inline: 10px;
}
.page-privacy__copyright {
  display: none;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  z-index: 10;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 1230px) {
  .page-privacy__copyright {
    display: block;
  }
}
.page-privacy__copyright-text {
  font-size: 1.1rem;
  font-family: "Noto Serif", serif;
  font-weight: 500;
  line-height: 1.36;
  letter-spacing: 0;
  color: #0d0d0d;
}