@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: 100%;
  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;
  margin: 0 10px;
}

.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: 60px;
  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: 88px;
  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: 22px;
  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: 44px;
  font-weight: bold;
  color: #111827;
  text-align: center;
  margin: 24px;
}

.section-title .pink {
  color: #dd51cd;
}

.section-title .blue {
  color: #0060cd;
}

.section-title .green {
  color: #4DB6A0;
}

/* Problem Section */
.problem-section {
  background-color: #fff;
  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: #4DB6A0;
}

.problem-text {
  font-size: 22px;
  font-weight: 500;
  color: #111827;
}

.problem-section-text {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  color: #4DB6A0;
}

/* Solution Section */
.solution-section {
  position: relative;
  background-color: #e8f4fc;
  padding: 10px 16px;
  overflow: hidden;
}

.solution-section-title {
  font-size: clamp(24px, 4vw, 44px);
}


.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: 100%;
  margin: 0 auto;
  text-align: center;
}

.solution-text {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.8;
  color: #111827;
}

@media screen and (max-width: 768px) {
  .problem-section-text {
    font-size: 17px;
  }
}

/* ==========================================
Features Section
============================================*/

.features-section {
  background-color: #fff;
  padding: 60px 16px;
}

.feature-green {
  color: #4DB6A0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 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: 12px;
  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: #4DB6A0;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .feature-icon-wrapper {
  background-color: #4DB6A0;
}

.feature-card:hover .feature-icon-wrapper svg {
  color: #ffffff;
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  background-color: #C0E0DD;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background-color 0.3s ease;
}

.feature-icon-wrapper svg {
  width: 28px;
  height: 28px;
  color: #4DB6A0;
  transition: color 0.3s ease;
}

.feature-title {
  font-size: 22px;
  font-weight: bold;
  color: #111827;
  margin-bottom: 8px;
  text-align: center;
}

.feature-desc {
  font-size: 18px;
  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: 22px;
  font-weight: bold;
  color: #111827;
  width: 100%;
  text-align: center;
}

.usecase-description {
  font-size: 18px;
  color: #111827;
  width: 100%;
  text-align: center;
}

.usecases-note {
  position: relative;
  text-align: center;
  margin-top: 40px;
  font-size: 32px;
  font-weight: 600;
  color: #dd51cd;
}

.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;
}

@media screen and (max-width: 768px) {
  .usecases-note {
  font-size: 17px;
  }
}

/* ==========================================
popup-compare-section
============================================*/
.popup-compare-section {
  padding: 60px 16px;
  background-color: #fff;
  color: #00264d;
}

.popup-compare-inner {
  max-width: 1312px;
  margin: 0 auto;
}

.popup-compare-title {
  margin: 24px 58px;
  text-align: center;
  font-size: 44px;
  font-weight: bold;
  line-height: 1.4;
  color: #00264d;
}

.popup-compare-title span {
  color: #4DB6A0;
}

.popup-compare-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.popup-compare-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background-color: #fff;
}

.popup-compare-table th,
.popup-compare-table td {
  border: 1px solid #e5eaf0;
  text-align: center;
  vertical-align: middle;
  padding: 22px 20px;
  color: #00264d;
}

.popup-compare-table thead th {
  height: 98px;
  padding: 0 20px;
}

.popup-compare-blank {
  width: 13%;
  background-color: #fff;
  border-left-color: transparent !important;
  border-top-color: #e5eaf0 !important;
}

.popup-compare-plan {
  font-weight: 800;
  font-size: 24px;
}

.popup-compare-plan-zero {
  background-color: #FCE8F0;
  border-color: #dd51cd !important;
}

.popup-compare-plan-mini {
  background-color: #e6f3ff;
  border-color: #2d75bd !important;
}

.popup-compare-plan-company {
  background-color: #ccf1dc;
  border-color: #1cab67 !important;
}

.popup-compare-plan-name {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.popup-compare-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 11px;
  background-color: #dd51cd;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  border-radius: 4px;
  line-height: 1.2;
}

.popup-compare-row-head {
  width: 13%;
  background-color: #e9edf2;
  text-align: left !important;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  color: #00264d;
}

.popup-compare-table tbody td {
  height: 94px;
  font-size: 17px;
  line-height: 1.45;
}

.popup-compare-price {
  font-size: 24px;
  font-weight: 800;
  color: #00264d;
  line-height: 1.35;
}

.popup-compare-pink {
  color: #dd51cd;
}

.popup-compare-blue {
  color: #0056b3;
}

.popup-compare-note {
  margin-top: 4px;
  font-size: 14px;
  color: #333;
}

.popup-compare-small {
  margin-bottom: 4px;
  font-size: 14px;
  color: #333;
}

.popup-compare-alert {
  margin-top: 2px;
  font-size: 16px;
  font-weight: 800;
  color: #ff3c00;
  line-height: 1.4;
}

.popup-compare-env-strong {
  font-weight: 800;
  color: #000;
}

.popup-compare-env-link {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 800;
  color: #333
}

.popup-compare-bottom-text {
  margin: 38px 0 0;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: #4DB6A0;
  letter-spacing: 0.03em;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .popup-compare-section {
    padding: 40px 16px;
  }

  .popup-compare-title {
    margin-bottom: 32px;
    font-size: 24px;
  }

  .popup-compare-table {
    min-width: 900px;
  }

  .popup-compare-plan-name {
    font-size: 20px;
  }

  .popup-compare-price {
    font-size: 20px;
  }

  .popup-compare-bottom-text {
    font-size: 17px;
  }
}

.wp-check-box {
  width: fit-content;
  max-width: 760px;
  margin: 32px auto 0;
  padding: 28px 36px 28px;
  background-color: #C0E0DD;
  border: 2px solid #4DB6A0;
  border-radius: 16px;
  color: #00264d;
}

.wp-check-title {
  margin: 0 0 12px;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: #00264d;
  line-height: 1.4;
}

.wp-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wp-check-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.6;
  color: #00264d;
}

.wp-check-text {
  display: block;
  width: 620px;
  font-size: 18px;
  font-weight: 100 !important;
}

.wp-check-item:last-child {
  margin-bottom: 0;
}

.wp-check-number {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #4DB6A0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .wp-check-box {
    margin-top: 28px;
    padding: 28px 18px 24px;
    border-radius: 14px;
  }

  .wp-check-title {
    margin-bottom: 22px;
    font-size: 20px;
  }

  .wp-check-item {
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 16px;
  }

  .wp-check-number {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .wp-check-text {
    width: auto;
  }
}

@media screen and (max-width: 768px) {
  .wp-check-box {
    width: auto;
    max-width: 100%;
  }
}

/* ==========================================
plan-compare-section
============================================*/
.plan-compare-section {
  padding: 70px 24px 80px;
  background-color: #e8f4fc;
  color: #00264d;
}

.plan-compare-inner {
  max-width: 1020px;
  margin: 0 auto;
}

.plan-compare-title {
  margin: 24px 58px;
  text-align: center;
  font-size: 44px;
  font-weight: bold;
  color: #00264d;
  line-height: 1.4;
}

.plan-compare-title span {
  color: #0056b3;
}

.plan-compare-subtitle {
  margin: 8px 0 34px;
  text-align: center;
  font-size: 24px;
  color: #00264d;
}

.plan-compare-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.plan-compare-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background-color: #fff;
  box-shadow: 0 8px 24px rgba(0, 38, 77, 0.08);
}

.plan-compare-table th,
.plan-compare-table td {
  border: 1px solid #d7e3ec;
  padding: 14px 16px;
  text-align: center;
  vertical-align: middle;
  font-size: 16px;
  line-height: 1.5;
  color: #00264d;
}

.plan-compare-table thead th {
  padding: 18px 16px;
  font-size: 18px;
  font-weight: 800;
}

.plan-compare-head-label {
  width: 28%;
  background-color: #fbfdff;
  text-align: left !important;
}

.plan-compare-head {
  width: 36%;
}

.plan-compare-head-zero {
  background-color: #ffe4f0;
  border-top: 3px solid #dd51cd !important;
}

.plan-compare-head-mini {
  background-color: #dff0ff;
  border-top: 3px solid #2d75bd !important;
}

.plan-compare-plan-namezero {
  font-size: 24px;
  font-weight: 800;
  color: #dd51cd;
}

.plan-compare-plan-namemini {
  font-size: 24px;
  font-weight: 800;
  color: #0056b3;
}

.plan-compare-plan-note {
  margin-top: 3px;
  font-size: 14px;
  font-weight: 700;
}

.plan-compare-table tbody th {
  background-color: #fff;
  text-align: left;
  font-size: 18px;
  font-weight: 800;
  width: 28%;
}

.plan-compare-table tbody tr:nth-child(even) td,
.plan-compare-table tbody tr:nth-child(even) th {
  background-color: #fbfdff;
}

.plan-compare-pink {
  color: #dd51cd !important;
  font-weight: 800;
}

.plan-compare-blue {
  color: #0056b3 !important;
  font-weight: 800;
}

.plan-compare-circle {
  color: #1cab67;
  font-size: 18px;
  font-weight: 800;
}

.plan-compare-cross {
  color: #e277ad;
  font-size: 18px;
  font-weight: 800;
}

.plan-compare-small {
  margin-top: 2px;
  font-size: 12px;
  color: #4b5d70;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .plan-compare-section {
    padding: 50px 16px 60px;
  }

  .plan-compare-title {
    font-size: 24px;
  }

  .plan-compare-subtitle {
    margin-bottom: 26px;
  }

  .plan-compare-table {
    min-width: 760px;
  }

  .plan-compare-table th,
  .plan-compare-table td {
    padding: 12px 10px;
    font-size: 12px;
  }

  .plan-compare-plan-name {
    font-size: 15px;
  }
}

/* ==========================================
price-plan-section
============================================*/

.price-plan-section {
  padding: 80px 24px 90px;
  background-color:#FCE8F0;
  color: #00264d;
}

.price-plan-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.price-plan-title {
  margin: 0;
  text-align: center;
  font-size: 44px;
  font-weight: bold;
  line-height: 1.4;
  color: #00264d;
}

.price-plan-title span {
  color: #dd51cd;
}

.price-plan-caption {
  margin: 10px 0 48px;
  text-align: center;
  font-size: 16px;
  color: #4b5d70;
}

.price-plan-group {
  position: relative;
  margin: 0 auto 32px;
  padding: 56px 34px 34px;
  border-radius: 18px;
  background-color: #fff;
}

.price-plan-group-zero {
  border: 4px solid #dd51cd;
}

.price-plan-group-mini {
  border: 4px solid #0056b3;
  box-shadow: 0 8px 16px rgba(0, 38, 77, 0.12);
}

.price-plan-label-wrap {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.price-plan-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 8px 20px;
  border-radius: 999px;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.price-plan-label-zero {
  background-color: #dd51cd;
}

.price-plan-label-mini {
  background-color: #0056b3;
}

.price-plan-free-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  color: #ff3c00;
  font-size: 18px;
  font-weight: 800;
}

.price-plan-mini-text {
  font-size: 20px;
  font-weight: 700;
  color: #4b5d70;
}

.price-plan-initial {
  margin: 14px 0 28px;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  color: #00264d;
}

.price-plan-cards {
  display: grid;
  gap: 18px;
}

.price-plan-cards-zero {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
}

.price-plan-cards-mini {
  grid-template-columns: repeat(4, 1fr);
}

.price-plan-card {
  padding: 26px 18px 20px;
  border-radius: 12px;
  background-color: #fff;
  text-align: center;
}

.price-plan-group-zero .price-plan-card {
  border: 1px solid #dd51cd;
  background-color: #fff8fb;
}

.price-plan-group-mini .price-plan-card {
  border: 1px solid #0056b3;
  background-color: #e8f4fc;
}

.price-plan-card-name {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 800;
  color: #00264d;
}

.price-plan-price {
  margin: 0 0 18px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.price-plan-group-zero .price-plan-price {
  color: #dd51cd;
}

.price-plan-group-mini .price-plan-price {
  color: #0056b3;
}

.price-plan-price span {
  font-size: 15px;
  color: #4b5d70;
}

.price-plan-limit {
  padding: 12px 10px;
  border-radius: 10px;
  background-color: #fff;
}

.price-plan-limit p {
  margin: 0 0 4px;
  font-size: 16px;
  color: #6d7f90;
}

.price-plan-limit strong {
  font-size: 16px;
  font-weight: 800;
  color: #00264d;
}

.price-plan-option {
  margin: 16px 0 0;
  text-align: center;
  font-size: 16px;
  color: #4b5d70;
}

.price-plan-message {
  margin: 32px auto 24px;
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  color: #dd51cd;
  font-size: 32px;
  font-weight: 600;
}

.price-plan-note {
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: #4b5d70;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .price-plan-section {
    padding: 56px 16px 64px;
  }

  .price-plan-title {
    font-size: 24px;
  }

  .price-plan-caption {
    margin-bottom: 36px;
  }

  .price-plan-group {
    padding: 64px 16px 24px;
    border-width: 3px;
  }

  .price-plan-label-wrap {
    top: 24px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: calc(100% - 32px);
  }

  .price-plan-label {
    font-size: 15px;
    min-width: 80px;
  }

  .price-plan-cards-zero,
  .price-plan-cards-mini {
    grid-template-columns: 1fr;
  }

  .price-plan-price {
    font-size: 26px;
  }

  .price-plan-mini-text {
    font-size: 11px;
  }

  .price-plan-message {
    font-size: 15px;
  }
}

/* ==========================================
easy-start-section
============================================*/
.easy-start-section {
  background-color: #fff;
  padding: 74px 24px 72px;
  color: #00264d;
}

.easy-start-inner {
  max-width: 900px;
  margin: 0 auto;
}

.easy-start-title {
  margin: 0 0 44px;
  text-align: center;
  font-size: 44px;
  font-weight: bold;
  color: #00264d;
  line-height: 1.4;
}

.easy-start-title span {
  color: #4DB6A0;
}

.easy-start-step {
  margin-bottom: 18px;
}

.easy-start-step-last {
  margin-bottom: 0;
}

.easy-start-step-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.easy-start-step-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 9px 13px;
  border: 1.5px solid #4DB6A0;
  border-radius: 10px;
  background-color: #4DB6A0;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.easy-start-step-head h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  color: #00264d;
}

.easy-start-choose {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0 24px;
}

.easy-start-choose-card {
  padding: 24px 20px 18px;
  border-radius: 14px;
  text-align: center;
}

.easy-start-choose-card-zero {
  background-color: #fce8f0;
}

.easy-start-choose-card-mini {
  background-color: #e8f4fc;
}

.easy-start-card-title {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 800;
}

.easy-start-pink {
  color: #dd51cd;
}

.easy-start-blue {
  color: #0056b3;
}

.easy-start-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 6px 16px;
  border-radius: 999px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.easy-start-pill-zero {
  background-color: #dd51cd;
}

.easy-start-pill-mini {
  background-color: #0056b3;
}

.easy-start-card-text {
  margin: 10px 0 0;
  font-size: 18px;
  font-weight: 700;
}

.easy-start-arrow-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0 24px;
  margin: 4px 0 10px;
  text-align: center;
}

.easy-start-arrow,
.easy-start-center-arrow {
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
}

.easy-start-arrow-pink {
  color: #dd51cd;
}

.easy-start-arrow-blue {
  color: #0056b3;
}

.easy-start-setup {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0 24px;
}

.easy-start-setup-card {
  min-height: 76px;
  padding: 14px 18px;
  border-radius: 12px;
  background-color: #fff;
  text-align: center;
}

.easy-start-setup-card-zero {
  border: 1.5px solid #dd51cd;
}

.easy-start-setup-card-mini {
  border: 1.5px solid #0056b3;
}

.easy-start-setup-card p {
  margin: 10px 0 0;
  font-size: 18px;
  font-weight: 700;
}

.easy-start-merge-arrow {
  position: relative;
  height: 42px;
  margin: 0 auto;
  width: 220px;
}

.easy-start-merge-arrow::before,
.easy-start-merge-arrow::after {
  content: "";
  position: absolute;
  top: 7px;
  width: 50%;
  height: 18px;
  border-bottom: 2px solid #4DB6A0;
}

.easy-start-merge-arrow::before {
  left: 0;
  border-left: 2px solid #4DB6A0;
}

.easy-start-merge-arrow::after {
  right: 0;
  border-right: 2px solid #4DB6A0;
}

.easy-start-merge-arrow span {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid #4DB6A0;
}

.easy-start-create-box {
  border: 2px solid #4DB6A0;
  border-radius: 12px;
  padding: 24px 32px;
  margin-top: 24px;
  background-color: #fff;
  text-align: center;
}

.easy-start-create-box p {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.easy-start-create-box p + p {
  margin-top: 8px;
  color: #00264d;
  font-weight: 500;
}

.easy-start-green-text {
  color: #4DB6A0;
  font-weight: 800 !important;
}

.easy-start-center-arrow {
  margin: 12px 0 10px;
  text-align: center;
  color: #4DB6A0;
}

.easy-start-display-title {
  margin: 0 24px 16px;
  font-size: 24px;
}

.easy-start-display-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 0px;
}

.easy-start-display-item {
  text-align: center;
}

.easy-start-display-card {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  padding: 1px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 38, 77, 0.12);
  box-sizing: border-box;
}

.easy-start-display-card img,
.easy-start-display-card .usecase-pic {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.easy-start-display-caption {
  margin: 22px 0 0;
  color: #00264d;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.easy-start-display-box {
  border: 2px solid #4DB6A0;
  border-radius: 20px;
  padding: 32px 1px;
  margin-top: 24px;
  background-color: #fff;
}

.easy-start-display-title {
  text-align: center;
  margin: 0 0 28px;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .easy-start-section {
    padding: 56px 16px 60px;
  }

  .easy-start-title {
    margin-bottom: 34px;
    font-size: 24px;
  }

  .easy-start-step-head {
    align-items: flex-start;
    gap: 10px;
  }

  .easy-start-step-label {
    min-width: 66px;
    font-size: 12px;
  }

  .easy-start-step-head h3 {
    font-size: 15px;
    padding-top: 6px;
  }

  .easy-start-choose,
  .easy-start-setup,
  .easy-start-arrow-row,
  .easy-start-display-list {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .easy-start-arrow-row {
    display: none;
  }

  .easy-start-create-box,
  .easy-start-display-title {
    margin-left: 0;
    margin-right: 0;
  }

  .easy-start-merge-arrow {
    width: 120px;
  }

  .easy-start-display-card {
    height: 110px;
  }
}

@media screen and (max-width: 768px) {
  .easy-start-display-list {
    grid-template-columns: 1fr 1fr;
    gap: 20px 14px;
    padding: 0;
  }

  .easy-start-display-card {
    padding: 14px;
  }

  .easy-start-display-caption {
    margin-top: 12px;
    font-size: 15px;
  }

  .easy-start-display-box {
    padding: 24px 16px;
    border-radius: 14px;
  }

  .easy-start-display-title {
    margin-bottom: 20px;
  }
}

/* ==========================================
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: 100%;
  margin: 0;
  padding: 40px 20px 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-logo img {
  display: block;
  height: 40px;
  width: auto;
  margin: 10px 10px 10px;
}

.footer-copy {
  margin: 0;
  font-size: 12px;
  opacity: 0.8;
}

body {
  margin: 0;
}

.footer-bottom+.footer-pascal {
  max-width: 100%;
  margin: 0;
  padding: 32px 20px;
}

.footer-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 18px;
}

/* 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: 17px;
  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: 20px;
    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: 26px;
    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: 18px;
  }

  /* ボタン類 */
  .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;
}

.wpcf7-form-control.wpcf7-acceptance {
  display: contents;
}

.cf7-response-anchor .wpcf7-response-output {
  margin: 12px 0 0;
}

.trial-form .required {
  color: red;
  font-size: 10px;
  margin-left: 2px;
  display: inline-block;
  vertical-align: top;
}

#contact-form .inquiry-container {
  max-width: 750px;
  margin: 0 auto 80px;
  padding: 1em;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ==========================================
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
}

a.info-card {
  color: inherit;
  text-decoration: none;
}

a.info-card:hover {
  text-decoration: none;
}

.wpcf7-response-output {
  margin: 10px 0 0;
}

.topics-link-button-wrap {
  display: flex;
  justify-content: center;
  margin: 40px 0;
  position: relative;
  z-index: 10;
}

.topics-link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;

  width: 100%;
  max-width: 600px;
  height: 56px;

  background-color: #006bd6;
  color: #fff;
  text-decoration: none;

  font-size: 18px;
  font-weight: 700;
  line-height: 1;

  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.18);

  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;

  cursor: pointer;
  position: relative;
  z-index: 11;
  pointer-events: auto;
}

.topics-link-button:hover {
  background-color: #005fc0;
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.22);
}

.topics-link-button__arrow {
  font-size: 22px;
  line-height: 1;
}

@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr !important;
  }
}

@media screen and (max-width: 767px) {
  .topics-link-button-wrap {
    margin: 32px 16px;
  }

  .topics-link-button {
    max-width: none;
    height: 52px;
    font-size: 16px;
    gap: 16px;
  }

  .topics-link-button__arrow {
    font-size: 20px;
  }
}

/* ==========================================
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 {
  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;
}


.inquiry-header {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

/* ==========================================
page-news
============================================*/
.topics-header {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.topics-page-title {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}

.topics-bg-pattern {
  z-index: 1;
}

.topics-title {
  color: #0056b3;
  font-size: 48px;
  font-weight: 900;
  text-align: left;
}

.topics-bg-pattern {
  position: absolute;
  inset: 0;
  background-color: #e8f4fc;
  pointer-events: none;
}

.topics-bg-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .3;
  /* ドットだけに効かせる */
  background-image: radial-gradient(circle, #4a90c2 1.5px, transparent 1.5px);
  background-size: 32px 32px;
}

/* 全体 */
.topics-page {
  padding: 60px 20px 80px;
}

.topics-container {
  max-width: 960px;
  margin: 0 auto;
}

.topics-subtitle {
  margin: 0;
  font-size: 20px;
  color: #666;
}

/* フィルター（タブ＋検索） */
.topics-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.topics-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.topics-tabs li a {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  color: #666;
  font-size: 16px;
  text-decoration: none;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
  cursor: pointer;
}

/* ホバー時 ─────────────────*/
.topics-tabs li a:hover {
  background: #0056B3;
  border-color: #0056B3;
  color: #fff;
}

/* 選択中（active クラス） ───────*/
.topics-tabs li.active a {
  background: #0056B3;
  border-color: #0056B3;
  color: #fff;
  font-weight: 600;
}

/* 一覧 */
.topics-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.topics-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5edf7;
  padding: 20px 24px;
  box-shadow: 0 8px 18px rgba(20, 40, 80, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.topics-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(20, 40, 80, 0.08);
}

.topics-item-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

/* メタ情報（日付＋カテゴリ） */
.topics-item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.topics-item-date {
  font-size: 18px;
  color: #77839a;
}

.topics-item-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  color: #007fa8;
  background: #e6f8ff;
}

/* タイトル・抜粋 */
.topics-item-title {
  font-size: 20px;
  font-weight: 500;
  margin: 4px 0 8px;
  color: #222;
}

.topics-item-excerpt {
  font-size: 13px;
  line-height: 1.8;
  color: #555;
}

/* 記事なし */
.topics-empty {
  padding: 32px 0;
  text-align: center;
  font-size: 14px;
  color: #777;
}

/* ページネーション */
.topics-pagination {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.topics-pagination .nav-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.topics-pagination .page-numbers {
  display: inline-flex;
  min-width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 10px;
  border: 1px solid transparent;
  font-size: 13px;
  color: #555;
  text-decoration: none;
}

.topics-pagination .page-numbers.current {
  background: #00c4ff;
  border-color: #00c4ff;
  color: #fff;
  font-weight: 600;
}

.topics-pagination .page-numbers:hover:not(.current) {
  border-color: #dde5f2;
  background: #f5f8fd;
}

.topics-pagination .prev,
.topics-pagination .next {
  padding: 0 12px;
}

/* スマホ対応 */
@media (max-width: 767px) {
  .topics-page {
    padding: 40px 16px 60px;
  }

  .topics-header {
    padding: 60px 16px 40px;
  }

  .topics-title {
    font-size: 26px;
  }

  .topics-filter {
    flex-direction: column;
    align-items: stretch;
  }

  .topics-search {
    width: 100%;
  }

  .topics-search input[type="text"] {
    flex: 1;
    min-width: 0;
  }

  .topics-item {
    padding: 16px 18px;
  }

  .topics-item-title {
    font-size: 16px;
  }
}

/* 一覧 */
.news-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-list li {
  display: flex;
  gap: 1rem;
  padding: .8rem 0;
  border-bottom: 1px solid #ddd;
}

.news-date {
  width: 6rem;
  font-size: .9rem;
  color: #666;
}

.news-cat {
  background: #f90;
  color: #fff;
  border-radius: 3px;
  padding: 0 .4rem;
  font-size: .8rem;
}

.news-title {
  flex: 1;
}

.topics-item-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topics-item-thumb img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  /* 任意 */
}

/* ==========================================
single
============================================*/
#single-news h1 {
  font-size: 28px;
  margin-bottom: .4rem;
}

#single-news .meta {
  font-size: .9rem;
  color: #666;
  margin-bottom: 1rem;
}

.back a {
  display: inline-block;
  margin-top: 2rem;
  color: #0073aa;
}

/* コンテナ */
#single-news.l-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  /* 固定ヘッダーで被る場合：ヘッダー高に合わせて調整 */
  padding-top: 110px;
}

/* 記事全体 */
#single-news article {
  padding: 40px 0 24px;
}

/* タイトル */
#single-news h1 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.45;
  letter-spacing: .02em;
}

/* メタ（日付・カテゴリ） */
#single-news .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin: 0 0 28px;
  font-size: 14px;
  color: #666;
}

#single-news .meta time {
  display: inline-block;
}

/* カテゴリをバッジ化 */
#single-news .meta a {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid rgba(0, 86, 179, .25);
  border-radius: 999px;
  background: #0060cd;
  color: #ffffff;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

#single-news .meta a:hover {
  background: rgba(0, 86, 179, .14);
  border-color: rgba(0, 86, 179, .35);
  text-decoration: none;
}

/* 本文 */
#single-news .entry-content {
  font-size: 16px;
  line-height: 1.95;
  color: #222;
}

#single-news .entry-content>*:first-child {
  margin-top: 0;
}

#single-news .entry-content p {
  margin: 0 0 1.2em;
  font-size: 18px;
}

#single-news .entry-content h2 {
  margin: 2.0em 0 .8em;
  line-height: 1.5;
  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;
}

#single-news .entry-content h3 {
  font-size: 22px;
  font-weight: 700;
  max-width: 980px;
  background: #fafafa;
  padding: 10px 20px 10px;
  color: #0060cd;
  line-height: 1.9;
}

#single-news .entry-content a {
  color: #0a58ca;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#single-news .entry-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

#single-news .entry-content figure {
  margin: 1.4em 0;
}

/* 前後ナビ */
#single-news .post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0 60px;
  border-top: 1px solid #eee;
  margin-top: 36px;
}

#single-news .post-navigation .nav-previous,
#single-news .post-navigation .nav-next {
  flex: 1;
}

#single-news .post-navigation .nav-next {
  text-align: right;
}

#single-news .post-navigation a {
  display: inline-block;
  color: #222;
  text-decoration: none;
}

#single-news .post-navigation a:hover {
  text-decoration: underline;
}

/* スマホ */
@media (max-width: 640px) {
  #single-news.l-container {
    padding: 0 16px;
    padding-top: 90px;
    /* ヘッダー高に合わせて調整 */
  }

  #single-news h1 {
    font-size: 22px;
  }

  #single-news .post-navigation {
    flex-direction: column;
  }

  #single-news .post-navigation .nav-next {
    text-align: left;
  }
}

/* タイトル・日付・本文を1つの枠で囲う */
#single-news article {
  background: #e8f4fc;
  border: 3px solid #e8f4fc;
  border-radius: 35px;
  padding: 28px 28px 24px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
}

/* 枠の中の余白調整 */
#single-news h1 {
  margin-top: 0;
  font-size: 35px;
  color: #0060cd;
}

#single-news .meta {
  margin-bottom: 18px;

}

/* ナビは枠の外に置く（必要なら） */
#single-news .post-navigation {
  border-top: none;
  margin-top: 18px;
}

#single-news .back-to-list {
  margin: 18px 0 0;
  text-align: center;
}

#single-news .back-to-list__btn {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid #0056b3;
  border-radius: 999px;
  background: #fff;
  color: #0056b3;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
}

#single-news .back-to-list__btn:hover {
  text-decoration: underline;
}