* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
  
  .site-header {
    background: #fff;
  }
  border-bottom: 1px solid #eee;
}

.site-header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo {
  font-weight: 700;
  font-size: 20px;
}

.site-header__nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero {
  padding: 100px 24px;
  background: #f7f4ee;
}

.hero__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.hero__label {
  font-weight: 700;
  color: #8a6d3b;
}

.hero__title {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.25;
  margin: 16px 0;
}

.hero__text {
  max-width: 680px;
  font-size: 18px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
}

.button--primary {
  background: #222;
  color: #fff;
}

.button--secondary {
  background: #fff;
  color: #222;
  border: 1px solid #ddd;
}

.section {
  padding: 80px 24px;
}

.section__inner {
  max-width: 1120px;
  margin: 0 auto;
}

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

.problem-list li {
  background: #fff;
  border: 1px solid #eee;
  padding: 18px 20px;
  border-radius: 12px;
}

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

.service-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 28px;
}

.site-footer {
  background: #222;
  color: #fff;
  padding: 32px 24px;
}

.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.page-content {
  padding: 80px 24px;
}

.page-content__inner {
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .site-header__inner {
    display: block;
  }

  .site-header__nav {
    margin-top: 16px;
  }

  .site-header__nav ul {
    flex-wrap: wrap;
    gap: 12px;
  }

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

  .hero {
    padding: 72px 20px;
  }
}

.wpcf7 {
  max-width: 560px;
}

.wpcf7 label {
  display: block;
  margin-bottom: 18px;
  font-weight: 700;
}

.wpcf7 input,
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  margin-top: 8px;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}

.wpcf7 textarea {
  min-height: 180px;
}

.wpcf7 input[type="submit"] {
  width: auto;
  min-width: 180px;
  padding: 14px 28px;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.wpcf7 input[type="submit"]:hover {
  opacity: 0.85;
}

.wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 13px;
}

.wpcf7-response-output {
  border-radius: 8px;
  padding: 12px 16px !important;
}

.lower-hero {
  padding: 88px 24px;
  background: #f7f4ee;
}

.lower-hero__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.lower-hero__label {
  margin: 0 0 12px;
  color: #8a6d3b;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.lower-hero__title {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.3;
}

.lower-hero__text {
  max-width: 720px;
  margin-top: 20px;
  font-size: 17px;
}

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

.service-detail__card {
  position: relative;
  padding: 34px;
  border: 1px solid #eee;
  border-radius: 20px;
  background: #fff;
}

.service-detail__num {
  display: inline-block;
  margin-bottom: 14px;
  color: #8a6d3b;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-detail__card h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.service-detail__card p {
  margin: 0 0 18px;
}

.service-detail__card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.2em;
}

.cta-section {
  padding: 80px 24px;
  background: #222;
  color: #fff;
  text-align: center;
}

.cta-section__inner {
  max-width: 880px;
  margin: 0 auto;
}

.cta-section h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 42px);
}

.cta-section p {
  margin-bottom: 30px;
}

.cta-section .button--primary {
  background: #fff;
  color: #222;
}

@media (max-width: 768px) {
  .lower-hero {
    padding: 64px 20px;
  }

  .service-detail__grid {
    grid-template-columns: 1fr;
  }

  .service-detail__card {
    padding: 26px;
  }
}

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

.price-card {
  padding: 34px;
  border: 1px solid #eee;
  border-radius: 20px;
  background: #fff;
}

.price-card--featured {
  border-color: #222;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.price-card__label {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f7f4ee;
  color: #8a6d3b;
  font-size: 13px;
  font-weight: 700;
}

.price-card h2 {
  margin: 0 0 18px;
  font-size: 24px;
}

.price-card__price {
  margin: 0 0 18px;
  font-size: 28px;
  font-weight: 700;
}

.price-card__text {
  margin-bottom: 20px;
}

.price-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.2em;
}

.price-note {
  margin-top: 48px;
  padding: 34px;
  border-radius: 20px;
  background: #f7f4ee;
}

.price-note h2 {
  margin: 0 0 12px;
}

.price-note p {
  margin: 0;
}

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

.works-grid {
  display: grid;
  gap: 24px;
}

.works-card {
  padding: 34px;
  border: 1px solid #eee;
  border-radius: 20px;
  background: #fff;
}

.works-card__category {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f7f4ee;
  color: #8a6d3b;
  font-size: 13px;
  font-weight: 700;
}

.works-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.works-card p {
  margin: 0 0 22px;
}

.works-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.works-card dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid #eee;
}

.works-card dt {
  font-weight: 700;
}

.works-card dd {
  margin: 0;
}

.works-note {
  margin-top: 48px;
  padding: 34px;
  border-radius: 20px;
  background: #f7f4ee;
}

.works-note h2 {
  margin: 0 0 12px;
}

.works-note p {
  margin: 0;
}

@media (max-width: 768px) {
  .works-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

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

.column-card {
  border: 1px solid #eee;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.column-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.column-card a {
  display: block;
  padding: 30px;
  height: 100%;
}

.column-card__date {
  margin: 0 0 12px;
  color: #8a6d3b;
  font-size: 13px;
  font-weight: 700;
}

.column-card h2 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.5;
}

.column-card__excerpt {
  margin: 0;
}

.empty-message {
  padding: 48px 34px;
  border: 1px solid #eee;
  border-radius: 20px;
  background: #fff;
  text-align: center;
}

.empty-message h2 {
  margin: 0 0 12px;
}

.empty-message p {
  margin: 0;
}

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

.single-hero {
  padding: 88px 24px;
  background: #f7f4ee;
}

.single-hero__inner {
  max-width: 860px;
  margin: 0 auto;
}

.single-hero__date {
  margin: 0 0 16px;
  color: #8a6d3b;
  font-size: 14px;
  font-weight: 700;
}

.single-hero__title {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.35;
}

.single-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 24px;
}

.single-content h2 {
  margin: 48px 0 18px;
  font-size: 28px;
}

.single-content h3 {
  margin: 36px 0 14px;
  font-size: 22px;
}

.single-content p {
  margin: 0 0 24px;
}

.single-content ul,
.single-content ol {
  margin: 0 0 28px;
  padding-left: 1.4em;
}

.single-content li {
  margin-bottom: 8px;
}

.single-content img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

.single-back {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px 72px;
}

@media (max-width: 768px) {
  .single-hero {
    padding: 64px 20px;
  }

  .single-content {
    padding: 56px 20px;
  }
}

.wpcf7 {
  max-width: 620px;
}

.wpcf7 label {
  display: block;
  margin-bottom: 20px;
  font-weight: 700;
}

.wpcf7 input,
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
}

.wpcf7 textarea {
  min-height: 180px;
}

.wpcf7 input[type="submit"] {
  width: auto;
  min-width: 180px;
  padding: 14px 28px;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.wpcf7 input[type="submit"]:hover {
  opacity: 0.85;
}

.contact-lead {
  max-width: 620px;
  margin: 0 0 34px;
}

.contact-lead p {
  margin: 0;
  line-height: 1.9;
}

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

.section-heading__label {
  margin: 0 0 10px;
  color: #8a6d3b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.35;
}

.section-heading p {
  max-width: 720px;
  margin: 16px 0 0;
}

.service-card__num {
  margin: 0 0 12px;
  color: #8a6d3b;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.section-more {
  margin-top: 36px;
  text-align: center;
}

.reason {
  background: #f7f4ee;
}

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

.reason-card {
  padding: 30px;
  border-radius: 20px;
  background: #fff;
}

.reason-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
}

.reason-card p {
  margin: 0;
}

.flow-list {
  display: grid;
  gap: 18px;
}

.flow-item {
  display: grid;
  grid-template-columns: 80px 180px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px;
  border: 1px solid #eee;
  border-radius: 18px;
  background: #fff;
}

.flow-item span {
  color: #8a6d3b;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.flow-item h3 {
  margin: 0;
  font-size: 22px;
}

.flow-item p {
  margin: 0;
}

.faq {
  background: #f7f4ee;
}

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

.faq-item {
  padding: 28px;
  border-radius: 18px;
  background: #fff;
}

.faq-item h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.faq-item p {
  margin: 0;
}

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

  .flow-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .site-header__inner {
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .site-header__logo {
    font-size: 16px;
    line-height: 1.4;
  }

  .site-header__nav {
    width: 100%;
    margin-top: 0;
  }

  .site-header__nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 14px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 4px;
  }

  .site-header__nav li {
    flex: 0 0 auto;
  }

  .site-header__nav a {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 32px;
  }

  .hero__text {
    font-size: 14px;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__buttons .button {
    min-width: 180px;
  }

  .section {
    padding: 64px 20px;
  }
}

.site-header__menu-button {
  display: none;
}

@media (max-width: 768px) {
  .site-header__inner {
    position: relative;
    padding: 16px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .site-header__logo {
    font-size: 16px;
    line-height: 1.4;
  }

  .site-header__menu-button {
    display: inline-flex;
    width: 42px;
    height: 42px;
    padding: 0;
    border: none;
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
  }

  .site-header__menu-button span {
    display: block;
    width: 24px;
    height: 2px;
    background: #222;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

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

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

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

  .site-header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: 0;
    padding: 18px 20px 22px;
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    z-index: 100;
  }

  .site-header__nav.is-open {
    display: block;
  }

  .site-header__nav ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .site-header__nav li {
    margin: 0;
  }

  .site-header__nav a {
    display: block;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 700;
  }
}

.site-footer__nav {
  margin-bottom: 10px;
}

.site-footer__nav a {
  color: #fff;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer__nav a:hover {
  opacity: 0.8;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

/* =========================
  Blue Theme Override
========================= */

:root {
  --color-bg-light: #f3fbff;
  --color-bg-blue: #e6f6ff;
  --color-main: #1297e8;
  --color-main-dark: #0074c7;
  --color-navy: #15395b;
  --color-text: #1f2f3d;
  --color-border: #d8ecf8;
}

/* 全体の文字色 */
body {
  color: var(--color-text);
}

/* ヘッダー */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}

.site-header__logo a {
  color: var(--color-navy);
}

.site-header__nav a {
  color: var(--color-navy);
}

.site-header__nav a:hover {
  color: var(--color-main);
}

/* ハンバーガー */
.site-header__menu-button span {
  background: var(--color-main);
}

/* FV・下層ページの背景 */
.hero,
.lower-hero,
.reason,
.faq,
.price-note,
.works-note {
  background: var(--color-bg-light);
}

/* ラベル */
.hero__label,
.section-heading__label,
.lower-hero__label,
.service-detail__num,
.service-card__num,
.column-card__date,
.single-hero__date,
.price-card__label,
.works-card__category {
  color: var(--color-main-dark);
}

/* 見出し */
.hero__title,
.lower-hero__title,
.section-heading h2,
.cta-section h2 {
  color: var(--color-navy);
}

/* メインボタン */
.button--primary,
.wpcf7 input[type="submit"] {
  background: var(--color-main);
  color: #fff;
}

.button--primary:hover,
.wpcf7 input[type="submit"]:hover {
  background: var(--color-main-dark);
  opacity: 1;
}

/* サブボタン */
.button--secondary {
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-main-dark);
}

.button--secondary:hover {
  border-color: var(--color-main);
  color: var(--color-main);
}

/* カード */
.service-card,
.service-detail__card,
.reason-card,
.flow-item,
.faq-item,
.price-card,
.works-card,
.column-card,
.empty-message {
  border-color: var(--color-border);
  box-shadow: 0 8px 24px rgba(18, 151, 232, 0.04);
}

/* 問題リスト */
.problem-list li {
  border-color: var(--color-border);
}

/* おすすめ料金カード */
.price-card--featured {
  border-color: var(--color-main);
  box-shadow: 0 12px 30px rgba(18, 151, 232, 0.14);
}

/* CTAセクション */
.cta-section {
  background: linear-gradient(135deg, #123a5c 0%, #0a7ed1 100%);
  color: #fff;
}

.cta-section h2,
.cta-section p {
  color: #fff;
}

.cta-section .button--primary {
  background: #fff;
  color: var(--color-main-dark);
}

.cta-section .button--primary:hover {
  background: var(--color-bg-blue);
  color: var(--color-main-dark);
}

/* フッター */
.site-footer {
  background: #12283d;
}

.site-footer,
.site-footer a,
.site-footer p {
  color: #fff;
}

/* フォーム */
.wpcf7 input,
.wpcf7 select,
.wpcf7 textarea {
  border-color: var(--color-border);
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--color-main);
  box-shadow: 0 0 0 3px rgba(18, 151, 232, 0.12);
}


.error-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .error-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* =========================
  Rich LP Design
========================= */

.hero-rich {
  position: relative;
  overflow: hidden;
}

.hero-rich::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: -160px;
  background: radial-gradient(circle, rgba(18, 151, 232, 0.16), rgba(18, 151, 232, 0));
  pointer-events: none;
}

.hero-rich__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-rich__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-rich__badges span,
.cta-badges span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-main-dark);
  font-size: 13px;
  font-weight: 700;
}

.hero-rich__visual {
  position: relative;
  min-height: 420px;
}

.hero-visual-card {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 60px rgba(18, 151, 232, 0.15);
  backdrop-filter: blur(10px);
}

.hero-visual-card__browser {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.hero-visual-card__browser span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
}

.hero-visual-card__main {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f4fbff, #ffffff);
}

.hero-visual-card__image {
  min-height: 130px;
  border-radius: 18px;
  background: linear-gradient(135deg, #8ed8f8, #1297e8);
  position: relative;
}

.hero-visual-card__image::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
}

.hero-visual-card__lines {
  display: grid;
  align-content: center;
  gap: 12px;
}

.hero-visual-card__lines span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: #d8ecf8;
}

.hero-visual-card__lines span:nth-child(1) {
  width: 90%;
}

.hero-visual-card__lines span:nth-child(2) {
  width: 70%;
}

.hero-visual-card__lines span:nth-child(3) {
  width: 82%;
}

.hero-visual-card__lines strong {
  display: block;
  width: 120px;
  height: 34px;
  border-radius: 999px;
  background: var(--color-main);
}

.hero-visual-card__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.hero-visual-card__items span {
  height: 76px;
  border-radius: 16px;
  background: #f3fbff;
  border: 1px solid var(--color-border);
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(18, 151, 232, 0.16);
  color: var(--color-navy);
  font-weight: 700;
}

.floating-card p {
  margin: 0;
  font-size: 14px;
}

.floating-card__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-bg-blue);
  color: var(--color-main);
}

.floating-card--graph {
  right: -8px;
  top: 42px;
}

.floating-card--support {
  left: -12px;
  bottom: 48px;
}

.problem-list-rich li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.problem-list-rich p {
  margin: 0;
}

.problem-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: var(--color-bg-blue);
  font-size: 18px;
}

.service-grid-rich {
  align-items: stretch;
}

.service-card-rich {
  position: relative;
  overflow: hidden;
}

.service-card-rich::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(18, 151, 232, 0.08);
}

.service-card-rich__icon {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--color-main-dark);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-card-rich__visual {
  height: 120px;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: 20px;
  background: #f4fbff;
  border: 1px solid var(--color-border);
  position: relative;
}

.service-card-rich__visual span {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: var(--color-main);
  opacity: 0.75;
}

.service-card-rich__visual--page span:nth-child(1) {
  width: 72%;
  height: 16px;
  left: 18px;
  top: 24px;
}

.service-card-rich__visual--page span:nth-child(2) {
  width: 50%;
  height: 12px;
  left: 18px;
  top: 54px;
  background: #8ed8f8;
}

.service-card-rich__visual--page span:nth-child(3) {
  width: 84px;
  height: 28px;
  left: 18px;
  bottom: 18px;
}

.service-card-rich__visual--image span:nth-child(1) {
  width: 74px;
  height: 56px;
  left: 18px;
  top: 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, #8ed8f8, #1297e8);
}

.service-card-rich__visual--image span:nth-child(2) {
  width: 56px;
  height: 10px;
  right: 20px;
  top: 34px;
  background: #d8ecf8;
}

.service-card-rich__visual--image span:nth-child(3) {
  width: 92px;
  height: 10px;
  right: 20px;
  top: 58px;
}

.service-card-rich__visual--support span:nth-child(1) {
  width: 42px;
  height: 42px;
  left: 20px;
  top: 24px;
  border-radius: 50%;
}

.service-card-rich__visual--support span:nth-child(2) {
  width: 120px;
  height: 12px;
  left: 78px;
  top: 34px;
  background: #d8ecf8;
}

.service-card-rich__visual--support span:nth-child(3) {
  width: 150px;
  height: 12px;
  left: 78px;
  top: 58px;
}

.improvement {
  background: #fff;
}

.improvement__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-main);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.before-after-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border-radius: 28px;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
}

.before-after-card__col p {
  margin: 0 0 12px;
  color: var(--color-main-dark);
  font-weight: 800;
}

.before-after-card__arrow {
  color: var(--color-main);
  font-size: 32px;
  font-weight: 800;
}

.mini-page {
  display: grid;
  gap: 12px;
  padding: 18px;
  min-height: 210px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(18, 151, 232, 0.08);
}

.mini-page span {
  display: block;
  border-radius: 999px;
  background: #d8ecf8;
}

.mini-page span:nth-child(1) {
  height: 72px;
  border-radius: 16px;
}

.mini-page span:nth-child(2) {
  height: 12px;
}

.mini-page span:nth-child(3) {
  height: 12px;
  width: 70%;
}

.mini-page span:nth-child(4) {
  height: 30px;
  width: 90px;
}

.mini-page--after span:nth-child(1) {
  background: linear-gradient(135deg, #8ed8f8, #1297e8);
}

.mini-page--after span:nth-child(4) {
  background: var(--color-main);
}

.reason-card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--color-bg-blue);
  font-size: 22px;
}

.works-preview {
  background: #fff;
}

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

.works-preview-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(18, 151, 232, 0.06);
}

.works-preview-card__thumb {
  position: relative;
  height: 180px;
  background: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
}

.works-preview-card__thumb span {
  position: absolute;
  display: block;
  border-radius: 14px;
  background: var(--color-main);
}

.works-preview-card__thumb span:nth-child(1) {
  width: 58%;
  height: 76px;
  left: 22px;
  top: 28px;
  background: linear-gradient(135deg, #8ed8f8, #1297e8);
}

.works-preview-card__thumb span:nth-child(2) {
  width: 48%;
  height: 12px;
  left: 22px;
  bottom: 42px;
  background: #d8ecf8;
}

.works-preview-card__thumb span:nth-child(3) {
  width: 70%;
  height: 12px;
  left: 22px;
  bottom: 22px;
  background: #d8ecf8;
}

.works-preview-card__body {
  padding: 24px;
}

.works-preview-card__body p {
  margin: 0 0 8px;
  color: var(--color-main-dark);
  font-size: 13px;
  font-weight: 800;
}

.works-preview-card__body h3 {
  margin: 0 0 12px;
  font-size: 21px;
}

.works-preview-card__body span {
  color: #5f6b7a;
  font-size: 14px;
}

.flow-list-rich .flow-item {
  position: relative;
}

.flow-list-rich .flow-item span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-bg-blue);
  color: var(--color-main-dark);
}

.cta-section__label {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.cta-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 30px;
}

.cta-badges span {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

/* responsive */
@media (max-width: 900px) {
  .hero-rich__inner,
  .improvement__inner {
    grid-template-columns: 1fr;
  }

  .hero-rich__visual {
    min-height: auto;
  }

  .works-preview-grid {
    grid-template-columns: 1fr;
  }

  .before-after-card {
    grid-template-columns: 1fr;
  }

  .before-after-card__arrow {
    text-align: center;
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .hero-rich__badges {
    gap: 8px;
  }

  .hero-rich__badges span,
  .cta-badges span {
    font-size: 12px;
  }

  .hero-visual-card__main {
    grid-template-columns: 1fr;
  }

  .floating-card {
    position: static;
    margin-top: 12px;
  }

  .service-card-rich__visual {
    height: 110px;
  }

  .works-preview-card__thumb {
    height: 150px;
  }
}

.problem-icon img,
.reason-card__icon img {
  width: 28px;
  height: 28px;
  display: block;
}

.reason-card__icon {
  display: grid;
  place-items: center;
}

.problem-icon {
  display: grid;
  place-items: center;
}

.rich-hero-image,
.service-card-rich__visual img,
.before-after-card--image img,
.works-preview-card__thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.rich-hero-image {
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(18, 151, 232, 0.15);
}

.service-card-rich__visual {
  height: auto;
  padding: 0;
  overflow: hidden;
}

.service-card-rich__visual img {
  border-radius: 20px;
}

.before-after-card--image {
  display: block;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: none;
}

.before-after-card--image img {
  border-radius: 28px;
  border: 1px solid var(--color-border);
  box-shadow: 0 16px 40px rgba(18, 151, 232, 0.12);
}

.works-preview-card__thumb {
  height: auto;
  background: transparent;
}

.works-preview-card__thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero__title .pc-line {
  display: block;
}

@media (min-width: 901px) {
  .hero__title {
    font-size: clamp(42px, 4.5vw, 64px);
    line-height: 1.25;
  }
}

/* PC表示：ヒーロー見出しの改行固定 */
@media (min-width: 901px) {
  .hero__title .pc-line {
    display: block;
    white-space: nowrap;
  }

  .hero-rich__content {
    min-width: 0;
  }

  .hero-rich__inner {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .hero__title {
    font-size: clamp(40px, 4vw, 58px);
    line-height: 1.25;
    letter-spacing: 0.02em;
  }
}

@media (max-width: 767px) {
  .hero-rich {
    padding-top: 72px;
    padding-bottom: 48px;
  }

  .hero-rich__title {
    font-size: 34px;
    line-height: 1.35;
    letter-spacing: 0.02em;
  }

  .hero-rich__lead {
    font-size: 15px;
    line-height: 1.9;
  }

  .hero-rich__actions {
    gap: 14px;
    margin-top: 28px;
  }

  .hero-rich__badges {
    gap: 10px;
    margin-top: 28px;
  }

  .hero-rich__badge {
    font-size: 13px;
    padding: 10px 16px;
  }
}

.hero-rich__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  color: #1976a8;
  font-size: 14px;
  font-weight: 700;
}

.hero-rich__points span {
  position: relative;
  padding-left: 18px;
  line-height: 1.6;
}

.hero-rich__points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1ca3e8;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .hero-rich__points {
    gap: 8px 14px;
    margin-top: 24px;
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .hero-rich__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero-rich__actions .button {
    width: 100%;
    padding: 14px 10px;
    font-size: 13px;
    white-space: nowrap;
  }
}

@media (max-width: 767px) {
  .hero-rich__actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .hero-rich__actions .button {
    width: 100% !important;
    min-width: 0 !important;
    padding: 14px 10px !important;
    font-size: 14px !important;
    white-space: nowrap !important;
    text-align: center !important;
  }
}

.cta-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin: 28px 0 32px;
}

.cta-points p {
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.cta-points p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .cta-points {
    gap: 8px;
    margin: 24px 0 30px;
  }

  .cta-points p {
    font-size: 13px;
  }
}

.cta-service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 32px auto 36px;
}

.cta-service-item {
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  text-align: center;
  color: #fff;
}

.cta-service-item span {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.cta-service-item small {
  display: block;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 767px) {
  .cta-service-list {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 28px auto 32px;
  }

  .cta-service-item {
    padding: 15px 16px;
    text-align: left;
  }

  .cta-service-item span {
    margin-bottom: 5px;
    font-size: 14px;
  }

  .cta-service-item small {
    font-size: 12px;
  }
}

/* ================================
  Hero Motion
================================ */
.hero-motion {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
  background:
    radial-gradient(900px 500px at 82% -10%, #cfeeff 0%, transparent 58%),
    radial-gradient(700px 500px at 8% 30%, #e1f5ff 0%, transparent 56%),
    linear-gradient(180deg, #eaf7ff 0%, #f5fbff 72%, #ffffff 100%);
}

.hero-motion__inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}

.hero-motion__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 15px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #cfe5f4;
  color: #1e83bd;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 24px -18px rgba(20, 90, 140, 0.35);
}

.hero-motion__badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1ca3e8;
}

.hero-motion__title {
  margin: 22px 0 24px;
  color: #0d2d49;
  font-size: 46px;
  line-height: 1.32;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.hero-motion__lead {
  max-width: 520px;
  margin: 0 0 34px;
  color: #36546e;
  font-size: 15.5px;
  line-height: 2;
  font-weight: 500;
}

.hero-motion__actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.motion-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: transform 0.18s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.motion-button--primary {
  color: #fff;
  background: linear-gradient(180deg, #1fb0f2 0%, #1498dd 55%, #0878bd 100%);
  box-shadow: 0 16px 28px -16px rgba(8, 120, 189, 0.65);
}

.motion-button--secondary {
  color: #147fb8;
  background: #fff;
  border: 1px solid #cfe5f4;
  box-shadow: 0 12px 24px -20px rgba(20, 90, 140, 0.4);
}

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

/* 背景のふわっとした光 */
.motion-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.55;
  animation: motionFloat 14s ease-in-out infinite;
}

.motion-blob--1 {
  width: 340px;
  height: 340px;
  background: #9edcff;
  top: -90px;
  right: -40px;
}

.motion-blob--2 {
  width: 280px;
  height: 280px;
  background: #bceeff;
  bottom: -70px;
  left: 8%;
  animation-delay: -5s;
}

.motion-blob--3 {
  width: 220px;
  height: 220px;
  background: #ffffff;
  top: 35%;
  left: -80px;
  animation-delay: -9s;
}

@keyframes motionFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(22px, -28px) scale(1.06);
  }
}

/* PCモックアップ */
.hero-motion__visual {
  position: relative;
}

.motion-laptop {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  filter: drop-shadow(0 34px 52px rgba(15, 44, 71, 0.24));
}

.motion-laptop__screen {
  background: #143a5c;
  border-radius: 18px 18px 6px 6px;
  padding: 14px 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  aspect-ratio: 16 / 10;
}

.motion-laptop__base {
  height: 15px;
  margin: 0 -28px;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(180deg, #d5e2ee, #9eb7cc);
  position: relative;
}

.motion-laptop__base::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 84px;
  height: 6px;
  border-radius: 0 0 8px 8px;
  background: #7f9ab2;
  transform: translateX(-50%);
}

.motion-browser {
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.motion-browser__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 10px;
  border-bottom: 1px solid #edf4fa;
  background: #f7fbfe;
}

.motion-browser__bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8e4ee;
}

.motion-browser__bar i:first-child {
  background: #1ca3e8;
}

.motion-browser__url {
  flex: 1;
  margin-left: 8px;
  padding: 4px 9px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #e3edf5;
  color: #85a0b8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.motion-dashboard {
  flex: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fbfdff;
}

.motion-dashboard__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.motion-dashboard__logo {
  color: #0d2d49;
  font-size: 12px;
  font-weight: 900;
}

.motion-dashboard__user {
  color: #8aa4bb;
  font-size: 10px;
  font-weight: 700;
}

.motion-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.motion-kpi {
  padding: 9px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #edf4fa;
}

.motion-kpi span {
  display: block;
  color: #7f99b0;
  font-size: 9px;
  font-weight: 700;
}

.motion-kpi strong {
  display: block;
  margin-top: 3px;
  color: #0d2d49;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.motion-kpi small {
  display: block;
  margin-top: 3px;
  color: #1594d2;
  font-size: 9px;
  font-weight: 800;
}

.motion-chart {
  flex: 1;
  padding: 11px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #edf4fa;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.motion-chart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.motion-chart__head strong {
  color: #0d2d49;
  font-size: 10px;
  font-weight: 900;
}

.motion-chart__head div {
  display: flex;
  gap: 4px;
}

.motion-chart__head i {
  width: 18px;
  height: 7px;
  border-radius: 999px;
  background: #e7f0f7;
}

.motion-chart__head i.is-active {
  background: #1ca3e8;
}

.motion-bars {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.motion-bars span {
  flex: 1;
  min-height: 8px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #80cef7, #1498dd);
  transform: scaleY(0.05);
  transform-origin: bottom;
  transition: transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-motion.is-visible .motion-bars span,
.hero-motion__visual.is-visible .motion-bars span {
  transform: scaleY(1);
}

.motion-bars span:nth-child(1) { transition-delay: 0.1s; }
.motion-bars span:nth-child(2) { transition-delay: 0.18s; }
.motion-bars span:nth-child(3) { transition-delay: 0.26s; }
.motion-bars span:nth-child(4) { transition-delay: 0.34s; }
.motion-bars span:nth-child(5) { transition-delay: 0.42s; }
.motion-bars span:nth-child(6) { transition-delay: 0.5s; }
.motion-bars span:nth-child(7) { transition-delay: 0.58s; }
.motion-bars span:nth-child(8) { transition-delay: 0.66s; }

.motion-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #edf4fa;
  box-shadow: 0 18px 36px -18px rgba(15, 44, 71, 0.35);
  animation: motionBobble 5s ease-in-out infinite;
}

.motion-float--top {
  top: -20px;
  right: -14px;
  animation-delay: -2s;
}

.motion-float--bottom {
  bottom: -16px;
  left: -20px;
}

.motion-float__icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: linear-gradient(180deg, #eaf7ff, #cceeff);
  color: #1498dd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.motion-float__icon--blue {
  background: linear-gradient(180deg, #eaf7ff, #d6f1ff);
}

.motion-float span {
  display: block;
  color: #7f99b0;
  font-size: 10px;
  font-weight: 700;
}

.motion-float strong {
  display: block;
  color: #0d2d49;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

@keyframes motionBobble {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* スクロール表示 */
.reveal-motion {
  opacity: 0;
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.6, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.reveal-left {
  transform: translateX(-32px);
}

.reveal-right {
  transform: translateX(32px);
}

.reveal-motion.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* スマホ */
@media (max-width: 920px) {
  .hero-motion {
    padding: 72px 0 76px;
  }

  .hero-motion__inner {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 0 24px;
  }

  .hero-motion__title {
    font-size: 38px;
  }

  .hero-motion__lead {
    font-size: 15px;
  }

  .motion-laptop {
    max-width: 460px;
  }

  .motion-float {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero-motion {
    padding: 58px 0 64px;
  }

  .hero-motion__inner {
    padding: 0 20px;
    gap: 36px;
  }

  .hero-motion__badge {
    font-size: 12px;
    height: auto;
    min-height: 30px;
    padding: 6px 13px;
  }

  .hero-motion__title {
    margin: 20px 0 22px;
    font-size: 34px;
    line-height: 1.36;
  }

  .hero-motion__lead {
    margin-bottom: 28px;
    font-size: 14.5px;
    line-height: 1.9;
  }

  .hero-motion__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .motion-button {
    min-height: 52px;
    padding: 0 10px;
    font-size: 14px;
    white-space: nowrap;
  }

  .motion-laptop {
    max-width: 100%;
  }

  .motion-laptop__screen {
    border-radius: 14px 14px 5px 5px;
    padding: 10px;
  }

  .motion-laptop__base {
    margin: 0 -16px;
  }

  .motion-dashboard {
    padding: 10px;
  }

  .motion-kpis {
    gap: 6px;
  }

  .motion-kpi {
    padding: 7px;
  }

  .motion-kpi strong {
    font-size: 11px;
  }

  .motion-kpi small,
  .motion-kpi span {
    font-size: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-blob,
  .motion-float,
  .reveal-motion,
  .motion-bars span {
    animation: none;
    transition: none;
  }

  .reveal-motion {
    opacity: 1;
    transform: none;
  }

  .motion-bars span {
    transform: scaleY(1);
  }
}

.hero-motion__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #1488c7;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-motion__eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1ca3e8, rgba(28, 163, 232, 0.2));
}

.hero-motion__eyebrow::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1ca3e8;
  box-shadow: 0 0 0 5px rgba(28, 163, 232, 0.12);
}

@media (max-width: 767px) {
  .hero-motion__eyebrow {
    margin-bottom: 18px;
    font-size: 13px;
    letter-spacing: 0.06em;
  }

  .hero-motion__eyebrow::before {
    width: 26px;
  }
}

/* ================================
  Worry Motion
================================ */
.worry-motion {
  position: relative;
  padding: 96px 0;
  background:
    radial-gradient(700px 420px at 12% 10%, rgba(210, 239, 255, 0.8), transparent 58%),
    linear-gradient(180deg, #f3faff 0%, #eaf6fd 100%);
  overflow: hidden;
}

.worry-motion__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-motion__head {
  max-width: 680px;
  margin-bottom: 40px;
}

.section-motion__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1488c7;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.section-motion__eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1ca3e8, rgba(28, 163, 232, 0.2));
}

.section-motion__title {
  margin: 16px 0 16px;
  color: #0d2d49;
  font-size: 36px;
  line-height: 1.38;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.section-motion__lead {
  margin: 0;
  color: #36546e;
  font-size: 15px;
  line-height: 2;
  font-weight: 500;
}

.worry-motion__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.worry-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 26px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e4f0f8;
  box-shadow: 0 18px 36px -28px rgba(15, 44, 71, 0.28);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.worry-card:hover {
  transform: translateY(-4px);
  border-color: #cfe5f4;
  box-shadow: 0 24px 44px -28px rgba(15, 44, 71, 0.36);
}

.worry-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1488c7;
  background: linear-gradient(180deg, #eaf7ff, #d7effb);
}

.worry-card h3 {
  margin: 2px 0 8px;
  color: #0d2d49;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 900;
}

.worry-card p {
  margin: 0;
  color: #526f88;
  font-size: 13.5px;
  line-height: 1.9;
  font-weight: 500;
}

.worry-motion__answer {
  margin-top: 38px;
  padding: 34px 32px;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(500px 240px at 80% 0%, rgba(65, 178, 237, 0.35), transparent 60%),
    linear-gradient(180deg, #12395c 0%, #0d2d49 100%);
  box-shadow: 0 28px 54px -34px rgba(15, 44, 71, 0.55);
}

.worry-motion__answer h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.worry-motion__answer p {
  max-width: 720px;
  margin: 0 auto;
  color: #c7def1;
  font-size: 14px;
  line-height: 2;
  font-weight: 500;
}

/* スマホ */
@media (max-width: 767px) {
  .worry-motion {
    padding: 68px 0;
  }

  .worry-motion__inner {
    padding: 0 20px;
  }

  .section-motion__head {
    margin-bottom: 30px;
  }

  .section-motion__eyebrow {
    font-size: 12.5px;
    letter-spacing: 0.07em;
  }

  .section-motion__eyebrow::before {
    width: 24px;
  }

  .section-motion__title {
    font-size: 28px;
    line-height: 1.45;
  }

  .section-motion__lead {
    font-size: 14px;
    line-height: 1.95;
  }

  .worry-motion__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .worry-card {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 20px 18px;
    border-radius: 16px;
  }

  .worry-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .worry-card h3 {
    font-size: 15px;
  }

  .worry-card p {
    font-size: 13px;
  }

  .worry-motion__answer {
    margin-top: 28px;
    padding: 28px 20px;
    border-radius: 18px;
  }

  .worry-motion__answer h3 {
    font-size: 21px;
  }

  .worry-motion__answer p {
    font-size: 13.5px;
    text-align: left;
  }
}

/* ================================
  Flow Motion
================================ */
.flow-motion {
  position: relative;
  padding: 96px 0;
  background:
    radial-gradient(700px 420px at 88% 8%, rgba(210, 239, 255, 0.75), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #f3faff 100%);
  overflow: hidden;
}

.flow-motion__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
}

.flow-motion__timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 42px;
}

.flow-motion__timeline::before {
  content: "";
  position: absolute;
  left: 33px;
  top: 8px;
  width: 2px;
  height: calc(100% - 16px);
  border-radius: 999px;
  background: linear-gradient(180deg, #1ca3e8, rgba(28, 163, 232, 0.08));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.flow-motion__timeline.is-visible::before,
.flow-motion__timeline:has(.is-visible)::before {
  transform: scaleY(1);
}

.flow-motion__item {
  position: relative;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 22px;
  align-items: stretch;
}

.flow-motion__number {
  position: relative;
  z-index: 2;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1488c7;
  background: #fff;
  border: 1px solid #cfe5f4;
  box-shadow: 0 16px 30px -22px rgba(15, 44, 71, 0.35);
  font-family: Inter, "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.flow-motion__card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 26px 28px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e4f0f8;
  box-shadow: 0 20px 42px -30px rgba(15, 44, 71, 0.3);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.flow-motion__card:hover {
  transform: translateY(-4px);
  border-color: #cfe5f4;
  box-shadow: 0 28px 54px -32px rgba(15, 44, 71, 0.4);
}

.flow-motion__icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1488c7;
  background: linear-gradient(180deg, #eaf7ff, #d6effb);
}

.flow-motion__tag {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 7px;
  color: #1594d2;
  background: #eaf7ff;
  font-family: Inter, "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.flow-motion__content h3 {
  margin: 0 0 8px;
  color: #0d2d49;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 900;
}

.flow-motion__content p {
  margin: 0;
  color: #526f88;
  font-size: 14px;
  line-height: 1.95;
  font-weight: 500;
}

/* 表示時の少しだけリッチな動き */
.flow-motion__item.is-visible .flow-motion__number {
  animation: flowPop 0.55s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.flow-motion__item.is-visible .flow-motion__icon svg {
  animation: flowWiggle 0.65s ease both;
}

@keyframes flowPop {
  0% {
    transform: scale(0.82);
    opacity: 0;
  }

  70% {
    transform: scale(1.06);
    opacity: 1;
  }

  100% {
    transform: scale(1);
  }
}

@keyframes flowWiggle {
  0%, 100% {
    transform: rotate(0);
  }

  25% {
    transform: rotate(-7deg);
  }

  75% {
    transform: rotate(7deg);
  }
}

/* スマホ */
@media (max-width: 767px) {
  .flow-motion {
    padding: 68px 0;
  }

  .flow-motion__inner {
    padding: 0 20px;
  }

  .flow-motion__timeline {
    gap: 18px;
    margin-top: 34px;
  }

  .flow-motion__timeline::before {
    left: 25px;
  }

  .flow-motion__item {
    grid-template-columns: 52px 1fr;
    gap: 14px;
  }

  .flow-motion__number {
    width: 52px;
    height: 52px;
    font-size: 16px;
  }

  .flow-motion__card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 20px;
    border-radius: 18px;
  }

  .flow-motion__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .flow-motion__content h3 {
    font-size: 16px;
  }

  .flow-motion__content p {
    font-size: 13.5px;
    line-height: 1.9;
  }
}

/* ================================
  Orange Gloss CTA Button
================================ */
.motion-button--primary {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(
    180deg,
    #ff9a5c 0%,
    #ff7a3a 52%,
    #ff5e1f 100%
  );
  box-shadow:
    0 16px 30px -14px rgba(255, 94, 31, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 0 rgba(0, 0, 0, 0.12);
}

/* 光沢の流れる表現 */
.motion-button--primary::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -45%;
  width: 40%;
  height: 220%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  transform: rotate(25deg);
  animation: orangeShine 3.2s ease-in-out infinite;
  pointer-events: none;
}

/* 外側にふわっと光る表現 */
.motion-button--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(255, 122, 58, 0.58);
  animation: orangePulse 2.6s ease-out infinite;
  pointer-events: none;
}

.motion-button--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 38px -16px rgba(255, 94, 31, 0.78),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -2px 0 rgba(0, 0, 0, 0.12);
}

@keyframes orangeShine {
  0% {
    left: -55%;
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  42% {
    left: 115%;
    opacity: 0;
  }

  100% {
    left: 115%;
    opacity: 0;
  }
}

@keyframes orangePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 122, 58, 0.58);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(255, 122, 58, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 122, 58, 0);
  }
}

/* ================================
  CTA Button - Same as attached LP
================================ */
.motion-button--primary,
.final .motion-button--primary,
.sticky-cta .motion-button--primary {
  position: relative;
  overflow: hidden;
  color: #fff !important;
  background: linear-gradient(180deg, #ff8a4f 0%, #ff7a3a 60%, #ff5e1f 100%) !important;
  border: 1px solid transparent !important;
  box-shadow:
    0 6px 16px -6px rgba(255, 94, 31, 0.55),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}

.motion-button--primary:hover,
.final .motion-button--primary:hover,
.sticky-cta .motion-button--primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 10px 22px -8px rgba(255, 94, 31, 0.6),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}

/* 添付LPと同じpulse */
.motion-button--primary::after,
.final .motion-button--primary::after,
.sticky-cta .motion-button--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(255, 122, 58, 0.6);
  animation: ctaPulse 2.6s ease-out infinite;
  pointer-events: none;
}

/* 光沢が横切る動き */
.motion-button--primary::before,
.final .motion-button--primary::before,
.sticky-cta .motion-button--primary::before {
  content: "";
  position: absolute;
  top: -70%;
  left: -45%;
  width: 38%;
  height: 240%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transform: rotate(25deg);
  animation: ctaShine 3.4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 122, 58, 0.55);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(255, 122, 58, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 122, 58, 0);
  }
}

@keyframes ctaShine {
  0% {
    left: -55%;
    opacity: 0;
  }

  16% {
    opacity: 1;
  }

  42% {
    left: 120%;
    opacity: 0;
  }

  100% {
    left: 120%;
    opacity: 0;
  }
}

/* ================================
  Floating CTA - Same as attached LP
================================ */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 80;
  transform: translateX(-50%) translateY(130%);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 8px 8px 22px;
  border-radius: 999px;
  color: #fff;
  background: rgba(14, 44, 74, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 50px -20px rgba(15, 44, 71, 0.5);
  backdrop-filter: blur(12px);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.sticky-cta.is-show {
  transform: translateX(-50%) translateY(0);
}

.sticky-cta__text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
  white-space: nowrap;
}

.sticky-cta__text small {
  color: #8fb4d6;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.sticky-cta__text span {
  color: #fff;
  font-size: 13.5px;
  font-weight: 800;
}

.sticky-cta .motion-button {
  min-height: 38px;
  padding: 0 18px;
  font-size: 12.5px;
}

/* スマホ */
@media (max-width: 640px) {
  .sticky-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    transform: translateY(140%);
    padding: 8px 8px 8px 18px;
    justify-content: space-between;
  }

  .sticky-cta.is-show {
    transform: translateY(0);
  }

  .sticky-cta__text small {
    display: none;
  }

  .sticky-cta__text span {
    font-size: 12.5px;
  }

  .sticky-cta .motion-button {
    min-height: 38px;
    padding: 0 16px;
    font-size: 12.5px;
    white-space: nowrap;
  }
}