    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
      color: var(--text);
      background: #fff;
      line-height: 1.7;
    }

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

	.phone {display: none;}
	.pc {display: block;}

    .container {
      width: min(1120px, calc(100% - 40px));
      margin: 0 auto;
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--line);
    }

    .header-inner {
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      color: var(--navy);
      letter-spacing: .02em;
    }

    .logo-mark {
      width: 63px;
    }

    .logo small {
      display: block;
      color: var(--muted);
      font-size: 11px;
      letter-spacing: .05em;
      margin-top: -4px;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 28px;
      font-size: 14px;
      font-weight: 700;
      color: #263254;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 24px;
      border-radius: 999px;
      font-weight: 800;
      border: 0;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
      white-space: nowrap;
    }

    .btn:hover { transform: translateY(-2px); }

    .btn-orange {
      background: linear-gradient(135deg, var(--orange), var(--orange-2));
      color: #fff;
      box-shadow: 0 12px 26px rgba(255, 107, 22, .28);
    }

    .btn-blue {
      background: var(--blue);
      color: #fff;
      box-shadow: 0 12px 26px rgba(43, 43, 128, .24);
    }

    .btn-outline {
      background: #fff;
      color: var(--blue);
      border: 1px solid #d7dcff;
    }

    .hero {
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, #f4f6ff 0%, #fff8f2 100%);
      padding: 86px 0 74px;
      text-align: center;
    }

    .hero::before,
    .hero::after {
      content: "";
      position: absolute;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      filter: blur(18px);
      opacity: .45;
      pointer-events: none;
    }

    .hero::before {
      background: #e4e9ff;
      left: -160px;
      top: -120px;
    }

    .hero::after {
      background: #fff0df;
      right: -170px;
      bottom: -180px;
    }

    .hero .container { position: relative; z-index: 1; }

    .badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 7px 16px;
      border-radius: 999px;
      background: #e8ebff;
      color: var(--blue);
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 24px;
    }

    h1 {
      margin: 0;
      font-size: clamp(38px, 6vw, 68px);
      line-height: 1.18;
      color: var(--navy);
      font-weight: 900;
      letter-spacing: -.04em;
    }

    h1 span { color: var(--orange); }

    .lead {
      margin: 24px auto 34px;
	color: #66718d;
      font-size: 18px;
      font-weight: 600;
    }

    .hero-actions {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 28px;
    }
    .hero-actions .btn {
		border-radius: 10px;
		padding: 15px 40px;
		min-width: 240px;
	}

    .booth-box {
		margin: 0 auto;
		width: min(520px, 100%);
		display: flex;
		gap: 30px;
		font-weight: bold;
		align-items: center;
		justify-content: center;
		background: #114775;
		color: #fff;
		border: 4px solid #173b70;
		border-radius: 8px;
		box-shadow: 0 12px 22px rgba(17, 71, 117, .18);
		text-align: left;
		overflow: hidden;
		font-size: 120%;
		position: relative;
		transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .booth-box:hover {
		transform: translateY(-2px);
	}
    .booth-box span {
		color: #FF6B16;
	}
	.booth-box a {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		width: 100%;
	}

    section { padding: 88px 0; }

    .section-title {
      text-align: center;
      margin-bottom: 48px;
    }

    .section-title h2 {
      margin: 0;
      font-size: clamp(28px, 4vw, 42px);
      color: var(--navy);
      font-weight: 900;
      letter-spacing: -.03em;
    }

    .section-title .underline {
      width: 64px;
      height: 4px;
      border-radius: 999px;
      background: var(--orange);
      margin: 14px auto 0;
    }

    .solutions {
      background: #fff;
    }

    .solution-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 28px;
    }

    .card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 12px 30px rgba(32, 43, 90, .09);
      padding: 28px;
    }

    .image-placeholder {
      border-radius: 14px;
      background: linear-gradient(135deg, #eef3fb, #e2e8f3);
      color: #98a5bd;
      display: grid;
      place-items: center;
      font-weight: 800;
      margin-bottom: 22px;
    }
.image-placeholder img {
	width: 100%;
}

    .card h3 {
      margin: 0 0 18px;
      font-size: 22px;
      line-height: 1.4;
      color: var(--navy);
      font-weight: 900;
    }

    .issue,
    .solution-text {
      position: relative;
      border-radius: 12px;
      padding: 18px 18px 18px 48px;
      margin: 14px 0;
      font-size: 14px;
      font-weight: 700;
    }

    .issue { background: var(--danger-bg); color: #9d3b3b; }
    .solution-text { 
		padding: 18px;
		background: var(--solution-bg);
		color: #245f42;
		margin: 25px 0 10px;
	}

    .label {
      display: inline-block;
      position: absolute;
      left: 16px;
      top: 18px;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      text-align: center;
      line-height: 20px;
      font-size: 12px;
      font-weight: 900;
    }

    .issue .label { 
		color: #ff3e3e;
		border: 2px solid #ff3e3e;
		font-size: 14px;
	}
    .solution-text .label {
		width: auto;
		border-radius: 999px;
		padding: 0 8px;
		background: #26c975;
		color: #fff;
		position: absolute;
		top: -10px;
	}

    .features {
      list-style: none;
      padding: 10px 0 0;
      margin: 0;
      display: grid;
      color: #4e5d7c;
      font-size: 14px;
      font-weight: 700;
    }
    .features li {
		display: flex;
		align-items: center;
    }

    .features li::before {
		color: #007bff;
		font-size: 20px;
		content: "check_circle";
		font-family: 'Material Symbols Outlined';
		margin-right: 8px;
    }

    .reason {
      background: var(--navy-2);
      color: #fff;
      padding: 96px 0;
    }

    .reason .section-title h2 { color: #fff; }
    .reason .section-title p { color: #aab4d6; margin: 10px 0 0; }

    .reason-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 38px;
    }


    .reason-card {
      display: grid;
      grid-template-columns: 74px 1fr;
      gap: 20px;
      align-items: start;
    }

    .num {
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 12px;
      padding: 15px 0;
      text-align: center;
      color: #c9d1ed;
      font-weight: 900;
      font-size: 22px;
		background: #24283e;
    }

    .reason-card h3 {
      margin: 0 0 12px;
      color: var(--orange-2);
      font-size: 22px;
      font-weight: 900;
    }

    .reason-card p {
      margin: 0;
      color: #d6dcf4;
      font-size: 15px;
    }

    .test-section {
      background: linear-gradient(180deg, #eef3ff 0%, #f6f8ff 100%);
    }

    .test-card {
      position: relative;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 56px;
      align-items: center;
      background: #fff;
      border-radius: 34px;
      padding: clamp(32px, 6vw, 64px);
      box-shadow: var(--shadow);
    }

    .icon-bottle {
		width: 74px;
		height: 74px;
		display: grid;
		place-items: center;
		color: var(--blue);
		background: #eef0ff;
		border-radius: 22px;
		font-size: 58px;
		margin-bottom: 24px;
    }
.icon-bottle .material-symbols-outlined {
	color: #006cff;
	font-size: 50px;
}

    .test-card h2 {
      font-size: clamp(27px, 4vw, 40px);
      line-height: 1.35;
      margin: 0 0 22px;
      color: var(--navy);
      font-weight: 900;
      letter-spacing: -.03em;
    }

    .test-card p {
      color: #64708d;
      font-weight: 600;
      margin-bottom: 28px;
    }

    .test-visual {
      min-height: 260px;
      border-radius: 20px;
      background: #e1e7f0;
      display: grid;
      place-items: center;
      color: #9ba8bc;
      font-weight: 800;
    }
.test-visual img {
	width: 100%;
}

    .free-badge {
      position: absolute;
      right: 54px;
      bottom: 72px;
      width: 82px;
      height: 82px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--orange);
      color: #fff;
      font-weight: 900;
      box-shadow: 0 14px 28px rgba(255,107,22,.28);
      line-height: 1.1;
      text-align: center;
    }

	.test-card {

	}

    .form-section { background: #fff; }

    .form-wrap {
      width: min(860px, 100%);
      margin: 0 auto;
    }

    .footer {
      background: #edf2f8;
      padding: 54px 0 40px;
      color: #526079;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr auto auto;
      gap: 70px;
      align-items: start;
    }

    .footer h4 {
      margin: 0 0 16px;
      color: var(--navy);
    }

    .footer ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 8px;
      font-weight: 700;
      font-size: 14px;
    }

    .copyright {
      text-align: center;
      margin-top: 48px;
      color: #95a0b5;
      font-size: 12px;
    }

    @media (max-width: 860px) {
      .nav a:not(.btn) { display: none; }
      .solution-grid,
      .reason-grid,
      .test-card,
      .footer-grid { grid-template-columns: 1fr; }
      .test-card { gap: 28px; }
      .free-badge { right: 28px; bottom: 28px; }
      .form-grid,
      .checks { grid-template-columns: 1fr; }
      .field.full { grid-column: auto; }
    }

    @media (max-width: 560px) {
		.phone {display: block;}
		.pc {display: none;}
      .container { width: min(100% - 28px, 1120px); }
      .header-inner { height: 66px; }
      .logo small { display: none; }
      .nav .btn { padding: 0 16px; min-height: 40px; font-size: 13px; }
      .hero { padding: 62px 0 52px; }
      .lead { font-size: 15px; }
      .search-box { grid-template-columns: 1fr; }
      .search-box strong { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
      .search-box span { margin: 14px 18px 18px; }
      section { padding: 64px 0; }
      .card { padding: 22px; }
      .reason-card { grid-template-columns: 1fr; }
		.booth-box {display: block;text-align: center}
		.booth-box p {margin: 0;}
		.num {width: 3em;margin: 0 auto;font-size: 15px;padding: 10px;}
		.footer-grid {gap: 30px;}
    }