@charset "UTF-8";

/* ==========================================================================
   Reset / base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; line-height: 1.5; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

:root {
  --navy: #17324f;
  --navy-deep: #0e2138;
  --gold: #c99a3f;
  --gold-light: #f1d99a;
  --teal: #2f7d78;
  --bg: #f6f7f9;
  --surface: #ffffff;
  --text: #232a33;
  --text-soft: #5b6673;
  --border: #e4e7ec;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 30px rgba(23, 50, 79, 0.08);
  --shadow-sm: 0 2px 10px rgba(23, 50, 79, 0.06);
  --container: 1040px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}
.section--alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: rgba(201, 154, 63, 0.12);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem);
  color: var(--navy);
}
.section-lead {
  color: var(--text-soft);
  margin-top: 12px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.brand-name {
  font-weight: 700;
  color: var(--navy);
  font-size: clamp(0.85rem, 0.7rem + 0.6vw, 1.05rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-sub {
  font-size: 0.72rem;
  color: var(--text-soft);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
  padding: 10px 22px;
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: radial-gradient(ellipse at top right, #1f4c6e 0%, var(--navy) 45%, var(--navy-deep) 100%);
  color: #fff;
  padding: 76px 0 96px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(201, 154, 63, 0.22), transparent 40%),
    radial-gradient(circle at 88% 82%, rgba(47, 125, 120, 0.28), transparent 45%);
  pointer-events: none;
}
.hero .container { position: relative; text-align: center; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.badge svg { width: 16px; height: 16px; flex-shrink: 0; }
.hero h1 {
  font-size: clamp(1.5rem, 1.1rem + 2vw, 2.4rem);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.hero-lead {
  font-size: clamp(0.95rem, 0.85rem + 0.4vw, 1.1rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 620px;
  margin: 0 auto 8px;
}

.hero-banner {
  margin-top: -48px;
  position: relative;
  z-index: 2;
}
.hero-banner .container { text-align: center; }
.hero-banner-card {
  display: inline-block;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 10px;
  max-width: 100%;
}
.hero-banner-card img {
  border-radius: calc(var(--radius-md) - 4px);
  max-width: 100%;
}

/* ==========================================================================
   Survey result cards
   ========================================================================== */
.survey-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 760px;
  margin: 0 auto;
}
.survey-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.survey-card img {
  border-radius: var(--radius-sm);
  margin: 0 auto;
  width: 100%;
  height: auto;
}

.thanks-note {
  text-align: center;
  margin-top: 48px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  color: var(--navy);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.82);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-grid h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.footer-grid p { font-size: 0.86rem; margin: 0; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-bottom {
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ==========================================================================
   Back to top
   ========================================================================== */
#pagetop {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 200;
}
#pagetop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: background 0.15s ease, transform 0.15s ease;
}
#pagetop a:hover { background: var(--gold); transform: translateY(-3px); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media screen and (max-width: 760px) {
  .section { padding: 52px 0; }
  .hero { padding: 56px 0 72px; }
}
