html {
  scrollbar-gutter: stable;
}

/* 準備中 */
.getting-ready {
  margin: 20rem 0;
  text-align: center;
}

body {
  font-family:
    "Noto Sans JP", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN",
    sans-serif;

  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  font-size: var(--font-size-md);
}

main,
body {
  background-color: var(--color-white);
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}
ul {
  padding: 0;
}
li {
  list-style: none;
}

p {
  text-align: left;
}

a {
  text-decoration: none;
  color: var(--color-text-primary);
  cursor: pointer;
}

a:hover {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}

body {
  overflow-x: hidden;
}

.br-sp {
  display: none;
  @media (max-width: 768px) {
    display: block;
  }
}

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

p {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-loose);
  letter-spacing: 0.01em;

  @media (max-width: 768px) {
    font-size: var(--font-size-md);
    line-height: var(--line-height-loose-plus);
  }
}

/* ------------------------------
  セクションタイトル（全ページ共通）
------------------------------ */

.section__title-wrap-top {
  padding-left: 4rem;

  @media (max-width: 768px) {
    padding-left: 1.125rem;
  }
}

.section__title {
  display: flex;
  align-items: center;
  font-size: clamp(1.25rem, 0.467rem + 1.53vw, 2.3rem);
  font-weight: 400;
  border-bottom: 1px solid var(--color-black);
  line-height: var(--line-height-normal);
  color: var(--color-black);
  padding: 0.25em;
}

.section__title::before {
  content: "";
  background-image: url(../../images/r2026/common/icon-1.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 1rem;
  width: 2em;
  height: 2em;
}

.section__body--top {
  padding: 2rem;

  @media (max-width: 768px) {
    padding: 1.125rem;
  }
}

/* ------------------------------
  汎用モーション
------------------------------ */

@media (prefers-reduced-motion: no-preference) {
  body.js-motion-ready .js-motion-fade-up {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition:
      opacity 0.7s ease,
      transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--motion-delay, 0ms);
    will-change: opacity, transform;
  }

  body.js-motion-ready .js-motion-fade-up.is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .js-motion-hover-lift {
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease;
    will-change: transform;
  }

  @media (hover: hover) {
    .js-motion-hover-lift:hover,
    .js-motion-hover-lift:focus-visible {
      transform: translateY(-4px);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-motion-fade-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
