@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Anton&family=Noto+Sans+JP:wght@100..900&display=swap");
:root {
  --color-primary: #00053A;
  --color-white: #FFFFFF;
  --font-jp: "Noto Sans JP", sans-serif;
  --font-en: "Anton", sans-serif;
  --content-width: 980px;
}

/* ボックスサイズ初期化 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* html / body 初期化 */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #000;
  background: #fff;
  margin: 0;
  padding: 0;
}

/* 各要素の余白をリセット */
body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, li,
figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

/* テキスト要素のフォント系リセット */
address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

/* リストのデフォルトスタイルを削除 */
ul, ol {
  list-style: none;
}

/* テーブルの見た目を初期化 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* フォーム要素をフラットに＆継承設定 */
input,
textarea,
select,
button {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

/* テキストエリアは縦リサイズ可 */
textarea {
  resize: vertical;
  display: block;
}

/* チェックボックスやラジオボタンはデザイン前提で非表示に */
input[type=checkbox],
input[type=radio] {
  display: none;
}

/* 操作可能な要素にカーソル */
button,
label,
select,
input[type=submit],
input[type=button] {
  cursor: pointer;
}

/* select の三角形を非表示（モダンブラウザ） */
select::-ms-expand {
  display: none;
}

/* aタグの初期スタイルを削除 */
a {
  text-decoration: none;
  color: inherit;
}

/* imgタグの余白・幅の制御 */
img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SVGもblockで扱いやすく */
svg {
  display: block;
}

/* mainタグをblockに（IE対応不要なら削除してOK） */
main {
  display: block;
}

/* なめらかなフォント表示（Mac用） */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--color-primary);
  font-family: var(--font-jp);
  font-size: 24px;
  color: var(--color-white);
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 18px;
  }
}
body.is-fixed {
  position: fixed;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.section-title {
  font-family: var(--font-en);
  text-transform: uppercase;
  font-weight: 400;
  font-size: 120px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .section-title {
    font-size: 100px;
  }
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 56px;
  }
}

.page {
  padding-top: 90px;
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  border-bottom: 1px solid rgba(199, 199, 199, 0.5);
}
@media screen and (max-width: 768px) {
  .page {
    padding-top: 70px;
  }
}

.page__head {
  padding-block: 80px;
}
@media screen and (max-width: 768px) {
  .page__head {
    padding-block: 56px;
  }
}

.page__title {
  max-width: 900px;
  margin-inline: auto;
  border-bottom: 1px solid rgba(199, 199, 199, 0.5);
  text-align: center;
  color: var(--color-primary);
}

.page__title-text {
  display: inline-block;
  padding: 6px 12px;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-primary);
}
@media screen and (max-width: 768px) {
  .page__title-text {
    font-size: 24px;
  }
}

.header {
  background-color: var(--color-white);
  height: 90px;
  width: 100%;
  position: fixed;
  inset: 0;
  z-index: 100;
  transition: background-color 0.3s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 768px) {
  .header {
    height: 70px;
  }
}

.header__inner {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  width: 123px;
  transition: opacity 0.5s;
}
@media (any-hover: hover) {
  .header__logo:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 90px;
  }
}

@media screen and (max-width: 1350px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.header__nav-link {
  display: inline-block;
  padding: 8px;
  font-family: var(--font-en);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: var(--color-primary);
  position: relative;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform 0.25s, width 0.25s, height 0.25s;
}
@media (any-hover: hover) {
  .header__nav-link:hover::after {
    transform: scaleX(1);
  }
}

.header__drawer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.header__drawer::after {
  content: "Menu";
  font-family: var(--font-en);
  font-size: 20px;
  text-transform: uppercase;
  color: var(--color-primary);
}
.header__drawer.is-checked::after {
  content: "Close";
}
.header__drawer.is-checked .header__drawer-bar:nth-child(1) {
  top: 7px;
  transform: rotate(15deg);
}
.header__drawer.is-checked .header__drawer-bar:nth-child(2) {
  display: none;
}
.header__drawer.is-checked .header__drawer-bar:nth-child(3) {
  top: 7px;
  transform: rotate(-15deg);
}
@media screen and (max-width: 768px) {
  .header__drawer::after {
    font-size: 18px;
  }
}

.header__drawer-icon {
  width: 42px;
  height: 14px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header__drawer-icon {
    width: 38px;
  }
}

.header__drawer-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-primary);
  transition: transform 0.3s ease;
}
.header__drawer-bar:nth-child(1) {
  top: 0;
}
.header__drawer-bar:nth-child(2) {
  top: 6px;
}
.header__drawer-bar:nth-child(3) {
  top: 13px;
}

.header__drawer-nav {
  width: 550px;
  height: 100vh;
  background-color: var(--color-white);
  position: fixed;
  top: 0px;
  right: 0;
  transform: translateX(100%);
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  transition: transform 0.3s ease;
}
.header__drawer-nav.is-checked {
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .header__drawer-nav {
    width: 390px;
    padding-inline: 40px;
  }
}

.header__drawer-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 1023px) {
  .header__drawer-list {
    gap: 24px;
  }
}

.header__drawer-link {
  font-family: var(--font-en);
  font-size: 24px;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: var(--color-primary);
  position: relative;
}
.header__drawer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform 0.25s, width 0.25s, height 0.25s;
}
@media (any-hover: hover) {
  .header__drawer-link:hover::after {
    transform: scaleX(1);
  }
}
@media screen and (max-width: 1023px) {
  .header__drawer-link {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .header__drawer-link {
    font-size: 18px;
  }
}

.header__drawer-sns {
  width: 40px;
  transition: opacity 0.5s;
}
@media (any-hover: hover) {
  .header__drawer-sns:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 1023px) {
  .header__drawer-sns {
    width: 30px;
  }
}

.footer {
  padding-block: 46px 20px;
  background-color: var(--color-white);
  color: var(--color-primary);
}

.footer__content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__content {
    flex-direction: column;
    gap: 40px;
  }
}

.footer__head {
  width: 13%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .footer__head {
    width: 100%;
    flex-direction: row;
    gap: 48px;
  }
}

.footer__logo {
  max-width: 123px;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    max-width: 100px;
  }
}
.footer__logo a {
  transition: opacity 0.5s;
}
@media (any-hover: hover) {
  .footer__logo a:hover {
    opacity: 0.8;
  }
}

.footer__sns {
  width: 45px;
  transition: opacity 0.5s;
}
@media (any-hover: hover) {
  .footer__sns:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 768px) {
  .footer__sns {
    width: 30px;
  }
}

.footer__nav-list {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  grid-template-rows: repeat(3, auto);
  column-gap: 40px;
  row-gap: 12px;
}
@media screen and (max-width: 768px) {
  .footer__nav-list {
    grid-template-columns: repeat(1, max-content);
    grid-template-rows: repeat(1, auto);
  }
}

.footer__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 700;
  transition: opacity 0.5s;
}
.footer__nav-link::before {
  content: "-";
}
@media (any-hover: hover) {
  .footer__nav-link:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav-link {
    font-size: 16px;
  }
}

.footer__copyright {
  margin-top: 54px;
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 10px;
  }
}

.inner {
  padding-inline: 40px;
  margin-inline: auto;
  width: 100%;
  max-width: 1440px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-inline: 20px;
  }
}

.inner--content {
  max-width: calc(var(--content-width) + 80px);
  padding-inline: 40px;
  margin-inline: auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .inner--content {
    padding-inline: 20px;
  }
}

.fv {
  min-height: 100vh;
  padding-top: 90px;
  background: url("../images/fv.webp") no-repeat center/cover;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #1b2538;
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .fv {
    padding-top: 70px;
  }
}

.fv__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  flex: 1;
  display: grid;
  place-items: center;
}

.fv__lead {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .fv__lead {
    width: 100%;
  }
}

.fv__deco {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0.5;
}

.fv__deco-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.fv__deco-text {
  display: block;
  flex-shrink: 0;
  font-size: 260px;
  text-transform: uppercase;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .fv__deco-text {
    font-size: 160px;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.about {
  padding-top: 80px;
}

.about__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about__message {
  font-size: 20px;
  line-height: 2.4;
}
@media screen and (max-width: 768px) {
  .about__message {
    font-size: 18px;
  }
}

.member {
  padding-block: 160px 48px;
}
@media screen and (max-width: 768px) {
  .member {
    padding-block: 120px 40px;
  }
}

.member__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .member__content {
    gap: 48px;
  }
}

.member__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

.member__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.member__name,
.member__data {
  line-height: 1.4;
}

.member__instagram {
  width: 45px;
  transition: opacity 0.5s;
}
@media (any-hover: hover) {
  .member__instagram:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 768px) {
  .member__instagram {
    width: 30px;
  }
}

.feature {
  display: flex;
  flex-direction: column;
}

.feature-card {
  width: 100%;
  padding-block: 234px;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #1b2538;
  opacity: 0.5;
}
@media (any-hover: hover) {
  .feature-card:hover .feature-card__image {
    transform: scale(1.05);
  }
}
@media screen and (max-width: 1023px) {
  .feature-card {
    padding-block: 160px;
  }
}
@media screen and (max-width: 768px) {
  .feature-card {
    height: 278px;
    padding-block: 40px;
  }
}

.feature-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 0.6s ease;
}

.feature-card__title {
  position: relative;
  z-index: 5;
  font-family: var(--font-en);
  text-transform: uppercase;
  font-size: 120px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .feature-card__title {
    font-size: 100px;
  }
}
@media screen and (max-width: 768px) {
  .feature-card__title {
    font-size: 56px;
  }
}

.partner {
  padding-block: 100px 80px;
  background-color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .partner {
    padding-block: 80px 40px;
  }
}

.partner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.partner__title {
  color: var(--color-primary);
}

.partner__list {
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .partner__list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 32px;
  }
}

.partner__card {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}

.partner__logo {
  width: 100%;
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  background-color: var(--color-white);
  overflow: hidden;
}
.partner__logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
}
@media screen and (max-width: 500px) {
  .partner__logo {
    aspect-ratio: 1/1;
  }
  .partner__logo img {
    max-width: 90%;
    max-height: 95%;
  }
}

.partner__name {
  font-size: 20px;
  color: var(--color-primary);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .partner__name {
    font-size: 16px;
  }
}

.contact {
  padding-block: 80px;
}

.contact__form {
  margin-top: 110px;
  margin-inline: auto;
  max-width: 610px;
}
@media screen and (max-width: 768px) {
  .contact__form {
    margin-top: 60px;
  }
}

.contact__fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact__label {
  line-height: 1.4;
}

.contact__input,
.contact__textarea {
  width: 100%;
  padding: 8px 12px;
  background-color: var(--color-white);
  border-radius: 10px;
  font-size: 18px;
  color: var(--color-primary);
}
@media screen and (max-width: 768px) {
  .contact__input,
  .contact__textarea {
    font-size: 16px;
  }
}

.contact__input {
  min-height: 48px;
}

.contact__textarea {
  height: 264px;
}

.contact__submit {
  margin-top: 64px;
  display: grid;
  place-items: center;
}

.contact__button {
  width: 50%;
  max-width: 50%;
  min-height: 48px;
  padding: 4px 8px;
  display: inline-block;
  background-color: var(--color-white);
  border-radius: 5px;
  transition: all 0.5s;
  color: var(--color-primary);
  font-weight: 500;
}
@media (any-hover: hover) {
  .contact__button:hover {
    opacity: 0.9;
  }
}

.school {
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 1280px) {
  .school {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}

.school__image {
  width: 49%;
  flex-shrink: 0;
}
@media screen and (max-width: 1280px) {
  .school__image {
    width: 100%;
  }
}

.school__content {
  flex-grow: 1;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .school__content {
    padding: 40px;
  }
}
@media screen and (max-width: 500px) {
  .school__content {
    padding-inline: 20px;
  }
}

.school__title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .school__title {
    font-size: 18px;
  }
}

.school__body {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .school__body {
    gap: 24px;
  }
}

.school__group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .school__group {
    gap: 10px;
  }
}

.school__group-title {
  font-weight: 700;
  text-transform: uppercase;
}

.school__program {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 400;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .school__program {
    font-size: 16px;
  }
}

.school__details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.school__detail {
  display: flex;
  align-items: center;
}

.school__text,
.school__notes {
  font-size: 18px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .school__text,
  .school__notes {
    font-size: 16px;
  }
}

.game {
  padding-block: 40px 120px;
  color: var(--color-primary);
  font-weight: 400;
}
@media screen and (max-width: 1023px) {
  .game {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .game {
    padding-block: 20px 80px;
    font-size: 18px;
  }
}

.game__inner {
  padding-inline: 40px;
  max-width: 1120px;
  margin-inline: auto;
}
.game__inner :where(.wp-block-columns) {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .game__inner {
    padding-inline: 20px;
  }
}

.game__cards {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.game__card {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 1023px) {
  .game__card {
    gap: 16px;
  }
}

.game__card-head {
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  display: flex;
  gap: 16px;
  border-left: 8px solid var(--color-primary);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 4px 4px -4px rgba(0, 0, 0, 0.1);
}

.game__card-title {
  font-weight: 700;
}

.game__card-body {
  padding-inline: 16px;
}
@media screen and (max-width: 768px) {
  .game__card-body {
    padding-inline: 10px;
  }
}

.game__card-meta {
  display: flex;
  flex-direction: column;
}

.game__card-meta-row {
  padding-block: 24px;
  display: flex;
  align-items: start;
  gap: 24px;
  border-bottom: 1px solid rgba(199, 199, 199, 0.5);
}
@media screen and (max-width: 1023px) {
  .game__card-meta-row {
    flex-direction: column;
    gap: 16px;
  }
}

.game__card-meta-label {
  min-width: 240px;
  font-weight: 700;
}

.game__card-meta-value {
  width: 100%;
}

.game__schedule-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .game__schedule-list {
    gap: 16px;
  }
}

.game__schedule-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 500px) {
  .game__schedule-item {
    flex-direction: column;
    gap: 0;
  }
}

.game__schedule-label {
  width: 20%;
  padding: 8px 12px;
  display: grid;
  place-items: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  overflow-wrap: anywhere;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .game__schedule-label {
    width: 25%;
  }
}
@media screen and (max-width: 768px) {
  .game__schedule-label {
    padding-block: 4px;
  }
}
@media screen and (max-width: 500px) {
  .game__schedule-label {
    width: 100%;
    margin-bottom: 8px;
  }
}

.game__schedule-opponent {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .game__schedule-opponent {
    width: 55%;
  }
}
@media screen and (max-width: 500px) {
  .game__schedule-opponent {
    width: 100%;
    padding-inline: 10px;
  }
}

.game__schedule-score {
  width: 20%;
}
@media screen and (max-width: 500px) {
  .game__schedule-score {
    width: 100%;
    padding-inline: 10px;
  }
}

.game__card-other {
  padding-inline: 20px;
  line-height: 1.8;
}

.privacy {
  padding-top: 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .privacy {
    font-size: 14px;
  }
}

.privacy__inner {
  padding-inline: 40px;
  max-width: 980px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .privacy__inner {
    padding-inline: 20px;
  }
}

.privacy__content > * {
  margin-bottom: 24px;
}
.privacy__content h2 {
  margin-block: 80px 40px;
  background-color: var(--color-primary);
  padding: 16px 22px;
  font-size: 22px;
  color: var(--color-white);
  font-weight: 700;
  position: relative;
}
.privacy__content h2::before {
  content: "";
  position: absolute;
  display: block;
  pointer-events: none;
  content: "";
  top: -4px;
  left: 0;
  width: 100%;
  height: calc(100% + 4px);
  box-sizing: content-box;
  border-top: solid 2px var(--color-primary);
  border-bottom: solid 2px var(--color-primary);
}
@media screen and (max-width: 768px) {
  .privacy__content h2 {
    margin-block: 64px 24px;
    padding: 8px 16px;
    font-size: 16px;
  }
}
.privacy__content ol {
  margin-left: 1.5em;
  list-style: decimal;
}

.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

.u-hidden-pc {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-hidden-pc {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .u-hidden-sp {
    display: none;
  }
}

.u-scroll-margin {
  scroll-margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .u-scroll-margin {
    scroll-margin-top: 70px;
  }
}