@charset "UTF-8";
/* ========== Document Setting ========== */
/* ========== Font Family ========== */
/* ========== Color ========== */
/* ======================================================================
メディア・コンテナークエリ
====================================================================== */
/* ======================================================================
アイコン
====================================================================== */
/* ---------- アイコン（外部リンク） ---------- */
/* ---------- アイコン（中央配置） ---------- */
/* ---------- アイコン（右向き） ---------- */
/* ======================================================================
テキスト
====================================================================== */
/* ---------- テキスト設定（ショートハンド） ---------- */
/* ---------- 見出し（large） ---------- */
/* ---------- 見出し（mideum） ---------- */
/* ---------- 見出し（small） ---------- */
/* ---------- テキスト（semibold） ---------- */
/* ---------- テキスト（regular） ---------- */
/* ---------- テキスト（sub） ---------- */
/* ---------- ラベル（semibold） ---------- */
/* ---------- ラベル（regular） ---------- */
/* ---------- 英字テキスト ---------- */
/* ---------- コピーライト ---------- */
/* ---------- Nav Link ---------- */
/* ---------- リンク（テキスト） ---------- */
/* ---------- リンク（アンダーライン） ---------- */
/* ---------- リンク（ボタン） ---------- */
/* ---------- 読み上げ専用テキスト（スクリーンリーダー対応） ---------- */
/* ======================================================================
ユーティリティー
====================================================================== */
/* ---------- インナー（コンテンツ幅の制限あり） ---------- */
/* ---------- インナー（コンテンツ幅の制限なし） ---------- */
/* ---------- インナー（セクション幅） ---------- */
/* ======================================================================
ポジション
====================================================================== */
/* ---------- ポジション設定（ショートハンド） ---------- */
.floating-banner {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  margin: 0 auto;
  text-align: left;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: clamp(18px, 4.8vw, 20px);
  font-weight: 600;
  color: #1A1A1A;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
  vertical-align: middle;
  color: #FFFFFF;
  background: #DEAC18;
  width: 460px;
  height: auto;
  border-radius: 16px;
  padding: 0.8em 0 1em;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 10px 26px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  border: 1px solid #FFFFFF;
  box-sizing: border-box;
}
@media (max-width: 1079px) {
  .floating-banner {
    text-align: center;
    font-size: 14px;
    width: 90%;
    padding: 1em 0;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 100vh;
  }
}
.floating-banner:hover {
  filter: brightness(90%);
}

.floating__button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  text-align: left;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: clamp(14px, 3.733vw, 16px);
  font-weight: 500;
  color: #1A1A1A;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  padding: 4px 1em 6px;
  border: 1px solid #FFFFFF;
  border-radius: 100vh;
}
@media (max-width: 1079px) {
  .floating__button {
    font-size: 12px;
  }
}

.hidden {
  animation: fade 0.2s ease-in-out forwards;
  pointer-events: none;
}

@keyframes fade {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.visible {
  animation: fadeOut 0.2s ease-in-out forwards;
  pointer-events: all;
}

@keyframes fadeOut {
  from {
    opacity: 0;
    bottom: -10px;
  }
  to {
    opacity: 1;
    bottom: 30px;
    @media (max-width: 1079px) {
      bottom: 10px;
    }
  }
}

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