@charset "UTF-8";
/* webkit specific styles */
input[type=color]::-webkit-color-swatch {
  border: none;
}
input[type=color]::-webkit-color-swatch-wrapper {
  padding: 0;
}
/* Reset */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  background: transparent;
  border: 0;
  font-size: 100%;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}
body {
  line-height: 1;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
nav ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}
a {
  background: transparent;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  border: 0;
  border-top: 1px solid #cccccc;
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
}
input, select {
  vertical-align: middle;
}
input:focus {
  outline: none;
}
ul, ol {
  list-style-type: none;
}
input, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
/* ============================================================
   DESIGN TOKENS
   ============================================================ */ :root {
  --c-primary: #325FDB;
  --c-primary-light: #E6EFFA;
  --c-primary-mid: #D6E9FF;
  --c-accent: #E8480A;
  --c-accent-dark: #D8002E;
  --c-bg: #FFFFFF;
  --c-bg-section: #F2F7FD;
  --c-bg-dark: #1B3F6E;
  --c-text: #333;
  --c-navy: #0D2D56;
  --c-text-muted: #5A6478;
  --c-border: #DDE8F5;
  --font: "Lucida Grande", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, sans-serif;
  --Barlow: 'Barlow', sans-serif;
  --inner: 1080px;
  --l-inner: 1180px;
  --pad-h: 20px;
  --bp: 678px;
}
/* ============================================================
   NAMING RULE
   .section-[NN]              — section root
   .section-[NN]__inner       — max-width wrapper
   .section-[NN]__[element]   — BEM element
   .section-[NN]__[element]--[modifier] — BEM modifier
   Breakpoint: max-width: 678px (SP)
   ============================================================ */
/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
/* ============================================================
   UTILITIES
   ============================================================ */
.u-inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}
.l-inner {
  max-width: var(--l-inner);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}
.s-inner {
  max-width: 1880px;
  margin: 0 auto;
}
.u-section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-primary);
  background: var(--c-primary-light);
  border: 1px solid var(--c-primary-mid);
  border-radius: 20px;
  padding: 3px 16px;
  margin-bottom: 14px;
}
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: min(calc(18 / 1440 * 100vw), 18px) 28px;
  border-radius: 4px;
  font-size: min(calc(18 / 1440 * 100vw), 18px);
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.18s, transform 0.1s;
  white-space: nowrap;
  line-height: 1;
  width: min(calc(270 / 1440 * 100vw), 270px);
}
.btn:hover {
  transform: translateY(-4px);
}
.btn--accent {
  color: #fff;
  background: linear-gradient(90deg, #004EB2, #003B86);
}
.btn--primary {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
}
.btn--outline {
  color: #fff;
  background: linear-gradient(90deg, #FF6428, #FF2F00);
}
.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn::after, .section_fv__btn::after {
  content: ' ▶';
  font-size: 11px;
}
/* ============================================================
   GLOBAL NAV
   ============================================================ */
.gnav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .05);
}
.gnav__inner {
  margin: 0 auto;
  padding: 12px var(--pad-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gnav__logo img {
  height: 26px;
  width: auto;
  display: block;
}
.gnav__actions {
  display: flex;
  gap: 10px;
}
.gnav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 30px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: opacity 0.18s, transform 0.1s;
  white-space: nowrap;
  color: #fff;
  text-decoration: none;
}
.gnav__btn:hover {
  transform: translateY(-3px);
}
.gnav__btn--primary {
  background: linear-gradient(90deg, #004EB2, #003B86);
}
.gnav__btn--accent {
  background: linear-gradient(90deg, #FF6428, #FF2F00);
}
/* ============================================================
   SECTION_FV: HERO
   ============================================================ */
.section_fv {
  background: linear-gradient(0deg, #fff, #D4E5FC);
  padding: 10px 0;
  overflow: hidden;
}
.section_fv .fv__bg :where(img, picture) {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
  object-fit: cover;
  object-position: center center;
}
.fv__inner {
  margin-inline: auto;
  position: relative;
  min-height: min(calc(600 / 1440 * 100vw), 600px);
  justify-content: center;
  display: grid;
  place-items: center;
}
.fv_img_pc_01 {
  position: absolute;
  width: 50%;
  left: -15%;
}
.fv_img_pc_02 {
  position: absolute;
  right: -42%;
  width: 70%;
}
.section_fv .fv__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.section_fv__badge-5min {
  position: absolute;
  right: 20%;
  top: min(calc(100 / 1440 * 100vw), 100px);
  width: min(calc(150 / 1440 * 100vw), 150px);
  z-index: 4;
  pointer-events: none;
}
.section_fv__content {
  position: relative;
  text-align: center;
}
.section_fv__content_icon {
  width: 19%;
  right: -22%;
  position: absolute;
  top: -13%;
}
.section_fv__label {
  display: inline-block;
  background: linear-gradient(90deg, #FF6428, #FF2F00);
  color: #fff;
  font-weight: 700;
  padding: 8px 15px;
  margin-bottom: min(calc(36 / 1440 * 100vw), 36px);
  border-radius: 2px;
  line-height: 1;
  font-size: min(calc(24 / 1440 * 100vw), 24px);
}
.section_fv__title {
  font-size: min(calc(70 / 1440 * 100vw), 70px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -9px;
  white-space: nowrap;
  color: var(--c-text);
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  align-items: center;
}
.section_fv__title .big {
  font-size: 124%;
  letter-spacing: 1px;
  font-weight: 600;
}
.section_fv__title .kensyu {
  letter-spacing: 1px;
}
.section_fv__sub {
  color: var(--c-text);
  margin-bottom: 46px;
  font-weight: 800;
  font-size: min(calc(26 / 1440 * 100vw), 26px);
}
.section_fv__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: nowrap;
}
.section_fv__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 44px;
  border-radius: 8px;
  font-size: min(calc(20 / 1440 * 100vw), 20px);
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: opacity 0.18s, transform 0.1s;
  white-space: nowrap;
  color: #fff;
  text-decoration: none;
  width: min(calc(270 / 1440 * 100vw), 270px);
  min-width: 200px;
}
.section_fv__btn:hover {
  transform: translateY(-3px);
}
.section_fv__btn--primary {
  background: linear-gradient(90deg, #004EB2, #003B86);
}
.section_fv__btn--accent {
  background: linear-gradient(90deg, #FF6428, #FF2F00);
}
.section_fv__title .big {
  font-size: 112%;
}
/* ============================================================
   SECTION-01: PAIN POINTS
   ============================================================ */
.section-01 {
  background: var(--c-bg);
  padding: 60px 0;
  overflow: hidden;
}
.section-01__head {
  text-align: center;
  margin-bottom: min(calc(50 / 1440 * 100vw), 50px);
}
.section-01__kicker {
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  display: inline-block;
  font-weight: bold;
  padding: 0 20px;
  background: var(--c-navy);
  font-size: min(calc(22 / 1440 * 100vw), 22px);
}
section h2 {
  font-weight: 700;
  font-size: min(calc(50 / 1440 * 100vw), 50px);
  color: var(--c-navy);
  line-height: 1.3;
  margin-bottom: min(calc(10 / 1440 * 100vw), 10px);
  letter-spacing: -0.02em;
}
h2 .intro {
  font-size: 46%;
  line-height: 1;
}
.section-01__layout {
  display: flex;
  gap: 40px;
  align-items: center;
}
.section-01__grid {
  flex: 1;
  display: grid;
  grid-template-columns: 2fr 1.15fr 2fr;
  gap: 0;
}
.section-01__grid_inner {
  flex-direction: column;
  gap: min(calc(50 / 1440 * 100vw), 50px);
  display: flex;
}
.section-01__card {
  background: var(--c-primary-light);
  border-radius: 10px;
  padding: min(calc(26 / 1440 * 100vw), 26px);
  position: relative;
  min-height: 100px;
}
.section-01__card-title {
  font-size: min(calc(20 / 1440 * 100vw), 20px);
  font-weight: 800;
  margin-bottom: 5px;
}
.section-01__fukidaishi_acc {
  position: absolute;
  width: min(calc(35 / 1440 * 100vw), 35px);
  top: -10px;
  right: 10%;
}
.section-01__grid .left::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -28px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #e0edff;
}
.section-01__grid .right::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 15px solid #e0edff;
}
.section-01__card-text {
  font-size: min(calc(18 / 1440 * 100vw), 18px);
  line-height: 1.65;
}
.section-01__illus {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-01__illus img {
  width: min(calc(180 / 1440 * 100vw), 180px);
}
/* ============================================================
   SECTION-02: STEPS
   ============================================================ */
.section-02 {
  background: #f5f8f9;
  padding: 80px 0;
}
.section-02__head {
  text-align: center;
  margin-bottom: 30px;
}
.section_head {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
  display: block;
}
.section_head span {
  font-size: 60%;
}
.section-02 .section-02__title {
  margin-top: -20px;
  line-height: 1.15;
}
.section-02__sub, .section-03__sub, .section-05__sub, .section-06__sub, .section-07__sub, .section-08__sub {
  font-weight: 700;
  font-size: min(calc(20 / 1440 * 100vw), 20px);
}
.section-02__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  align-items: start;
  position: relative;
}
.section-02__step {}
.section-02__step-img {
  width: 100%;
  border-radius: 8px;
  display: block;
  margin-bottom: 18px;
  aspect-ratio: 350 / 300;
  overflow: hidden;
}
.section-02__step-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  padding: 0 20px;
}
.section-02__num {
  width: min(calc(36 / 1440 * 100vw), 36px);
  height: min(calc(36 / 1440 * 100vw), 36px);
  background: linear-gradient(90deg, #5a4cb4, #322397);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: min(calc(24 / 1440 * 100vw), 24px);
  font-weight: 800;
  flex-shrink: 0;
}
.section-02__step-title {
  font-weight: 700;
  font-size: min(calc(22 / 1440 * 100vw), 22px);
}
.section-02__step-text {
  font-size: min(calc(18 / 1440 * 100vw), 18px);
  line-height: 1.65;
  padding: 0 20px;
}
/* ============================================================
   SECTION-03: AI FEATURES
   ============================================================ */
.section-03 {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.section-03_bg {}
.section-03__inner {
  display: flex;
  align-items: center;
  gap: min(calc(80 / 1440 * 100vw), 80px);
  justify-content: center;
}
.section-03__content {
  flex: 0 0 45%;
  text-align: left;
  max-width: 45%;
  padding: 50px 0;
}
.section-03__title {
  margin-bottom: min(calc(10 / 1440 * 100vw), 10px);
}
.section-03__sub {
  margin-bottom: min(calc(30 / 1440 * 100vw), 30px);
}
.section-03__list {
  display: flex;
  flex-direction: column;
  gap: min(calc(16 / 1440 * 100vw), 16px);
  border-top: 1px #939393 dashed;
  padding-top: min(calc(16 / 1440 * 100vw), 16px);
  width: 100%;
  text-align: left;
}
.section-03__item {
  display: flex;
  gap: 26px;
  align-items: center;
  border-bottom: 1px #939393 dashed;
  padding-bottom: 20px;
  justify-content: flex-start;
}
.section-03__item-num {
  font-weight: 500;
  font-size: min(calc(66 / 1440 * 100vw), 66px);
  color: var(--c-primary);
  line-height: 1;
  width: 10%;
  letter-spacing: -0.03em;
  font-family: var(--Barlow);
}
.section-03__item-title {
  font-weight: 700;
  margin-bottom: 0;
  font-size: min(calc(20 / 1440 * 100vw), 20px);
}
.section-03__item-text {
  font-size: min(calc(16 / 1440 * 100vw), 16px);
  line-height: 1.65;
}
.section-03__visual {
  margin: -17%;
}
.section-03__visual img {
  width: 100%;
}
/* ============================================================
   SECTION-04: CTA BANNER
   ============================================================ */
.section-04 {
  background: linear-gradient(90deg, #fff, #D4E5FC);
  padding: 60px 0;
  overflow: hidden;
}
.section-04__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-04__visual {
  flex: 0 0 60%;
  max-width: 60%;
  margin-left: -6%;
}
.section-04__visual img {
  width: 100%;
  display: block;
}
.section-04__content {
  flex: 1;
  text-align: center;
  margin-left: -10%; /* ← 画像と少し重ねたい場合のみ。不要なら削除 */
  position: relative;
  z-index: 1;
}
.section-04__logo-badge {
  margin-bottom: min(calc(14 / 1440 * 100vw), 14px);
  font-weight: 600;
  font-size: min(calc(22 / 1440 * 100vw), 22px);
}
.section-04__title {
  font-weight: 800;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  color: var(--c-accent);
  line-height: 1.4;
  font-size: min(calc(40 / 1440 * 100vw), 40px);
  align-items: center;
  gap: 10px;
}
.section-04__title_img {
  width: 70px;
}
.section-04__sub {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: min(calc(22 / 1440 * 100vw), 22px);
}
.section-04__actions {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
/* ============================================================
   SECTION-05: MAIN FUNCTIONS
   ============================================================ */
.section-05 {
  background: var(--c-bg);
  padding: 80px 0;
  overflow: hidden;
}
.section-05__head {
  text-align: center;
  margin-bottom: 30px;
}
.section-05__features {
  display: flex;
  flex-direction: column;
  gap: min(calc(40 / 1440 * 100vw), 40px);
}
.section-05__feature {
  display: flex;
  align-items: center;
  gap: min(calc(80 / 1440 * 100vw), 80px);
}
.section-05__feature--rev {
  flex-direction: row-reverse;
}
.section-05__feature-content {
  flex: 1;
  min-width: 0;
}
.section-05__feature-num {
  font-size: min(calc(118 / 1440 * 100vw), 118px);
  font-family: var(--Barlow);
  font-weight: 400;
  color: #D4E4FC;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.05em;
}
.section-05__feature-title {
  font-size: min(calc(32 / 1440 * 100vw), 32px);
  font-weight: 800;
  margin-bottom: 12px;
  font-family: var(--font);
}
.section-05__feature-text {
  line-height: 1.85;
  font-size: min(calc(20 / 1440 * 100vw), 20px);
}
.section-05__feature-visual {
  flex: 0 0 46%;
  max-width: 46%;
}
.section-05__feature-visual img {
  width: 100%;
  border-radius: 8px;
}
.section-05__grid02 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #F3F3F3;
  border-radius: 10px;
}
.section-05__card02 {
  padding: 25px 0 25px 40px;
}
.section-05__card02:first-child {
  border-right: 1px #D9D9D9 solid;
}
.section-05__card-head02 {
  color: var(--c-navy);
  margin-bottom: 6px;
}
.section-05__card-title02 {
  font-weight: 700;
  color: var(--c-navy);
  font-size: min(calc(22 / 1440 * 100vw), 22px);
}
.section-05__card-list_icon {
  background: #fff;
  border-radius: 100px;
  width: 80px;
  height: 80px;
  padding: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.section-05__card-list_wrap {
  display: flex;
  gap: 18px;
  justify-content: flex-start;
  align-items: center;
}
.section-05__card-list li {
  padding: 6px 0 3px 16px;
  position: relative;
  font-size: min(calc(16 / 1440 * 100vw), 16px);
  line-height: 1.5;
  border-bottom: 1px solid #F2F5FB;
}
.section-05__card-list li:last-child {
  border-bottom: none;
}
.section-05__card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--c-text);
  border-radius: 50%;
}
/* ============================================================
   SECTION-06: SITUATION
   ============================================================ */
.section-06 {
  background: linear-gradient(90deg, #fff, #D4E5FC);
  padding: 80px 0;
  overflow: hidden;
}
.section-06__head {
  text-align: center;
  margin-bottom: min(calc(30 / 1440 * 100vw), 30px);
}
.section-06__kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-primary);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.section-06__kicker::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--c-primary);
  border-radius: 50%;
  flex-shrink: 0;
}
.section-06__title {
  font-weight: 900;
  margin-bottom: 5px;
}
.rule_bar {
  width: 36px;
  height: 4px;
  background: linear-gradient(90deg, #664d8f, #322397);
  margin: 0 auto min(calc(12 / 1440 * 100vw), 12px);
  border-radius: 20px;
}
.section-06__sub {}
.section-06__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}
.section-06__item {
  display: grid;
}
.section-06__num {
  font-size: min(calc(100 / 1440 * 100vw), 100px);
  font-weight: 400;
  color: #A5C2ED;
  line-height: 1;
  letter-spacing: -0.04em;
  font-family: var(--Barlow);
  margin-bottom: -40px;
  padding-left: 4px;
  position: relative;
  z-index: 1;
}
.section-06__illus {
  width: 100%;
  aspect-ratio: 313/300;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  position: relative;
  z-index: 0;
  box-shadow: 0 2px 12px rgba(43, 111, 200, .07);
}
.section-06__item-title {
  font-weight: 900;
  text-align: center;
  margin-top: min(calc(12 / 1440 * 100vw), 12px);
  margin-bottom: 6px;
  color: var(--c-navy);
  line-height: 1.4;
  font-size: min(calc(22 / 1440 * 100vw), 22px);
}
.section-06__item-title span {
  display: inline;
  background-color: #1B3A6B;
  padding: 6px 12px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.section-06__item-text {
  font-size: min(calc(18 / 1440 * 100vw), 18px);
  text-align: left;
}
/* ============================================================
   SECTION-07: CHANGE
   ============================================================ */
.section-07 {
  background: var(--c-bg);
  padding: 80px 0;
  overflow: hidden;
}
.section-07__head {
  text-align: center;
  margin-bottom: 20px;
}
.section-07__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(calc(36 / 1440 * 100vw), 36px);
}
.section-07__card {
  border-radius: 8px;
  padding: min(calc(22 / 1440 * 100vw), 22px) min(calc(28 / 1440 * 100vw), 28px);
  border: 1px solid #d4d4d4;
}
.section-07__card-img {
  width: 90%;
  margin: 0 auto;
  object-fit: contain;
  margin-bottom: 16px;
}
.section-07__card-tag {
  display: inline-block;
  background: var(--c-primary-light);
  color: var(--c-primary);
  border: 1px solid var(--c-primary-mid);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.section-07__card-title p {
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.6;
  padding: 3px 12px;
  font-size: min(calc(22 / 1440 * 100vw), 22px);
  background: var(--c-navy);
  color: #fff;
  display: flex;
}
.section-07__card-text {
  line-height: 1.6;
  font-size: min(calc(18 / 1440 * 100vw), 18px);
}
.section-07__item-title {
  font-size: min(calc(22 / 1440 * 100vw), 22px);
  font-weight: 800;
  color: #fff;
  line-height: 2;
  margin-bottom: min(calc(5 / 1440 * 100vw), 5px);
}
.section-07__item-title span {
  display: inline;
  background-color: #1B3A6B;
  padding: 5px 10px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
/* ============================================================
   SECTION-08: PRICE PLAN
   ============================================================ */
.section-08 {
  background: linear-gradient(90deg, #fff, #D4E5FC);
  overflow: hidden;
}
.section-08__inner {
  display: flex;
  align-items: center;
  gap: 60%;
  padding: 60px 0;
  justify-content: center;
}
.section-08__content {
  text-align: center;
  flex: 0 0 50%;
  max-width: 50%;
}
.section-08__title {
  white-space: nowrap;
  font-size: min(calc(50 / 1440 * 100vw), 50px);
}
.section-08__sub {
  margin-bottom: min(calc(10 / 1440 * 100vw), 10px);
}
.section-08__service-name {
  font-weight: 700;
  color: var(--c-accent-dark);
  margin-bottom: 10px;
  font-size: min(calc(24 / 1440 * 100vw), 24px);
}
.section-08__free-badge {
  display: inline-block;
  background: #fff;
  color: var(--c-accent);
  font-weight: 700;
  border: 1px var(--c-accent) solid;
  border-radius: 20px;
  line-height: 1;
  padding: 7px 20px;
  font-size: min(calc(28 / 1440 * 100vw), 28px);
  margin-bottom: min(calc(5 / 1440 * 100vw), 5px);
}
.section-08__price-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: min(calc(5 / 1440 * 100vw), 5px);
  font-weight: bold;
  justify-content: center;
}
.section-08__price-label {
  font-size: min(calc(28 / 1440 * 100vw), 28px);
}
.section-08__price-num {
  font-weight: 600;
  color: var(--c-accent-dark);
  line-height: 1;
  letter-spacing: -0.04em;
  font-family: var(--Barlow);
  font-size: min(calc(100 / 1440 * 100vw), 100px);
}
.section-08__price-unit {
  font-weight: 700;
  font-size: min(calc(23 / 1440 * 100vw), 23px);
  color: var(--c-accent-dark);
}
.section-08__note {
  font-size: min(calc(11 / 1440 * 100vw), 11px);
  color: var(--c-text-muted);
  margin-bottom: min(calc(15 / 1440 * 100vw), 15px);
  line-height: 1.6;
}
.checklist_wrap {
  position: relative;
  width: min(calc(520 / 1440 * 100vw), 520px);
  margin: 0 auto;
}
.section-08__checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: min(calc(8 / 1440 * 100vw), 8px) 0;
  width: min(calc(520 / 1440 * 100vw), 520px);
  margin: 0 auto 20px;
  background: #fff;
  border-radius: 8px;
  padding: min(calc(15 / 1440 * 100vw), 15px);
  box-shadow: 0 1px 9px rgb(46 88 144 / 18%);
}
.section-08__checklist_img {
  width: 83px;
  position: absolute;
  top: -106px;
  right: min(calc(10 / 1440 * 100vw), 10px);
}
.section-08__check-item {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: min(calc(20 / 1440 * 100vw), 20px);
}
.section-08__check-item::before {
  content: '';
  display: inline-block;
  width: min(calc(16 / 375 * 100vw), 16px);
  height: min(calc(16 / 375 * 100vw), 16px);
  background-image: url(../img/check.svg);
  background-size: contain;
  vertical-align: middle;
  background-position: center;
  background-repeat: no-repeat;
}
.section-08__actions {
  display: flex;
  gap: 22px;
  flex-wrap: nowrap;
  justify-content: center;
}
.section-08__visual {
  margin: -70%;
}
@media (min-width: 1880px) {
  .section-08__visual {
    height: min(calc(750 / 1440 * 100vw), 750px);
  }
}
.section-08__visual img {
  width: 100%;
}
/* ============================================================
   SECTION-09: FAQ
   ============================================================ */
.section-09 {
  background: var(--c-bg);
  padding: 80px 0;
  overflow: hidden;
}
.section-09__head {
  text-align: center;
  padding-bottom: 0;
  position: relative;
}
.section-09__illus {
  display: flex;
  width: 100%;
  padding: 0 min(calc(130 / 1440 * 100vw), 130px);
  align-items: flex-end;
  justify-content: flex-end;
  margin-top: -160px;
}
.section-09__illus img {
  width: min(calc(180 / 375 * 100vw), 180px);
}
.section-09__list_wrap {
  margin-top: -10px;
}
.section-09__title {
  font-weight: 800;
}
.section-09__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section-09__item {
  border-bottom: 1px solid #c7c7c7;
}
.section-09__item:first-child {
  border-top: 1px solid #c7c7c7;
}
.section-09__question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  background: #fff;
  align-items: center;
  gap: 16px;
  padding: min(calc(20 / 1440 * 100vw), 20px) 0;
  text-align: left;
  font-family: var(--font);
  font-size: min(calc(20 / 1440 * 100vw), 20px);
  font-weight: 600;
  color: var(--c-text);
  transition: color 0.18s;
}
.section-09__question:hover {
  color: var(--c-primary);
}
.section-09__q-icon {
  width: 40px;
  height: 40px;
  background: var(--c-primary-light);
  color: var(--c-primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: min(calc(18 / 1440 * 100vw), 18px);
  font-weight: 800;
  flex-shrink: 0;
}
.section-09__q-text {
  flex: 1;
}
.section-09__toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-primary);
  font-size: min(calc(36 / 1440 * 100vw), 36px);
  line-height: 1;
  transition: transform 0.25s, background 0.2s;
}
.section-09__item.is-open .section-09__toggle {
  transform: rotate(45deg);
}
.section-09__answer {
  display: none;
}
.section-09__answer {
  padding: 0 0 20px 58px;
  line-height: 1.8;
  font-size: min(calc(18 / 1440 * 100vw), 18px);
}
/* ============================================================
   SECTION-10: LAST CTA
   ============================================================ */
.section-10 {
  background: linear-gradient(90deg, #fff, #D4E5FC);
  padding: 50px 0;
  overflow: hidden;
}
.section-10__inner {
  display: flex;
  align-items: center;
  gap: 0;
}
.section-10__content {
  flex: 1;
  min-width: 0;
}
.section-10__title {
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  margin-bottom: min(calc(36 / 1440 * 100vw), 36px);
  font-size: min(calc(36 / 1440 * 100vw), 36px);
}
.section-10__title em {
  font-style: normal;
  text-underline-offset: 4px;
}
.section-10__title span {
  font-weight: 600;
}
.section-10__title strong {
  color: var(--c-accent);
  font-size: 130%;
}
.section-10__tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--c-accent);
  border-radius: 20px;
  margin-bottom: 20px;
  justify-content: center;
  font-size: min(calc(22 / 1440 * 100vw), 22px);
}
.section-10__actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.section-10__visual {
  flex: 0 0 50%;
  max-width: 40%;
}
.section-10__visual img {
  width: 100%;
  border-radius: 12px;
}
/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #636363;
  padding: 30px 0;
}
.footer__inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 var(--pad-h);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 40px;
}
.footer__link {
  font-size: 12px;
  color: #fff;
  transition: color 0.18s;
}
.footer__link:hover {
  color: #FFEB3B;
}
/* ============================================================
   SP / PC ユーティリティ
   ============================================================ */
.sp_only {
  display: none;
}
.pc_only {
  display: block;
}
/* ============================================================
   RESPONSIVE — SP ( ≤ 767px )
   ============================================================ */
@media (max-width: 767px) {
  :root {
    --pad-h: 24px;
  }
  /* GNAV */
  .gnav__inner {
    padding: 12px 2%;
  }
  .gnav__actions {
    gap: 8px;
  }
  .gnav__logo img {
    height: min(calc(22 / 375 * 100vw), 22px);
  }
  .gnav__btn {
    padding: 6px min(calc(16 / 375 * 100vw));
  }
  .gnav__actions .btn {
    padding: 7px 12px;
    font-size: 12px;
  }
  .gnav__btn--primary {
    padding: 6px min(calc(16 / 375 * 100vw), 16px);
    font-size: min(calc(12 / 375 * 100vw), 12px);
  }
  .section_fv {
    aspect-ratio: 375 / 406;
    background-image: url(../img/fv_sp_m.webp);
    background-size: contain;
    background-repeat: no-repeat;
    min-height: inherit;
    display: flex;
    padding: 0;
    overflow: hidden;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 400px) {
  .section_fv {
    aspect-ratio: 375 / 478;
    background-image: url(../img/fv_sp.webp);
    background-size: contain;
    background-repeat: no-repeat;
    min-height: inherit;
    display: flex;
    padding: 0;
    overflow: hidden;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .fv__inner {
    min-height: inherit;
    margin-inline: inherit;
  }
  .section_fv__content {
    height: inherit;
    padding: 0;
  }
}

@media (max-width: 767px) and (min-width: 441px)  {
  .section_fv__title {
    font-size: min(calc(60 / 767 * 100vw), 60px);
    margin-bottom: 6px;
    display: block;
    line-height: 1.15;
    letter-spacing: -5px;
  }
  .section_fv__sub {
    font-size: min(calc(16 / 375 * 100vw), 16px);
    margin-bottom: min(calc(360 / 767 * 100vw), 360px);
  }
}

@media (max-width: 440px) {
  .section_fv__title {
    font-size: min(calc(40 / 375 * 100vw), 40px);
    margin-bottom: 6px;
    display: block;
    line-height: 1.15;
    letter-spacing: -5px;
  }
 .section_fv__sub {
	font-size: min(calc(16 / 375 * 100vw), 16px); 
    margin-bottom: min(calc(220 / 375 * 100vw), 220px);
  }
}
@media (max-width: 767px) {
  .section_fv__label {
    font-size: min(calc(16 / 375 * 100vw), 16px);
    padding: 5px 14px;
  }
  .section_fv__btn {
    font-size: min(calc(14/ 375 * 100vw), 14px);
    min-width: 120px;
    border-radius: 6px;
    width: min(calc(165 / 375 * 100vw), 165px);
    padding: 8px min(calc(20 / 375 * 100vw), 20px);
  }
  .section_fv__actions {
    flex-wrap: nowrap;
  }
  /* SECTION-01 */
  .section-01 {
    padding: 30px 0;
  }
  .section-01__head {
    margin-top: 0;
    margin-bottom: 12px;
  }
  .section-01__layout {
    flex-direction: column;
    gap: 0;
  }
  .section-01__illus {
    margin: 10px auto;
  }
  .section-01__illus img {
    width: min(calc(140 / 375 * 100vw), 140px);
  }
  .section-01__card {
    padding: min(calc(15 / 375 * 100vw), 15px);
    min-height: inherit;
  }
  .section-01__grid {
    grid-template-columns: 1fr;
    gap: min(calc(18 / 375 * 100vw), 18px);
  }
  .section-01__grid_inner {
    gap: min(calc(16 / 375 * 100vw), 16px);
  }
  .section-01__kicker {
    font-size: min(calc(16 / 375 * 100vw), 16px);
    padding: 2px 12px;
    margin-bottom: 12px;
  }
  .section-01__card-title {
    font-size: min(calc(18 / 375 * 100vw), 18px);
    margin-bottom: 0;
  }
  .section-01__card-text {
    line-height: 1.5;
    font-size: min(calc(16 / 375 * 100vw), 16px);
  }
  .section_fv__title .kensyu {
    margin-left: -16px;
  }
  /* SP arrow: 下向きに変更 */
  .section-01__grid .right::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -12px;
    border: 12px solid transparent;
    border-top: 12px solid #e0edff;
    margin-top: -1px;
  }
  .section-01__grid .left::before {
    top: -22px;
    left: 50%;
    margin-left: -12px;
    border: 12px solid transparent;
    border-bottom: 12px solid #e0edff;
    margin-top: 0;
  }
  .section-01__fukidaishi_acc {
    width: min(calc(26 / 375 * 100vw), 26px);
    right: 5%;
    top: -6px;
  }
  /* SECTION-02 */
  .section-02 {
    padding: 30px 0;
  }
  .section-02 .section-02__title {
    margin-top: -10px;
  }
  .section-02__head {
    font-size: min(calc(30 / 375 * 100vw), 30px);
    margin-bottom: 20px;
  }
  .section-02__steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .section-02__step {
    background: none;
    box-shadow: none;
    padding: 0;
  }
  .section-02__step-head {
    font-size: min(calc(18 / 375 * 100vw), 18px);
    padding: 0 10px;
    margin-bottom: 4px;
  }
  .section-02__step-title {
    font-size: min(calc(22 / 375 * 100vw), 22px);
  }
  .section-02__step-img {
    margin-bottom: 10px;
    aspect-ratio: inherit;
  }
  .section-02__num {
    font-size: min(calc(16 / 375 * 100vw), 16px);
    width: min(calc(30 / 375 * 100vw), 30px);
    height: min(calc(30 / 375 * 100vw), 30px);
  }
  .section-02__step-text {
    font-size: min(calc(16 / 375 * 100vw), 16px);
    padding: 0 10px;
    line-height: 1.5;
  }
  .section-02__sub, .section-03__sub, .section-05__sub, .section-06__sub, .section-07__sub, .section-08__sub {
    font-size: min(calc(18 / 375 * 100vw), 18px);
    line-height: 1.45;
  }
  /* SECTION-03 */
  .section-03 {
    padding: 30px 0;
    background-image: none;
  }
  .section-03__inner {
    flex-direction: column;
    padding: 0;
  }
  .section-03__visual {
    margin: 0 -25px;
  }
  .section-03__sub {
    margin-bottom: 0;
    font-size: min(calc(17 / 375 * 100vw), 17px);
  }
  .section-03__list {
    padding-top: 10px;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
  }
  .section-03__content {
    max-width: 100%;
    flex: 0 0 100%;
    padding: 0;
  }
  .section-03__item {
    padding-bottom: 10px;
  }
  .section-03__item-num {
    font-size: min(calc(40 / 375 * 100vw), 40px);
    width: 9%;
    display: block;
  }
  .section-03__item-title {
    font-size: min(calc(18 / 375 * 100vw), 18px);
    margin-bottom: 0;
  }
  .section-03__item-text {
    font-size: min(calc(16 / 375 * 100vw), 16px);
    line-height: 1.4;
  }
  /* SECTION-04 */
  .rule_bar {
    height: 4px;
    margin: 5px auto 12px;
  }
  .section_head span {
    font-size: 110%;
  }
  .section-04 {
    padding: 30px 0;
  }
  .section-04__inner {
    flex-direction: column;
    display: flex;
  }
  .section-04__visual {
    flex: inherit;
    max-width: inherit;
    margin-bottom: 10px;
    margin-left: 0;
    margin-right: -18%;
  }
  .section-04__content {
    width: 100%;
    margin-left: 0;
  }
  .section-04__logo-badge {
    font-size: min(calc(26 / 375 * 100vw), 26px);
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .section-04__title_img {
    width: min(calc(40 / 375 * 100vw), 40px);
  }
  .section-04__title {
    margin-bottom: 10px;
  }
  .section-04__title_text {
    font-size: min(calc(22 / 375 * 100vw), 22px);
  }
  .section-04__sub {
    font-size: min(calc(16 / 375 * 100vw), 16px);
    margin-bottom: 8px;
  }
  .section-04__actions {
    flex-wrap: nowrap;
    gap: 16px;
  }
  /* SECTION-05 */
  .section-05 {
    padding: 30px 0;
  }
  .section-05__head {
    margin-bottom: 0;
  }
  .section-05__features {
    gap: 20px;
  }
  .section-05__feature {
    flex-direction: column;
    gap: 10px;
  }
  .section-05__feature--rev {
    flex-direction: column;
  }
  .section-05__feature-visual {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .section-05__feature-num {
    font-size: min(calc(66 / 375 * 100vw), 66px);
    margin-bottom: 0;
  }
  .section-05__feature-title {
    font-size: min(calc(18 / 375 * 100vw), 18px);
    margin-bottom: 2px;
  }
  .section-05__feature-text {
    font-size: min(calc(16 / 375 * 100vw), 16px);
    line-height: 1.6;
  }
  .section-05__grid02 {
    border-radius: 6px;
    grid-template-columns: 1fr;
  }
  .section-05__card02 {
    padding: 16px;
  }
  .section-05__card02:first-child {
    padding: 10px;
    border-right: none;
    border-bottom: 1px #D9D9D9 solid;
  }
  .section-05__card-title02 {
    font-size: min(calc(17 / 375 * 100vw), 17px);
  }
  .section-05__card-list_wrap {
    gap: 10px;
  }
  .section-05__feature-visual img {
    border-radius: 8px;
  }
  .section-05__card-list_icon {
    width: min(calc(55 / 375 * 100vw), 55px);
    height: min(calc(55 / 375 * 100vw), 55px);
    padding: min(calc(15 / 375 * 100vw), 15px);
  }
  .section-05__card-list li {
    font-size: min(calc(14 / 375 * 100vw), 14px);
    padding: 1px 0 1px 16px;
    line-height: 1.3;
  }
  .section-05__card-list li::before {
    width: 3px;
    height: 3px;
  }
  /* SECTION-06 */
  .section-06 {
    padding: 30px 0;
  }
  .section-06__item-title_wrap {
    display: flex;
    gap: 10px;
    order: 1;
    align-items: center;
  }
  .section-06__num {
    font-size: min(calc(60 / 375 * 100vw), 60px);
    padding-left: 0;
    margin-bottom: 0;
  }
  .section-06__head {
    margin-bottom: 15px;
  }
  .section-06__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .section-06__item-title {
    font-size: min(calc(18 / 375 * 100vw), 18px);
    text-align: left;
    line-height: 1.6;
    margin-bottom: 0;
  }
  .section-06__item-text {
    order: 1;
    font-size: min(calc(16 / 375 * 100vw), 16px);
  }
  .section-06__illus {
    order: 1;
    margin-bottom: 10px;
    aspect-ratio: 330 / 200;
    border-radius: 6px;
    overflow: hidden;
  }
  /* SECTION-07 */
  .section-07 {
    padding: 30px 0;
  }
  .section-07__card-img {
    width: 62%;
    margin: 10px auto 5px;
  }
  .section-07__card {
    padding: 0 20px 15px;
  }
  .section-07__head {
    margin-bottom: 20px;
  }
  .section-07__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .section-07__item-title span {
    font-size: min(calc(18 / 375 * 100vw), 18px);
  }
  .section-07__item-title {
    line-height: 2;
    margin-bottom: 4px;
  }
  .section-07__card-text {
    font-size: min(calc(16 / 375 * 100vw), 16px);
    line-height: 1.5;
  }
  /* SECTION-08 */
  .section-08 {
    padding: 30px 0;
    background: linear-gradient(90deg, #fff, #D4E5FC);
  }
  .section-08__inner {
    flex-direction: column;
    padding: 20px 0 0;
  }
  .section-08__content {
    flex: inherit;
    padding-left: 0;
    max-width: 100%;
    flex: 0 0 100%;
  }
  .section-08__title {
    font-size: min(calc(32 / 375 * 100vw), 32px);
  }
  .section-08__sub {
    margin-bottom: 10px;
    font-size: min(calc(15 / 375 * 100vw), 15px);
  }
  .section-08__service-name {
    font-size: min(calc(22 / 375 * 100vw), 22px);
    line-height: 1.4;
  }
  .section-08__free-badge {
    font-size: min(calc(18 / 375 * 100vw), 18px);
    margin-bottom: 0;
  }
  .section-08__price-label {
    font-size: min(calc(24 / 375 * 100vw), 24px);
  }
  .section-08__price-num {
    font-size: min(calc(70 / 375 * 100vw), 70px);
  }
  .section-08__price-unit {
    font-size: min(calc(24 / 375 * 100vw), 24px);
  }
  .section-08__note {
    margin-bottom: 0;
    font-size: min(calc(10 / 375 * 100vw), 10px);
  }
  .section-08__checklist_pc_img {
    margin: 0 -25px;
  }
  .section-08__checklist {
    padding: min(calc(10 / 375 * 100vw), 10px);
    width: 100%;
    margin: 0 auto 20px;
    gap: 4px 0;
  }
  .checklist_wrap {
    width: 90%;
  }
  .section-08__checklist_img {
    top: min(calc(320 / 375 * 100vw), 320px);
    width: min(calc(50 / 375 * 100vw), 50px);
    top: -66px;
  }
  .section-08__check-item {
    font-size: min(calc(14 / 375 * 100vw), 14px);
    text-align: left;
    gap: 3px;
  }
  .section-08__check-item::before {
    width: min(calc(12 / 375 * 100vw), 12px);
    height: min(calc(12 / 375 * 100vw), 12px);
  }
  .section-08__actions {
    flex-wrap: nowrap;
    gap: min(calc(18 / 375 * 100vw), 18px);
    padding: 0 25px;
  }
  .section-08__visual {
    flex: inherit;
    max-width: inherit;
    display: none;
  }
  /* SECTION-09 */
  .section-09 {
    padding: 30px 0;
  }
  .section-09__head {
    padding-bottom: 0px;
  }
  .section-09__illus {
    position: relative;
    margin: 30px auto -8px;
    right: 0;
    width: min(calc(200 / 375 * 100vw), 200px);
  }
  .section-09__list_wrap {
    margin-top: 0;
  }
  .section-09__title {
    font-weight: 800;
  }
  .section-09__question {
    padding: min(calc(16 / 375 * 100vw), 16px) 0;
    gap: 8px;
  }
  .section-09__q-icon {
    width: 34px;
    font-size: min(calc(16 / 375 * 100vw), 16px);
    height: 34px;
  }
  .section-09__q-text {
    font-size: min(calc(16 / 375 * 100vw), 16px);
  }
  .section-09__toggle {
    font-size: min(calc(30 / 375 * 100vw), 30px);
  }
  .section-09__answer {
    font-size: min(calc(16 / 375 * 100vw), 16px);
    padding: 0 0 15px min(calc(40 / 375 * 100vw), 40px);
    line-height: 1.6;
  }
  .section-09__item.is-open .section-09__answer {
    font-size: min(calc(18 / 375 * 100vw), 18px);
    line-height: 1.6;
  }
  /* SECTION-10 */
  .section-10 {
    padding: 30px 0;
  }
  .section-10__inner {
    flex-direction: column;
    gap: 32px;
    padding: 0;
  }
  .section-10__visual {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .section-10__actions .btn {
    flex: 1;
  }
  .section-10__actions {
    width: 100%;
    order: 4;
  }
  .section-10__content {
    /* display: grid; */
    display: flex;
    flex-direction: column;
  }
  .section-10__title {
    order: 1;
    font-size: min(calc(20 / 375 * 100vw), 20px);
    margin-bottom: 10px;
  }
  .section-10__title .light {
    font-size: 110%;
  }
  .section-10__tag {
    order: 3;
    margin-bottom: 10px;
    font-size: min(calc(18 / 375 * 100vw), 18px);
  }
  .section-10__visual {
    order: 2;
    margin-bottom: 10px;
  }
  .l-inner {
    padding: 0 20px;
  }
  /* FOOTER */
  .footer {
    padding: 24px 0;
  }
  .footer__inner {
    gap: 10px 40px;
  }
  /* GLOBAL */
  section h2 {
    font-size: min(calc(28 / 375 * 100vw), 28px);
    margin-bottom: 0;
  }
  .section_head {
    font-size: min(calc(10 / 375 * 100vw), 10px);
    margin-bottom: 6px;
  }
  .btn {
    font-size: min(calc(14 / 375 * 100vw), 14px);
    width: min(calc(350 / 375 * 100vw), 350px);
    padding: 16px min(calc(16 / 375 * 100vw), 16px);
    width: 50%;
  }
  .btn--accent {
    width: 44%;
  }
  /* SP/PC utility */
  .sp_only {
    display: block;
  }
  .pc_only {
    display: none;
  }
}
@media (max-width: 440px) {
  .footer__inner {
justify-content: space-between;
  }  }