  :root {
      --navy: #06255b;
      --blue: #064bb4;
      --blue2: #0b66df;
      --yellow: #ffc400;
      --green: #10b85a;
      --red: #ee3344;
      --bg: #f3f7fc;
      --text: #09214d;
      --text-sub: #2d374d;
      --muted: #60708a;
      --line: #d7e3f4;
      --white: #fff;
      --shadow: 0 14px 34px rgba(4, 34, 84, .12);
      --radius: 18px;
  }

  * {
      box-sizing: border-box
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.75;
  }

  a {
      text-decoration: none;
      color: inherit
  }

  .container {
      width: min(1160px, 92%);
      margin: auto
  }

  .topbar {
      background: #072a6a;
      color: #fff;
      position: sticky;
      top: 0;
      z-index: 10
  }

  .nav {
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px
  }

  .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      font-size: 1.2rem
  }

  .brand .logo {
    width: 1.2rem;
    scale: 1.2;
  }

  .menu {
      display: flex;
      align-items: center;
      gap: 30px;
      font-weight: 800;
      font-size: .95rem
  }

  .flex-col-left {
    display: flex;
    flex-direction: column;
    align-items: start;
  }

  .txt-navy {
    color: var(--blue);
  }

  .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .55rem;
      border-radius: 10px;
      font-weight: 900;
      border: 0;
      cursor: pointer;
      transition: .2s transform, .2s box-shadow;
  }

  .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, .18)
  }

  .btn-yellow {
      background: #ffbd00;
      color: #061f4d
  }

  .btn-green {
      background: #16c464;
      color: #fff
  }

  .btn-estimate {
    display: flex;
    flex-direction: row;
  }

  .btn-estimate .icon{
    height: 3rem;
  }

  .wide-cta .btn-estimate{
    font-size: 2rem;
  }
  
  .btn-xl {
      font-size: 1.2rem;
      padding: 24px 56px;
      border-radius: 12px;
      box-shadow: 0 16px 28px rgba(255, 196, 0, .24)
  }


  .hero {
      position: relative;
      padding: 2rem;
      background-color: #034CEA;
      background-image:
          linear-gradient(90deg,
              rgb(0, 7, 100) 0%,
              rgb(0, 7, 100, 0.8) 50%,
              rgba(0, 7, 100, 0.15) 100%),
          url("assets/hero.jpg");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center right;
      overflow: hidden;
      color: #FFFFFF;
  }

  .hero-inner {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      align-items: center;
      padding: 72px 0 76px;
      position: relative
  }

  .badge {
      display: inline-flex;
      border: 1px solid rgba(255, 255, 255, .65);
      border-radius: 8px;
      padding: 8px 22px;
      font-weight: 900;
      margin-bottom: 24px;
      background: rgba(255, 255, 255, .06)
  }

  h1 {
      font-size: clamp(2.6rem, 6vw, 5.4rem);
      line-height: 1.12;
      margin: 0 0 22px;
      font-weight: 950;
      letter-spacing: .02em
  }

  h1 .yellow {
      color: var(--yellow)
  }

  .hero-lead {
      font-size: 1.22rem;
      font-weight: 700;
      margin-bottom: 22px
  }

  .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 26px
  }

  .chip {
      border: 1px solid rgba(255, 255, 255, .4);
      border-radius: 8px;
      padding: 8px 14px;
      background: rgba(255, 255, 255, .08);
      font-weight: 800
  }

  .hero h1 {
      font-size: 4rem;
  }

  .hero-note {
      font-weight: 800;
      font-size: .9rem;
      margin-top: -12px
  }

  .hero-visual {
      min-height: 390px;
      position: absolute;
      right: 2rem;
      top: 2rem;
  }

  .bubble {
      width: 8rem;
      height: 8rem;
      border-radius: 50%;
      display: grid;
      place-items: center;
      text-align: center;
      background: #216ee5;
      border: 3px solid rgba(255, 255, 255, .45);
      font-weight: 950;
      font-size: 1.05rem;
      box-shadow: 0 14px 24px rgba(0, 0, 0, .22);
      transform: rotate(-8deg)
  }

  .specbar {
      background: #fff;
      border-bottom: 1px solid var(--line)
  }

  .specbar-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr)
  }

  .specitem {
      padding: 1rem;
      display: flex;
      align-items: center;
      gap: 18px;
      border-right: 1px solid var(--line);
      font-weight: 900
  }

  .specitem img {
      height: 3rem;
  }

  .specitem .ico {
      font-size: 2.4rem;
      color: var(--blue)
  }

  section {
      padding: 2rem;
  }

  .center {
      text-align: center
  }

  .section-label {
      display: inline-block;
      background: var(--yellow);
      border-radius: 999px;
      padding: 5px 16px;
      font-size: .78rem;
      font-weight: 950;
      margin-bottom: 12px
  }

  h2 {
      font-size: clamp(1.5rem, 4vw, 2rem);
      line-height: 1.35;
      margin: 0 0 18px;
      font-weight: 950
  }

  .lead {
      color: var(--muted);
      font-weight: 700
  }

  .panel {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow)
  }

  .popular {
      display: grid;
      grid-template-columns: .85fr 1.1fr .65fr;
      gap: 28px;
      align-items: center;
      padding: 36px;
      margin-top: 30px
  }

  .panel.popular img {
      max-height: 100%;
      max-width: 100%;
  }

  .icon-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      text-align: center;
      font-weight: 900
  }

  .iconbox {
      display: flex;
      flex-direction: column;
      text-align: center;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8rem;
      line-height: 1rem;
  }

  .iconbox .ico {
      display: block;
      height: 3.5rem;
      width: 3.5rem;
  }

  .pricebox {
      display: flex;
      flex-direction: column;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: #f7fbff;
      padding: 24px;
      text-align: left;
  }

  .price {
      color: var(--red);
      font-size: 3rem;
      font-weight: 950;
      white-space: nowrap;
  }

  .price small {
      font-size: 1rem;
      color: var(--red)
  }

  .custom {
      display: grid;
      grid-template-columns: 1fr;
      padding: 30px;
      margin-top: 28px
  }

  .checklist {
      font-weight: 900
  }

  .checklist p {
      margin: 9px 0
  }

  .checklist span {
      color: #27a74f;
      margin-right: 8px
  }

  table {
      width: 100%;
      border-collapse: collapse;
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      font-weight: 800
  }

  th,
  td {
      border: 1px solid var(--line);
      padding: 13px;
      text-align: center
  }

  th {
      background: #f1f6ff;
      color: #0c3476
  }

  tr.highlight td {
      background: #fff0af
  }

  .wide-cta {
      margin-top: 28px;
      text-align: center
  }

  .wide-cta .btn {
      width: 100%;
      max-width: 100%;
      padding: 26px
  }

  .reasons {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 28px
  }

  .card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 28px;
      text-align: center;
      box-shadow: var(--shadow)
  }

  .reasons .card .ico {
      height: 5rem;
  }

  .flow {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.5rem;
      margin-top: 28px;
      overflow: hidden
  }

  .flow .step {
      display: flex;
      align-items: center;
      background: #fff;
      padding: 1rem;
      text-align: center;
      border-radius: 16px;
      gap: 2rem;
      text-align: left;
      line-height: 1rem;
  }

  .flow .step h3 {
      line-height: 1.5rem;
      font-weight: 800;
  }

  .flow .step p {
      color: var(--text-sub);
  }


  .num {
      display: inline-grid;
      place-items: center;
      width: 42px;
      height: 42px;
      background: var(--navy);
      color: #fff;
      border-radius: 50%;
      font-weight: 950;
      margin-bottom: 8px
  }

  .voices {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin-top: 28px
  }

  .voice {
      background: #fff;
      border: 1px solid var(--line);
      border-left: 4px solid var(--yellow);
      border-radius: 14px;
      padding: 26px;
      box-shadow: var(--shadow)
  }

  .voice header {
      display: flex;
      flex-direction: row;
      gap: 0.5rem;
  }

  .voice main {
      text-align: left;
  }

  .voice .evaluation {
      display: flex;
      flex-direction: column;
      align-items: start;
  }


  .voice header .icon_user {
      height: 3rem;
      width: 3rem;
  }

  .stars {
      color: #ffc400;
      letter-spacing: 2px;
      font-size: 1.2rem
  }

  .image_qr {
      border-radius: 1rem;
      overflow: hidden;
  }

  footer {
      background: #031a44;
      color: #fff;
      padding: 2rem
  }


  footer .logo {
      width: 2rem;
  }

  footer p {
      margin: 7px 0
  }

  footer .muted {
      color: #c9d8ee
  }

  .foot-cta {
      display: grid;
      gap: 14px
  }

  .copy {
      text-align: center;
      color: #b7c7df;
      margin-top: 36px;
      font-size: .9rem
  }

  @media(max-width:900px) {
      .menu {
          display: none
      }

      .popular,
      .custom,
      .footgrid {
          grid-template-columns: 1fr
      }

      .specbar-grid,
      .reasons,
      .voices {
          grid-template-columns: 1fr 1fr
      }

      .step,
      .step:first-child,
      .step:last-child {
          border-radius: 16px;
          margin-bottom: 10px
      }

      .icon-row {
          grid-template-columns: 1fr 1fr
      }

      .iconbox {
          display: flex;
          flex-direction: row;
          text-align: left;
          gap: 1rem;
      }

      .bubble {
          width: 110px;
          height: 110px;
          font-size: .9rem
      }
  }

  @media(max-width:560px) {

      .specbar-grid,
      .reasons,
      .voices {
          grid-template-columns: 1fr
      }

      h1 {
          font-size: 2.5rem
      }

      .btn-xl,
      .wide-cta .btn {
          font-size: 1rem;
          padding: 20px
      }

      .price {
          font-size: 2.3rem
      }
  }