* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #dea31d;
  --secondary: #e8b12a;
  --primary-hover: var(--secondary);
  --on-primary: #111111;
  --primary-soft: #fff6e4;
  --primary-tint: #faf6ea;
  --primary-wash: #fff4d6;
  --primary-deep: #8a6410;
  --primary-ring: rgba(222, 163, 29, 0.16);

  --ink: #141414;
  --title: var(--ink);
  --text: #5c5c5c;
  --muted: #7a7a7a;
  --faint: #9a9a9a;
  --disabled: #b8b8b8;
  --inverse: #ffffff;
  --inverse-muted: #bdbdbd;

  --bg: #eceef1;
  --bg2: #ffffff;
  --surface: #ffffff;
  --surface-2: #f3f4f6;
  --line: #e1e3e7;
  --line-strong: #d4d6db;
  --foot: #0e0e0e;
  --foot-muted: #8a8a8a;
  --foot-line: #242424;

  --ok: #2c7a45;
  --ok-soft: #e8f6ec;
  --warn: #9a6b00;
  --warn-soft: #fff6e4;
  --danger: #b23b3b;
  --danger-soft: #fdeeee;
  --info: #3d4f9a;
  --info-soft: #eef2ff;
  --note: #6a5a2a;
  --note-soft: #fff8e8;

  --price: var(--ink);
  --price-strike: var(--disabled);

  --r-xs: 0.4rem;
  --r-sm: 0.6rem;
  --r-md: 0.8rem;
  --r-lg: 1.2rem;
  --r-xl: 1.6rem;
  --r-2xl: 2rem;
  --r-pill: 999px;

  --sh-1: 0 0.1rem 0.2rem rgba(20, 20, 20, 0.04), 0 0.6rem 1.6rem rgba(20, 20, 20, 0.055);
  --sh-2: 0 0.4rem 1rem rgba(20, 20, 20, 0.06), 0 1.4rem 3.2rem rgba(20, 20, 20, 0.1);
  --sh-3: 0 1.4rem 3.6rem rgba(20, 20, 20, 0.14);
  --sh-card: var(--sh-1);
  --sh-hover: var(--sh-2);
  --btn-h: 4.4rem;
  --ctrl-h: 4.8rem;
  --bar: 0.32rem;

  --space-1: 0.4rem;
  --space-2: 0.8rem;
  --space-3: 1.2rem;
  --space-4: 1.6rem;
  --space-5: 2.4rem;
  --space-6: 3.2rem;
  --space-7: 4.8rem;
  --space-8: 6.4rem;

  --ff: Manrope, "Segoe UI", sans-serif;
  --fs-xs: 1.12rem;
  --fs-sm: 1.24rem;
  --fs-md: 1.4rem;
  --fs-lg: 1.6rem;
  --fs-xl: 1.8rem;
  --fs-2xl: 2.2rem;
  --fs-3xl: 2.8rem;
  --fs-4xl: 3.2rem;
  --lh-tight: 1.2;
  --lh-snug: 1.35;
  --lh-body: 1.55;
  --lh-loose: 1.7;
  --fw-med: 500;
  --fw-semi: 600;
  --fw-bold: 700;
  --fw-black: 800;
  --track-tight: -0.02em;
  --track-wide: 0.06em;

  --w-content: 134rem;
  --w-page: 86rem;
  --w-auth: 108rem;
  --pad-x: 0;
  --ease: 0.2s ease;
  --ease-out: 0.28s ease;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(8.2px, 0.5729vw, 11px);
}
body {
  font-size: 1.7rem;
  line-height: var(--lh-body);
  color: var(--ink); 
  font-family: var(--ff);
}
body.fixed {
  overflow: hidden;
}
::selection {
  background: var(--primary-wash);
  color: var(--ink);
}
.content {
  max-width: var(--w-content);
  margin: 0 auto;
  position: relative;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.content .content {
  padding: 0;
}
h1,
h2,
h3 {
  font-weight: var(--fw-black);
  color: var(--ink);
  line-height: var(--lh-tight);
  letter-spacing: var(--track-tight);
}
h1 {
  font-size: var(--fs-3xl);
}
h2 {
  font-size: var(--fs-2xl);
}
h3 {
  font-size: var(--fs-xl);
}
li {
  list-style: none;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
i,
em {
  font-style: normal;
}
input,
button,
textarea,
select {
  border: none;
  outline: none;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  text-transform: inherit;
  font-weight: inherit;
  background-color: transparent;
}
button,
input[type="submit"] {
  cursor: pointer;
}
.flex {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}
.flex1 {
  flex: 1;
}
.between {
  justify-content: space-between;
}
.center {
  text-align: center;
}
.flex_center {
  justify-content: center;
}
.flex_top {
  align-items: flex-start;
}
.flex_middle {
  align-items: center;
}
.gap {
  gap: var(--space-5);
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img,
.img.img_cv video,
.img.img_cv iframe,
.img.img_cv picture {
  object-fit: cover;
}
.img.img_ct img {
  object-fit: contain;
}
.img.img_ab {
  position: relative;
}
.img.img_ab img,
.img.img_ab video,
.img.img_ab iframe,
.img.img_ab picture {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_hv {
  overflow: hidden;
}
.img.img_hv img {
  transition: transform 0.4s ease;
}
.img.img_hv:hover img {
  transform: scale(1.04);
}
.img img,
.img video,
.img iframe,
.img picture {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
}
.img_bg {
  position: relative;
  z-index: 2;
}
.img_bg > img,
.img_bg > video,
.img_bg > iframe,
.img_bg > picture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}

.btn,
.btn_line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  text-transform: none;
  transition: background var(--ease), border-color var(--ease), color var(--ease), box-shadow var(--ease), transform var(--ease);
  font-weight: var(--fw-black);
  font-size: 1.42rem;
  line-height: 1;
  min-height: var(--btn-h);
  padding: 0 2.2rem;
  letter-spacing: 0.01em;
  border-radius: var(--r-md);
}
.btn {
  background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
  border: 1px solid #c48d0e;
  color: var(--on-primary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), 0 1px 2px rgba(20, 20, 20, 0.08);
}
.btn:hover {
  background: linear-gradient(180deg, #f0bc3a 0%, var(--secondary) 100%);
  border-color: #b9840c;
  transform: translateY(-0.1rem);
  box-shadow: var(--sh-2);
}
.btn:focus-visible,
.btn_line:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}
.btn.no_a::after,
.btn_line.no_a::after {
  display: none;
}
.btn.is-busy,
.btn_line.is-busy {
  pointer-events: none;
  opacity: 0.78;
  gap: 0.8rem;
}
.btn.is-busy::after,
.btn.no_a.is-busy::after,
.btn_line.is-busy::after,
.btn_line.no_a.is-busy::after {
  display: block;
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: uxia-spin 0.6s linear infinite;
}
.btn.is-busy::after,
.btn.no_a.is-busy::after {
  border-color: rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
}
@keyframes uxia-spin {
  to {
    transform: rotate(360deg);
  }
}
.btn_line {
  background-color: var(--surface);
  border: 1.5px solid var(--ink);
  color: var(--ink);
  font-weight: var(--fw-bold);
  box-shadow: none;
}
.btn_line:hover {
  background-color: var(--ink);
  border-color: var(--ink);
  color: var(--inverse);
}
.btn.ghost,
.btn_ghost {
  background-color: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-weight: var(--fw-bold);
  box-shadow: none;
}
.btn.ghost:hover,
.btn_ghost:hover {
  background-color: var(--surface-2);
  border-color: var(--ink);
  color: var(--ink);
}
.btn.wt {
  background: var(--inverse);
  border-color: var(--inverse);
  color: var(--ink);
  box-shadow: none;
}
.btn.wt:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--on-primary);
}
.btn.pm,
.btn_line.pm {
  font-size: var(--fs-sm);
  min-height: 3.6rem;
  padding: 0 1.5rem;
}
.btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
}

.card:not(.img) {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-card);
}
.card_soft {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
}
.card_lift {
  transition: transform var(--ease-out), box-shadow var(--ease-out), border-color var(--ease);
}
.card_lift:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--sh-hover);
  border-color: #c8cad0;
}

.badge,
.mark {
  display: inline-flex;
  align-items: center;
  height: 2.2rem;
  padding: 0 0.75rem;
  border-radius: var(--r-xs);
  background: var(--primary);
  color: var(--on-primary);
  font-size: var(--fs-xs);
  font-weight: var(--fw-black);
}
.badge.soft {
  background: var(--primary-wash);
  color: var(--primary-deep);
}
.badge.ink {
  background: var(--ink);
  color: var(--inverse);
}

.head.tcon h2,
.section_head h2 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-black);
  color: var(--ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.head.tcon h2::after,
.section_head h2::after {
  content: "";
  display: block;
  width: 2.8rem;
  height: var(--bar);
  margin: 1rem 0 0;
  background: var(--primary);
  border-radius: var(--r-pill);
}
.head.center h2::after,
.head.tcon.center h2::after {
  margin-left: auto;
  margin-right: auto;
}
.head.tcon p,
.section_head p {
  margin-top: 0.7rem;
  font-size: var(--fs-md);
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
  font-weight: var(--fw-med);
}
.head.between {
  align-items: center;
  gap: var(--space-4);
}
a.more {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 1.36rem;
  font-weight: var(--fw-bold);
  color: var(--faint);
}
a.more::after {
  content: '';
  display: block;
  width: 0.55rem;
  height: 0.55rem;
  margin-left: 0.6rem;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--ease);
}
a.more:hover {
  color: var(--primary);
}
a.more:hover::after {
  transform: rotate(45deg) translate(0.15rem, -0.15rem);
}

.trust_strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden; 
  counter-reset: trust;
}
.trust_strip li {
  counter-increment: trust;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-3);  
  transition: background-color var(--ease);
} 
.trust_strip .img {
  width: 4rem;
  height: 4rem;
  padding: 0.8rem;
  flex-shrink: 0;
  border-radius: var(--r-md); 
}
.trust_strip .title {
  font-size: 1.4rem;
  font-weight: var(--fw-black);
  color: var(--ink);
  line-height: var(--lh-tight);
}
.trust_strip .desc {
  margin-top: 0.35rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--muted);
  line-height: var(--lh-snug);
}
.trust_strip:has(.desc) li {
  align-items: center;
  text-align: left;
}
.trust_strip li:not(:has(.img)) {
  align-items: flex-start;
}
.trust_strip li:not(:has(.img)) .title::before {
  content: counter(trust, decimal-leading-zero);
  display: block;
  margin-bottom: 0.55rem;
  font-size: 1.12rem;
  font-weight: var(--fw-black);
  letter-spacing: 0.08em;
  color: var(--primary-deep);
}
.trust_strip.box {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
  overflow: visible;
}
.trust_strip.box li {
  min-height: 0;
  padding: var(--space-4);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-card);
  transition: transform var(--ease-out), box-shadow var(--ease-out), border-color var(--ease);
}
.trust_strip.box li:hover {
  transform: translateY(-0.2rem);
  box-shadow: var(--sh-hover);
  border-color: #c8cad0;
}
.trust_strip.box li:has(.img),
.trust_strip.box li:has(.ico) {
  align-items: flex-start;
}
.trust_strip.box li:has(.img) .title::before,
.trust_strip.box li:has(.ico) .title::before {
  content: none;
  display: none;
}
.trust_strip.box li .img {
  background: var(--primary-soft);
}
.trust_strip.box .desc {
  margin-top: var(--space-1);
}
.trust_strip.ink {
  background: #2a2a2a;
  border-color: #2a2a2a;
  box-shadow: none;
}
.trust_strip.ink li {
  background: var(--ink);
}
.trust_strip.ink li:hover {
  background: #181818;
}
.trust_strip.ink .img {
  background: rgba(222, 163, 29, 0.16);
}
.trust_strip.ink .title,
.trust_strip.ink strong {
  color: var(--primary);
}
.trust_strip.ink .desc,
.trust_strip.ink p {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.28rem;
}

.empty {
  display: none;
  padding: var(--space-7) var(--space-5);
  background: var(--surface);
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-lg);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--muted);
  text-align: center;
}
.empty.show {
  display: block;
}
.empty p + p {
  margin-top: var(--space-2);
  font-weight: var(--fw-med);
}
.empty .btns {
  justify-content: center;
  margin-top: var(--space-4);
}
.empty .btn,
.empty .btn_line {
  margin-top: var(--space-4);
}
.empty .btns .btn,
.empty .btns .btn_line {
  margin-top: 0;
}

.field {
  display: block;
}
.field + .field {
  margin-top: var(--space-3);
}
.field .label {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
  font-weight: var(--fw-black);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}
.field input,
.field select,
.field textarea,
.ctrl {
  display: block;
  width: 100%;
  height: var(--ctrl-h);
  padding: 0 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  font-size: var(--fs-md);
  color: var(--ink);
  box-shadow: inset 0 1px 2px rgba(20, 20, 20, 0.03);
  transition: border-color var(--ease), background-color var(--ease), box-shadow var(--ease);
}
.field textarea,
.ctrl.area {
  height: 12rem;
  padding: 1.2rem 1.5rem;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder,
.ctrl::placeholder {
  color: var(--disabled);
}
.field input:focus,
.field select:focus,
.field textarea:focus,
.ctrl:focus {
  background: var(--surface);
  border-color: var(--primary);
  box-shadow: 0 0 0 0.35rem var(--primary-ring);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: var(--space-1);
  border-bottom: 1px solid var(--line-strong);
}
.tabs button,
.tabs a {
  height: 4.6rem;
  padding: 0 0.2rem;
  margin-right: 2.4rem;
  border-radius: 0;
  background: transparent;
  font-size: 1.4rem;
  font-weight: var(--fw-bold);
  color: var(--muted);
  box-shadow: inset 0 -3px 0 transparent;
}
.tabs button.on,
.tabs button:hover,
.tabs li.on a,
.tabs a:hover {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 -3px 0 var(--primary);
}

.filter_bar {
  margin-bottom: var(--space-4);
  padding: 1rem 2rem;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-card);
}
.filter_bar .box {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: 0.7rem 0;
}
.filter_bar .box + .box {
  border-top: 1px solid var(--line);
}
.filter_bar .label {
  width: 8rem;
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: var(--fw-black);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}
.filter_bar .pick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.filter_bar .pick button {
  height: 3.4rem;
  padding: 0 1.3rem;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--text);
}
.filter_bar .pick button:hover {
  color: var(--ink);
  background: var(--surface-2);
}
.filter_bar .pick li.on button {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--inverse);
}

.price {
  font-weight: var(--fw-black);
  color: var(--price);
  letter-spacing: var(--track-tight);
  font-variant-numeric: tabular-nums;
}
.price em {
  font-size: 0.74em;
  font-weight: var(--fw-semi);
  color: var(--faint);
}
.price del {
  margin-right: 0.55rem;
  font-size: 0.76em;
  font-weight: var(--fw-semi);
  color: var(--price-strike);
}

.path {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.8rem;
  margin-bottom: var(--space-4);
  font-size: 1.28rem;
  font-weight: var(--fw-bold);
  color: var(--faint);
}
.path a:hover {
  color: var(--primary);
}
.path span {
  color: var(--ink);
}

.note {
  padding: 1.6rem 2rem;
  background: var(--note-soft);
  border: 1px solid color-mix(in srgb, var(--note) 16%, var(--note-soft));
  border-left: 0.4rem solid var(--primary);
  border-radius: var(--r-md);
  box-shadow: var(--sh-1);
  font-size: 1.36rem;
  line-height: var(--lh-body);
  color: var(--note);
}

p.done {
  padding: 1.6rem 2rem;
  background: var(--ok-soft);
  border: 1px solid color-mix(in srgb, var(--ok) 16%, var(--ok-soft));
  border-left: 0.4rem solid var(--ok);
  border-radius: var(--r-md);
  box-shadow: var(--sh-1);
  font-size: 1.36rem;
  line-height: var(--lh-body);
  color: var(--ok);
}

.todo {
  padding: 1.8rem 2rem;
  background: var(--warn-soft);
  border: 1px dashed var(--primary);
  border-radius: var(--r-md);
  font-size: 1.36rem;
  line-height: var(--lh-body);
  color: var(--text);
}
.todo strong {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.7rem;
  padding: 0.2rem 0.65rem;
  border-radius: var(--r-xs);
  background: var(--primary);
  color: var(--on-primary);
  font-size: 1.08rem;
  font-weight: var(--fw-black);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.step_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.step_list li {
  position: relative;
  padding: 2.4rem 2.2rem 2.2rem;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-card);
}
.step_list .no,
.step_list .num {
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  padding: 0 0.9rem;
  border-radius: var(--r-pill);
  background: var(--primary);
  color: var(--on-primary);
  font-size: 1.16rem;
  font-weight: var(--fw-black);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.step_list .title {
  margin-top: 1.2rem;
  font-size: var(--fs-lg);
  font-weight: var(--fw-black);
  color: var(--ink);
}
.step_list p,
.step_list .desc {
  margin-top: 0.7rem;
  font-size: var(--fs-md);
  line-height: var(--lh-snug);
  color: var(--muted);
}

.ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  background: var(--primary-soft);
}
.ico img {
  width: 1.7rem;
  height: 1.7rem;
  object-fit: contain;
}

.pay_marks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}
.pay_marks li {
  list-style: none;
}
.pay_marks .img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.4rem;
  height: 3.6rem;
  padding: 0.4rem 0.8rem;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  box-shadow: var(--sh-1);
}
.pay_marks img {
  display: block;
  height: 2rem;
  width: auto;
  max-width: 5.6rem;
  object-fit: contain;
}

.skel {
  display: block;
  min-height: 1em;
  background: linear-gradient(90deg, var(--surface-2) 25%, var(--line) 37%, var(--surface-2) 63%);
  background-size: 400% 100%;
  animation: skel 1.2s ease infinite;
  border-radius: var(--r-md);
  color: transparent;
  pointer-events: none;
}
.skel_card {
  overflow: hidden;
  background: var(--surface);
  border-radius: var(--r-lg);
}
@keyframes skel {
  0% { background-position: 100% 0; }
  100% { background-position: 0 0; }
}

header {
  position: sticky;
  left: 0;
  top: 0;
  right: 0;
  z-index: 996;
  background-color: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 0 var(--primary), var(--sh-1);
}
header.style {
  box-shadow: var(--sh-2);
}
header .top {
  background-color: var(--ink);
  color: var(--inverse-muted);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}
header .top .flex {
  min-height: 3.6rem;
  gap: 2rem;
}
header .top .links,
header .top .meta {
  display: flex;
  align-items: center;
  flex: 1;
}
header .top .meta {
  justify-content: flex-end;
}
header .top .links li + li,
header .top .meta li + li {
  margin-left: 1.8rem;
}
header .top a:hover,
header .top .seller {
  color: var(--primary);
} 
header .top .notice {
  flex: 1.6;
  min-width: 0;
  max-width: 58rem;
  height: 2.4rem;
  overflow: hidden;
}
header .top .notice .swiper,
header .top .notice .swiper-slide {
  height: 2.4rem;
}
header .top .notice p {
  font-size: 1.22rem;
  line-height: 2.4rem;
  text-align: center;
  color: #cfcfcf;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
header .top .locale {
  position: relative;
}
header .top .locale_btn {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #e8e8e8;
  font-weight: var(--fw-semi);
  letter-spacing: 0.04em;
}
header .top .locale_btn::after {
  content: '';
  width: 0.9rem;
  height: 0.9rem;
  background: url("../img/icon-chevron-w.svg") no-repeat center / contain;
  opacity: 0.7;
}
header .top .locale .flag {
  display: block;
  width: 1.8rem;
  height: 1.16rem;
  overflow: hidden;
  border-radius: 0.2rem;
}
header .top .locale .flag img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
header .top .locale_pop {
  position: absolute;
  top: calc(100% + 0.8rem);
  right: 0;
  z-index: 8;
  width: 24rem;
  padding: 1.4rem 0 1rem;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--sh-3);
  border-radius: var(--r-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.5rem);
  transition: all 0.25s;
}
header .top .locale.open .locale_pop {
  opacity: 1;
  pointer-events: all;
  transform: none;
}
header .top .locale_pop strong {
  display: block;
  padding: 0 1.4rem 0.6rem;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}
header .top .locale_pop ul + strong {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
header .top .locale_pop button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.8rem 1.4rem;
  font-size: 1.3rem;
  font-weight: var(--fw-semi);
  color: var(--text);
}
header .top .locale_pop li.on button,
header .top .locale_pop button:hover {
  color: var(--ink);
  background-color: var(--primary-tint);
}
header .content {
  position: static;
}
header .flex {
  gap: 2.4rem;
}
header > .content > .flex {
  padding: 1.8rem 0;
}
header .logo {
  display: block;
  position: relative;
}
header .logo img {
  display: block;
  width: auto;
  height: 5.6rem;
}
header .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header nav {
  align-self: stretch;
  display: flex;
}
header nav .close,
header nav .close_box {
  display: none;
}
header nav .con,
header nav .con > div {
  display: flex;
  align-items: stretch;
  height: 100%;
}
header nav .menu {
  gap: 0rem;
  display: flex;
  align-items: stretch;
  height: 100%;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}
header nav .menu > li > a {
  display: flex;
  align-items: center;
  font-size: 1.42rem;
  font-weight: var(--fw-bold);
  color: var(--ink);
  line-height: 1.2;
  padding: 0.7rem 1rem;
  border-radius: var(--r-sm);
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: all var(--ease);
}
header nav .menu > li.menu-item-has-children > a::after {
  content: '';
  width: 1.8rem;
  height: 1.8rem;
  margin-left: 0.5rem;
  background: url("../img/icon-chevron.svg") no-repeat center / 0.9rem;
  opacity: 0.4;
  transition: all var(--ease);
}
header nav .menu > li > a:hover,
header nav .menu > li:hover > a,
header nav .menu > li.on > a {
  color: var(--ink);
  background-color: var(--primary-tint);
}
header nav .menu > li.menu-item-has-children:hover > a::after {
  background-color: var(--primary);
  background-image: url("../img/icon-chevron-w.svg");
  background-size: 0.9rem;
  opacity: 1;
  border-radius: 0.3rem;
}
header nav .mega_menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 6;
  min-width: 46rem;
  padding: 0.2rem 0 0;
  background-color: transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s, visibility 0.15s;
}
header nav .menu > li:nth-last-child(-n+2) .mega_menu {
  left: auto;
  right: 0;
}
header nav .menu > li:hover > .mega_menu,
header nav .menu > li:focus-within > .mega_menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
header nav .mega_menu ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.2rem 0.8rem;
  padding: 1.4rem 1.2rem;
  background-color: var(--surface);
  box-shadow: var(--sh-3);
  border-radius: var(--r-lg);
}
header nav .mega_menu a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  font-size: 1.32rem;
  font-weight: var(--fw-semi);
  color: var(--text);
  border-radius: var(--r-sm);
  transition: all var(--ease);
}
header nav .mega_menu a:hover {
  color: var(--ink);
  background-color: var(--primary-tint);
}
header nav .mega_menu .img {
  width: 3.2rem;
  height: 3.2rem;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--surface-2);
}
header nav .mega_menu .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
header .btns {
  margin-left: auto;
  gap: 1rem;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
}
header .search_box,
header .user {
  position: relative;
  flex-shrink: 0;
}
header .search_box {
  width: 24rem;
  height: 4rem;
  border: 1px solid var(--line-strong);
  background-color: var(--surface);
  border-radius: var(--r-md);
  transition: border-color var(--ease), box-shadow var(--ease);
}
header .search_box:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.3rem var(--primary-ring);
}
header .search_btn {
  display: none;
}
header .search_pop {
  position: relative;
  width: 100%;
  height: 100%;
}
header .search_box input[type=search] {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 0 4rem 0 1.4rem;
  color: var(--ink);
}
header .search_box input[type=search]::placeholder {
  color: var(--disabled); 
}
header .search_box input[type=search]::-webkit-search-cancel-button {
  display: none;
}
header .search_box input[type=submit] {
  position: absolute;
  right: 0;
  top: 0;
  width: 4rem;
  height: 100%;
  padding: 0;
  text-indent: -999px;
  overflow: hidden;
  background: url("../img/icon-search.svg") no-repeat center / 1.6rem;
  opacity: 0.45;
}
header .search_box input[type=submit]:hover {
  opacity: 0.85;
}
header .user_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background-color: var(--surface);
  border-radius: 50%;
  transition: border-color var(--ease);
}
header .user_btn .img {
  width: 100%;
  height: 100%;
}
header .user:not(.has_photo) .user_btn .img img {
  width: 52%;
  height: 52%;
  margin: 24% auto;
  object-fit: contain;
}
header .user.has_photo .user_btn .img img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
}
header .user.open .user_btn,
header .user_btn:hover {
  border-color: var(--primary);
}
header .user .user_pop,
header .user .sub-menu {
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  z-index: 5;
  background-color: var(--surface);
  box-shadow: var(--sh-3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.6rem);
  transition: all 0.3s;
}
header .user .user_pop {
  width: 28rem;
  padding: 2.2rem 2rem 2rem;
  text-align: center;
  border-radius: var(--r-xl);
}
header .user .user_pop .img {
  width: 16rem;
  height: 11.4rem;
  margin: 0 auto 1.4rem;
}
header .user .user_pop p {
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  color: var(--ink);
  margin-bottom: 1.6rem;
}
header .user .user_pop .btns {
  display: flex;
  gap: 0.8rem;
  min-height: 0;
  margin: 0;
}
header .user .user_pop .btn,
header .user .user_pop .btn_line {
  flex: 1;
  font-size: 1.3rem;
  line-height: 3.8rem;
  min-height: 3.8rem;
  padding: 0 0.8rem;
}
header .user .user_pop .btn_line {
  color: var(--ink);
  border-color: var(--line-strong);
}
header .user .user_pop .btn_line:hover {
  background-color: var(--surface-2);
  color: var(--ink);
}
header .user .sub-menu {
  min-width: 21rem;
  padding: var(--space-2) 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
}
header .user.guest .sub-menu,
header .user:not(.guest) .user_pop {
  display: none;
}
header .user.open .user_pop,
header .user.open .sub-menu,
header .user:focus-within .user_pop,
header .user:focus-within .sub-menu {
  opacity: 1;
  pointer-events: all;
  transform: none;
}
header .user .sub-menu > li > a {
  display: block;
  font-size: 1.32rem;
  font-weight: var(--fw-semi);
  line-height: var(--lh-snug);
  white-space: nowrap;
  padding: 0.68rem var(--space-4);
  color: var(--text);
  transition: color var(--ease), background-color var(--ease);
}
header .user .sub-menu > li > a:hover {
  color: var(--ink);
  background-color: var(--primary-tint);
}
header .user .sub-menu .name {
  padding: var(--space-3) var(--space-4) var(--space-2);
  border-bottom: 1px solid var(--line);
}
header .user .sub-menu .name span {
  display: block;
  font-size: 1.36rem;
  font-weight: var(--fw-bold);
  letter-spacing: var(--track-tight);
  line-height: var(--lh-snug);
  color: var(--ink);
}
header .user .sub-menu > li:nth-last-child(2) {
  margin-top: var(--space-1);
  border-top: 1px solid var(--line);
}
header .user .sub-menu > li:last-child > a {
  color: var(--muted);
}
header .user .sub-menu > li:last-child > a:hover {
  color: var(--danger);
  background-color: var(--danger-soft);
}
header .btns .btn_menu {
  display: none;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  overflow: hidden;
  text-indent: -999px;
  background: url("../img/nav-btn.svg") no-repeat center / 52.3%;
}
footer {
  background-color: var(--foot);
  color: var(--foot-muted);
  border-top: 2px solid var(--primary);
}
footer .main {
  padding: 6.4rem 0 4.8rem;
}
footer .main strong {
  display: block;
  font-size: 1.3rem;
  font-weight: var(--fw-black);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 2rem;
}
footer .main .foot_intro {
  max-width: 32rem;
  margin-right: 3%;
}
footer .main .foot_intro .logo {
  display: block;
  position: relative;
  max-width: 16rem;
}
footer .main .foot_intro .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .main .foot_intro .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .main .foot_intro p {
  font-size: 1.5rem;
  line-height: 1.65;
  color: var(--foot-muted);
  margin-top: 1.8rem;
}
footer .reviews {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.4rem;
  font-size: var(--fs-md);
  color: #d4d4d4;
}
footer .reviews strong {
  display: inline;
  margin: 0;
  font-size: inherit;
  letter-spacing: 0;
  text-transform: none;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
footer .reviews:hover {
  color: var(--inverse);
}
footer .reviews .logo_tp {
  display: block;
  width: 11.2rem;
  height: 2.8rem;
}
footer .reviews .logo_tp svg {
  display: block;
  width: 100%;
  height: 100%;
}
footer .sns {
  margin-top: 2.8rem;
}
footer .sns strong {
  font-size: 1.3rem;
  margin-bottom: 1.4rem;
}
footer .social {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
footer .social a {
  display: block;
  width: 3.6rem;
  height: 3.6rem;
  overflow: hidden;
  text-indent: -999px;
  border: 0;
  background: var(--inverse) no-repeat center / 1.8rem;
  border-radius: var(--r-sm);
  transition: transform var(--ease);
}
footer .social a:hover {
  transform: translateY(-0.2rem);
}
footer .social .facebook a {
  background-image: url("../img/social-facebook.svg");
}
footer .social .xcom a {
  background-image: url("../img/social-x.svg");
}
footer .social .youtube a {
  background-image: url("../img/social-youtube.svg");
}
footer .social .instagram a {
  background-image: url("../img/social-instagram.svg");
}
footer .social .tiktok a {
  background-image: url("../img/social-tiktok.svg");
}
footer .main .foot_nav {
  min-width: 12%;
}
footer .main .foot_nav li + li {
  margin-top: 1.2rem;
}
footer .main .foot_nav li a {
  font-size: var(--fs-md);
  color: var(--foot-muted);
  transition: color var(--ease);
}
footer .main .foot_nav li a:hover {
  color: var(--primary);
}
footer .bottom {
  border-top: 1px solid var(--foot-line);
  color: #6f6f6f;
  padding: 1.8rem 0;
}
footer .bottom p {
  font-size: 1.2rem;
}
footer .bottom .pay {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem;
}
footer .bottom .pay li {
  display: flex;
}
footer .bottom .pay .img {
  width: 6.4rem;
  height: 3.2rem;
  overflow: hidden;
  background-color: var(--inverse);
  border-radius: 3px;
  padding: 0.3rem 0.4rem;
}
footer .bottom .pay .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
footer .bottom .pay .card {
  width: 8.8rem;
}
.side_bar {
  --side_in: calc(100% + 2.4rem);
  position: fixed;
  z-index: 99;
  right: 1.6rem;
  top: 50%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transform: translateY(-50%) translateX(var(--side_in));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.56s cubic-bezier(0.22, 1.25, 0.36, 1), opacity 0.32s ease, visibility 0.32s;
}
.side_bar.ready {
  --side_in: 0px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
  .side_bar {
    --side_in: 0px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none;
  }
}
.side_bar ul,
.side_bar .fold,
.side_bar .top {
  border-radius: var(--r-lg);
  background-color: var(--surface);
  box-shadow: var(--sh-2);
}
.side_bar ul {
  padding: 0.6rem 0;
}
.side_bar a,
.side_bar .fold,
.side_bar .top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 7.2rem;
  padding: 1rem 0.4rem;
  color: var(--text);
}
.side_bar .fold {
  display: none;
}
.side_bar .img {
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
}
.side_bar .title {
  margin-top: 0.45rem;
  font-size: 1.1rem;
  font-weight: var(--fw-semi);
  line-height: 1.2;
  text-align: center;
}
.side_bar .dot {
  position: absolute;
  top: -0.15rem;
  right: -0.15rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background-color: var(--danger);
}
.side_bar a:hover,
.side_bar .top:hover {
  color: var(--primary);
}
.side_bar a:hover img,
.side_bar .top:hover img {
  filter: invert(62%) sepia(62%) saturate(650%) hue-rotate(6deg) brightness(95%);
}
.side_bar .top {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
}
.side_bar .top.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

@media screen and (min-width: 769px) and (max-width: 1660px) {
  header nav .menu > li > a {
    font-size: 1.36rem;
  }
  header .search_box {
    width: 20rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1440px) {
  header nav .menu {
    gap: 0rem;
  }
  header nav .menu > li > a {
    font-size: 1.3rem;
  }
  header .search_box {
    width: 18rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  :root {
    --pad-x: 3rem;
  }
  header .flex {
    gap: 2rem;
  }
  header nav .menu {
    gap: 0rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content {
    max-width: 896px;
  }
}
@media screen and (max-width: 1024px) {
  header > .content > .flex {
    justify-content: space-between;
  }
  header .top .flex {
    gap: 1.2rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  header .top .links,
  header .top .meta {
    flex: 0 0 auto;
  }
  header .top .links li:first-child {
    display: none;
  }
  header .top .notice {
    flex: 1 1 0;
    width: 0;
    min-width: 0;
    max-width: none;
  }
  header .top .meta {
    margin-left: auto;
  }
  header .top .seller,
  header .top .locale_btn {
    white-space: nowrap;
  }
  header nav {
    flex: 0 0 0;
    width: 100%;
    min-width: 0;
    overflow: visible;
  }
  header nav {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    pointer-events: none;
    display: flex;
  }
  header nav.active {
    pointer-events: auto;
  }
  header nav.active .close {
    opacity: 1;
  }
  header nav.active .con {
    transform: translate(0);
  }
  header nav > .close {
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s;
    background-color: rgba(0, 0, 0, 0.75);
  }
  header nav .con {
    width: min(300px, 80%);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s;
    transform: translateX(-100%);
    background-color: var(--surface);
  }
  header nav .con > div {
    height: auto;
  }
  header nav .close_box {
    display: block;
    flex: none;
    height: auto;
    padding: 12px;
    border-bottom: 1px solid var(--line);
  }
  header nav .close_box .close {
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-left: auto;
    background: url("../img/close.svg") no-repeat center / 12px;
  }
  header nav .close_box + div {
    display: block;
    height: auto;
    min-height: 0;
    flex: 1;
    overflow: auto;
    padding: 12px 12px 30px;
  }
  header nav .menu {
    display: block;
    height: auto;
  }
  header nav .menu > li {
    display: block;
  }
  header nav .menu > li + li {
    margin-top: 8px;
  }
  header nav .menu > li > a {
    color: var(--ink);
    display: block;
    font-size: 16px;
    line-height: 26px;
    padding: 10px 12px;
    border-bottom: 0;
    white-space: normal;
  }
  header nav .menu > li.menu-item-has-children > a {
    position: relative;
    margin-right: 0;
    padding-right: 46px;
  }
  header nav .menu > li.menu-item-has-children > a::after,
  header nav .menu > li.menu-item-has-children:hover > a::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 36px;
    height: 36px;
    margin: 0;
    opacity: 1;
    border-radius: 0;
    background-color: transparent;
    background-image: url("../img/select.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
    transform: translateY(-50%);
  }
  header nav .menu > li.menu-item-has-children.active > a::after {
    transform: translateY(-50%) rotate(180deg);
  }
  header nav .menu > li:hover > a {
    background-color: transparent;
  }
  header nav .mega_menu {
    position: static;
    min-width: unset;
    padding: 8px;
    margin: 12px 0;
    box-shadow: none;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    border-radius: 0;
    background-color: var(--surface-2);
  }
  header nav .menu-item-has-children.active > .mega_menu {
    display: block;
  }
  header nav .mega_menu ul {
    display: block;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }
  header nav .mega_menu a {
    padding: 10px;
    font-size: 14px;
  }
  header nav .mega_menu .img {
    width: 28px;
    height: 28px;
  }
  header nav .sub-menu {
    position: static;
    padding: 10px;
    margin: 12px 0;
    box-shadow: none;
    display: none;
    opacity: 1;
    pointer-events: auto;
    min-width: unset;
    transform: none;
    background-color: var(--surface-2);
    border: 0;
  }
  header nav .sub-menu > li + li {
    margin-top: 6px;
  }
  header nav .sub-menu > li > a {
    font-size: 14px;
    white-space: normal;
    padding: 10px;
  }
  header .btns {
    justify-content: flex-end;
  }
  header .btns .btn_menu {
    display: block;
  }
  .trust_strip {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content {
    max-width: 768px;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.5rem;
  }
  :root {
    --pad-x: 20px;
    --fs-2xl: 1.8rem;
    --fs-3xl: 2.4rem;
    --fs-4xl: 2.6rem;
  }
  .gap {
    gap: 20px;
  }
  .btn,
  .btn_line {
    font-size: 14px;
    line-height: 1;
    min-height: 42px;
    padding: 0 20px;
  }
  .head.tcon h2,
  .section_head h2 {
    letter-spacing: 0;
  }
  .head.between {
    align-items: flex-start;
    gap: 10px;
  }
  .trust_strip li { 
    gap: 8px;
    min-height: 0; 
  }
  .trust_strip .img {
    width: 32px;
    height: 32px;
    padding: 6px;
  }
  .trust_strip .title {
    font-size: 12px;
    text-align: left;
  }
  .trust_strip.box {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }
  .trust_strip.box li {
    flex-direction: row;
    padding: var(--space-3) var(--space-4);
  }
  .trust_strip.box .title {
    font-size: 13px;
    text-align: left;
  }
  .step_list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .filter_bar {
    padding: 12px 16px 4px;
  }
  .filter_bar .box:not([hidden]) {
    display: block;
  }
  .filter_bar .label {
    width: auto;
    padding: 0 0 6px;
  }
  header .top {
    font-size: 12px;
  }
  header .top .flex {
    min-height: 36px;
    gap: 10px;
  }
  header .top .links li + li,
  header .top .meta li + li {
    margin-left: 12px;
  }
  header > .content > .flex {
    padding: 12px 0;
  }
  header .logo img {
    height: 52px;
  }
  header .btns {
    font-size: 14px;
    gap: 10px;
  }
  header .user_btn {
    width: 40px;
    height: 40px;
  }
  header .user .user_pop {
    width: min(280px, calc(100vw - 40px));
  }
  header .user .sub-menu {
    min-width: min(21rem, calc(100vw - 3.2rem));
  }
  header .user .sub-menu .name span {
    font-size: 1.3rem;
  }
  header .user .sub-menu > li > a {
    font-size: 1.28rem;
    padding: 0.62rem 1.4rem;
  }
  header .search_box {
    width: 40px;
    height: 40px;
    position: static;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  header .search_btn {
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line-strong);
    background: var(--surface) url("../img/icon-search.svg") no-repeat center / 16px;
    border-radius: 50%;
    opacity: 0.85;
  }
  header .search_box.open .search_btn,
  header .search_btn:hover {
    border-color: var(--primary);
    opacity: 1;
  }
  header .search_pop {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    z-index: 8;
    width: auto;
    height: 44px;
    border: 1px solid var(--line-strong);
    background-color: var(--surface);
    border-radius: var(--r-md);
    box-shadow: var(--sh-3);
  }
  header .search_box.open .search_pop {
    display: block;
  }
  header .search_box.open .search_pop input[type=search] {
    padding: 0 44px 0 14px;
  }
  header .search_box input[type=submit] {
    width: 44px;
    height: 100%;
    opacity: 0.7;
  }
  header .top .notice p {
    font-size: 12px;
  }
  footer .main {
    display: block;
    padding: 36px 0 28px;
  }
  footer .main strong {
    font-size: 16px;
    margin-bottom: 16px;
  }
  footer .main .foot_intro {
    margin: 0;
    max-width: none;
    padding-bottom: 20px;
  }
  footer .main .foot_intro .logo {
    max-width: 120px;
  }
  footer .main .foot_intro p {
    font-size: 15px;
    margin-top: 16px;
    overflow-wrap: break-word;
  }
  footer .reviews {
    font-size: 15px;
    margin-top: 20px;
  }
  footer .sns {
    margin-top: 20px;
  }
  footer .sns strong {
    font-size: 15px;
  }
  footer .main .foot_nav {
    width: 100%;
    min-width: unset;
  }
  footer .main .foot_nav + .foot_nav {
    margin-top: 8px;
  }
  footer .main .foot_nav strong {
    line-height: 46px;
    border: 1px solid #2a2a2a;
    background-color: #141414;
    padding: 0 22px;
    position: relative;
    cursor: pointer;
    color: var(--bg);
    font-size: 14px;
    letter-spacing: 0.04em;
  }
  footer .main .foot_nav.active strong {
    color: var(--primary);
  }
  footer .main .foot_nav strong::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url("../img/icon-select.svg") no-repeat center / contain;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
  }
  footer .main .foot_nav.active strong::after {
    transform: translateY(-50%) rotate(180deg);
  }
  footer .main .foot_nav > div {
    display: none;
    padding: 0 20px 16px;
  }
  footer .main .foot_nav > div li + li {
    margin-top: 14px;
  }
  footer .main .foot_nav > div a {
    font-size: 14px;
    display: block;
  }
  footer .bottom {
    flex-direction: column-reverse;
    padding: 16px 0;
    text-align: center;
  }
  footer .bottom .pay {
    justify-content: center;
  }
  .side_bar {
    right: 12px;
    top: auto;
    bottom: 20px;
    align-items: flex-end;
    gap: 10px;
    transform: translateX(var(--side_in));
  }
  .side_bar ul {
    display: block;
    order: 1;
    overflow: hidden;
    width: 56px;
    max-height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: max-height 0.32s ease, opacity 0.24s ease, transform 0.28s ease, padding 0.28s ease, visibility 0.28s;
  }
  .side_bar.open ul {
    max-height: 400px;
    padding: 6px 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .side_bar .fold {
    display: flex;
    order: 3;
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--ink);
    border-radius: 50%;
  }
  .side_bar .fold:hover,
  .side_bar .fold:focus,
  .side_bar.open .fold {
    color: var(--ink);
  }
  .side_bar .fold::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--ink);
    box-shadow: 7px 0 var(--ink), 0 7px var(--ink), 7px 7px var(--ink);
    transform: translate(-3.5px, -3.5px);
    transition: transform 0.28s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  }
  .side_bar .fold::after {
    display: none;
  }
  .side_bar.open .fold::before {
    width: 14px;
    height: 14px;
    border-radius: 0;
    background-color: transparent;
    background-image: url("../img/close.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
    box-shadow: none;
    transform: none;
  }
  .side_bar a {
    width: 56px;
    padding: 8px 2px;
  }
  .side_bar .top {
    order: 2;
    width: 44px;
    height: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: none;
  }
  .side_bar .top.show {
    height: 44px;
    box-shadow: var(--sh-2);
  }
  .side_bar .top .title {
    display: none;
  }
  .side_bar .title {
    font-size: 10px;
  }
}
.copy_tip {
  position: fixed;
  left: 50%;
  bottom: 4rem;
  z-index: 1200;
  padding: 1rem 1.8rem;
  background: var(--ink);
  color: var(--inverse);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  border-radius: var(--r-md);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 0.2s, transform 0.2s;
}
.copy_tip.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.uxia_flash {
  position: fixed;
  left: 50%;
  bottom: 4rem;
  z-index: 1200;
  max-width: min(44rem, calc(100vw - 3.2rem));
  margin: 0;
  padding: 1.1rem 1.8rem;
  background: var(--ink);
  color: var(--inverse);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  line-height: 1.45;
  border-radius: var(--r-md);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.uxia_flash.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.uxia_flash.ok {
  border-left: 0.4rem solid var(--ok);
}
.uxia_flash.err {
  border-left: 0.4rem solid var(--danger);
}

@media screen and (max-width: 576px) {
  header .top .flex {
    min-height: 34px;
    gap: 8px;
  }
  header .top .links {
    display: none;
  }
  header .top .locale_btn {
    gap: 0.5rem;
  }
  header .top .locale .txt {
    font-size: 11px;
  }
  header .top .locale_pop {
    width: min(24rem, calc(100vw - 24px));
  }
  header > .content > .flex {
    gap: 8px;
    flex-wrap: nowrap;
  }
  header .logo {
    min-width: 0;
    flex: 0 1 auto;
  }
  header .logo img {
    height: 40px;
    max-width: 14rem;
    object-fit: contain;
    object-position: left center;
  }
  header .btns {
    flex: 0 0 auto;
    flex-shrink: 0;
    gap: 8px;
    margin-left: auto;
  }
  header .search_box,
  header .search_btn,
  header .user_btn,
  header .btns .btn_menu {
    width: 36px;
    height: 36px;
  }
  .trust_strip {
    grid-template-columns: repeat(2, 1fr);
  }
}
