@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&family=Noto+Sans+JP:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --color-background: #FFF9F3;
  --color-primary: #F7C8DC;
  --color-primary-light: #FAE8EF;
  --color-primary-dark: #E097B3;
  --color-primary-text: #D17298;
  --color-secondary: #A5D6D9;
  --color-secondary-light: #E5F3F4;
  --color-accent: #F5B553;
  --color-foreground: #4F3946;
  --color-gray: #D1D5DB;
  --color-light-gray: #ADB5BD;
  --color-error: #EF4444;
  --color-success: #10B981;

  --font-jp: 'Noto Sans JP', sans-serif;
  --font-zen: 'Zen Kaku Gothic New', sans-serif;
  --font-inter: 'Inter', sans-serif;
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-jp);
  color: var(--color-foreground);
  background-color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary-text);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* 共通ヘッダー（法的ページ用） */
.page-header {
  background-color: var(--color-primary);
  padding: 24px;
  text-align: center;
}

.page-header .logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.page-header .logo:hover {
  text-decoration: none;
}

.page-header .page-title {
  font-size: 18px;
  color: #fff;
  margin-top: 8px;
}

/* 共通フッター */
.site-footer {
  background-color: rgba(237, 166, 193, 0.57);
  padding: 24px 16px;
  text-align: center;
}

.site-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.site-footer .footer-links a {
  font-family: var(--font-jp);
  font-size: 12px;
  color: rgba(0, 0, 0, 0.73);
  letter-spacing: -1.2px;
  padding: 4px 8px;
  text-decoration: none;
}

.site-footer .footer-links a:hover {
  text-decoration: underline;
}

.site-footer .copyright {
  font-family: var(--font-jp);
  font-size: 12px;
  color: rgba(0, 0, 0, 0.73);
  letter-spacing: -1.2px;
}
