.has-btn .cta-btn img {
  width: 100%;      /* 画像幅いっぱい */
  max-width: none;  /* 上限解除 */
  height: auto;
}.has-btn .cta-btn img {
  width: 100%;      /* 画像幅いっぱい */
  max-width: none;  /* 上限解除 */
  height: auto;
}.has-btn .cta-btn img {
  width: 100%;      /* 画像幅いっぱい */
  max-width: none;  /* 上限解除 */
  height: auto;
}
.has-btn .cta-btn img {
  width: 100%;      /* 画像幅いっぱい */
  max-width: none;  /* 上限解除 */
  height: auto;
}
.has-btn .cta-btn img {
  width: 100%;      /* 画像幅いっぱい */
  max-width: none;  /* 上限解除 */
  height: auto;
}
.has-btn .cta-btn img {
  width: 100%;      /* 画像幅いっぱい */
  max-width: none;  /* 上限解除 */
  height: auto;
}
/* ベース */
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Noto Sans JP", sans-serif;
  line-height: 1.6;
  background: #fff;
}

/* ギャラリー：PCは中央750px、SPは100% */
.gallery {
  max-width: 750px;     /* PC上限 */
  margin: 0 auto;       /* 中央寄せ */
  padding: 0 0;         /* 必要なら上下余白を追加 */
}

/* 各画像ブロック */
.image-block {
  position: relative;    /* 重ね配置の基準 */
  background: #000;
}

/* 画像はブロックで幅100%（SPは自動的に100%） */
.image-block img {
  display: block;
  width: 100%;
  height: auto;
}

.has-btn .cta-btn {
  position: absolute;
  left: 0;
  transform: translate(0, -50%);
  text-decoration: none;
  line-height: 0;
  z-index: 2;
  overflow: hidden; /* 光がはみ出さないように */
}
.has-btn .cta-btn img {
  width: 100%;      /* 画像幅いっぱい */
  max-width: none;  /* 上限解除 */
  height: auto;
}

.has-btn .cta-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 80%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shine 2.5s infinite;
}

@keyframes shine {
  0%   { left: -75%; }
  50%  { left: 125%; }
  100% { left: 125%; }
}



/* ボタン位置（%指定でPC/SP共通） */
.btn-pos-1  .cta-btn { top: 90%; }
.btn-pos-13 .cta-btn { top: 75%; }

/* フッター */
.site-footer {
  margin-top: 40px;
  padding: 20px 16px;
  background: #f8fafc;
  text-align: center;
}
.footer-links {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.8em;
  list-style: none;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}

.footer-links li {
  display: inline;
  position: relative;
}

.footer-links li:not(:last-child)::after {
  content: "│";
  margin-left: 0.8em;
  color: #003366;
}

.footer-links a {
  text-decoration: none;
  color: #003366;
  font-size: 1rem;
}

@media (max-width: 767px) {
  .footer-links a {
    font-size: 0.8rem;
  }
  .footer-links li:not(:last-child)::after {
    margin-left: 0.5em;
  }
}

.copyright {
  display: block;
  color: #555;
  font-size: 14px;
}

/* =========================
   privacy.html 用スタイル
   ========================= */

/* コンテナ（本文） */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 16px;
}

/* タイポグラフィ */
.content h1 {
  font-size: clamp(22px, 3.2vw, 30px);
  line-height: 1.3;
  margin: 0 0 20px;
  font-weight: 700;
}
.content h2 {
  font-size: clamp(18px, 2.6vw, 22px);
  line-height: 1.4;
  margin: 28px 0 12px;
  padding-left: 12px;
  border-left: 4px solid #0a2c62; /* 見出しアクセント */
  font-weight: 700;
}
.content p {
  margin: 0 0 16px;
  font-size: 16px;
}
.content ol,
.content ul {
  margin: 0 0 16px 1.4em; /* ほどよい字下げ */
  padding: 0;
}
.content li {
  margin: 6px 0;
}

/* ネストされた番号付きリストの字下げを少し控えめに */
.content ol ol,
.content ul ul {
  margin-left: 1.2em;
}

/* リンク */
.content a {
  color: #0a2c62;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.content a:hover {
  opacity: 0.85;
}

/* テーブル（将来の追加用の軽い整形） */
.content table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 16px;
  font-size: 15px;
}
.content th,
.content td {
  border: 1px solid #e5e7eb;
  padding: 8px 10px;
  vertical-align: top;
}
.content th {
  background: #f6f8fb;
  font-weight: 600;
}

/* 区切り線（必要に応じて） */
.content hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 24px 0;
}

/* モバイル最適化 */
@media (max-width: 480px) {
  .container { padding: 24px 14px; }
  .content p, .content li { font-size: 15px; }
}

/* 戻るリンク用 */
.back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: #0a2c62;
  font-weight: 600;
  text-decoration: none;
}
.back-link:hover {
  text-decoration: underline;
  opacity: 0.85;
}
