:root {
  --navy: #071a47;
  --text: #15223d;
  --muted: #5d6a86;
  --blue: #2459f6;
  --blue2: #1d74ff;
  --teal: #08a78f;
  --orange: #ff8a18;
  --sky: #eef8ff;
  --soft: #f6fbff;
  --line: rgba(7, 26, 71, .12);
  --shadow: 0 18px 45px rgba(7, 26, 71, .10);
  --shadow-soft: 0 10px 28px rgba(7, 26, 71, .07);
  --radius: 26px;
  --header: 100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
}

body {
  margin: 0;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", YuGothic, "Noto Sans JP", "Segoe UI", sans-serif;
  background: #fff;
  line-height: 1.75;
  overflow-x: clip;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(36, 89, 246, .45);
  outline-offset: 4px;
}

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

.pc-only {
  display: inline;
}

.sp-only {
  display: none !important;
}

@media (max-width: 700px) {
  .pc-only {
    display: none !important;
  }

  .sp-only {
    display: block !important;
  }
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 8px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

/* === HEADER (original mycerts.me) === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header);
  z-index: 999;
  background-color: #fff;
}

.page-width {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}

.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px 0;
}

.header_logo {
  z-index: 2;
  max-width: 290px;
  width: 24.25%;
  min-width: 146px;
}

.header_logo img {
  width: 100%;
  height: auto;
  display: block;
}

.header_nav {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 10px;
}

.nav_list {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header_nav a {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: #1c1c1c;
}

.nav-bottom a {
  font-size: 14px;
}

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

.hamburger,
.nav_sp {
  display: none;
}

.hamburger {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 2;
}

.hamburger span {
  position: absolute;
  transition: .3s;
}

.hamburger span:nth-child(1),
.hamburger span:nth-child(2) {
  background: #1c1c1c;
  height: 1px;
  width: 38px;
  right: 20px;
}

.hamburger span:nth-child(1) {
  top: 17px;
}

.hamburger span:nth-child(2) {
  top: 26px;
}

.hamburger .ham-menu,
.hamburger .ham-close {
  position: absolute;
  top: 35px;
  right: 21px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.ham-close {
  display: none;
}

.hamburger.bgactive span:nth-child(1) {
  transform: translateY(4.5px) rotate(15deg);
  width: 40px;
}

.hamburger.bgactive span:nth-child(2) {
  transform: translateY(-4.5px) rotate(-15deg);
  width: 40px;
}

.hamburger.bgactive .ham-menu {
  display: none;
}

.hamburger.bgactive .ham-close {
  display: block;
}

.nav_sp {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  text-align: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
  z-index: 1;
  visibility: hidden;
}

.nav-sp-flex {
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.nav_list_sp {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav_item_sp a {
  font-size: 26px;
  font-weight: 600;
  color: #1c1c1c;
}

.nav_list_sp.nav-bottom a {
  font-size: 20px;
}

.nav_sp.bgactive {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  :root {
    --header: 60px;
  }

  .header {
    height: var(--header);
  }

  .nav_list {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

/* === SECTIONS === */
.section-pad {
  padding: clamp(58px, 7vw, 104px) 0;
}

/* EDIX BANNER */
.edix-banner {
  width: 100%;
  padding-top: var(--header);
  background: #0a1430;
}

.edix-banner img {
  display: block;
  width: 100%;
  height: auto;
}

/* HERO */
.hero {
  position: relative;
  padding-top: clamp(38px, 6vw, 76px);
  padding-bottom: clamp(38px, 6vw, 76px);
  overflow: hidden;
  background: linear-gradient(120deg, #e9f2ff 0%, #eef9f6 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero::before {
  width: 420px;
  height: 420px;
  background: var(--blue);
  top: -120px;
  right: -100px;
  opacity: .25;
}

.hero::after {
  width: 380px;
  height: 380px;
  background: #00c4b4;
  bottom: -120px;
  left: -100px;
  opacity: .3;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.hero-copy,
.hero-art {
  min-width: 0;
}

.hero h1,
.section-head h2,
.faq-copy h2,
.cta-band h2 {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.22;
}

.hero h1 {
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.lead {
  margin: 24px 0 0;
  color: #1c2d54;
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 600;
  line-height: 1.95;
}

.campaign {
  display: inline-flex;
  margin: 22px 0 0;
  padding: 10px 22px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff7a00);
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 800;
  line-height: 1.4;
  box-shadow: 0 10px 24px rgba(255, 138, 24, .22);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff7a00);
  box-shadow: 0 14px 30px rgba(255, 138, 24, .26);
}

.btn-outline {
  color: var(--navy);
  background: #fff;
  border: 2px solid rgba(7, 26, 71, .18);
}

.btn-white {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 14px 30px rgba(7, 26, 71, .14);
}

.btn-orange {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff7a00);
  box-shadow: 0 14px 30px rgba(255, 138, 24, .26);
}

.btn-blue {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  box-shadow: 0 14px 30px rgba(36, 89, 246, .26);
}

.btn-blue-outline {
  color: var(--blue);
  background: #fff;
  border: 2px solid var(--blue);
}

/* App Store / Google Play */
.hero-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0f1f3a;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 12px;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 10px 22px rgba(7, 26, 71, .18);
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(7, 26, 71, .25);
}

.store-btn svg {
  width: 26px;
  height: 26px;
}

.store-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.store-btn small {
  font-size: 10px;
  opacity: .85;
  font-weight: 600;
}

.store-btn strong {
  font-size: 15px;
  font-weight: 700;
}

/* HERO image — transparent, no frame */
.hero-art {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.hero-art-crop {
  position: relative;
  width: 100%;
}

.hero-art-crop img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

/* shared section heads */
.section-soft {
  background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}

.about-section {
  background: #fff;
}

.section-head {
  max-width: 900px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-head.wide {
  max-width: 1000px;
}

.section-head h2,
.faq-copy h2 {
  font-size: clamp(26px, 3.4vw, 40px);
}

.section-head p,
.faq-copy p {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 600;
  line-height: 1.85;
  overflow-wrap: break-word;
}

.section-head strong {
  color: var(--orange);
}

/* === FEATURE / MERIT CARDS === */
.feature-grid {
  display: grid;
  gap: 22px;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 36px 28px 32px;
  text-align: center;
}

.feature-icon {
  display: block;
  width: 96px;
  height: 96px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.merit-card {
  padding: 32px 28px;
  text-align: left;
}

.merit-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.merit-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 800;
  line-height: 1.45;
}

.card p {
  margin: 0;
  color: #31405f;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.85;
}

.merit-card h3 {
  margin: 0;
  color: var(--teal);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: break-word;
}

.merit-card p {
  text-align: left;
  overflow-wrap: break-word;
}

/* === FREE / BUDGET SECTION === */
.free-section {
  background: linear-gradient(135deg, #eaf8ff, #f9ffff);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.highlight-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 34px 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

.highlight-card strong {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(1.15em * 2);
  color: var(--teal);
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.04em;
  white-space: nowrap;
}

.highlight-card.blue strong {
  white-space: normal;
}

.highlight-card.orange strong {
  color: var(--orange);
}

.highlight-card.blue strong {
  color: var(--blue);
}

.highlight-card span {
  display: block;
  margin-top: 18px;
  color: var(--navy);
  font-size: clamp(14px, 1.45vw, 16px);
  font-weight: 600;
  line-height: 1.7;
}

.closing-line {
  margin: 24px 0 0;
  color: var(--navy);
  text-align: center;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.closing-line span {
  color: var(--orange);
  font-weight: 700;
}

/* === COMPARE TABLES === */
.table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  color: var(--navy);
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 700;
}

.compare-table caption {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.compare-table th,
.compare-table td {
  padding: 18px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  overflow-wrap: anywhere;
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
}

.compare-table thead th {
  background: #f0f3f8;
  font-size: 1em;
  font-weight: 700;
}

.service-table thead th:last-child {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #0bbd9e);
}

.format-table thead th:last-child {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #0bbd9e);
}

.compare-table tr:last-child th,
.compare-table tr:last-child td {
  border-bottom: 0;
}

.compare-table th:last-child,
.compare-table td:last-child {
  border-right: 0;
}

.compare-table .mycerts-cell {
  color: var(--teal);
  font-weight: 800;
  background: rgba(8, 167, 143, .04);
}

.row-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(36, 89, 246, .10);
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  vertical-align: middle;
}

.bad {
  color: #f01428 !important;
}

.warn {
  color: var(--orange) !important;
}

.good {
  color: var(--teal) !important;
}

/* === CASES === */
.cases-section {
  background: #fff;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.case-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  overflow: hidden;
}

.case-label {
  align-self: flex-start;
  padding: 5px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--teal);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.4;
}

.orange-label {
  background: var(--orange);
}

.blue-label {
  background: #4f7df3;
}

.case-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #eef3ff;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card a {
  margin-top: auto;
  color: var(--blue);
  font-weight: 800;
  font-size: 14px;
}

/* === FLOW === */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding-top: 40px;
}

.flow-card {
  position: relative;
  padding: 56px 26px 28px;
  text-align: center;
}

.step {
  position: absolute;
  left: 50%;
  top: -28px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff7a00);
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(255, 138, 24, .26);
}

.flow-icon {
  display: inline-grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  border-radius: 18px;
  color: var(--blue);
  background: rgba(36, 89, 246, .08);
}

.flow-icon svg {
  width: 36px;
  height: 36px;
}

.mail-box {
  display: inline-flex;
  justify-content: center;
  max-width: 100%;
  margin-top: 18px;
  padding: 12px 18px;
  border: 1px solid rgba(36, 89, 246, .25);
  border-radius: 14px;
  color: var(--blue);
  background: #f6faff;
  font-weight: 800;
}

.flow-buttons {
  justify-content: center;
}

/* === FAQ === */
.faq-section {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.faq-copy {
  min-width: 0;
  text-align: left;
}

.faq-copy h2 {
  text-align: left;
}

.faq-list {
  display: grid;
  gap: 14px;
  min-width: 0;
}

details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 60px;
  padding: 16px 56px 16px 20px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 800;
}

details[open] summary::after {
  content: "−";
  background: var(--teal);
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: #31405f;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.85;
}

/* === NEWS === */
.news-section {
  background: #f7fbff;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 920px;
  margin-inline: auto;
}

.news-list li {
  border-bottom: 1px solid var(--line);
}

.news-list li:first-child {
  border-top: 1px solid var(--line);
}

.news-list a {
  display: grid;
  grid-template-columns: 110px 90px 1fr 24px;
  gap: 18px;
  align-items: center;
  padding: 22px 8px;
  transition: padding .2s ease, background .2s ease;
}

.news-list a:hover {
  padding-left: 18px;
  background: #fff;
}

.news-list time {
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
}

.news-cat {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  letter-spacing: .04em;
  justify-self: start;
  white-space: nowrap;
}

.news-cat.info {
  background: var(--blue);
}

.news-list p {
  margin: 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

.news-arrow {
  color: var(--blue);
  font-weight: 700;
  text-align: right;
}

/* === COMPANY PAGE === */
.page-hero {
  position: relative;
  padding: calc(var(--header) + clamp(48px, 7vw, 96px)) 0 clamp(40px, 6vw, 76px);
  text-align: center;
  background: linear-gradient(120deg, #e9f2ff 0%, #eef9f6 100%);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--blue);
  opacity: .18;
  filter: blur(60px);
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--teal);
  opacity: .22;
  filter: blur(60px);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-kicker {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(36, 89, 246, .12);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  margin-bottom: 18px;
}

.page-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.25;
}

.page-hero p {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 600;
  line-height: 1.85;
}

.company-section,
.clients-section {
  background: #fff;
}

.info-list {
  margin: 0 auto;
  padding: 0;
  max-width: 880px;
  border-top: 1px solid var(--line);
}

.info-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 22px 8px;
  border-bottom: 1px solid var(--line);
}

.info-row dt {
  margin: 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.info-row dd {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.85;
}

.info-row dd .muted {
  color: var(--muted);
  font-size: 13px;
}

.info-link {
  color: var(--blue);
  font-weight: 700;
}

.info-link:hover {
  text-decoration: underline;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 1080px;
  margin-inline: auto;
}

.client-grid li {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.client-grid img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ISO header: text on left, marks on right */
.iso-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: clamp(20px, 4vw, 56px);
  max-width: 1000px;
  margin: 0 auto 38px;
}

.iso-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.35;
}

.iso-copy p {
  margin: 14px 0 0;
  color: var(--text);
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 700;
  line-height: 1.85;
  overflow-wrap: break-word;
}

.iso-copy .iso-sub {
  color: var(--muted);
  font-weight: 600;
  font-size: clamp(13px, 1.3vw, 15px);
}

.iso-marks {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.iso-marks img {
  width: clamp(72px, 8vw, 110px);
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 860px) {
  .client-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .iso-head {
    grid-template-columns: 1fr;
  }

  .iso-marks {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .info-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 4px;
  }

  .info-row dt {
    font-size: 13px;
    color: var(--muted);
  }

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

@media (max-width: 430px) {
  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* === CTA BAND === */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 56px 0;
  color: #fff;
  background: linear-gradient(110deg, #2459f6 0%, #08a78f 100%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-copy {
  min-width: 0;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(22px, 3vw, 34px);
}

.cta-band p {
  margin: 10px 0 0;
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 600;
}

/* === FOOTER === */
.footer {
  padding: 60px 0 26px;
  color: #fff;
  background: radial-gradient(circle at 15% 20%, rgba(36, 89, 246, .35), transparent 28rem), #03183f;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) repeat(4, minmax(0, 1fr));
  gap: 34px;
}

.footer h3 {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}

.footer a {
  display: block;
  margin: 9px 0;
  opacity: .86;
  font-size: 14px;
  font-weight: 600;
}

.footer a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-brand p {
  opacity: .9;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.85;
}

.footer-logo .brand-logo {
  filter: brightness(0) invert(1);
  height: 32px;
}

.sns {
  display: flex;
  gap: 14px;
  align-items: center;
}

.sns a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  color: #fff;
  opacity: 1;
}

.sns a:hover {
  background: rgba(255, 255, 255, .12);
  text-decoration: none;
}

.sns svg {
  width: 16px;
  height: 16px;
}

.copyright {
  margin: 38px 0 0;
  text-align: center;
  opacity: .75;
  font-size: 13px;
}

/* === RESPONSIVE === */
@media (max-width: 1060px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .campaign {
    justify-content: center;
  }

  .hero-buttons,
  .hero-stores {
    justify-content: center;
  }

  .hero-art {
    max-width: 560px;
    margin: 0 auto;
  }

  .feature-grid.three,
  .highlight-grid,
  .case-grid,
  .flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid.three>article:last-child,
  .highlight-grid>article:last-child,
  .case-grid>article:last-child,
  .flow-grid>article:last-child {
    grid-column: 1 / -1;
  }

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

  .faq-copy {
    text-align: center;
  }

  .faq-copy h2 {
    text-align: center;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-buttons {
    justify-content: center;
  }

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

@media (max-width: 860px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  /* Tables scroll horizontally on mobile, keeping the same shape as PC */
  .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .service-table {
    min-width: 640px;
  }

  .format-table {
    min-width: 720px;
  }

  .compare-table th,
  .compare-table td {
    padding: 14px 14px;
    font-size: 14px;
  }

  .news-list a {
    grid-template-columns: 90px 80px 1fr;
    padding: 16px 4px;
    gap: 12px;
  }

  .news-arrow {
    display: none;
  }

  .news-list p {
    font-size: 14px;
  }
}

@media (max-width: 700px) {

  .feature-grid.three,
  .highlight-grid,
  .case-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid.three>article:last-child,
  .highlight-grid>article:last-child,
  .case-grid>article:last-child,
  .flow-grid>article:last-child {
    grid-column: auto;
  }

  .flow-grid {
    gap: 50px;
  }

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

  .hero h1 {
    font-size: clamp(26px, 7.4vw, 36px);
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .header_logo {
    max-width: 200px;
  }

  .hero {
    padding-top: calc(var(--header) + 28px);
  }

  .hero-copy {
    text-align: left;
  }

  .lead {
    font-size: 14px;
  }

  .campaign {
    width: 100%;
    justify-content: center;
    border-radius: 999px;
    text-align: center;
  }

  .button-row,
  .hero-buttons,
  .cta-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .hero-stores {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .btn {
    width: 100%;
    min-height: 48px;
    padding: 12px 18px;
    font-size: 14px;
  }

  .section-head,
  .faq-copy {
    text-align: left;
    margin-bottom: 26px;
  }

  .section-head h2,
  .faq-copy h2 {
    text-align: left;
  }

  .section-head p,
  .faq-copy p {
    font-size: 14px;
  }

  .feature-card,
  .merit-card,
  .highlight-card {
    padding: 28px 22px;
  }

  .closing-line {
    text-align: left;
    flex-direction: row;
  }

  .case-card {
    padding: 18px;
  }

  .flow-card {
    padding: 56px 22px 24px;
    text-align: left;
  }

  .step {
    left: 22px;
    transform: none;
  }

  .flow-icon {
    margin-left: 0;
  }

  .mail-box {
    width: 100%;
  }

  .faq-list {
    gap: 12px;
  }

  summary {
    min-height: 56px;
    padding: 14px 50px 14px 16px;
    font-size: 15px;
  }

  summary::after {
    right: 16px;
  }

  details p {
    padding: 0 16px 18px;
  }

  .cta-band {
    padding: 44px 0;
  }

  .cta-inner {
    align-items: stretch;
    text-align: left;
  }

  .news-list a {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .news-list time {
    font-size: 13px;
  }

  .news-list p {
    font-size: 14px;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 22px, 1120px);
  }

  .hero h1 {
    font-size: clamp(24px, 8vw, 32px);
  }

  .section-head h2,
  .faq-copy h2 {
    font-size: clamp(22px, 7.2vw, 28px);
  }

  .card h3 {
    font-size: 17px;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(100% - 18px, 1120px);
  }

  .hamburger {
    width: 42px;
    height: 42px;
  }

  .campaign {
    font-size: 12px;
  }

  .feature-card,
  .merit-card,
  .highlight-card,
  .case-card,
  .flow-card {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
  }
}

.compare-inner {
  display: flex;
  gap: 38px;
  justify-content: center;
}

.compare-card {
  width: calc((100% - 76px)/3);
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,.36);
}

.compare-card.active {
  background: #6980D9;
  color: #fff;
}

.compare-head {
  background-color:#C6CFED;
  text-align: center;
  padding: 23px 10px;
}
.active .compare-head {
background-color: #2A4BC8;
}
.compare-head h3 {
  font-size: 29px;
  font-weight: 700;
  line-height: 1.5;
  margin:0;
}
.compare-list{
  margin:0;
  padding:0;
  list-style: none;
}
.compare-list li {
  margin:0 15px;
  padding: 0;
  text-align: center;
  border-bottom: 1px solid #91A3EB;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap:15px;
}

.active.compare-list li {
  border-bottom: 1px solid #91A3EB;
}
.compare-list li:last-child{
border-bottom: none;
}
.label {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
  color: #7F7F7F;
  margin:0;
}

.active .label {
  color:#CFD6EB;
}

.value {
  color:#1D1D1D;
  font-size: 29px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
}
.value.large{
  font-size: 44px;
}
.value.small{
  font-size: 26px;
}
.active .value {
  color: #fff;
}

.compare-card-sec .value {
  color: #DB3C29;
  font-weight: 500;
}

.compare-card-thi .value {
  color: #F17A1D;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
.compare-inner {
  gap: 10px;
}
.compare-service .compare-inner {
  gap:15px;
}
.compare-card {
  width: calc((100% - 20px)/3);
}
.compare-service .compare-card {
    width: calc((100% - 15px)/2);
}
.compare-head {
  padding: 10px;
}
.compare-head h3 {
  font-size: 13px;
}
.compare-list li {
  margin:0 7px;
  height: 70px;
  gap:7px;
}

.label {
  font-size: 10px;
}

.value {
  font-size: 13px;
}
.value.large{
  font-size: 18px;
}
.value.small{
  font-size: 12px;
}
}