@charset "UTF-8";
/* _variables.scss または _plan.scss の先頭 */
/* --- scss/_base.scss --- */
/* --- この世界の基本ルール --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Noto Serif JP", serif;
  background-color: #1a2a3a;
  color: #b8c0cc;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.no-scroll {
  overflow: hidden;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Pirata One", cursive;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 0.75em;
  letter-spacing: 1px;
}

a {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover, a:focus {
  color: rgb(255, 227, 76.5);
  text-decoration: none;
}

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

#golden-ball-follower {
  position: fixed;
  z-index: 999;
  width: 20px;
  height: 20px;
  background-color: #ffd700;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
  pointer-events: none;
  opacity: 0;
  transform: scale(0);
}

strong {
  color: #f00;
  font-weight: bolod;
}

/* ==================================================
   Loading Animation (V2.0 - 3色戦略版)
   (このブロックで既存のローダーSASSを丸ごと差し替え)
================================================== */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1a2a3a;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}
.loader.loader--hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__content {
  width: 200px;
  text-align: center;
}

.loader__svg {
  width: 100%;
  margin-bottom: 1.5rem;
}

/* 「線を書く」キーフレーム (変更なし) */
@keyframes draw-tree {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}
/* SVGの線（path, circle, rect）の初期設定 */
.loader-path {
  /* ★★★ 1. 基本色を「金」に設定 ★★★ */
  stroke: #ffd700;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw-tree 2.5s ease-in-out infinite alternate;
}

/* ★★★ 2. 一部の線を「青」に上書き ★★★ */
.loader-path:nth-child(2),
.loader-path:nth-child(5) {
  stroke: #00bfff;
}

/* ★★★ 3. 一部の線を「赤」に上書き ★★★ */
.loader-path:nth-child(3),
.loader-path:nth-child(7) {
  stroke: #e63946;
}

/* アニメーションの各要素に「遅延」を加えて、順番に描かれるように見せる (変更なし) */
.loader-path:nth-child(2) {
  animation-delay: 0.1s;
}

.loader-path:nth-child(3) {
  animation-delay: 0.2s;
}

.loader-path:nth-child(4) {
  animation-delay: 0.3s;
}

.loader-path:nth-child(5) {
  animation-delay: 0.5s;
}

.loader-path:nth-child(6) {
  animation-delay: 0.4s;
}

.loader-path:nth-child(7) {
  animation-delay: 0.6s;
}

/* テキスト "THINKING..." のアニメーション */
.loader__text {
  font-family: "Pirata One", cursive;
  font-size: 1.2rem;
  color: rgba(244, 242, 237, 0.85);
  letter-spacing: 2px;
}
.loader__text span {
  opacity: 0;
  animation: fade-in-letter 1.5s ease-out infinite alternate;
}
.loader__text {
  /* 1文字ずつ、出現するタイミングをずらす */
}
.loader__text span:nth-child(1) {
  animation-delay: 0.1s;
}
.loader__text span:nth-child(2) {
  animation-delay: 0.2s;
}
.loader__text span:nth-child(3) {
  animation-delay: 0.3s;
}
.loader__text span:nth-child(4) {
  animation-delay: 0.4s;
}
.loader__text span:nth-child(5) {
  animation-delay: 0.5s;
}
.loader__text span:nth-child(6) {
  animation-delay: 0.6s;
}
.loader__text span:nth-child(7) {
  animation-delay: 0.7s;
}
.loader__text span:nth-child(8) {
  animation-delay: 0.8s;
}
.loader__text span:nth-child(9) {
  animation-delay: 0.9s;
}
.loader__text span:nth-child(10) {
  animation-delay: 1s;
}
.loader__text span:nth-child(11) {
  animation-delay: 1.1s;
}

/* 文字がフェードインするキーフレーム (変更なし) */
@keyframes fade-in-letter {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}
.btn, .btn--primary, .btn--glow {
  display: inline-block;
  font-family: "Pirata One", cursive;
  font-size: 1rem;
  padding: 12px 30px;
  border-radius: 50px;
  border: 2px solid;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-decoration: none;
}
.btn:hover, .btn--primary:hover, .btn--glow:hover {
  text-decoration: none;
}

.btn--primary, .btn--glow {
  background-color: #e63946;
  border-color: #e63946;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.btn--primary:hover, .btn--glow:hover {
  background-color: rgb(232.8587443946, 79.6412556054, 91.1547085202);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  color: #fff;
}

/* --- scss/_layout.scss --- */
/* --- 城の骨格（レイアウト） --- */
.header {
  background-color: rgba(26, 42, 58, 0.8);
  padding: 0 15px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #3a4a5a;
}

.header__inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: "Pirata One", cursive;
  color: #ffd700;
  font-size: 2rem;
}

.header__logo-icon {
  height: 40px;
  margin-right: 10px;
}

.header__nav {
  display: flex;
  position: static;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  background-color: transparent;
  width: auto;
  height: auto;
}
.header__nav ul {
  list-style: none;
  display: flex;
}
.header__nav li:not(:last-child) {
  margin-right: 30px;
}
.header__nav a {
  font-weight: bold;
  text-decoration: none;
}
@media screen and (max-width: 1096px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(244, 242, 237, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  .header__nav.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header__nav ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .header__nav li {
    margin: 0 0 40px 0;
  }
  .header__nav a {
    font-size: 1.5rem;
    font-family: "Press Start 2P", cursive;
  }
  .header__nav.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.hamburger-button {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
}
.hamburger-button__line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}
.hamburger-button__line:nth-child(1) {
  top: 8px;
}
.hamburger-button__line:nth-child(2) {
  top: 19px;
}
.hamburger-button__line:nth-child(3) {
  bottom: 8px;
}
.hamburger-button.is-active .hamburger-button__line:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}
.hamburger-button.is-active .hamburger-button__line:nth-child(2) {
  opacity: 0;
}
.hamburger-button.is-active .hamburger-button__line:nth-child(3) {
  bottom: 19px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 1096px) {
  .hamburger-button {
    display: block;
  }
}

.footer {
  padding: 3rem 0;
  text-align: center;
  background-color: rgb(21.2642857143, 34.35, 47.4357142857);
  border-top: 1px solid #3a4a5a;
}
.footer .footer__copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  color: #e0e6f0;
  opacity: 0.7;
}
.footer__nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.footer__nav-link {
  color: #e0e6f0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer__nav-link:hover {
  color: #ffd700;
  text-decoration: underline;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #1a2a3a;
  clip-path: polygon(0 100%, 0 25%, 5% 35%, 10% 20%, 15% 40%, 20% 22%, 25% 38%, 30% 25%, 35% 42%, 40% 20%, 45% 35%, 50% 25%, 55% 40%, 60% 20%, 65% 38%, 70% 22%, 75% 40%, 80% 25%, 85% 35%, 90% 20%, 95% 38%, 100% 25%, 100% 100%);
  margin-top: -1px;
}

.section:nth-child(even) {
  background-color: rgb(30.7357142857, 49.65, 68.5642857143);
}
.section:nth-child(even)::before {
  background-color: rgb(30.7357142857, 49.65, 68.5642857143);
}

.section-title, .story-content .story-cta-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1.5em;
  color: #ffd700;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.section-briefing {
  max-width: 700px;
  margin: 0 auto 4em auto;
  padding-left: 1.5rem;
  border-left: 3px solid #ffd700;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e6f0;
  opacity: 0.9;
}

/* style.css or a relevant .scss file */
#print-qr-code {
  display: none; /* 普段は隠しておく */
  position: fixed;
  bottom: 20px;
  right: 20px;
  border: 5px solid white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media print {
  /* 印刷プレビューの時だけ表示する */
  #print-qr-code {
    display: block !important;
  }
  /* 印刷時に邪魔になる要素を隠す (例) */
  .main-header, .floating-action-bar, .stxt-sidebar {
    display: none !important;
  }
  .stxt-page-layout, .stxt-main-content {
    margin: 0;
    padding: 0;
  }
}
.legal-section {
  padding: 100px 0;
  background-color: rgb(30.7357142857, 49.65, 68.5642857143);
}

.legal-content {
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 3rem 4rem;
  background-color: rgb(33.8928571429, 54.75, 75.6071428571);
  border: 1px solid #3a4a5a;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 768px) {
  .legal-content {
    padding: 2.5rem 3rem;
  }
}
@media screen and (max-width: 670px) {
  .legal-content {
    padding: 1.5rem;
  }
}
.legal-content p {
  line-height: 2;
  margin-bottom: 1.5em;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.legal-content h2 {
  font-family: "Pirata One", cursive;
  font-size: 1.8rem;
  color: #ffd700;
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}
.legal-content ol {
  margin-left: 2em;
  margin-bottom: 1.5em;
}
.legal-content ol li {
  line-height: 1.8;
  margin-bottom: 0.5em;
}
.legal-content p[style="text-align: right;"] {
  margin-top: 3rem;
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.6);
}

.contact__wrapper,
.legal-content {
  background-color: rgb(33.8928571429, 54.75, 75.6071428571);
  border: 1px solid #3a4a5a;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 3rem;
}
.contact__wrapper label,
.legal-content label {
  color: rgba(255, 255, 255, 0.9);
}
.contact__wrapper h1, .contact__wrapper h2, .contact__wrapper h3,
.legal-content h1,
.legal-content h2,
.legal-content h3 {
  color: #ffd700;
}
.contact__wrapper p, .contact__wrapper li,
.legal-content p,
.legal-content li {
  color: rgba(255, 255, 255, 0.9);
}

.form-group input[type=text],
.form-group input[type=email],
.form-group textarea,
.form-group select {
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}
.form-group input[type=text]::placeholder,
.form-group input[type=email]::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.form-group input[type=text]:focus,
.form-group input[type=email]:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #ffd700;
  background-color: rgba(26, 42, 58, 0.5);
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.target-card {
  position: relative;
  padding-top: 3.5rem;
  background-color: rgb(57.5714285714, 93, 128.4285714286);
  border: 1px solid #3a4a5a;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4rem;
}

.target-card .target-icon {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.target-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #e0e6f0;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.target-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: white;
}

.target-card__tag-wrapper {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.target-card__tag {
  background-color: #ffd700;
  color: #1a2a3a;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
  white-space: nowrap;
}
.target-card__tag:not(span) {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
}

.target-card__tag--corporate {
  background-color: #457B9D;
  color: #fff;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Noto Serif JP", serif;
  background-color: #1a2a3a;
  color: #b8c0cc;
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 100px 0;
  border-bottom: 1px solid #3a4a5a;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Pirata One", cursive;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 0.75em;
  color: #f4f2ed;
}

a {
  color: #ffd700;
  text-decoration: none;
}
a:hover {
  color: rgb(255, 227, 76.5);
}

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

.page-title {
  font-family: "Pirata One", cursive;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #f4f2ed;
  position: relative;
  padding-bottom: 1.5rem;
}
.page-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ffd700;
  border-radius: 2px;
}
@media screen and (max-width: 768px) {
  .page-title {
    font-size: 2.5rem;
  }
}

.section-title, .story-content .story-cta-title {
  font-family: "Pirata One", cursive;
  font-size: 1.8rem;
  text-align: center;
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  color: #ffd700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  padding-bottom: 1rem;
  border-bottom: 2px dotted rgba(255, 215, 0, 0.5);
}
@media screen and (max-width: 768px) {
  .section-title, .story-content .story-cta-title {
    font-size: 1.6rem;
  }
}

.section-briefing {
  max-width: 700px;
  margin: 0 auto 4em auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(244, 242, 237, 0.85);
}

.section-divider {
  height: 60px;
}

.header {
  background-color: rgba(26, 42, 58, 0.8);
  padding: 0 15px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #3a4a5a;
}
.header .header__inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}
.header .header__logo {
  font-family: "Pirata One", cursive;
  font-size: 1.8rem;
  color: #ffd700;
  text-decoration: none;
}

.footer {
  padding: 3rem 0;
  text-align: center;
  background-color: rgb(22.8428571429, 36.9, 50.9571428571);
  border-top: 1px solid #3a4a5a;
}
.footer .footer__copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  color: #f4f2ed;
  opacity: 0.7;
}

.btn, .btn--primary, .btn--glow {
  display: inline-block;
  font-family: "Pirata One", cursive;
  font-size: 1rem;
  padding: 12px 30px;
  border-radius: 50px;
  border: 2px solid;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.btn--primary, .btn--glow {
  background-color: #e63946;
  border-color: #e63946;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.btn--primary:hover, .btn--glow:hover {
  background-color: rgb(232.8587443946, 79.6412556054, 91.1547085202);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.btn--secondary {
  background-color: transparent;
  border-color: #ffd700;
  color: #ffd700;
  transition: all 0.3s ease;
}
.btn--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  color: #ffd700;
  transform: translateY(-3px);
  border-color: #ffd700;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
.hero .hero-video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 背景がはみ出る隙間を防ぐため少し拡大しておく (ぼかし時の端のちらつき対策) */
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -2;
  object-fit: cover;
  /* ブラー効果（ビデオ/画像自体をぼかす） */
  filter: blur(6px);
  /* 少しスケールして端の透けを防止 */
  transform: translate(-50%, -50%) scale(1.06);
  will-change: transform, filter;
}
@media screen and (max-width: 768px) {
  .hero .hero-video-background {
    /* モバイルではぼかしを控えめに */
    filter: blur(3px);
    transform: translate(-50%, -50%) scale(1.03);
  }
}
.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 半透明のオーバーレイ。backdrop-filter を使って背景をぼかす（サポートされるブラウザで有効） */
  background-color: rgba(0, 0, 0, 0.35);
  z-index: -1;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  /* pointer-events: none にして、オーバーレイがクリックを邪魔しないようにする */
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .hero .hero-overlay {
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero .hero-main-message {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 0;
}
.hero .hero-main-message h1 {
  font-size: 3rem;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.9);
  animation: slideInUp 1s ease-out 0.3s backwards;
}
@media screen and (max-width: 768px) {
  .hero .hero-main-message h1 {
    font-size: 2.2rem;
  }
}
.hero .hero-main-message .hero-subtitle {
  font-size: 1.1rem;
  color: rgba(244, 242, 237, 0.85);
  max-width: 700px;
  margin-bottom: 1.5rem;
  animation: slideInUp 1s ease-out 0.6s backwards;
  background: rgba(26, 42, 58, 0.85);
  backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.hero .hero-main-message .hero-subtitle span {
  display: block;
  margin-bottom: 0.5em;
}
.hero .hero-main-message .hero-subtitle span:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .hero .hero-main-message .hero-subtitle {
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
  }
}
.hero .hero-main-message .hero-subtitle--direct {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #ffd700;
  font-size: 0.95rem;
  margin-top: 1.5rem;
  opacity: 0.95;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}
.hero .hero-main-message .hero-subtitle--direct br {
  display: block;
  content: "";
  margin: 0.25em 0;
}
@media screen and (max-width: 768px) {
  .hero .hero-main-message .hero-subtitle--direct {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

.hero__cta-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .hero__cta-group {
    flex-direction: column;
  }
}

.problem-section {
  background-color: rgb(22.8428571429, 36.9, 50.9571428571);
}
.problem-section .section-title .sp-only, .problem-section .story-content .story-cta-title .sp-only, .story-content .problem-section .story-cta-title .sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .problem-section .section-title .sp-only, .problem-section .story-content .story-cta-title .sp-only, .story-content .problem-section .story-cta-title .sp-only {
    display: block;
  }
}

.problem-grid {
  display: grid;
  gap: 1.5rem;
}
.problem-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .problem-grid--3 {
    grid-template-columns: 1fr;
  }
}

.problem-card {
  background-color: rgb(33.8928571429, 54.75, 75.6071428571);
  border: 1px solid #3a4a5a;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: left;
  transition: all 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  padding-top: 3rem;
}
.problem-card::before {
  content: "01";
  position: absolute;
  top: -10px;
  left: 10px;
  font-family: "Pirata One", cursive;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(58, 74, 90, 0.6);
  z-index: 1;
  user-select: none;
}
.problem-card:nth-child(2)::before {
  content: "02";
}
.problem-card:nth-child(3)::before {
  content: "03";
}
.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.problem-card:hover .problem-icon {
  transform: rotate(-10deg) scale(1.1);
}
.problem-card .problem-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  filter: none;
  opacity: 1;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}
.problem-card h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  font-size: 1.1rem;
  color: #f4f2ed;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}
.problem-card p {
  color: rgba(244, 242, 237, 0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}
.problem-card {
  /* ★★★ ここから色分け追記 ★★★ */
}
.problem-card:nth-child(1) {
  border-color: rgba(0, 191, 255, 0.6);
}
.problem-card:nth-child(1) h3 {
  color: #00bfff;
}
.problem-card:nth-child(1):hover {
  border-color: #00bfff;
}
.problem-card:nth-child(2) {
  border-color: rgba(255, 215, 0, 0.6);
}
.problem-card:nth-child(2) h3 {
  color: #ffd700;
}
.problem-card:nth-child(2):hover {
  border-color: #ffd700;
}
.problem-card:nth-child(3) {
  border-color: rgba(230, 57, 70, 0.6);
}
.problem-card:nth-child(3) h3 {
  color: #e63946;
}
.problem-card:nth-child(3):hover {
  border-color: #e63946;
}
.problem-card {
  /* ★★★ 色分け追記ここまで ★★★ */
}

.solution-section {
  background-color: rgb(22.8428571429, 36.9, 50.9571428571);
  border-top: 1px solid #3a4a5a;
  border-bottom: 1px solid #3a4a5a;
}

.solution-grid {
  display: grid;
  gap: 30px;
}
.solution-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .solution-grid--3 {
    grid-template-columns: 1fr;
  }
}

/* home.scss 377行目あたり .solution-card の定義を差し替え */
/* ==================================================
   home.scss (V5.7) 
   .solution-card ブロック差し替え
================================================== */
.solution-card {
  position: relative;
  overflow: hidden;
  background-color: rgb(33.8928571429, 54.75, 75.6071428571);
  border: 1px solid #3a4a5a;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(26, 42, 58, 0.5);
}
.solution-card {
  /* ★★★ z-index 修正 (V5.7) ★★★ */
  /* 番号が一番上に来るようにする */
}
.solution-card__number {
  position: absolute;
  top: -10px;
  right: 10px;
  font-family: "Pirata One", cursive;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(58, 74, 90, 0.6);
  user-select: none;
  z-index: 3;
}
.solution-card {
  /* 画像は一番下に */
}
.solution-card__image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid #3a4a5a;
  position: relative;
  z-index: 1;
}
.solution-card__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.solution-card:hover .solution-card__image-wrapper img {
  transform: scale(1.05);
}
.solution-card {
  /* コンテンツは中間 (タグより下、画像より上) */
}
.solution-card__content {
  position: relative;
  z-index: 2;
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  /* ★★★ タグを左上に配置するため、タグの分の余白を確保 (V5.7) ★★★ */
  padding-top: 4rem;
}
.solution-card {
  /* ★★★ z-index / タグ位置 修正ここまで ★★★ */
}
.solution-card__title {
  font-family: "Pirata One", cursive;
  font-size: 2rem;
  color: #f4f2ed;
  margin-bottom: 0.25em;
  transition: color 0.3s ease;
}
.solution-card {
  /* ★★★ タグスタイル + 左上配置 (V5.7) ★★★ */
}
.solution-card__subtitle {
  display: inline-block;
  align-self: flex-start;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 20px;
  line-height: 1.4;
  background-color: #3a4a5a;
  color: #1a2a3a;
  transition: background-color 0.3s ease, color 0.3s ease;
  /* ★左上に配置 */
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 3;
}
.solution-card__desc {
  color: #f4f2ed;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5em;
  flex-grow: 1;
}
.solution-card .btn, .solution-card .btn--primary, .solution-card .btn--glow {
  margin-top: auto;
}
.solution-card {
  /* ★★★ SASSエラー修正 (V5.7) ★★★ */
  /* エラー原因: &:nth-child(1) の中で &__title は使えません。
    修正: & .solution-card__title のように、子孫セレクタとして指定します。
  */
}
.solution-card:nth-child(1) {
  border-color: rgba(0, 191, 255, 0.6);
}
.solution-card:nth-child(1) .solution-card__title {
  color: #00bfff;
}
.solution-card:nth-child(1) .solution-card__subtitle {
  background-color: #00bfff;
  color: #1a2a3a;
}
.solution-card:nth-child(1) .btn--secondary {
  border-color: #00bfff;
  color: #00bfff;
}
.solution-card:nth-child(1) .btn--secondary:hover {
  background-color: rgba(0, 191, 255, 0.1);
}
.solution-card:nth-child(1):hover {
  border-color: #00bfff;
}
.solution-card:nth-child(2) {
  border-color: rgba(255, 215, 0, 0.6);
}
.solution-card:nth-child(2) .solution-card__title {
  color: #ffd700;
}
.solution-card:nth-child(2) .solution-card__subtitle {
  background-color: #ffd700;
  color: #1a2a3a;
}
.solution-card:nth-child(2) .btn--secondary {
  border-color: #ffd700;
  color: #ffd700;
}
.solution-card:nth-child(2) .btn--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
}
.solution-card:nth-child(2):hover {
  border-color: #ffd700;
}
.solution-card:nth-child(3) {
  border-color: rgba(230, 57, 70, 0.6);
}
.solution-card:nth-child(3) .solution-card__title {
  color: #e63946;
}
.solution-card:nth-child(3) .solution-card__subtitle {
  background-color: #e63946;
  color: #fff;
}
.solution-card:nth-child(3) .btn--secondary {
  border-color: #e63946;
  color: #e63946;
}
.solution-card:nth-child(3) .btn--secondary:hover {
  background-color: rgba(230, 57, 70, 0.1);
}
.solution-card:nth-child(3):hover {
  border-color: #e63946;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 5px rgba(230, 57, 70, 0.5), 0 0 10px rgba(230, 57, 70, 0.3);
  }
  50% {
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.8), 0 0 25px rgba(230, 57, 70, 0.5);
  }
  100% {
    box-shadow: 0 0 5px rgba(230, 57, 70, 0.5), 0 0 10px rgba(230, 57, 70, 0.3);
  }
}
.hero-main-message h1 {
  animation: slideInUp 1s ease-out 0.3s backwards;
}
.hero-main-message .hero-subtitle {
  animation: slideInUp 1s ease-out 0.6s backwards;
}
.hero-main-message .hero__cta-group {
  animation: fadeIn 1s ease-out 0.9s backwards;
}

.btn--glow {
  animation: pulseGlow 2.5s infinite ease-in-out;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-hero {
  padding: 80px 0;
  text-align: center;
  background-color: rgb(21.2642857143, 34.35, 47.4357142857);
  border-bottom: 1px solid #3a4a5a;
}
.page-hero__title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.page-hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.problem-card {
  background-color: rgb(33.8928571429, 54.75, 75.6071428571);
  border: 1px solid #3a4a5a;
  border-radius: 8px;
  padding: 1.5rem;
  font-weight: bold;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card h3 {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 1rem;
  border-left: 4px solid #ffd700;
  padding-left: 1rem;
}
.feature-card p {
  color: rgba(255, 255, 255, 0.8);
}

.process-list {
  list-style: none;
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  counter-reset: process-counter;
}

.process-item {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 4rem;
  background-color: rgb(30.7357142857, 49.65, 68.5642857143);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.process-item::before {
  counter-increment: process-counter;
  content: counter(process-counter);
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  font-family: "Pirata One", cursive;
  font-size: 2rem;
  color: #ffd700;
}
.process-item strong {
  display: block;
  font-size: 1.2rem;
  color: #fff;
}
.process-item p {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  border: 2px solid #3a4a5a;
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.pricing-card h3 {
  font-size: 1.8rem;
  text-align: center;
  color: #ffd700;
}
.pricing-card .pricing-price {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  margin: 1rem 0;
}
.pricing-card .pricing-price .tax-note {
  font-size: 1rem;
  font-weight: normal;
}
.pricing-card .pricing-description {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  min-height: 50px;
}
.pricing-card ul {
  list-style: "✅ ";
  padding-left: 1.5rem;
  margin-top: 1.5rem;
  flex-grow: 1;
}
.pricing-card ul li {
  padding-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ==================================================
   Services Page (pages/_services.scss)
================================================== */
.service-hero {
  position: relative;
  overflow: hidden;
  padding: 180px 0 100px 0;
  text-align: center;
  border-bottom: 1px solid #3a4a5a;
}
.service-hero .page-title {
  color: #ffd700;
}
.service-hero .section-briefing {
  font-size: 1.15rem;
  color: rgba(244, 242, 237, 0.85);
}

/* ==================================================
   Hero Video Fix (Common Style)
================================================== */
/* .service-hero と .hero の両方に
  「relative」と「overflow」が設定されていることを確認 
*/
.hero,
.service-hero {
  position: relative;
  overflow: hidden;
  /* ... 他のスタイル ... */
}

/* videoタグ自体に適用する、
  画面いっぱいに中央配置するスタイル
*/
.hero-video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -2;
  object-fit: cover;
}

/* 動画の上に被せる「暗いオーバーレイ」
  (※home.scssに .hero-overlay が定義済みなら、
   .service-hero__background の中でも
   <div class="hero-overlay"></div> を使えばOKです)
*/
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

/* services.php の .service-hero__background は、
  video と overlay の「親」として機能する
*/
.service-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.service-details-section .container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: rgb(33.8928571429, 54.75, 75.6071428571);
  border: 1px solid #3a4a5a;
  border-radius: 12px;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .service-detail-card {
    grid-template-columns: 1fr;
  }
}
.service-detail-card__number {
  position: absolute;
  top: -15px;
  right: 20px;
  font-family: "Pirata One", cursive;
  font-size: 10rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(58, 74, 90, 0.4);
  z-index: 1;
  user-select: none;
}
@media screen and (max-width: 768px) {
  .service-detail-card__number {
    font-size: 8rem;
    top: 0;
    right: 10px;
  }
}
.service-detail-card__image-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.service-detail-card__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
.service-detail-card__content {
  position: relative;
  z-index: 2;
}
.service-detail-card--reverse {
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .service-detail-card--reverse {
    grid-template-columns: 1fr;
  }
}
.service-detail-card--reverse .service-detail-card__image-wrapper {
  grid-column: 2/3;
  grid-row: 1/2;
}
@media screen and (max-width: 768px) {
  .service-detail-card--reverse .service-detail-card__image-wrapper {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.service-detail-card--reverse .service-detail-card__content {
  grid-column: 1/2;
  grid-row: 1/2;
}
@media screen and (max-width: 768px) {
  .service-detail-card--reverse .service-detail-card__content {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.service-detail-card--reverse .service-detail-card__number {
  right: auto;
  left: 20px;
}
@media screen and (max-width: 768px) {
  .service-detail-card--reverse .service-detail-card__number {
    right: 10px;
    left: auto;
  }
}
.service-detail-card__title {
  font-family: "Pirata One", cursive;
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 0.25em;
}
.service-detail-card__subtitle {
  color: rgba(244, 242, 237, 0.85);
  font-size: 1rem;
  margin-bottom: 1.5em;
  display: block;
}
.service-detail-card__desc {
  color: #f4f2ed;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2em;
}
.service-detail-card__subheading {
  font-family: "Pirata One", cursive;
  font-size: 1.5rem;
  color: #ffd700;
  border-bottom: 1px solid #3a4a5a;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
}
.service-detail-card__list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 2.5em;
}
.service-detail-card__list li {
  position: relative;
  padding-left: 1.8em;
  margin-bottom: 0.75em;
  color: rgba(244, 242, 237, 0.85);
}
.service-detail-card__list li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Pirata One", cursive;
  color: #ffd700;
  font-size: 1.5rem;
  line-height: 1;
}
.service-detail-card .btn, .service-detail-card .btn--primary, .service-detail-card .btn--glow {
  font-size: 1.1rem;
}

/* ==================================================
   Services Page (pages/_services.scss) 色分け
   (※home.scss に書くか _services.scss に書くかはお任せします)
================================================== */
/* home.scss 700行目あたり .service-detail-card の定義を差し替え */
.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  background-color: rgb(33.8928571429, 54.75, 75.6071428571);
  border: 1px solid #3a4a5a;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 3rem;
  transition: border-color 0.3s ease;
  position: relative;
}
@media screen and (max-width: 768px) {
  .service-detail-card {
    grid-template-columns: 1fr;
  }
}
.service-detail-card {
  /* ★★★ (V5.6) コンテンツにパディングを追加 ★★★ */
}
.service-detail-card .service-detail-card__content {
  padding-top: 4rem;
  position: relative;
  z-index: 2;
}
.service-detail-card {
  /* ★★★ (V5.6) タグを左上に配置 ★★★ */
}
.service-detail-card .service-detail-card__subtitle {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 5px 14px;
  border-radius: 20px;
  line-height: 1.4;
  background-color: #3a4a5a;
  color: #1a2a3a;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 3;
}
.service-detail-card#service-web {
  border-color: rgba(0, 191, 255, 0.8);
}
.service-detail-card#service-web:hover {
  border-color: #00bfff;
}
.service-detail-card#service-web .service-detail-card__title,
.service-detail-card#service-web .service-detail-card__subheading {
  color: #00bfff;
}
.service-detail-card#service-web .service-detail-card__subtitle {
  background-color: #00bfff;
  color: #1a2a3a;
}
.service-detail-card#service-web .service-detail-card__list li::before {
  color: #00bfff;
}
.service-detail-card#service-thinking {
  border-color: rgba(255, 215, 0, 0.8);
}
.service-detail-card#service-thinking:hover {
  border-color: #ffd700;
}
.service-detail-card#service-thinking .service-detail-card__title,
.service-detail-card#service-thinking .service-detail-card__subheading {
  color: #ffd700;
}
.service-detail-card#service-thinking .service-detail-card__subtitle {
  background-color: #ffd700;
  color: #1a2a3a;
}
.service-detail-card#service-thinking .service-detail-card__list li::before {
  color: #ffd700;
}
.service-detail-card#service-event {
  border-color: rgba(230, 57, 70, 0.8);
}
.service-detail-card#service-event:hover {
  border-color: #e63946;
}
.service-detail-card#service-event .service-detail-card__title,
.service-detail-card#service-event .service-detail-card__subheading {
  color: #e63946;
}
.service-detail-card#service-event .service-detail-card__subtitle {
  background-color: #e63946;
  color: #fff;
}
.service-detail-card#service-event .service-detail-card__list li::before {
  color: #e63946;
}

/* ==================================================
   Contact Page (pages/_contact.scss) V4.0
================================================== */
.contact-section .container--narrow {
  max-width: 700px;
}

.chat-form__wrapper {
  background-color: rgb(22.8428571429, 36.9, 50.9571428571);
  border: 1px solid #3a4a5a;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.chat-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.chat-message {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  max-width: 90%;
}

.chat-message__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  background-color: rgb(33.8928571429, 54.75, 75.6071428571);
  border: 2px solid #3a4a5a;
  flex-shrink: 0;
}
.chat-message__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-message__bubble {
  background-color: rgb(33.8928571429, 54.75, 75.6071428571);
  border: 1px solid #3a4a5a;
  padding: 15px 20px;
  border-radius: 18px;
  line-height: 1.7;
  font-size: 1.05rem;
  color: #f4f2ed;
  flex-grow: 1;
}

.chat-message--navigator {
  align-self: flex-start;
}
.chat-message--navigator .chat-message__bubble {
  border-bottom-left-radius: 4px;
  background-color: rgb(33.8928571429, 54.75, 75.6071428571);
}

.chat-message--user {
  align-self: flex-end;
  flex-direction: row-reverse;
}
.chat-message--user .chat-message__bubble {
  border-bottom-right-radius: 4px;
  background-color: #ffd700;
  color: #1a2a3a;
  border-color: #ccac00;
}
.chat-message--user .chat-message__bubble label {
  color: #1a2a3a;
  opacity: 0.8;
  font-size: 0.9rem;
  margin-bottom: 0.5em;
  display: block;
}
.chat-message--user .chat-message__bubble input[type=text],
.chat-message--user .chat-message__bubble input[type=email],
.chat-message--user .chat-message__bubble textarea,
.chat-message--user .chat-message__bubble select {
  width: 100%;
  background-color: rgb(255, 227, 76.5);
  border: 1px solid #ccac00;
  border-radius: 8px;
  padding: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  color: #1a2a3a;
}
.chat-message--user .chat-message__bubble input[type=text]::placeholder,
.chat-message--user .chat-message__bubble input[type=email]::placeholder,
.chat-message--user .chat-message__bubble textarea::placeholder,
.chat-message--user .chat-message__bubble select::placeholder {
  color: rgba(26, 42, 58, 0.6);
}
.chat-message--user .chat-message__bubble input[type=text]:focus,
.chat-message--user .chat-message__bubble input[type=email]:focus,
.chat-message--user .chat-message__bubble textarea:focus,
.chat-message--user .chat-message__bubble select:focus {
  outline: none;
  border-color: #1a2a3a;
  box-shadow: 0 0 10px rgba(26, 42, 58, 0.3);
}
.chat-message--user .chat-message__bubble textarea {
  resize: vertical;
}

.chat-step.chat-step--visible {
  animation: chatFadeInUp 0.6s ease-out forwards;
}

@keyframes chatFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.chat-submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 1.2rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.plan-section .section-title--subsection {
  font-family: "Pirata One", cursive;
  font-size: 1.8rem;
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 2rem;
  color: #ffd700;
  padding-bottom: 1rem;
  border-bottom: 2px dotted rgba(255, 215, 0, 0.5);
}

.plan-grid {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

.plan-grid--two-cols {
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .plan-grid--two-cols {
    grid-template-columns: 1fr;
  }
}

.plan-card {
  background-color: rgb(33.8928571429, 54.75, 75.6071428571);
  border: 1px solid #3a4a5a;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  color: #e0e6f0;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.plan-card--gold .plan-card__title {
  color: #ffd700;
}
.plan-card--gold:hover {
  border-color: #ffd700;
}
.plan-card--red .plan-card__title {
  color: #e63946;
}
.plan-card--red:hover {
  border-color: #e63946;
}
.plan-card--glow.plan-card--red {
  border-color: #e63946;
  box-shadow: 0 0 15px rgba(230, 57, 70, 0.3);
}

.plan-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #e63946;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.plan-card__number {
  font-family: "Pirata One", cursive;
  letter-spacing: 1px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.plan-card__title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
}

.plan-card__price {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #ffd700;
}
.plan-card__price .price-emphasis-large {
  font-weight: bold;
  font-size: 3.2rem;
}
.plan-card__price .price-emphasis-small {
  font-weight: bold;
  font-size: 2.8rem;
}
.plan-card__price small {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.plan-card__target {
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.plan-card__features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  text-align: left;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}
.plan-card__features li {
  margin-bottom: 0.75em;
  padding-left: 1.75em;
  position: relative;
}
.plan-card__features li .fas {
  position: absolute;
  left: 0;
  top: 4px;
}
.plan-card__features li .fas.fa-check {
  color: #ffd700;
}
.plan-card__features li .fas.fa-times {
  color: #6c757d;
}
.plan-card__features .feature--disabled {
  opacity: 0.6;
}

.plan-card .btn, .plan-card .btn--primary, .plan-card .btn--glow {
  margin-top: auto;
}

.plan-card--premium {
  border-color: rgba(255, 215, 0, 0.5);
}

.plan-card--glow {
  border-color: #ffd700;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

/* _plan.scss に追記 */
.plan-grid--three-cols {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .plan-grid--three-cols {
    grid-template-columns: 1fr;
  }
}

.plan-grid--one-col {
  grid-template-columns: 1fr;
  max-width: 700px;
  margin: 0 auto;
}

/* ==================================================
   Plan Page (pages/_plan.scss) 色分けパッチ (V3.3)
================================================== */
/* 神器1：Web開発 (Blue) */
.plan-section {
  /* h2の見出し「神器1：...」に色を適用 */
}
.plan-section h2.section-title--subsection:nth-of-type(1) {
  color: #00bfff;
  border-bottom-color: rgba(0, 191, 255, 0.5);
}
.plan-section {
  /* 神器1のグリッド内のカードに色を適用 */
}
.plan-section .plan-grid:nth-of-type(1) .plan-card {
  border-color: rgba(0, 191, 255, 0.6);
}
.plan-section .plan-grid:nth-of-type(1) .plan-card .plan-card__title {
  color: #00bfff;
}
.plan-section .plan-grid:nth-of-type(1) .plan-card .plan-card__price {
  color: #00bfff;
}
.plan-section .plan-grid:nth-of-type(1) .plan-card .fas.fa-check {
  color: #00bfff;
}
.plan-section .plan-grid:nth-of-type(1) .plan-card .btn--secondary {
  border-color: #00bfff;
  color: #00bfff;
}
.plan-section .plan-grid:nth-of-type(1) .plan-card .btn--secondary:hover {
  background-color: rgba(0, 191, 255, 0.1);
}
.plan-section .plan-grid:nth-of-type(1) .plan-card:hover {
  border-color: #00bfff;
}

/* 神器2：思考整理 (Gold) */
.plan-section {
  /* h2の見出し「神器2：...」に色を適用 */
}
.plan-section h2.section-title--subsection:nth-of-type(2) {
  color: #ffd700;
  border-bottom-color: rgba(255, 215, 0, 0.5);
}
.plan-section {
  /* 神器2のグリッド内のカードに色を適用 */
}
.plan-section .plan-grid:nth-of-type(2) .plan-card {
  /* .plan-card--glow (パートナー) 以外のカードにも適用 */
  border-color: rgba(255, 215, 0, 0.6);
}
.plan-section .plan-grid:nth-of-type(2) .plan-card .plan-card__title {
  color: #ffd700;
}
.plan-section .plan-grid:nth-of-type(2) .plan-card .plan-card__price {
  color: #ffd700;
}
.plan-section .plan-grid:nth-of-type(2) .plan-card .fas.fa-check {
  color: #ffd700;
}
.plan-section .plan-grid:nth-of-type(2) .plan-card .btn--secondary {
  border-color: #ffd700;
  color: #ffd700;
}
.plan-section .plan-grid:nth-of-type(2) .plan-card .btn--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
}
.plan-section .plan-grid:nth-of-type(2) .plan-card:hover {
  border-color: #ffd700;
}
.plan-section .plan-grid:nth-of-type(2) .plan-card {
  /* .plan-card--glow (パートナー) はプライマリボタン(赤)を使うので、
     btn--secondary の色上書きは不要 */
}

/* 神器3：イベント (Red) */
.plan-section {
  /* h2の見出し「神器3：...」に色を適用 */
}
.plan-section h2.section-title--subsection:nth-of-type(3) {
  color: #e63946;
  border-bottom-color: rgba(230, 57, 70, 0.5);
}
.plan-section {
  /* 神器3のグリッド内のカードに色を適用 */
}
.plan-section .plan-grid:nth-of-type(3) .plan-card {
  border-color: rgba(230, 57, 70, 0.6);
}
.plan-section .plan-grid:nth-of-type(3) .plan-card .plan-card__title {
  color: #e63946;
}
.plan-section .plan-grid:nth-of-type(3) .plan-card .plan-card__price {
  color: #e63946;
}
.plan-section .plan-grid:nth-of-type(3) .plan-card .fas.fa-check {
  color: #e63946;
}
.plan-section .plan-grid:nth-of-type(3) .plan-card .btn--secondary {
  border-color: #e63946;
  color: #e63946;
}
.plan-section .plan-grid:nth-of-type(3) .plan-card .btn--secondary:hover {
  background-color: rgba(230, 57, 70, 0.1);
}
.plan-section .plan-grid:nth-of-type(3) .plan-card:hover {
  border-color: #e63946;
}

.thanks-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 100px 0;
  background-color: rgb(30.7357142857, 49.65, 68.5642857143);
}
.thanks-section .container {
  width: 100%;
}
.thanks-section .section-title::before, .thanks-section .story-content .story-cta-title::before, .story-content .thanks-section .story-cta-title::before {
  content: "✅";
  display: block;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.thanks-section .thanks-content {
  max-width: 700px;
  margin: 2rem auto 0;
  padding: 2rem 2.5rem;
  border: 1px solid #d1ccc0;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  line-height: 1.8;
  color: #e0e6f0;
}
.thanks-section .thanks-content p {
  margin-bottom: 1em;
}
.thanks-section .thanks-content p:last-child {
  margin-bottom: 0;
}
.thanks-section .thanks-content strong {
  font-size: 1.2em;
}
.thanks-section .thanks-actions {
  margin-top: 3rem;
}

.story-section {
  padding: 100px 0;
}

.story-content {
  max-width: 750px;
  margin: 3rem auto 0;
  background-color: rgba(26, 42, 58, 0.3);
  border: 1px solid #3a4a5a;
  padding: 3rem 3.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 670px) {
  .story-content {
    padding: 2rem 1.5rem;
  }
}
.story-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 2.1;
  margin-bottom: 1.5em;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.story-content .story-intro {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 2.5em;
  padding-bottom: 2.5em;
  border-bottom: 1px solid #3a4a5a;
}
.story-content .story-intro strong {
  color: #ffd700;
  font-size: 1.1em;
}
.story-content .story-phase-title {
  font-family: "Pirata One", cursive;
  font-size: 1.6rem;
  color: #ffd700;
  margin-top: 3em;
  margin-bottom: 1.5em;
}
.story-content .story-cta {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #3a4a5a;
  text-align: center;
}
.story-content .story-cta-title {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.story-content .story-cta-sublink {
  margin-top: 1.5rem;
  font-size: 0.9rem;
}
.story-content .story-cta-sublink a {
  color: rgba(255, 255, 255, 0.7);
}
.story-content .story-cta-sublink a:hover {
  color: #fff;
}

.works-page-section .section-title--subsection {
  font-family: "Pirata One", cursive;
  font-size: 1.8rem;
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 2rem;
  color: #ffd700;
  padding-bottom: 1rem;
  border-bottom: 2px dotted rgba(255, 215, 0, 0.5);
}

.works-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.section-title--subsection-minor {
  font-family: "Pirata One", cursive;
  font-size: 1.5rem;
  text-align: left;
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  color: rgba(244, 242, 237, 0.85);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #3a4a5a;
}

.works-category-wrapper {
  margin-bottom: 3rem;
  padding: 2rem 0;
  border-bottom: 2px solid #3a4a5a;
}
.works-category-wrapper.works-category--thinking .section-title--subsection,
.works-category-wrapper.works-category--thinking .section-title--subsection-minor,
.works-category-wrapper.works-category--thinking .section-title,
.works-category-wrapper.works-category--thinking .story-content .story-cta-title,
.story-content .works-category-wrapper.works-category--thinking .story-cta-title {
  color: #ffd700;
  border-bottom-color: rgba(255, 215, 0, 0.5);
}
.works-category-wrapper.works-category--thinking .work-card {
  border-color: rgba(255, 215, 0, 0.8);
}
.works-category-wrapper.works-category--thinking .work-card:hover {
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.1);
  border-color: #ffd700;
}
.works-category-wrapper.works-category--thinking .work-card small {
  color: #ffd700;
}
.works-category-wrapper.works-category--thinking .work-card .work-card__link {
  background-color: #ffd700;
  color: #1a2a3a;
}
.works-category-wrapper.works-category--thinking .work-card .work-card__link:hover {
  background-color: #ffdf33;
}
.works-category-wrapper.works-category--thinking .iframe-container {
  border-color: rgba(255, 215, 0, 0.8);
}
.works-category-wrapper.works-category--web .section-title--subsection,
.works-category-wrapper.works-category--web .section-title--subsection-minor {
  color: #00bfff;
  border-bottom-color: rgba(0, 191, 255, 0.5);
}
.works-category-wrapper.works-category--web .work-card {
  border-color: rgba(0, 191, 255, 0.8);
}
.works-category-wrapper.works-category--web .work-card:hover {
  box-shadow: 0 15px 30px rgba(0, 191, 255, 0.1);
  border-color: #00bfff;
}
.works-category-wrapper.works-category--web .work-card small {
  color: #00bfff;
}
.works-category-wrapper.works-category--web .work-card .work-card__link {
  background-color: #00bfff;
  color: #1a2a3a;
}
.works-category-wrapper.works-category--web .work-card .work-card__link:hover {
  background-color: rgb(51, 203.8, 255);
}
.works-category-wrapper.works-category--event .section-title--subsection,
.works-category-wrapper.works-category--event .section-title--subsection-minor {
  color: #e63946;
  border-bottom-color: rgba(230, 57, 70, 0.5);
}
.works-category-wrapper.works-category--event .work-card {
  border-color: rgba(230, 57, 70, 0.8);
}
.works-category-wrapper.works-category--event .work-card:hover {
  box-shadow: 0 15px 30px rgba(230, 57, 70, 0.1);
  border-color: #e63946;
}
.works-category-wrapper.works-category--event .work-card small {
  color: #e63946;
}
.works-category-wrapper.works-category--event .work-card .work-card__link {
  background-color: #e63946;
  color: #fff;
}
.works-category-wrapper.works-category--event .work-card .work-card__link:hover {
  background-color: rgb(235.7174887892, 102.2825112108, 112.3094170404);
}

.work-card {
  background-color: rgb(30.7357142857, 49.65, 68.5642857143);
  border: 1px solid;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.work-card:hover {
  transform: translateY(-8px);
}
.work-card small {
  transition: color 0.3s ease;
}
.work-card__link {
  transition: background-color 0.3s ease, color 0.3s ease;
}
.work-card__image-placeholder {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a1a1a;
}
.work-card__image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.work-card:hover .work-card__image-placeholder img {
  transform: scale(1.05);
}
.work-card__content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.work-card__title {
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.work-card__title small {
  font-size: 0.9rem;
  display: block;
  margin-top: 0.25em;
}
.work-card__description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  flex-grow: 1;
  margin-bottom: 1.5em;
}
.work-card__meta {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: auto;
  padding-top: 1em;
  border-top: 1px dashed #3a4a5a;
}
.work-card__link {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: bold;
  text-align: center;
  margin-top: 1.5em;
  align-self: flex-start;
}

.live-demo-section {
  margin-bottom: 150px;
}

.iframe-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border: 2px solid #3a4a5a;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
}
.iframe-container iframe {
  width: 100%;
  height: 600px;
  display: block;
  border: none;
}

/* ==================================================
   About Page (pages/_about.scss) V1.1 (FIX版)
================================================== */
.about-hero {
  position: relative;
  overflow: hidden;
  padding: 180px 0 100px 0;
  text-align: center;
  border-bottom: 1px solid #3a4a5a;
}
.about-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.about-hero .page-title {
  color: #ffd700;
}
.about-hero .section-briefing {
  font-size: 1.2rem;
  color: rgba(244, 242, 237, 0.85);
  font-weight: 700;
}

/* ==================================================
   Hero Video Fix (Common Style)
   (※注：about.php, services.php, home.php で共通)
================================================== */
/* (もし _base.scss や _hero.scss など共通ファイルに
   以下の定義がまだなければ、ここに残してください)
*/
.hero-video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -2;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.section-title--subsection {
  text-align: center;
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.about-content-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .about-content-grid {
    grid-template-columns: 1fr;
  }
}

.about-content__image-wrapper {
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #3a4a5a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .about-content__image-wrapper {
    width: 200px;
    margin: 0 auto 2rem auto;
  }
}

.about-content__image {
  width: 100%;
  height: auto;
  display: block;
}

.about-content__text .section-title--subsection {
  text-align: center;
  margin-top: 0;
  margin-bottom: 2rem;
}
.about-content__text h3.about-content__headline {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #f4f2ed;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.about-content__text p {
  color: rgba(244, 242, 237, 0.85);
  line-height: 1.8;
  margin-bottom: 1.5em;
}

.history-timeline {
  position: relative;
  max-width: 800px;
  margin: 2rem auto 0 auto;
  padding: 2rem 0;
}
.history-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100px;
  width: 4px;
  background-color: #3a4a5a;
  border-radius: 2px;
}
@media screen and (max-width: 768px) {
  .history-timeline::before {
    left: 20px;
  }
}

.history-item {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  margin-bottom: 2.5rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .history-item {
    grid-template-columns: 90px 1fr;
    gap: 10px;
  }
}
.history-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ffd700;
  border: 4px solid rgb(22.8428571429, 36.9, 50.9571428571);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .history-item::before {
    left: 20px;
  }
}

/* _about.scss 147行目あたり */
.history-item__year {
  font-family: "Pirata One", cursive;
  font-size: 1.5rem;
  color: #ffd700 !important;
  text-align: right;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .history-item__year {
    font-size: 0.85rem;
    text-align: left;
    padding-right: 0;
    padding-left: 38px;
    white-space: nowrap;
    line-height: 1.2;
  }
}

.history-item__content {
  background-color: rgb(33.8928571429, 54.75, 75.6071428571);
  border: 1px solid #3a4a5a;
  padding: 1.5rem;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.history-item__content:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.history-item__content h3.history-item__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #f4f2ed;
  margin-bottom: 0.75rem;
}
.history-item__content p {
  font-size: 0.95rem;
  color: rgba(244, 242, 237, 0.85);
  line-height: 1.7;
}

.future-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .future-grid {
    grid-template-columns: 1fr;
  }
}

.future-card {
  background-color: rgb(33.8928571429, 54.75, 75.6071428571);
  border: 1px solid #3a4a5a;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.future-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: #ffd700;
}

.future-card__icon {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1rem;
}

h3.future-card__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.future-card p {
  font-size: 0.95rem;
  color: rgba(244, 242, 237, 0.85);
  line-height: 1.7;
}

.ltsite-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.ltsite-hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .ltsite-hero__title {
    font-size: 1.8rem;
  }
}
.ltsite-hero__subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}
.ltsite-hero__stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.ltsite-hero__cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ltsite-stat {
  text-align: center;
}
.ltsite-stat__number {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.ltsite-stat__label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.ltsite-problem .problem-grid {
  margin-top: 40px;
}

.ltsite-solution .ltsite-features {
  margin-top: 60px;
}

.ltsite-feature {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 80px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .ltsite-feature {
    flex-direction: column;
    padding: 30px 20px;
  }
}
.ltsite-feature--reverse {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .ltsite-feature--reverse {
    flex-direction: column;
  }
}
.ltsite-feature__number {
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  min-width: 100px;
}
.ltsite-feature__content {
  flex: 1;
}
.ltsite-feature__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}
.ltsite-feature__desc {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.85);
}
.ltsite-feature__list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.ltsite-feature__list li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: rgba(255, 255, 255, 0.85);
}
.ltsite-feature__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: 700;
}
.ltsite-feature__example {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
}
.ltsite-feature__example pre {
  color: #e0e0e0;
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  white-space: pre-wrap;
}

.ltsite-case-studies .case-study-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.case-study-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.case-study-card__header {
  border-bottom: 2px solid #667eea;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.case-study-card__company {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}
.case-study-card__industry {
  font-size: 0.85rem;
  color: #666;
}
.case-study-card__body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #667eea;
  margin-top: 20px;
  margin-bottom: 10px;
}
.case-study-card__body h4:first-child {
  margin-top: 0;
}
.case-study-card__body p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}
.case-study-card__body ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}
.case-study-card__body ul li {
  padding: 8px 0 8px 25px;
  position: relative;
  font-size: 0.95rem;
  color: #555;
}
.case-study-card__body ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: 700;
}

.ltsite-pricing .pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.pricing-card--featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: 2px solid #fff;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .pricing-card--featured {
    transform: scale(1);
  }
}
.pricing-card--featured:hover {
  transform: scale(1.08) translateY(-5px);
}
@media (max-width: 768px) {
  .pricing-card--featured:hover {
    transform: scale(1) translateY(-5px);
  }
}
.pricing-card__badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffd700;
  color: #333;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}
.pricing-card__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}
.pricing-card__price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.pricing-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}
.pricing-card__desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}
.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}
.pricing-card__features li {
  padding: 12px 0 12px 30px;
  position: relative;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pricing-card__features li:last-child {
  border-bottom: none;
}
.pricing-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffd700;
  font-weight: 700;
}

.ltsite-security .security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.security-feature {
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.security-feature:hover {
  transform: translateY(-5px);
}
.security-feature__icon {
  font-size: 3rem;
  margin-bottom: 15px;
}
.security-feature h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}
.security-feature p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

.ltsite-final-cta {
  text-align: center;
  padding: 80px 20px;
}
.ltsite-final-cta .section-title, .ltsite-final-cta .story-content .story-cta-title, .story-content .ltsite-final-cta .story-cta-title {
  margin-bottom: 20px;
}
.ltsite-final-cta .section-briefing {
  margin-bottom: 40px;
}

.ltsite-cta-section {
  text-align: center;
  margin-top: 50px;
}
