@charset "UTF-8";

/* baystars.co.jp /privacy/ の本文書式に揃えたスタイル */

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "MS Pゴシック", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #262626;
  background: #fff;
}

a {
  color: #2C67C9;
  text-decoration: underline;
}
a:hover {
  opacity: 0.7;
}

/* タイトルバナー（元ページの banner--title 相当） */
.banner {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #002f6c 0%, #004091 50%, #1565c0 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
}
.banner h1 {
  margin: 0;
  font-size: 24px;
  color: #fff;
  letter-spacing: 0.05em;
}

/* 戻るボタン領域 */
.box--back {
  display: block;
  margin: 30px 40px;
}
.box--back .button--back {
  display: inline-block;
  width: 110px;
  padding: 4px 0;
  color: #004091;
  border: 1px solid #004091;
  background: transparent;
  font-size: 11px;
  text-align: center;
  text-decoration: none;
}
.box--back .button--back:hover {
  background: #004091;
  color: #fff;
  opacity: 1;
}

/* 罫線 */
.line--bottom {
  border-bottom: 1px solid #e0e0e0;
}

/* 中央寄せコンテナ（元: container--small は 800px 固定） */
.container--small {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 施行前ポリシー案内ボックス */
.notice {
  padding: 24px 28px;
  background: #f0f4fa;
  border-left: 4px solid #004091;
}
.notice p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.8;
}
.notice .mb0 {
  margin: 0;
}
.notice__date {
  color: #f75239;
  font-weight: bold;
  font-size: 13px !important;
}

/* 余白ユーティリティ（元と同名で踏襲） */
.mb0  { margin-bottom: 0 !important; }
.mb10 { margin-bottom: 10px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb60 { margin-bottom: 60px !important; }
.mb110 { margin-bottom: 110px !important; }
.mt0  { margin-top: 0 !important; }
.mt20 { margin-top: 20px !important; }
.mt50 { margin-top: 50px !important; }
.mt60 { margin-top: 60px !important; }

/* テキスト系 */
.text--right { text-align: right; }
.text--center { text-align: center; }
.text__color--accent { color: #f75239; }

.text--content {
  color: #4d4d4d;
  font-size: 14px;
}
.text--content p {
  margin: 0 0 10px;
}

/* 見出し（heading） */
h2.heading,
h3.heading,
h4.heading {
  color: #262626;
  line-height: 1;
}

/* H2: 灰色背景 + 青の左ボーダー */
h2.heading {
  margin: 80px 0 30px;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: bold;
  background-color: #f0f0f0;
  border-left: 4px solid #004091;
  line-height: 1.4;
}

/* H3: 白背景 + 下グレーボーダー + 青の左ボーダー */
h3.heading {
  margin: 50px 0 20px;
  padding: 15px 25px;
  font-size: 18px;
  font-weight: bold;
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  border-left: 4px solid #004091;
  line-height: 1.4;
}

/* H4: bold のみ */
h4.heading {
  margin: 50px 0 20px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
}

/* H5（小見出し相当・項目見出し） */
h5.heading {
  margin: 24px 0 8px;
  font-size: 14px;
  font-weight: bold;
  color: #262626;
  line-height: 1.4;
}

/* 段落 */
p {
  margin: 0 0 10px;
}

/* リスト（newspoint） */
ul.newspoint {
  list-style-type: none;
  margin: 0 0 10px 12px;
  padding: 0;
}
ul.newspoint li {
  text-align: justify;
  display: block;
  margin: 4px 0;
}
ul.newspoint li:before {
  content: '・';
  margin-left: -12px;
}

/* ボタン（青塗り） */
.button {
  display: inline-block;
  min-width: 200px;
  padding: 14px 40px;
  background-color: #004091;
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.button:hover {
  opacity: 0.85;
}

/* 変更箇所マーカー */
.changed {
  background: linear-gradient(transparent 60%, rgba(255, 210, 58, 0.55) 60%);
  padding: 0 2px;
}
/* セクション全体が変更されている場合のブロック */
.changed-block {
  background: rgba(255, 210, 58, 0.18);
  border-left: 4px solid #ffd23a;
  padding: 16px 20px;
  margin: 0 0 24px;
}
.section-changed::after {
  content: "変更";
  display: inline-block;
  background: #f75239;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 2px;
  margin-left: 8px;
  vertical-align: middle;
  letter-spacing: 0.05em;
  line-height: 1;
}

/* フッター（公式 baystars.co.jp に合わせて #262626 ベース） */
.footer {
  width: 100%;
  position: relative;
  padding: 44px 0 47px 0;
  background-color: #262626;
  text-align: center;
}
.footer a {
  color: #fff;
}
.footer a:hover {
  opacity: 0.5;
}
.footer__nav {
  margin: 0 0 24px;
  font-size: 14px;
}
.footer__nav a {
  padding: 0 12px;
}
.footer__copyright {
  margin: 0;
  color: #a6a6a6;
  font-size: 11px;
  font-family: "Brutal Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* レスポンシブ */
@media (max-width: 720px) {
  .banner {
    height: 120px;
  }
  .banner h1 {
    font-size: 20px;
  }
  .container--small {
    padding: 0 16px;
  }
  .box--back {
    margin: 20px 16px;
  }
  h2.heading {
    margin-top: 50px;
    padding: 16px 18px;
    font-size: 16px;
  }
  h3.heading {
    margin-top: 36px;
    padding: 12px 18px;
    font-size: 16px;
  }
  h4.heading {
    margin-top: 36px;
  }
}
