
:root {
  /* キーカラー */
  --color-primary: #3341A5;
  --color-primary-light: #CCCFE9;
  /* サブカラー */
  --color-secondary: #FFA858;
  --color-secondary-light: #FFDEC0;

  --color-bg-light: #f8f9fa;
  --color-text: #333333;
  --color-text-dark: #111111;
  --color-border: #e2e8f0;

  /* Figmaデザイン由来の追加トークン */
  --color-header-bg: #26307a;
  --color-heading-navy: #092846;
  --color-accent-amber: #d97706;
  --color-primary-8: rgba(51, 65, 165, 0.08);
  --color-primary-14: rgba(51, 65, 165, 0.14);
  --color-secondary-10: rgba(255, 168, 88, 0.1);
  --color-secondary-20: rgba(255, 222, 192, 0.2);
}
html {
  font-size: 100%;
}
@media (max-width: 760px) {
  html {
    font-size: 3vw;
  }
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  line-height: 1.8;
  color: var(--color-text);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  color: var(--color-text-dark);
  margin-top: 0;
  font-weight: 700;
}
h1 { font-size: 2.5rem; line-height: 1.4; }
h2 { font-size: 2.2rem; text-align: center; margin-bottom: 10px; }
h3 { font-size: 1.5rem; color: var(--color-primary); }
p { margin-top: 0; margin-bottom: 1rem; }
a { color: var(--color-primary); text-decoration: none; transition: all 0.3s; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
section:nth-child(even) {
  background-color: var(--color-bg-light);
}

/* セクションタイトル */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title span {
  display: block;
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* CTAボタン(オレンジ / ヘッダー・フォーム用) */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #ff8c21 100%);
  color: var(--color-text-dark);
  padding: 18px 48px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(255, 168, 88, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(255, 168, 88, 0.6);
  color: var(--color-text-dark);
}

/* CTAボタン(ブルー / ヒーロー用・Figma準拠) */
.cta-button-blue {
display: flex;
width: 440px;
max-width: 100%;
padding: 18px 139.6px 20px 139px;
justify-content: center;
align-items: center;
gap: 9.283px;
border-radius: 50px;
background: linear-gradient(158.17deg, #26307A 0%, #7B89F6 100%);
box-shadow: 0 8px 20px 0 rgba(255, 168, 88, 0.40);
color: white;
margin: 0 auto;





}
.cta-button-blue:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(38, 48, 122, 0.4);
  color: #f8fafc;
}

/* Header */
header {
  padding: 18px 0;
  background-color: var(--color-header-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo img {
  width: 36px;
  height: 40px;
  object-fit: contain;
  display: block;
}
.logo i { color: #ffffff; }
.header-cta {
  font-size: 0.95rem;
  padding: 10px 24px;
  box-shadow: 0 4px 10px rgba(255, 168, 88, 0.3);
}

/* Hero Area (FV) - 背景にmv_image.jpgを敷き、テキストとロボットを中央配置 */
.hero {
  background:
    url('../images/mv_image.jpg') center center / cover no-repeat;
  text-align: center;
  padding: 90px 0 60px 0;
  overflow: hidden;
  
}
.hero-inner {
  position: relative;
  /* Maintain a 1930:878 aspect ratio */
  aspect-ratio: 1930 / 878;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

@media (max-width: 760px) {
  .hero {
    padding: 20px 0 40px;
  }
  .hero-inner {
    flex-direction: column;
    align-items: center;
     gap:10px;
     position: relative;
  }
  .hero-mascot {
    order: -1;
    max-width: 70%;
    margin: 0 auto 30px auto;
  }
  .hero-content {
    width: 100%;
    padding: 0 12px;
  }
  .cta-button-blue{
    width: 100%;
    max-width: 100%;
    padding: 18px 0;
  }
}



.hero-content {
  position: relative;
  z-index: 2;
}
.hero h1 {
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  font-size: 2.3rem;
  text-align: left;
}
.hero p {
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 40px auto;
  color: #333333;
}
.hero-mascot {
  margin: 40px auto 0 auto;
  width: 345px;
  height: auto;
  filter: drop-shadow(0 15px 25px rgba(51,65,165,0.25));
  animation: float 3.5s ease-in-out infinite;
}
.hero--popup{
  position: absolute;
  top: -30px;
  right: -30px;
  width: 240px;
  height: auto;
  animation: pop 5s infinite;

}
@keyframes pop {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}





@media (max-width: 760px) {
.hero h1 br{
  display:none;
}

}




/* Problem Area */
.problem-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.20rem;
}
.problem-item {
  background-color: #ffffff;
  border-left: 5px solid var(--color-secondary);
  padding: 30px;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.problem-item .icon-box {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: var(--color-secondary-10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.problem-item i {
  color: var(--color-secondary);
  font-size: 2.4rem;
}
.problem-item .icon-box::after {
  content: '';
  position: absolute;
  top: -10px;
  right: -20px;
  width:46px;
  height: 50px;
  background:url(../images/img_trouble.png) no-repeat center center / contain;
  /* ゆっくりと点滅するアニメーション */
  /* animation: slow-blink 4s ease-in-out infinite; */
}

@keyframes slow-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}
/* Solution Area - Figma: クリーム→ラベンダーの淡いグラデーションにロボットマスコットとダッシュボード画像 */
.solution {
  text-align: center;
  background: linear-gradient(180deg, #fff2c8 2%, #e2e4f2 100%);
  color: var(--color-text);
}
.solution .section-intro {
  color: var(--color-accent-amber);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0;
}
.solution .logo-mark {
  font-size: 4rem;
  color: var(--color-secondary);
  margin-bottom: 15px;
  animation: float 3s ease-in-out infinite;
}
.solution h3 {
  font-size: 3rem;
  color: var(--color-heading-navy);
  margin-bottom: 24px;
}
.solution-logo-icon {
  width: 48px;
  height: 53px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 12px;
  position: relative;
  top:-8px;
}
.solution p {
  margin: 0 auto;
  color: #231815;
  font-size: 1.3rem;
  font-weight: bold;
}
.solution-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  /* gap: clamp(10px, 4vw, 0);
  margin: 40px 0; */
  position: relative;
  text-align: center;
}
.solution-visual .solution-robot {
  /* width: clamp(70px, 20vw, 150px);
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.15)); */
  width:300px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -100px;
}
.solution-visual .solution-robot.left {
  transform: scaleX(-1) translateY(-50%);
  left: -100px;
  right: auto;
}
.solution-visual .solution-dashboard {
  width: 100%;
  max-width: 750px;
  border: 2px solid #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 20px 3px rgba(0,0,0,0.25);
  overflow: hidden;
}
.solution-visual .solution-dashboard img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 760px) {
  .solution-visual { flex-wrap: wrap; }
  .solution-visual .solution-robot { display: none; }
}

/* Card Grids (Features / Character / Learning) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}
.feature-card {
  text-align: center;
  background: #ffffff;
  padding: 40px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid var(--color-border);
  transition: transform 0.3s;
}
.feature-card:hover {
  transform: translateY(-5px);
}
.feature-card .icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(51, 65, 165, 0.08);
  color: var(--color-primary);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
}
.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  line-height: 1.4;
}
.feature-card p {
  font-size: 0.95rem;
  color: #555555;
  text-align: left;
}

/* サービス特徴エリア(4つの特徴) - Figma: 横並びの帯カードを縦に積む構成 */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-row {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 15px rgba(0,0,0,0.05);
  border-radius: 12px;
  padding: 36px 40px;
}
.feature-row .media {
  flex: 0 0 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-row .media img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
}
.feature-row .media .icon-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feature-row .content {
  flex: 1;
}
.feature-row .content h3 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.3rem;
  margin-bottom: 12px;

}
.feature-row .content h3 span{
  width: 50px;
}
.feature-row .content h3 span img {
  width: 100%;
  height: auto;
}
.feature-row .content p {
  font-size: 0.95rem;
  color: #555555;
  margin: 0;
}
@media (max-width: 760px) {
  .feature-row { flex-direction: column; gap: 20px; padding: 28px; }
  .feature-row .media { flex: none; width: 100%; }
}

/* AIキャラクター機能詳細 - Figma: 円形ポートレート + 白パネルの2カラム構成 */

#character{
  background: linear-gradient(180deg, rgba(255, 242, 200, 0.7) 0%, rgba(255, 250, 233, 0.7) 100%);
}
.character-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 54px;
}
.character-portrait-wrap {
  position: relative;
  flex-shrink: 0;
  width: 313px;
  height: 313px;
}
.character-portrait-wrap::before {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(51,65,165,0.12) 0%, rgba(51,65,165,0) 70%);
background-color: var(--color-blue-428);
}
.character-portrait-wrap img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: white;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.05);

}
.character-panel {
  flex: 1;
  max-width: 665px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0,0,0,0.05);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.character-feature-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.character-feature-row .icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--color-primary-8);
  color: var(--color-primary);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.character-feature-row h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.character-feature-row p {
  font-size: 0.9rem;
  color: #555555;
  margin: 0;
}
@media (max-width: 900px) {
  .character-detail { flex-direction: column; }
}

/* Merits & SEO Area */
.merits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.merit-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
}
.merit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-primary);
}
.merit-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* How to Use Area */
.how-to-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.step {
  flex: 1;
  text-align: center;
  position: relative;
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.step:not(:last-child)::after {
  content: '';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--color-primary-light);
  z-index: 2;
}
.step .step-num {
  display: inline-block;
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.step h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

/* Output Sample Area */
.sample-intro-box {
  background: var(--color-bg-light);
  padding: 30px;
  border-radius: 12px;
  border: 1px dashed var(--color-primary-light);
  margin-bottom: 40px;
}
.sample-arrow {
  text-align: center;
  margin: 30px 0;
  color: var(--color-primary);
  font-size: 2rem;
}
.character-box {
  background: #ffffff;
  border: 2px solid var(--color-border);
  border-radius: 12px;
  padding: 32px;
}
.character-box.type-a {
  border-color: rgba(255, 168, 88, 0.5);
  background: var(--color-secondary-10);
}
.character-box.type-b {
  border-color: rgba(51, 65, 165, 0.5);
  background: var(--color-primary-8);
}

.character-profile {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-border);
}
.character-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  transform: scaleX(-1);
}
.character-info h4 { margin: 0; font-size: 1.2rem; }
.character-info p { margin: 0; font-size: 0.85rem; color: #666; }

.sample-bubble {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #4a5568;
}
.sample-bubble p { margin-bottom: 0.9rem; }
.sample-bubble p:last-child { margin-bottom: 0; }

/* Compare Table Area */
.compare-table-wrapper {
  overflow-x: auto;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  min-width: 600px;
}
.compare-table th, .compare-table td {
  padding: 18px 12px;
  border-bottom: 1px solid var(--color-border);
}
.compare-table th {
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
}
.compare-table td.highlight {
  background-color: rgba(255, 222, 192, 0.2);
  font-weight: bold;
  color: var(--color-primary);
}
.compare-table i.fa-circle-check { color: #28a745; font-size: 1.3rem; }
.compare-table i.fa-triangle { color: #ffc107; font-size: 1.1rem; }

/* FAQ Area */
.faq-list details {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  transition: all 0.3s;
}
.faq-list details[open] {
  border-color: var(--color-primary-light);
  box-shadow: 0 4px 15px rgba(51, 65, 165, 0.05);
}
.faq-list summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: bold;
  color: var(--color-text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--color-primary);
  font-size: 1.2rem;
}
.faq-list details[open] summary::after {
  content: '';
  color: var(--color-secondary);
}
.faq-list .answer {
  padding: 0 24px 20px 24px;
  color: #555555;
  border-top: 1px solid var(--color-border);
  padding-top: 15px;
}

/* Form Area */
.form-container {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  background-color: #ffffff;
}
.form-container > p {
  text-align: center;
  color: #555555;
  font-size: 0.95rem;
  margin-bottom: 40px;
}

.form-container table {
  width: 100%;
  border-collapse: collapse;
}
.form-container table tr {
  border-bottom: 1px dashed var(--color-border);
}
.form-container table tr:last-child {
  border-bottom: none;
}
.form-container table th,
.form-container table td {
  padding: 28px 0;
  text-align: left;
  vertical-align: top;
  font-weight: normal;
}
.form-container table th {
  width: 240px;
  min-width: 160px;
  color: var(--color-text-dark);
  font-weight: bold;
}
.form-container table th p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.form-container table td p {
  margin: 0;
  width: 100%;
}
.form-container table th > p > span {
  display: inline-block;
  background-color: #ff3b30;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 3px;
  line-height: 1;
}

/* ラジオ・チェックボックス */
.form-container .wpcf7-form-control.wpcf7-radio,
.form-container .wpcf7-form-control.wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.form-container .wpcf7-list-item {
  margin: 0;
}
.form-container .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--color-text);
}
.form-container .wpcf7-list-item input[type="radio"],
.form-container .wpcf7-list-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--color-primary);
}

/* テキスト入力・テキストエリア */
.form-container input[type="text"],
.form-container input[type="email"],
.form-container input[type="tel"],
.form-container input[type="url"],
.form-container input[type="number"],
.form-container textarea {
  width: 100%;
  max-width: 630px;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-text);
  background-color: #ffffff;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-container textarea {
  min-height: 230px;
  resize: vertical;
}
.form-container input:focus,
.form-container textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-8);
}

/* 送信ボタン */
.form-container .wpcf7-submit,
.form-container input[type="submit"] {
  display: flex;
  width: 440px;
  max-width: 100%;
  margin: 40px auto 0;
  padding: 18px 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(158.17deg, #26307A 0%, #7B89F6 100%);
  box-shadow: 0 8px 20px rgba(38, 48, 122, 0.3);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.form-container .wpcf7-submit::after,
.form-container input[type="submit"]::after {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.form-container .wpcf7-submit:hover,
.form-container input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(38, 48, 122, 0.4);
}

@media (max-width: 760px) {
  .form-container table,
  .form-container table tbody,
  .form-container table tr,
  .form-container table th,
  .form-container table td {
    display: block;
    width: 100%;
  }
  .form-container table th {
    padding-bottom: 12px;
  }
  .form-container table td {
    padding-top: 0;
  }
}











/* Footer */
footer {
  background-color: var(--color-text-dark);
  color: rgba(255,255,255,0.7);
  padding: 40px 0;
  text-align: center;
  font-size: 0.9rem;
  border-top: 4px solid var(--color-primary);
}

/* Animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Responsive */
@media (max-width: 960px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.8rem; }
  .how-to-steps { flex-direction: column; gap: 40px; }
  .step { width: 100%; }
  .step:not(:last-child)::after {
    content: '';
    top: auto;
    bottom: -35px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .problem-item .icon-box { width: 90px; height: 90px; }
  .problem-item i { font-size: 2rem; }
  .feature-row { flex-direction: column; }
  .feature-row .media { width: 100%; }
  .character-detail { flex-direction: column; gap: 30px; }
  .character-panel { max-width: 100%; }
  .solution-visual .solution-robot { display: none; }
}

span.wpcf7-not-valid-tip {
  display: block;
  color: red;
}