:root {
  color-scheme: light;
  --bg: #eef3f7;
  --surface: #ffffff;
  --surface-soft: #f7fafc;
  --ink: #17212b;
  --muted: #66727f;
  --line: #d7e0e8;
  --accent: #cf3f35;
  --accent-2: #0f766e;
  --blue: #245a7c;
  --amber: #b98122;
  --white: #ffffff;
  --shadow: 0 16px 44px rgba(23, 33, 43, 0.1);
  font-family: Inter, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

.lang-en,
body[data-lang="en"] .lang-ja {
  display: none;
}

body[data-lang="en"] .lang-en {
  display: inline;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 10px clamp(16px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--white);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.75rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2.4vw, 24px);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-links .is-current {
  color: var(--accent-2);
}

.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-toggle {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.language-toggle button {
  min-height: 30px;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 850;
  cursor: pointer;
}

.language-toggle button.is-active {
  background: var(--accent-2);
  color: var(--white);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
}

.header-action,
.primary {
  background: var(--accent);
  color: var(--white);
}

.ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  isolation: isolate;
  background: var(--surface);
}

.hero img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  filter: saturate(0.92) contrast(1.02);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.86) 42%, rgba(255, 255, 255, 0.25) 72%),
    linear-gradient(0deg, rgba(238, 243, 247, 0.75), rgba(238, 243, 247, 0.1));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: end;
  width: min(1120px, calc(100% - 32px));
  min-height: 520px;
  margin: 0 auto;
  padding: 72px 0 38px;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 8vw, 5.7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1rem;
}

p {
  line-height: 1.75;
}

.hero-copy p:not(.eyebrow),
.section-head p,
.quote-info > p {
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-panel {
  display: grid;
  gap: 10px;
}

.hero-panel div,
.flow-grid article,
.notice-grid article,
.policy-list article,
.quote-form,
.fee-table div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(23, 33, 43, 0.06);
}

.hero-panel div {
  padding: 14px;
}

.hero-panel span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 4px;
}

.hero-panel small {
  display: block;
  margin-top: 4px;
  color: var(--accent-2);
}

.compact-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.compact-strip > span,
.store-grid span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: #33414d;
  font-size: 0.86rem;
}

.compact-strip > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px 6px 7px;
}

.chip-illo {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 50%;
  background: #eaf6f3;
}

.chip-illo::before,
.chip-illo::after {
  position: absolute;
  content: "";
}

.chip-illo.cosmetics::before {
  left: 8px;
  top: 6px;
  width: 7px;
  height: 10px;
  border: 1.5px solid var(--accent);
  border-radius: 3px 3px 4px 4px;
  background: #fff8f7;
}

.chip-illo.cosmetics::after {
  left: 9px;
  top: 4px;
  width: 5px;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
}

.chip-illo.anime::before {
  left: 5px;
  top: 6px;
  width: 11px;
  height: 9px;
  border: 1.5px solid var(--blue);
  border-radius: 3px;
  background: #f4fbff;
  transform: rotate(-6deg);
}

.chip-illo.anime::after {
  right: 4px;
  top: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: -9px 9px 0 -1px var(--accent);
}

.chip-illo.fashion::before {
  left: 5px;
  top: 8px;
  width: 12px;
  height: 7px;
  border: 1.5px solid var(--accent-2);
  border-top: 0;
  border-radius: 0 0 7px 7px;
}

.chip-illo.fashion::after {
  left: 9px;
  top: 4px;
  width: 5px;
  height: 6px;
  border-top: 1.5px solid var(--accent-2);
  border-left: 1.5px solid var(--accent-2);
  border-radius: 5px 0 0 0;
  transform: rotate(35deg);
}

.chip-illo.electronics::before {
  left: 6px;
  top: 4px;
  width: 10px;
  height: 14px;
  border: 1.5px solid var(--blue);
  border-radius: 3px;
  background: #f4fbff;
}

.chip-illo.electronics::after {
  left: 10px;
  bottom: 5px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--blue);
}

.chip-illo.stationery::before {
  left: 6px;
  top: 5px;
  width: 4px;
  height: 13px;
  border-radius: 2px;
  background: var(--amber);
  transform: rotate(42deg);
}

.chip-illo.stationery::after {
  left: 13px;
  top: 5px;
  width: 3px;
  height: 5px;
  border-radius: 2px;
  background: var(--accent);
  transform: rotate(42deg);
}

.chip-illo.kitchenware::before {
  left: 4px;
  top: 10px;
  width: 12px;
  height: 6px;
  border: 1.5px solid var(--blue);
  border-radius: 0 0 8px 8px;
  background: #f4fbff;
}

.chip-illo.kitchenware::after {
  right: 3px;
  top: 12px;
  width: 5px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--blue);
}

.chip-illo.food::before {
  left: 5px;
  top: 11px;
  width: 12px;
  height: 6px;
  border: 1.5px solid var(--accent);
  border-radius: 0 0 8px 8px;
  background: #fff8f7;
}

.chip-illo.food::after {
  left: 8px;
  top: 4px;
  width: 2px;
  height: 6px;
  border-radius: 2px;
  background: var(--amber);
  box-shadow: 5px 1px 0 var(--amber);
}

.chip-illo.records::before {
  left: 4px;
  top: 4px;
  width: 13px;
  height: 13px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: #f7fafc;
}

.chip-illo.records::after {
  left: 9px;
  top: 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 6px 6px 0 -1px var(--blue);
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 76px) 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 20px;
}

.page-hero {
  padding-top: clamp(54px, 8vw, 92px);
}

.page-hero h1 {
  max-width: 14ch;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.page-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.page-card-grid a {
  display: grid;
  gap: 8px;
  min-height: 124px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(23, 33, 43, 0.06);
}

.page-card-grid a:hover {
  border-color: rgba(15, 118, 110, 0.38);
}

.page-card-grid strong {
  color: var(--ink);
}

.page-card-grid span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.store-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.store-grid span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
}

.logo-grid img {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 6px;
  background: var(--white);
  object-fit: contain;
}

.flow-grid,
.notice-grid,
.policy-list {
  display: grid;
  gap: 12px;
}

.flow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.notice-grid,
.policy-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flow-grid article,
.notice-grid article,
.policy-list article {
  padding: 16px;
}

.flow-grid b {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
}

.flow-grid p,
.notice-grid p,
.policy-list p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.notice-grid article {
  border-color: rgba(207, 63, 53, 0.28);
  background: #fff8f7;
}

.notice-grid h3 {
  color: #9f2b26;
}

.privacy {
  border-top: 1px solid var(--line);
}

.policy-list article {
  background: var(--surface);
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: start;
}

.fee-table {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.fee-table div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3px 12px;
  align-items: center;
  padding: 12px 14px;
}

.fee-table strong {
  font-size: 0.9rem;
}

.fee-table span {
  grid-column: 1;
  color: var(--muted);
  font-size: 0.82rem;
}

.fee-table b {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--amber);
  white-space: nowrap;
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: clamp(16px, 3vw, 22px);
}

.form-message {
  margin: 0 clamp(16px, 3vw, 22px);
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 850;
  line-height: 1.55;
}

.form-message.is-success {
  border: 1px solid rgba(15, 118, 110, 0.3);
  background: #edf8f5;
  color: #0f5f59;
}

.form-message.is-error {
  border: 1px solid rgba(207, 63, 53, 0.3);
  background: #fff8f7;
  color: #7d2d29;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

label {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
}

input,
select {
  min-height: 40px;
  padding: 0 11px;
}

textarea {
  resize: vertical;
  padding: 11px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent-2);
  outline: 3px solid rgba(15, 118, 110, 0.16);
}

.input-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.input-row span {
  display: grid;
  place-items: center;
  align-self: stretch;
  padding: 0 10px;
  background: #e8f0f5;
  color: var(--muted);
  font-weight: 900;
}

.input-row input {
  margin: 0;
  border: 0;
  border-radius: 0;
}

input[type="range"] {
  padding: 0;
  accent-color: var(--accent);
}

.range-value {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
}

.shipping-box {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(15, 118, 110, 0.28);
  border-radius: 8px;
  background: #edf8f5;
}

.shipping-box span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.ack-grid {
  display: grid;
  gap: 8px;
}

.check-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  padding: 10px;
  border: 1px solid rgba(207, 63, 53, 0.28);
  border-radius: 8px;
  background: #fff8f7;
  color: #7d2d29;
  font-size: 0.86rem;
  line-height: 1.55;
}

.check-row input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.quote-box,
.inquiry-preview {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 8px;
  background: #1d4055;
  color: var(--white);
}

.quote-box > span,
.quote-box small {
  color: rgba(255, 255, 255, 0.76);
}

.quote-box strong {
  font-size: 1.8rem;
}

.quote-breakdown {
  display: grid;
  gap: 5px;
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.quote-breakdown div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
}

.quote-breakdown b {
  color: var(--white);
  white-space: nowrap;
}

.quote-box em {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.55;
}

.inquiry-preview {
  display: none;
  white-space: pre-wrap;
  line-height: 1.55;
}

.inquiry-preview.is-visible {
  display: block;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(16px, 4vw, 42px);
  border-top: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
}

.footer-location {
  color: #3d4d5a;
  font-weight: 800;
}

.site-footer a {
  color: var(--accent-2);
  font-weight: 850;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .header-tools {
    gap: 6px;
  }

  .hero-inner,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .flow-grid,
  .notice-grid,
  .policy-list,
  .page-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 9px 12px;
  }

  .brand small {
    display: none;
  }

  .header-action {
    display: none;
  }

  .language-toggle button {
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 620px;
  }

  .hero-inner {
    min-height: 620px;
    padding-top: 62px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 62%, rgba(255, 255, 255, 0.34) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.25));
  }

  h1 {
    max-width: 11ch;
  }

  .hero-panel,
  .flow-grid,
  .notice-grid,
  .policy-list,
  .page-card-grid,
  .form-grid,
  .fee-table div {
    grid-template-columns: 1fr;
  }

  .fee-table b {
    grid-column: 1;
    grid-row: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}
