:root {
  --ink: #172026;
  --text: #33424c;
  --muted-text: #697781;
  --line: #d9e2e7;
  --paper: #ffffff;
  --soft: #f0f8fd;
  --green: #0182CD;
  --green-dark: #0067a3;
  --blue: #0182CD;
  --yellow: #f4c542;
  --red: #c9473d;
  --shadow: 0 18px 45px rgba(23, 32, 38, 0.13);
}

* {
  box-sizing: border-box;
  overflow-wrap: break-word; /* 単語の途中で折り返す（レイアウト崩壊防止） */
  word-break: auto-phrase;   /* 日本語の文節など、自然で良いところで改行する */
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

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

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1600px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
}

.notice-bar {
  color: #fff;
  background: var(--green-dark);
  padding: 8px 16px;
  font-size: 14px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(1600px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  color: var(--ink);
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted-text);
  font-size: 12px;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  gap: 20px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a,
.site-nav .tel {
  flex: 0 0 auto;
  white-space: nowrap;
}

.site-nav .tel {
  margin: 0;
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--green);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(520px, 56.25vw, 760px);
  color: #fff;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.66) 42%, rgba(255, 255, 255, 0.08) 70%, rgba(255, 255, 255, 0) 100%);
  content: "";
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/トップバナー2.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1600px, calc(100% - 32px));
  min-height: clamp(520px, 56.25vw, 760px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 52%) 1fr;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  padding: clamp(32px, 5vw, 72px) 0 clamp(40px, 6vw, 96px);
}

.hero-copy {
  width: min(1120px, 72vw);
  max-width: min(1120px, 72vw);
}

.hero-headlines {
  display: flex;
  align-items: flex-start;
  gap: clamp(24px, 3vw, 56px);
  justify-content: space-between;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

.hero h1 {
  max-width: 11em;
  flex: 0 1 auto;
  font-size: clamp(30px, 5vw, 66px);
}

.hero-data-message {
  position: absolute;
  right: 0;
  flex: 0 0 auto;
  margin-left: 0;
  padding-top: 0.08em;
  text-align: right;
}

.hero-data-message h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 5vw, 66px);
  line-height: 1.15;
  font-family: 'RocknRoll One', serif;
  white-space: nowrap;
}

.hero-data-message p {
  max-width: 24em;
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(13px, 1.1vw, 17px);
  font-weight: 700;
  line-height: 1.5;
}

.hero .lead {
  max-width: min(620px, 45vw);
  font-size: clamp(14px, 1.35vw, 21px);
}

.hero .button {
  min-height: clamp(36px, 3.8vw, 48px);
  padding: clamp(7px, 0.9vw, 11px) clamp(12px, 1.5vw, 20px);
  font-size: clamp(12px, 1.1vw, 16px);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

p {
  font-size: clamp(15px, calc(14px + 0.25vw), 18px);
  line-height: 1.8;
}

h1 {
  margin-bottom: 20px;
  color: #060606;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.12;
  letter-spacing: 0;
  font-family: 'RocknRoll One', serif;
}

h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.25;
  letter-spacing: 0;
}

h3 {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
}

.lead {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: clamp(16px, calc(14px + 0.55vw), 22px);
  line-height: 1.75;
  color: #060606;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-actions {
  position: relative;
  min-height: 260px;
  padding: 22px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 8px;
}

.contact-support-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.contact-buttons {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  z-index: 1;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: #fff;
  background: var(--green);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.send-area {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 30px;
}

.send-balloon {
  position: relative;
  flex: 0 0 190px;
  margin: 0;
  padding: 18px 16px;
  color: var(--green-dark);
  background: #fff;
  border: 2px solid var(--yellow);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

.send-balloon::after {
  position: absolute;
  top: 34px;
  left: -14px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-bottom: 2px solid var(--yellow);
  border-left: 2px solid var(--yellow);
  content: "";
  transform: rotate(45deg);
}

.send-box {
  margin-top: 0;
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-width: 500px;
}

.send-box h2 {
  font-size: 24px;
}

.send-box address {
  padding: 16px;
  color: var(--green-dark);
  background: var(--soft);
  border: 1px solid #c4e1f3;
  border-radius: 8px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.8;
}

.caption {
  margin-bottom: 0;
  color: var(--muted-text);
  font-size: clamp(12px, calc(11px + 0.25vw), 14px);
}

.section {
  padding: 78px 0;
}

.muted {
  background: var(--soft);
}

.contactless-send-banner {
  padding: clamp(16px, 3vw, 28px) 0 0;
  background: #fff;
}

.contactless-send-banner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.page-hero {
  position: relative;
  min-height: clamp(520px, 56.25vw, 760px);
  color: var(--ink);
  background: #fff;
  overflow: hidden;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.7) 42%, rgba(255, 255, 255, 0.16) 72%, rgba(255, 255, 255, 0) 100%);
  content: "";
  pointer-events: none;
}

.page-hero-no-overlay::after {
  display: none;
}

.page-hero-bg {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1600px, calc(100% - 32px));
  min-height: clamp(520px, 56.25vw, 760px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 52%) 1fr;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  padding: clamp(32px, 5vw, 72px) 0 clamp(40px, 6vw, 96px);
}

.page-hero-inner > div:first-child {
  position: relative;
  z-index: 3;
  max-width: min(720px, 52vw);
}

.page-hero .section-kicker {
  color: var(--yellow);
}

.page-hero h1,
.page-hero .lead {
  color: #060606;
  text-shadow: none;
}

.page-hero h1 {
  max-width: 11em;
  font-size: clamp(30px, 5vw, 66px);
}

.page-hero-dark-text h1,
.page-hero-dark-text .lead {
  color: #060606;
  text-shadow: none;
}

.page-hero-image-only {
  min-height: clamp(420px, 48vw, 720px);
  background: #fff;
}

.page-hero-image-only .page-hero-bg {
  background-size: contain;
  background-repeat: no-repeat;
}

.page-hero .lead {
  max-width: min(620px, 45vw);
  font-size: clamp(14px, 1.35vw, 21px);
}

.page-hero .button {
  min-height: clamp(36px, 3.8vw, 48px);
  padding: clamp(7px, 0.9vw, 11px) clamp(12px, 1.5vw, 20px);
  font-size: clamp(12px, 1.1vw, 16px);
}

.page-hero .button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(37, 50, 62, 0.22);
}

.shipping-hero-copy {
  width: min(360px, 100%);
}

.shipping-hero-copy .lead {
  max-width: 100%;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.7;
}

.shipping-hero-copy .hero-actions {
  width: 100%;
}

.shipping-hero-copy .hero-actions .button {
  flex: 1 1 calc(50% - 6px);
  min-width: 0;
  padding-right: 12px;
  padding-left: 12px;
}

.page-hero-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.shipping-hero-headline {
  margin-bottom: 16px;
  color: #060606;
  font-family: 'RocknRoll One', serif;
  font-size: 30px;
  line-height: 1.25;
}

.shipping-hero-image {
  width: 100%;
  max-width: 620px;
  margin-bottom: 14px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.method-menu {
  position: absolute;
  right: 0;
  bottom: 38px;
  z-index: 3;
  width: min(520px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.method-menu-below {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 1;
  width: min(860px, calc(100% - 32px));
  margin: -56px auto 30px;
}

.method-menu a {
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 10px 24px rgba(23, 32, 38, 0.16);
}

.method-menu a:hover,
.method-menu a.active {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.content-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.content-layout > *,
.content-layout .container,
.page-flow,
.page-flow > .section,
.sidebar,
.sidebar-card,
.sidebar-method-menu {
  min-width: 0;
  max-width: 100%;
}

.page-flow > .section {
  padding: 68px 0;
}

.page-flow > .section:first-child {
  padding-top: 78px;
}

.page-flow > .section:last-child {
  padding-bottom: 78px;
}

.content-layout .container {
  width: 100%;
}

.content-layout .muted {
  padding-right: 24px;
  padding-left: 24px;
  border-radius: 8px;
}

.sidebar {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 16px;
  padding-top: 78px;
}

.sidebar-card {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(23, 32, 38, 0.08);
}

.sidebar-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.sidebar-method-menu {
  display: grid;
  gap: 8px;
}

.sidebar-method-menu a {
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 8px 10px;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
}

.sidebar-method-menu a:hover {
  background: var(--green-dark);
}

.sidebar-label {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.sidebar-card h2 {
  margin-bottom: 12px;
  font-size: 22px;
}

.sidebar-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0 0 16px;
  list-style: none;
}

.sidebar-card li {
  position: relative;
  padding-left: 20px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.sidebar-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green);
  content: "✓";
}

.side-nav {
  display: grid;
  gap: 8px;
}

.side-nav a,
.product-menu a {
  display: block;
  padding: 9px 10px;
  background: var(--soft);
  border-radius: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.product-menu {
  display: grid;
  gap: 8px;
}

.product-menu a {
  font-size: 13px;
}

.side-nav a:hover,
.product-menu a:hover {
  color: #fff;
  background: var(--green);
}

.address-card address {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.8;
}

.text-button {
  display: inline-flex;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.home-send-image {
  width: min(100%, 920px);
  margin: 0 auto 18px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section-heading p:last-child,
.split p,
.data-grid p,
.contact p {
  color: var(--muted-text);
}

.section-note {
  margin: 22px 0 0;
  color: var(--muted-text);
  font-size: clamp(15px, calc(14px + 0.25vw), 18px);
  line-height: 1.8;
}

.check-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 40px;
  align-items: center;
}

.quick-check {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.check-list span {
  color: var(--green);
  font-weight: 900;
}

.method-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.method-cards article,
.notice-grid article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.method-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 18px;
  object-fit: contain;
}

.notice-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  object-fit: contain;
}

.method-cards span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.method-cards p,
.notice-grid p {
  margin-bottom: 0;
  color: var(--muted-text);
}

.method-cards .text-button {
  margin-top: 16px;
}

.product-flow > .section {
  border-bottom: 1px solid var(--line);
}

.product-section {
  scroll-margin-top: 110px;
}

.unavailable-section .section-kicker {
  color: var(--red);
}

.product-item-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-item-list li {
  display: grid;
  gap: 10px;
  align-content: start;
  min-width: 0;
  max-width: 100%;
  padding: 14px 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  font-weight: 800;
}

.product-item-image {
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 10;
  object-fit: contain;
}

.method-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.tab-button {
  min-height: 44px;
  padding: 8px 18px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.tab-button.active {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.method-visual {
  margin-bottom: 12px;
}

.method-visual img {
  display: block;
  width: 100%;
  max-height: 260px;
  object-fit: contain;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.content-layout .steps {
  grid-template-columns: repeat(2, 1fr);
}

.method-steps {
  grid-template-columns: repeat(4, 1fr);
}

.steps li {
  min-height: 160px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.steps strong,
.steps span {
  display: block;
}

.steps strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 20px;
  text-align: center;
}

.step-card-body {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 12px;
  align-items: center;
}

.step-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.steps span {
  color: var(--muted-text);
  font-size: 16px;
  line-height: 1.7;
}

.item-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.items-guide-image {
  width: min(100%, 980px);
  margin: 0 auto 22px;
  display: block;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.item-panel {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 6px solid var(--green);
  border-radius: 8px;
}

.item-panel.caution {
  border-top-color: var(--yellow);
}

.item-panel.ng {
  border-top-color: var(--red);
}

.item-panel ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.item-notes {
  margin-top: 22px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.item-notes ol {
  display: grid;
  gap: 14px;
  padding-left: 22px;
  margin: 0 0 18px;
}

.item-notes li {
  padding-left: 6px;
}

.item-notes .item-note-list {
  margin-bottom: 18px;
}

.item-notes .item-note-list li {
  padding: 16px;
}

.item-notes .product-item-image {
  min-height: 150px;
  margin-bottom: 4px;
}

.item-notes strong,
.item-notes span {
  display: block;
  min-width: 0;
}

.item-notes strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 18px;
}

.item-notes span {
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}

.item-notes p {
  margin-bottom: 8px;
  color: var(--muted-text);
  font-size: clamp(14px, calc(13px + 0.25vw), 16px);
  line-height: 1.7;
}

.split,
.data-grid,
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.reason-list {
  display: grid;
  gap: 14px;
}

.reason-list div {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: center;
  padding: 20px;
  background: var(--soft);
  border-left: 5px solid var(--green);
  border-radius: 8px;
}

.reason-list img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.reason-list p {
  margin: 0;
}

.reason-list strong,
.reason-list span {
  display: block;
}

.reason-list strong {
  color: var(--ink);
  font-size: 18px;
}

.reason-list span {
  color: var(--muted-text);
}

.data-section {
  color: #fff;
  background: #123b4d;
}

.data-grid {
  grid-template-columns: 1.1fr 0.9fr 0.8fr;
  padding: 36px;
}

.shipping-address-section .data-grid {
  grid-template-columns: 0.65fr 1.85fr;
}

.data-section h2,
.data-section .section-kicker {
  color: #fff;
}

.data-section p {
  color: rgba(255, 255, 255, 0.78);
}

.security-media {
  display: grid;
  gap: 14px;
  align-items: center;
}

.security-image {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.request-panel {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.request-form {
  display: grid;
  gap: 18px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field > span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(1, 130, 205, 0.2);
  outline-offset: 1px;
  border-color: var(--green);
}

.is-invalid {
  border-color: var(--red) !important;
}

.field-error {
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}

.check-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink);
  font-weight: 700;
}

.check-row input {
  margin-top: 4px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-alert {
  padding: 16px 18px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.form-alert.success {
  color: var(--green-dark);
  background: #f0f8fd;
  border-color: #c4e1f3;
}

.form-alert.error {
  color: var(--red);
  background: #fff5f4;
  border-color: #f2c8c3;
}

.text-link {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.security-box {
  display: grid;
  gap: 14px;
}

.security-box span {
  padding: 18px 20px;
  color: var(--ink);
  background: #fff;
  border-radius: 8px;
  font-weight: 900;
}

.security-copy {
  grid-column: 1 / -1;
  max-width: none;
  color: #fff;
}

.security-copy-title {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 900;
}

.security-copy p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.shipping-address {
  padding: 24px;
  color: var(--ink);
  background: #fff;
  border-radius: 8px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.9;
}

.shipping-address-large {
  font-size: clamp(32px, 4vw, 64px);
  line-height: 1.35;
  white-space: normal;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.voice-grid article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.voice-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 16px;
  border-radius: 8px;
}

.voice-grid span {
  color: var(--green);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 12px 0 0;
  color: var(--muted-text);
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact {
  background: #eaf6fc;
}

.site-footer {
  padding: 34px 0;
  color: #fff;
  background: var(--ink);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer-inner p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255, 255, 255, 0.82);
}

@media (min-width: 901px) and (max-width: 1320px) {
  .header-inner {
    gap: 16px;
  }

  .brand small {
    display: none;
  }

  .site-nav {
    gap: 14px;
    font-size: 13px;
  }

  .site-nav .tel {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .brand small {
    display: none;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a,
  .site-nav .tel {
    padding: 10px 4px;
  }

  .site-nav .tel {
    margin-top: 6px;
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .hero-inner,
  .page-hero-inner,
  .check-grid,
  .content-layout,
  .split,
  .data-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero {
    aspect-ratio: 16 / 9;
    min-height: auto;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.72) 46%, rgba(255, 255, 255, 0.1) 72%, rgba(255, 255, 255, 0) 100%);
  }

  .hero-bg {
    background-position: center top;
    background-size: 100% auto;
  }

  .hero-inner {
    width: calc(100% - 28px);
    min-height: 100%;
    grid-template-columns: minmax(0, 56%) 1fr;
    gap: 0;
    padding: clamp(14px, 3.6vw, 26px) 0;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .hero-headlines {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(8px, 2.4vw, 18px);
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .hero-data-message {
    position: static;
    right: auto;
    max-width: 44%;
    margin-left: auto;
    margin-bottom: clamp(4px, 1vw, 8px);
    padding-top: 0;
    text-align: right;
  }

  .hero-data-message h2 {
    font-size: clamp(18px, 4.8vw, 34px);
    line-height: 1.08;
    white-space: normal;
  }

  .hero-data-message p {
    margin-top: clamp(2px, 0.7vw, 5px);
    font-size: clamp(8px, 1.65vw, 11px);
    line-height: 1.35;
  }

  .hero .eyebrow {
    margin-bottom: clamp(2px, 0.8vw, 6px);
    color: var(--green);
    font-size: clamp(8px, 1.7vw, 12px);
  }

  .hero h1 {
    max-width: 8.5em;
    margin-bottom: clamp(3px, 1vw, 8px);
    font-size: clamp(18px, 4.8vw, 34px);
    line-height: 1.08;
  }

  .hero .lead {
    max-width: 100%;
    margin-bottom: clamp(5px, 1.3vw, 10px);
    font-size: clamp(9px, 2vw, 14px);
    line-height: 1.45;
  }

  .hero-actions {
    gap: clamp(4px, 1vw, 8px);
    margin-top: clamp(5px, 1.3vw, 10px);
  }

  .hero .button {
    width: auto;
    min-height: clamp(26px, 4.5vw, 36px);
    padding: clamp(4px, 0.9vw, 7px) clamp(7px, 1.5vw, 12px);
    border-width: 1px;
    font-size: clamp(10px, 1.8vw, 12px);
    white-space: nowrap;
  }

  .hero .send-area {
    display: none;
  }

  .content-layout > *,
  .content-layout .container,
  .page-flow,
  .page-flow > .section,
  .page-flow > .section > .container,
  .sidebar,
  .sidebar-card,
  .sidebar-image,
  .sidebar-method-menu {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .send-box {
    max-width: 520px;
  }

  .send-area {
    max-width: 720px;
  }

  .steps,
  .content-layout .steps,
  .method-steps,
  .method-cards,
  .product-item-list,
  .item-columns,
  .voice-grid,
  .link-groups,
  .notice-grid {
    grid-template-columns: 1fr;
  }

  .method-cards,
  .product-item-list,
  .voice-grid,
  .steps:has(.step-card-image),
  .content-layout .steps:has(.step-card-image),
  .method-steps:has(.step-card-image),
  .notice-grid:has(.notice-card-image),
  .reason-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(8px, 2.4vw, 12px);
  }

  .reason-list div {
    grid-template-columns: 1fr;
  }

  .reason-list img {
    justify-self: center;
    width: min(200px, 100%);
  }

  .sidebar {
    position: static;
    gap: 0;
    padding-top: 18px;
  }

  .sidebar-image,
  .sidebar .cta-card,
  .sidebar .product-menu,
  .sidebar .side-nav,
  .sidebar .address-card {
    display: none;
  }

  .sidebar-method-menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(23, 32, 38, 0.08);
  }

  .sidebar-method-menu a {
    min-height: 36px;
    padding: 6px 4px;
    border-radius: 6px;
    font-size: clamp(11px, 2.6vw, 13px);
    line-height: 1.2;
    white-space: nowrap;
  }

  .shipping-address-section .data-grid {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .page-hero-inner {
    min-height: auto;
  }

  .page-hero {
    aspect-ratio: 16 / 9;
  }

  .page-hero::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.72) 46%, rgba(255, 255, 255, 0.1) 72%, rgba(255, 255, 255, 0) 100%);
  }

  .page-hero-bg {
    background-position: center top;
    background-size: 100% auto;
  }

  .page-hero-inner {
    width: calc(100% - 28px);
    min-height: 100%;
    grid-template-columns: minmax(0, 56%) 1fr;
    gap: 0;
    padding: clamp(14px, 3.6vw, 26px) 0;
  }

  .page-hero-inner > div:first-child,
  .shipping-hero-copy {
    max-width: 100%;
    width: auto;
  }

  .page-hero .section-kicker {
    margin-bottom: clamp(2px, 0.8vw, 6px);
    color: var(--green);
    font-size: clamp(8px, 1.7vw, 12px);
  }

  .page-hero h1 {
    max-width: 8.5em;
    margin-bottom: clamp(3px, 1vw, 8px);
    font-size: clamp(18px, 4.8vw, 34px);
    line-height: 1.08;
  }

  .page-hero .lead {
    max-width: 100%;
    margin-bottom: clamp(5px, 1.3vw, 10px);
    font-size: clamp(10px, 2vw, 14px);
    line-height: 1.45;
  }

  .page-hero .button {
    width: auto;
    min-height: clamp(26px, 4.5vw, 36px);
    padding: clamp(4px, 0.9vw, 7px) clamp(7px, 1.5vw, 12px);
    border-width: 1px;
    font-size: clamp(10px, 1.8vw, 12px);
    white-space: nowrap;
  }

  .method-menu {
    display: none;
  }

  .method-menu-below {
    left: auto;
    right: auto;
    bottom: auto;
    width: min(100% - 32px, 860px);
    margin: -42px auto 24px;
  }

  .page-flow > .section:first-child {
    padding-top: 52px;
  }

  .data-grid {
    padding: 28px;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .request-panel {
    padding: 22px;
  }

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

@media (min-width: 761px) and (max-width: 900px) {
  .header-inner {
    gap: 12px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 0;
    background: transparent;
    border-bottom: 0;
  }

  .site-nav .tel {
    display: none;
  }
}

@media (max-width: 1180px) {
  .page-hero {
    aspect-ratio: 16 / 9;
    min-height: auto;
  }

  .page-hero-inner {
    min-height: 100%;
  }

  .hero {
    aspect-ratio: 16 / 9;
    min-height: auto;
  }

  .hero-inner {
    min-height: 100%;
  }

  .hero .send-area {
    display: none;
  }

  .content-layout .steps li {
    min-height: auto;
  }

  .content-layout .step-card-body {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .content-layout .step-card-image {
    width: min(180px, 100%);
    justify-self: center;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .method-cards,
  .product-item-list,
  .voice-grid,
  .steps:has(.step-card-image),
  .content-layout .steps:has(.step-card-image),
  .method-steps:has(.step-card-image),
  .notice-grid:has(.notice-card-image),
  .reason-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 561px) and (max-width: 900px) {
  .site-nav a {
    font-size: 12px;
    line-height: 1.2;
  }
}

@media (max-width: 560px) {
  .header-inner {
    min-height: 66px;
  }

  .contactless-send-banner {
    padding-top: 12px;
  }

  .brand small {
    display: none;
  }

  .hero-inner {
    padding: clamp(10px, 3vw, 16px) 0;
  }

  .page-hero,
  .page-hero-inner {
    min-height: auto;
  }

  .page-hero {
    aspect-ratio: 16 / 9;
  }

  .page-hero-inner {
    min-height: 100%;
    padding: clamp(10px, 3vw, 16px) 0;
  }

  .page-hero .lead {
    font-size: clamp(10px, 2.5vw, 12px);
    line-height: 1.42;
  }

  h1 {
    font-size: clamp(30px, 9vw, 36px);
    font-family: 'Zen Antique Soft', serif;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  .lead {
    font-size: clamp(16px, calc(14px + 0.55vw), 18px);
    line-height: 1.75;
  }

  .hero .lead,
  .page-hero .lead {
    font-size: clamp(10px, 2.5vw, 12px);
    line-height: 1.42;
  }

  .section {
    padding: 46px 0;
  }

  .content-layout {
    gap: 20px;
  }

  .page-flow > .section {
    padding: 46px 0;
  }

  .page-flow > .section:first-child {
    padding-top: 40px;
  }

  .page-flow > .section:last-child {
    padding-bottom: 52px;
  }

  .content-layout .muted {
    padding: 20px 16px;
  }

  .sidebar {
    gap: 0;
    padding-top: 14px;
  }

  .sidebar-method-menu {
    gap: 5px;
    padding: 6px;
  }

  .sidebar-method-menu a {
    min-height: 34px;
    font-size: 12px;
  }

  .shipping-address {
    padding: 18px;
  }

  .shipping-address-large {
    font-size: clamp(22px, 7vw, 30px);
    line-height: 1.45;
  }

  .quick-check {
    padding: 32px 0;
  }

  .button {
    width: 100%;
  }

  .send-area {
    display: grid;
    gap: 12px;
  }

  .send-balloon {
    width: 100%;
    max-width: 320px;
    font-size: 16px;
  }

  .send-balloon::after {
    top: auto;
    right: auto;
    bottom: -14px;
    left: 42px;
    border: 0;
    border-right: 3px solid var(--yellow);
    border-bottom: 3px solid var(--yellow);
  }

  .data-grid {
    padding: 22px;
  }

  .steps li {
    min-height: auto;
    padding: 14px;
  }

  .steps strong {
    font-size: 18px;
  }

  .steps span {
    font-size: 14px;
  }

  .product-item-list li {
    padding: 12px;
  }

  .method-cards,
  .product-item-list,
  .voice-grid,
  .steps:has(.step-card-image),
  .content-layout .steps:has(.step-card-image),
  .method-steps:has(.step-card-image),
  .notice-grid:has(.notice-card-image),
  .reason-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .method-cards article,
  .notice-grid:has(.notice-card-image) article,
  .voice-grid article,
  .steps:has(.step-card-image) li,
  .product-item-list li,
  .reason-list div {
    padding: 10px;
  }

  .method-card-image,
  .notice-card-image,
  .product-item-image,
  .voice-image,
  .step-card-image {
    margin-bottom: 8px;
  }

  .item-notes .product-item-image {
    min-height: 0;
  }

  .reason-list img {
    width: min(120px, 100%);
    height: auto;
    aspect-ratio: 1 / 1;
    justify-self: center;
  }

  .method-cards h3,
  .notice-grid:has(.notice-card-image) h3,
  .product-item-list strong,
  .voice-grid h3,
  .steps:has(.step-card-image) strong,
  .reason-list strong {
    font-size: clamp(14px, 3.6vw, 16px);
    line-height: 1.35;
  }

  .method-cards p,
  .notice-grid:has(.notice-card-image) p,
  .product-item-list span,
  .voice-grid p,
  .steps:has(.step-card-image) span,
  .reason-list span {
    font-size: clamp(12px, 3.1vw, 14px);
    line-height: 1.55;
  }

  .item-notes {
    padding: 18px;
  }

  .item-notes strong {
    font-size: 16px;
  }

  .item-notes span {
    font-size: 14px;
  }
}
.tel {

font-size: clamp(24px, 4vw, 42px);
}

.contact-form-panel {
  margin-top: 28px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.admin-body,
.admin-login-body {
  min-height: 100vh;
  background: #eef5f8;
}

.admin-login-body {
  display: grid;
  place-items: center;
  padding: 24px;
}

.admin-login-card {
  width: min(100%, 420px);
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.admin-login-card h1 {
  font-size: 32px;
}

.admin-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  color: #fff;
  background: #123b4d;
}

.admin-brand {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
}

.admin-brand span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.admin-nav {
  display: grid;
  gap: 6px;
}

.admin-nav a,
.admin-logout {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  font-weight: 800;
  text-align: left;
}

.admin-nav a:hover,
.admin-logout:hover {
  background: rgba(255, 255, 255, 0.12);
}

.admin-logout {
  width: 100%;
  margin-top: auto;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.admin-main {
  min-width: 0;
  padding: 28px;
}

.admin-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
}

.admin-top h1 {
  margin-bottom: 0;
  font-size: 34px;
}

.admin-card {
  padding: 24px;
  margin-bottom: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(23, 32, 38, 0.08);
}

.admin-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.admin-card h2 {
  margin-bottom: 0;
  font-size: 22px;
}

.admin-stat-grid,
.admin-grid-3 {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
}

.admin-stat-grid {
  grid-template-columns: repeat(4, 1fr);
}

.admin-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.admin-stat-grid article {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-stat-grid span,
.admin-detail-grid span {
  display: block;
  color: var(--muted-text);
  font-size: 13px;
  font-weight: 800;
}

.admin-stat-grid strong {
  display: block;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.2;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.admin-table-wide {
  min-width: 1280px;
}

.admin-table th,
.admin-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--ink);
  background: #f6fafc;
  font-size: 13px;
}

.admin-actions,
.admin-inline-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.admin-link-button {
  padding: 0;
  color: var(--red);
  background: transparent;
  border: 0;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.admin-badge {
  display: inline-flex;
  padding: 4px 10px;
  color: var(--green-dark);
  background: #e5f4fb;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.admin-form {
  display: grid;
  gap: 18px;
}

.admin-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.admin-detail-grid div,
.admin-message {
  padding: 16px;
  background: #f7fbfd;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-message {
  white-space: pre-wrap;
  margin-bottom: 20px;
}

.admin-metric-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.admin-metric-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.admin-url-cell {
  max-width: 320px;
}

.admin-muted {
  color: var(--muted-text);
  font-size: 12px;
}

@media (max-width: 900px) {
  .admin-shell,
  .admin-stat-grid,
  .admin-grid-3,
  .admin-detail-grid {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }
}
