/* アニメーション（シート内要素） */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* フェードイン効果を適用するクラス */
.fade-in {
  animation: fade-in 0.6s ease-in-out;
  opacity: 1;
}

/* 日本語PC */
/* エントリーボタン */
.entry-point {
  margin-bottom: 120px;
}
.entry-point .inner a {
  width: 100%;
}
.entry-point .inner a .button {
  width: 100%;
  padding: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: linear-gradient(to right, #000000 0%, #535557 50%, #323232 100%); */
  background: linear-gradient(to right, #bf1212 0%, #ffe400 50%, #ff0000 100%);
  position: relative;
  border-radius: 12px;
  box-shadow: 1px 1px 4px #ababab;
}
.entry-point .inner a .button .text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.entry-point .inner a .button .text .lg {
  font-size: 60px;
  font-weight: 700;
  color: #FFF;
}
.entry-point .inner a .button .text .sm {
  font-size: 32px;
  font-weight: 700;
  color: #FFF;
}
.entry-point .inner a .button img {
  position: absolute;
  right: 7%;
  top: 40%;
  width: 40px;
}
/* ↓ ボタンのホバーエフェクト ↓ */
.entry-point .inner a .button { /* グラデーションが動くように */
  transition: background-position 0.4s ease, box-shadow 0.4s ease;
  background-size: 200% 100%;
  background-position: left;
}
.entry-point .inner a .button:hover { /* ホバー時にグラデーションが右に動く */
  background-position: right;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
.entry-point .inner a .button .text .lg,
.entry-point .inner a .button .text .sm { /* ホバー時のテキストのカラー変化 */
  transition: color 0.4s ease;
}
.entry-point .inner a .button:hover .text .lg,
.entry-point .inner a .button:hover .text .sm {
  color: #c8d4ff;
}
.entry-point .inner a .button img { /* 右矢印アイコンのホバー時スライドアニメーション */
  transition: transform 0.4s ease;
}
.entry-point .inner a .button:hover img {  /* ホバー時にアイコンを右にスライド */
  transform: translateX(10px);
}
/* ↑ ボタンのホバーエフェクト ↑ */

/* 英語PC */
.en-serif {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400!important;
}

/* レスポンシブ：横幅768px以下 */
@media screen and (max-width: 768px) {
  /* エントリーボタン */
  /* 日本語SP */
  .entry-point {
    margin-bottom: 68px;
  }
  .entry-point .inner a {
    width: 100%;
  }
  .entry-point .inner a .button {
    padding: 18px;
    border-radius: 6px;
  }
  .entry-point .inner a .button .text .lg {
    font-size: 32px;
    line-height: 44px;
  }
  .entry-point .inner a .button .text .sm {
    font-size: 16px;
    line-height: 24px;
  }
  .entry-point .inner a .button img {
    right: 6%;
    top: 40%;
    width: 26px;
  }

  /* 英語SP */
  .en-serif {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400!important;
  }
}



/* 追従エントリーボタン 20250128 */
.floating-btn {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1100;
  display: none; /* 初期は非表示 */
  align-items: center;
  justify-content: center;
  background-color: rgb(0, 0, 0, 0.1);
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 4px;
  margin: 8px;
}
/* バツボタン */
.floating-btn .close-btn {
  /* position: absolute;
  top: -10px;
  right: 172px;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 12px;
  cursor: pointer;
  font-weight: 900;
  text-align: center; */

  position: absolute;
  top: -10px;
  /* right: 172px; */
  right: 94%;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;

  /* 中央寄せ */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0; /* 不要な余白を削除 */
  line-height: 1; /* 行間の影響を防ぐ */
}

/* スマホ時にのみ表示 */
@media (max-width: 768px) {
  .floating-btn {
    display: flex;
    width: 42%;
  }
}


