/* 
─────────────────────────────────────────────────────────────────
Ｓ：モーダル
───────────────────────────────────────────────────────────────── */
.privacy_policy_modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  overflow: hidden; /* 背景のスクロールを無効化 */
  background-color: rgb(0 0 0 / 50%);
}

.modal_contents {
  position: relative;
  width: auto;
  max-width: 80%; /* 横の余白を確保 (左右10%) */
  max-height: 80%; /* 縦の余白を確保 (上下10%) */
  padding: 80px 40px;
  overflow: hidden auto; /* 横スクロールを無効化 */ /* 縦スクロールを有効化 */
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 20%);
}

/* 閉じるボタンのスタイル */
.modal_close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 3rem;
  color: #333;
  cursor: pointer;
}

/* モーダル内のスクロールバーの調整 (必要に応じて追加) */
.modal_contents::-webkit-scrollbar {
  width: 16px;
}

.modal_contents::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 4px;
}

.modal_contents::-webkit-scrollbar-thumb:hover {
  background-color: #aaa;
}

/* 
───────────────────────────────────────────────────────────────── */
.main_provisions_headline {
  max-width: 720px;
  padding: 0 0 16px;
  margin: 0 auto 24px;
  text-align: center;
}

.main_provisions_headline_catch {
  font-size: 1.5rem;
  color: #7f7ff1;
}

.main_provisions_headline_title {
  font-size: 2rem;
}

/* 
───────────────────────────────────────────────────────────────── */
.main_provisions_area {
  max-width: 720px;
  margin: 0 auto;
}

.main_provisions_item {
  display: flex;
  flex-flow: column;
  gap: 40px;
  align-items: flex-start;
  justify-content: flex-start;
}

.main_provisions_list {
  width: 100%;
}

/* 
───────────────────────────────────────────────────────────────── */
.main_provisions_article_title {
  font-size: 1.5rem;
  font-weight: 500;
}

.main_provisions_article_text {
  display: flex;
  flex-flow: column;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 16px 0 0 24px;
}

.main_provisions_article_text_right {
  text-align: right;
}

.main_provisions_article_privacy_item {
  margin: 0 0 0 24px;
}

/* 
───────────────────────────────────────────────────────────────── */
.privacy_policy {
  width: 100%;
  margin: 0 0 8px;
}

.privacy_policy_button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 40px;
  font-size: 0.9rem;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background-color: #00009f;
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* 
───────────────────────────────────────────────────────────────── */

/* 
───────────────────────────────────────────────────────────────── */

/* 
───────────────────────────────────────────────────────────────── */

/* 
─────────────────────────────────────────────────────────────────
横幅800px～
───────────────────────────────────────────────────────────────── */
@media screen and (width >= 888px) {
  /* 
  ─────────────────────────────────────────────────────────────────
  Ｌ：モーダル
  ───────────────────────────────────────────────────────────────── */

  /* 
  ───────────────────────────────────────────────────────────────── */
  .privacy_policy_button:hover {
    background-color: #4c4cec;
  }

  /* 
  ───────────────────────────────────────────────────────────────── */

  /* 
  ───────────────────────────────────────────────────────────────── */

  /* 
  ───────────────────────────────────────────────────────────────── */

  /* 
  ───────────────────────────────────────────────────────────────── */

  /* 
  ───────────────────────────────────────────────────────────────── */

  /*
  ─────────────────────────────────────────────────────────────────
  ここまで
  ───────────────────────────────────────────────────────────────── */
}
