@charset "utf-8";

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  font-family: "Noto Sans JP", sans-serif;
}

/* ==========================================
header
============================================*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
}

.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-area {
  display: inline-flex;
  align-items: center;
}

/* ロゴの高さを調整 */
.site-logo {
  display: block;
  height: 40px;
  width: auto;
}

.header-contact {
  padding: 15px 30px;
  border-radius: 999px;
  background: #dd51cd;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  font-size: 16px;
}

.header-contact:hover {
  opacity: 0.9;
}


/* ==========================================
hero
============================================*/
.hero {
  position: relative;
  padding: 80px 16px 40px;
  /* ←上下余白で高さ作る */
  background-color: #fce8f0;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: radial-gradient(circle, #e879a9 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* ← テキスト中央 */
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.3;
  color: #111827;
  margin-bottom: 24px;
}

.hero-title .pink {
  color: #dd51cd;
}

.hero-logo {
  margin-bottom: 10px;
}

.hero-logo img {
  height: 78px;
  width: auto;
}

.hero-tagline {
  display: inline-block;
  max-width: 560px;
  padding: 16px 32px;
  background-color: #ffffff;
  border: 2px solid #dd51cd;
  border-radius: 9999px;
  font-size: 20px;
  font-weight: bold;
  color: #dd51cd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.hero-mockup {
  position: relative;
  width: 100%;
  max-width: 672px;
  margin-bottom: 40px;
}

.mockup-browser {
  background-color: #ffffff;
  border: 4px solid rgba(30, 58, 95, 0.1);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.mockup-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mockup-dot.red {
  background-color: #f87171;
}

.mockup-dot.yellow {
  background-color: #facc15;
}

.mockup-dot.green {
  background-color: #4ade80;
}

.mockup-screen {
  position: relative;
  height: 250px;
  background-color: #f3f4f6;
  border-radius: 8px;
}

.mockup-screen-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #6b7280;
}

.popup-mockup {
  position: absolute;
  bottom: 10px;
  right: 32px;
  background-color: #ffffff;
  border: 2px solid #dd51cd;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.popup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.popup-icon {
  width: 16px;
  height: 16px;
  color: #dd51cd
}

.popup-title {
  font-size: 14px;
  font-weight: bold;
  color: #1e3a5f;
}

.popup-text {
  font-size: 12px;
  color: #6b7280;
}

.popup-badge {
  position: absolute;
  top: 60%;
  right: 0;
  transform: translateY(-50%) rotate(12deg);
  background-color: #dd51cd;
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 9999px;
  box-shadow: 0 4px 8px rgba(232, 121, 169, 0.4);
}

@media screen and (max-width: 480px) {

  /* ヒーロー全体 */
  .hero {
    padding-top: 48px;
    overflow: visible;
    /* パターンや波形が切れないように */
  }

  .hero-pattern {
    opacity: 0.1;
    background-size: 24px 24px;
  }

  /* コンテンツの余白を詰める */
  .hero-content {
    padding: 40px 12px;
    min-height: auto;
  }

  /* タイトル */
  .hero-title {
    font-size: 28px;
    margin-bottom: 16px;
    line-height: 1.2;
  }

  /* ロゴ */
  .hero-logo img {
    height: 48px;
    margin-bottom: 16px;
  }

  /* キャッチフレーズ */
  .hero-tagline {
    display: block;
    max-width: calc(100% - 32px);
    padding: 10px 20px;
    font-size: 16px;
    margin-bottom: 24px;
  }

  /* モックアップ */
  .hero-mockup {
    max-width: 100%;
    margin-bottom: 24px;
  }

  .mockup-screen {
    height: 140px;
  }

  .mockup-screen-text {
    font-size: 12px;
    inset: 0;
    align-items: flex-start;
    padding-top: 16px;
  }


  /* ポップアップ */
  .popup-mockup {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 160px;
    padding: 8px;
    border-width: 1px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: bounce 2s infinite;
    background-color: #fff;
  }

  .popup-header {
    gap: 4px;
    margin-bottom: 4px;
  }

  .popup-icon {
    width: 12px;
    height: 12px;
  }

  .popup-title {
    font-size: 12px;
  }

  .popup-text {
    font-size: 10px;
  }

  .popup-badge {
    display: none;
    top: auto;
    bottom: 8px;
    right: 0;
    font-size: 10px;
    padding: 2px 8px;
  }

}

/* ==========================================
Section Common
============================================*/
.section-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
}

.section-title {
  font-size: 48px;
  font-weight: bold;
  color: #111827;
  text-align: center;
  margin: 24px;
}

.section-title .pink {
  color: #dd51cd;
}

.section-title .blue {
  color: #0060cd;
}

/* Problem Section */
.problem-section {
  background-color: #ffffff;
  padding: 60px 16px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.problem-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 5px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.problem-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.problem-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: #dd51cd;
}

.problem-text {
  font-size: 22px;
  font-weight: 500;
  color: #111827;
}

/* Solution Section */
.solution-section {
  position: relative;
  background-color: #e8f4fc;
  padding: 10px 16px;
  overflow: hidden;
}

.solution-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(to right, #4a90c2 0.5px, transparent 0.5px),
    linear-gradient(to bottom, #4a90c2 0.5px, transparent 0.5px);
  background-size: 40px 40px;
}

.solution-content {
  position: relative;
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
}

.solution-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  color: #111827;
}

/* ==========================================
Features Section
============================================*/

.features-section {
  background-color: #ffffff;
  padding: 60px 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.features-grid-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 672px;
  margin: 0 auto;
}

.feature-card {
  padding: 24px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: scale(1.03);
  border-color: rgba(232, 121, 169, 0.3);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .feature-icon-wrapper {
  background-color: #dd51cd;
}

.feature-card:hover .feature-icon-wrapper svg {
  color: #ffffff;
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  background-color: #fce8f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background-color 0.3s ease;
}

.feature-icon-wrapper svg {
  width: 28px;
  height: 28px;
  color: #dd51cd;
  transition: color 0.3s ease;
}

.feature-title {
  font-size: 18px;
  font-weight: bold;
  color: #111827;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #111827;
}

/* ==========================================
Use Cases Section
============================================*/

.usecases-section {
  position: relative;
  background-color: #fce8f0;
  padding: 60px 16px;
  overflow: hidden;
}

.usecases-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: radial-gradient(circle, #dd51cd 1px, transparent 1px);
  background-size: 24px 24px;
}

.usecases-content {
  position: relative;
  max-width: 1152px;
  margin: 0 auto;
}

.usecases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.usecase-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.usecase-title {
  font-size: 16px;
  font-weight: bold;
  color: #111827;
  width: 100%;
  text-align: center;
}

.usecases-note {
  position: relative;
  text-align: center;
  margin-top: 40px;
  font-size: 20px;
  color: #111827;
}

.usecase-pic {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.usecase_mouseover {
  position: relative;
  overflow: visible;
  display: inline-block;
  /* 画像サイズに追従 */
}

.usecase_mouseover img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .5s ease;
  transform-origin: center;
}

.usecase_mouseover:hover img {
  transform: scale(1.5);
  position: relative;
  z-index: 10;
}

/* ==========================================
Cost Comparison Section
============================================*/

.cost-section {
  background-color: #ffffff;
  padding: 60px 16px;
}

.cost-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1024px;
  margin: 0 auto;
}

.cost-card-highlight {
  position: relative;
  padding: 32px;
  background-color: #fce8f0;
  border: 4px solid #dd51cd;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cost-card-highlight:hover {
  transform: scale(1.02);
}

.cost-card-highlight::before {
  content: '';
  position: absolute;
  top: -32px;
  right: -32px;
  width: 96px;
  height: 96px;
  background-color: rgba(232, 121, 169, 0.2);
  border-radius: 50%;
}

.cost-badge {
  display: inline-block;
  padding: 4px 16px;
  background-color: #dd51cd;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 9999px;
  margin-bottom: 8px;
  position: relative;
}

.cost-card-title {
  font-size: 20px;
  font-weight: bold;
  color: #111827;
  margin-bottom: 24px;
  position: relative;
}

.cost-card-desc {
  font-size: 18px;
  font-weight: bold;
  color: #111827;
  margin-bottom: 16px;
  position: relative;
}

.cost-price {
  font-size: 48px;
  font-weight: bold;
  color: #dd51cd;
  margin-bottom: 24px;
  position: relative;
}

.cost-price span {
  font-size: 24px;
}

.cost-note {
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  position: relative;
}

.cost-card-normal {
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.cost-card-normal:hover {
  transform: scale(1.02);
}

.cost-item {
  padding: 16px;
  background-color: #f3f4f6;
  border-radius: 8px;
  margin-bottom: 16px;
}

.cost-item:last-child {
  margin-bottom: 0;
}

.cost-item-label {
  font-size: 18px;
  color: #111827;
  margin-bottom: 4px;
}

.cost-item-value {
  font-size: 20px;
  font-weight: bold;
  color: #111827;
}

.cost-item-value span {
  font-size: 14px;
  font-weight: normal;
  color: #111827;
}

.cost-comparison-note {
  text-align: center;
  margin-top: 32px;
  font-size: 20px;
  color: #111827;
}

/* ==========================================
Pricing Section
============================================*/

.pricing-section {
  position: relative;
  background-color: #e8f4fc;
  padding: 60px 16px;
  overflow: hidden;
}

.pricing-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(to right, #4a90c2 0.5px, transparent 0.5px),
    linear-gradient(to bottom, #4a90c2 0.5px, transparent 0.5px);
  background-size: 40px 40px;
}

.pricing-content {
  position: relative;
  max-width: 1024px;
  margin: 0 auto;
}

.pricing-subtitle {
  text-align: center;
  font-size: 14px;
  color: #111827;
  margin-bottom: 40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  padding: 24px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.pricing-card-highlight {
  position: relative;
  padding: 24px;
  background-color: #ffffff;
  border: 4px solid #dd51cd;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.pricing-card-highlight:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background-color: #dd51cd;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 9999px;
}

.pricing-plan-name {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #111827;
  margin-bottom: 16px;
}

.pricing-card-highlight .pricing-plan-name {
  color: #dd51cd;
}

.pricing-price {
  text-align: center;
  margin-bottom: 16px;
}

.pricing-price-value {
  font-size: 32px;
  font-weight: bold;
  color: #111827;
}

.pricing-card-highlight .pricing-price-value {
  font-size: 40px;
  color: #dd51cd;
}

.pricing-price-unit {
  font-size: 16px;
  color: #111827;
}

.pricing-pv {
  padding: 12px;
  background-color: #f3f4f6;
  border-radius: 8px;
  text-align: center;
}

.pricing-card-highlight .pricing-pv {
  background-color: #fce8f0;
}

.pricing-pv-label {
  font-size: 14px;
  color: #111827;
}

.pricing-pv-value {
  font-size: 18px;
  font-weight: bold;
  color: #111827;
}

.pricing-card-highlight .pricing-pv-value {
  color: #dd51cd;
}

.pricing-pv-value span {
  font-size: 14px;
  font-weight: normal;
}

.pricing-unlimited {
  margin-top: 25px;
  padding: 1px;
  background-color: #fce8f0;
  border-radius: 12px;
  text-align: center;
}

.pricing-unlimited p {
  font-weight: bold;
  color: #dd51cd;
  font-size: 22px;
}

.pricing-note {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  color: #111827;
}

/* ==========================================
Steps Section
============================================*/

.steps-section {
  background-color: #ffffff;
  padding: 30px 16px;
}

/*
.steps-content {
  max-width: 896px;
  margin: 0 auto;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 24px;
}

.step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background-color: #dd51cd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(232, 121, 169, 0.4);
}

.step-content {
  flex: 1;
  padding: 16px;
  background-color: #fce8f0;
  border-radius: 12px;
}

.step-title {
  font-size: 20px;
  font-weight: bold;
  color: #111827;
}

*/

.steps_flow_design02 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.steps_flow_design02 ul {
  padding: 0;
}

.steps_flow_design02 li {
  list-style-type: none;
}

.steps_flow_design02 dd {
  margin-left: 0;
}

.steps_flow02>li {
  padding: 40px 10px;
}

.steps_flow02>li:not(:last-child) {
  border-bottom: 3px solid #dd51cd;
  position: relative;
}

.steps_flow02>li:not(:last-child)::before,
.steps_flow02>li:not(:last-child)::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 15%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.steps_flow02>li:not(:last-child)::before {
  border-width: 22px;
  border-top-color: #dd51cd;
}

.steps_flow02>li:not(:last-child)::after {
  border-width: 18px;
  border-top-color: #fff;
}

.steps_flow02>li dl {
  margin: 0;
}

.steps_flow02>li dl dt {
  font-size: 28px;
  font-weight: 600;
  border-bottom: 2px dotted #878787;
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  display: flex;
}

.steps_flow02>li dl dt .icon02 {
  font-size: 24px;
  color: #fff;
  background: #dd51cd;
  padding: 5px 10px;
  display: inline-block;
  margin-right: 0.5em;
}

.steps_flow_head {
  font-size: 20px;
  font-weight: 600;
  color: #dd51cd;
}

.steps_flow_text {
  font-size: 16px;
  color: #111827;
}

.steps-img-list {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  /* 任意 */
}

.usecase-pic {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================
footer
============================================*/

.site-footer {
  background: #111827;
  color: #fff;
  width: 100%;
  margin: 0;
  padding: 60px 0 0;
}

.footer-bg {
  position: relative;
  max-width: none;
  width: 100%;
  margin: 0;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 0);
  background-size: 40px 40px;
}

.footer-content {
  max-width: 700px;
}

.footer-lead {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.footer-text {
  margin: 0 0 28px;
  font-size: 14px;
  opacity: 0.9;
}

/* ピンクのCTAボタン */
.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 48px;
  border-radius: 999px;
  background: #dd51cd;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.footer-cta::after {
  content: "→";
  margin-left: 10px;
  font-size: 16px;
}

.footer-cta:hover {
  opacity: 0.9;
  transform: translateY(1px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* 下段：ロゴ＋コピーライト */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
}

.footer-logo img {
  display: block;
  height: 32px;
  width: auto;
}

.footer-copy {
  margin: 0;
  font-size: 12px;
  opacity: 0.8;
}

body {
  margin: 0;
}

.footer-bottom+.footer-pascal {
  border-top: 1px solid rgba(255, 255, 255, .2);
  /* 色は適宜 */
  margin-top: 24px;
  /* 線の上側余白 */
  padding: 32px;
  /* 線の下側余白 */
}

/* Pascal Company Info */

.footer-pascal {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px 0;
}

.pascal-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pascal-logo {
  display: block;
  height: auto;
  max-width: 200px;
}

.pascal-name {
  margin: 0;
}

.pascal-name {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

@media (max-width: 768px) {
  .office-grid {
    grid-template-columns: 1fr;
  }
}

/* スマホ対応 */
@media (max-width: 768px) {
  .footer-bg {
    height: auto;
    padding: 40px 20px;
  }

  .footer-lead {
    font-size: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ==========================================
タブレット〜スマホ共通
============================================*/
@media screen and (max-width: 768px) {

  /* 各グリッド → １カラム */
  .problem-grid,
  .features-grid,
  .features-grid-bottom,
  .usecases-grid,
  .cost-grid,
  .pricing-grid,
  .info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* 段差を抑える */
  .section-title {
    font-size: 32px;
    margin-bottom: 32px;
  }

  /* Steps セクション */
  .step-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* 最大幅480px */
@media screen and (max-width: 480px) {

  /* ヒーロー */
  .hero-content {
    padding: 40px 12px;
  }

  .hero-title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .hero-tagline {
    padding: 8px 16px;
    font-size: 16px;
    margin-bottom: 24px;
  }

  .hero-mockup {
    max-width: 100%;
    margin-bottom: 24px;
  }

  /* 問題・ソリューション・特徴などのテキスト縮小 */
  .problem-text,
  .solution-text,
  .feature-title,
  .feature-desc,
  .usecase-title,
  .cost-item-label,
  .cost-item-value,
  .pricing-plan-name,
  .pricing-price-value {
    font-size: 14px;
  }

  /* ボタン類 */
  .header-contact,
  .footer-cta {
    padding: 6px 12px;
    font-size: 14px;
  }

  /* Footer ボトム */
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 16px 32px;
  }

}

body {
  overflow-x: hidden;
}

/* ==========================================
page inquiry
============================================*/
.inquiry-header {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.inquiry-page-title {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}

.title-bg-pattern {
  z-index: 1;
}

.inquiry-title {
  color: #dd51cd;
  font-size: 48px;
  font-weight: 900;
  text-align: left;
}

.title-bg-pattern {
  position: absolute;
  inset: 0;
  background-color: #fce8f0;
  pointer-events: none;
}

.title-bg-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .3;
  /* ドットだけに効かせる */
  background-image: radial-gradient(circle, #e879a9 1.5px, transparent 1.5px);
  background-size: 32px 32px;
}

.inquiry-txt {
  text-align: center;
  font-size: 20px;
  color: #111827;
  margin: 45px;
}

.trial-form {
  max-width: 750px;
  margin: 0 auto 80px;
  padding: 1em;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

.trial-form .wpcf7 form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.trial-form .wpcf7 form p,
.trial-form .wpcf7-form-control-wrap {
  width: 100%;
  max-width: 400px;
}

.trial-form .wpcf7-form-control {
  width: 100%;
  display: block;
}

.trial-form_item .form-left {
  font-weight: 500;
  font-size: 18px;
}

.trial-form_btn input.wpcf7-submit {
  width: auto !important;
  max-width: none !important;
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
}

.trial-form_btn {
  text-align: center;
}

.wpcf7-text {
  height: 60px !important;
  font-size: 16px;
  /* ← 好みの高さに変更 */
}

.wpcf7-textarea {
  height: 300px !important;
  /* ← 好みの高さに変更 */
}

.agree-text {
  display: inline-block;
}

.agree-text a {
  text-decoration: underline;
}

.form-right.agree-row {
  text-align: center;
}

/* ==========================================
Information Section
============================================*/

.information {
  position: relative;
  background-color: #e8f4fc;
  padding: 60px 16px;
  overflow: hidden;
}

.info-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(to right, #4a90c2 0.5px, transparent 0.5px),
    linear-gradient(to bottom, #4a90c2 0.5px, transparent 0.5px);
  background-size: 40px 40px;
}

.info-grid {
  max-width: 1200px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 24px !important;
  padding-top: 40px !important;
  margin-bottom: 40px !important;
  position: relative !important;
  /* ← 追加 */
  z-index: 1 !important;
  /* ← 追加 */
}

.info-blue {
  color: #0060cd
}

.info-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 1px !important;
  padding: 24px !important;
  background-color: #ffffff !important;
  border: 3px solid #0060cd !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s ease !important;
}

.info-card:hover {
  transform: scale(1.02) !important;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1) !important;
}

.info-badge {
  display: inline-block;
  padding: 4px 16px;
  background-color: #0060cd;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 9999px;
  margin-bottom: 8px;
  position: relative;
}

.info-date {
  font-size: 18px;
  color: #6b7280;
  font-weight: 400;
}

.info-title {
  font-size: 24px;
  font-weight: 600;
  color: #0060cd;
  margin: 0;
}

.info-text {
  font-size: 20px !important;
  font-weight: 500 !important;
  color: #111827 !important;
}

.info-text a {
  color: #111827 !important;
  text-decoration: none;
}

.info-text a:visited {
  color: #4a90c2;
}

.info-text a:hover {
  opacity: .8;
  color: #f5f5f5
}


@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================
page-column1
============================================*/
.column-page-top {
  position: relative;
  padding: 10px 0;
  overflow: hidden;
}

.column-badge {
  display: block;
  width: fit-content;
  padding: 4px 16px;
  background-color: #0060cd;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  border-radius: 9999px;
  margin-bottom: 8px;
  position: relative;
}

.column-date {
  font-size: 20px;
  color: #111827;
}

.column-title {
  font-size: 36px;
  color: #0060cd;
  font-weight: 900;
}

.column-top-text {
  font-size: 18px;
}

.column-article {
  padding: 30px 40px;
  background-color: #e8f4fc;
  max-width: 1200px;
  width: 100%;
  margin: 40px auto;
}

/* 目次 */
html {
  scroll-padding-top: 80px;
}

.column-toc-container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* 目次タイトル */
.column-toc-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #111827;
  margin-bottom: 10px;
}

/* リスト全体 */
.column-toc-list {
  list-style: none;
  padding: 20px;
  margin: 0;
}

.column-toc-item {
  margin-bottom: 20px;
}

.column-toc-item:last-child {
  margin-bottom: 0;
}

/* リンクスタイル */
.column-toc-item a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #111827;
  font-size: 18px;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.column-toc-item a:hover {
  color: #0060cd;
}

/* 番号アイコン */
.column-toc-number {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background-color: #0060cd;
  text-decoration: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  margin-right: 18px;
}

/* 大見出し */
.column-section-title {
  background-color: #0060cd;
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  padding: 10px 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

/* 大見出し内の白い円形数字 */
.column-section-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  color: #0060cd;
  font-size: 20px;
  font-weight: bold;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}

/* 小見出し (例: 特徴、原因) */
.column-subsection-title {
  font-size: 20px;
  font-weight: bold;
  color: #111827;
  padding-bottom: 8px;
  border-bottom: 2px solid #0060cd;
  margin-top: 40px;
  margin-bottom: 20px;
}

/* 本文テキスト */
.column-body-text {
  font-size: 18px;
  line-height: 1.8;
  color: #111827;
  margin-bottom: 1em;
}

.point-box {
  display: block;
  border: 1px solid #ccc;
  padding: 16px 16px;
  border-radius: 6px;
  margin: 16px;
  background: #fafafa;
  line-height: 1.8;
}

.column-subtitle {
  font-size: 22px;
  font-weight: 700;
  max-width: 980px;
  background: #fafafa;
  padding: 10px 20px 10px;
  color: #0060cd;
  line-height: 1.9;
}

.column-top-img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* レスポンシブ対応 (スマートフォン表示調整) */
@media (max-width: 768px) {
  .column-toc-container {
    padding: 20px;
    /* パディングを小さくする */
  }

  .column-toc-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .column-toc-item a {
    font-size: 16px;
    line-height: 1.4;
  }

  .column-toc-number {
    width: 30px;
    height: 30px;
    font-size: 14px;
    margin-right: 10px;
  }

  .column-section-title {
    font-size: 20px;
    padding: 15px 20px;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .column-section-number {
    width: 32px;
    height: 32px;
    font-size: 16px;
    margin-right: 10px;
  }

  .column-subsection-title {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .column-body-text {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* 404ページ全体のコンテナ */
#not-found {
  max-width: 800px;
  margin: 80px auto;
  padding: 40px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* 404タイトル部分 */
.not-found-ttl {
  text-align: center;
  padding-bottom: 25px;
  border-bottom: 1px solid #0056b3;
  margin-bottom: 40px;
}

.not-found-ttl h2 {
  font-size: 3.5em;
  color: #0056b3;
  margin-bottom: 15px;
  letter-spacing: 1.5px;
}

.not-found-ttl p {
  font-size: 1.4em;
  font-weight: 600;
  color: #333;
}

.not-found-content {
  padding: 0 20px;
}

.not-found-content>p {
  margin-bottom: 25px;
  font-size: 1.05em;
}

ul.cause {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

ul.cause li {
  position relative;
  padding-left: 0;
  margin-bottom: 10px;
  font-size: 1.05em;
}

ul.cause li::before {
  content "●";
  color: #0056b3;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.9em;
  line-height: inherit;
}

h3.solution {
  font-size: 1.4em;
  color: #0056b3;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
}

.not-found-content ul:last-of-type {
  list-style: decimal;
  padding-left: 25px;
}

.not-found-content ul:last-of-type li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

a.to-the-top {
  color: #0056b3;
  text-decoration: underline;
  font-weight: 500;
}

a.to-the-tophover {
  color: #003d7e;
}

.blue {
  color: #0056b3;
}