/* public/src/styles.css
 * おつきあい帳のスタイル。
 *
 * 方針:
 *  - スマートフォンファースト。基準の文字サイズは 17px（小さくしない）
 *  - タップ領域は最小 48×48px
 *  - 状態は色だけで示さない（アイコンと文字を併記する。CSS 側は補助）
 *  - コントラストは WCAG 2.2 AA（本文 4.5:1 以上）を狙う
 *  - prefers-reduced-motion を尊重する
 */

:root {
  color-scheme: light dark;

  --bg: #fdfaf3;
  --bg-alt: #f5f0e6;
  --surface: #ffffff;
  --text: #1f1b16;
  --text-muted: #5c5449;
  --border: #ddd4c4;
  --accent: #7a5c2e;
  --accent-text: #ffffff;
  --warn: #8a4b0f;
  --warn-bg: #fdf1e3;
  --danger: #9b2226;
  --danger-bg: #fdeaea;
  --good: #2c6e49;
  --good-bg: #e9f4ee;
  --focus: #1b5e9c;

  --radius: 10px;
  --tap: 48px;
  --wrap: 44rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #14130f;
    --bg-alt: #1c1a15;
    --surface: #232019;
    --text: #f2ede2;
    --text-muted: #b9b0a0;
    --border: #3b3629;
    --accent: #d8b177;
    --accent-text: #1f1b16;
    --warn: #f0b37e;
    --warn-bg: #33260f;
    --danger: #f08a8a;
    --danger-bg: #3a1a1a;
    --good: #86d0a4;
    --good-bg: #16301f;
    --focus: #8fc4f5;
  }
}

:root[data-theme='light'] {
  color-scheme: light;
  --bg: #fdfaf3; --bg-alt: #f5f0e6; --surface: #fff; --text: #1f1b16;
  --text-muted: #5c5449; --border: #ddd4c4; --accent: #7a5c2e; --accent-text: #fff;
  --warn: #8a4b0f; --warn-bg: #fdf1e3; --danger: #9b2226; --danger-bg: #fdeaea;
  --good: #2c6e49; --good-bg: #e9f4ee; --focus: #1b5e9c;
}

:root[data-theme='dark'] {
  color-scheme: dark;
  --bg: #14130f; --bg-alt: #1c1a15; --surface: #232019; --text: #f2ede2;
  --text-muted: #b9b0a0; --border: #3b3629; --accent: #d8b177; --accent-text: #1f1b16;
  --warn: #f0b37e; --warn-bg: #33260f; --danger: #f08a8a; --danger-bg: #3a1a1a;
  --good: #86d0a4; --good-bg: #16301f; --focus: #8fc4f5;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  padding: 0 0 calc(var(--tap) + env(safe-area-inset-bottom, 0px) + 1rem);
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', 'Meiryo', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  word-break: normal;
  overflow-wrap: anywhere;
}

body.is-landing { padding-bottom: 0; }
body.is-landing .tabbar { display: none; }

/* ---------------------------------------------------------------- 共通 */

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 1rem; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: var(--accent-text); padding: .75rem 1rem; z-index: 100;
}
.skip:focus { left: 0; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}

a { color: var(--accent); text-underline-offset: .2em; }

h1, h2, h3 { line-height: 1.5; }
h1 { font-size: 1.5rem; margin: .5rem 0 1rem; }
h2 { font-size: 1.25rem; margin: 2rem 0 .75rem; }
h3 { font-size: 1.05rem; margin: 1.25rem 0 .5rem; }

p { margin: .5rem 0 1rem; }

.note { color: var(--text-muted); font-size: .95rem; }
.muted { color: var(--text-muted); font-size: .9rem; }
.warn-text { color: var(--warn); font-weight: 600; }
.center { text-align: center; }

.plain-list { list-style: none; margin: .5rem 0; padding: 0; }
.plain-list > li { padding: .6rem 0; border-bottom: 1px solid var(--border); }
.plain-list > li:last-child { border-bottom: 0; }

.ordered-list { padding-left: 1.4em; }
.ordered-list > li { margin: .5rem 0; }

.bar-slot:empty { display: none; }

/* ---------------------------------------------------------------- ボタン */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4em;
  min-height: var(--tap); min-width: var(--tap);
  padding: .6rem 1.1rem; margin: .25rem .25rem .25rem 0;
  font: inherit; font-weight: 600;
  border: 2px solid var(--border); border-radius: var(--radius);
  background: var(--surface); color: var(--text);
  cursor: pointer;
}
.btn:hover { border-color: var(--accent); }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-primary { background: var(--accent); color: var(--accent-text); border-color: var(--accent); }
.btn-danger { background: var(--danger-bg); color: var(--danger); border-color: var(--danger); }
.btn-ghost { background: transparent; border-color: transparent; }
.btn-icon { font-size: 1.1em; }

/* ---------------------------------------------------------------- 入力 */

.field { margin: 1.25rem 0; }
.field-label { display: block; font-weight: 600; margin-bottom: .3rem; }
.required { color: var(--danger); font-size: .85em; margin-left: .3em; font-weight: 400; }
.field-hint { color: var(--text-muted); font-size: .9rem; margin: .1rem 0 .4rem; }
.field-msg { color: var(--danger); font-weight: 600; margin: .3rem 0 0; }
.field-error .input { border-color: var(--danger); }

.input {
  display: block; width: 100%;
  min-height: var(--tap);
  padding: .6rem .75rem;
  font: inherit;
  color: var(--text); background: var(--surface);
  border: 2px solid var(--border); border-radius: var(--radius);
}
.input-inline { width: auto; display: inline-block; }
.textarea { min-height: 6rem; line-height: 1.7; resize: vertical; }
.static-value { padding: .6rem 0; margin: 0; }

.checkbox {
  width: 1.4rem; height: 1.4rem;
  margin-right: .6rem;
  accent-color: var(--accent);
  flex: 0 0 auto;
}
.checkbox-label {
  display: flex; align-items: flex-start; gap: .2rem;
  min-height: var(--tap); padding: .5rem 0; cursor: pointer;
}
.checkbox-list { list-style: none; margin: 0; padding: 0; }
.radio-list { display: grid; gap: .25rem; }

.fieldset { border: 2px solid var(--border); border-radius: var(--radius); padding: .75rem 1rem; margin: 1.25rem 0; }
.fieldset legend { font-weight: 600; padding: 0 .4em; }

.amount-wrap { display: block; }
.amount-preview { color: var(--text-muted); font-size: .95rem; margin: .3rem 0 0; min-height: 1.5em; }
.amount-preview.is-error { color: var(--danger); }

.sensitive-notice {
  background: var(--warn-bg); color: var(--warn);
  border-left: 4px solid var(--warn);
  padding: .6rem .8rem; font-size: .92rem; margin: .5rem 0;
}

.note-warning:empty { display: none; }
.note-warning { color: var(--warn); font-size: .92rem; }

/* 「受け取った／渡した」トグル */
.toggle { display: flex; gap: .5rem; margin: 1rem 0; }
.toggle-option {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: .1rem;
  min-height: 4.5rem; padding: .6rem;
  font: inherit; font-weight: 600;
  background: var(--surface); color: var(--text);
  border: 2px solid var(--border); border-radius: var(--radius);
  cursor: pointer;
}
.toggle-option.is-selected { border-color: var(--accent); background: var(--bg-alt); }
.toggle-icon { font-size: 1.3rem; }
.toggle-check { color: var(--accent); font-weight: 700; }

.chip {
  min-height: var(--tap); padding: .4rem .9rem; margin: .2rem;
  font: inherit; background: var(--surface); color: var(--text);
  border: 2px solid var(--border); border-radius: 999px; cursor: pointer;
}
.chip.is-active { background: var(--accent); color: var(--accent-text); border-color: var(--accent); }
.filter-chips { display: flex; flex-wrap: wrap; margin: .5rem 0; }
.filter-grid { display: grid; gap: .5rem; }

/* ---------------------------------------------------------------- 部品 */

.banner {
  display: flex; align-items: flex-start; gap: .6rem; flex-wrap: wrap;
  padding: .8rem 1rem; margin: .75rem 0;
  border-radius: var(--radius); border-left: 5px solid var(--accent);
  background: var(--bg-alt);
}
.banner-text { margin: 0; flex: 1 1 14rem; }
.banner-icon { font-weight: 700; }
.banner-warn { background: var(--warn-bg); border-left-color: var(--warn); color: var(--warn); }
.banner-danger { background: var(--danger-bg); border-left-color: var(--danger); color: var(--danger); }
.banner-success { background: var(--good-bg); border-left-color: var(--good); color: var(--good); }

.badge {
  display: inline-flex; align-items: center; gap: .3em;
  padding: .15em .6em; border-radius: 999px;
  font-size: .85rem; font-weight: 600;
  border: 1px solid currentColor;
}
.badge-warn { color: var(--warn); background: var(--warn-bg); }
.badge-good { color: var(--good); background: var(--good-bg); }
.badge-neutral { color: var(--text); background: var(--bg-alt); }
.badge-muted { color: var(--text-muted); background: transparent; }
.badge-icon { font-weight: 700; }

.collapsible { border: 1px solid var(--border); border-radius: var(--radius); margin: 1rem 0; background: var(--surface); }
.collapsible > summary { min-height: var(--tap); display: flex; align-items: center; padding: .6rem 1rem; cursor: pointer; font-weight: 600; }
.collapsible-body { padding: 0 1rem 1rem; }

.glossary { border: 0; background: transparent; margin: .25rem 0; }
.glossary > summary { padding: .3rem 0; font-weight: 400; color: var(--accent); }
.glossary-hint { font-size: .85em; margin-left: .2em; }

.dialog { border: 0; border-radius: var(--radius); padding: 0; max-width: 34rem; width: calc(100% - 2rem); background: var(--surface); color: var(--text); }
.dialog::backdrop { background: rgb(0 0 0 / .55); }
.dialog-inner { padding: 1.25rem; }
.dialog-title { margin-top: 0; }
.dialog-actions { display: flex; gap: .5rem; justify-content: flex-end; flex-wrap: wrap; margin-top: 1rem; }

.empty-state { text-align: center; padding: 2rem 1rem; color: var(--text-muted); }
.empty-title { font-weight: 600; color: var(--text); }

.error-box { background: var(--danger-bg); border-left: 5px solid var(--danger); padding: 1rem; border-radius: var(--radius); margin: 1rem 0; }
.error-title { color: var(--danger); font-weight: 700; margin-top: 0; }

.loading { color: var(--text-muted); padding: 1rem 0; }

.upgrade-notice { background: var(--bg-alt); border: 2px solid var(--border); border-radius: var(--radius); padding: 1.25rem; margin: 1rem 0; }
.upgrade-title { font-weight: 700; margin-top: 0; }

.stepper { display: flex; list-style: none; margin: 0 0 1.5rem; padding: 0; gap: .25rem; }
.step { flex: 1; display: flex; flex-direction: column; align-items: center; gap: .1rem; font-size: .85rem; color: var(--text-muted); border-top: 4px solid var(--border); padding-top: .4rem; }
.step.is-current { color: var(--text); font-weight: 700; border-top-color: var(--accent); }
.step.is-done { border-top-color: var(--accent); }
.step-num { display: none; }

.progress { width: 100%; height: 1.2rem; }

/* ---------------------------------------------------------------- 画面 */

.page { max-width: var(--wrap); margin: 0 auto; padding: 1rem; }
.page-head { display: flex; align-items: flex-start; justify-content: space-between; gap: .5rem; flex-wrap: wrap; }
.page-title { margin: .25rem 0 1rem; }
.back-link { display: inline-flex; align-items: center; min-height: var(--tap); }

.section { margin: 2rem 0; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: .5rem; flex-wrap: wrap; }
.section-title { font-size: 1.15rem; margin: 0 0 .5rem; }

.home-actions { margin: 1rem 0; }
.home-actions .btn { width: 100%; min-height: 3.5rem; font-size: 1.1rem; }
.home-footnote { color: var(--text-muted); font-size: .9rem; margin-top: 2rem; }

.todo-list { display: grid; gap: .5rem; }
.todo-row {
  display: flex; align-items: center; gap: .75rem; width: 100%;
  min-height: 4rem; padding: .75rem 1rem; text-align: left;
  font: inherit; color: var(--text);
  background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius); cursor: pointer;
}
.todo-row.tone-warn { border-color: var(--warn); background: var(--warn-bg); }
.todo-icon { font-size: 1.3rem; }
.todo-main { flex: 1; display: flex; flex-direction: column; }
.todo-label { font-weight: 600; }
.todo-detail { font-size: .88rem; color: var(--text-muted); }
.todo-count { font-weight: 700; }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr)); gap: .6rem; }
.stat-tile { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: .8rem; }
.stat-label { margin: 0; font-size: .88rem; color: var(--text-muted); }
.stat-value { margin: .2rem 0; font-size: 1.3rem; font-weight: 700; }
.stat-sub { margin: 0; font-size: .85rem; color: var(--text-muted); }

.record-list { display: grid; gap: .5rem; }
.record-card {
  display: grid; gap: .3rem; width: 100%; text-align: left;
  padding: .85rem 1rem; font: inherit; color: var(--text);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); cursor: pointer;
}
.record-head { display: flex; justify-content: space-between; gap: .5rem; align-items: baseline; }
.record-person { font-weight: 700; }
.record-direction { font-size: .88rem; }
.dir-received { color: var(--good); }
.dir-given { color: var(--accent); }
.record-main { display: flex; justify-content: space-between; gap: .5rem; align-items: baseline; }
.record-amount { font-weight: 700; font-size: 1.05rem; }
.record-meta { display: flex; justify-content: space-between; gap: .5rem; align-items: center; font-size: .88rem; color: var(--text-muted); }

.person-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.person-row {
  display: flex; align-items: center; gap: .75rem; width: 100%; text-align: left;
  min-height: 3.6rem; padding: .7rem 1rem; font: inherit; color: var(--text);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); cursor: pointer;
}
.person-main { flex: 1; display: flex; flex-direction: column; }
.person-name { font-weight: 600; }
.person-kana, .person-rel { font-size: .85rem; color: var(--text-muted); }
.person-sum { font-size: .9rem; color: var(--text-muted); }

.detail-list { margin: 1rem 0; }
.detail-row { display: grid; grid-template-columns: 8.5rem 1fr; gap: .5rem; padding: .55rem 0; border-bottom: 1px solid var(--border); }
.detail-row dt { color: var(--text-muted); font-size: .92rem; margin: 0; }
.detail-row dd { margin: 0; }
.detail-actions { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.5rem 0; }

.summary-box, .guess-box { background: var(--bg-alt); border-radius: var(--radius); padding: .9rem 1rem; margin: 1rem 0; }
.guess-value { font-weight: 700; margin: 0 0 .3rem; }
.guess-note { margin: 0; font-size: .88rem; color: var(--text-muted); }
.previous-hint { background: var(--bg-alt); padding: .6rem .8rem; border-radius: var(--radius); font-size: .95rem; }

.wizard-step { margin-bottom: 2rem; }
.wizard-actions { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1.5rem; }
.wizard-actions .btn { flex: 1 1 8rem; }

.return-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.return-item { background: var(--surface); border: 1px solid var(--border); border-left: 5px solid var(--border); border-radius: var(--radius); padding: .85rem 1rem; }
.return-item.is-overdue { border-left-color: var(--warn); background: var(--warn-bg); }
.return-head { display: flex; justify-content: space-between; gap: .5rem; align-items: center; }
.return-person { font-weight: 700; }
.return-body, .return-due, .return-guess { margin: .25rem 0; font-size: .93rem; }
.return-due { color: var(--warn); font-weight: 600; }
.return-actions { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .5rem; }
.summary-line { font-weight: 600; }

.schedule-list, .memorial-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.schedule-item, .memorial-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: .75rem 1rem; }
.schedule-item.is-done, .memorial-item.is-done { opacity: .65; }
.schedule-main { display: flex; flex-direction: column; gap: .15rem; }
.schedule-name, .memorial-label { font-weight: 700; }
.memorial-head { align-items: center; }
.tag { display: inline-block; margin-left: .4em; padding: 0 .5em; font-size: .8rem; border: 1px solid var(--border); border-radius: 999px; }

.row-with-action { display: flex; align-items: center; justify-content: space-between; gap: .5rem; flex-wrap: wrap; }
.row-actions { display: flex; gap: .4rem; flex-wrap: wrap; }
.sub-links { display: flex; gap: .5rem; flex-wrap: wrap; margin: 1.5rem 0; }

.link-grid { display: grid; gap: .5rem; margin: 1rem 0; }
.link-card {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: .25rem 1rem;
  width: 100%; text-align: left; padding: .9rem 1rem; font: inherit; color: var(--text);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); cursor: pointer;
}
.link-card-title { font-weight: 700; }
.link-card-body { grid-column: 1; font-size: .9rem; color: var(--text-muted); }
.link-card-arrow { grid-row: 1 / 3; font-size: 1.5rem; color: var(--text-muted); }

.list-count { color: var(--text-muted); font-size: .9rem; }

/* グラフ */
.chart { margin: 1rem 0; }
.bar-chart { width: 100%; height: auto; display: block; margin-bottom: .5rem; }
.bar { fill: var(--accent); }
.chart-table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.chart-table th, .chart-table td { text-align: left; padding: .4rem .5rem; border-bottom: 1px solid var(--border); }
.chart-table td { text-align: right; }
.chart-empty { color: var(--text-muted); }
.table-scroll { overflow-x: auto; }

.plan-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.plan-table th, .plan-table td { border: 1px solid var(--border); padding: .5rem; text-align: center; white-space: pre-line; }
.plan-table th[scope='row'] { text-align: left; }
.buy-actions { display: grid; gap: .5rem; margin: 1.5rem 0; }
.buy-actions .btn { min-height: 3.25rem; }

/* 下部タブ */
.tabbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 20;
  display: flex;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.tab {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .1rem;
  min-height: var(--tap); padding: .35rem .2rem;
  color: var(--text-muted); text-decoration: none; font-size: .78rem;
}
.tab.is-active { color: var(--accent); font-weight: 700; }
.tab-icon { font-size: 1.25rem; line-height: 1; }

/* ---------------------------------------------------------------- 紹介ページ */

.landing-header { border-bottom: 1px solid var(--border); background: var(--surface); }
.landing-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: .75rem; padding-bottom: .75rem; }
.landing-header .brand { font-weight: 700; font-size: 1.1rem; margin: 0; }
.landing-header nav { display: flex; gap: 1rem; flex-wrap: wrap; }
.landing-header nav a { min-height: var(--tap); display: inline-flex; align-items: center; }

.hero { padding: 2.5rem 0 1.5rem; }
.hero h1 { font-size: 1.9rem; }
.lead { font-size: 1.05rem; }
.hero-actions { margin: 1.5rem 0 .5rem; }
.hero-note { color: var(--text-muted); font-size: .92rem; }
.cta {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 3.5rem; padding: 0 2rem;
  background: var(--accent); color: var(--accent-text);
  border-radius: var(--radius); font-weight: 700; text-decoration: none; font-size: 1.05rem;
}

.section-alt { background: var(--bg-alt); }
.section-alt, .landing #problem, .landing #privacy { padding: 2rem 0; }
#landing .section { padding: 2rem 0; margin: 0; }

.check-list { list-style: none; padding: 0; }
.check-list li { padding: .5rem 0 .5rem 1.8em; position: relative; border-bottom: 1px solid var(--border); }
.check-list li::before { content: '□'; position: absolute; left: .3em; color: var(--accent); }

.feature-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.feature-grid article { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem 1.1rem; }
.feature-grid h3 { margin-top: 0; }

.two-col { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }

.price-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.price-card { background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius); padding: 1.1rem; }
.price-card.is-recommended { border-color: var(--accent); }
.price-card h3 { margin-top: 0; }
.price { font-size: 1.6rem; font-weight: 700; margin: .25rem 0 .75rem; }
.price span { display: block; font-size: .85rem; font-weight: 400; color: var(--text-muted); }

.notice { background: var(--warn-bg); color: var(--warn); border-left: 5px solid var(--warn); padding: .9rem 1rem; border-radius: var(--radius); }

#faq details { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); margin: .5rem 0; }
#faq summary { min-height: var(--tap); display: flex; align-items: center; padding: .6rem 1rem; font-weight: 600; cursor: pointer; }
#faq details > p { padding: 0 1rem 1rem; margin: 0; }

.landing-footer { border-top: 1px solid var(--border); padding: 2rem 0; color: var(--text-muted); font-size: .9rem; }
.footer-links a { display: inline-block; min-height: 2.5rem; line-height: 2.5rem; }

/* ---------------------------------------------------------------- 配慮 */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

@media (prefers-contrast: more) {
  :root { --border: currentColor; }
  .btn, .input { border-width: 3px; }
}

/* 印刷（プレミアム版の印刷用レイアウト） */
@media print {
  body { background: #fff; color: #000; font-size: 11pt; padding: 0; }
  .tabbar, .bar-slot, .back-link, .btn, .skip, .landing-header, .landing-footer,
  .home-actions, .detail-actions, .wizard-actions, .collapsible { display: none !important; }
  .page { max-width: none; padding: 0; }
  .record-card, .stat-tile, .return-item { border: 1px solid #999; break-inside: avoid; }
  .chart-table th, .chart-table td { border-bottom: 1px solid #999; }
  a[href^='http']::after { content: ' (' attr(href) ')'; font-size: 9pt; }
}
