@charset "UTF-8";
/* ============================================================
   Suu — デザインサンプル（架空ブランド）
   方向: ミニマルテック（清潔・精密・図解）
   シグネチャー: 製品のコールアウト注釈 ＋ 姿勢 Before/After（SVG）
   ============================================================ */

/* ---------- 1. トークン ---------- */
:root {
  --c-white: #ffffff;
  --c-bg:    #ffffff;
  --c-tone:  #f2f4f6;
  --c-ink:   #1f2933;
  --c-muted: #6b7885;
  --c-line:  #dde3e8;
  --c-blue:  #3aa0d9;   /* 主張色 */
  --c-deep:  #14405c;
  --c-warn:  #e0603f;   /* Before側のみ */

  --font-display: "Murecho", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-en: "Inter", Helvetica, Arial, sans-serif;
  --font-num: "Space Grotesk", monospace;
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;

  --section-pad: clamp(72px, 10vw, 132px);
  --container: 1140px;
  --container-narrow: 720px;
  --gutter: clamp(20px, 4.5vw, 52px);

  --z-header: 100;
  --z-nav: 200;
  --z-fixed: 1000;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.6s;   /* 精密系なので短く */
}

/* ---------- 2. リセット / ベース ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body); color: var(--c-ink); background: var(--c-bg);
  font-size: 16px; line-height: 1.95; letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased; overflow-wrap: anywhere;
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; padding: 0; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--c-blue); outline-offset: 3px; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.45; letter-spacing: 0.01em; }
b { color: var(--c-deep); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: var(--z-fixed);
  background: var(--c-deep); color: #fff; padding: 10px 18px; font-size: 13px; transition: top 0.2s;
}
.skip-link:focus { top: 12px; }
.note { margin-top: 26px; font-size: 12.5px; color: var(--c-muted); line-height: 1.9; text-align: center; }

/* ---------- 3. レイアウト ---------- */
.container { width: min(var(--container), 100% - var(--gutter) * 2); margin-inline: auto; }
.container--narrow { width: min(var(--container-narrow), 100% - var(--gutter) * 2); margin-inline: auto; }
.section { padding-block: var(--section-pad); }
.section--tone { background: var(--c-tone); }

.sec-head { margin-bottom: clamp(36px, 5vw, 58px); }
.sec-head--center { text-align: center; }
.sec-head__en {
  font-family: var(--font-en); font-weight: 600; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-blue); margin-bottom: 10px;
}
.sec-head__title { font-size: clamp(24px, 3.6vw, 38px); }
.sec-head__lead { margin-top: 18px; font-size: 14.5px; color: var(--c-muted); line-height: 2; }
.sec-head--center .sec-head__lead { max-width: 42em; margin-inline: auto; }

/* ---------- 4. ヘッダー ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-header);
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px var(--gutter);
  background: rgba(255,255,255,0.86); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent; transition: border-color 0.3s;
}
.site-header.is-scrolled { border-bottom-color: var(--c-line); }
.site-header__logo { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: 0.02em; }

.global-nav { display: flex; align-items: center; gap: 24px; }
.global-nav ul { display: flex; gap: 22px; }
.global-nav a { font-size: 13.5px; }
.global-nav ul a { position: relative; padding-bottom: 3px; }
.global-nav ul a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--c-blue); transition: width 0.3s var(--ease-out);
}
.global-nav ul a:hover::after { width: 100%; }

.nav-toggle {
  display: none; width: 44px; height: 44px; background: none; border: none;
  cursor: pointer; position: relative; z-index: calc(var(--z-nav) + 1);
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; margin: 5px auto;
  background: var(--c-ink); transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 5. ボタン ---------- */
.button {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 32px; min-height: 52px; border-radius: 6px;
  background: var(--c-deep); color: #fff; border: 1px solid var(--c-deep);
  font-family: var(--font-body); font-weight: 700; font-size: 14.5px; letter-spacing: 0.04em;
  cursor: pointer; transition: background 0.25s, color 0.25s;
}
.button:hover { background: var(--c-blue); border-color: var(--c-blue); }
.button--sm { padding: 10px 20px; min-height: 44px; font-size: 13px; }
.button--lg { padding: 18px 44px; min-height: 58px; font-size: 15.5px; }
.button--ghost { background: transparent; color: var(--c-deep); border-color: var(--c-line); }
.button--ghost:hover { background: var(--c-tone); color: var(--c-deep); border-color: var(--c-blue); }

/* ---------- 6. ヒーロー（製品＋コールアウト） ---------- */
.hero {
  width: min(var(--container), 100% - var(--gutter) * 2); margin-inline: auto;
  padding: clamp(112px, 14vw, 156px) 0 clamp(56px, 8vw, 92px);
  display: grid; gap: clamp(36px, 5vw, 64px); align-items: center;
}
@media (min-width: 940px) { .hero { grid-template-columns: 1fr 0.92fr; } }
.hero__cap {
  display: inline-block; font-family: var(--font-en); font-weight: 600;
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-blue); border: 1px solid var(--c-line);
  padding: 4px 14px; border-radius: 999px; margin-bottom: 22px;
}
.hero__title { font-size: clamp(28px, 4.8vw, 52px); line-height: 1.4; }
.hero__lead { margin-top: 22px; font-size: 15px; color: var(--c-muted); line-height: 2.05; }
.hero__actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

.callout { position: relative; margin: 0; }
.callout img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 12px; background: var(--c-tone); }
.callout__list { position: absolute; inset: 0; pointer-events: none; }
.callout__item { position: absolute; display: flex; align-items: center; gap: 10px; }
.callout__dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--c-blue); box-shadow: 0 0 0 5px rgba(58,160,217,0.22);
  flex: none;
}
.callout__label {
  background: rgba(255,255,255,0.94); backdrop-filter: blur(4px);
  border: 1px solid var(--c-line); border-radius: 8px;
  padding: 7px 12px; font-size: 11.5px; color: var(--c-muted); line-height: 1.5;
  white-space: nowrap; box-shadow: 0 2px 10px rgba(31,41,51,0.07);
}
.callout__label b { display: block; font-family: var(--font-num); font-size: 13px; color: var(--c-ink); }
.callout__item--1 { top: 14%; left: 6%; }
.callout__item--2 { top: 36%; right: 5%; flex-direction: row-reverse; }
.callout__item--3 { bottom: 30%; left: 5%; }
.callout__item--4 { bottom: 11%; right: 6%; flex-direction: row-reverse; }
@media (max-width: 639px) {
  /* 狭い画面では写真に重ねず、下に箇条書きで並べる */
  .callout__list { position: static; display: grid; gap: 10px; margin-top: 16px; }
  .callout__item { position: static; }
  .callout__label { white-space: normal; }
}

/* ---------- 7. シグネチャー: Before / After ---------- */
.ba { display: grid; gap: clamp(20px, 3vw, 30px); align-items: center; }
@media (min-width: 860px) { .ba { grid-template-columns: 1fr auto 1fr; } }
.ba__panel {
  margin: 0; background: var(--c-white); border: 1px solid var(--c-line);
  border-radius: 14px; padding: clamp(20px, 3vw, 30px);
}
.ba__panel--after { border-color: var(--c-blue); box-shadow: 0 6px 26px rgba(58,160,217,0.13); }
.ba__label {
  font-family: var(--font-en); font-weight: 600; font-size: 11.5px;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px;
}
.ba__label--before { color: var(--c-warn); }
.ba__label--after { color: var(--c-blue); }

/* 角度の数値は figure の外に出す。SVG内に置くと図と一緒に拡大されて字面が崩れる */
.ba__readout {
  display: flex; align-items: baseline; gap: 14px;
  padding-bottom: 16px; border-bottom: 1px solid var(--c-line);
}
.ba__deg {
  font-family: var(--font-num); font-weight: 700;
  font-size: clamp(30px, 4vw, 40px); line-height: 1;
  letter-spacing: -0.01em; font-variant-numeric: tabular-nums;
}
.ba__readout--before .ba__deg { color: var(--c-warn); }
.ba__readout--after .ba__deg { color: #1b7fb5; }
.ba__degnote {
  font-size: 12.5px; font-weight: 500; color: var(--c-ink); line-height: 1.6;
}
.ba__degnote em {
  display: block; font-style: normal; font-size: 11.5px; color: var(--c-muted);
}

/* 写真は1枚を継ぎ目で割っただけなので左右で拡大率がそろっている。
   max-width と aspect-ratio を左右で同じにしないと比較図として成立しない。
   比率を先に決めておくのは、読み込み中に高さが飛ぶのを防ぐため */
.ba__fig {
  display: block; width: 100%; max-width: 360px;
  margin: 4px auto 0; aspect-ratio: 720 / 811;
  object-fit: cover; border-radius: 10px; background: #f2f4f6;
}
.ba__text {
  margin-top: 14px; padding-top: 16px; border-top: 1px dashed var(--c-line);
  font-size: 13.5px; color: var(--c-muted); line-height: 2;
}

.ba__arrow {
  display: grid; place-content: center; justify-self: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--c-white); border: 1px solid var(--c-line); color: var(--c-blue);
}
.ba__arrow svg { width: 20px; height: 20px; display: block; }
@media (max-width: 859px) { .ba__arrow { transform: rotate(90deg); } }

/* ---------- 8. 比較表 ---------- */
.tbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cmp { width: 100%; min-width: 620px; border-collapse: collapse; }
.cmp th, .cmp td {
  border-bottom: 1px solid var(--c-line); padding: 16px 18px;
  text-align: left; font-weight: 400; font-size: 14px;
}
.cmp thead th {
  font-family: var(--font-en); font-weight: 600; font-size: 12px;
  letter-spacing: 0.1em; color: var(--c-muted); border-bottom-width: 2px;
}
.cmp tbody th { font-family: var(--font-display); font-weight: 800; font-size: 14px; white-space: nowrap; }
.cmp__own { background: rgba(58,160,217,0.07); color: var(--c-deep); font-weight: 700; }
.cmp thead .cmp__own { color: var(--c-blue); border-bottom-color: var(--c-blue); }

/* ---------- 9. 全幅バンド ---------- */
.band img { width: 100%; height: clamp(240px, 40vh, 440px); object-fit: cover; }

/* ---------- 10. 向いている方 ---------- */
.checks { display: grid; gap: 12px; }
.checks__item {
  position: relative; padding: 16px 20px 16px 54px;
  background: var(--c-tone); border-radius: 10px; font-size: 14.5px;
}
.checks__item::before {
  content: ""; position: absolute; left: 20px; top: 50%; margin-top: -8px;
  width: 16px; height: 9px; border-left: 3px solid var(--c-blue); border-bottom: 3px solid var(--c-blue);
  transform: rotate(-45deg); border-radius: 1px;
}

/* ---------- 11. 仕様・価格 ---------- */
.spec-wrap { display: grid; gap: clamp(32px, 5vw, 60px); align-items: start; }
@media (min-width: 880px) { .spec-wrap { grid-template-columns: 1.1fr 0.9fr; } }
.spec { display: grid; grid-template-columns: auto 1fr; gap: 0 22px; border-top: 1px solid var(--c-line); }
.spec dt {
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  padding: 14px 0; border-bottom: 1px solid var(--c-line); white-space: nowrap;
}
.spec dd { font-size: 13.5px; color: var(--c-muted); padding: 14px 0; border-bottom: 1px solid var(--c-line); }

.buy { background: var(--c-white); border: 1px solid var(--c-line); border-radius: 14px; padding: clamp(26px, 3.4vw, 38px); }
.buy__label { font-family: var(--font-en); font-weight: 600; font-size: 11.5px; letter-spacing: 0.14em; color: var(--c-muted); text-transform: uppercase; }
.buy__num { font-family: var(--font-num); font-weight: 700; font-size: clamp(40px, 5.4vw, 54px); line-height: 1.15; margin-top: 8px; }
.buy__num span { font-family: var(--font-body); font-size: 17px; margin-left: 4px; font-weight: 500; }
.buy__sub { font-size: 12.5px; color: var(--c-muted); }
.buy__points { margin: 22px 0 26px; display: grid; gap: 10px; padding-top: 20px; border-top: 1px solid var(--c-line); }
.buy__points li { position: relative; padding-left: 22px; font-size: 13.5px; color: var(--c-muted); line-height: 1.8; }
.buy__points li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 9px; height: 9px; border-radius: 50%; background: var(--c-blue);
}
.buy .button { width: 100%; }

/* ---------- 12. 最終CTA ---------- */
.cta { background: var(--c-deep); color: #fff; padding-block: clamp(72px, 10vw, 124px); text-align: center; }
.cta__title { font-size: clamp(25px, 4vw, 42px); line-height: 1.5; }
.cta__text { margin-top: 24px; font-size: 14.5px; line-height: 2.05; color: rgba(255,255,255,0.76); }
.cta__actions { margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta .button { background: var(--c-blue); border-color: var(--c-blue); }
.cta .button:hover { background: #fff; color: var(--c-deep); border-color: #fff; }
.cta .button--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.cta .button--ghost:hover { background: #fff; color: var(--c-deep); }

/* ---------- 13. フッター ---------- */
.site-footer { padding: 40px 0 34px; border-top: 1px solid var(--c-line); }
.site-footer__inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px; flex-wrap: wrap; font-size: 12.5px; color: var(--c-muted);
}
.site-footer__logo { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--c-ink); }

/* ---------- 14. サンプル明示バッジ（全サンプル共通仕様） ---------- */
.sample-badge {
  position: fixed; left: 16px; bottom: 16px; z-index: var(--z-fixed);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 10px; border-radius: 999px;
  background: rgba(31,41,51,0.9); backdrop-filter: blur(8px);
  color: #fff; font-size: 11.5px; letter-spacing: 0.02em; line-height: 1.5;
  box-shadow: 0 4px 18px rgba(31,41,51,0.16); transition: background 0.3s;
}
.sample-badge:hover { background: rgba(31,41,51,0.98); }
.sample-badge__tag {
  background: var(--c-blue); color: #06222f; font-weight: 700;
  padding: 2px 8px; border-radius: 999px; font-size: 10px; letter-spacing: 0.1em;
}
@media (max-width: 640px) {
  .sample-badge { left: 10px; bottom: 10px; padding: 6px 12px 6px 8px; font-size: 10.5px; }
  .sample-badge__text { max-width: 15em; }
}

/* ---------- 15. SPナビ ---------- */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .global-nav {
    position: fixed; inset: 0; z-index: var(--z-nav); background: var(--c-white);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 38px;
    opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
  }
  .global-nav.is-open { opacity: 1; visibility: visible; }
  .global-nav ul { flex-direction: column; text-align: center; gap: 24px; }
  .global-nav ul a { font-family: var(--font-display); font-weight: 800; font-size: 19px; }
}

/* ---------- 16. モーション基盤（精密系: 短く・小さく） ---------- */
.js-reveal {
  opacity: 0; transform: translateY(12px);
  transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}
.js-reveal.is-inview { opacity: 1; transform: none; }
.js-reveal[data-delay="1"] { transition-delay: 0.06s; }
.js-reveal[data-delay="2"] { transition-delay: 0.12s; }
.js-reveal[data-delay="3"] { transition-delay: 0.18s; }

/* ---------- 17. モーション停止（reduced-motion環境のみボタン表示） ---------- */
.motion-stop {
  display: none;
  position: fixed; right: 16px; bottom: 16px; z-index: var(--z-fixed);
  padding: 10px 16px; font: inherit; font-size: 12px;
  background: var(--c-white); color: var(--c-ink);
  border: 1px solid var(--c-line); border-radius: 999px; cursor: pointer;
}
@media (prefers-reduced-motion: reduce) { .motion-stop { display: block; } }
html.is-motion-off *, html.is-motion-off *::before, html.is-motion-off *::after {
  transition-duration: 0.01ms !important;
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  scroll-behavior: auto !important;
}
html.is-motion-off .js-reveal { opacity: 1; transform: none; }

/* ================================================================
   sample-notice:v1 — サンプル表記（14本共通・apply_sample_notice.py が生成）
   帯 / 商品CTAのモーダル / ラクシス導線 / フッター注記
   ================================================================ */
:root {
  --sample-bar-bg: #14405c;
  --sample-bar-fg: #ffffff;
  --sample-bar-h: 40px;
  --sample-font: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  --laxis-band-bg: #f2f4f6;
  --laxis-band-fg: #1f2933;
  --laxis-band-line: rgba(0, 0, 0, 0.1);
  --z-sample-bar: 3000;
  --z-sample-modal: 4000;
}

/* ---- 1. 最上部の固定帯 ---- */
.sample-bar {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-sample-bar);
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
  min-height: 40px; padding: 8px 14px;
  background: var(--sample-bar-bg); color: var(--sample-bar-fg);
  font-family: var(--sample-font); font-size: 12.5px; font-weight: 500;
  line-height: 1.6; letter-spacing: 0.02em; text-align: center;
}
.sample-bar__tag {
  flex: none; background: var(--sample-bar-fg); color: var(--sample-bar-bg);
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em;
  padding: 3px 9px; border-radius: 3px; white-space: nowrap;
}
.sample-bar__text b { font-weight: 700; }
.sample-bar__by { opacity: 0.72; }
body { padding-top: var(--sample-bar-h); }
.site-header { top: var(--sample-bar-h); }
.skip-link:focus { top: calc(var(--sample-bar-h) + 12px); }
@media (max-width: 640px) {
  :root { --sample-bar-h: 54px; }
  .sample-bar { font-size: 11px; gap: 6px; padding: 7px 12px; }
  .sample-bar__tag { font-size: 9.5px; padding: 2px 7px; }
  .sample-bar__by { display: block; width: 100%; }
}

/* ---- 2. 商品CTAのモーダル ---- */
.sample-modal {
  position: fixed; inset: 0; z-index: var(--z-sample-modal);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  font-family: var(--sample-font);
}
.sample-modal[hidden] { display: none; }
.sample-modal__backdrop { position: absolute; inset: 0; background: rgba(8, 10, 14, 0.66); backdrop-filter: blur(3px); }
.sample-modal__panel {
  position: relative; width: min(480px, 100%); background: #fff; color: #1f2933;
  border-radius: 16px; padding: 34px 30px 28px; text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35); border-top: 4px solid var(--sample-bar-bg);
}
.sample-modal__tag {
  display: inline-block; background: var(--sample-bar-bg); color: var(--sample-bar-fg);
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em;
  padding: 4px 10px; border-radius: 3px; margin-bottom: 18px;
}
.sample-modal__title { font-size: 20px; font-weight: 700; line-height: 1.6; margin-bottom: 14px; color: #1f2933; }
.sample-modal__text { font-size: 13.5px; line-height: 2; color: #56606b; margin-bottom: 26px; text-align: left; }
.sample-modal__actions { display: flex; flex-direction: column; gap: 10px; }
.sample-modal__button {
  display: block; background: var(--sample-bar-bg); color: var(--sample-bar-fg); text-decoration: none;
  font-size: 15px; font-weight: 700; padding: 16px 20px; border-radius: 11px;
}
.sample-modal__close {
  display: block; width: 100%; background: none; border: 1px solid #d5dbe1; color: #56606b;
  font-family: inherit; font-size: 13.5px; padding: 14px 20px; border-radius: 11px; cursor: pointer;
}
.sample-modal__close:hover { background: #f2f4f6; }

/* ---- 3. 最下部の案内帯（架空フッターの下） ---- */
/* 下の余白は、左下に固定されている SAMPLE バッジに文字が隠されないための逃げ */
.laxis-band {
  position: relative; z-index: 1;
  background: var(--laxis-band-bg); color: var(--laxis-band-fg);
  border-top: 1px solid var(--laxis-band-line);
  font-family: var(--sample-font); text-align: center;
  padding: 32px 6vw 58px;
}
.laxis-band__text { font-size: 12.5px; line-height: 1.95; opacity: 0.85; margin: 0 0 18px; }
.laxis-band__text b { font-weight: 700; }
.laxis-band__text .nb { display: inline-block; }
.laxis-band__actions { display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: center; align-items: center; }
.laxis-band__button {
  display: inline-flex; align-items: center; background: var(--sample-bar-bg); color: var(--sample-bar-fg);
  font-size: 13.5px; font-weight: 700; text-decoration: none; padding: 13px 28px; border-radius: 10px;
}
.laxis-band__back {
  color: inherit; font-size: 12px; opacity: 0.68;
  text-decoration: underline; text-underline-offset: 3px;
}
.laxis-band__back:hover { opacity: 1; }
@media (max-width: 640px) {
  .laxis-band { padding: 28px 20px 82px; }
}

/* ---- 4. フッターの注記 ---- */
.sample-note {
  margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(128, 128, 128, 0.3);
}
.sample-note p {
  font-family: var(--sample-font); font-size: 12px; line-height: 1.95;
  opacity: 0.9; margin: 0; text-align: left;
}
