@charset "UTF-8";

:root {
  --ink: #172235;
  --muted: #5c6878;
  --line: #dce5e9;
  --paper: #ffffff;
  --soft: #f3f8f7;
  --mist: #edf4fb;
  --navy: #18324a;
  --teal: #14a6b8;
  --coral: #f06f4f;
  --yellow: #f7c84b;
  --shadow: 0 18px 45px rgba(23, 34, 53, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 229, 233, 0.9);
  backdrop-filter: blur(14px);
}

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

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 230px;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.header-nav a {
  padding: 10px 0;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  color: var(--teal);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.3;
}

.btn.primary {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 12px 26px rgba(240, 111, 79, 0.28);
}

.btn.secondary {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  background: var(--mist);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 39%, rgba(255, 255, 255, 0.44) 65%, rgba(255, 255, 255, 0.18) 100%),
    url("../images/mainV_new03.jpg") center right / cover no-repeat;
}

.hero::after {
  position: absolute;
  right: 7vw;
  bottom: 44px;
  width: min(36vw, 460px);
  height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.22);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 54px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: 720px;
  margin: 0 auto;
  padding: 70px 0;
}

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

.eyebrow,
.section-kicker,
.panel-label,
.plan {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.08;
}

.lead {
  max-width: 640px;
  margin: 26px 0 0;
  color: #344154;
  font-size: 19px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-checks li {
  padding: 8px 12px;
  border: 1px solid rgba(20, 166, 184, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.hero-panel {
  align-self: end;
  padding: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.hero-panel h2 {
  margin: 0 0 20px;
  font-size: 24px;
  line-height: 1.35;
}

.panel-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.panel-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.panel-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  color: #fff;
  background: var(--teal);
  font-size: 14px;
  font-weight: 900;
}

.panel-row p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 92px 0;
}

.intro {
  background: var(--navy);
  color: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.intro h2,
.section-head h2,
.reassurance h2,
.cta h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.25;
}

.intro p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  font-weight: 700;
}

.section-head {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-head p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 700;
}

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

.service-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-steps article,
.price-grid article {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: #fff;
  background: var(--coral);
  font-weight: 900;
}

.service-steps h3,
.item-main h3,
.price-grid h3,
.flow-list h3 {
  margin: 18px 0 10px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
}

.service-steps p,
.item-main p,
.price-grid p,
.flow-list p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

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

.item-main {
  min-height: 290px;
  padding: 34px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, rgba(24, 50, 74, 0.88), rgba(20, 166, 184, 0.7)), url("../images/online-shopping-list.png") center / cover;
}

.item-main.accent {
  background: linear-gradient(135deg, rgba(240, 111, 79, 0.86), rgba(247, 200, 75, 0.62)), url("../images/department-store-display.png") center / cover;
}

.item-main h3 {
  margin-top: 0;
  font-size: 30px;
}

.item-main p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
}

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

.item-list li {
  padding: 18px 18px 18px 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 800;
  position: relative;
}

.item-list li::before {
  position: absolute;
  top: 20px;
  left: 18px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: inset 0 0 0 4px #fff, 0 0 0 1px var(--yellow);
  content: "";
}

.pricing {
  background: var(--mist);
}

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

.price-grid article {
  display: flex;
  flex-direction: column;
}

.price-grid .featured {
  border-color: rgba(240, 111, 79, 0.42);
  box-shadow: var(--shadow);
}

.price-grid strong {
  display: block;
  margin-top: auto;
  padding-top: 24px;
  color: var(--coral);
  font-size: 30px;
  font-weight: 900;
}

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

.flow-list li {
  position: relative;
  padding: 28px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.flow-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-weight: 900;
}

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

.reassurance-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(24, 50, 74, 0.94), rgba(20, 166, 184, 0.8)),
    url("../images/mainV_05.jpg") center / cover;
}

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

.reassurance-box li {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.company-table {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  border-collapse: separate;
  border-spacing: 0;
}

.company-table tr + tr th,
.company-table tr + tr td {
  border-top: 1px solid var(--line);
}

.company-table th,
.company-table td {
  padding: 20px 24px;
  vertical-align: top;
}

.company-table th {
  width: 220px;
  background: var(--soft);
  font-weight: 900;
  text-align: left;
}

.company-table td {
  color: var(--muted);
  font-weight: 700;
}

.company-table a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cta {
  padding: 86px 0;
  text-align: center;
  color: #fff;
  background: var(--navy);
}

.cta-inner {
  max-width: 820px;
}

.cta p:not(.section-kicker) {
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.site-footer {
  padding: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  background: #101b2b;
}

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 10px 20px;
    padding: 14px 0;
  }

  .brand img {
    width: 200px;
  }

  .header-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-panel {
    align-self: auto;
    max-width: 520px;
  }

  .intro-grid,
  .reassurance-box {
    grid-template-columns: 1fr;
  }

  .service-steps,
  .flow-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-grid,
  .item-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .container,
  .header-inner,
  .hero-inner {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    position: static;
  }

  .brand img {
    width: 170px;
  }

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

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.9) 62%, rgba(255, 255, 255, 0.62) 100%),
      url("../images/mainV_new03.jpg") center / cover no-repeat;
  }

  .hero::after {
    display: none;
  }

  .hero-inner {
    padding: 60px 0 52px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 17px;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-panel {
    padding: 22px;
  }

  .section {
    padding: 64px 0;
  }

  .service-steps,
  .item-layout,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .item-main {
    min-height: 250px;
    padding: 26px;
  }

  .item-main h3 {
    font-size: 25px;
  }

  .reassurance-box {
    padding: 28px;
  }

  .company-table,
  .company-table tbody,
  .company-table tr,
  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
  }

  .company-table th,
  .company-table td {
    padding: 16px 18px;
  }

  .company-table td {
    padding-top: 0;
  }
}
