@charset "UTF-8";
:root {
  --primary:#2563eb;
  --secondary:#22c55e;
  --accent:#f59e0b;
  --primary-light:#eff6ff;
  --text:#1f2937;
  --muted:#6b7280;
  --bg:#f4f7fb;
  --card:#f9fafb;
  --important-red:#d12c2c;
}
*{box-sizing:border-box;}
body{margin:0;font-family:'Noto Sans JP','メイリオ',Meiryo,'Hiragino Kaku Gothic ProN','Hiragino Sans',Arial,sans-serif;color:var(--text);line-height:1.7;background:var(--bg);}
header{
  background: linear-gradient(135deg,#2563eb,#22c55e);
  color:#fff;
  padding:20px;
  text-align:center;
}
header h1{font-size:40px;margin-bottom:10px;}
header p{font-size:18px;opacity:.95;}
nav{margin:30px auto;font-size:14px;}
nav a{color:#fff;text-decoration:none;margin:0 8px;opacity:.9;}
nav a:hover{opacity:1;text-decoration:underline;}
section{padding:40px 20px;max-width:1100px;margin:auto;}
h2{text-align:center;font-size:32px;margin-bottom:20px;}
/*section>p{text-align:center;color:var(--muted);max-width:700px;margin:0 auto 60px;}*/
section>p{text-align:center;color:var(--muted);margin:0 auto 60px;}
.features {display:grid;grid-template-columns:repeat(2,1fr);gap:30px;}
.feature{background:var(--card);padding:28px;border-radius:20px;box-shadow:0 10px 30px rgba(0,0,0,.05);transition:.3s;}
.fv-shot {
  background: linear-gradient(135deg,#93c5fd,#dbeafe);
  border-radius: 10px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fv-shot picture {
  line-height: 1;
}
.fv-shot img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}
.fv-cta img {
    width: 1080px;
    max-width: 100%;
    height:auto;
    margin: -20px auto 20px;
}




.screenshot {
  background: linear-gradient(135deg,#93c5fd,#dbeafe);
  border-radius: 24px;
  padding: 8px;
  display: flex;
  justify-content: center;
}
.screenshot img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}


.feature:hover{transform:translateY(-6px);box-shadow:0 20px 40px rgba(0,0,0,.08);}
.feature h3{margin-top:0;font-size:20px;color:var(--primary);}
#price{background:linear-gradient(135deg,#eff6ff,#ecfeff);border: 2px solid #a8e3d8;border-radius:32px;}
#price strong{font-size:38px;color:var(--primary);}
ol{max-width:600px;margin:40px auto;font-size:16px;}
ol li{margin-bottom:16px;}
.cta{margin-bottom:80px;background:linear-gradient(180deg,#f8fafc,#ffffff);}
form{max-width:520px;margin:40px auto 0;background:#fff;padding:40px;border-radius:24px;box-shadow:0 20px 40px rgba(0,0,0,.08);}
form label{font-weight: 700;font-size: medium;}
input,textarea{width:100%;padding:14px 16px;margin: 10px 0 20px;border-radius:10px;border:1px solid #d1d5db;font-size:15px;}
textarea{line-height: 1.4;}
input:focus,textarea:focus{outline:none;border-color:var(--primary);}
button{background:linear-gradient(135deg,#2563eb,#22c55e);color:#fff;border:none;padding:14px;border-radius:999px;width:100%;font-size:16px;font-weight:600;cursor:pointer;transition:.2s;}
button:hover{background:#1d4ed8;}
footer{background:#0f172a;color:#cbd5f5;text-align:center;padding:30px;font-size:13px;}
.error{color:#dc2626;text-align:center;margin-bottom:20px;}
.success{color:#16a34a;text-align:center;margin-bottom:20px;}
html{scroll-behavior:smooth;}
.text-center {
  text-align: center;
}
.form-item-flex {
  display:flex;
  gap:5px;
  align-items:center;
}
.label-required {
  display: inline-block;
  margin: 0 5px;
  padding: 2px 4px;
  border-radius: 4px;
  background-color: var(--important-red);
  color: #FFF;
  font-weight: 400;
  font-size: .8rem;
  line-height: 1;
}
.label-any {
  display: inline-block;
  margin: 0 5px;
  padding: 2px 4px;
  border-radius: 4px;
  background-color: #999;
  color: #FFF;
  font-weight: 400;
  font-size: .8rem;
  line-height: 1;
}
.error-msg {
  color: var(--important-red);
  font-size: 0.8rem;
}
.error-field {
  background-color: #fff1f6;
}

.flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
}

.flow li {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.flow li span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.flow-note {
  font-size: 12px;
  text-align: left;
}

.icon-creditcard img {
  width: auto;
  height: 1.8em;
  margin: 0 5px;
  vertical-align: middle;
}

.select-wrap {
  position: relative;
  width: 100%;
}

select {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  padding: 14px 40px 14px 16px;
  margin: 10px 0 20px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  color: var(--text);
  font-size: 15px;
  background-color: #fff;
}

select:focus {
  outline: none;
  border-color: var(--primary);
}

.select-wrap::after {
    content: "";
    position: absolute;
    right: 16px;
    top: calc(50% - 8px);
    width: 8px;
    height: 8px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
}

header > div {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.header-nav {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 30px;
}

.pc-only { display: inline; }
.sp-only { display: none; }

.font-sylfaen {
  font-family: Sylfaen;
}

.fv-wrap {
  max-width: 1100px;
  margin: auto;
  display: block;
}

.thanks-box {
  max-width: 560px;
  margin: 40px auto 0;
  padding: 48px 32px;
  background: linear-gradient(180deg, #ecfeff, #ffffff);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
  text-align: center;
}

.thanks-box h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 16px;
}

.thanks-box p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
}

.thanks-box .note {
  margin-top: 24px;
  font-size: 14px;
  color: var(--muted);
  background: #f8fafc;
  padding: 14px 16px;
  border-radius: 12px;
}


.back-top {
  margin-top: 30px;
  text-align: center;
}

.btn-top {
  display: inline-block;
  padding: 12px 24px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

.btn-top:hover {
  opacity: 0.8;
}


.p_content{
  margin-bottom: 1rem;
}
.p_sub_title {
  margin-bottom: .6em;
  padding: 15px;
  background-color: #0f172a;
  font-weight: 700;
  color: #FFF;
}
.ol_content {
  margin: 0 0 1rem;
  padding-left: 1.6rem;
}

.ooter-menu-list {
  display: flex;
  justify-content: center;
  padding: 0;
  list-style: none;
}
.ooter-menu-list li ,
.ooter-menu-list a {
  padding: 10px;
  color: #FFF;
  text-decoration: none;
}

.btn-cta {
  display: inline-block;
  background: #0f172a;
  padding: 15px 30px;
  border-radius: 100vh;
  font-size: 20px;
}
.btn-cta:hover {
  text-decoration: none;
  opacity: .9;
}

/* モーダル */
.modal {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  background-color: rgba(0,0,0,0.9);
  text-align: center;
  padding-top: 60px; /* 上部に余白を作る */
  box-sizing: border-box;
}
.modal-content {
  max-width: 90%; 
  max-height: calc(100vh - 120px); /* 上下に余白を確保 */
  margin: auto;
  display: block;
  border-radius: 8px;
}
.modal-close {
  position: fixed;
  top: 20px; /* 上部余白に合わせる */
  right: 20px;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1010; /* 画像より前面 */
}
/* ----------------------------------------------------- */

.about-section {
    padding: 80px 20px;
    background-color: #ffffff; /* 白背景で清潔感を出す */
    overflow: hidden; /* アニメーションのため */
    font-family: "Helvetica Neue", Arial, "Hiragino Sans", sans-serif;
    margin-bottom: 80px;
  }
  .about-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }

  /* イメージ画像部分 */
  .about-image {
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
  }
  .about-image.active {
    opacity: 1;
    transform: translateY(0);
  }
  .responsive-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

  /* 説明テキスト部分 */
  .about-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out 0.5s; /* 画像より少し遅れて表示 */
  }
  .about-content.active {
    opacity: 1;
    transform: translateY(0);
  }
  .about-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 35px;
    font-weight: bold;
    position: relative;
    display: inline-block;
  }
  .about-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 60px;
    height: 4px;
    background-color: #007bff; /* ブランドカラーの青 */
    border-radius: 2px;
  }
  .about-content p {
    font-size: 1rem;
    color: #555;
    line-height: 2;
    margin: 0 auto;
  }

  /* レスポンシブ対応 */
  @media (max-width: 768px) {
    .about-title { font-size: 1.6rem; }
    .about-content p { font-size: 1rem; }
  }

/* ----------------------------------------------------- */
.step-section {
    padding: 100px 20px;
    background-color: #fff;
    font-family: "Helvetica Neue", Arial, "Hiragino Sans", sans-serif;
  }
  .step-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  .step-main-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
  }
  .step-sub-title {
    color: #666;
    margin-bottom: 60px;
  }

  .step-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  /* ステップ間の縦ライン */
  .step-flow::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, #a8e3d8, #007aff);
    transform: translateX(-50%);
    z-index: 0;
  }

  .step-box {
    background: white;
    border: 2px solid #eee;
    border-radius: 15px;
    padding: 30px;
    width: 100%;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    /* アニメーションの初期状態 */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
  }

  /* ふわっと出るアニメーション用のクラス */
  .step-box.active {
    opacity: 1;
    transform: translateY(0);
  }

  .step-number {
    background: #007aff;
    color: white;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .step-content {
    text-align: left;
  }
  .step-content h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: #333;
  }
  .step-tag {
    display: inline-block;
    color: #007aff;
    font-weight: bold;
    font-size: 0.85rem;
    margin-bottom: 10px;
    border-bottom: 2px solid #a8e3d8;
  }
  .step-desc {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
  }

/* ----------------------------------------------------- */

.supervisor {
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
  padding: 50px 20px;
  margin: 50px 0;
}

.supervisor-inner {
  max-width: 860px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 14px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.supervisor-badges {
  margin-bottom: 20px;
}
.badge {
  display: inline-block;
  background: #eef3ff;
  color: #1a4fd8;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 5px 8px;
}
.badge-strong {
  background: linear-gradient(135deg, #ffedd5, #ffd700);
  color: #7a4b00;
}
.supervisor-photo-wrap {
  margin-bottom: 20px;
}
.supervisor-photo {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #ffffff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.supervisor-name {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}
.supervisor-text {
  color: #333;
  text-align: left;
}
.highlight {
  color: var(--important-red);
  font-weight: 700;
}





/* ----------------------------------------------------- */
  .merit-section {
    margin-top: 30px;
    text-align: center;
    background-color: #fff8ca;
    background-image: repeating-linear-gradient(45deg, #fffad6, #fffad6 4px, transparent 4px, transparent 6px);
  }
  .merit-inner {
    max-width: 900px;
    margin: auto;
  }
  .merit-tit {
    margin-bottom: 10px;
    font-size: 2rem;
  }
  .merit-lead {
    display: inline;
    margin-top: 0;
    border-bottom: 4px solid #a8e3d8;
    color: #007aff;
    font-weight: 700;
    font-size: 1.6rem;
  }
  .merit-list {
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
    text-align: center;
  }
  .merit-list li {
    display: block;
    margin: 2px;
    padding: 4px;
  }
  .merit-img-wrap {
    max-width: 375px;
    margin: 40px auto 0;
  }
  .merit-img {
    width: 100%;
  }

/* ----------------------------------------------------- */

.voice-section {
  margin-top: 40px;
  padding: 80px 20px;
  background-color: #f9f9f9;
  overflow: hidden;
}
.voice-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px; /* 重なりを意識して間隔を少し調整 */
}
.voice-item {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 90%;
}
/* 2人目だけ左右反転させるクラス */
.row-reverse {
  flex-direction: row-reverse;
}
.voice-visual {
  width: 240px;
  height: 180px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  z-index: 2;
}
.voice-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.speech-bubble {
  position: relative;
  background: #fff;
  border: 2px solid #a8e3d8;
  border-radius: 15px;
  padding: 25px;
  flex-grow: 1;
  z-index: 1;
}
/* 通常（左にしっぽ） */
.bubble-left::before, .bubble-left::after {
  content: "";
  position: absolute;
  left: -12px;
  top: 30px;
  border-style: solid;
  border-width: 10px 12px 10px 0;
}
.bubble-left::before { border-color: transparent #a8e3d8 transparent transparent; }
.bubble-left::after { border-color: transparent #fff transparent transparent; left: -9px; }
/* 反転用（右にしっぽ） */
.bubble-right::before, .bubble-right::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 30px;
  border-style: solid;
  border-width: 10px 0 10px 12px;
}
.bubble-right::before { border-color: transparent transparent transparent #a8e3d8; }
.bubble-right::after { border-color: transparent transparent transparent #fff; right: -9px; }
.speech-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
  margin: 0 0 10px 0;
}
.speech-text b {
  color: #333;
  border-bottom: 2px solid #a8e3d8;
}
.user-info {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
  text-align: right;
}
/* 階段状の配置（重なりを演出） */
.item-left { align-self: flex-start; }
.item-center { align-self: center; margin-top: -20px; margin-bottom: -20px; }
.item-right { align-self: flex-end; }



/* --------------------------*/

.comparison {
  padding: 60px 20px;
  background: #f7f9fb;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 10px;
}

.section-lead {
  text-align: center;
  margin-bottom: 30px;
  color: #555;
}

.table-wrap {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  background: #fff;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid #ddd;
  padding: 14px;
  text-align: center;
}

.comparison-table thead th {
  background: #eef3f8;
  font-weight: bold;
}

.comparison-table .highlight {
  background: #e6f4ff;
  color: #0073e6;
}

.good {
  font-weight: bold;
  color: #0073e6;
}

.bad {
  color: #999;
}



/* サンプル画面 */
.sample {
  padding: 0 20px;
  text-align: center;
}

.sample-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  justify-content: center;
  padding: 10px 0;
}

.sample-slider::-webkit-scrollbar {
  height: 6px;
}

.sample-slider::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.sample-img {
  width: 280px;
  max-width: 80%;
  border-radius: 8px;
  cursor: zoom-in;
  transition: transform 0.2s ease;
}

.sample-img:hover {
  transform: scale(1.03);
}

.sample-note {
  font-size: 13px;
  color: #666;
  margin-top: 10px;
}

  .btn-demo {
    display: inline-block;
    width: 100%;
    max-width: 400px;
    margin-bottom: 60px;
    border: none;
    padding: 14px;
    background: #FF913D;
    border-radius: 100vh;
    box-sizing: border-box;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: .2s;
  }
  .btn-demo:hover {
    opacity: 0.7;
  }


/* 画像拡大モーダル */
.image-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.image-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.sample-item {
  width: 280px;
  aspect-ratio: 16 / 9; /* 比率固定 */
  overflow: hidden;
  border-radius: 8px;
}

.sample-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* はみ出したら切る */
  cursor: zoom-in;
}


/* メイン価格 */
.price-main {
  font-size: 20px;
  margin-bottom: 16px;
  color: #333;
}
.price-main span {
  font-size: 40px;
  font-weight: bold;
  color: #1a73e8; /* メインカラーに合わせて調整 */
  margin: 0 4px;
}
.price-main small {
  font-size: 30px;
}
/* キャンペーン */
  .campaign {
    display: block;
    margin: 40px auto 20px;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
  }
  .campaign-inner {
    display: inline-block;
    max-width: 900px;
    padding: 15px 40px;
    position: relative;
    background: var(--important-red);
    color: #FFF;
  }
  .campaign-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -3rem;
    left: -4rem;
    background-color: #FF913D;
    border-radius: 100%;
    width: 6rem;
    height: 6rem;
    transform: rotate(-15deg);
  }
  .campaign-tx02 {
    font-size: 1.6em;
  }

/* ポイント */
.price-points {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 320px;
}

.price-points li {
  font-size: 15px;
  text-align: left;
  position: relative;
  padding-left: 22px;
}

.price-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1a73e8;
  font-weight: bold;
}

/* 補足説明 */
.price-note {
  font-size: 14px;
  color: #555;
  margin: 20px 0 30px;
  line-height: 1.6;
}

/* CTAボタン */
#price .btn-prim {
    border: 1px solid #fff;
    border-radius: 5px;
    margin: 0 auto;
    width: 30%;
    text-align: center;
    padding: 1% 0;
    background-color: #1a73e8;
}
.btn-prim .btn-primary {
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    color: #fff;
}
#price .btn-prim:hover {
  opacity: 0.7;
}
.mind {
  margin-top: 50px;
  text-align: center;
  background-color: #fff;
}

.section-subtitle {
  font-size: 20px;
  margin-bottom: 20px;
}

.mind-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 420px;
  text-align: left;
}

.mind-list li {
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.mind-list strong {
  font-weight: 600;
}

.final-copy {
  text-align: center;
  font-size: 15px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

.law {
  margin: 60px auto 0;
}
.law p,
.law table,
.law ul,
.law ol{
  font-size: 14px;
}
.law ul,
.law ol{
  max-width: unset;
}
.law ul li,
.law ol li{
  line-height: 1rem;
}
.law-tbl{
  border-collapse: collapse;
  width: 100%;
}
.law-tbl th,
.law-tbl td{
  padding: 10px;
  border: solid 1px #ccc;
  text-align:center;
  box-sizing:border-box;
}
.law-tbl td{
  text-align:left;
}
.law-tblseparator th ,
.law-tblseparator td {
  border-top-width: 4px;
}

/* ---------------------------------------------------- */

.pain-point-section {
    padding: 80px 20px;
    background-color: #f8f9fa; /* 少し落ち着いた背景色 */
    overflow: hidden;
  }
  .pain-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }
  .pain-title {
    font-size: 1.8rem;
    color: #444;
    margin-bottom: 40px;
    font-weight: bold;
  }
  .pain-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
  }
  .pain-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-left: 5px solid #ccc; /* 悩みなので控えめな色 */
  }
  .pain-icon {
    font-size: 1.5rem;
  }
  .pain-item p {
    margin: 0;
    font-size: 1.1rem;
    color: #555;
    text-align: left;
    font-weight: 500;
  }

  /* 解決セクションへのつなぎ */
  .solution-bridge {
    margin-top: 40px;
  }
  .bridge-arrow {
    font-size: 2rem;
    color: #007aff;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
  }
  .solution-text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #333;
    font-weight: bold;
  }
  .brand-name {
    color: #007aff;
    font-size: 1.8rem;
  }
  .highlight {
    background: linear-gradient(transparent 70%, #fff176 70%); /* 黄色のマーカー線 */
  }

  /* アニメーション用設定 */
  .reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
  }
  .reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
  }
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
  }

  .active {
    opacity: 1 !important;
    transform: translate(0) !important;
  }
    /* -------------------------------------------- */

.demo-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

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

.demo-modal-content {
  position: relative;
  width: 90%;
  max-width: 1100px;
  height: 80vh;
  margin: 5vh auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

/* 上部CVバー */
.demo-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 54px;
  background: linear-gradient(90deg, #1a4fd8, #0d2fa6);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  z-index: 10;
  font-size: 14px;
}

.demo-cta {
  background: #ffcc00;
  color: #000;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
}

/* iframe */
.demo-iframe {
  width: 100%;
  height: 100%;
  border: none;
  padding-top: 54px;
}

/* 起動ボタン */
.demo-open-btn {
  padding: 16px 32px;
  background: #ff7a00;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
      width: 50%;
    margin: 0 auto 80px;
}

/* 画面右上 固定の閉じるボタン */
.demo-close-fixed {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 26px;
  line-height: 20px;
  text-align: center;
  border: none;
  cursor: pointer;
  z-index: 10001;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* ===== デモ終了ポップ ===== */
.demo-end-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.popup-content {
  position: relative;
  width: 90%;
  max-width: 420px;
  background: #fff;
  margin: 20vh auto;
  padding: 30px 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.popup-content h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.popup-cta {
  display: inline-block;
  margin-top: 16px;
  background: #ff7a00;
  color: #fff;
  padding: 14px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

.popup-note {
  font-size: 12px;
  color: #666;
  margin-top: 10px;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

/* スマホ */
@media screen and (max-width: 600px) {
  .demo-modal-content {
    width: 95%;
    height: 85vh;
  }

  .demo-close-fixed {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 22px;
    line-height: 40px;
  }
}


    /* -------------------------------------------- */
    #floating-cta-btn {
        position: fixed;
        right: 20px;
        bottom: 20px;
        display: inline-block;
        /* background: #0f172a; */
        background: linear-gradient(135deg, #2563eb, #22c55e);
        color: #fff;
        padding: 15px 30px;
        border-radius: 100vh;
        border: 1px solid 1px;
        box-shadow: inset 0 0 0 1px #e6e6e6, 0 .14em .28em rgba(0, 0, 0, .15);
        font-size: 20px;
        text-decoration: none;
        z-index: 1000;
        /* 初期状態は非表示 */
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    /* 表示状態 */
    #floating-cta-btn.is-show {
        opacity: 1;
        pointer-events: auto;
    }


    /* ========================================================= */


  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
  }

  @media (max-width: 480px) {
    .pain-title { font-size: 1.5rem; }
    .solution-text { font-size: 1.2rem; }
  }



















@media(max-width:600px){
  header h1{
    font-size:30px;
  }
  h2{
    font-size:26px;
  }
}
@media (max-width: 768px) {

  form {
    padding: 20px;
  }

  header h1{
    margin: 0;
    line-height: 1;
  }

  nav {
    margin: 20px auto;
  }

  nav a {
    display: block;
    width: 50%;
    margin: 6px 0;
    padding: 14px 0;
    font-size: 16px;
  }


  .features {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature {
    padding: 24px;
  }

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

  header > div > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    /* flex-direction: column; */
    /* gap: 12px; */
    margin-top: 10px;
  }

   header > div {
    display: flex !important;
    flex-direction: column;
    gap: 20px;
  }

  .screenshot {
    padding: 12px;
  }

  .header-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .fs {
    margin: 0 0 1rem;
    font-size:14px;
  }

  .btn-cta {
    width: 100%;
  }
  .ooter-menu-list {
    display: block;
  }

  .modal-content {
    margin-top: 40px;
    max-height: calc(100vh - 140px);
  }

  .modal-close {
    font-size: 40px;
    top: 20px;
    right: 20px;
  }

.sp-only { display: inline; }
.pc-only { display: none; }

  .merit-list {
    text-align: left;
  }

  .voice-item {
    flex-direction: column !important; /* 反転も解除 */
    width: 100%;
    margin: 0 !important;
  }
  .voice-visual { width: 100%; height: 200px; }
  .speech-bubble { margin-top: -10px; width: 100%; box-sizing: border-box; }
  .speech-bubble::before, .speech-bubble::after { display: none; }

  .sample-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    overflow: visible;
  }

  .sample-item {
    width: 100%;
  }
  
  #price .btn-prim {
      width: 70%;
  }
  .campaign-inner {
    padding: 30px 40px 20px;
  }
  .campaign-badges {
    top: -1rem;
    left: 50%;
    border-radius: 50%;
    width: auto;
    height: auto;
    transform: translate(-50%) rotate(0);
    padding: 10px;
    font-size: 1rem;
  }

  .step-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
  }
  .step-flow::before {
    left: 20px;
  }

  .supervisor-inner {
  padding: 30px 20px;
  }

  .supervisor-photo {
    width: 100px;
    height: 100px;
  }

  .supervisor-name {
    font-size: 20px;
  }

  .merit-tit {
    margin-bottom: 10px;
    font-size: 1.3rem;
  }
  .merit-lead {
    font-size: 1.4rem;
  }

/* ----------------------------------------- */

  .pain-title {
    font-size: 1.5rem;
  }
  .solution-text {
    font-size: 1.2rem;
  }

/* ----------------------------------------- */


 .features .screenshot {
    height: 350px;
    overflow: hidden;
  }

  .features .screenshot img {
    width: 100%;
    height: auto;
    display: block;
  }

/* ----------------------------------------- */
    #floating-cta-btn {
        font-size: 16px;
        padding: 12px 24px;
    }




}