/* Start custom CSS for html, class: .elementor-element-73fae50 *//* ===== 最後のCTAセクション ===== */
.final-cta {
  padding: 64px 0;
}

.final-cta__head {
  margin-bottom: 24px;
  border-bottom: 2px solid #1d4ed8; /* 青い下線 */
}

.final-cta__title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px;
}

/* ▼ ここが2カラムの核心 */
.final-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr; /* 左：右 = 1 : 1.2 */
  gap: 32px;
  align-items: start;
  margin-bottom: 32px;
}

/* 左：資料画像 */
.final-cta__thumb img {
  width: 100%;
  height: auto;
  border: 1px solid #ccc;
}

/* 右：テキスト */
.final-cta__lead {
  font-weight: 600;
  margin-bottom: 12px;
}

.final-cta__list {
  padding-left: 1.2em;
  margin-bottom: 12px;
}

.final-cta__list li {
  margin-bottom: 6px;
}

/* ボタン行 */
.final-cta__actions {
  display: flex;
  gap: 16px;
}

/* スマホでは縦並び */
@media (max-width: 768px) {
  .final-cta__grid {
    grid-template-columns: 1fr;
  }

  .final-cta__actions {
    flex-direction: column;
  }
}

/* hero内・インライン画像を大きくする */
.hero-copy .hero-inline-image {
  width: 100%;
  max-width: 520px;   /* ← ここを大きくする（600〜700でもOK） */
  height: auto;
  margin-top: 20px;
}

/* ValueセクションのCTAをページ中央に */
.value-cta {
  width: 100%;
  display: flex;
  justify-content: center; /* ← ページ中央 */
  gap: 12px;
  margin-bottom: 16px;
}

/* 最終CTAのボタンをページ中央に */
.final-cta__actions {
  width: 100%;
  display: flex;
  justify-content: center;   /* ← ページ中央 */
  gap: 16px;
  margin-top: 24px;
}

.btn-accent {
  background-color: #ff8a00;
  border-color: #ff8a00;
  color: #fff;
}

.btn-accent:hover {
  background-color: #ff7a00;
}

.final-cta__actions {
  border-bottom: none !important;
}


/* ===== この青をサイトの青に合わせて調整してOK ===== */
:root{
  --brand-blue: #1D4ED8;          /* 添付の見出しの青に寄せた基準色 */
  --brand-blue-weak: rgba(29,78,216,.12);
  --brand-blue-border: rgba(29,78,216,.28);
}

/* 料金まとめ */
.price-summary{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  margin:32px 0;
}

/* カード */
.price-card{
  width:260px;
  border:1px solid var(--brand-blue-border);
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  text-align:center;
}

/* 上部ラベル（青帯） */
.price-card__head{
  background: var(--brand-blue);
  color:#fff;
  font-weight:700;
  padding:10px 12px;
}

/* 本文 */
.price-card__body{
  padding:24px 16px;
  font-size:15px;
}

/* 金額を強調 */
.price-card__body--large{
  font-size:32px;
  font-weight:800;
  color:#111827;
}

.price-unit{
  font-size:14px;
  margin-left:4px;
  color:#111827;
}

/* ＋ 記号 */
.price-plus{
  font-size:44px;
  font-weight:800;
  color: var(--brand-blue);
  line-height:1;
}

/* スマホ */
@media (max-width:768px){
  .price-summary{ flex-direction:column; gap:12px; }
  .price-plus{ transform: rotate(90deg); }
}

/* ヒーロー左上のグラデーションを消す */
.hero {
  background: none !important;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-73fae50 *//* ===== 最後のCTAセクション ===== */
.final-cta {
  padding: 64px 0;
}

.final-cta__head {
  margin-bottom: 24px;
  border-bottom: 2px solid #1d4ed8; /* 青い下線 */
}

.final-cta__title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px;
}

/* ▼ ここが2カラムの核心 */
.final-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr; /* 左：右 = 1 : 1.2 */
  gap: 32px;
  align-items: start;
  margin-bottom: 32px;
}

/* 左：資料画像 */
.final-cta__thumb img {
  width: 100%;
  height: auto;
  border: 1px solid #ccc;
}

/* 右：テキスト */
.final-cta__lead {
  font-weight: 600;
  margin-bottom: 12px;
}

.final-cta__list {
  padding-left: 1.2em;
  margin-bottom: 12px;
}

.final-cta__list li {
  margin-bottom: 6px;
}

/* ボタン行 */
.final-cta__actions {
  display: flex;
  gap: 16px;
}

/* スマホでは縦並び */
@media (max-width: 768px) {
  .final-cta__grid {
    grid-template-columns: 1fr;
  }

  .final-cta__actions {
    flex-direction: column;
  }
}

/* hero内・インライン画像を大きくする */
.hero-copy .hero-inline-image {
  width: 100%;
  max-width: 520px;   /* ← ここを大きくする（600〜700でもOK） */
  height: auto;
  margin-top: 20px;
}

/* ValueセクションのCTAをページ中央に */
.value-cta {
  width: 100%;
  display: flex;
  justify-content: center; /* ← ページ中央 */
  gap: 12px;
  margin-bottom: 16px;
}

/* 最終CTAのボタンをページ中央に */
.final-cta__actions {
  width: 100%;
  display: flex;
  justify-content: center;   /* ← ページ中央 */
  gap: 16px;
  margin-top: 24px;
}

.btn-accent {
  background-color: #ff8a00;
  border-color: #ff8a00;
  color: #fff;
}

.btn-accent:hover {
  background-color: #ff7a00;
}

.final-cta__actions {
  border-bottom: none !important;
}


/* ===== この青をサイトの青に合わせて調整してOK ===== */
:root{
  --brand-blue: #1D4ED8;          /* 添付の見出しの青に寄せた基準色 */
  --brand-blue-weak: rgba(29,78,216,.12);
  --brand-blue-border: rgba(29,78,216,.28);
}

/* 料金まとめ */
.price-summary{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  margin:32px 0;
}

/* カード */
.price-card{
  width:260px;
  border:1px solid var(--brand-blue-border);
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  text-align:center;
}

/* 上部ラベル（青帯） */
.price-card__head{
  background: var(--brand-blue);
  color:#fff;
  font-weight:700;
  padding:10px 12px;
}

/* 本文 */
.price-card__body{
  padding:24px 16px;
  font-size:15px;
}

/* 金額を強調 */
.price-card__body--large{
  font-size:32px;
  font-weight:800;
  color:#111827;
}

.price-unit{
  font-size:14px;
  margin-left:4px;
  color:#111827;
}

/* ＋ 記号 */
.price-plus{
  font-size:44px;
  font-weight:800;
  color: var(--brand-blue);
  line-height:1;
}

/* スマホ */
@media (max-width:768px){
  .price-summary{ flex-direction:column; gap:12px; }
  .price-plus{ transform: rotate(90deg); }
}

/* ヒーロー左上のグラデーションを消す */
.hero {
  background: none !important;
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-2eb70d9 *//* ========== Base ========== */
:root{
  --bg: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --card: #ffffff;
  --soft: #f9fafb;
  --accent: #2563eb;
  --accent-weak: rgba(37,99,235,.12);
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius: 16px;
  --container: 1120px;
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin: 0;
  font-family: system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }
img{ max-width: 100%; display: block; }

.container{
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.section{
  padding: 64px 0;
}
.section-muted{
  background: var(--soft);
}
.section-title{
  font-size: clamp(22px, 2.6vw, 32px);
  margin: 0 0 24px;
  letter-spacing: .02em;
}
.section-head{
  display: flex;
  gap: 16px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 16px;
}
.section-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.anchor-spacer{ height: 1px; }

/* ========== Header ========== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.logo{
  font-weight: 800;
  letter-spacing: .06em;
}
.header-actions{
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.tel{
  display: grid;
  gap: 2px;
  padding-left: 10px;
  border-left: 1px solid var(--border);
}
.tel-hours{ font-size: 12px; color: var(--muted); }
.tel-number{ font-weight: 700; letter-spacing: .02em; }

/* ========== Buttons ========== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 10px 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform .05s ease, background .2s ease, border-color .2s ease, color .2s ease;
  user-select: none;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover{ text-decoration: none; filter: brightness(.98); }
.btn-ghost{
  background: #fff;
  border-color: var(--border);
}
.btn-ghost:hover{ text-decoration: none; background: var(--soft); }
.btn-lg{ padding: 12px 16px; }
.btn-block{ width: 100%; padding: 14px 16px; border-radius: 12px; }

/* ========== Hero ========== */
.hero{
  padding: 64px 0 48px;
  background:
    radial-gradient(900px 300px at 15% 10%, var(--accent-weak), transparent 60%),
    radial-gradient(900px 300px at 85% 10%, rgba(17,24,39,.06), transparent 60%);
}
.hero-inner{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}
.hero-kicker{
  margin: 0 0 10px;
  color: var(--muted);
  font-weight: 700;
}
.hero-title{
  margin: 0 0 12px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.2;
}
.accent{ color: var(--accent); }
.hero-lead{
  margin: 0 0 18px;
  color: var(--muted);
}
.hero-cta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.trust{
  margin-top: 16px;
}
.trust-label{
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual .visual-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  display: grid;
  gap: 12px;
}
.visual-badge{
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--border);
  font-weight: 800;
  letter-spacing: .04em;
}
.visual-placeholder{
  height: 260px;
  border-radius: 14px;
  border: 1px dashed #cbd5e1;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
  padding: 12px;
}
.visual-link{
  color: var(--muted);
  font-size: 12px;
  word-break: break-all;
}

/* ========== Logos ========== */
.logo-grid{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.logo-box{
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  padding: 14px 10px;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

/* ========== Cards / Features ========== */
.cards-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
}
.card-title{
  margin: 0 0 8px;
  font-size: 18px;
}
.card-text{
  margin: 0;
  color: var(--muted);
}
.value-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.value-cta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.features{
  display: grid;
  gap: 12px;
}
.feature{
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.feature-icon{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--accent-weak);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--accent);
}
.feature-title{ margin: 0 0 6px; font-size: 18px; }
.feature-text{ margin: 0; color: var(--muted); }

/* ========== Case ========== */
.case-kpi{
  font-size: 18px;
  margin-bottom: 8px;
}
.meta{
  margin: 14px 0 0;
  display: grid;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.meta div{
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 10px;
  align-items: baseline;
}
.meta dt{ color: var(--muted); font-size: 12px; }
.meta dd{ margin: 0; font-weight: 700; }

/* ========== Flow ========== */
.flow{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.flow-item{
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.flow-num{
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.flow-title{ margin: 0 0 6px; font-size: 18px; }
.flow-text{ margin: 0; color: var(--muted); }

/* ========== FAQ ========== */
.faq{
  display: grid;
  gap: 10px;
}
.faq-item{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}
.faq-q{
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 800;
}
.faq-q::marker{ content: ""; }
.faq-a{
  padding: 0 16px 16px;
  color: var(--muted);
}

/* ========== CTA ========== */
.cta{
  padding: 72px 0;
  background:
    radial-gradient(900px 380px at 50% 0%, var(--accent-weak), transparent 62%),
    #0b1220;
  color: #fff;
}
.cta-inner{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: start;
}
.cta-title{
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 34px);
}
.cta-lead{ margin: 0 0 16px; color: rgba(255,255,255,.78); }
.cta-list{
  margin: 0 0 12px;
  padding-left: 18px;
  color: rgba(255,255,255,.86);
}
.cta-note{ margin: 0; color: rgba(255,255,255,.7); font-size: 13px; }

.cta-form{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 18px;
  backdrop-filter: blur(10px);
}
.form-title{ margin: 0 0 12px; font-size: 18px; }
.form{
  display: grid;
  gap: 12px;
}
.field{ display: grid; gap: 6px; }
.field-label{ font-size: 12px; color: rgba(255,255,255,.75); font-weight: 700; }
.input,.textarea{
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 12px 12px;
  outline: none;
}
.input::placeholder,.textarea::placeholder{ color: rgba(255,255,255,.6); }
.input:focus,.textarea:focus{
  border-color: rgba(255,255,255,.45);
}
.form-help{
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,.72);
}
.form-help a{ color: #fff; text-decoration: underline; }

/* ========== Footer ========== */
.footer{
  border-top: 1px solid var(--border);
  padding: 18px 0;
  background: #fff;
}
.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-logo{ font-weight: 900; letter-spacing: .06em; }
.footer-links{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}
.footer-right{ color: var(--muted); }

/* ========== Responsive ========== */
@media (max-width: 900px){
  .hero-inner, .cta-inner{
    grid-template-columns: 1fr;
  }
  .logo-grid{
    grid-template-columns: repeat(3, 1fr);
  }
  .cards-3{
    grid-template-columns: 1fr;
  }
  .section-head{
    align-items: flex-start;
  }
}

@media (max-width: 520px){
  .logo-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .tel{
    border-left: none;
    padding-left: 0;
  }
}/* End custom CSS */