/* 薬剤個別ページ 共通スタイル — urawa beauty / online / drugs */
:root {
  --brand: #ff6b9d;
  --brand-dark: #e0457d;
  --brand-bg: #fff5f8;
  --line-green: #06c755;
  --line-green-dark: #05a849;
  --text: #2a2a2a;
  --text-soft: #5c5c5c;
  --line: #eaeaea;
  --warn-bg: #fff7e6;
  --warn-border: #f0b400;
  --maxw: 880px;
  --radius: 12px;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic UI",
    "Meiryo", sans-serif;
  color: var(--text);
  line-height: 1.8;
  font-size: 15px;
  background: #fff;
  -webkit-text-size-adjust: 100%;
}
a {
  color: var(--brand-dark);
  text-decoration: underline;
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
header.site .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
header.site .brand {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
}
header.site .back {
  font-size: 13px;
  color: var(--brand-dark);
  text-decoration: none;
}

.breadcrumb {
  font-size: 12px;
  color: var(--text-soft);
  padding: 14px 0 0;
}
.breadcrumb a {
  color: var(--text-soft);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--brand-dark);
}

.hero {
  padding: 24px 0 12px;
  border-bottom: 1px solid var(--line);
}
.hero h1 {
  font-size: 24px;
  font-weight: 800;
  margin: 8px 0 6px;
  letter-spacing: 0.02em;
}
.hero .generic {
  color: var(--text-soft);
  font-size: 13px;
  margin: 0 0 16px;
}
.hero .lead {
  background: var(--warn-bg);
  border-left: 4px solid var(--warn-border);
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 13.5px;
  color: #5c4400;
  margin: 14px 0 0;
}

section {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
section:last-of-type {
  border-bottom: 0;
}
section h2 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
  display: inline-block;
  border-bottom: 3px solid var(--brand);
  padding-bottom: 3px;
}
section h3 {
  font-size: 15px;
  margin: 18px 0 6px;
  font-weight: 700;
}

.req-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 8px;
}
.req-card {
  background: #fff;
  border: 1.5px solid var(--brand);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.req-card .num {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 2px 9px;
  border-radius: 999px;
  margin-bottom: 6px;
}
.req-card .ttl {
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 8px;
  color: var(--brand-dark);
}
.req-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text);
}

table.spec {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 6px;
}
table.spec th,
table.spec td {
  border: 1px solid var(--line);
  padding: 9px 12px;
  text-align: left;
  vertical-align: top;
}
table.spec th {
  background: var(--brand-bg);
  font-weight: 700;
  width: 30%;
}
table.spec td.amount {
  font-weight: 700;
  color: var(--brand-dark);
  text-align: right;
  white-space: nowrap;
}

ul.risk {
  margin: 6px 0 0;
  padding-left: 20px;
}
ul.risk li {
  margin-bottom: 4px;
  font-size: 14px;
}

.notice {
  background: var(--warn-bg);
  border-left: 4px solid var(--warn-border);
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 13.5px;
  color: #5c4400;
  margin-top: 8px;
}

.cta-line {
  background: #fafafa;
  padding: 28px 0;
  text-align: center;
  border-top: 1px solid var(--line);
}
.cta-line .btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--line-green);
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(6, 199, 85, 0.25);
}
.cta-line .btn-line:hover {
  background: var(--line-green-dark);
  color: #fff;
}
.cta-line .btn-line .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 5px;
  color: var(--line-green);
  font-weight: 900;
  font-size: 11px;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

footer.site {
  background: #1f2937;
  color: #d1d5db;
  padding: 24px 0;
  font-size: 12px;
  line-height: 1.8;
}
footer.site .container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
footer.site strong {
  color: #fff;
  font-size: 13px;
  margin-bottom: 4px;
}
footer.site .copyright {
  margin-top: 10px;
  color: #9ca3af;
  font-size: 11px;
}

@media (min-width: 720px) {
  .hero h1 {
    font-size: 28px;
  }
  .req-grid {
    grid-template-columns: 1fr 1fr;
  }
}
