* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
}

/* 通知バー */
.notification-bar {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, #007CD3 0%, #00EEF9FF 100%);
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  z-index: 1001;
  overflow: hidden;
}

.notification-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.notification-bar span {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 4px;
  margin-left: 10px;
}

/* ヘッダー（固定） */
header {
  position: fixed;
  top: 38px;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  z-index: 1000;
  transition: all 0.3s ease;
}

header .logo {
  display: flex; /* 親をflexにする */
  align-items: center; /* 子要素を縦方向中央揃え */
  height: 100%; /* 高さは header-container に合わせる */
}

header .logo-img {
  height: 40px; /* お好みの高さ */
  display: block; /* 画像の余白防止 */
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-cta {
  background: linear-gradient(135deg, #06C755 0%, #4BE182 100%);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(247, 170, 26, 0.3);
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(247, 170, 26, 0.4);
}


.cta-button {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #06C755 0%, #4BE182 100%);
  color: white;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(247, 170, 26, 0.3);
  position: relative;
  overflow: hidden;
  animation: pulse-shadow 2s infinite;
}

@keyframes pulse-shadow {
  0%,
  100% {
    box-shadow: 0 10px 30px rgba(247, 170, 26, 0.3);
  }
  50% {
    box-shadow: 0 10px 40px rgba(247, 170, 26, 0.5);
  }
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(247, 170, 26, 0.4);
}





/* メインコンテンツ */
main {
    margin-top: 80px;
    min-height: calc(100vh - 180px);
    background: white;
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
}

.page-title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 25px;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #007CD3 0%, #00EEF9FF 100%);
    border-radius: 2px;
}

.intro-text {
    color: #64748b;
    margin-bottom: 50px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    padding-left: 15px;
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #007CD3 0%, #00EEF9FF 100%);
    border-radius: 2px;
}

.section-content {
    color: #475569;
    margin-bottom: 15px;
    line-height: 1.8;
}

ol, ul {
    margin-left: 40px;
    margin-bottom: 20px;
}

ol li, ul li {
    margin-bottom: 10px;
    color: #475569;
}

ol ol, ul ul {
    margin-top: 10px;
    margin-bottom: 10px;
}

.highlight {
    background: #fff5e6;
    padding: 2px 6px;
    border-radius: 4px;
}

.company-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
}

.company-info p {
    margin-bottom: 8px;
    color: #64748b;
}

.placeholder {
    color: #007CD3;
    font-weight: 600;
}









/* 最終CTA */
.final-cta {
  background: linear-gradient(135deg, #f7aa1a 0%, #e89806 100%);
  color: white;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.final-cta h2 {
  font-size: clamp(32px, 4vw, 42px);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  text-align: center;
  /*  */
  line-height: 1.4;
}

/* デフォルトではbrタグを非表示 */
.mobile-break {
  display: none;
}

/* スマホサイズでのみbrタグを表示 */
@media (max-width: 768px) {
  .mobile-break {
    display: inline;
  }
}

.final-cta p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.final-cta .cta-button {
  background: white;
  color: #007CD3;
  position: relative;
  z-index: 1;
}

.final-cta .cta-button:hover {
  background: #f8fafc;
}

/* フッター */
footer {
  background: #1a202c;
  color: #94a3b8;
  padding: 40px 20px;
  text-align: center;
}

/* ===== Footer Banners ===== */
.footer-banners{
  padding: 16px 20px;             /* フッター内の余白に合わせて調整 */
  background: transparent;        /* 既存フッターの色を使うなら transparent のまま */
}

.footer-banners__inner{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* PC：4カラム */
  gap: 16px;
}

/* バナー自体（16:4で横長） */
.footer-banner{
  position: relative;
  display: block;
  aspect-ratio: 16 / 4;           /* 画像比率がバラついても枠が崩れない */
  border-radius: 5px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e293b, #0f172a); /* 画像未設定時のプレースホルダ */
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.footer-banner:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.24);
  opacity: 0.98;
}

/* 画像フィット */
.footer-banner img{
  width: 100%;
  height: 100%;
  object-fit: cover;               /* トリミングして枠にフィット */
  display: block;
}

/* ダークフッター上でも映える微細な境界線（任意） */
@media (prefers-color-scheme: dark){
  .footer-banner{ border-color: rgba(255,255,255,0.12); }
}



/* レスポンシブ */
@media (max-width: 768px) {
  .header-cta {
    padding: 10px 20px;
    font-size: 14px;
  }
  /* SP（2カラム×2段） */
  .footer-banners{
    padding: 0 0 16px;
  }
  .footer-banners__inner{
    grid-template-columns: repeat(2, 1fr); /* SP：2カラム */
    gap: 12px;
  }
  .privacy-container {
    padding: 60px 20px;
  }

  .page-title {
    font-size: 28px;
    padding-bottom: 15px;
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 20px;
  }

  ol, ul {
    margin-left: 25px;
  }
}

/* 微細なテクスチャ */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.015;
  z-index: 1;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 35px,
    rgba(0, 0, 0, 0.01) 35px,
    rgba(0, 0, 0, 0.01) 70px
  );
}

* {
  position: relative;
  z-index: 2;
}

/* アニメーション用のクラス */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
