@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&display=swap');
:root {
	--navy: #0d2244;
	--blue: #1467b8;
	--orange: #f59e0b;
	--yellow: #fbbf24;
	--green: #34d399;
	--text: #1a2035;
	--muted: #64748b;
	--line: #e2e8f0;
	--bg: #f8fafc;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
	color: var(--text);
	background: #fff;
	line-height: 1.7;
	max-width: 100%;
	overflow-x: hidden;
}

html,
body {
	max-width: 100%;
	overflow-x: hidden;
}

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

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

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
	background: var(--navy);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
}

.header-top {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-top-inner {
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 24px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
}

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

.logo {
	display: flex;
	align-items: baseline;
	gap: 8px;
	white-space: nowrap;
}

.logo > span {
	color: #fff;
	font-size: 24px;
	font-weight: 900;
	letter-spacing: -0.04em;
}

.logo > span span {
	color: var(--orange);
}

.logo small {
	color: rgba(255, 255, 255, 0.6);
	font-size: 12px;
}

.desktop-nav,
.header-actions {
	display: flex;
	align-items: center;
	gap: 4px;
}

.desktop-nav a {
	color: rgba(255, 255, 255, 0.82);
	font-size: 14px;
	padding: 8px 12px;
	border-radius: 6px;
	transition: 0.2s;
	white-space: nowrap;
}

.desktop-nav a:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  transition: 0.2s;
  cursor: pointer;
}

.btn-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  padding: 10px 14px;
}

.btn-outline:hover,
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-primary {
  color: #fff;
  background: var(--orange);
  padding: 11px 18px;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.12);
  border: none;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* .btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
} */

.btn-large {
  min-width: 190px;
  padding: 16px 22px;
}

/* Mobile Menu */
.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: #fff;
  transition: 0.2s;
}

.mobile-menu-button.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  padding: 12px 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--navy);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-sub-button,
.mobile-primary-button {
  text-align: center;
  border-radius: 6px;
  margin-top: 10px;
  border-bottom: 0 !important;
}

.mobile-sub-button {
  border: 1px solid rgba(255, 255, 255, 0.42) !important;
}

.mobile-primary-button {
  background: var(--orange);
  color: #fff !important;
  font-weight: 700;
}

/* Hero */
.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-decoration-right {
  top: 0;
  right: 0;
  width: 380px;
  height: 380px;
  background: var(--orange);
  opacity: 0.05;
  transform: translate(30%, -30%);
}

.hero-decoration-left {
  bottom: 0;
  left: 0;
  width: 260px;
  height: 260px;
  background: #fff;
  opacity: 0.05;
  transform: translate(-30%, 30%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
  padding-top: 126px;
  padding-bottom: 96px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  color: var(--yellow);
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.3);
  font-size: 13px;
  font-weight: 800;
}

.hero-copy h1 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.hero-copy h1 span {
  color: var(--yellow);
}

.hero-lead {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.hero-lead strong {
  color: #fff;
}

.hero-copy .hero-catch {
    margin: 26px 0 10px;
    color: rgba(255,255,255,.82);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .04em;
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 12px;
}

.hero-benefits li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
}

.hero-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  border: 2px solid var(--green);
  font-size: 12px;
  font-weight: 900;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

/* Hero Image */
.hero-image img{
  width:560px;
  max-width:none;
  height:auto;
	filter: 
    drop-shadow(0 0 24px rgba(255, 255, 255, 0.18))
    drop-shadow(0 24px 40px rgba(0, 0, 0, 0.25));
}


/* Stats */
.stats-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.stats-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.7);
}

.stats-inner div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stats-inner strong {
  color: var(--yellow);
  font-size: 18px;
  font-weight: 900;
}

.stats-inner span {
  font-size: 13px;
}

/* Problems */
.problems-section {
  padding: 90px 0;
  background: var(--bg);
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-badge {
  display: inline-block;
  color: #ef4444;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 800;
}

.section-head h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  line-height: 1.45;
  font-weight: 900;
}

.section-head h2 span {
  color: var(--blue);
}

.section-head p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 500;
  /* color: var(--muted); */
}

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

.problem-card {
  min-height: 220px;
  padding: 26px;
  border-radius: 14px;
  transition: 0.2s;
}

.problem-card:hover {
  transform: translateY(-4px);
}

.problem-card.red { background: #fef2f2; border: 1px solid rgba(239, 68, 68, 0.15); }
.problem-card.amber { background: #fffbeb; border: 1px solid rgba(245, 158, 11, 0.18); }
.problem-card.purple { background: #f5f3ff; border: 1px solid rgba(139, 92, 246, 0.18); }
.problem-card.navy { background: #f0f4fa; border: 1px solid rgba(13, 34, 68, 0.15); }

.problem-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 900;
}

.problem-card.red .problem-icon { color: #ef4444; background: rgba(239, 68, 68, 0.10); }
.problem-card.amber .problem-icon { color: #f59e0b; background: rgba(245, 158, 11, 0.12); }
.problem-card.purple .problem-icon { color: #8b5cf6; background: rgba(139, 92, 246, 0.12); }
.problem-card.navy .problem-icon { color: var(--navy); background: rgba(13, 34, 68, 0.10); }

.problem-card h3 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 900;
}

.problem-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
}

.solve-arrow {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 48px auto 0;
  width: 100%;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.solve-arrow span {
  width: 1px;
  height: 34px;
  background: linear-gradient(#e2e8f0, var(--blue));
}

.solve-arrow span:last-child {
  background: linear-gradient(var(--blue), #e2e8f0);
}

.solve-section {
  padding: 90px 0;
  background: #fff;
}

.section-badge.blue {
  background: #eff6ff;
  color: #1467b8;
  border-color: #bfdbfe;
}

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

.solution-card {
  position: relative;
  padding: 32px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 16px 40px rgba(13, 34, 68, 0.08);
}

.solution-num {
  color: #dbeafe;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
}

.solution-card h3 {
  margin: 0 0 12px;
  color: #0d2244;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 900;
}

.solution-lead {
  margin: 0 0 18px;
  color: #1467b8;
  font-size: 16px;
  font-weight: 700;
}

.solution-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.solution-card li {
  position: relative;
  padding-left: 26px;
  color: #475569;
  font-size: 16px;
  font-weight: 800;
}

.solution-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1467b8;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.solution-detail{
  display: inline-flex;
  margin-top: 18px;
  color: #f59e0b;
  font-weight: 900;
  background:none;
  border:none;
  cursor:pointer;
}

.solution-detail:hover{
    text-decoration:underline;
}

/* 機能紹介modal */
.feature-modal{
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 2000;
}

.feature-modal.active{
  opacity: 1;
  visibility: visible;
}

.feature-modal-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.6);
}

.feature-modal-content{
  position:relative;
  width:min(1000px,90vw);
  max-height:90vh;
  overflow:auto;
  background:#fff;
  border-radius:18px;
  padding:30px;
  transform:translateY(20px) scale(.96);
  opacity:0;
  transition:all .28s ease;
  z-index:1;
}

.feature-modal.active .feature-modal-content{
  transform:translateY(0) scale(1);
  opacity:1;
}

.feature-modal-content h2{
  margin-bottom:20px;
  color:#0d2244;
}

.feature-modal-content img{
  width:100%;
  height:auto;
  border-radius:10px;
  border:1px solid #e5e7eb;
}

.feature-close{
  position:absolute;
  top:15px;
  right:18px;
  border:none;
  background:none;
  font-size:28px;
  cursor:pointer;
}

.testimonials-section {
  padding: 90px 0;
  background:#f8fafc;
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border-radius: 18px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
}

.case-tags {
  display: flex;
  gap: 8px;
}

.case-tags span {
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 14px;
}

.case-tags span:first-child {
  background: #eff6ff;
  color: #1467b8;
  font-weight: 800;
}

.case-tags span:last-child {
  background: #f1f5f9;
  color: #64748b;
}

.quote-mark {
  color: #bfdbfe;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}

.testimonial-card h3 {
  margin: 0;
  color: #0d2244;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 900;
}

.testimonial-card p {
  flex: 1;
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.8;
    font-weight: 800;
}

.case-person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
  color: #475569;
  font-size: 14px;
  font-weight: 700;
}

.avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #0d2244;
  font-weight: 900;
}

.section-button-wrap {
  margin-top: 40px;
  text-align: center;
}

.section-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 6px;
  border: 1px solid #1467b8;
  color: #1467b8;
  font-size: 14px;
  font-weight: 800;
  transition: 0.2s;
}

.section-outline-button:hover {
  background: #eff6ff;
}

/* story */
.story-section {
  padding: 90px 0;
  background: #fff;
}

.story-box {
  max-width: 960px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 20px;
  /* background: #f8fafc; */
  /* border: 1px solid #e2e8f0; */
  text-align: center;
}

.story-box h2 {
  margin: 22px 0;
  color: #0d2244;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.5;
}

.story-box h2 span {
  color: #1467b8;
}

.story-box p {
  color: #334155;
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
}

.highlight-blue{
  color:#1467b8;
  font-weight:900;
}

.highlight-orange{
  color:#f59e0b;
  font-weight:900;
}


/* partner */
.partner-section {
  padding: 90px 0;
  background: #f8fafc;
}

.partner-cooperation {
  max-width: 800px;
  margin: 48px auto 44px;
  padding: 28px 34px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 18px;
  text-align: center;
}

.partner-cooperation h3 {
  margin: 0 0 18px;
  color: #0d2244;
  font-size: 20px;
  font-weight: 900;
}

.partner-cooperation ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: fit-content;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.partner-cooperation li {
  position: relative;
  padding-left: 24px;
  color: #475569;
  font-size: 16px;
  font-weight: 700;
}

.partner-cooperation li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1467b8;
  font-weight: 900;
}

.partner-box {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 36px;
  align-items: stretch;
}

.partner-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.partner-benefits article {
  min-height: 180px;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
}

.partner-benefits .icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.partner-benefits strong {
  display: block;
  margin-bottom: 10px;
  color: #0d2244;
  font-size: 18px;
  font-weight: 900;
}

.partner-benefits p {
  margin: 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 800;
}

.partner-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 2px solid #1467b8;
  box-shadow: 0 12px 34px rgba(20, 103, 184, 0.12);
}

.partner-label {
  display: inline-block;
  margin-bottom: 22px;
  padding: 7px 14px;
  background: #1467b8;
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.partner-card h3 {
  margin: 0 0 20px;
  color: #0d2244;
  font-size: 18px;
  font-weight: 900;
}

.partner-card ul {
  margin: 0 0 30px;
  padding-left: 20px;
  color: #475569;
}

.partner-card li {
  margin-bottom: 15px;
  font-weight: 700;
}

/* .partner-card .btn {
  width: 100%;
} */

.partner-card .plan-button{
    width:320px;
    margin:28px auto 0;
}

.cta-section{
  position:relative;
  overflow:hidden;
  padding:90px 0;
  background:linear-gradient(
      135deg,
      #0d2244 0%,
      #1467b8 100%
  );
}

.cta-circle{
  position:absolute;
  border-radius:50%;
  opacity:.08;
}

.cta-circle-right{
  width:280px;
  height:280px;
  right:-100px;
  top:-100px;
  background:#f59e0b;
}

.cta-circle-left{
  width:220px;
  height:220px;
  left:-90px;
  bottom:-90px;
  background:#ffffff;
}

.cta-content{
  position:relative;
  text-align:center;
}

.cta-content h2{
  margin-bottom:20px;
  color:#ffffff;
  font-size:clamp(28px,3vw,40px);
  font-weight:900;
  line-height:1.4;
}

.cta-text{
  color:rgba(255,255,255,.75);
  line-height:1.9;
  margin-bottom:40px;
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
}

.cta-buttons{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

.btn-outline-white{
  color:#ffffff;
  border:1px solid rgba(255,255,255,.4);
}

.btn-outline-white:hover{
  background:rgba(255,255,255,.1);
}

.cta-note{
  margin-top:24px;
  color:rgba(255,255,255,.5);
  font-size:12px;
}

.price-section {
	padding: 90px 0;
	background: #f8fafc;
}

.price-container {
	max-width: 960px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 360px);
  justify-content: center;
  gap: 32px;
  align-items: start;
}

.price-card {
	overflow: hidden;
	border-radius: 16px;
	background: #fff;
	border: 1px solid #e2e8f0;
}

.price-card.featured {
	border: 2px solid #f59e0b;
	box-shadow: 0 12px 34px rgba(20, 103, 184, 0.16);
}

.popular-label {
	padding: 9px 12px;
	background: #f59e0b;
	color: #fff;
	text-align: center;
	/* font-size: 12px; */
	font-weight: 900;
}

.price-body {
	padding: 28px;
}

.plan-name {
	margin: 0 0 6px;
	color: #334155;
	font-size: 14px;	
	font-weight: 900;
}

.plan-price {
	display: flex;
	align-items: flex-end;
	gap: 4px;
	margin-bottom: 2px;
	color: #334155;
}

.plan-price strong {
	color: #0d2244;
	font-size: 34px;
	line-height: 1;
	font-weight: 900;
}

.plan-price.consultation strong {
	font-size: 30px;
}

.plan-users {
	margin: 0;
	color: #334155;
	font-size: 12px;
}

.plan-desc {
	margin: 8px 0 22px;
	color: #334155;
	font-size: 16px;
}

.plan-button {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 24px;
	padding: 13px 16px;
	border-radius: 6px;
	background: #f0f4fa;
	border: 1px solid #e2e8f0;
	color: #0d2244;
	font-size: 14px;
	font-weight: 900;
}

.plan-button.primary {
	background: #f59e0b;
	border-color: #f59e0b;
	color: #fff;
}

.plan-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.price-card ul {
	list-style: none;
	display: grid;
	gap: 11px;
	padding: 0;
	margin: 0;
}

.price-card li {
	position: relative;
	padding-left: 22px;
	color: #475569;
	font-size: 16px;
  font-weight: 500;
}

.price-card.featured li::before,
.price-card.partners li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 900;
}

.price-note {
	margin: 30px 0 0;
	text-align: center;
	color: #94a3b8;
	font-size: 13px;
}

.option-label {
	padding: 9px 12px;
	background: #94a3b8;
	color: #fff;
	text-align: center;
	/* font-size: 12px; */
	font-weight: 900;
}

.price-option-list{
    margin-top:24px;
}

.price-option-list li{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 0;
    border-bottom:1px solid #edf2f7;
}

.price-option-list li:last-child{
    border-bottom:none;
}

.price-option-list span{
    color:#475569;
}

.price-option-list strong{
    color:#0d2244;
}

.price-card.partners {
	border: 2px solid #1467b8;
	box-shadow: 0 12px 34px rgba(20, 103, 184, 0.16);
}

.partners-label {
	padding: 9px 12px;
	background: #1467b8;
	color: #fff;
	text-align: center;
	/* font-size: 12px; */
	font-weight: 900;
}

.btn-partner {
	background: #1467b8;
	border-color: #1467b8;
	color: #fff;
}

.faq-section{
  padding:90px 0;
  background:#fff;
}

.faq-container{
  max-width:900px;
}

.faq-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.faq-item{
  border:1px solid #e2e8f0;
  border-radius:12px;
  overflow:hidden;
}

.faq-question{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px 24px;
  background:#fff;
  cursor:pointer;
  border:none;
  font-size:15px;
  font-weight:700;
  color:#0d2244;
  transition:.2s;
}

.faq-question:hover{
  background:#eff6ff;
}

.faq-icon{
  color:#1467b8;
  transition:.25s;
}

.faq-answer{
  display:none;
  padding:22px 24px;
  background:#f8fafc;
  color:#475569;
  line-height:1.9;
  font-size:14px;
}

.faq-item.active .faq-answer{
  display:block;
}

.faq-item.active .faq-icon{
  transform:rotate(180deg);
}


.footer{
  background:#0a1929;
  color:#94a3b8;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:60px;
  padding:70px 0;
}

.footer-logo{
  font-size:34px;
  font-weight:900;
  color:#fff;
  margin-bottom:18px;
}

.footer-logo span{
  color:#f59e0b;
}

.footer-text{
  line-height:1.9;
  margin-bottom:24px;
}

.footer-time{
  font-size:14px;
}

.footer-links{
  display:flex;
  flex-direction:column;
  gap:18px;
  margin-top:10px;
}

.footer-links a{
  color:#94a3b8;
  transition:.2s;
}

.footer-links a:hover{
  color:#fff;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
}

.footer-bottom-inner{
  padding:20px 0;
  text-align:center;
  font-size:12px;
}

/* modal */
.trial-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.trial-modal.active {
  opacity: 1;
  visibility: visible;
}

.trial-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.trial-modal-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(20px) scale(.96);
  transition: all .3s cubic-bezier(.22, 1, .36, 1);
}

.trial-modal.active .trial-modal-content {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.trial-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  background: #0d2244;
}

.trial-modal-header h2 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.trial-modal-header p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.trial-modal-close {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.trial-form {
  padding: 28px;
  display: grid;
  gap: 18px;
}

.trial-form label {
  display: grid;
  gap: 8px;
  color: #0d2244;
  font-size: 14px;
  font-weight: 900;
}

.trial-form label span {
  color: #ef4444;
  font-size: 12px;
}

.trial-form input,
.trial-form textarea,
.trial-form select {
  width: 100%;
  border: 1px solid #dbe3ef;
  background: #f8fafc;
  border-radius: 10px;
  padding: 13px 14px;
  color: #0d2244;
  font-size: 15px;
  outline: none;
}

.trial-form input:focus,
.trial-form textarea:focus,
.trial-form select:focus {
  border-color: #1467b8;
  background: #fff;
}

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

.name-row {
  display: flex;
  gap: 12px;
}

.trial-form button[type="submit"] {
  margin-top: 8px;
  border: 0;
  border-radius: 10px;
  padding: 16px;
  background: #f59e0b;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.trial-form-note {
  margin: 0;
  text-align: center;
  color: #94a3b8;
  font-size: 12px;
}

body.modal-open {
  overflow: hidden;
}

/* material-modal */
.material-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.material-modal.active {
  opacity: 1;
  visibility: visible;
}

.material-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.material-modal-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(20px) scale(.96);
  transition: all .3s cubic-bezier(.22, 1, .36, 1);
}

.material-modal.active .material-modal-content {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.material-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  background: #0d2244;
}

.material-modal-header h2 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.material-modal-header p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.material-modal-close {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.material-form {
  padding: 28px;
  display: grid;
  gap: 18px;
}

.material-form label {
  display: grid;
  gap: 8px;
  color: #0d2244;
  font-size: 14px;
  font-weight: 900;
}

.material-form label span {
  color: #ef4444;
  font-size: 12px;
}

.material-form input,
.material-form textarea,
.material-form select {
  width: 100%;
  border: 1px solid #dbe3ef;
  background: #f8fafc;
  border-radius: 10px;
  padding: 13px 14px;
  color: #0d2244;
  font-size: 15px;
  outline: none;
}

.material-form input:focus,
.material-form textarea:focus,
.material-form select:focus {
  border-color: #1467b8;
  background: #fff;
}

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

.name-row {
  display: flex;
  gap: 12px;
}

.material-form button[type="button"] {
  margin-top: 8px;
  border: 0;
  border-radius: 10px;
  padding: 16px;
  background: #f59e0b;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.material-form-note {
  margin: 0;
  text-align: center;
  color: #94a3b8;
  font-size: 12px;
}

/* 特商法 */
.sctaSection {
	margin: 0;
	padding-top: 7rem;
	position: relative;
	background-image: url(../images/logo-mark.png);
	background-repeat: no-repeat;
	background-size: 20.3125rem auto;
	background-position: top 5.75rem right 5.875rem;
	font-size: 0.9125rem;
	padding-bottom: 5rem;
}

.sctaTitle {
	margin: auto;
	font-size: 1.125rem;
	margin-bottom: 0.775rem;
}

.sctaInner {
	max-width: 47.5rem;
	padding: 0 1.5625rem;
	box-sizing: content-box;
	margin: auto;
}
.sctaInner th{
	font-weight:normal;
	min-width: 10.5rem;
	text-align:left;
}
.sctaInner th,td{
	padding: 1.15rem;
}



/* Responsive */
/* タブレット・ヘッダー切替 */
@media (max-width:1180px){
    .price-grid{
      grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    background: #0d2244;
    padding: 20px;
  }

  .mobile-nav.active {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dashboard-mock {
    display: none;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-benefits {
    max-width: 370px;
    margin: 50px auto;
  }

  .hero-benefits li {
    justify-content: flex-start;
    text-align: left;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* スマホ・タブレット */
@media (max-width: 900px) {
  .problem-grid,
  .solution-grid,
  .testimonial-grid,
  .partner-box,
  .partner-benefits {
    grid-template-columns: 1fr;
  }

  .partner-card {
    align-self: stretch;
  }
}

/* スマホ */
@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .logo small,
  .header-login {
    display: none;
  }

  .logo > span {
    font-size: 22px;
  }

  .hero-inner {
    padding-top: 84px;
    padding-bottom: 54px;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }

  .hero-lead {
    font-size: 14px;
  }

  .stats-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    text-align: center;
  }

  .stats-inner div {
    justify-content: center;
    flex-direction: column;
    gap: 2px;
  }

  .problems-section {
    padding: 64px 0;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .problem-card,
  .solution-card {
    min-height: auto;
    padding: 24px;
  }

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

  .cta-section {
    padding: 70px 0;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    gap: 40px;
  }

  .trial-modal {
    padding: 12px;
  }

  .trial-modal-header,
  .trial-form {
    padding: 22px;
  }

  .name-row {
    flex-direction: column;
  }
}
