@charset "UTF-8";
/**
 * ▼ メディアクエリ用ブレイクポイント
 *
 * - $bp-sp:
 *   スマホの上限幅（例: ~767px）
 * - $bp-tab:
 *   タブレットの上限幅（例: ~1023px）
 */
/**
 * ▼ メディアクエリミックスイン
 *
 * - media-pc:
 *   PC向けのスタイルを適用するためのメディアクエリ。
 * - media-tab:
 *   タブレット向けのスタイルを適用するためのメディアクエリ。
 * - media-sp:
 *   スマホ向けのスタイルを適用するためのメディアクエリ。
 */
/**
 * ▼ fluidスケーリングに関する設定
 *
 * - $fluid-vw-min / $fluid-vw-max:
 *   clamp()で滑らかに変化させる際のビューポート最小・最大値。
 *   → 通常はスマホ〜PCの幅（375〜1280pxなど）を想定。
 */
/**
 * ▼ fluid()
 *
 * - clamp()を生成するSass関数。
 * - 引数に最小サイズ・最大サイズを渡すことで、
 *   指定したビューポート範囲内で値を滑らかに変化させる。
 *
 * 使用例:
 *   font-size: fluid(14, 20);
 */
/**
 * @function vw-○○()
 * 指定されたサイズを基準に、ビューポート幅に応じたvw単位の値を計算します。
 * 
 * @param {Number} $size - 基準となるサイズ（ピクセル単位）。
 * @param {Number} $viewport - ビューポートの幅（デフォルトは1920px, 768px, 375px）。
 * @return {String} - 計算されたvw単位の値。
 */
.content.content--prediction .prediction__wrapper {
  margin-bottom: 8rem;
}
.content.content--prediction .prediction__wrapper:last-child {
  margin-bottom: 0;
}
.content.content--prediction .prediction__heading {
  margin-bottom: 6.4rem;
}
.content.content--prediction .prediction__desc {
  font-size: 1.6rem;
  line-height: 175%;
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  .content.content--prediction .prediction__desc {
    font-size: 1.4rem;
    margin-bottom: 6.4rem;
  }
}
.content.content--prediction .prediction__link {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 8rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content.content--prediction .prediction__link {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .content.content--prediction .prediction__link {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 6.4rem;
  }
}
.content.content--prediction .prediction__link a {
  display: block;
  color: #333;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 150%;
  padding: 1rem 1.4rem;
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  position: relative;
  transition: 0.25s;
}
@media (max-width: 767px) {
  .content.content--prediction .prediction__link a {
    font-size: 1.4rem;
  }
}
.content.content--prediction .prediction__link a:hover {
  background: #E2F0FF;
  transition: 0.25s;
}
.content.content--prediction .prediction__link a:hover::after {
  transform: translateY(0) rotate(135deg);
  transition: all 0.3s;
}
.content.content--prediction .prediction__link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5rem;
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
  transform: translateY(-50%) rotate(135deg);
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .content.content--prediction .prediction__link a::after {
    right: 1rem;
  }
}
.content.content--prediction .prediction__link a .num {
  width: 8rem;
  color: var(--color-primary);
  display: inline-block;
}
@media (max-width: 767px) {
  .content.content--prediction .prediction__link a .num {
    display: none;
  }
}
.content.content--prediction .prediction__section {
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  .content.content--prediction .prediction__section {
    margin-bottom: 6.4rem;
  }
}
.content.content--prediction .prediction__name {
  color: #000;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 175%;
  margin-bottom: 2rem;
  text-align: center;
}
@media (max-width: 767px) {
  .content.content--prediction .prediction__name {
    font-size: 2rem;
  }
}
.content.content--prediction .prediction .btn-wrap {
  gap: 2rem;
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .content.content--prediction .prediction .btn-wrap {
    gap: 1.6rem;
    margin-top: 6rem;
  }
}
.content.content--prediction .prediction .btn-wrap .btn-A {
  width: calc((100% - 2rem) / 2);
}
@media (max-width: 767px) {
  .content.content--prediction .prediction .btn-wrap .btn-A {
    width: 100%;
  }
}
.content.content--prediction .prediction__img-wrapper {
  display: flex;
  gap: 4rem;
}
@media (max-width: 767px) {
  .content.content--prediction .prediction__img-wrapper {
    flex-direction: column;
    gap: 1rem;
  }
}
.content.content--prediction .prediction__img-legend {
  width: 100%;
}
.content.content--prediction .prediction__img-legend img {
  width: 100%;
}
.content.content--prediction .prediction__img-left {
  width: calc(100% - 430px - 4rem);
  position: relative;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content.content--prediction .prediction__img-left {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .content.content--prediction .prediction__img-left {
    width: 100%;
  }
}
.content.content--prediction .prediction__img-left img,
.content.content--prediction .prediction__img-left picture {
  width: 100%;
}
.content.content--prediction .prediction__img-right {
  width: 430px;
  height: 530px;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content.content--prediction .prediction__img-right {
    width: 50%;
    height: auto;
  }
}
@media (max-width: 767px) {
  .content.content--prediction .prediction__img-right {
    width: 100%;
    height: auto;
  }
}
.content.content--prediction .prediction__img-right iframe {
  width: 100%;
  aspect-ratio: 430/530;
  border: none;
}
.content.content--prediction .prediction__img-right img,
.content.content--prediction .prediction__img-right picture {
  width: 100%;
}
.content.content--prediction .prediction__btn {
  margin-top: 3.2rem;
}
.content.content--prediction .prediction__btn .btn-A {
  width: 36rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .content.content--prediction .prediction__btn .btn-A {
    width: 95%;
  }
}
.content.content--prediction .prediction #section01,
.content.content--prediction .prediction #section02,
.content.content--prediction .prediction #section03,
.content.content--prediction .prediction #section04,
.content.content--prediction .prediction #section05,
.content.content--prediction .prediction #section06,
.content.content--prediction .prediction #section07,
.content.content--prediction .prediction #section08,
.content.content--prediction .prediction #section09,
.content.content--prediction .prediction #section10,
.content.content--prediction .prediction #section11,
.content.content--prediction .prediction #section12,
.content.content--prediction .prediction #section13 {
  scroll-margin-top: 13rem;
}
@media (max-width: 767px) {
  .content.content--prediction .prediction #section01,
  .content.content--prediction .prediction #section02,
  .content.content--prediction .prediction #section03,
  .content.content--prediction .prediction #section04,
  .content.content--prediction .prediction #section05,
  .content.content--prediction .prediction #section06,
  .content.content--prediction .prediction #section07,
  .content.content--prediction .prediction #section08,
  .content.content--prediction .prediction #section09,
  .content.content--prediction .prediction #section10,
  .content.content--prediction .prediction #section11,
  .content.content--prediction .prediction #section12,
  .content.content--prediction .prediction #section13 {
    scroll-margin-top: 7rem;
  }
}
.content.content--prediction .prediction #section-select {
  scroll-margin-top: 20rem;
}
@media (max-width: 767px) {
  .content.content--prediction .prediction #section-select {
    scroll-margin-top: 10rem;
  }
}
