/* =============================================================
   熟女の人気アダルト動画 — Unified Stylesheet
   Replaces: style.css / resp.css / pager.css / pan.css
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Zen+Old+Mincho:wght@400;700;900&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --c-bg:        #0e0e0e;
  --c-surface:   #181818;
  --c-card:      #1f1f1f;
  --c-card-h:    #272727;
  --c-border:    #2c2c2c;
  --c-border2:   #3a3a3a;
  --c-gold:      #c9922a;
  --c-gold-l:    #e8b84d;
  --c-gold-d:    #8a6118;
  --c-text:      #ede8df;
  --c-text2:     #a09880;
  --c-text3:     #595040;
  --c-red:       #c83232;
  --c-green:     #2e8f5a;
  --f-head:      'Zen Old Mincho', serif;
  --f-body:      'Noto Sans JP', sans-serif;
  --r:           4px;
  --r-lg:        8px;
  --shadow:      0 2px 16px rgba(0,0,0,.55);
  --t:           .18s ease;
  --max-w:       1160px;
  --header-h:    56px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.75;
  min-height: 100vh;
}
a { color: var(--c-gold-l); text-decoration: none; transition: color var(--t); }
a:hover { color: #fff; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ── Layout helpers ─────────────────────────────────────────── */
.grider {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 16px;
}

/* Two-column page wrapper */
.l-page {
  display: grid;
  grid-template-columns: 1fr 268px;
  grid-template-rows: auto 1fr;
  column-gap: 28px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 16px 56px;
}
.l-breadcrumb { grid-column: 1 / -1; }
.l-main       { grid-column: 1; min-width: 0; }
.l-side       { grid-column: 2; min-width: 0; }

/* ── Site Header ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 16px;
}
.site-logo {
  font-family: var(--f-head);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--c-text);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
}
.site-logo::before {
  content: '♛';
  color: var(--c-gold);
  font-size: 18px;
  flex-shrink: 0;
}
.site-logo a { color: inherit; }
.site-logo a:hover { color: var(--c-gold-l); }

/* ── Global Nav ─────────────────────────────────────────────── */
.global-nav-wrap {
  background: var(--c-surface);
  border-bottom: 2px solid var(--c-gold-d);
}
.global-menu {
  display: flex;
  flex-wrap: wrap;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 16px;
}
.global-menu li a {
  display: block;
  padding: 9px 13px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--c-text2);
  border-right: 1px solid var(--c-border);
  letter-spacing: .03em;
  transition: background var(--t), color var(--t);
}
.global-menu li a:hover {
  background: rgba(201,146,42,.12);
  color: var(--c-gold-l);
}
.global-menu li.current a { color: var(--c-gold-l); }

/* hamburger */
.btn-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
  flex-shrink: 0;
}
.btn-hamburger span {
  display: block;
  height: 2px;
  background: var(--c-text2);
  border-radius: 2px;
  transition: all .28s ease;
}
.btn-hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.btn-hamburger.is-open span:nth-child(2) { opacity: 0; }
.btn-hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 4px;
  font-size: 11.5px;
  color: var(--c-text3);
  padding: 10px 0 14px;
}
.breadcrumb li { display: flex; align-items: center; gap: 4px; }
.breadcrumb li + li::before { content: '›'; color: var(--c-text3); }
.breadcrumb a { color: var(--c-text2); }
.breadcrumb a:hover { color: var(--c-gold-l); }

/* ── Section headings ───────────────────────────────────────── */
.hdg-2 {
  font-family: var(--f-head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 10px 16px;
  margin-bottom: 20px;
  border-left: 4px solid var(--c-gold);
  background: linear-gradient(90deg, rgba(201,146,42,.08), transparent 70%);
  line-height: 1.4;
}
.hdg-3 {
  font-family: var(--f-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .03em;
  padding-bottom: 8px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--c-border2);
  position: relative;
}
.hdg-3::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 44px; height: 2px;
  background: var(--c-gold);
}

/* ── Affiliate notice ───────────────────────────────────────── */
.notice-affiliate {
  font-size: 11px;
  color: var(--c-text3);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  padding: 7px 12px;
  margin-bottom: 18px;
}

/* ── Label / Feature box ────────────────────────────────────── */
.feature-box {
  background: var(--c-card);
  border: 1px solid var(--c-gold-d);
  border-radius: var(--r-lg);
  padding: 16px 18px;
  margin-bottom: 22px;
}
.feature-box__title {
  font-family: var(--f-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-gold-l);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-border2);
}
.feature-box__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.feature-box__list li a {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(201,146,42,.08);
  border: 1px solid var(--c-gold-d);
  border-radius: 20px;
  font-size: 12.5px;
  color: var(--c-gold-l);
  transition: background var(--t), color var(--t);
}
.feature-box__list li a:hover {
  background: var(--c-gold);
  color: #fff;
}

/* ── Product grid ───────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(174px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.product-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(201,146,42,.14);
  border-color: var(--c-gold-d);
}
.product-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #111;
}
.product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-card__img img { transform: scale(1.05); }
.product-card__body {
  padding: 10px 11px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.product-card__title {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--c-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__meta {
  margin-top: auto;
  font-size: 11px;
  color: var(--c-text3);
}
.tag-price {
  display: inline-block;
  color: var(--c-gold);
  font-size: 11px;
  font-weight: 600;
}
.tag-date { color: var(--c-text3); font-size: 11px; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: block;
  text-align: center;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  border-radius: var(--r);
  margin: 4px 8px;
  cursor: pointer;
  transition: filter var(--t), transform var(--t);
  border: none;
  line-height: 1.4;
}
.btn:hover { filter: brightness(1.18); transform: translateY(-1px); }
.btn--gold  { background: linear-gradient(135deg, var(--c-gold-d), var(--c-gold));  color: #fff; }
.btn--green { background: linear-gradient(135deg, #1e6b3a, #2b9652); color: #fff; }
.btn--red   { background: linear-gradient(135deg, #8a1f1f, var(--c-red)); color: #fff; }

/* ── List view (product_box2) ───────────────────────────────── */
.product-list-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: var(--c-card);
  border-bottom: 1px solid var(--c-border);
  transition: background var(--t);
}
.product-list-item:hover { background: var(--c-card-h); }
.product-list-item:first-child { border-radius: var(--r-lg) var(--r-lg) 0 0; }
.product-list-item:last-child  { border-radius: 0 0 var(--r-lg) var(--r-lg); border-bottom: none; }
.product-list-item__img {
  flex-shrink: 0;
  width: 104px; height: 70px;
  overflow: hidden;
  border-radius: var(--r);
  background: #111;
}
.product-list-item__img img { width: 100%; height: 100%; object-fit: cover; }
.product-list-item__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.product-list-item__title {
  font-size: 12.5px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-list-item__title a { color: var(--c-text); }
.product-list-item__title a:hover { color: var(--c-gold-l); }

/* ── Sidebar ────────────────────────────────────────────────── */
.side-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 15px 14px;
  margin-bottom: 18px;
}
.side-hdg {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-gold-l);
  background: rgba(201,146,42,.06);
  border-left: 3px solid var(--c-gold);
  padding: 7px 10px;
  margin: -15px -14px 13px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

.kw-cloud { display: flex; flex-wrap: wrap; gap: 5px 3px; line-height: 1.6; }
.kw-cloud a {
  font-size: 12px;
  color: var(--c-text2);
  padding: 1px 2px;
}
.kw-cloud a:hover { color: var(--c-gold-l); }

.side-menu li { border-bottom: 1px solid var(--c-border); }
.side-menu li a {
  display: block;
  padding: 7px 2px;
  font-size: 13px;
  color: var(--c-text2);
}
.side-menu li a:hover { color: var(--c-gold-l); padding-left: 4px; }

/* sidebar product */
.side-product {
  display: flex;
  gap: 9px;
  padding: 8px 0;
  border-bottom: 1px solid var(--c-border);
}
.side-product:last-child { border-bottom: none; padding-bottom: 0; }
.side-product__img {
  flex-shrink: 0;
  width: 68px; height: 46px;
  overflow: hidden;
  border-radius: var(--r);
  background: #111;
}
.side-product__img img { width: 100%; height: 100%; object-fit: cover; }
.side-product__body { flex: 1; min-width: 0; }
.side-product__title a {
  font-size: 11px;
  color: var(--c-text2);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.side-product__title a:hover { color: var(--c-gold-l); }

/* search form */
.search-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.search-form__input {
  width: 100%;
  background: var(--c-bg);
  border: 1px solid var(--c-border2);
  border-radius: var(--r);
  color: var(--c-text);
  padding: 8px 11px;
  font-size: 13px;
  outline: none;
  transition: border-color var(--t);
}
.search-form__input:focus { border-color: var(--c-gold); }
.search-form__input::placeholder { color: var(--c-text3); }
.search-form__btn {
  background: linear-gradient(135deg, var(--c-gold-d), var(--c-gold));
  color: #fff;
  border: none;
  border-radius: var(--r);
  padding: 9px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .06em;
  transition: filter var(--t);
}
.search-form__btn:hover { filter: brightness(1.15); }

/* month grid on date page */
.month-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin-bottom: 20px;
}
.month-grid a {
  display: block;
  text-align: center;
  padding: 8px 4px;
  background: var(--c-card);
  border: 1px solid var(--c-border2);
  border-radius: var(--r);
  font-size: 12.5px;
  color: var(--c-text2);
  transition: background var(--t), color var(--t), border-color var(--t);
}
.month-grid a:hover {
  background: rgba(201,146,42,.12);
  border-color: var(--c-gold-d);
  color: var(--c-gold-l);
}
.month-grid a.active {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: #fff;
}

/* ── Detail page ────────────────────────────────────────────── */
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 26px;
  margin-bottom: 28px;
}
.detail-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: #111;
}
.detail-img img { width: 100%; height: auto; }
.detail-info { display: flex; flex-direction: column; gap: 14px; }
.detail-title {
  font-family: var(--f-head);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .02em;
}
.detail-price {
  font-size: 24px;
  font-weight: 900;
  color: var(--c-gold);
  letter-spacing: -.02em;
}
.detail-table { font-size: 13px; border-collapse: collapse; width: 100%; }
.detail-table th, .detail-table td {
  padding: 7px 10px;
  border-bottom: 1px solid var(--c-border);
  text-align: left;
  vertical-align: top;
}
.detail-table th {
  width: 80px;
  font-weight: 500;
  color: var(--c-text3);
  white-space: nowrap;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.detail-table td { color: var(--c-text2); }
.detail-btns { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
.detail-btns .btn { margin: 0; padding: 12px; font-size: 13.5px; }

/* sample image grid */
.sample-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(144px, 1fr));
  gap: 8px;
  margin-top: 16px;
}
.sample-grid a {
  display: block;
  overflow: hidden;
  border-radius: var(--r);
  border: 1px solid var(--c-border);
}
.sample-grid img {
  width: 100%; height: 100px;
  object-fit: cover;
  transition: transform .3s ease;
}
.sample-grid a:hover img { transform: scale(1.07); }

/* ── Static page content ────────────────────────────────────── */
.static-body {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-gold);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 24px 26px;
  line-height: 1.9;
  font-size: 13.5px;
  color: var(--c-text2);
  margin-bottom: 20px;
}
.static-body h3 {
  font-family: var(--f-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
  margin: 22px 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--c-border2);
}
.static-body h3:first-child { margin-top: 0; }
.static-body a { color: var(--c-gold-l); }
.static-body a:hover { color: #fff; }
.static-body img { max-width: 100%; border-radius: var(--r); margin-top: 10px; }

/* ── Pagination ─────────────────────────────────────────────── */
#pagenation { margin: 28px 0; }
#pagenation ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
#pagenation li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  background: var(--c-card);
  border: 1px solid var(--c-border2);
  border-radius: var(--r);
  color: var(--c-text2);
  font-size: 13px;
  transition: all var(--t);
}
#pagenation li a:hover,
#pagenation li.active a {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: #fff;
}

/* ── Page-top button ────────────────────────────────────────── */
#page_top {
  position: fixed;
  bottom: -60px;
  right: 20px;
  z-index: 300;
  transition: bottom .3s ease;
}
#page_top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--c-gold);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(201,146,42,.45);
}
#page_top a::after {
  content: '↑';
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  padding: 28px 16px 24px;
  text-align: center;
}
.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 18px;
  margin-bottom: 14px;
}
.site-footer__nav a {
  font-size: 12px;
  color: var(--c-text3);
}
.site-footer__nav a:hover { color: var(--c-gold-l); }
.site-footer__copy {
  font-size: 11px;
  color: var(--c-text3);
}

/* ── 404 page ───────────────────────────────────────────────── */
.page-404 {
  text-align: center;
  padding: 80px 20px;
}
.page-404__code {
  font-family: var(--f-head);
  font-size: 96px;
  font-weight: 900;
  color: var(--c-gold);
  line-height: 1;
  margin-bottom: 16px;
}
.page-404__msg {
  font-size: 16px;
  color: var(--c-text2);
  margin-bottom: 8px;
}
.page-404__sub {
  font-size: 13px;
  color: var(--c-text3);
  margin-bottom: 32px;
}
.btn-back {
  display: inline-block;
  padding: 13px 36px;
  background: linear-gradient(135deg, var(--c-gold-d), var(--c-gold));
  color: #fff;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  transition: filter var(--t);
}
.btn-back:hover { filter: brightness(1.15); color: #fff; }

/* ── Utilities ──────────────────────────────────────────────── */
.u-clear { clear: both; }
.link-plain { color: var(--c-text2); }
.link-plain:hover { color: var(--c-gold-l); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .l-page {
    grid-template-columns: 1fr;
  }
  .l-side { grid-column: 1; }
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .month-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 640px) {
  /* hamburger visible */
  .btn-hamburger { display: flex; }

  /* drawer nav */
  .global-nav-wrap { position: relative; }
  .global-nav-wrap .global-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: 78vw; max-width: 300px;
    height: 100vh;
    background: var(--c-surface);
    border-left: 1px solid var(--c-border2);
    overflow-y: auto;
    z-index: 250;
    padding-top: calc(var(--header-h) + 10px);
    box-shadow: -4px 0 24px rgba(0,0,0,.6);
  }
  .global-nav-wrap .global-menu.is-open { display: flex; }
  .global-menu li a {
    padding: 13px 20px;
    border-right: none;
    border-bottom: 1px solid var(--c-border);
    font-size: 14px;
  }

  .site-header__inner { position: relative; }

  /* grid cols on mobile */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .hdg-2 { font-size: 17px; }
  .feature-box__list { display: grid; grid-template-columns: 1fr 1fr; }
  .month-grid { grid-template-columns: repeat(3, 1fr); }
  .detail-layout { gap: 18px; }
  .detail-price { font-size: 20px; }
}

@media (max-width: 380px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .sample-grid  { grid-template-columns: repeat(2, 1fr); }
}

/* ── Contact Form ───────────────────────────────────────────── */
.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.form-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 28px 30px;
  margin-bottom: 24px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-row:last-of-type { margin-bottom: 0; }
.form-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--c-text2);
  letter-spacing: .06em;
}
.form-label .req {
  display: inline-block;
  background: var(--c-red);
  color: #fff;
  font-size: 10px;
  padding: 1px 5px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
  font-weight: 700;
  letter-spacing: .04em;
}
.form-input,
.form-textarea {
  width: 100%;
  background: var(--c-bg);
  border: 1px solid var(--c-border2);
  border-radius: var(--r);
  color: var(--c-text);
  padding: 10px 13px;
  font-size: 14px;
  font-family: var(--f-body);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(201,146,42,.15);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--c-text3); }
.form-textarea {
  height: 160px;
  resize: vertical;
  line-height: 1.7;
}
.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.btn-submit {
  flex: 1;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  background: linear-gradient(135deg, var(--c-gold-d), var(--c-gold));
  color: #fff;
  transition: filter var(--t), transform var(--t);
}
.btn-submit:hover { filter: brightness(1.15); transform: translateY(-1px); }

/* confirm table */
.confirm-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.confirm-table th,
.confirm-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--c-border);
  text-align: left;
  font-size: 13.5px;
  vertical-align: top;
}
.confirm-table th {
  width: 130px;
  font-weight: 600;
  color: var(--c-text3);
  font-size: 12px;
  letter-spacing: .06em;
  white-space: nowrap;
}
.confirm-table td { color: var(--c-text2); white-space: pre-wrap; word-break: break-all; }

/* alert / notice boxes */
.alert {
  padding: 14px 18px;
  border-radius: var(--r);
  margin-bottom: 18px;
  font-size: 13.5px;
  line-height: 1.7;
}
.alert--error {
  background: rgba(200,50,50,.12);
  border: 1px solid var(--c-red);
  color: #f0a0a0;
}
.alert--success {
  background: rgba(46,143,90,.1);
  border: 1px solid var(--c-green);
  color: #88d4a8;
  text-align: center;
  padding: 28px 24px;
  font-size: 15px;
}
.alert--success p { margin-bottom: 8px; }

@media (max-width: 640px) {
  .form-block { padding: 20px 16px; }
  .confirm-table th { width: 90px; font-size: 11px; }
}
