*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --orange:     #F26A00;
      --orange-d:   #D45800;
      --orange-l:   #FF8C2A;
      --orange-pale:#FFF4EC;
      --orange-soft:#FFF9F5;
      --pink:       #E8004A;
      --gray-bg:    #F5F5F5;
      --sky:        #F0F8FF;
      --white:      #fff;
      --txt:        #222;
      --txt2:       #646464;
      --border:     #E8E8E8;
      --radius:     15px;
      --shadow:     0 0 10px 4px rgba(0,0,0,0.06);
      --font:       'Noto Sans JP', sans-serif;
    }
    html { scroll-behavior: smooth; }
    .sp-br { display: none; }
    body { font-family: var(--font); color: var(--txt); line-height: 1.7; overflow-x: hidden; font-size: 19.5px; }

    /* ══ HEADER ══ */
    header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      background: var(--white); border-bottom: 2px solid var(--orange);
      height: 76px;
    }
    .hd {
      max-width: 1200px; margin: 0 auto; padding: 0 32px;
      height: 100%; display: flex; align-items: center; justify-content: space-between;
    }
    .hd-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .hd-logo img { height: 64px; width: auto; display: block; }
    .hd-logo span { font-size: 16px; font-weight: 700; color: var(--txt); letter-spacing: .05em; transform: translateY(-4px); }
    .hd-contact {
      display: flex; align-items: center; gap: 16px;
    }
    .hd-mail { font-size: 13px; color: var(--txt2); }
    .hd-mail a { color: var(--orange); font-weight: 700; text-decoration: none; }
    .btn-orange {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--orange); color: var(--white);
      font-family: var(--font); font-size: 13px; font-weight: 700;
      padding: 10px 22px; border-radius: 10px; border: none;
      text-decoration: none; letter-spacing: .04em; cursor: pointer;
      transition: background .2s;
    }
    .btn-orange:hover { background: var(--orange-d); }

    /* ══ HERO ══ */
    .hero {
      margin-top: 76px;
      position: relative; overflow: hidden;
      min-height: calc(78vh - 64px); max-height: 800px;
      display: flex; align-items: center;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background-image: url('../image/tophero2.png');
      background-size: cover; background-position: right 20%;
    }
    @media (max-width: 768px) {
      .hero-bg { background-position: 75% 20%; }
    }
    .hero-bg::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(100deg, rgba(255,255,255,.70) 0%, rgba(255,255,255,.30) 40%, rgba(255,255,255,0) 70%);
    }
    .hero-inner {
      position: relative; z-index: 2;
      max-width: 1200px; margin: 0 auto; padding: 0 32px; width: 100%;
    }
    .hero-catch {
      margin-top: 20px; margin-bottom: 13px;
      display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
    }
    .hero-catch-logo { height: 44px; width: auto; display: block; }
    .hero-catch-label {
      font-size: 27px; font-weight: 900; color: var(--orange);
      letter-spacing: .06em; border-left: 3px solid var(--orange); padding-left: 12px;
    }
    .hero-h1 {
      font-size: clamp(48px, 6.5vw, 82px); font-weight: 900;
      line-height: 1.2; letter-spacing: -.02em; color: var(--txt);
      margin-bottom: 12px;
    }
    .hero-h1 span { color: var(--orange); }
    .hero-sub {
      font-size: 26px; font-weight: 700; color: var(--txt2);
      margin-bottom: 20px; letter-spacing: .02em;
    }
    .hero-desc2 {
      font-size: 20px; font-weight: 700; color: var(--orange);
      margin-bottom: 16px; letter-spacing: .02em;
    }
    .hero-desc {
      font-size: 17px; color: var(--txt2); max-width: 640px;
      line-height: 2; margin-bottom: 36px;
    }
    .hero-desc em { font-style: normal; font-weight: 700; color: var(--orange); }
    .hero-btns { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
    .btn-cta {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--pink); color: var(--white);
      font-family: var(--font); font-size: 15px; font-weight: 900;
      padding: 16px 32px; border-radius: 10px; border: none;
      text-decoration: none; letter-spacing: .04em; cursor: pointer;
      box-shadow: 0 4px 20px rgba(232,0,74,.3);
      transition: transform .2s, box-shadow .2s;
    }
    .btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,0,74,.4); }
    .btn-sub {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--white); color: var(--orange);
      font-family: var(--font); font-size: 14px; font-weight: 700;
      padding: 14px 24px; border-radius: 10px;
      border: 2px solid var(--orange); text-decoration: none;
      transition: background .2s;
    }
    .btn-sub:hover { background: var(--orange-pale); }

    .hero-points {
      display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap;
    }
    .hero-point {
      display: flex; flex-direction: column; align-items: center; gap: 6px;
      background: var(--orange); border-radius: 50%;
      width: 160px; height: 160px; justify-content: center;
      font-size: 25px; font-weight: 700; color: var(--white);
      text-align: center; line-height: 1.4;
      box-shadow: 0 4px 20px rgba(242,106,0,.4);
    }
    .hero-point-dot { display: none; }

    /* ══ CTA BAR ══ */
    .cta-bar {
      background: var(--orange);
      padding: 36px 32px 0;
      text-align: center;
      position: relative;
    }
    .cta-bar-inner {
      max-width: 1200px; margin: 0 auto;
      display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap;
      padding-bottom: 36px;
    }
    .cta-bar p { font-size: 26px; font-weight: 700; color: var(--white); letter-spacing: .04em; }
    .cta-bar::after {
      content: '';
      position: absolute; bottom: -28px; left: 50%; transform: translateX(-50%);
      width: 0; height: 0;
      border-left: 36px solid transparent;
      border-right: 36px solid transparent;
      border-top: 28px solid var(--orange);
    }
    .btn-white-solid {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--white); color: var(--orange);
      font-family: var(--font); font-size: 15px; font-weight: 900;
      padding: 14px 32px; border-radius: 10px; border: none;
      text-decoration: none; letter-spacing: .04em; cursor: pointer;
      box-shadow: 0 4px 16px rgba(0,0,0,.15);
      transition: transform .2s;
    }
    .btn-white-solid:hover { transform: translateY(-2px); }

    /* ══ SECTION BASE ══ */
    .sec { padding: 88px 32px; }
    .wrap { max-width: 1200px; margin: 0 auto; }

    .sec-badge {
      display: inline-block;
      background: none; color: var(--orange);
      font-family: 'M PLUS 1p', sans-serif;
      font-size: 28px; font-weight: 900; letter-spacing: .1em;
      font-style: normal; text-transform: uppercase;
      padding: 0; border-radius: 0;
      margin-bottom: 8px;
    }
    .sec-badge.gray { color: var(--txt2); }
    .sec-badge.pink { color: var(--pink); }

    .sec-h2 {
      font-size: clamp(24px, 3vw, 38px); font-weight: 900;
      line-height: 1.3; letter-spacing: -.01em; color: var(--txt);
      margin-bottom: 12px;
    }
    .sec-h2 span { color: var(--orange); }
    .sec-lead { font-size: 18px; color: var(--txt2); line-height: 1.9; max-width: 640px; }

    /* ══ WORRIES ══ */
    .worries { background: var(--gray-bg); }
    .worries-head { text-align: center; margin-bottom: 56px; }
    .worries-head .sec-lead { margin: 0 auto; text-align: center; }

    .worries-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
      margin-bottom: 48px;
    }
    .worry-card {
      background: var(--white); border-radius: var(--radius);
      padding: 40px 28px; text-align: center;
      box-shadow: var(--shadow);
      transition: transform .25s;
    }
    .worry-card:hover { transform: translateY(-4px); }

    .worry-icon {
      width: 88px; height: 88px; border-radius: 50%;
      background: var(--orange-pale);
      border: 3px solid var(--orange);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
    }
    .worry-icon svg { width: 46px; height: 46px; }
    .worry-title { font-size: 18px; font-weight: 700; color: var(--txt); line-height: 1.5; }

    .issues-layout {
      display: grid; grid-template-columns: 420px 1fr; gap: 32px; align-items: stretch;
      margin-top: 24px;
    }
    .issues-box {
      background: none; box-shadow: none; padding: 0;
    }
    .issues-box h3 {
      margin-bottom: 12px;
    }
    .issues-grid {
      display: flex; flex-direction: column; gap: 18px;
    }
    .issue-item {
      display: flex; align-items: flex-start; gap: 16px;
      font-size: 30px; color: var(--txt); line-height: 1.5;
    }
    .issue-check {
      font-size: 28px; font-weight: 900; color: var(--orange);
      flex-shrink: 0; line-height: 1;
    }
    .issues-lead { font-size: 17px; color: var(--txt2); margin-bottom: 20px; line-height: 1.8; }
    .issue-body { display: flex; flex-direction: column; gap: 4px; }
    .issue-label { font-size: 22px; font-weight: 700; color: var(--txt); line-height: 1.4; }
    .issue-desc { font-size: 16px; color: var(--txt2); line-height: 1.8; }
    .issues-img-wrap {
      overflow: visible;
      height: 100%; min-height: 500px;
      margin: 0;
    }
    .issues-img {
      width: 100%; height: 100%;
      object-position: top center; object-fit: cover;  display: block; 
    }
    @media (max-width: 900px) {
      .worries-head { margin-bottom: 28px; }
      .issues-layout { grid-template-columns: 1fr; gap: 16px; margin-top: 12px; }
      .issues-img-wrap { min-height: auto; height: auto; width: 80%; margin: 0 auto; }
      .issues-img { max-height: none; width: 100%; aspect-ratio: 1/1; }
    }

    /* ══ COMTERAS ══ */
    .comteras-sec { background: var(--white); padding: 0 !important; }
    .comteras-head {
      max-width: 1200px; margin: 0 auto;
      padding: 88px 32px 48px;
      text-align: center;
    }
    .comteras-sp-img { display: none; }
    .comteras-intro {
      font-size: clamp(17px, 1.6vw, 22px); color: var(--txt); line-height: 2;
      margin: 16px auto 0; max-width: 900px;
      word-break: auto-phrase;
    }
    .comteras-bg-wrap {
      max-width: 1200px; margin: 0 auto;
      position: relative; width: 100%;
    }
    .comteras-bg-wrap img.comteras-bg-img {
      width: 100%; display: block;
    }
    .comteras-text-overlay {
      position: absolute; top: 6%; left: 2%;
      max-width: 50%; display: flex; flex-direction: column; gap: 16px;
    }
    .comteras-points { display: flex; flex-direction: column; gap: 16px; }
    .comteras-point {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: clamp(13px, 1.8vw, 25px); font-weight: 500; color: var(--txt); line-height: 1.4;
    }
    .comteras-check {
      width: 32px; height: 32px; min-width: 32px; border-radius: 6px;
      background: var(--orange);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: center; background-size: 20px;
      flex-shrink: 0; margin-top: 5px;
    }
    @media (max-width: 768px) {
      .comteras-sec { padding: 48px 20px !important; }
      .comteras-bg-wrap img.comteras-bg-img { display: none; }
      .comteras-sp-img { display: block; width: 100%; margin-bottom: 24px; }
      .comteras-text-overlay { position: static; max-width: 100%; }
      .comteras-point { font-size: 18px; }
    }

    .comteras-realization { background: var(--white); padding: 56px 32px; }
    .comteras-section-title {
      font-size: 26px; font-weight: 700; color: var(--txt);
      line-height: 1.4; letter-spacing: .02em; margin-bottom: 40px; text-align: center;
    }
    .comteras-section-title span { color: var(--txt2); font-weight: 700; display: inline; font-size: 26px; margin-left: 8px; }
    .comteras-points-list {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 1200px; margin: 0 auto;
    }
    .comteras-point-item {
      padding: 30px;
      position: relative;
    }
    .comteras-point-item::before, .comteras-point-item::after {
      content: '';
      width: 30px;
      height: 30px;
      position: absolute;
    }
    .comteras-point-item::before {
      border-left: solid 2px var(--orange);
      border-top: solid 2px var(--orange);
      top: 0;
      left: 0;
    }
    .comteras-point-item::after {
      border-right: solid 2px var(--orange);
      border-bottom: solid 2px var(--orange);
      bottom: 0;
      right: 0;
    }
    .comteras-point-item h4 {
      font-size: 18px; font-weight: 700; color: #F26A00; margin-bottom: 12px; line-height: 1.5;
    }
    .comteras-point-item p {
      font-size: 16px; color: var(--txt2); line-height: 1.9; margin: 0;
    }
    @media (max-width: 900px) {
      .comteras-points-list { grid-template-columns: 1fr; gap: 28px; }
    }
    @media (max-width: 768px) {
      .comteras-realization { padding: 40px 16px; }
      .comteras-section-title { font-size: 18px; margin-bottom: 28px; }
      .comteras-section-title span { font-size: 18px; }
      .comteras-point-item { padding: 24px; }
      .comteras-point-item::before, .comteras-point-item::after { width: 24px; height: 24px; }
      .comteras-points-list { gap: 20px; }
      .comteras-point-item h4 { font-size: 16px; margin-bottom: 8px; }
      .comteras-point-item p { font-size: 14px; }
    }

    /* ══ FEATURES ══ */
    .features { background: var(--white); }

    .features-head {
      text-align: center; margin-bottom: 40px;
    }
    .features-head .sec-lead { margin: 0 auto; }
    .features-layout {
      display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
    }
    .features-img {
      width: 100%; aspect-ratio: 4/3;
      object-fit: cover; border-radius: var(--radius);
      display: block;
    }
    .features-grid {
      display: flex; flex-direction: column; gap: 20px;
    }
    .feature-card {
      background: var(--orange-soft); border-radius: var(--radius);
      padding: 16px 28px 16px 24px; border: 1px solid #FFD0A6;
      box-shadow: var(--shadow);
      transition: transform .25s, box-shadow .25s;
      position: relative; overflow: hidden;
      display: flex; gap: 20px; align-items: flex-start;
    }
    .feature-card::before {
      content: '';
      position: absolute; top: 0; left: 0; bottom: 0; width: 5px;
      background: linear-gradient(180deg, var(--orange), var(--orange-l));
    }
    .feature-card:hover { transform: translateX(4px); box-shadow: 0 8px 32px rgba(242,106,0,.15); }

    .feature-left-col { display: flex; flex-direction: column; align-items: center; gap: 8px; flex-shrink: 0; }
    .feature-num {
      font-size: 11px; font-weight: 700; letter-spacing: .1em;
      color: var(--orange);
    }
    .feature-icon {
      width: 60px; height: 60px; border-radius: 12px;
      background: var(--white); border: 2px solid #FFD0A6;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 2px 8px rgba(242,106,0,.12);
    }
    .feature-icon svg { width: 32px; height: 32px; }
    .feature-body { flex: 1; }
    .feature-title { font-size: 24px; font-weight: 700; color: var(--txt); margin-bottom: 8px; }
    .feature-desc { font-size: 18px; color: var(--txt2); line-height: 1.9; word-break: auto-phrase; text-wrap: pretty; }
    @media (max-width: 900px) {
      .features-layout { grid-template-columns: 1fr; }
    }

    /* ══ FLOW ══ */
    .flow { background: var(--gray-bg); }
    .flow-head { text-align: center; margin-bottom: 72px; }
    .flow-head .sec-lead { margin: 0 auto; text-align: center; }

    .flow-list {
      display: flex; flex-direction: column; gap: 0;
      position: relative; max-width: 800px; margin: 0 auto;
    }
    .flow-item {
      display: grid; grid-template-columns: 80px 1fr;
      gap: 0; align-items: stretch;
      background: var(--white); border-radius: var(--radius);
      box-shadow: var(--shadow); margin-bottom: 16px;
      overflow: hidden;
      transition: transform .2s;
    }
    .flow-item:hover { transform: translateX(4px); }

    .flow-num-col {
      background: var(--orange);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 4px; padding: 28px 0;
    }
    .flow-num-label { font-size: 9px; font-weight: 700; color: rgba(255,255,255,.8); letter-spacing: .08em; }
    .flow-num-val { font-size: 32px; font-weight: 900; color: var(--white); line-height: 1; letter-spacing: -.02em; }

    .flow-body {
      padding: 28px 32px; display: flex; align-items: center; gap: 24px;
    }
    .flow-icon {
      width: 56px; height: 56px; min-width: 56px; border-radius: 12px;
      background: var(--orange-pale);
      display: flex; align-items: center; justify-content: center;
    }
    .flow-icon svg { width: 30px; height: 30px; }
    .flow-text h3 { font-size: 17px; font-weight: 700; color: var(--txt); margin-bottom: 4px; }
    .flow-text p  { font-size: 17px; color: var(--txt2); line-height: 1.8; }

    /* ══ COMPANY ══ */
    .company-sec { background: var(--white); }
    .company-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
      margin-top: 56px; align-items: start;
    }
    .co-table { border-collapse: collapse; width: 100%; }
    .co-table tr { border-bottom: 1px solid var(--border); }
    .co-table th {
      text-align: left; padding: 16px 0; font-size: 12px; font-weight: 700;
      color: var(--txt2); width: 90px; vertical-align: top; letter-spacing: .04em;
    }
    .co-table td { padding: 16px 0; font-size: 18px; color: var(--txt); line-height: 1.7; }
    .co-table td a { color: var(--orange); text-decoration: none; font-weight: 700; }

    .svc-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .svc-list li {
      display: flex; align-items: center; gap: 12px;
      font-size: 15px; font-weight: 500; color: var(--txt);
      background: var(--orange-soft); border-radius: 10px; padding: 16px 20px;
      border-left: 4px solid var(--orange);
    }
    .svc-list li::before {
      content: '';
      width: 22px; height: 22px; min-width: 22px; border-radius: 5px;
      background: var(--orange);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: center; background-size: 13px;
    }

    /* ══ FOOTER CTA BAR ══ */
    .footer-cta {
      background: linear-gradient(135deg, var(--orange), var(--orange-d));
      padding: 64px 32px; text-align: center;
    }
    .footer-cta h2 {
      font-size: clamp(20px, 2.5vw, 32px); font-weight: 900; color: var(--white);
      margin-bottom: 10px; letter-spacing: -.01em;
    }
    .footer-cta p { font-size: 18px; color: rgba(255,255,255,.85); margin-bottom: 32px; line-height: 1.9; }

    /* ══ FOOTER ══ */
    footer { display: none; background: #1A1A1A; padding: 40px 32px; }
    .ft { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
    .ft-logo { display: flex; align-items: center; gap: 10px; }
    .ft-logo img { height: 26px; filter: brightness(0) invert(1); opacity: .7; }
    .ft-logo span { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.75); }
    .ft-mail a { font-size: 12px; color: #FF9A50; text-decoration: none; }
    .ft-copy { font-size: 11px; color: rgba(255,255,255,.3); }

    /* ══ RESPONSIVE ══ */
    @media (max-width: 960px) {
      .sec { padding: 72px 24px; }
      .hd { padding: 0 20px; }
      .hero-inner { padding: 0 24px; }
      .worries-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
      .company-inner { grid-template-columns: 1fr; gap: 40px; }
      .issues-grid { grid-template-columns: 1fr; }
      .cta-bar-inner { flex-direction: column; gap: 16px; }
    }
    @media (max-width: 640px) {
      /* ── Header ── */
      .hd { padding: 0 16px; }
      .hd-mail, .btn-orange { display: none; }
      .hd-logo { width: 100%; justify-content: space-between; }
      .hd-logo span { white-space: nowrap; margin-bottom: 0; }

      /* ── Hero ── */
      .hero-bg {
        background-image: url('../image/tophero2_sp.png');
        background-position: right top;
      }
      .hero-bg::after {
        background: linear-gradient(100deg, rgba(255,255,255,.60) 0%, rgba(255,255,255,.25) 55%, rgba(255,255,255,0) 100%);
      }
      .sp-br { display: inline; }
      .hero-catch { margin-bottom: 12px; flex-wrap: nowrap; gap: 8px; }
      .hero-catch-logo { height: 24px; }
      .hero-catch-label { font-size: 13px; letter-spacing: .03em; padding-left: 8px; white-space: nowrap; }
      .hero-h1 { font-size: clamp(32px, 9vw, 44px); margin-bottom: 8px; }
      .hero-sub { font-size: 16px; margin-bottom: 12px; }
      .hero-desc2 { font-size: 14px; margin-bottom: 10px; }
      .hero-desc { font-size: 13px; margin-bottom: 20px; }
      .hero-points {
        flex-wrap: nowrap; justify-content: center;
        gap: 8px; margin-top: 16px;
      }
      .hero-point { width: 108px; height: 108px; font-size: 16px; }

      /* ── Sections ── */
      .sec { padding: 56px 16px; }
      .hero-inner { padding: 28px 16px 28px; }
      .worries-grid { grid-template-columns: 1fr; gap: 0; margin-bottom: 32px; }
      .worry-card {
        background: none; box-shadow: none; border-radius: 0;
        padding: 14px 0; border-bottom: 1px solid var(--border);
        text-align: left; display: flex; flex-direction: row;
        align-items: center; gap: 16px;
      }
      .worry-card:first-child { border-top: 1px solid var(--border); }
      .worry-icon { margin: 0; flex-shrink: 0; width: 48px; height: 48px; }
      .worry-icon svg { width: 26px; height: 26px; }
      .worry-title { flex: 1; font-size: 22px; }
      .worry-title br { display: none; }
      .issue-item { font-size: 22px; padding-left: 0; gap: 12px; }
      .comteras-head { padding: 48px 16px 32px; }
      .comteras-sp-img { display: block; width: 100%; }
      .comteras-point { font-size: 22px; }
      .comteras-point br { display: none; }
      .features-grid { grid-template-columns: 1fr; }
      .flow-body { flex-direction: column; gap: 16px; align-items: flex-start; }
      .issues-box { padding: 28px 24px; }
      .worries { padding-bottom: 11px; }
      .ft { flex-direction: column; align-items: flex-start; }
      footer { display: none; }
    }