@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Noto Sans JP', sans-serif; color:#333333; font-weight:500; font-size:16px; background:#fff; overflow-x:hidden; }
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }

/* ===== HEADER ===== */
.header {
  position:fixed; top:12px; left:12px; right:12px; z-index:100;
  background:#fff;
  box-shadow:0 0 12px rgba(0,0,0,0.2);
  border-radius:8px;
  height:80px;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 0 0 32px;
  overflow:hidden;
}
.header-logo { height:60px; width:auto; object-fit:contain; flex-shrink:0; }
.header-nav { display:flex; align-items:center; gap:40px; }
.header-nav a { font-size:15px; font-weight:500; color:#00096C; white-space:nowrap; }
.header-cta {
  background:#E83416; color:#fff !important;
  font-size:16px; font-weight:700;
  padding:0 32px; height:80px;
  display:flex; align-items:center;
  white-space:nowrap; margin-left:40px;
  flex-shrink:0;
}
.hamburger { display:none; }

/* ===== HERO ===== */
.hero {
  position:relative; height:700px; overflow:hidden;
  display:flex; align-items:center;
  margin-top:0px;
}
.hero-bg {
  position:absolute; inset:0;
  background-image:url('../images/hero_bg.png');
  background-size:cover; background-position:center right;
}
.hero-bg::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(-90deg, rgba(0,0,0,0) 39%, rgb(0,9,108) 69%);
}
.hero-body { position:relative; z-index:1;  padding: 100px 0 0 120px; max-width:680px; }
.hero h1 { font-size:36px; font-weight:700; color:#fff; line-height:1.6; margin-bottom:24px; }
.hero h2 { font-size:24px; font-weight:500; color:#fff; line-height:1.7; margin-bottom:32px; }
.hero-badges { display:flex; flex-direction:row; gap:20px; margin-bottom:36px; align-items:center; flex-wrap:nowrap; }
.hero-badge { display:flex; align-items:center; gap:2px; }
.hero-badge img.badge-icon { height:80px; width:37px; object-fit:fill; flex-shrink:0; }
.hero-badge span { color:#DDB856; font-size:14px; font-weight:700; line-height:1.5; text-align:center; white-space:nowrap; }
.hero-btn {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  background:#E83416; color:#fff; font-size:18px; font-weight:700;
  width:300px; height:60px; border-radius:4px;
  letter-spacing:0.05em;
  box-shadow:0 0 8px rgba(0,0,0,0.25);
}
.hero-btn img { width:32px; height:32px; object-fit:contain; }

/* ===== SECTION BASE ===== */
.sec { padding:80px 0; }
.inner { max-width:1000px; margin:0 auto; padding:0 20px; }
.width { max-width:1290px;}
.sec-hd { text-align:center; margin-bottom:56px; }
.sec-hd.left { text-align:left; }
.lbl {
  display:block; font-size:14px; letter-spacing:.2em;
  color:#E83416; font-weight:400;
  font-family:'游明朝','Yu Mincho','YuMincho',serif;
  font-style:normal; margin-bottom:14px; text-transform:uppercase;
}
.lbl-w { color:rgba(255,255,255,0.7); }
.ttl { font-size:32px; font-weight:700; color:#00096C; line-height:1.5; margin-bottom:16px; }
.ttl-w { color:#fff; }
.dsc { font-size:16px; color:#333333; line-height:1.9; }
.dsc-w { color:rgba(255,255,255,1); }
.bg-gray { background:#F6F6F6; }

/* ===== PAIN ===== */
.pain-grid { display:grid; grid-template-columns:repeat(3,1fr); }
.pain-item {
  display:flex; flex-direction:column;
  align-items:center; text-align:center;
  padding:0 32px;
  border-right:1px solid #D2CDC6;
}
.pain-item:last-child { border-right:none; }
.pain-icon { height:120px; width:auto; object-fit:contain; margin:0 auto 24px; }
.pain-item h3 { font-size:16px; font-weight:700; color:#00096C; margin-bottom:12px; line-height:1.6; }
.pain-item p { font-size:16px; color:#333333; line-height:1.8; }

/* ===== SOLUTION ===== */
.solution {
  position:relative; overflow:hidden;
  padding:100px 20px 80px; text-align:center;
  background-image:url('../images/solution_bg.png');
  background-size:cover; background-position:center;
}
.solution::before { content:''; position:absolute; inset:0; background:rgb(14 17 64 / 20%); }
.solution > * { position:relative; z-index:1; }
/* 白い逆三角（上付け・下向き▽） */
.solution::after {
  content:''; position:absolute; top:0; left:50%;
  transform:translateX(-50%);
  width:0; height:0;
  border-left:60px solid transparent;
  border-right:60px solid transparent;
  border-top:40px solid #FFFFFF;
  z-index:2;
}

/* ===== LOGO ROW ===== */
.logo-row { display:flex; align-items:center; justify-content:center; gap:20px; margin-bottom:24px; }
.logo-row::before,.logo-row::after { content:''; flex:1; max-width:60px; height:1px; background:rgba(255,255,255,0.35); }
.logo-row img { height:68px; object-fit:contain; }

/* ===== PARTNER ===== */
.partner-wrap { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.partner-txt { max-width:500px order:1; padding-top:60px; }
.partner-photo { order:2; position:relative; }
.partner-photo img {max-width: 700px; height:500px; object-fit:cover; border-radius:4px; position:relative; z-index:1; }
.partner-photo::after { content:''; position:absolute; inset:24px -24px -24px 24px; background:#F6F6F6; z-index:0; border-radius:4px; }
.p-divider { border:none; border-top:1px dotted #D2CDC6; margin:0 0 20px; }
.p-item { margin-bottom:20px; }
.p-head { display:flex; align-items:center; gap:12px; margin-bottom:8px; }
.p-head img { width:18px; height:18px; flex-shrink:0; }
.p-head h4 { font-size:18px; font-weight:700; color:#E83416; line-height:1.6; }
.p-item p { font-size:16px; color:#333333; line-height:1.8; padding-left:30px; }

/* ===== PROGRAM ===== */
.prog-grid { display:grid; grid-template-columns:1fr 1fr; gap:40px; }
.prog-card { background:#fff; border:1px solid #D2CDC6; border-radius:8px; overflow:hidden; position:relative; }
.prog-img { height:280px; overflow:hidden; }
.prog-img img { width:100%; height:100%; object-fit:cover; }
.prog-num {
  position:absolute; top:240px; left:24px;
  font-size:64px; font-weight:700; color:#E83416;
  font-style:normal; line-height:1;
  font-family:'游明朝','Yu Mincho','YuMincho',serif;
  z-index:2;
}
.prog-body { padding:56px 28px 28px; text-align: center;}
.prog-body h3 { font-size:16px; font-weight:700; color:#00096C; margin-bottom:12px; }
.prog-body p { font-size:16px; color:#333333; line-height:1.8; padding: 0 40px;}

/* ===== RESULTS ===== */
.results {
  position:relative;
  padding:56px 20px 0px; text-align:center;
  background-image:url('../images/results_bg.png');
  background-size:cover; background-position:center top;
  overflow:visible;
}
.results::before { content:''; position:absolute; inset:0; background:rgba(180,210,240,0); }
.results > * { position:relative; z-index:1; }
.results-hd { margin-bottom:0px; }
.res-box {
  max-width:1000px; margin:0 auto;
  background:#fff; border-radius:8px;
  box-shadow:0 8px 32px rgba(0,0,0,0.15);
  display:grid; grid-template-columns:repeat(3,1fr);
  position:relative; top:100px;
}
.res-item { padding:32px 28px; border-right:1px solid #D2CDC6; }
.res-item:last-child { border-right:none; }
.res-item h3 { font-size:16px; font-weight:700; color:#00096C; margin-bottom:12px; line-height:1.6; text-align:center; }
.res-item p { font-size:16px; color:#333333; line-height:1.8; text-align:left;}

/* ===== TRUST ===== */
#trust { padding-top:200px; }
.trust-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:40px; }
.trust-card { border:1px solid #D2CDC6; border-radius:8px; overflow:hidden; background:#fff; }
.trust-card img { width:100%; height:200px; object-fit:cover; }
.trust-body { padding:20px 20px 28px; }
.trust-body h3 { font-size:18px; font-weight:700; color:#00096C; margin-bottom:12px; line-height:1.5; text-align:center; }
.trust-body p { font-size:15px; color:#333333; line-height:1.7; }

/* ===== TESTIMONIALS ===== */
.testi-grid { display:grid; grid-template-columns:1fr 1fr; gap:40px; }
.testi-card { background:#fff; border:1px solid #D2CDC6; border-radius:8px; padding:32px; }
.testi-author { display:flex; align-items:center; gap:20px; margin-bottom:24px; }
.testi-avatar { width:80px; height:80px; border-radius:50%; object-fit:cover; flex-shrink:0; }
.testi-name { font-size:16px; font-weight:500; color:#00096C; line-height:1.7; }
.testi-ttl { font-size:16px; font-weight:700; color:#00096C; margin-bottom:14px; line-height:1.5; }
.testi-card > p { font-size:16px; line-height:1.9; }

/* ===== CTA ===== */
.cta {
  position:relative; overflow:hidden; padding:80px 20px; text-align:center;
  background-image:url('../images/cta_bg.png');
  background-size:cover; background-position:center;
}
.cta::before { content:''; position:absolute; inset:0; background:rgba(8,16,44,0.72); }
.cta > * { position:relative; z-index:1; }
.cta-inner { max-width:520px; margin:0 auto; }
.cta h2 { font-size:32px; font-weight:700; color:#fff; line-height:1.5; margin-bottom:16px; }
.cta p { font-size:16px; color:rgba(255,255,255,0.85); line-height:1.9; margin-bottom:40px; }
.cta-btn {
  display:inline-flex; align-items:center; justify-content:center; gap:12px;
  background:#E83416; color:#fff; font-size:18px; font-weight:700;
  padding:0 40px; height:72px; border-radius:4px;
  box-shadow:0 0 8px rgba(0,0,0,0.25);
}
.cta-btn img { width:32px; height:32px; object-fit:contain; }

/* ===== FOOTER ===== */
.footer { background:#00096C; padding:48px 20px 36px; text-align:center; }
.footer-logo { height:68px; object-fit:contain; margin:0 auto 12px; }
.footer-tag { font-size:14px; color:rgba(255,255,255,1); line-height:1.8; margin-bottom:40px; }
.footer-links { display:flex; justify-content:center; flex-wrap:wrap; gap:10px 28px; margin-bottom:28px; }
.footer-links a { font-size:16px; color:rgba(255,255,255,1); }
.footer-copy { font-size:11px; color:rgba(255,255,255,1); }

/* ============================================================
   SP: 768px以下
   ============================================================ */
@media (max-width: 768px) {
  .header { height:56px; top:0px; left:0px; right:0px; padding:0 16px; border-radius:0px; }
  .header-logo { height:38px; }
  .header-nav { display:none; }
  .hamburger { display:none; }

  .hero { height:580px; align-items:flex-end; margin-top:0px; }
  .hero-bg { background-position:60% center; }
  .hero-bg::after {
    background:linear-gradient(to bottom,
      rgba(0,9,108,0.05) 0%, rgba(0,9,108,0.55) 40%,
      rgba(0,9,108,0.92) 72%, rgb(0,9,108) 100%);
  }

  .hero-body { padding:0 20px 40px; max-width:100%; text-align:center; }
  .hero h1 { font-size:21px; margin-bottom:12px; }
  .hero h2 { font-size:13px; margin-bottom:20px; }
  .hero-badges { flex-direction:column; gap:12px; margin-bottom:24px; align-items:center; flex-wrap:nowrap; }
  .hero-badge img.badge-icon { height:56px; width:26px; }
  .hero-badge span { font-size:11px; }
  .hero-btn { font-size:15px; height:52px; width:100%; max-width:300px; margin:0 auto; }

  .sec { padding:48px 0; }
  .sec-hd { margin-bottom:32px; }
  .ttl { font-size:22px; }
  .dsc { font-size:13px; }

  .pain-grid { grid-template-columns:1fr; }
  .pain-item {
    flex-direction:row; text-align:left; align-items:center;
    gap:16px; padding:20px 0;
    border-right:none; border-bottom:1px solid #D2CDC6;
  }
  .pain-item:last-child { border-bottom:none; }
  .pain-icon { height:64px; width:auto; max-width:72px; margin:0; flex-shrink:0; }
  .pain-item h3 { font-size:14px; margin-bottom:6px; }
  .pain-item p { font-size:12px; }

  .solution { padding:48px 20px 72px; }
  .solution::after { border-left-width:40px; border-right-width:40px; border-top-width:28px; }
  .logo-row img { height:48px; }
  .ttl-w { font-size:20px; }
  .dsc-w { font-size:12px; }

  .partner-wrap { grid-template-columns:1fr; gap:0; }
  .partner-photo { order:1; }
  .partner-photo img { height:240px; border-radius:0; }
  .partner-photo::after { display:none; }
  .partner-txt { order:2; padding-top:32px; }
  .p-head h4 { font-size:13px; }
  .p-item p { font-size:12px; padding-left:24px; }

  .prog-grid { grid-template-columns:1fr; gap:16px; }
  .prog-img { height:180px; }
  .prog-num { font-size:44px; top:152px; left:16px; }
  .prog-body { padding:40px 18px 22px; }
  .prog-body h3 { font-size:15px; }
  .prog-body p { font-size:12px; }

  .results { padding:48px 20px 80px; }
  .res-box { grid-template-columns:1fr; bottom:-40px; }
  .res-item { border-right:none; border-bottom:1px solid #D2CDC6; padding:20px; }
  .res-item:last-child { border-bottom:none; }
  .res-item h3 { font-size:15px; text-align:left; }
  .res-item p { font-size:12px; }

  #trust { padding-top:80px; }
  .trust-grid { grid-template-columns:1fr; gap:16px; }
  .trust-card img { height:160px; }
  .trust-body h3 { font-size:15px; text-align:left; }
  .trust-body p { font-size:12px; }

  .testi-grid { grid-template-columns:1fr; gap:16px; }
  .testi-card { padding:20px; }
  .testi-author { margin-bottom:16px; gap:14px; }
  .testi-avatar { width:56px; height:56px; }
  .testi-name { font-size:12px; }
  .testi-ttl { font-size:14px; }
  .testi-card > p { font-size:12px; }

  .cta { padding:48px 20px; }
  .cta h2 { font-size:22px; }
  .cta p { font-size:13px; margin-bottom:28px; }
  .cta-btn { font-size:15px; height:60px; padding:0 20px; width:100%; }

  .footer { padding:36px 20px 28px; }
  .footer-logo { height:52px; }
  .footer-tag { font-size:12px; margin-bottom:24px; }
  .footer-links a { font-size:11px; }
}
