/* notice.css — 移行案内ページ専用スタイル
   会員ログイン（member-login.html）／入会・開業のご案内（membership.html）
   ／トリム整水器カートリッジ（cartridge.html）の3ページで共通利用する。
   ヘッダー・フッター・ページヒーローは common.css / inner.css に依存。 */

/* 案内カードを中央に配置するセクション */
.notice-page {
  padding: 80px 5%;
  display: flex;
  justify-content: center;
}

/* 移行内容を伝える案内カード */
.notice-card {
  width: 100%;
  max-width: 720px;
  text-align: center;
  border: 1px solid #e0e0e0;
  padding: 56px 48px;
  background: #fff;
}

/* カード上部の小ラベル（例：移行のご案内） */
.notice-card-label {
  font-family: var(--num-font);
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  color: var(--sub-color);
  margin-bottom: 16px;
}

.notice-card-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 32px;
}

/* 本文は左寄せで読みやすく */
.notice-card-text {
  text-align: left;
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 40px;
}

.notice-card-text p + p {
  margin-top: 1em;
}

/* 移行先サイトへの主要ボタン */
.notice-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: var(--base-color);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  transition: opacity 0.2s;
}

.notice-cta:hover {
  opacity: 0.85;
}

.notice-cta-arrow {
  font-size: 1.1rem;
  line-height: 1;
}

/* 外部サイトである旨の注記 */
.notice-card-sub {
  margin-top: 20px;
  font-size: 1.2rem;
  color: var(--sub-color);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .notice-page {
    padding: 48px 6%;
  }

  .notice-card {
    padding: 40px 24px;
  }

  .notice-cta {
    width: 100%;
    justify-content: center;
  }
}
