/* eサービス 検査依頼 page. Layout/sidebar/FAQ chain:
   page-contact.css + mail-magazine.css + page-food-inspection.css.
   This file owns: page title, section headings, login/会員登録 buttons, security list. */
.sn-req-main.sn-es-main {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sn-es-main > * {
  margin-bottom: 40px;
}
.sn-es-main > *:last-child {
  margin-bottom: 0;
}

/* ③ Page title 検査依頼 */
.sn-es-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.02em;
  color: #061C3D;
  margin: 0;
  width: 100%;
  padding-bottom: 12px;
  border-bottom: 1px solid #008F8D;
}

/* ④⑤⑥ Section */
.sn-es-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}
.sn-es-section-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: #00C48A;
  margin: 0;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid #E6E8EC;
}
.sn-es-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #42526B;
  margin: 0;
}
.sn-es-text a {
  color: #016FFF;
  text-decoration: none;
}
.sn-es-text a:hover {
  opacity: 0.8;
}

/* Login block (logo + buttons). */
.sn-es-login-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.sn-es-logo {
  height: 38px;
  width: auto;
}

/* Buttons */
.sn-es-btn {
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 188px;
  height: 56px;
  padding: 10px 16px 10px 21px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  transition: opacity 0.3s;
}
.sn-es-btn:hover {
  opacity: 0.85;
}
.sn-es-btn span {
  color: #FFFFFF;
}
.sn-es-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: none;
}
.sn-es-btn--login {
  background-image: url('../../images/btn_background_orange.png');
  background-color: #FE7F00;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.sn-es-btn--register {
  background-image: url('../../images/btn_background_blue_v2.png');
  background-color: #008F8D;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ⑥ Security list */
.sn-es-security-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}
.sn-es-security-item {
  position: relative;
  padding-left: 1.1em;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #42526B;
}
.sn-es-security-item::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #42526B;
}

/* ═══════════════════════════════════════════
   サービス内容・利用申し込み PAGE (page-eservice-guide.php)
═══════════════════════════════════════════ */

/* Intro: title + lead */
.sn-es-intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.sn-es-title--noline {
  padding-bottom: 0;
  border-bottom: none;
  /* !important: beats .sn-req-main > h2 { margin: 0 } (page-contact.css),
     which targets direct-child h2 placeholders and outranks this on specificity. */
  margin-bottom: 16px !important;
}
.sn-es-lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: #00C48A;
  margin: 0;
}

/* Section head: icon + title + underline (3px teal) */
.sn-es-shead {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 3px solid #008E8C;
}
.sn-es-shead-icon {
  width: 40px;
  height: 40px;
  flex: none;
}
.sn-es-shead-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: #061C3D;
  margin: 0;
}

/* ④ Feature cards 01–05 */
.sn-es-feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 900px;
}
.sn-es-feature-card {
  position: relative;
  box-sizing: border-box;
  flex: 0 1 280px;
  margin-top: 32px;
  padding: 44px 16px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  border: 2px solid #008F8D;
  border-radius: 8px;
}
.sn-es-feature-num {
  position: absolute;
  top: -32px;
  left: 20px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #008F8D;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.sn-es-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}
.sn-es-feature-text {
  margin: 0;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #061C3D;
}

/* ⑤ 会員の種類 — heading↔items / item↔item / block↔block all 16px */
.sn-es-member {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.sn-es-subheading {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: #061C3D;
}
.sn-es-member .sn-es-security-list {
  gap: 16px;
}
.sn-es-member .sn-es-security-item {
  line-height: 24px;
}

/* ⑥ 検査のお申し込み — flow */
.sn-es-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
  max-width: 900px;
}
.sn-es-flow-step {
  box-sizing: border-box;
  flex: 1 1 0;
  min-width: 120px;
  max-width: 200px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 12px;
  background: #ECF6F6;
  border: 2px solid #008F8D;
  border-radius: 8px;
  text-align: center;
}
.sn-es-flow-step:has(.sn-es-flow-form) {
  padding-right: 0;
}
.sn-es-flow-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  gap: 4px;
}
.sn-es-flow-icon img {
  height: 64px;
  width: auto;
}
.sn-es-flow-badge {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background: #E7380D;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
}
/* Step 2: form mockup (検体名/検査名 + input box) */
.sn-es-flow-form {
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 150px;
}
.sn-es-flow-form-row {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
}
.sn-es-flow-form-label {
  flex: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 16px;
  color: #42526B;
  white-space: nowrap;
}
.sn-es-flow-form-input {
  flex: 1 1 auto;
  height: 27px;
  background: #FFFFFF;
  border: 1px solid #CACACA;
  border-radius: 2px;
}
.sn-es-flow-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #061C3D;
}
.sn-es-flow-step:has(.sn-es-flow-form) .sn-es-flow-text {
  padding-right: 12px;
}
.sn-es-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.sn-es-flow-send {
  box-sizing: border-box;
  flex: none;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  min-height: 60px;
  padding: 8px;
  border-radius: 8px;
  background: #FE7F00;
  color: #FFFFFF;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

/* ⑦ サービスご利用のお申し込み — plain heading (no icon/underline). */
.sn-es-plain-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: #061C3D;
  margin: 0;
  width: 100%;
}

/* ⑦ 同意ボタン */
.sn-es-agree-btns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.sn-es-agree-btns .sn-es-btn {
  width: 224px;
}
.sn-es-agree-no {
  background-image: url('../../images/btn_background_red_bold.png');
  background-color: #8F0002;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ═══════════════════════════════════════════
   Q&A PAGE (page-eservice-qa.php)
═══════════════════════════════════════════ */
.sn-es-qa-search {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 18px;
  width: 100%;
}
.sn-es-qa-search-field {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
}
.sn-es-qa-search-input {
  box-sizing: border-box;
  width: 100%;
  height: 56px;
  padding: 16px 44px 16px 20px;
  border: 1px solid #CDD2D8;
  border-radius: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #061C3D;
}
.sn-es-qa-search-input::placeholder { color: #6A778B; font-weight: 700; }
.sn-es-qa-search-input:focus { outline: none; border-color: #008F8D; }
.sn-es-qa-search-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.sn-es-qa-search-btn {
  box-sizing: border-box;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 224px;
  height: 56px;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background-image: url('../../images/btn_background_blue.png');
  background-color: #008F8D;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #FFFFFF;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.02em;
  transition: opacity 0.3s;
}
.sn-es-qa-search-btn:hover { opacity: 0.85; }

/* Category chips */
.sn-es-qa-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
}
.sn-es-qa-chip {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid #00C48A;
  border-radius: 8px;
  background: #FFFFFF;
  color: #42526B;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.sn-es-qa-chip:hover { background: #ECF6F6; }
.sn-es-qa-chip.active {
  background: #008F8D;
  border-color: #008F8D;
  color: #FFFFFF;
}

/* Category heading + empty */
.sn-es-qa-cat-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: #061C3D;
  margin: 0 0 16px;
}
.sn-es-qa-empty {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: #42526B;
  margin: 0;
}

/* Tablet: layout already stacks at 991px → let sidebar nav go full-width. */
@media (max-width: 991px) {
  .sn-req-sidebar .sn-mm-sidebar-nav {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .sn-req-sidebar .sn-mm-sidebar-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    margin-bottom: 0;
  }
  .sn-req-sidebar .sn-mm-sidebar-title {
    grid-column: 1 / -1;
    border-radius: 0;
  }
  .sn-req-sidebar .sn-mm-sidebar-link {
    min-height: 48px;
    height: auto;
    white-space: normal;
    word-break: break-word;
    border: 0;
    border-radius: 0 !important;
  }
  .sn-es-title {
    font-size: 26px;
    line-height: 34px;
  }
  .sn-es-title--noline {
    margin-bottom: 14px !important;
  }
  /* Q&A search: input on top, full-width button below. */
  .sn-es-qa-search {
    flex-direction: column;
  }
  .sn-es-qa-search-btn {
    width: 100%;
  }
  .sn-es-qa-cat-title {
    font-size: 20px;
    line-height: 28px;
  }
  .sn-es-section-title,
  .sn-es-shead-title,
  .sn-es-subheading,
  .sn-es-plain-title {
    font-size: 20px;
    line-height: 28px;
  }
  .sn-es-shead { gap: 10px; padding-bottom: 12px; border-bottom-width: 2px; }
  .sn-es-shead-icon { width: 32px; height: 32px; }
  .sn-es-lead {
    font-size: 18px;
    line-height: 28px;
  }
  .sn-es-btn {
    width: 100%;
    min-width: 0;
    height: 52px;
    font-size: 20px;
    line-height: 28px;
  }
  .sn-es-btn-arrow { width: 32px; height: 32px; }
  /* 会員登録 button sizes to content, not full-width. */
  .sn-es-btn--register {
    width: auto;
  }
  /* Feature cards: 1 col on mobile. */
  .sn-es-feature-grid {
    gap: 32px 16px;
    max-width: 320px;
  }
  .sn-es-feature-card {
    flex: 0 1 280px;
    max-width: 100%;
    padding: 40px 14px 24px;
  }
  .sn-es-feature-num {
    top: -28px;
    width: 56px; height: 56px;
    font-size: 26px;
  }
  .sn-es-feature-icon { height: 72px; }
  .sn-es-feature-icon img { max-width: 72px; height: auto; }
  .sn-es-feature-text { font-size: 16px; line-height: 24px; }
  /* Flow: vertical stack, arrow rotates down, boxes full-width. */
  .sn-es-flow {
    flex-direction: column;
    align-items: stretch;
  }
  .sn-es-flow-step {
    min-width: 0;
  }
  .sn-es-flow-arrow {
    transform: rotate(90deg);
  }
  .sn-es-flow-send {
    align-self: center;
  }
  /* Agree/disagree buttons full-width. */
  .sn-es-agree-btns {
    flex-direction: column;
  }
  .sn-es-agree-btns .sn-es-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .sn-req-sidebar .sn-mm-sidebar-title,
  .sn-req-sidebar .sn-mm-sidebar-link {
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.45;
  }
}

/* Feature cards collapse to 1-col earlier — 2-col around 500px is too tight with 16px text + circle badge. */
@media (max-width: 560px) {
  .sn-es-title { font-size: 22px; line-height: 30px; }
  .sn-es-title--noline { margin-bottom: 12px !important; }
  .sn-es-lead { font-size: 16px; line-height: 26px; }
  .sn-es-section-title,
  .sn-es-shead-title,
  .sn-es-subheading,
  .sn-es-plain-title { font-size: 18px; line-height: 26px; }
  .sn-es-shead-icon { width: 28px; height: 28px; }
  .sn-es-feature-grid { gap: 32px 16px; max-width: 320px; }
  .sn-es-feature-card {
    flex: 0 1 280px;
    padding: 36px 16px 22px;
    margin-top: 28px;
  }
  .sn-es-feature-num {
    top: -24px;
    width: 48px; height: 48px;
    font-size: 22px;
  }
  .sn-es-feature-icon { height: 64px; }
  .sn-es-feature-icon img { max-width: 64px; }
  .sn-es-flow { max-width: 240px; }
  .sn-es-flow-step { min-height: 160px; padding: 20px 12px; gap: 12px; max-width: 200px; }
  .sn-es-flow-icon { height: 56px; }
  .sn-es-flow-icon img { height: 56px; }
  .sn-es-flow-text { font-size: 16px; line-height: 24px; }
  .sn-es-btn { font-size: 18px; line-height: 26px; height: 48px; }
}

@media (max-width: 480px) {
  /* Feature cards: 1 col, constrained width. */
  .sn-es-feature-card {
    flex: 0 1 280px;
  }
}

/* Small portrait phones */
@media (max-width: 420px) {
  .sn-es-title { font-size: 20px; line-height: 28px; }
  .sn-es-title--noline { margin-bottom: 10px !important; }
  .sn-es-lead { font-size: 15px; line-height: 24px; }
  .sn-es-section-title,
  .sn-es-shead-title,
  .sn-es-subheading,
  .sn-es-plain-title { font-size: 17px; line-height: 24px; }
  .sn-es-shead { gap: 8px; padding-bottom: 10px; }
  .sn-es-text,
  .sn-es-security-item { font-size: 14px; line-height: 22px; }
  .sn-es-feature-card { padding: 32px 14px 20px; margin-top: 24px; }
  .sn-es-feature-num { top: -20px; width: 42px; height: 42px; font-size: 19px; }
  .sn-es-feature-icon { height: 60px; }
  .sn-es-feature-icon img { max-width: 60px; }
  .sn-es-feature-text { font-size: 15px; line-height: 22px; }
  .sn-es-flow-step { min-height: 140px; padding: 16px 10px; }
  .sn-es-flow-icon { height: 48px; }
  .sn-es-flow-icon img { height: 48px; }
  .sn-es-flow-badge { width: 32px; height: 32px; font-size: 12px; }
  .sn-es-flow-text { font-size: 15px; line-height: 22px; }
  .sn-es-flow-send { width: 56px; min-height: 52px; font-size: 13px; line-height: 18px; }
  .sn-es-btn { font-size: 16px; line-height: 22px; height: 44px; padding: 8px 14px 8px 16px; }
  .sn-es-btn-arrow { width: 28px; height: 28px; }
}

/* Very small phones (iPhone SE 1st gen) */
@media (max-width: 359px) {
  .sn-es-title { font-size: 18px; line-height: 26px; }
  .sn-es-lead { font-size: 14px; line-height: 22px; }
  .sn-es-section-title,
  .sn-es-shead-title,
  .sn-es-subheading,
  .sn-es-plain-title { font-size: 16px; line-height: 22px; }
  .sn-es-feature-num { top: -18px; width: 38px; height: 38px; font-size: 17px; }
  .sn-es-feature-text { font-size: 14px; line-height: 20px; }
  .sn-es-flow-text { font-size: 14px; }
  .sn-es-btn { font-size: 15px; height: 42px; }
}

/* ─────────────────────────────────────────
   APPLICATION FORM (page-eservice-application.php)
───────────────────────────────────────── */
.sn-es-app-box {
  background: #FFFFFF;
  border: 1px solid #CDD2D8;
  border-radius: 8px;
  padding: 40px;
  width: 100%;
  box-sizing: border-box;
}

.sn-es-app-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.02em;
  color: #061C3D;
  margin: 0 0 16px 0;
  border-bottom: none;
}

.sn-es-app-subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: #061C3D;
  margin: 0;
}

.sn-es-app-separator {
  height: 1px;
  background-color: #E6E8EC;
  margin: 32px 0;
  border: none;
}

@media (max-width: 768px) {
  .sn-es-app-box {
    padding: 20px;
  }
  .sn-es-app-title {
    font-size: 24px;
    line-height: 32px;
  }
  .sn-es-app-subtitle {
    font-size: 20px;
  }
}

.sn-es-app-hint {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #E7380D;
  margin: 0;
}

.sn-es-main .sn-inq-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  color: #0A0A0A;
}

.sn-es-main .sn-inq-subhead {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 14px;
  color: #0A0A0A;
  margin-bottom: 8px;
}

/* Confirm Screen Table Layout */
.sn-es-cf-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.sn-es-cf-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 12px 0;
  gap: 80px;
  border-top: 1px solid #E6E8EC;
}
.sn-es-cf-row:last-child {
  border-bottom: 1px solid #E6E8EC;
}
.sn-es-cf-label {
  width: 210px;
  flex-shrink: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #42526B;
}
.sn-es-cf-value {
  flex-grow: 1;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #42526B;
}

/* Confirm Buttons Layout */
.sn-es-cf-btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  width: 100%;
}
.sn-es-cf-btn-back {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  width: 271px;
  height: 56px;
  box-sizing: border-box;
  background: #FFFFFF;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: #061C3D;
  gap: 10px;
}
.sn-es-cf-btn-back span {
  flex-grow: 1;
  text-align: center;
}
.sn-es-cf-btn-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  width: 271px;
  height: 56px;
  box-sizing: border-box;
  background-image: url('../../images/btn_background_blue_v2.png');
  background-color: #008F8D;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: #FFFFFF;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.02em;
  gap: 10px;
}
.sn-es-cf-btn-submit span {
  flex-grow: 1;
  text-align: center;
}

@media (max-width: 768px) {
  .sn-es-cf-row {
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
  }
  .sn-es-cf-label {
    width: 100%;
  }
  .sn-es-cf-btns {
    flex-direction: column;
    gap: 16px;
  }
  .sn-es-cf-btn-back,
  .sn-es-cf-btn-submit {
    width: 100%;
  }
}
