:root {
  --navy: #0A2647;
  --navy-deep: #071A33;
  --blue: #1461E0;
  --blue-light: #EAF2FF;
  --blue-pale: #F4F8FF;
  --ink: #1B2430;
  --gray: #5B6472;
  --gray-soft: #8A93A3;
  --line: #E3E8F0;
  --white: #FFFFFF;
  --accent: #0FD68A;
  --accent-deep: #08B871;
  --warn: #FF7A45;
  --radius: 14px;
  --shadow: 0 12px 32px rgba(10, 38, 71, 0.08);
  --shadow-sm: 0 4px 14px rgba(10, 38, 71, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.8;
  font-size: 15.5px;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  margin: 0;
  color: var(--navy);
  letter-spacing: 0.01em;
}

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

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Roboto Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 500;
  color: #0050A0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: #0050A0;
  display: inline-block;
}

section {
  padding: 88px 0;
}

@media(max-width:760px) {
  section {
    padding: 56px 0;
  }
}
section.l-all header .contact_info .number{
  font-size: 14px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: #EBF0F5;
  color: #0050A0;
  padding: 96px 0 110px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(700px 400px at 75% 20%, #000 10%, transparent 75%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

@media(max-width:900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.badge-new {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 214, 138, 0.12);
  border: 1px solid rgba(15, 214, 138, 0.4);
  color: var(--accent);
  padding: 7px 16px 7px 8px;
  border-radius: 99px;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 26px;
}

.badge-new .pin {
  background: var(--accent);
  color: var(--navy-deep);
  font-weight: 900;
  padding: 3px 9px;
  border-radius: 99px;
  font-size: 11px;
}

.hero h1 {
  color: #0050A0;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.42;
  letter-spacing: 0.01em;
  position: static;
}

.hero h1 .accent-line {
  color: var(--accent);
}

@media(max-width:640px) {
  .hero h1 {
    font-size: 30px;
  }
}

.hero p.lead {
  color: #0050A0;
  font-size: 15.5px;
  margin-top: 22px;
  max-width: 520px;
  line-height: 1.9;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  border: none;
  transition: transform .15s ease, box-shadow .15s ease;
  width: auto;
  height: auto;
}

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

.btn-primary {
  background: #FF3C19;
  color: #fff;
  box-shadow: 0 10px 24px rgba(15, 214, 138, 0.28);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-navy:hover {
  box-shadow: 0 10px 24px rgba(10, 38, 71, 0.25);
}

.hero-panel {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 26px;
  backdrop-filter: blur(6px);
}

.chat-mock {
  background: #0D1B2F;
  border-radius: 14px;
  padding: 20px;
  font-size: 13px;
}

.chat-mock .row {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.chat-mock .avatar {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  flex-shrink: 0;
}

.chat-mock .avatar.user {
  background: #2B3B52;
}

.chat-mock .avatar.ai {
  background: linear-gradient(135deg, var(--accent), #0a8a5c);
}

.chat-mock .bubble {
  background: #16273F;
  border-radius: 10px;
  padding: 10px 13px;
  color: #CBD6E8;
  line-height: 1.7;
}

.chat-mock .bubble.user-bubble {
  background: #1B2E48;
}

.chat-mock .sponsor {
  margin-top: 6px;
  border: 1px dashed rgba(15, 214, 138, 0.5);
  border-radius: 10px;
  padding: 12px 13px;
  background: rgba(15, 214, 138, 0.06);
}

.chat-mock .sponsor .tag {
  font-size: 10px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  border: 1px solid rgba(15, 214, 138, 0.5);
  border-radius: 5px;
  padding: 1px 6px;
  display: inline-block;
  margin-bottom: 6px;
}

.chat-mock .sponsor .title {
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}

.chat-mock .sponsor .desc {
  color: #9FB0C8;
  font-size: 12px;
  margin-top: 3px;
}

.stat-strip {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-strip div {
  text-align: center;
}

.stat-strip .num {
  font-family: "Roboto Mono";
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

.stat-strip .lbl {
  font-size: 10.5px;
  color: #8DA0BE;
  margin-top: 3px;
}

/* ---------- FOR-WHOM CARDS ---------- */
.section-head {
  max-width: 660px;
  margin-bottom: 44px;
}

.section-head h2 {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.5;
  margin-top: 14px;
  color: #0050A0;
}

.section-head p {
  color: #5A5F64;
  margin-top: 14px;
  font-size: 14.5px;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media(max-width:860px) {
  .who-grid {
    grid-template-columns: 1fr;
  }
}

.who-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.who-card .num {
  font-family: "Roboto Mono";
  font-size: 12px;
  color: #0050A0;
  font-weight: 700;
  background: #EBF0F5;
  display: inline-block;
  padding: 3px 9px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.who-card h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  color: #0050A0;
}

.who-card p {
  color: var(--gray);
  font-size: 13.5px;
  margin-top: 10px;
}

.who-card .goal {
  margin-top: 16px;
  font-size: 12.5px;
  color: #0050A0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.who-card .goal::before {
  content: "→";
}

.value-banner {
  margin-top: 56px;
  border-radius: 18px;
  background: #0050A0;
  color: #fff;
  padding: 40px 44px;
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.value-banner .icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(15, 214, 138, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-banner p {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
  margin: 0;
  color: #fff;
}

.value-banner p span {
  color: var(--accent);
}

/* ---------- ABOUT / TIMELINE ---------- */
.bg-soft {
  background: #EBF0F5;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media(max-width:860px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.about-grid h3{
  color: #0050A0;
}

.about-copy p {
  color: var(--gray);
  font-size: 14.5px;
  margin-top: 14px;
}

.fact-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.fact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13.5px;
  color: var(--ink);
}

.fact-list li .ico {
  color: #0050A0;
  font-weight: 900;
  flex-shrink: 0;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 64px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--line);
}

.timeline li {
  position: relative;
  padding-left: 104px;
  margin-bottom: 26px;
}

.timeline li:last-child {
  margin-bottom: 0;
}

.timeline .date {
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  text-align: right;
  font-family: "Roboto Mono";
  font-size: 11.5px;
  color: var(--blue);
  font-weight: 700;
  line-height: 1.4;
}

.timeline .dot {
  position: absolute;
  left: 60px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--blue-light);
}

.timeline .dot.now {
  background: var(--accent);
  border-color: #d5faec;
}

.timeline .txt {
  font-size: 13.5px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 15px;
}

.timeline .txt b {
  color: var(--navy);
}

/* ---------- COMPARISON ---------- */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 8px;
  font-size: 13.5px;
}

.compare-table th,
.compare-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.compare-table thead th {
  background: #0050A0;
  color: #fff;
  font-family: "Zen Kaku Gothic New";
  font-weight: 700;
  font-size: 13px;
}

.compare-table thead th:first-child {
  border-radius: 10px 0 0 0;
}

.compare-table thead th:last-child {
  border-radius: 0 10px 0 0;
}

.compare-table tbody tr:nth-child(odd) {
  background: #EBF0F5;
}

.compare-table td:first-child,
.compare-table th:first-child {
  font-weight: 700;
  color: var(--navy);
  width: 160px;
}
.compare-table th:first-child{
  color: #fff;
}

.compare-table td.highlight {
  color: #0050A0;
  font-weight: 700;
}

.table-scroll {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

/* ---------- FORMAT CARDS ---------- */
.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 8px;
}

@media(max-width:860px) {
  .format-grid {
    grid-template-columns: 1fr;
  }
}

.format-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: #fff;
}

.format-card .tag-row {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.pill {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  background: #EBF0F5;
  color: #0050A0;
}

.pill.blue {
  background: var(--blue-light);
  color: var(--blue);
}

.pill.green {
  background: #DFF9EE;
  color: var(--accent-deep);
}

.format-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0050A0;
}

.format-card p {
  color: #5A5F64;
  font-size: 13.5px;
  margin-top: 8px;
}

/* ---------- SUPPORT ---------- */
.support-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media(max-width:860px) {
  .support-wrap {
    grid-template-columns: 1fr;
  }
}

.support-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: #fff;
  display: flex;
  gap: 16px;
}

.support-card .n {
  font-family: "Roboto Mono";
  font-weight: 700;
  font-size: 20px;
  color: #EBF0F5;
  flex-shrink: 0;
  width: 34px;
}

.support-card h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: #0050A0;
}

.support-card p {
  color: var(--gray);
  font-size: 13.5px;
  margin-top: 8px;
}

/* ---------- PRICING ---------- */
.price-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.price-head {
  background: #0050A0;
  color: #fff;
  padding: 26px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.price-head h3 {
  color: #fff;
  font-size: 17px;
}

.price-head span {
  font-size: 12.5px;
  color: #EBF0F5;
}

.price-body {
  padding: 0;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

@media(max-width:640px) {
  .price-row {
    grid-template-columns: 1fr;
  }
}

.price-row>div {
  padding: 22px 32px;
}

.price-row>div:first-child {
  border-right: 1px solid var(--line);
  background: var(--blue-pale);
  font-weight: 700;
  color: #0050A0;
  font-size: 14px;
}

@media(max-width:640px) {
  .price-row>div:first-child {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
}

.price-row>div:last-child {
  font-size: 14px;
  color: var(--gray);
}

.price-row .num {
  font-family: "Roboto Mono";
  color: #FF3C19;
  font-weight: 700;
  font-size: 15px;
}

.price-note {
  padding: 18px 32px;
  font-size: 12.5px;
  color: var(--gray);
  background: #FAFCFF;
}

/* ---------- FLOW ---------- */
.flow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.flow-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 26px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.flow-item:last-child {
  border-bottom: none;
}

.flow-item .step-badge {
  font-family: "Roboto Mono";
  font-weight: 700;
  color: #0050A0;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.flow-item .step-badge .circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #EBF0F5;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
}

.flow-item.option .step-badge .circle {
  background: #FFF1E8;
  color: #FF3C19;
}

.flow-item h3 {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 8px;
}

.flow-item p {
  color: var(--gray);
  font-size: 13.5px;
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: #0050A0;
  font-size: 14.5px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary .q-mark {
  font-family: "Roboto Mono";
  color: #0050A0;
  margin-right: 10px;
  font-weight: 900;
}

.faq-item summary .plus {
  color: #0050A0;
  font-size: 20px;
  font-weight: 400;
  transition: transform .2s ease;
}

.faq-item[open] summary .plus {
  transform: rotate(45deg);
}

.faq-item .a {
  padding: 0 4px 22px 30px;
  color: var(--gray);
  font-size: 13.5px;
}

/* ---------- CONTACT ---------- */
.contact-section {
  background: var(--navy-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 400px at 15% 10%, rgba(20, 97, 224, 0.35), transparent 60%);
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}

@media(max-width:900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-left h2 {
  color: #fff;
  font-size: 26px;
}

.contact-left p {
  color: #B9C8E2;
  font-size: 13.5px;
  margin-top: 16px;
}

.tel-big {
  margin-top: 28px;
  font-family: "Roboto Mono";
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.tel-big span {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 12px;
  color: #8DA0BE;
  font-weight: 400;
  margin-bottom: 6px;
}

.note-small {
  margin-top: 20px;
  font-size: 11.5px;
  color: #7488A6;
  line-height: 1.8;
}

.form-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  color: var(--ink);
}

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

@media(max-width:520px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-grid .full {
  grid-column: 1/-1;
}

.field label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 13.5px;
  font-family: inherit;
  color: var(--ink);
  background: #FAFBFD;
}

.field textarea {
  resize: vertical;
  min-height: 90px;
}

.form-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 18px;
}

.form-card .agree {
  font-size: 11.5px;
  color: var(--gray-soft);
  margin-top: 12px;
  text-align: center;
}

.form-card .agree a {
  color: var(--blue);
  text-decoration: underline;
}

/* ---------- FOOTER NAV ---------- */
footer.site {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 56px 0 26px;
}

.foot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

@media(max-width:820px) {
  .foot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.foot-grid h4 {
  font-size: 12.5px;
  color: var(--navy);
  margin-bottom: 14px;
}

.foot-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.foot-grid a {
  font-size: 12.5px;
  color: var(--gray);
}

.foot-grid a:hover {
  color: var(--blue);
}

.foot-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11.5px;
  color: var(--gray-soft);
}

.scroll-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 200;
}

.scroll-cta a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--navy-deep);
  padding: 13px 20px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 12px 28px rgba(15, 214, 138, 0.35);
}

@media(max-width:520px) {
  .scroll-cta {
    display: none;
  }
}

.l-all{
  padding: 0!important;
}

.service_contact{
  .section_title,
  .service_contact_message.service_content,
  .isms{
    display: none;
  }
}