@charset "UTF-8";
/* ① 色をまとめて定義（必要ならここだけ差し替え） */
:root {
  --scroll-track: #000000; /* 溝の色 */
  --scroll-thumb: #0e2f51; /* つまみの色 */
  --scroll-thumb-hover: #0e2f51;
}

/* ② 本体 */
html {
  scroll-behavior: smooth;
  overflow-y: auto;
  scrollbar-gutter: stable; /* レイアウトのガタつき防止 */
  scrollbar-width: thin; /* Firefox: 太さ */
  scrollbar-color: var(--scroll-thumb) var(--scroll-track); /* Firefox: つまみ / 溝 */
}

/* ③ Chrome/Edge/Safari 用（太さと色） */
html::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

html::-webkit-scrollbar-track {
  background: var(--scroll-track);
}

html::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb);
  border-radius: 0px;
  border: 0px solid var(--scroll-track);
}

html:hover::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-hover);
}

body {
  font-family: "Crimson Text", serif;
  color: #ffffff;
  min-width: 375px;
}

.container {
  margin: 0 auto;
}

@media (min-width: 1024px) {
  /* lg: */
  .container {
    max-width: 844px;
  }
}
@media (min-width: 1280px) {
  /* xl: */
  .container {
    max-width: 1056px;
  }
}
@media (min-width: 1536px) {
  /* 2xl:*/
  .container {
    max-width: 1320px;
  }
}
a:hover,
button:hover {
  opacity: 0.6;
  transition-property: opacity;
  transition-duration: 300ms;
}

.loader {
  height: 4px;
  width: 130px;
  --c: no-repeat linear-gradient(#0f2f41 0 0);
  background: var(--c), var(--c), #23485c;
  background-size: 60% 100%;
  animation: l16 3s infinite;
}

@keyframes l16 {
  0% {
    background-position: -150% 0, -150% 0;
  }
  66% {
    background-position: 250% 0, -150% 0;
  }
  100% {
    background-position: 250% 0, 250% 0;
  }
}
#slide2 .splide__arrow svg {
  display: none;
}

#slide2 .splide__arrow {
  width: 24px;
  height: 24px;
  background-size: contain;
  background-color: initial !important;
  background-repeat: no-repeat !important;
  border-radius: 0% !important;
}

@media (min-width: 1024px) {
  #slide2 .splide__arrow {
    width: 56px;
    height: 56px;
  }
}
/* 初期は少し下＆非表示 */
.fade-from-bottom {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
  /* 任意の遅延を渡せるように */
  transition-delay: var(--fade-delay, 0s);
}

/* 表示状態 */
.fade-from-bottom.is-in {
  opacity: 1;
  transform: none;
}

/* モーション配慮：常に表示 */
@media (prefers-reduced-motion: reduce) {
  .fade-from-bottom {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
#news-detail h2 {
  font-size: 1.5rem;
  margin-top: 24px;
  margin-bottom: 16px;
  display: block;
}

#news-detail h3 {
  font-size: 1.4rem;
  margin-top: 24px;
  margin-bottom: 16px;
  display: block;
}

#news-detail h4 {
  font-size: 1.3rem;
  margin-top: 24px;
  margin-bottom: 16px;
  display: block;
}

#news-detail h5 {
  font-size: 1.2rem;
  margin-top: 24px;
  margin-bottom: 16px;
  display: block;
}

#news-detail h6 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 16px;
  display: block;
}

#news-detail p {
  margin-bottom: 16px;
}

#news-detail a {
  text-decoration: underline;
}

#news-detail li {
  list-style: disc;
}

#news-detail ul {
  margin-left: 24px;
}

#news-detail blockquote {
  font-style: italic;
  padding-left: 24px;
}

/*# sourceMappingURL=style.css.map */
