:root {
  --ink: #07111f;
  --navy: #09192b;
  --navy-2: #0d2740;
  --blue: #2b8fd8;
  --cyan: #5ce1e6;
  --lime: #e6ff46;
  --coral: #ff7a59;
  --paper: #f5f8fb;
  --muted: #6e7b88;
  --line: rgba(255, 255, 255, 0.16);
  --dark-line: rgba(7, 17, 31, 0.12);
  --shadow: 0 28px 80px rgba(7, 17, 31, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Inter", "Noto Sans JP", system-ui, sans-serif;
  letter-spacing: 0;
}

body::selection {
  background: var(--lime);
  color: var(--ink);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 22px 46px;
  color: #fff;
  transition: background 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  padding-block: 14px;
  background: rgba(7, 17, 31, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.brand img {
  width: 205px;
  filter: brightness(0) invert(1);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.8vw, 30px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.main-nav a {
  opacity: 0.78;
}

.main-nav a:hover {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--lime);
  color: var(--ink);
}

.btn-line {
  color: #fff;
  background: #06c755;
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-ghost {
  color: #fff;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline-dark {
  color: var(--ink);
  border-color: var(--dark-line);
  background: #fff;
}

.sub-hero-line {
  display: block;
}

.hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
}

.hero-home {
  background:
    linear-gradient(90deg, rgba(4, 12, 23, 0.92) 0%, rgba(7, 17, 31, 0.72) 42%, rgba(7, 17, 31, 0.16) 100%),
    url("https://agena358.jp/wp-content/themes/agena-company/assets/images/agena/kv.png") center / cover no-repeat;
}

.hero-shade {
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 96px;
}

.eyebrow,
.section-kicker,
.card-label {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.04em;
  max-width: 1060px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(66px, 9.4vw, 154px);
  line-height: 0.9;
  font-weight: 800;
}

.hero-title-line {
  display: block;
  width: max-content;
  max-width: 100%;
  padding: 0.03em 0.16em 0.08em;
  background: var(--lime);
  line-height: 0.94;
}

.hero-title-ai {
  font-size: 1.25em;
}

.hero-lead {
  max-width: 620px;
  margin: 30px 0 0;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.84);
}

.answer-first {
  margin-top: 22px;
  padding: 22px 24px;
  border-left: 6px solid var(--lime);
  color: #25313d;
  background: var(--paper);
  font-weight: 700;
}

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

.scroll-cue {
  position: absolute;
  right: 42px;
  bottom: 34px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
  writing-mode: vertical-rl;
  letter-spacing: 0.28em;
}

.section-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.intro-band,
.service-section,
.flow-section,
.company-section,
.message-section,
.product-section,
.news-section,
.reviews-section,
.blog-section,
.agent-demo-section {
  padding: clamp(80px, 10vw, 140px) 0;
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1fr;
  gap: clamp(36px, 7vw, 86px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.18;
}

h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.45;
}

p {
  line-height: 1.9;
}

.lead-copy p {
  margin: 0 0 18px;
  color: #2f3c49;
  font-size: 17px;
}

.dark-section {
  padding: clamp(84px, 11vw, 150px) 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(9, 25, 43, 0.98), rgba(13, 39, 64, 0.96)),
    radial-gradient(circle at 80% 10%, rgba(92, 225, 230, 0.16), transparent 36%);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.principle-grid,
.step-grid,
.business-grid,
.benefit-list,
.course-grid,
.style-grid,
.product-grid,
.review-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.principle-grid article,
.step-grid article {
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
}

.principle-grid span,
.step-grid span,
.curriculum-list span,
.flow-list span {
  display: block;
  margin-bottom: 28px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
}

.principle-grid p,
.step-grid p,
.curriculum-list p {
  color: rgba(255, 255, 255, 0.74);
}

.business-grid {
  grid-template-columns: repeat(4, 1fr);
}

.business-grid.aio-services {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.business-card {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 28px;
  border: 1px solid var(--dark-line);
  background: #fff;
  box-shadow: 0 18px 54px rgba(7, 17, 31, 0.08);
}

.aio-services .business-card {
  min-height: 236px;
  border-top: 6px solid var(--lime);
}

.aio-services .business-card h3 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  word-break: keep-all;
  overflow-wrap: normal;
}

.aio-services .business-card p:not(.card-label) {
  max-width: 520px;
  margin-bottom: 26px;
  line-height: 1.75;
}

.aio-services .business-card .detail-link {
  width: max-content;
  min-width: 190px;
  padding-inline: 22px;
}

.business-card p {
  color: var(--muted);
}

.business-card span {
  margin-top: auto;
  color: var(--blue);
  font-weight: 800;
}

.business-card .detail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: auto;
  color: var(--ink);
  background: var(--lime);
  font-weight: 900;
}

.feature-card {
  background: var(--navy);
  color: #fff;
  grid-column: span 2;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.75);
}

.product-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(5, 11, 19, 0.98), rgba(12, 38, 62, 0.94)),
    radial-gradient(circle at 16% 18%, rgba(230, 255, 70, 0.1), transparent 30%);
}

.product-card,
.app-card,
.blog-card,
.review-grid article {
  border: 1px solid var(--line);
}

.product-card {
  min-height: 390px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.055);
  display: flex;
  flex-direction: column;
}

.product-card p:not(.card-label),
.app-card p,
.blog-card p {
  color: rgba(255, 255, 255, 0.72);
}

.product-card-strong {
  background: var(--lime);
  color: var(--ink);
}

.product-card-strong .card-label,
.product-card-strong .text-link {
  color: var(--blue);
}

.product-card-strong p:not(.card-label) {
  color: #25313d;
}

.product-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 900;
  font-size: 22px;
}

.product-card-strong .product-mark,
.app-card-dark .product-mark {
  color: #fff;
  background: var(--navy);
}

.text-link {
  margin-top: auto;
  color: var(--cyan);
  font-weight: 900;
}

.news-section {
  background: #fff;
}

.news-layout {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: clamp(36px, 7vw, 82px);
  align-items: start;
}

.news-layout .section-heading p:not(.section-kicker),
.reviews-section .section-heading p {
  color: var(--muted);
}

.news-list {
  border-top: 1px solid var(--dark-line);
}

.news-list a {
  display: grid;
  grid-template-columns: 120px 92px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--dark-line);
}

.news-list time,
.news-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.news-list span {
  color: var(--blue);
}

.news-list h3 {
  font-size: 20px;
}

.reviews-section {
  background: var(--paper);
}

.review-summary {
  width: max-content;
  max-width: 100%;
  margin: 0 auto 28px;
  padding: 22px 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  background: var(--navy);
}

.review-summary strong {
  font-size: 42px;
  line-height: 1;
}

.review-summary span {
  color: var(--lime);
  font-weight: 900;
}

.review-summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.review-grid article {
  min-height: 310px;
  padding: 30px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.review-grid span {
  color: #f2b705;
  font-weight: 900;
}

.review-grid p {
  color: #344251;
}

.review-grid strong {
  margin-top: auto;
  font-size: 18px;
}

.review-grid small {
  color: var(--muted);
  font-weight: 800;
}

.message-section {
  background: var(--paper);
}

.message-layout {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(36px, 7vw, 82px);
  align-items: center;
}

.message-visual {
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.02), rgba(7, 17, 31, 0.18)),
    url("assets/message-agena.jpg") center 18% / cover no-repeat;
  box-shadow: var(--shadow);
}

.message-copy p:not(.section-kicker) {
  color: #344251;
  font-size: 17px;
}

.message-copy h2 {
  font-size: clamp(30px, 4.1vw, 52px);
}

.visual-intro p:not(.section-kicker) {
  color: #344251;
}

.visual-stack {
  position: relative;
  min-height: 520px;
}

.visual-photo {
  min-height: 440px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.visual-photo-message {
  background-image:
    linear-gradient(180deg, rgba(7, 17, 31, 0.02), rgba(7, 17, 31, 0.2)),
    url("assets/message-agena.jpg");
  background-position: center 18%;
}

.visual-note {
  position: absolute;
  right: -18px;
  bottom: 22px;
  max-width: 320px;
  padding: 24px;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 18px 54px rgba(7, 17, 31, 0.18);
}

.visual-note strong,
.visual-note span {
  display: block;
}

.visual-note strong {
  margin-bottom: 8px;
  font-size: 24px;
}

.dark-lead {
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
}

.media-principles article {
  position: relative;
  overflow: hidden;
}

.media-principles article::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(230, 255, 70, 0.28);
  transform: rotate(18deg);
}

.service-hero {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.96), rgba(7, 17, 31, 0.66)),
    url("https://agena358.jp/wp-content/themes/agena-company/assets/images/agena/kv.png") center / cover no-repeat;
}

.aio-detail-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: #fff;
}

.aio-detail-layout {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.aio-facts {
  position: sticky;
  top: 94px;
  padding: 28px;
  color: #fff;
  background: var(--navy);
}

.aio-facts h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.aio-facts ul {
  margin: 24px 0 0;
  padding-left: 20px;
}

.aio-facts li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.aio-detail-copy h2 {
  margin-top: 48px;
  font-size: clamp(28px, 4vw, 52px);
}

.aio-detail-copy h2:first-child {
  margin-top: 0;
}

.aio-detail-copy p,
.faq-list dd {
  color: #344251;
  font-size: 17px;
}

.aio-table {
  width: 100%;
  margin: 26px 0;
  border-collapse: collapse;
}

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

.aio-table th {
  background: var(--paper);
  font-weight: 900;
}

.aio-checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.aio-checks p {
  margin: 0;
  padding: 20px;
  color: var(--ink);
  background: var(--paper);
  border-left: 5px solid var(--lime);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list dt {
  padding: 18px 20px 0;
  background: var(--paper);
  font-weight: 900;
}

.faq-list dd {
  margin: 0;
  padding: 8px 20px 18px;
  background: var(--paper);
}

.seminar-link-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--paper);
}

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

.seminar-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: stretch;
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--dark-line);
  background: #fff;
  box-shadow: 0 18px 54px rgba(7, 17, 31, 0.08);
}

.seminar-card-main {
  grid-column: span 2;
}

.seminar-card h3 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
}

.seminar-card p:not(.card-label) {
  color: var(--muted);
}

.seminar-card .btn {
  margin-top: 12px;
}

.seminar-visual {
  position: relative;
  overflow: hidden;
  min-height: 222px;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.88), rgba(13, 39, 64, 0.62)),
    url("https://agena358.jp/wp-content/themes/agena-company/assets/images/agena/kv.png") center / cover no-repeat;
}

.seminar-visual::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 118px;
  height: 118px;
  background: var(--lime);
  transform: rotate(14deg);
}

.seminar-visual span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.seminar-visual-training {
  background:
    linear-gradient(135deg, rgba(9, 25, 43, 0.88), rgba(46, 105, 139, 0.5)),
    url("https://agena358.jp/wp-content/themes/agena-company/assets/images/agena/kv.png") center / cover no-repeat;
}

.seminar-visual-agent {
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.9), rgba(92, 225, 230, 0.32)),
    url("https://agena358.jp/wp-content/themes/agena-company/assets/images/agena/kv.png") center / cover no-repeat;
}

.seminar-visual-quick {
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.86), rgba(230, 255, 70, 0.2)),
    url("https://agena358.jp/wp-content/themes/agena-company/assets/images/agena/kv.png") center / cover no-repeat;
}

.app-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.app-card {
  min-height: 390px;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(9, 25, 43, 0.96), rgba(13, 39, 64, 0.9));
}

.app-card h2,
.blog-card h2 {
  font-size: clamp(26px, 3.5vw, 42px);
}

.app-card-dark {
  background: var(--lime);
  color: var(--ink);
}

.app-card-dark p {
  color: #25313d;
}

.app-card .btn {
  width: max-content;
  margin-top: 26px;
}

.tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 0;
  padding: 0;
}

.tag-list li {
  padding: 8px 10px;
  color: #fff;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
}

.app-card-dark .tag-list li {
  color: var(--ink);
  border-color: rgba(7, 17, 31, 0.2);
}

.agent-demo-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(5, 11, 19, 0.98), rgba(13, 39, 64, 0.96));
}

.agent-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 28px;
}

.agent-controls,
.agent-console {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  padding: 30px;
}

.agent-task {
  width: 100%;
  min-height: 58px;
  margin-top: 12px;
  padding: 0 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.agent-task.is-active {
  color: var(--ink);
  background: var(--lime);
}

.agent-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.agent-metrics div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.agent-metrics strong {
  display: block;
  color: var(--lime);
  font-size: 34px;
}

.agent-metrics span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
}

.console-top,
.approval-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.console-top {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.chat-flow {
  display: grid;
  gap: 14px;
  padding: 24px 0;
}

.chat-flow p {
  margin: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.chat-flow strong {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
}

.approval-row button {
  flex: 1;
  min-height: 48px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--lime);
  font: inherit;
  font-weight: 900;
}

.approval-row button + button {
  color: #fff;
  background: transparent;
}

.blog-section {
  background: var(--paper);
}

.blog-card {
  min-height: 320px;
  padding: 28px;
  background: var(--navy);
  color: #fff;
  display: flex;
  flex-direction: column;
}

.blog-card span,
.blog-card time {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.blog-card time {
  margin: 12px 0 26px;
  color: rgba(255, 255, 255, 0.56);
}

.company-list {
  margin: 0;
  border-top: 1px solid var(--dark-line);
}

.company-list div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--dark-line);
}

.company-list dt {
  color: var(--muted);
  font-weight: 800;
}

.company-list dd {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.cta-section {
  padding: clamp(70px, 9vw, 110px) 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.96), rgba(13, 39, 64, 0.88)),
    url("https://agena358.jp/wp-content/themes/agena-company/assets/images/agena/kv.png") center / cover no-repeat;
}

.cta-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
}

.cta-layout p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer {
  color: rgba(255, 255, 255, 0.7);
  background: #050b13;
}

.footer-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0;
  font-size: 13px;
}

.footer-inner a {
  color: var(--lime);
  font-weight: 900;
  margin-right: 14px;
}

.sub-hero {
  padding: 170px 0 96px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.96), rgba(7, 17, 31, 0.62)),
    url("https://agena358.jp/wp-content/themes/agena-company/assets/images/agena/kv.png") center / cover no-repeat;
}

.sub-hero h1,
.contact-info h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.08;
}

.sub-hero p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.problem-section {
  padding: 82px 0;
  background: var(--paper);
}

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

.check-grid p {
  margin: 0;
  padding: 24px 24px 24px 56px;
  position: relative;
  background: #fff;
  border: 1px solid var(--dark-line);
  font-weight: 700;
}

.check-grid p::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 30px;
  width: 12px;
  height: 12px;
  background: var(--lime);
}

.benefit-list article,
.course-grid article,
.style-grid article {
  padding: 30px;
  border: 1px solid var(--dark-line);
  background: #fff;
  min-height: 220px;
}

.benefit-list p,
.course-grid p,
.style-grid p {
  color: var(--muted);
}

.flow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.flow-list li {
  display: grid;
  grid-template-columns: 130px 180px 1fr;
  gap: 20px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--dark-line);
  background: #fff;
}

.flow-list strong {
  font-size: 20px;
}

.flow-list p {
  margin: 0;
  color: var(--muted);
}

.course-time {
  color: var(--blue) !important;
  font-weight: 900;
}

.curriculum-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.curriculum-list article {
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
}

.form-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.96), rgba(13, 39, 64, 0.74)),
    url("https://agena358.jp/wp-content/themes/agena-company/assets/images/agena/kv.png") center / cover fixed no-repeat;
}

.contact-shell {
  width: min(1120px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 34px 0;
}

.form-logo img {
  width: 220px;
  filter: brightness(0) invert(1);
}

.contact-panel {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 30px;
  color: #fff;
}

.contact-info,
.contact-form {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.contact-info p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-info dl {
  display: grid;
  gap: 18px;
  margin: 36px 0 0;
}

.contact-info dt {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.contact-info dd {
  margin: 6px 0 0;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  padding: 14px 15px;
  color: #fff;
  background: rgba(3, 8, 16, 0.55);
  font: inherit;
}

.contact-form select option {
  color: var(--ink);
}

.dashboard-page {
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(245, 248, 251, 0.98), rgba(227, 238, 246, 0.94)),
    url("https://agena358.jp/wp-content/themes/agena-company/assets/images/agena/kv.png") center / cover fixed no-repeat;
}

.dashboard-shell {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 70px) 0;
}

.dashboard-login,
.dashboard-app,
.dashboard-panel {
  border: 1px solid rgba(7, 17, 31, 0.1);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 60px rgba(7, 17, 31, 0.12);
  backdrop-filter: blur(18px);
}

.dashboard-login {
  max-width: 520px;
  margin: 8vh auto 0;
  padding: clamp(28px, 5vw, 54px);
}

.dashboard-app {
  padding: clamp(22px, 4vw, 42px);
}

.dashboard-page .btn-ghost,
.dashboard-page .btn-outline {
  color: var(--ink);
  border-color: rgba(7, 17, 31, 0.16);
  background: #fff;
}

.dashboard-page .dashboard-actions .btn-primary {
  background: var(--ink);
  color: #fff;
}

.dashboard-login h1,
.dashboard-head h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1;
}

.dashboard-login p,
.dashboard-head p,
.dashboard-panel p,
.dashboard-status {
  color: #5d6a78;
}

.dashboard-login label,
.dashboard-panel label {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 900;
}

.dashboard-login input,
.dashboard-panel input,
.dashboard-panel textarea,
.dashboard-panel select {
  width: 100%;
  border: 1px solid rgba(7, 17, 31, 0.13);
  border-radius: 4px;
  padding: 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.dashboard-panel textarea {
  min-height: 112px;
  resize: vertical;
  line-height: 1.7;
}

.dashboard-login .btn {
  width: 100%;
  margin-top: 18px;
}

.dashboard-error,
.dashboard-status {
  min-height: 1.5em;
  font-weight: 800;
}

.dashboard-status {
  position: sticky;
  bottom: 18px;
  z-index: 3;
  width: max-content;
  max-width: 100%;
  margin: 22px 0 0 auto;
  padding: 12px 16px;
  border-left: 6px solid var(--lime);
  color: var(--ink);
  background: #fff;
  box-shadow: 0 14px 36px rgba(7, 17, 31, 0.14);
}

.dashboard-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 22px;
}

.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.dashboard-conversion {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 18px;
  align-items: center;
  margin: 0 0 22px;
  padding: 22px 24px;
  color: #fff;
  background: var(--navy);
  border-left: 8px solid var(--lime);
}

.dashboard-conversion span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}

.dashboard-conversion h2,
.dashboard-conversion p {
  margin: 4px 0 0;
}

.dashboard-conversion p {
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
}

.dashboard-conversion > strong {
  color: var(--lime);
  font-size: 48px;
  line-height: 1;
}

.dashboard-conversion > small {
  color: rgba(255, 255, 255, .7);
  font-weight: 800;
}

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

.dashboard-panel {
  --panel-color: var(--blue);
  --panel-soft: rgba(43, 143, 216, 0.12);
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 32px);
  border-top: 8px solid var(--panel-color);
}

.dashboard-panel h2 {
  margin: 16px 0 8px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.15;
}

.dashboard-panel h3 {
  margin-top: 24px;
}

.dashboard-panel-news {
  --panel-color: #2b8fd8;
  --panel-soft: rgba(43, 143, 216, 0.12);
}

.dashboard-panel-apps {
  --panel-color: #9bd400;
  --panel-soft: rgba(155, 212, 0, 0.16);
}

.dashboard-panel-blog {
  --panel-color: #ff7a59;
  --panel-soft: rgba(255, 122, 89, 0.15);
}

.dashboard-panel-reviews {
  --panel-color: #6c63ff;
  --panel-soft: rgba(108, 99, 255, 0.14);
}

.dashboard-panel.is-saved {
  box-shadow: 0 0 0 4px var(--panel-soft), 0 20px 60px rgba(7, 17, 31, 0.14);
}

.dashboard-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.dashboard-panel-head span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--panel-soft);
  border-left: 6px solid var(--panel-color);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.dashboard-panel-head .btn,
.dashboard-panel .dashboard-add {
  color: var(--ink);
  background: var(--panel-color);
}

.dashboard-help {
  margin-top: 16px;
  padding: 14px 16px;
  border-left: 6px solid var(--panel-color);
  background: var(--panel-soft);
}

.dashboard-help strong {
  display: block;
  font-size: 13px;
}

.dashboard-help p {
  margin: 4px 0 0;
  font-size: 13px;
}

.partner-hero {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.96), rgba(7, 17, 31, 0.74), rgba(7, 17, 31, 0.42)),
    url("https://agena358.jp/wp-content/themes/agena-company/assets/images/agena/kv.png") center / cover no-repeat;
}

.trust-section,
.partner-section,
.selection-section {
  padding: clamp(80px, 10vw, 140px) 0;
}

.trust-section {
  padding-block: 34px;
  background: var(--lime);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(7, 17, 31, 0.16);
}

.trust-strip article {
  padding: 28px;
  background: var(--lime);
}

.trust-strip span,
.selection-list span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.trust-strip strong {
  display: block;
  font-size: 24px;
}

.trust-strip p {
  margin: 8px 0 0;
  color: #2f3c49;
}

.partner-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(5, 11, 19, 0.98), rgba(13, 39, 64, 0.96));
}

.partner-grid {
  display: grid;
  gap: 18px;
}

.partner-card {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
}

.partner-card-primary {
  background: var(--lime);
  color: var(--ink);
}

.partner-card h3 {
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.12;
}

.partner-card p:not(.card-label) {
  color: rgba(255, 255, 255, 0.74);
}

.partner-card-primary p:not(.card-label),
.partner-card-primary .partner-points li {
  color: #25313d;
}

.partner-points {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.partner-points li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  line-height: 1.7;
}

.partner-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  background: var(--lime);
}

.partner-card-primary .partner-points li::before {
  background: var(--blue);
}

.partner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.selection-section {
  background: var(--paper);
}

.selection-layout {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: clamp(36px, 7vw, 82px);
  align-items: start;
}

.selection-layout p:not(.section-kicker) {
  color: #344251;
}

.selection-list {
  display: grid;
  gap: 14px;
}

.selection-list article {
  padding: 26px;
  border: 1px solid var(--dark-line);
  background: #fff;
}

.selection-list strong {
  display: block;
  font-size: 23px;
}

.dashboard-items {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.dashboard-item {
  padding: 18px;
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-left: 6px solid var(--panel-color);
  background: linear-gradient(180deg, #fff, rgba(245, 248, 251, 0.86));
}

.dashboard-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.dashboard-item-head strong {
  color: var(--panel-color);
  font-size: 15px;
}

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

.dashboard-panel .field-grid label {
  margin-top: 0;
}

.dashboard-remove {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 122, 89, 0.28);
  border-radius: 4px;
  color: #a83b22;
  background: rgba(255, 122, 89, 0.12);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.dashboard-add {
  width: 100%;
  margin-top: 18px;
}

.check-label {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 10px !important;
}

.check-label input {
  width: 18px;
  height: 18px;
}

.aio-services .business-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 0;
  background: #f7f9fb;
  border-top: 6px solid var(--lime);
}

.business-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
  transform: scale(1.02);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.business-card:hover .business-visual {
  opacity: 0.9;
  transform: scale(1.06);
}

.aio-services .business-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82) 44%, rgba(255, 255, 255, 0.18)),
    linear-gradient(180deg, rgba(7, 17, 31, 0), rgba(7, 17, 31, 0.1));
}

.business-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 324px;
  max-width: 62%;
  padding: 30px;
}

.aio-services .business-card .detail-link {
  width: max-content;
  min-width: 190px;
  padding-inline: 22px;
}

.news-section {
  position: relative;
}

.news-layout {
  padding-block: 0;
  border: 0;
}

.news-ornament {
  position: relative;
  height: 12px;
}

.news-ornament span {
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, var(--lime) 0 120px, transparent 120px calc(100% - 120px), var(--cyan) calc(100% - 120px)),
    repeating-linear-gradient(90deg, rgba(7, 17, 31, 0.18) 0 1px, transparent 1px 18px);
}

.news-ornament-top {
  margin-bottom: clamp(44px, 6vw, 78px);
}

.news-ornament-bottom {
  margin-top: clamp(44px, 6vw, 78px);
}

.philosophy-center {
  display: grid;
  place-items: center;
  text-align: center;
  gap: clamp(24px, 4vw, 42px);
}

.philosophy-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
}

.philosophy-art {
  display: grid;
  gap: 28px;
  text-align: center;
}

.philosophy-word,
.mvv-title p {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: clamp(16px, 2.7vw, 38px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
}

.philosophy-center img,
.philosophy-main-image {
  display: block;
  width: min(100%, 1040px);
  height: auto;
  filter: drop-shadow(0 18px 34px rgba(7, 17, 31, 0.12));
}

.philosophy-art img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 18px 54px rgba(7, 17, 31, 0.08);
}

.philosophy-copy {
  max-width: 900px;
  padding: 0;
  border-left: 0;
  background: transparent;
  box-shadow: none;
}

.philosophy-copy h2 {
  font-size: clamp(32px, 4.8vw, 62px);
}

.philosophy-copy p:not(.section-kicker) {
  color: #344251;
  font-size: clamp(15px, 1.55vw, 18px);
  font-weight: 700;
  line-height: 2;
}

.mvv-section {
  background:
    linear-gradient(135deg, rgba(5, 11, 19, 0.98), rgba(13, 39, 64, 0.96)),
    linear-gradient(90deg, rgba(230, 255, 70, 0.12), transparent);
}

.mvv-grid {
  gap: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.mvv-grid article {
  min-height: 330px;
  border: 0;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.mvv-grid article:last-child {
  border-right: 0;
}

.mvv-grid span {
  width: max-content;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--lime);
}

.mvv-grid h3 {
  margin-bottom: 12px;
  font-size: clamp(17px, 1.3vw, 22px);
  line-height: 1.2;
}

.mvv-grid p {
  font-size: 15px;
}

.mvv-grid-detailed {
  grid-template-columns: 1fr;
  gap: 18px;
  border: 0;
  background: transparent;
}

.mvv-grid-detailed article {
  display: grid;
  grid-template-columns: minmax(180px, 0.26fr) 1fr;
  gap: clamp(20px, 3.2vw, 42px);
  align-items: start;
  min-height: 0;
  padding: clamp(22px, 3.2vw, 34px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045));
}

.mvv-grid-detailed article:last-child {
  border-right: 1px solid var(--line);
}

.mvv-head strong {
  display: block;
  margin: 0;
  color: #fff;
  font-size: clamp(14px, 1.45vw, 18px);
  line-height: 1.6;
}

.mvv-head {
  position: static;
}

.mvv-body p,
.mvv-body li {
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.85;
}

.mvv-body p {
  color: rgba(255, 255, 255, 0.72);
  margin-block: 0 12px;
}

.mvv-list,
.value-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mvv-list li,
.value-list li {
  position: relative;
  padding: 12px 16px 12px 38px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.06);
  line-height: 1.75;
}

.mvv-list li::before,
.value-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 22px;
  width: 10px;
  height: 10px;
  background: var(--lime);
}

.value-list {
  counter-reset: value;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.value-list li {
  counter-increment: value;
}

.value-list li::before {
  content: counter(value);
  top: 14px;
  width: 24px;
  height: 24px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 24px;
  text-align: center;
}

.value-list strong {
  margin: 0 0 6px;
  font-size: 15px;
}

.value-list p {
  margin: 0;
}

.app-logo {
  display: block;
  width: min(100%, 210px);
  max-height: 86px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 24px;
  padding: 12px;
  background: #fff;
}

.app-logo-tsumugu {
  width: min(100%, 360px);
  max-height: 120px;
  padding: 14px 18px;
}

.seminar-visual-image {
  background: #07111f;
}

.seminar-visual-image::after {
  display: none;
}

.seminar-visual-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-illustration {
  display: block;
  width: 100%;
  margin-top: 24px;
  border: 1px solid rgba(7, 17, 31, 0.16);
}

.agent-demo-section {
  background:
    linear-gradient(135deg, rgba(5, 11, 19, 0.98), rgba(13, 39, 64, 0.9)),
    url("assets/社長のためのAI社員養成塾.png") center / cover no-repeat;
}

.company-section {
  padding: clamp(60px, 7.5vw, 105px) 0;
}

.company-section .section-inner {
  width: min(840px, calc(100% - 48px));
}

.company-section h2 {
  font-size: clamp(24px, 3.75vw, 48px);
}

.company-list div {
  grid-template-columns: 165px 1fr;
  gap: 21px;
  padding: 18px 0;
}

.company-list dt {
  font-size: 12px;
}

.company-list dd {
  font-size: 14px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 18px 24px;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .btn {
    min-height: 42px;
    padding-inline: 15px;
    font-size: 13px;
  }

  .brand img {
    width: 172px;
  }

  .split-intro,
  .philosophy-layout,
  .message-layout,
  .cta-layout,
  .contact-panel,
  .news-layout,
  .agent-layout,
  .partner-card,
  .selection-layout,
  .aio-detail-layout,
  .seminar-card,
  .dashboard-head,
  .dashboard-conversion,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .principle-grid,
  .step-grid,
  .benefit-list,
  .course-grid,
  .style-grid,
  .business-grid,
  .curriculum-list,
  .product-grid,
  .review-grid,
  .blog-grid,
  .app-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card {
    grid-column: span 2;
  }

  .business-copy {
    max-width: 72%;
  }

  .mvv-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mvv-grid-detailed article {
    grid-template-columns: 1fr;
  }

  .value-list {
    grid-template-columns: 1fr;
  }

  .mvv-grid article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 18px;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-inner,
  .section-inner,
  .footer-inner,
  .contact-shell {
    width: min(100% - 32px, 1120px);
  }

  .hero-title {
    font-size: clamp(47px, 13.4vw, 64px);
    gap: 0.06em;
  }

  .hero-title-line {
    padding: 0.05em 0.12em 0.1em;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .business-copy {
    max-width: none;
    min-height: 300px;
    padding: 24px;
  }

  .aio-services .business-card::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.2));
  }

  .philosophy-word,
  .mvv-title p {
    font-size: clamp(15px, 7vw, 28px);
  }

  .company-section .section-inner {
    width: min(100% - 32px, 840px);
  }

  .principle-grid,
  .step-grid,
  .benefit-list,
  .course-grid,
  .style-grid,
  .business-grid,
  .product-grid,
  .review-grid,
  .blog-grid,
  .app-showcase,
  .trust-strip,
  .business-grid.aio-services,
  .seminar-card-grid,
  .aio-checks,
  .curriculum-list,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .seminar-card-main {
    grid-column: span 1;
  }

  .news-list a {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .review-summary,
  .approval-row,
  .agent-metrics,
  .field-grid {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .feature-card {
    grid-column: span 1;
  }

  .business-card,
  .principle-grid article,
  .step-grid article {
    min-height: 0;
  }

  .message-visual {
    min-height: 360px;
  }

  .visual-stack {
    min-height: 420px;
  }

  .visual-photo {
    min-height: 360px;
  }

  .visual-note {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin-top: -28px;
  }

  .aio-facts {
    position: static;
  }

  .company-list div,
  .flow-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .scroll-cue {
    display: none;
  }
}
