/* ============================================================
   salon-05-pop
   カラフルポップ / ネイル・アイラッシュサロン
   bg #fffaf3 / ink #2b2350 / pink #ff5d8f / violet #7c5cff / yellow #ffc531
   ============================================================ */

:root {
  --bg: #fffaf3;
  --ink: #2b2350;
  --ink-soft: #6b6289;
  --pink: #ff5d8f;
  --violet: #7c5cff;
  --yellow: #ffc531;
  --white: #ffffff;
  --round: "M PLUS Rounded 1c", sans-serif;
  --en: "Quicksand", sans-serif;
  --sans: "Noto Sans JP", sans-serif;
  --offset-shadow: 6px 6px 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
}

.inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(255, 250, 243, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--ink);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--round);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.logo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pink);
  border: 2px solid var(--ink);
  flex-shrink: 0;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-family: var(--en);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding-bottom: 2px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px;
  background: var(--violet);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after { transform: scaleX(1); }

.nav-cta a {
  display: inline-block;
  font-family: var(--round);
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  background: var(--pink);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 8px 22px;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
}

.nav-cta a:hover {
  transform: translate(-2px, -2px) scale(1.03);
  box-shadow: 6px 6px 0 var(--ink);
}

.nav-cta a::after { display: none; }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 160px 0 96px;
}

/* 巨大アウトライン欧文（背景・画面からはみ出す） */
.hero-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  z-index: 0;
  font-family: var(--en);
  font-weight: 700;
  font-size: clamp(140px, 24vw, 360px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 2px color-mix(in srgb, var(--ink) 16%, transparent);
  pointer-events: none;
  user-select: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  filter: blur(2px);
  opacity: 0.5;
}

.hero-blob-1 {
  width: 420px;
  height: 420px;
  top: -170px;
  right: -130px;
  background: var(--yellow);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-sub {
  display: inline-block;
  font-family: var(--en);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 6px 18px;
  box-shadow: var(--offset-shadow) var(--ink);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--round);
  font-weight: 800;
  font-size: clamp(40px, 9vw, 84px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.hero-en {
  margin-top: 18px;
  font-family: var(--en);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--pink);
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-photo {
  width: min(100%, 420px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--ink);
  box-shadow: var(--offset-shadow) var(--ink);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* タイポだけのピル（枠2px・オフセットシャドウ維持） */
.sticker {
  position: absolute;
  font-family: var(--round);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 9px 18px;
  box-shadow: var(--offset-shadow) var(--ink);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sticker:hover { transform: scale(1.08) rotate(-2deg); }

.sticker-pink { background: var(--pink); color: var(--white); }

/* 回転は1要素だけ・残りは水平 */
.sticker-tilt { top: 3%; left: -5%; transform: rotate(-7deg); }
.sticker-tilt:hover { transform: scale(1.08) rotate(-9deg); }
.sticker-a { bottom: 12%; right: -7%; }
.sticker-b { top: 44%; right: -11%; }

/* ---------- Typo ribbon（静的・中央ワードマーク） ---------- */
.ribbon {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--ink);
  padding: 15px 24px;
}

.ribbon-word {
  font-family: var(--en);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
}

/* ---------- News ---------- */
.news {
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: var(--white);
}

.news-inner {
  display: flex;
  gap: 40px;
  padding-top: 28px;
  padding-bottom: 28px;
  align-items: flex-start;
}

.news-label {
  flex-shrink: 0;
  font-family: var(--round);
  font-weight: 800;
  font-size: 15px;
  color: var(--white);
  background: var(--violet);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 6px 18px;
}

.news-list { flex: 1; }

.news-list li {
  display: flex;
  gap: 20px;
  padding: 6px 0;
  font-size: 14px;
}

.news-list time {
  font-family: var(--en);
  font-weight: 700;
  color: var(--pink);
  flex-shrink: 0;
}

/* ---------- Sections（共通） ---------- */
.section { padding: 110px 0 0; }

.section-head {
  margin-bottom: 48px;
}

.section-badge {
  display: inline-block;
  font-family: var(--en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 5px 18px;
  margin-bottom: 18px;
  box-shadow: 4px 4px 0 var(--ink);
}

/* タイポだけのピルに統一（枠2px＋オフセット。色は文字ドットのみ） */
.badge-pink::before,
.badge-violet::before,
.badge-yellow::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: 1px;
}
.badge-pink::before { background: var(--pink); }
.badge-violet::before { background: var(--violet); }
.badge-yellow::before { background: var(--yellow); }

.section-title {
  font-family: var(--round);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.5;
  color: var(--ink);
}

/* ---------- Concept ---------- */
.concept-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.concept-para {
  color: var(--ink-soft);
  line-height: 2;
  margin-bottom: 1.4em;
}

.concept-media {
  position: relative;
}

.concept-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 32px;
  border: 5px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

/* ---------- Menu ---------- */
.menu-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.menu-group {
  background: var(--white);
  border: 4px solid var(--ink);
  border-radius: 24px;
  padding: 28px 26px;
  box-shadow: var(--offset-shadow) var(--ink);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.menu-group:hover {
  transform: translate(-3px, -3px) scale(1.01);
  box-shadow: 9px 9px 0 var(--ink);
}

.menu-category {
  display: inline-block;
  font-family: var(--round);
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  padding: 6px 20px;
  margin-bottom: 18px;
}

.menu-item {
  padding: 14px 0;
  border-bottom: 2px dashed #e3d9c8;
}

.menu-item:last-child { border-bottom: none; }

.menu-item-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.menu-name { font-size: 15px; font-weight: 500; }

.menu-price {
  flex-shrink: 0;
  font-family: var(--en);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  background: var(--pink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 5px 16px;
}

.menu-note {
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--ink-soft);
}

.menu-foot {
  margin-top: 32px;
  font-size: 12.5px;
  color: var(--ink-soft);
}

/* ---------- Works / Gallery ---------- */
.works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.works-item {
  background: var(--white);
  border: 4px solid var(--ink);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--offset-shadow) var(--ink);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.works-item:hover {
  transform: translate(-3px, -3px) scale(1.02) rotate(-1deg);
}

.works-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.works-text { padding: 16px 18px 20px; }

.works-tag {
  display: inline-block;
  font-family: var(--en);
  font-size: 11px;
  font-weight: 700;
  color: var(--pink);
  border: 2px solid var(--pink);
  border-radius: 999px;
  padding: 2px 12px;
  margin-bottom: 8px;
}

.works-title {
  font-family: var(--round);
  font-size: 15px;
  font-weight: 700;
}

.works-desc {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ---------- Staff ---------- */
.staff-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.staff-item {
  background: var(--white);
  border: 4px solid var(--ink);
  border-radius: 26px;
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: center;
  box-shadow: var(--offset-shadow) var(--ink);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.staff-item:hover {
  transform: translate(-3px, -3px) scale(1.01);
  box-shadow: 9px 9px 0 var(--ink);
}

.staff-media {
  flex-shrink: 0;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--ink);
}

.staff-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-role {
  font-family: var(--en);
  font-size: 12px;
  font-weight: 700;
  color: var(--pink);
}

.staff-name {
  font-family: var(--round);
  font-size: 19px;
  font-weight: 800;
  margin: 6px 0 10px;
}

.staff-bio {
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.9;
}

/* ---------- Voices ---------- */
.voices-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.voices-item {
  background: var(--yellow);
  border: 4px solid var(--ink);
  border-radius: 22px;
  padding: 30px 26px;
  box-shadow: var(--offset-shadow) var(--ink);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.voices-item:nth-child(2) { background: var(--pink); color: var(--white); }
.voices-item:nth-child(3n) { background: var(--violet); color: var(--white); }

.voices-item:hover { transform: translate(-3px, -3px) scale(1.01) rotate(-1deg); }

.voices-item::before {
  content: "\201C";
  display: block;
  font-family: var(--round);
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}

.voices-text {
  font-size: 13.5px;
  line-height: 1.9;
}

.voices-author {
  margin-top: 16px;
  font-family: var(--en);
  font-size: 12px;
  font-weight: 700;
}

/* ---------- Flow ---------- */
.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.flow-item {
  background: var(--white);
  border: 4px solid var(--ink);
  border-radius: 22px;
  padding: 26px 22px;
  box-shadow: var(--offset-shadow) var(--ink);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.flow-item:hover { transform: translate(-3px, -3px) scale(1.01); }

.flow-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: var(--en);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.flow-title {
  font-family: var(--round);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}

.flow-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.85;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 780px;
}

.faq-item {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 22px 26px;
  margin-bottom: 18px;
}

.faq-q {
  display: flex;
  gap: 14px;
  font-size: 15.5px;
  font-weight: 700;
}

.faq-a {
  margin-top: 12px;
  display: flex;
  gap: 14px;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.9;
}

.faq-mark {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-family: var(--round);
  font-size: 13px;
  font-weight: 800;
  border: 2px solid var(--ink);
}

.faq-mark-q { background: var(--pink); color: var(--white); }
.faq-mark-a { background: var(--yellow); color: var(--ink); }

/* ---------- Access ---------- */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
}

.access-info {
  background: var(--white);
  border: 4px solid var(--ink);
  border-radius: 24px;
  padding: 8px 28px;
  box-shadow: var(--offset-shadow) var(--ink);
}

.access-info div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 2px dashed #e3d9c8;
  font-size: 13.5px;
}

.access-info div:last-child { border-bottom: none; }

.access-info dt {
  font-family: var(--round);
  font-weight: 700;
  color: var(--violet);
}

.access-info dd a { border-bottom: 2px solid var(--pink); }

.access-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 4px solid var(--ink);
  border-radius: 24px;
}

/* ---------- CTA ---------- */
.cta {
  margin-top: 130px;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--violet);
  opacity: 0.4;
}

.cta-inner {
  position: relative;
  z-index: 1;
  padding-top: 90px;
  padding-bottom: 90px;
  text-align: center;
}

.cta-title {
  font-family: var(--round);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  margin: 16px 0 14px;
  color: var(--white);
}

.cta-text {
  font-size: 14px;
  color: #cfc8ea;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  min-width: 220px;
  font-family: var(--round);
  font-weight: 800;
  font-size: 15px;
  text-align: center;
  padding: 16px 30px;
  border-radius: 999px;
  border: 3px solid var(--ink);
  box-shadow: var(--offset-shadow) var(--ink);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
}

.btn-ghost {
  background: var(--white);
  color: var(--ink);
}

.btn:hover {
  transform: translate(-3px, -3px) scale(1.02);
  box-shadow: 9px 9px 0 var(--ink);
}

.cta .btn-primary {
  border-color: var(--white);
  box-shadow: var(--offset-shadow) var(--white);
}

.cta .btn-ghost {
  border-color: var(--white);
  box-shadow: var(--offset-shadow) var(--ink);
}

.cta .btn:hover { box-shadow: 9px 9px 0 var(--white); }

.cta-sns {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 28px;
}

.cta-sns a {
  font-family: var(--en);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  border-bottom: 2px solid var(--pink);
  padding-bottom: 4px;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 44px 24px 36px;
  text-align: center;
  background: var(--ink);
  color: var(--white);
}

.footer-logo {
  font-family: var(--round);
  font-size: 15px;
  font-weight: 800;
}

.footer-copy {
  margin-top: 12px;
  font-family: var(--en);
  font-size: 11px;
  color: #b9b0d9;
}

/* ---------- Reveal defaults ---------- */
[data-reveal] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Demo bar ---------- */
.demo-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 20px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  border-top: 3px solid var(--yellow);
}

.demo-bar p { max-width: 900px; }

.demo-bar button.js-demo-close {
  flex-shrink: 0;
  font-family: var(--en);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--white);
  border-radius: 999px;
  padding: 5px 16px;
}

/* ---------- Skin（店舗別差別化 / TEMPLATE_SPEC §9） ---------- */
.u-alt-font .hero-title,
.u-alt-font .section-title,
.u-alt-font .works-title,
.u-alt-font .staff-name,
.u-alt-font .flow-title,
.u-alt-font .cta-title {
  font-family: "Zen Maru Gothic", sans-serif;
}

body.u-btn-square .btn, body.u-btn-square .nav-cta a { border-radius: 0; }
body.u-btn-round .btn, body.u-btn-round .nav-cta a { border-radius: 8px; }
body.u-btn-pill .btn, body.u-btn-pill .nav-cta a { border-radius: 999px; }

/* ---------- Mobile ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-media { order: -1; }
  .sticker { font-size: 12px; padding: 8px 14px; }
  .menu-groups { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .staff-list { grid-template-columns: 1fr; }
  .voices-list { grid-template-columns: 1fr; }
  .flow-list { grid-template-columns: repeat(2, 1fr); }
  .access-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 720px) {
  .site-header { padding: 14px 20px; }

  .site-nav {
    position: fixed;
    inset: 0;
    top: 64px;
    background: var(--bg);
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 26px;
    text-align: center;
  }

  .site-nav a { font-size: 16px; }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 110;
  }

  .nav-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    border-radius: 2px;
    background: var(--ink);
    margin: 0 auto;
    transition: transform 0.3s ease;
  }

  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(4.5px) rotate(20deg); }
  body.nav-open .nav-toggle span:nth-child(2) { transform: translateY(-4.5px) rotate(-20deg); }

  .inner { padding: 0 20px; }
  .hero { padding: 116px 0 64px; }
  .hero-blob-1 { width: 240px; height: 240px; }
  .hero-word { font-size: clamp(96px, 40vw, 200px); opacity: 0.9; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-photo { border-width: 5px; }
  .sticker-tilt { left: -2%; }
  .sticker-a { right: -2%; }
  .sticker-b { display: none; }
  .ribbon-word { font-size: 17px; letter-spacing: 0.18em; }

  .section { padding-top: 76px; }
  .section-head { margin-bottom: 32px; }

  .concept-grid { grid-template-columns: 1fr; gap: 32px; }

  .news-inner { flex-direction: column; gap: 14px; }

  .works-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .flow-list { grid-template-columns: 1fr; }

  .staff-item { flex-direction: column; text-align: center; }

  .cta { margin-top: 90px; }
  .btn { min-width: 100%; }
  .cta-actions { flex-direction: column; align-items: stretch; }

  .demo-bar { flex-direction: column; gap: 8px; text-align: center; padding: 10px 16px 12px; }
}
