/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
  <style>
    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: 'Noto Sans JP', sans-serif;
      color: #1f2937;
      background: #f9fafb;
      -webkit-font-smoothing: antialiased;
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    textarea {
      font: inherit;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding-left: 16px;
      padding-right: 16px;
    }

    .axis-bg-navy { background-color: #0e1133 !important; }
    .axis-text-navy { color: #0e1133 !important; }
    .axis-bg-gold { background-color: #D4AF37 !important; }
    .axis-text-gold { color: #D4AF37 !important; }
    .axis-bg-accent { background-color: #E63946 !important; }
    .axis-text-white { color: #ffffff !important; }

    .section-title {
      font-size: 32px;
      line-height: 1.3;
      font-weight: 900;
      color: #0e1133;
      text-align: center;
      margin: 0 0 24px;
    }

    .section-lead {
      font-size: 18px;
      font-weight: 500;
      color: #4b5563;
      text-align: center;
      margin: 0 0 64px;
    }

    /* Top Alert */
    .top-alert {
      background: #0e1133;
      color: #ffffff;
      padding: 8px 16px;
      text-align: center;
      font-size: 16px;
      font-weight: 700;
      position: relative;
      z-index: 50;
    }

    .top-alert-badge {
      display: inline-block;
      background: #E63946;
      color: #ffffff;
      padding: 2px 8px;
      border-radius: 6px;
      margin-right: 8px;
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    /* Header */
    .site-header {
      background: rgba(255,255,255,0.9);
      border-bottom: 1px solid #e5e7eb;
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .site-header-inner {
      min-height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 8px;
      min-width: 0;
    }

    .brand-mark {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #0e1133;
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 900;
      flex-shrink: 0;
    }

    .brand-name {
      font-size: 20px;
      font-weight: 700;
      color: #0e1133;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }

    .header-nav {
      display: none;
      gap: 24px;
      font-size: 16px;
      font-weight: 700;
    }

    .header-nav a:hover {
      color: #0e1133;
    }

    .header-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #0e1133;
      color: #ffffff;
      padding: 8px 24px;
      border-radius: 999px;
      font-size: 16px;
      font-weight: 700;
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
      transition: background-color .2s ease;
      white-space: nowrap;
    }

    .header-cta:hover {
      background: #1c225a;
    }

    /* Hero */
    .hero {
      position: relative;
      overflow: hidden;
      color: #ffffff;
      border-bottom: 8px solid #0e1133;
      min-height: 600px;
      display: flex;
      align-items: center;
      background-color: #0e1133;
      background-image: linear-gradient(245deg, rgba(14, 17, 51, 1) 0%, rgba(87, 199, 133, 0) 50%, rgba(83, 206, 237, 1) 100%);
    }

    .grid-overlay::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
      background-size: 30px 30px;
      pointer-events: none;
      z-index: 1;
    }

    .hero-right-image {
      position: absolute;
      top: 0;
      right: 0;
      width: 50%;
      height: 100%;
      z-index: 5;
      display: none;
    }

    .hero-right-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: right center;
      mask-image: linear-gradient(to left, black 60%, transparent 100%);
      -webkit-mask-image: linear-gradient(to left, black 60%, transparent 100%);
    }

    .hero-inner {
      position: relative;
      z-index: 10;
      width: 100%;
      display: flex;
      align-items: center;
    }

    .hero-content {
      width: 100%;
      max-width: 760px;
      text-align: center;
      padding: 48px 0 48px;
      position: relative;
      z-index: 20;
    }

    .hero-label {
      display: inline-block;
      background: #ffffff;
      color: #0e1133;
      padding: 6px 16px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 16px;
      margin-bottom: 32px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }

    .hero-title {
      margin: 0 0 32px;
      font-size: 32px;
      line-height: 1.25;
      font-weight: 900;
      text-shadow: 0 1px 2px rgba(0,0,0,0.15);
    }

    .hero-desc {
      font-size: 18px;
      line-height: 1.8;
      font-weight: 500;
      opacity: 0.95;
      margin: 0 auto 40px;
      max-width: 720px;
    }

    .hero-feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      max-width: 520px;
      margin: 0 auto 40px;
    }

    .feature-circle-fv {
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      border-radius: 50%;
      aspect-ratio: 1 / 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: #0e1133;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      text-align: center;
      padding: 10px;
    }

    .feature-circle-fv .icon {
      font-size: 20px;
      margin-bottom: 6px;
    }

    .feature-circle-fv .sub {
      font-size: 12px;
      font-weight: 700;
      margin-bottom: 4px;
      line-height: 1.3;
    }

    .feature-circle-fv .main {
      font-size: 14px;
      font-weight: 900;
      line-height: 1.3;
    }

    .cta-button,
    .cta-button-navy {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      border: none;
      cursor: pointer;
      border-radius: 999px;
      font-weight: 900;
      transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
      text-align: center;
    }

    .cta-button {
      background: #D4AF37;
      color: #ffffff;
      font-size: 22px;
      padding: 20px 42px;
      box-shadow: 0 4px 0 #b38f1d;
    }

    .cta-button:hover {
      background: #F1D279;
    }

    .cta-button:active {
      transform: translateY(2px);
      box-shadow: 0 2px 0 #b38f1d;
    }

    .cta-button-navy {
      background: #0e1133;
      color: #ffffff;
      font-size: 22px;
      padding: 20px 48px;
      box-shadow: 0 4px 0 #05071a;
    }

    .cta-button-navy:hover {
      background: #1c225a;
    }

    .cta-button-navy:active {
      transform: translateY(2px);
      box-shadow: 0 2px 0 #05071a;
    }

    .hero-note {
      margin: 24px auto 0;
      max-width: 420px;
      font-size: 16px;
      font-weight: 500;
      line-height: 1.8;
      opacity: 0.9;
    }

    .hero-mobile-image {
      display: block;
      margin: 0 -16px 48px;
      width: calc(100% + 32px);
      height: 350px;
      position: relative;
      overflow: hidden;
    }

    .hero-mobile-image img {
      min-width: 167%;
      height: 100%;
      object-fit: cover;
      object-position: right center;
      margin-left: auto;
      box-shadow: 0 18px 40px rgba(0,0,0,0.15);
    }

    .hero-wave {
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      opacity: 0.1;
      pointer-events: none;
      overflow: hidden;
      z-index: 0;
    }

    /* Subsidy banner */
    .subsidy-banner {
      background: #E63946;
      color: #ffffff;
      padding: 24px 0;
      box-shadow: inset 0 2px 8px rgba(0,0,0,0.12);
    }

    .subsidy-banner-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      text-align: center;
    }

    .subsidy-badge {
      background: #ffffff;
      color: #E63946;
      padding: 4px 16px;
      border-radius: 6px;
      font-size: 16px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .subsidy-main {
      font-size: 24px;
      line-height: 1.5;
      font-weight: 700;
      margin: 0;
    }

    .subsidy-main strong {
      font-size: 34px;
      font-weight: 900;
      text-decoration: underline;
      text-decoration-color: #ffffff;
    }

    .subsidy-note {
      max-width: 320px;
      font-size: 16px;
      opacity: 0.85;
      font-weight: 500;
      margin: 0;
    }

    /* Sections */
    .section {
      padding: 80px 0;
    }

    .section-white {
      background: #ffffff;
    }

    .section-gray {
      background: #f9fafb;
    }

    .section-problems {
      padding-bottom: 0;
    }

    .problem-grid,
    .value-grid,
    .feature-grid,
    .faq-grid {
      display: grid;
      gap: 32px;
    }

    .problem-grid,
    .value-grid,
    .feature-grid {
      max-width: 1152px;
      margin: 0 auto;
    }

    .problem-grid {
      margin-bottom: 80px;
    }

    .section-box {
      background: #ffffff;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      padding: 32px;
      transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
    }

    .section-box:hover {
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }

    .problem-card-icon {
      color: #0e1133;
      font-size: 40px;
      margin-bottom: 16px;
    }

    .problem-card-title {
      font-size: 22px;
      line-height: 1.5;
      font-weight: 700;
      color: rgba(14,17,51,0.9);
      margin: 0 0 12px;
    }

    .problem-card-text,
    .value-card-text,
    .feature-card-text,
    .faq-answer {
      font-size: 16px;
      color: #4b5563;
      font-weight: 500;
      line-height: 1.8;
      margin: 0;
    }

    /* Bridge */
    .bridge-wrap {
      position: relative;
    }

    .bridge-pointer {
      width: 0;
      height: 0;
      border-left: 50px solid transparent;
      border-right: 50px solid transparent;
      border-top: 30px solid #ffffff;
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
    }

    .bridge-panel {
      position: relative;
      background-color: #0e1133;
      background-image: linear-gradient(245deg, rgba(14, 17, 51, 1) 0%, rgba(87, 199, 133, 0) 50%, rgba(83, 206, 237, 1) 100%);
      padding: 96px 0;
      color: #ffffff;
      text-align: center;
    }

    .bridge-text {
      position: relative;
      z-index: 10;
      font-size: 28px;
      line-height: 1.7;
      font-weight: 900;
      margin: 0;
    }

    /* Value */
    .value-wrap {
      max-width: 960px;
      margin: 0 auto;
      text-align: center;
    }

    .value-intro {
      margin: 0 0 64px;
      font-size: 18px;
      color: #4b5563;
      font-weight: 500;
      line-height: 1.9;
      text-align: center;
    }

    .value-grid {
      grid-template-columns: 1fr;
      gap: 48px;
      text-align: center;
    }

    .value-card-icon-wrap {
      width: 80px;
      height: 80px;
      margin: 0 auto 24px;
      border-radius: 50%;
      background: #ffffff;
      border: 1px solid rgba(14,17,51,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    }

    .value-card-icon {
      color: #0e1133;
      font-size: 30px;
    }

    .value-card-title {
      font-size: 22px;
      font-weight: 700;
      margin: 0 0 12px;
      color: rgba(14,17,51,0.8);
    }

    /* Features */
    .bg-feature-geometric {
      background-color: #f1f5f9;
      background-image:
        linear-gradient(30deg, rgba(14, 17, 51, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(14, 17, 51, 0.02) 87.5%, rgba(14, 17, 51, 0.02)),
        linear-gradient(150deg, rgba(14, 17, 51, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(14, 17, 51, 0.02) 87.5%, rgba(14, 17, 51, 0.02));
      background-size: 80px 140px;
    }

    .feature-grid {
      grid-template-columns: 1fr;
      gap: 40px;
      margin-bottom: 80px;
    }

    .feature-card-white {
      background: #ffffff;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      padding: 48px 32px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .feature-card-white:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.08);
      border-color: #0e1133;
    }

    .feature-number {
      font-size: 48px;
      font-weight: 900;
      color: #D4AF37;
      line-height: 1;
      margin-bottom: 8px;
      display: block;
    }

    .feature-line {
      width: 40px;
      height: 3px;
      background: #D4AF37;
      margin: 0 auto 32px;
    }

    .feature-card-title {
      font-size: 24px;
      font-weight: 700;
      color: #0e1133;
      margin: 0 0 32px;
    }

    .feature-image-placeholder {
      background: #f8fafc;
      border: 1px dashed #e2e8f0;
      border-radius: 4px;
      height: 240px;
      margin-bottom: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .feature-image-placeholder span {
      color: #94a3b8;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.1em;
    }

    .feature-image-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .feature-card-text {
      text-align: left;
    }

    .center-cta {
      text-align: center;
    }

    /* Curriculum */
    .curriculum-wrap {
      max-width: 1152px;
      margin: 0 auto;
      text-align: center;
    }

    .curriculum-label {
      margin: 0 0 64px;
      color: #6b7280;
      font-size: 20px;
      font-weight: 700;
    }

    .curriculum-list {
      display: flex;
      flex-direction: column;
      gap: 40px;
      text-align: left;
    }

    .curriculum-card {
      background: #ffffff;
      border-radius: 8px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: 32px;
      align-items: flex-start;
    }

    .curriculum-card.is-bordered {
      border-top: 4px solid #0e1133;
    }

    .curriculum-day {
      width: 100%;
      max-width: 220px;
      flex-shrink: 0;
      text-align: center;
    }

    .curriculum-day-sub {
      display: block;
      margin-bottom: 8px;
      font-size: 16px;
      color: #D4AF37;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .curriculum-day-title {
      display: block;
      font-size: 30px;
      line-height: 1.3;
      color: #0e1133;
      font-weight: 900;
    }

    .curriculum-body {
      flex: 1;
      width: 100%;
    }

    .curriculum-card-title {
      font-size: 28px;
      font-weight: 700;
      margin: 0 0 24px;
      color: rgba(14,17,51,0.8);
    }

    .curriculum-columns {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      margin-bottom: 32px;
    }

    .curriculum-list-items {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .curriculum-list-items li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: #4b5563;
      font-size: 16px;
      font-weight: 500;
      margin-bottom: 12px;
      line-height: 1.8;
    }

    .curriculum-list-items i {
      color: #0e1133;
      margin-top: 6px;
      flex-shrink: 0;
    }

    .curriculum-goal {
      background: #fdf6e3;
      border: 1px solid rgba(212,175,55,0.3);
      border-radius: 8px;
      padding: 24px;
      display: flex;
      align-items: center;
      gap: 16px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
      font-size: 18px;
    }

    .curriculum-goal-badge {
      display: inline-block;
      background: #D4AF37;
      color: #ffffff;
      padding: 4px 8px;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      flex-shrink: 0;
    }

    .curriculum-goal-text {
      color: #0e1133;
      font-weight: 700;
      line-height: 1.7;
    }

    /* Price */
    .price-section {
      background-color: #0e1133;
      background-image: linear-gradient(245deg, rgba(14, 17, 51, 1) 0%, rgba(87, 199, 133, 0) 50%, rgba(83, 206, 237, 1) 100%);
      color: #ffffff;
      position: relative;
    }

    .price-wrap {
      position: relative;
      z-index: 10;
      text-align: center;
    }

    .price-grid {
      max-width: 1152px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      overflow: hidden;
      border-radius: 16px;
      box-shadow: 0 18px 40px rgba(0,0,0,0.15);
      text-align: left;
    }

    .price-panel-left,
    .price-panel-right {
      padding: 48px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 100%;
    }

    .price-panel-left {
      background: #ffffff;
      border-right: 1px solid #f3f4f6;
    }

    .price-panel-right {
      background: #f3f4f6;
      color: #1f2937;
      position: relative;
      overflow: hidden;
    }

    .price-panel-right::before {
      content: "";
      position: absolute;
      top: -80px;
      right: -80px;
      width: 256px;
      height: 256px;
      background: #0e1133;
      opacity: 0.05;
      border-radius: 50%;
    }

    .price-heading {
      font-size: 32px;
      font-weight: 700;
      color: #0e1133;
      margin: 0 0 32px;
      position: relative;
      z-index: 1;
    }

    .price-main {
      display: flex;
      align-items: baseline;
      margin-bottom: 40px;
      flex-wrap: wrap;
      gap: 4px;
    }

    .price-main-sub {
      color: #6b7280;
      font-size: 16px;
      font-weight: 700;
      margin-right: 8px;
    }

    .price-main-num {
      font-size: 110px;
      line-height: 1;
      font-weight: 900;
      color: #0e1133;
      letter-spacing: -0.05em;
    }

    .price-main-unit {
      font-size: 32px;
      font-weight: 700;
      color: #0e1133;
    }

    .price-main-tax {
      color: #9ca3af;
      font-size: 16px;
      margin-left: 8px;
    }

    .price-list {
      list-style: none;
      padding: 0;
      margin: 0 0 32px;
    }

    .price-list li {
      display: flex;
      align-items: center;
      gap: 16px;
      color: #0e1133;
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .price-list i {
      color: #1c225a;
      flex-shrink: 0;
    }

    .price-footnote {
      margin-top: auto;
      color: #9ca3af;
      font-size: 16px;
      font-weight: 500;
    }

    .subsidy-price-main {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: baseline;
      justify-content: center;
      margin-bottom: 24px;
      flex-wrap: wrap;
      gap: 4px;
    }

    .subsidy-price-sub {
      color: #4b5563;
      font-size: 22px;
      font-weight: 700;
      margin-right: 8px;
    }

    .subsidy-price-num {
      font-size: 120px;
      line-height: 1;
      font-weight: 900;
      color: #D4AF37;
      letter-spacing: -0.05em;
    }

    .subsidy-price-unit {
      font-size: 32px;
      font-weight: 700;
      color: #D4AF37;
    }

    .subsidy-price-text {
      position: relative;
      z-index: 1;
      font-size: 22px;
      line-height: 1.8;
      font-weight: 500;
      color: #374151;
      text-align: center;
      margin: 0 0 32px;
    }

    .subsidy-price-text strong {
      color: #D4AF37;
      font-weight: 900;
      border-bottom: 2px solid #D4AF37;
      margin: 0 4px;
    }

    .subsidy-box {
      position: relative;
      z-index: 1;
      background: #ffffff;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      padding: 32px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    }

    .subsidy-box p {
      margin: 0;
      font-size: 18px;
      line-height: 1.8;
      color: #4b5563;
      font-weight: 500;
      text-align: left;
    }

    .price-cta {
      margin-top: 64px;
      text-align: center;
    }

    /* Company */
    .company-section {
      background: #ffffff;
      border-bottom: 1px solid #e5e7eb;
    }

    .company-wrap {
      max-width: 960px;
      margin: 0 auto;
    }

    .company-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 48px;
      text-align: center;
    }

    .company-mark-wrap {
      width: 100%;
      max-width: 280px;
    }

    .company-mark {
      width: 100%;
      max-width: 220px;
      aspect-ratio: 1 / 1;
      margin: 0 auto;
      border-radius: 50%;
      background: #0e1133;
      color: #ffffff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-size: 44px;
      font-weight: 900;
      box-shadow: inset 0 4px 16px rgba(255,255,255,0.06);
      text-transform: uppercase;
    }

    .company-mark small {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.14em;
      margin-top: 8px;
    }

    .company-text {
      width: 100%;
      max-width: 620px;
      text-align: left;
    }

    .company-title {
      font-size: 32px;
      font-weight: 900;
      color: #0e1133;
      margin: 0 0 24px;
    }

    .company-desc {
      margin: 0;
      font-size: 18px;
      color: #4b5563;
      line-height: 1.9;
      font-weight: 500;
    }

    /* FAQ */
    .faq-wrap {
      max-width: 768px;
      margin: 0 auto;
      text-align: center;
    }

    .faq-grid {
      gap: 32px;
      text-align: left;
    }

    .faq-card:hover {
      border-color: #0e1133;
    }

    .faq-question {
      font-size: 24px;
      color: #0e1133;
      font-weight: 700;
      margin: 0 0 16px;
      line-height: 1.6;
    }

    .faq-answer {
      font-size: 18px;
    }

    /* Contact */
    .contact-section {
      background: #ffffff;
      border-top: 1px solid #e5e7eb;
    }

    .contact-wrap {
      max-width: 768px;
      margin: 0 auto;
      text-align: center;
    }

    .contact-head {
      margin-bottom: 64px;
    }

    .contact-head p {
      margin: 0;
      color: #6b7280;
      font-size: 20px;
      font-weight: 700;
    }

    .contact-form {
      max-width: 672px;
      margin: 0 auto;
      text-align: left;
    }

    .form-group {
      margin-bottom: 32px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .form-label {
      display: block;
      font-size: 20px;
      font-weight: 700;
      color: #0e1133;
      margin-bottom: 12px;
      line-height: 1.5;
    }

    .required-text {
      color: #E63946;
      margin-left: 8px;
      font-size: 16px;
      font-weight: 400;
    }

    .form-input,
    .form-textarea {
      width: 100%;
      border: 1px solid #d1d5db;
      border-radius: 6px;
      padding: 16px;
      font-size: 18px;
      color: #1f2937;
      outline: none;
      background: #ffffff;
    }

    .form-input:focus,
    .form-textarea:focus {
      border-color: #0e1133;
      box-shadow: 0 0 0 2px rgba(14,17,51,0.15);
    }

    .form-textarea {
      min-height: 192px;
      resize: vertical;
    }

    .form-submit {
      padding-top: 24px;
      text-align: center;
    }

    .form-privacy {
      font-size: 16px;
      color: #9ca3af;
      margin-top: 24px;
      font-weight: 700;
      letter-spacing: -0.01em;
    }

    /* Footer */
    .site-footer {
      background: #f3f4f6;
      padding: 48px 16px;
      text-align: center;
      font-size: 10px;
      color: #6b7280;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.18em;
    }

    /* Sticky CTA */
    .sticky-cta {
      position: fixed;
      right: 16px;
      bottom: 16px;
      z-index: 50;
      display: block;
    }

    .sticky-cta a {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: #f97316;
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 18px 40px rgba(0,0,0,0.15);
      font-size: 24px;
    }

    /* Responsive */
    @media (min-width: 768px) {
      .section-title {
        font-size: 40px;
      }

      .hero-title {
        font-size: 60px;
      }

      .hero-desc {
        font-size: 28px;
      }

      .feature-circle-fv {
        padding: 16px;
      }

      .feature-circle-fv .icon {
        font-size: 30px;
        margin-bottom: 8px;
      }

      .feature-circle-fv .sub {
        font-size: 16px;
      }

      .feature-circle-fv .main {
        font-size: 20px;
      }

      .subsidy-banner-inner {
        flex-direction: row;
        text-align: left;
      }

      .subsidy-main {
        font-size: 32px;
      }

      .problem-grid,
      .value-grid,
      .feature-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .curriculum-columns {
        grid-template-columns: repeat(2, 1fr);
      }

      .company-inner {
        flex-direction: row;
        text-align: left;
      }

      .company-mark-wrap {
        width: 33.333%;
      }

      .company-text {
        width: 66.666%;
      }

      .form-row {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .hero {
        min-height: 700px;
      }

      .hero-right-image {
        display: block;
      }

      .hero-content {
        width: 58.333%;
        text-align: left;
        padding: 80px 0;
      }

      .hero-desc,
      .hero-note,
      .hero-feature-grid {
        margin-left: 0;
      }

      .hero-mobile-image {
        display: none;
      }

      .header-nav {
        display: flex;
      }

      .curriculum-card {
        flex-direction: row;
        padding: 40px;
      }

      .curriculum-day {
        text-align: left;
      }

      .price-grid {
        grid-template-columns: 1fr 1fr;
      }

      .sticky-cta {
        display: none;
      }
    }

    @media (max-width: 767px) {
      .cta-button,
      .cta-button-navy {
        width: 100%;
        font-size: 20px;
        padding: 18px 24px;
      }

      .header-cta {
        padding: 8px 18px;
        font-size: 14px;
      }

      .brand-name {
        font-size: 18px;
      }

      .price-main-num,
      .subsidy-price-num {
        font-size: 84px;
      }

      .price-main-unit,
      .subsidy-price-unit {
        font-size: 28px;
      }

      .curriculum-goal {
        flex-direction: column;
        align-items: flex-start;
      }

      .bridge-text {
        font-size: 22px;
      }
    }
  </style>