@charset "utf-8";
/* CSS Document */
/*------------------------------------------------------------------------------------------------
cookie
------------------------------------------------------------------------------------------------*/
  /* ポップアップ全体の背景（白） */
  .cc-window.cc-banner {
    background-color: #ffffff !important;
    color: #333333 !important;
    padding: 15px 30px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important; /* 浮いている感を出すために影を下向きに調整 */
    border: 1px solid #eee !important;
    border-radius: 8px !important; /* 角を少し丸めると綺麗です */

    width: 90% !important;        /* スマホなどでは画面の90%の幅で縮む */
    max-width: 1000px !important; /* 画面が広くても1000px以上には広がらない */
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto 20px auto !important; /* 左右中央寄せ、下に20pxの余白 */
    bottom: 0 !important;

    /* PC表示でテキストとボタンを横並びにするための設定 */
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
	
  }

.cc-window.cc-floating{
	width: 90% !important;        /* スマホなどでは画面の90%の幅で縮む */
    max-width: 1000px !important; /* 画面が広くても1000px以上には広がらない */
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto 20px auto !important; /* 左右中央寄せ、下に20pxの余白 */
    bottom: 0 !important;
}
  /* メッセージ本文 */
  .cc-message {
    line-height: 1.6 !important;
    font-size: 0.9em !important;
    margin-bottom: 0 !important;
  }
  /* ボタン配置エリア */
  .cc-compliance {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
  }
  /* ボタン共通設定 */
  .cc-btn {
    padding: 8px 25px !important;
    font-size: 0.95em !important;
    font-weight: bold !important;
    border-radius: 6px !important;
    cursor: pointer;
    transition: 0.3s;
    min-width: 140px;
    text-align: center;
  }
  /* 「すべて同意」ボタン（背景グリーン） */
  .cc-allow {
    background-color: #34b9a0 !important;
    color: #ffffff !important;
    border: none !important;
  }
  .cc-allow:hover {
    background-color: #000000 !important; /* ホバーで黒 */
  }
  /* 「すべて拒否」ボタン（背景グレー） */
  .cc-deny {
    background-color: #f0f0f0 !important;
    color: #444444 !important;
    border: 1px solid #ddd !important;
  }
  .cc-deny:hover {
    background-color: #e2e2e2 !important;
  }
  /* リンク（Cookieポリシー） */
  .cc-link {
    color: #34b9a0 !important;
    text-decoration: underline !important;
    opacity: 0.8;
  }
  .cc-link:hover {
    opacity: 1;
  }
