.elementor-15091 .elementor-element.elementor-element-30d71ec{--display:flex;}.elementor-15091 .elementor-element.elementor-element-a18b453{width:100%;max-width:100%;}/* Start custom CSS for html, class: .elementor-element-a18b453 *//* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Noto Sans JP", "Noto Sans", "游ゴシック", "Yu Gothic", "Hiragino Sans", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #202223;
  background: #ffffff;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .7; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== Tokens（ベストネット公式HP準拠：ディープネイビー×エメラルド） ===== */
:root {
  --navy: #06093d;
  --navy-light: #0e1559;
  --teal: #00b682;
  --teal-dark: #009268;
  --blue: #294DF0;
  --orange: #FD9009;
  --orange-dark: #e07a00;
  --text: #111213;
  --text-body: #202223;
  --text-light: #6D7175;
  --bg-light: #f7faf9;
  --bg-gray: #eef1f5;
  --border: #e3e8ee;
  --white: #ffffff;
  --shadow: 0 2px 12px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.10);
  --radius: 8px;
  --radius-lg: 16px;
  --max-width: 1140px;
}

/* ===== Layout ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--bg-gray);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-sub { font-size: 16px; color: var(--text-light); max-width: 720px; margin: 0 auto; }

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width); margin: 0 auto;
}
.logo { font-size: 18px; font-weight: 700; color: var(--navy); letter-spacing: .02em; }
.logo span { color: var(--teal); }
.header-cta {
  display: inline-block;
  padding: 10px 22px;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background .2s;
}
.header-cta:hover { background: var(--orange-dark); opacity: 1; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 96px 0 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0,182,130,.20) 0%, transparent 42%),
    radial-gradient(circle at 80% 70%, rgba(41,77,240,.18) 0%, transparent 42%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 880px; margin: 0 auto; padding: 0 24px; }
.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0,182,130,.2);
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  border: 1px solid rgba(0,182,130,.45);
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.hero h1 .accent { color: var(--teal); }
.hero p.lead {
  font-size: 18px;
  line-height: 1.85;
  margin-bottom: 16px;
  color: rgba(255,255,255,.92);
}
.hero p.sub {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius);
  transition: all .2s;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); opacity: 1; transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
}
.btn-ghost:hover { border-color: var(--white); opacity: 1; }
.hero-meta {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.hero-meta-item { text-align: center; }
.hero-meta-num { font-size: 28px; font-weight: 700; color: var(--teal); display: block; }
.hero-meta-label { font-size: 13px; color: rgba(255,255,255,.75); margin-top: 4px; }

/* ===== Problem ===== */
.problem { background: var(--bg-light); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.problem-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow);
}
.problem-icon { font-size: 32px; margin-bottom: 12px; }
.problem-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.problem-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; }

/* ===== Solution ===== */
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.solution-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.solution-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.solution-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--teal);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
}
.solution-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.solution-card p { font-size: 14.5px; color: var(--text-body); line-height: 1.8; }

/* ===== Five Layers ===== */
.five-layer { background: var(--navy); color: var(--white); }
.five-layer .section-title { color: var(--white); }
.five-layer .section-sub { color: rgba(255,255,255,.7); }
.five-layer .section-tag { background: rgba(255,255,255,.1); color: var(--teal); }
.layer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.layer-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all .2s;
}
.layer-card:hover { background: rgba(0,182,130,.14); border-color: var(--teal); }
.layer-icon { font-size: 32px; margin-bottom: 14px; }
.layer-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.layer-card p { font-size: 12.5px; color: rgba(255,255,255,.7); line-height: 1.6; }

.layer-compare {
  margin-top: 56px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.layer-compare h3 { color: var(--white); font-size: 18px; margin-bottom: 20px; text-align: center; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  color: rgba(255,255,255,.85);
  font-size: 14px;
}
.compare-table th, .compare-table td {
  padding: 12px 8px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.compare-table th { font-weight: 600; color: var(--white); background: rgba(255,255,255,.04); }
.compare-table td:first-child { text-align: left; font-weight: 600; }
.compare-table .yes { color: var(--teal); font-size: 18px; }
.compare-table .no { color: rgba(255,255,255,.3); }

/* ===== Plans ===== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.plan-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: all .2s;
}
.plan-card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan-card.featured { border-color: var(--teal); background: linear-gradient(180deg, #e9faf3 0%, var(--white) 50%); }
.plan-card.featured::before {
  content: "POPULAR";
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  padding: 4px 14px; border-radius: 999px;
}
.plan-name { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.plan-target { font-size: 12.5px; color: var(--text-light); margin-bottom: 20px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.plan-price .num { font-size: 36px; font-weight: 700; color: var(--navy); }
.plan-price .unit { font-size: 14px; color: var(--text-light); }
.plan-tax { font-size: 11px; color: var(--text-light); margin-bottom: 24px; }
.plan-monthly {
  background: var(--bg-gray);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
  text-align: center;
}
.plan-features { font-size: 13.5px; line-height: 1.9; }
.plan-features li { display: flex; gap: 8px; align-items: flex-start; padding: 4px 0; }
.plan-features li::before { content: "✓"; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.plan-features li.muted { color: var(--text-light); }
.plan-features li.muted::before { content: "·"; color: var(--text-light); }

/* ===== Monthly Output ===== */
.output-bg { background: var(--bg-light); }
.output-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.output-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.output-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
}
.output-card h3 { font-size: 19px; font-weight: 700; color: var(--navy); }
.output-card .badge {
  background: var(--teal);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}
.output-card .price-line { color: var(--text-light); font-size: 13px; margin-bottom: 20px; }
.output-card h4 { font-size: 13px; color: var(--text-light); margin-top: 16px; margin-bottom: 8px; font-weight: 600; }
.output-card ul { font-size: 14px; line-height: 1.9; color: var(--text-body); }
.output-card ul li { padding-left: 18px; position: relative; }
.output-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.output-card ul.unlimited li::before { content: "∞"; color: var(--orange); font-weight: 700; }

/* ===== Request Flow ===== */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  position: relative;
}
.flow-step {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  text-align: center;
}
.flow-step-num {
  width: 40px; height: 40px;
  margin: 0 auto 16px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700;
}
.flow-step h3 { font-size: 15px; color: var(--navy); margin-bottom: 8px; }
.flow-step p { font-size: 13px; color: var(--text-body); line-height: 1.7; }
.flow-callout {
  margin-top: 32px;
  background: var(--bg-light);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  font-size: 14.5px;
}
.flow-callout strong { color: var(--navy); }

/* ===== Value Comparison ===== */
.value { background: var(--bg-light); }
.value-table-wrap { margin-top: 32px; overflow-x: auto; }
.value-table {
  width: 100%;
  background: var(--white);
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 14px;
}
.value-table th, .value-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.value-table th { background: var(--navy); color: var(--white); font-weight: 600; font-size: 13px; }
.value-table tr:last-child td { border-bottom: none; }
.value-table tr:nth-child(even) td { background: var(--bg-light); }
.value-table .price { text-align: right; font-weight: 600; }
.value-table .saving { color: var(--orange); font-weight: 700; font-size: 16px; }

.value-summary {
  margin-top: 24px;
  text-align: center;
  font-size: 15px;
  color: var(--text-body);
}
.value-summary strong { color: var(--orange); font-size: 18px; }

/* ===== FAQ ===== */
.faq-list { max-width: 880px; margin: 40px auto 0; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-q {
  display: flex;
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  align-items: center;
  gap: 16px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--navy);
  background: transparent;
  transition: background .2s;
}
.faq-q:hover { background: var(--bg-light); }
.faq-q::before {
  content: "Q.";
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}
.faq-q::after {
  content: "+";
  margin-left: auto;
  font-size: 20px;
  color: var(--text-light);
  transition: transform .2s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner {
  padding: 0 24px 22px 56px;
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.85;
}

/* ===== Migration ===== */
.migration {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
}
.migration .section-title { color: var(--white); }
.migration .section-sub { color: rgba(255,255,255,.85); }
.migration .section-tag { background: rgba(255,255,255,.15); color: var(--white); }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.benefit-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.benefit-icon { font-size: 32px; margin-bottom: 12px; }
.benefit-card h3 { font-size: 16px; margin-bottom: 8px; color: var(--white); }
.benefit-card p { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,.9); }
.migration-note {
  margin-top: 32px;
  text-align: center;
  font-size: 13.5px;
  color: rgba(255,255,255,.8);
}

/* ===== Apply / Order cards ===== */
.apply-section { background: var(--bg-light); }
.apply-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 40px; }
.apply-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 26px 20px; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s;
}
.apply-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.apply-card.featured { border: 2px solid var(--teal); position: relative; }
.apply-card.featured::before {
  content: "人気"; position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .08em;
  padding: 3px 14px; border-radius: 999px;
}
.apply-card.enterprise { border-color: var(--navy); background: linear-gradient(180deg, #f3f5fb 0%, var(--white) 55%); }
.apply-name { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; line-height: 1.4; }
.apply-target { font-size: 12px; color: var(--text-light); margin-bottom: 14px; }
.apply-price { display: flex; align-items: baseline; gap: 3px; margin-bottom: 16px; flex-wrap: wrap; }
.apply-price .num { font-size: 26px; font-weight: 700; color: var(--navy); }
.apply-price .unit { font-size: 12px; color: var(--text-light); }
.apply-feat { font-size: 12.5px; line-height: 1.7; color: var(--text-body); margin-bottom: 20px; flex-grow: 1; }
.apply-feat li { padding-left: 16px; position: relative; padding-bottom: 5px; }
.apply-feat li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.apply-btn {
  display: block; text-align: center; padding: 13px 16px; border-radius: var(--radius);
  background: var(--orange); color: var(--white); font-size: 15px; font-weight: 700;
  transition: background .2s, transform .2s; margin-top: auto;
}
.apply-btn:hover { background: var(--orange-dark); opacity: 1; transform: translateY(-1px); }
.apply-btn.ghost { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.apply-btn.ghost:hover { background: var(--navy); color: #fff; opacity: 1; }

/* ===== CTA ===== */
.cta-section { background: var(--navy); color: var(--white); text-align: center; }
.cta-section .section-title { color: var(--white); }
.cta-section .section-sub { color: rgba(255,255,255,.75); }
.cta-buttons { margin-top: 40px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-info {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  font-size: 14px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.cta-info-block strong { display: block; color: var(--teal); font-size: 12px; font-weight: 700; letter-spacing: .1em; margin-bottom: 4px; }
.cta-info-block a { color: var(--white); }

/* ===== Footer ===== */
.footer {
  background: #04061f;
  color: rgba(255,255,255,.7);
  padding: 40px 0 24px;
  font-size: 13px;
  text-align: center;
}
.footer-logo { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.footer-logo span { color: var(--teal); }
.footer p { margin-bottom: 4px; }
.footer .copyright { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; color: rgba(255,255,255,.5); }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .layer-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .apply-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  section { padding: 56px 0; }
  .section-title { font-size: 26px; }
  .hero { padding: 64px 0 56px; }
  .hero h1 { font-size: 30px; }
  .hero p.lead { font-size: 16px; }
  .hero-meta { grid-template-columns: 1fr; gap: 16px; }
  .problem-grid, .solution-grid, .output-grid, .benefit-grid, .start-grid, .reproduce-grid { grid-template-columns: 1fr !important; }
  .layer-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .apply-grid { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: 1fr; }
  .cta-info { grid-template-columns: 1fr; }
  .btn { padding: 14px 28px; font-size: 15px; }
  .header-inner { padding: 12px 16px; }
  .container { padding: 0 16px; }
  .value-table { font-size: 12.5px; }
  .value-table th, .value-table td { padding: 10px 8px; }
}/* End custom CSS */