﻿  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy: #0B1F4B;
    --navy-deep: #071435;
    --blue: #1A4FA0;
    --green: #1A9A5C;
    --green-light: #E8F7F0;
    --orange: #E8762C;
    --orange-light: #FEF3EA;
    --purple: #6B5CE7;
    --purple-light: #F0EEFF;
    --white: #FFFFFF;
    --gray-light: #F5F7FA;
    --gray: #E2E8F0;
    --text: #1A202C;
    --text-muted: #718096;
    --radius: 16px;
    --shadow: 0 4px 24px rgba(11,31,75,0.10);
    --shadow-lg: 0 12px 48px rgba(11,31,75,0.16);
  }

  body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
  }
  /* ===== PAGE NAV ===== */
  .p-index__gnav {
    z-index: 3;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 90px;
    padding-top: 26px;
    background-color: #fff;
    border-top: 5px solid #c86220;
    border-bottom: 5px solid #b9981e;
}
.p-index__gnav__inner {
  position: relative;
  display: flex;
  width: 1090px;
  margin-right: auto;
  margin-left: auto;
}
.p-index__gnav__menu {
  display: flex;
}
.p-index__gnav__menu__group {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1090px;
  padding: 0 50px;
}
.p-index__gnav__menu__group__linkto, .p-index__gnav__menu__group__linkto:link, .p-index__gnav__menu__group__linkto:visited {
  text-decoration: none;
}
.p-index__gnav__menu__group a {
  width: 25%;
}
.p-index__gnav__menu__group__linkto {
  white-space: nowrap;
}
.p-index__gnav__menu__group__linkto span {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
}
.p-index__gnav__btn {
  display: none;
}

  /* ===== HEADER ===== */
  .site-header {
    background: var(--navy);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  }
  .site-header .logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--white);
    letter-spacing: 0.04em;
  }
  .site-header .logo span { color: #4FC3F7; }
  .header-cta {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  .btn-header-demo {
    background: var(--white);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 100px;
    text-decoration: none;
    transition: all .2s;
    border: 2px solid var(--white);
  }
  .btn-header-demo:hover { background: #E0F0FF; }
  .btn-header-consult {
    background: var(--orange);
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 100px;
    text-decoration: none;
    transition: all .2s;
  }
  .btn-header-consult:hover { background: #D4621A; }

  /* ===== HERO ===== */
  .hero {
    background:linear-gradient(135deg, #fdc458 0%, #e7bf26 60% 60%, #fdc458 100%);
    padding: 72px 24px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(26,154,92,0.18) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(74,144,226,0.15) 0%, transparent 50%);
  }
  .hero-inner {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
  }
  .hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 100px;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
  }
.hero-copy-wrap-container{display: flex;justify-content: center;align-items: center;gap: 20px;}
.hero-copy-wrap{width: 54%;}
.hero-copy-wrap h1{
  font-size: 5.5rem;
  font-weight: 900;
  color: #000;
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: left;}
.hero-img-wrap{width: 44%;}
  .hero-img {
    border-radius: 12px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-lg);
  }
  .hero-sub {
    color: #000;
    font-size: 2.5rem;
    margin-bottom: 12px;
    font-weight: 900;
    text-align: center;
  }
  .hero-sub-bold {
        color: #000000;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 40px;
    margin-top: 60px;
    text-align: center;
    line-height: 1.2;
  }
  .hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-cta-group a{text-decoration: none;}
  .btn-primary {
    text-align: center;
    background: var(--orange);
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
    padding: 16px 36px;
    border-radius: 100px;
    text-decoration: none;
    transition: all .22s;
    box-shadow: 0 6px 9px rgb(195 104 45 / 40%);
    display: block;
    align-items: center;
    margin: 12px 0 0 0;
  }
  .btn-primary:hover { background: #D4621A; transform: translateY(-2px); box-shadow: 0 10px 32px box-shadow: 0 6px 9px rgb(195 104 45 / 40%); text-decoration: none;}
  .btn-secondary {
    background: rgba(255, 255, 255, 1.15);
    color: #84b400;
    font-weight: 700;
    font-size: 1.5rem;
    padding: 16px 36px;
    border-radius: 100px;
    text-decoration: none;
    transition: all .22s;
    border: 2px solid #84b400;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0 0;
    box-shadow: 0 6px 9px rgb(195 104 45 / 40%);
  }
  .btn-secondary:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

  /* ===== CONTAINER ===== */
  .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ===== SECTION COMMON ===== */
  section { padding: 72px 0; }
  .section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
  }
  .section-title {
    font-size: clamp(1.4rem, 4vw, 3.7rem);
    font-weight: 900;
    color: #FFF;
    line-height: 1.4;
    margin-bottom: 16px;
  }
  .section-desc {
    color: #000;
    font-size: 1.7rem;
    max-width: 640px;
    margin: 0 auto 48px;
    font-weight: 900;
  }
  .text-center { text-align: center; }

  /* ===== BG SECTIONS ===== */
  .bg-light { background: var(--gray-light); }
  .bg-navy { background: var(--navy); }
  .bg-navy .section-title { color: var(--white); }
  .bg-navy .section-desc { color: rgba(255,255,255,0.7); }

  /* ===== FLOW / APPEAL BAR ===== */
  .appeal-bar {
    background: var(--navy-deep);
    padding: 0;
    overflow: hidden;
  }
  .appeal-bar img {
    width: 100%;
    display: block;
  }

  /* ===== PROBLEM SECTION ===== */
  .problem-section {
    background: var(--gray-light);
  }
  .problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 720px;
    margin: 0 auto 40px;
  }
  .problem-item {
    background: var(--white);
    border-left: 4px solid var(--orange);
    border-radius: 10px;
    padding: 18px 20px;
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--navy);
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .problem-item::before {
    content: '"';
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    flex-shrink: 0;
    margin-top: -4px;
  }
  .problem-cta-wrap { text-align: center; margin-top: 8px; }

  /* ===== EXPERIMENT SECTION ===== */
  .experiment-section { background: #fff;box-shadow: var(--shadow);padding: 40px 30px; }
  .experiment-section h3 {
    font-size: 3rem;
    font-weight: 600;
    color: rgb(132 180 0);
    margin-bottom: 12px;
    border-top: 1px solid #84b400;
    border-bottom: 1px solid #84b400;
    padding: 14px 0;
  }
  .experiment-section p{
    font-size: 1.5rem;
    font-weight: bold;
    color: #555;
    line-height: 1.9;
  }
  .experiment-section span{
    font-size: 1.5rem;
    font-weight: bold;
    color: #cc3f3f;
    line-height: 1.9;
  }
.experiment-section img{margin:20px auto;width:80%;}



  /* ===== PYRAMID ===== */
  .pyramid-section { background: var(--white); }
  .pyramid-img-wrap {
    text-align: center;
    margin-bottom: 32px;
  }
  .pyramid-img-wrap img {
    /*max-width: 700px;*/
    width: 100%;
    border-radius: 12px;
  }

  .fukidashi-01-06 {
    position: relative;
    width: fit-content;
    padding: 12px 16px;
    border: 2px solid var(--accent);
    border-radius: 4px;
    background: #fea541;
    color: #fff;
    font-weight: bold;
    margin: 0 auto 30px auto;
}
.fukidashi-01-06 {
  &::before {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 50%;
      width: 15px;
      height: 15px;
      box-sizing: border-box;
      background-color: #fea541;
      rotate: 135deg;
      translate: -50% 0;
  }
}

.fukidashi-0611 {
  position: relative;
  padding: 12px 16px;
  border: 2px solid var(--accent);
  border-radius: 4px;
  background: #fea541;
  color: #fff;
  font-weight: bold;
  margin: 0 auto;
  text-align: center;
}
.fukidashi-0611 {
&::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 15px;
    height: 15px;
    box-sizing: border-box;
    background-color: #fea541;
    rotate: 135deg;
    translate: -50% 0;
}
}
.fukidashi-0611-white {
  position: relative;
  padding: 12px 16px;
  border: 2px solid var(--accent);
  border-radius: 4px;
  background: #fff;
  color: #fea541;
  font-weight: bold;
  margin: 0 auto;
  text-align: center;
}
.fukidashi-0611-white {
&::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 15px;
    height: 15px;
    box-sizing: border-box;
    background-color: #fff;
    rotate: 135deg;
    translate: -50% 0;
}
}

  /* ===== FLOW SECTION ===== */
  .flow-img-wrap {
    text-align: center;
    margin: 32px 0 0;
  }
  .flow-img-wrap img {
    max-width: 860px;
    width: 100%;
    border-radius: 12px;
  }

  /* ===== TOOLS SECTION ===== */
  .tools-header-img {
    text-align: center;
    margin-bottom: 16px;
  }
  .tools-header-img img {
    max-width: 680px;
    width: 100%;
  }
  .tools-sub-img {
    text-align: center;
    margin: 0 auto 40px;
    display: table;
  }
  .tools-sub-img img {
    max-width: 600px;
    width: 100%;
  }

  .tool-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-bottom: 48px;
  }
  .tool-card-header {
    padding: 28px 36px 20px;
    border-bottom: 1px solid var(--gray);
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .tool-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--blue);
    opacity: 0.15;
    line-height: 1;
    margin-right: 4px;
  }
  .tool-icon-img {
    width: 60px;
    height: auto;
  }
  .tool-card-title {
    font-size: 2.9rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.3;
  }
  .tool-card-subtitle {
    font-size: 2rem;
    color: #84b400;
    font-weight: 900;
    margin-top: 1px;
  }
  .tool-card-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .tool-card-text {
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .tool-card-desc {
    color: var(--text);
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 24px;
  }
  .tool-card-img {
    border-left: 1px solid var(--gray);
  }
  .tool-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .btn-tool {
    /* display: inline-flex; */
    text-align: center;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    transition: all .2s;
    box-shadow: 0 4px 16px rgba(11, 31, 75, 0.2);
    width: 100%;
    /* border-radius: 10px; */
    border: 1px solid var(--gray);
}
  .btn-tool:hover { background: var(--blue); transform: translateY(-2px);text-decoration: none; }
  .btn-tool.green { background: var(--green); box-shadow: 0 4px 16px rgba(26,154,92,0.25); }
  .btn-tool.green:hover { background: #148349; text-decoration: none;}
  .btn-tool.purple { background: var(--purple); box-shadow: 0 4px 16px rgba(107,92,231,0.25); }
  .btn-tool.purple:hover { background: #5848D4; text-decoration: none;}

  /* hint image */
  .hint-img-wrap {
    padding: 0 36px 32px;
  }
  .hint-img-wrap img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--gray);
  }

  /* ===== CONSULT BANNER ===== */
  .consult-banner {
    margin: 48px 0 0;
    /* border-radius: var(--radius); */
    overflow: hidden;
    /* box-shadow: var(--shadow-lg); */
    cursor: pointer;
  }
  .consult-banner a { display: block; }
  .consult-banner img {
    width: 100%;
    display: block;
    transition: opacity .2s;
  }
  .consult-banner img:hover { opacity: 0.93; }

  /* ===== CHECKLIST SECTION ===== */
  .checklist-section { background: #fdc458;}
  .checklist-section02{background: #f5f7f6;}
   .checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 48px;
  }
  .check-item {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
  }
  .check-item .icon {
    width: 32px;
    height: 32px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
  }
  .checklist-cta { text-align: center; }
.bg-check{background: #f4f7fb;padding: 18px;border-radius: 5px;margin: 0;}
  .bg-check h3{
    font-size: 2rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 12px;
    border-bottom: 2px solid #fdc458;
    padding-bottom: 7px;
  }
  .bg-check p{font-size: 1.5rem;color: #000;margin-bottom: 12px;font-weight: 700;}
  /* ===== FINAL CTA ===== */
  .final-cta-section {
    background: linear-gradient(135deg, #0B1F4B 0%, #1A4FA0 100%);
    padding: 80px 24px;
    text-align: center;
  }
  .final-cta-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
  }
  .final-cta-desc {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-bottom: 40px;
  }

  /* final action card from excel image14 */
  .action-card-wrap {
    max-width: 780px;
    margin: 0 auto 40px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .action-card-wrap img {
    width: 100%;
    display: block;
  }

  .final-btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .btn-final-demo {
    background: var(--white);
    color: var(--navy);
    font-weight: 700;
    font-size: 1rem;
    padding: 18px 40px;
    border-radius: 100px;
    text-decoration: none;
    transition: all .22s;
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-final-demo:hover { background: #EEF4FF; transform: translateY(-2px); }
  .btn-final-consult {
    background: var(--orange);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    padding: 18px 40px;
    border-radius: 100px;
    text-decoration: none;
    transition: all .22s;
    box-shadow: 0 6px 24px rgba(232,118,44,0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-final-consult:hover { background: #D4621A; transform: translateY(-2px); }


.price-section{background: #fdc458;}
.price-section h2{color: #000;font-size: 3.5rem;font-weight: 900;margin-bottom: 20px;}
.price-card{display: flex;background: #fff;border-radius: 10px;padding:0;box-shadow: 0 10px 40px rgba(0,0,0,0.08);transition: 0.3s ease;justify-content: center;align-items: center;height: 200px;}
.price-card-header{height: 144px;width: 20%;background: #f1faf3;border-radius: 10px 0 0 10px;padding: 10px;font-size: 2rem;font-weight: 900;line-height: 0.5;}
.price-card-header span{font-size: 1.5rem;font-weight: 900;margin-bottom: 10px;display: block;}
.price-card-kakaku{width:20%;font-size: 2.5rem;font-weight: 900;text-align: left;line-height: 1;border-right: 1px solid #e9e2dd;padding: 0 0 0 10px;}
.price-card-kakaku small{font-size: 1rem;font-weight: 900;line-height: 0.5;}
.price-card-body{width:25%;text-align: left;border-right: 1px solid #e9e2dd;}
.price-card-body ul{margin-left: 28px;line-height: 3rem;}
.price-card-detail{width:28%;text-align: left;border-right: 1px solid #e9e2dd;}
.price-card-detail ul{margin-left: 28px;line-height: 3rem;}
.price-card-appbtn{width: 20%;margin: 0 auto;padding: 0;}
.head-border {
  display: flex;
  align-items: center;
  font-size: 3.5rem;
  font-weight: 900;
  color: #000;
  margin-bottom: 20px;
}
.head-border span{
  font-size: 1.5rem;
  font-weight: 900;
  color: #fafaff;
  margin-bottom: 0px;
  display: block;
  margin-right: 10px;
  letter-spacing: 0.05rem;
  background: #e8762c;
  padding: 5px 15px;
  border-radius: 50px;
  line-height: 1;
  text-align: center;}
.head-border:before,
.head-border:after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #666;
}

.head-border:before {
  margin-right: 1rem;
}

.head-border:after {
  margin-left: 1rem;
}
.support-section{background: #fff;}
.support-section h2{color: #000;font-size: 3.5rem;font-weight: 900;margin-bottom: 20px;}
.support-section h2 i{
  color: #fdc458;
  font-size: 5.5rem;
  vertical-align: sub;
  margin-right: 10px;
  font-weight: 900;}
.support-card h3{font-size: 2.5rem;font-weight: 900;margin-bottom: 20px;}
.support-card p{font-size: 1.5rem;font-weight: 900;margin-bottom: 20px;}
.support-card-icon{display: flex;justify-content: center;align-items: center;gap: 20px;}
.support-card-icon i{
  border: 2px solid #e8762c;
  padding: 5px 15px;
  color: #e8762c;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
.support-point{display: flex;justify-content: center;align-items: center;gap: 20px;margin: 60px 0;}
.support-point-item{
  width: 33.33%;
  padding: 20px;
  text-align: center;
  background: #fdf2dc;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  }
.support-point-copy{font-size: 1.5rem;font-weight: 900;margin-bottom: 10px;display: block;}
.support-point-copy span{
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 10px;
  display: block;
  color: #e8762c;
  letter-spacing: 0.05rem;}
.support-point-desc{font-size: 1.2rem;font-weight: 500;margin-bottom: 10px;display: block;}

  /* ===== FOOTER ===== */
  footer {
    background: var(--navy-deep);
    padding: 32px 24px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
  }
  footer .footer-copyright {
    font-size: 1.3rem;
    color: #fff;
  }
  footer .footer-logo {
    margin: 30px auto 10px auto;
    padding: 0;
    text-align: center;
    display: table;
  }
  footer .footer-logo img {
    width:100%;
    max-width: 200px;
  }
  footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
  footer a:hover { color: var(--white); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 640px) {


 /* ===== PAGE NAV ===== */
 .l-main .p-index__gnav {
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
}
 .p-index__gnav__inner {
  position: relative;
  display: flex;
  padding-top: 0px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  background: #fff;
  justify-content: space-between;
}
 .p-index__gnav__menu {
  position: absolute;
  z-index: 3;
  top: 50px;
  left: 0;
  display: none;
  width: 100%;
  background-color: #fff;
}

.p-index__gnav__menu__group {
  display: block;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 50px;
  z-index: -999;
  background:#fff;
}
.p-index__gnav__menu__group__linkto, .p-index__gnav__menu__group__linkto:link, .p-index__gnav__menu__group__linkto:visited {
  text-decoration: none;
}
.p-index__gnav__menu__group__linkto {
  display: block;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  font-weight: 700;
  font-size: 1.4rem;
  border: 1px solid #f0f0f0;
}
.p-index__gnav__menu__group__linkto span:nth-of-type(1) {
  font-size: 1.4rem;
  font-weight: 700;
}
.p-index__gnav__menu__group__linkto span {
  line-height: 1;
  display: block;
  color: #d5852b;
}
.p-index__gnav__btn {
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
  display: table;
  width: 90px;
  margin-top: 4px;
  text-align: center;
  letter-spacing: 25;
  color: #d5852b;
  border: 2px solid #d5852b;
  border-radius: 50px;
  cursor: pointer;
}
.p-index__gnav__btn::after {
  position: absolute;
  top: 45%;
  right: 12px;
  display: inline-block;
  width: 6px;
  height: 6px;
  content: "";
  transition: 0.5s;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  border-right: 2px solid #c03227;
  border-bottom: 2px solid #c03227;
}
.p-index__gnav__btn_menu_sp {
  display: none;
  position: fixed;
  top: 110px;
  left: 0;
  width: 96vw;
  height: 42vh;
  /* background: rgba(255, 255, 255, 0.98); */
  z-index: 9999;
  overflow-y: auto;
  transition: opacity 0.2s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.p-index__gnav__btn_menu_sp .p-index__gnav__menu__group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: auto;
  width: 100%;
  padding: 0;
}
.p-index__gnav__btn_menu_sp .p-index__gnav__menu__group__linkto {
  font-size: 2rem;
  margin: 0;
  width: 100%;
   /* max-width: 320px; */
  padding: 24px 0;
  border-bottom: 1px solid #eee;
  background: none;
}
    .problem-grid { grid-template-columns: 1fr; }
    .tool-card-body { grid-template-columns: 1fr; }
    .tool-card-img { border-left: none; border-top: 1px solid var(--gray); }
    .checklist-grid { grid-template-columns: 1fr; }
    .header-cta { gap: 8px; }
    .btn-header-demo, .btn-header-consult { font-size: 0.78rem; padding: 7px 14px; }
    section { padding: 48px 0; }

    .hero-badge {
      display: inline-block;
      background: rgba(255, 255, 255, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: var(--white);
      font-size: 1.2rem;
      font-weight: 700;
      padding: 5px 18px;
      border-radius: 100px;
      letter-spacing: 0.1em;
      margin-bottom: 24px;
  }
  .hero-sub {
    color: rgba(255, 255, 255, 0.88);
    font-size: 2.5rem;
    margin-bottom: 12px;
    font-weight: 900;
    line-height: 3rem;
}
.hero-sub-bold {
  color: rgb(0, 0, 0);
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 40px;
  text-align: center;
  line-height: 4rem;
}
.tool-card-subtitle {
  font-size: 1.75rem;
  color: var(--blue);
  font-weight: 700;
  margin-top: 6px;
}

  }

  /* Animation */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-inner { animation: fadeUp .7s ease both; }


## CSS（競合回避用プレフィックス付き）

```css
/* ========================================
   KF GEO LP ONLY
   CSS競合回避用 namespace: kfgeo2026-
======================================== */

.kfgeo2026-lp,
.kfgeo2026-lp * {
  box-sizing: border-box;
}

.kfgeo2026-lp {
  background: #f4f7fb;
  padding: 80px 20px;
  font-family: "Noto Sans JP", sans-serif;
  color: #1a1a1a;
}

.kfgeo2026-container {
  max-width: 1180px;
  margin: 0 auto;
}

.kfgeo2026-heading {
  text-align: center;
  margin-bottom: 60px;
}
.kfgeo2026-heading-message{
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  background: #f5f7f6;
  padding: 30px 0;
  color: #fdc458;
  line-height: 1.5;
margin-bottom: 0;}

.kfgeo2026-badge {
  display: inline-block;
  background: #0f3c91;
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.kfgeo2026-heading h2 {
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.3;
  font-weight: 900;
  margin-bottom: 20px;
}
.kfgeo2026-heading .section-title{
  color: #000;
  font-size: clamp(20px, 5vw, 32px);
  line-height: 1.3;
  font-weight: 900;
  margin-bottom: 20px;}

.kfgeo2026-heading h2 span {
  color: #d5852b;
}

.kfgeo2026-heading p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 22px;
  line-height: 1.9;
  color: #555;
  font-weight: 900;
}

.kfgeo2026-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.kfgeo2026-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.kfgeo2026-card:hover {
  transform: translateY(-6px);
}

.kfgeo2026-card-image img {
  width: 100%;
  display: block;
}

.kfgeo2026-card-box {
  font-size: 24px;
    display: table;
    text-align: center;
    background: #0f3c91;
    width: 100%;
    color: #FFF;
    border-radius: 50px;
    margin: 10px 0 0;
    font-weight: bold;
    padding: 7px;
}

.kfgeo2026-card-body {
  padding: 32px;
}

.kfgeo2026-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0f3c91;
  margin-bottom: 12px;
}

.kfgeo2026-card-body h3 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 12px;
}

.kfgeo2026-subtitle {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
  color: #333;
  margin-bottom: 24px;
}

.kfgeo2026-card-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.kfgeo2026-card-body li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  line-height: 1.8;
  color: #555;
}

.kfgeo2026-card-body li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #1f7aeb;
  font-weight: 700;
}

.kfgeo2026-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 28px;
  background: linear-gradient(135deg, #0f3c91, #1f7aeb);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 18px 20px;
  border-radius: 14px;
  transition: 0.25s ease;
}

.kfgeo2026-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.kfgeo2026-cta-wrap {
  margin-top: 70px;
}

.kfgeo2026-cta-box {
  background: linear-gradient(135deg, #0b2c6b, #1149b4);
  border-radius: 28px;
  padding: 60px 40px;
  text-align: center;
  color: #fff;
}

.kfgeo2026-cta-box h3 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 20px;
  font-weight: 900;
}

.kfgeo2026-cta-box p {
  font-size: 18px;
  line-height: 1.9;
  max-width: 760px;
  margin: 0 auto 34px;
}

.kfgeo2026-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff8b00;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  padding: 20px 44px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.kfgeo2026-cta-btn:hover {
  background: #ff7300;
  transform: translateY(-2px);
}
.more-seo-section{background: #fff;padding: 60px 0;}
.more-seo-section h2{
  color: #fdc458;
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 900;
  margin: 50px 0 20px 0;
}
.more-seo-section p {
  color: #000;
  font-size: 1.7rem;
  max-width: 640px;
  margin: 0 auto 48px;
  font-weight: 900;
}
.more-seo-section .kfgeo2026-card-body h3 {
  color: #000;
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 12px;
}
.more-seo-section .why-h2{color: #000;font-size: clamp(30px, 5vw, 36px);font-weight: 900;margin: 50px 0 20px 0;}
.more-seo-section .why-h2 i {
  color: #fdc458;
  font-size: clamp(47px, 5vw, 59px);
  vertical-align: sub;
  margin-right: 10px;
  font-weight: 900;
}
/* =========================
   Responsive
========================= */

@media (max-width: 1024px) {
  .kfgeo2026-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-copy-wrap-container {
    display: contents;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.hero-copy-wrap {
  width: 100%;
}
.hero-copy-wrap h1 {
  font-size: 3.6rem;
  font-weight: 900;
  color: #000;
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: left;
}
.hero-img-wrap {
  width: 100%;
}
.kfgeo2026-heading-message {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  background: #f5f7f6;
  padding: 30px 10px 20px 10px;
  color: #fdc458;
  line-height: 1.3;
  margin-bottom: 0;
}
.head-border {
  display: flex;
  align-items: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: #000;
  margin-bottom: 20px;
}
.price-card {
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  justify-content: center;
  align-items: center;
  height: auto;
  width: 100%;
}
.price-card-kakaku {
  width: 100%;
  font-size: 4.5rem;
  font-weight: 900;
  text-align: center;
  line-height: 1;
  border-right: none;
  padding: 20px 10px 20px 10px;
  border-bottom: 1px solid #e3dfdc;
}
.price-card-kakaku small {
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 0.5;
}
.price-card-body {
  width: 100%;
  text-align: left;
  border-right: none;
  padding: 20px 0px 20px 10px;
  border-bottom: 1px solid #e3dfdc;
}
.price-card-detail {
  width: 100%;
  text-align: left;
  border-right: none;
  padding: 20px 0px 20px 10px;
  border-bottom: 1px solid #e3dfdc;
}
.price-card-appbtn {
  width: 100%;
  margin: 0 auto;
  padding: 40px 0px 40px 10px;
  /* border-bottom: 1px solid #e3dfdc; */
}
.support-card h3 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 20px;
}
.support-point {
  display: block;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 60px 0;
  width: 100%;
}
.support-point-item {
  width: 100%;
  padding: 20px;
  text-align: center;
  background: #fdf2dc;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  margin: 20px 0 20px 0;
}
  .kfgeo2026-lp {
    padding: 60px 16px;
  }

  .kfgeo2026-card-body {
    padding: 24px;
  }

  .kfgeo2026-card-body h3 {
    font-size: 28px;
  }

  .kfgeo2026-heading p,
  .kfgeo2026-cta-box p {
    font-size: 16px;
  }

  .kfgeo2026-cta-box {
    padding: 40px 24px;
  }

  .kfgeo2026-btn,
  .kfgeo2026-cta-btn {
    font-size: 16px;
    padding: 16px 18px;
  }