@charset "UTF-8";

/* ============================================
   StudySupport LP — Common Styles
   Color: Blue-green + Light base
   ============================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: #1a1a2e;
  background: #ffffff;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: #0ea5a0;
  text-decoration: none;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

ul, ol {
  list-style: none;
}

/* --- Layout --- */
.section {
  padding: 80px 10%;
}

.section--alt {
  background: #f5f9fc;
}

.section--teal {
  background: #0ea5a0;
  color: #ffffff;
}

.section__title {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.section__subtitle {
  font-size: 1rem;
  text-align: center;
  color: #5a6577;
  margin-bottom: 48px;
}

.section--teal .section__subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* --- Header / Nav --- */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 10%;
  background: #ffffff;
  border-bottom: 1px solid #e8ecf1;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0ea5a0;
}

.header__logo small {
  font-size: 0.75rem;
  font-weight: 400;
  color: #5a6577;
  display: block;
}

/* キャラバン車輪ロゴ */
.logo-wheel {
  width: 32px;
  height: 32px;
  border: 3px solid #0ea5a0;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.logo-wheel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #0ea5a0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.logo-wheel::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
  background:
    linear-gradient(0deg, #0ea5a0 0%, #0ea5a0 100%) center/1.5px 100% no-repeat,
    linear-gradient(90deg, #0ea5a0 0%, #0ea5a0 100%) center/100% 1.5px no-repeat,
    linear-gradient(45deg, #0ea5a0 0%, #0ea5a0 100%) center/1.5px 100% no-repeat,
    linear-gradient(-45deg, #0ea5a0 0%, #0ea5a0 100%) center/1.5px 100% no-repeat;
  border-radius: 50%;
}

/* ハンバーガーボタン */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #1a1a2e;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__link {
  font-size: 0.875rem;
  color: #1a1a2e;
  font-weight: 500;
}

.header__link:hover {
  color: #0ea5a0;
}

/* --- Hero --- */
.hero {
  padding: 100px 10% 80px;
  background: linear-gradient(135deg, #f5f9fc 0%, #e6f7f6 100%);
  text-align: center;
}

.hero__badge {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 20px;
  background: #0ea5a0;
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero__title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #1a1a2e;
}

.hero__title em {
  font-style: normal;
  color: #0ea5a0;
}

.hero__lead {
  font-size: 1.0625rem;
  color: #3d4654;
  margin-bottom: 40px;
  line-height: 1.9;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.btn--primary {
  background: #f59e0b;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.btn--primary:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
  opacity: 1;
}

.btn--outline {
  background: transparent;
  color: #0ea5a0;
  border: 2px solid #0ea5a0;
}

.btn--outline:hover {
  background: #0ea5a0;
  color: #ffffff;
  opacity: 1;
}

.btn--white {
  background: #ffffff;
  color: #0ea5a0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  opacity: 1;
}

/* --- SVG Icons --- */
.icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.icon svg {
  width: 100%;
  height: 100%;
  stroke: #0ea5a0;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon--lg {
  width: 48px;
  height: 48px;
}

.icon--card {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
}

.icon--service {
  width: 32px;
  height: 32px;
}

.card--bordered-amber .icon svg { stroke: #f59e0b; }
.card--bordered-blue .icon svg { stroke: #3b82f6; }
.card--bordered-purple .icon svg { stroke: #8b5cf6; }

.theme-card:nth-child(1) .icon svg { stroke: #0ea5a0; }
.theme-card:nth-child(2) .icon svg { stroke: #3b82f6; }
.theme-card:nth-child(3) .icon svg { stroke: #f59e0b; }
.theme-card:nth-child(4) .icon svg { stroke: #8b5cf6; }

/* --- Cards (3-col / 4-col) --- */
.cards {
  display: grid;
  gap: 24px;
}

.cards--3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.cards--2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.card__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0ea5a0;
  margin-bottom: 8px;
}

.card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.card__text {
  font-size: 0.9375rem;
  color: #5a6577;
  line-height: 1.7;
}

.card--bordered {
  border-top: 4px solid #0ea5a0;
}

.card--bordered-amber {
  border-top: 4px solid #f59e0b;
}

.card--bordered-blue {
  border-top: 4px solid #3b82f6;
}

.card--bordered-purple {
  border-top: 4px solid #8b5cf6;
}

/* --- Profile --- */
.profile {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.profile__img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #e6f7f6;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.profile__img svg {
  width: 100%;
  height: 100%;
  stroke: #0ea5a0;
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile__body {
  flex: 1;
}

.profile__name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.profile__role {
  font-size: 0.875rem;
  color: #0ea5a0;
  font-weight: 600;
  margin-bottom: 16px;
}

.profile__text {
  font-size: 0.9375rem;
  color: #3d4654;
  line-height: 1.8;
  margin-bottom: 16px;
}

.profile__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile__tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 16px;
  background: #e6f7f6;
  color: #0ea5a0;
  font-size: 0.8125rem;
  font-weight: 500;
}

/* --- Comparison Table --- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  max-width: 900px;
  font-size: 0.9375rem;
}

.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid #e8ecf1;
}

.compare-table thead th {
  background: #f5f9fc;
  font-weight: 700;
  color: #1a1a2e;
}

.compare-table thead th:last-child {
  background: #0ea5a0;
  color: #ffffff;
  border-radius: 8px 8px 0 0;
}

.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
}

.compare-table tbody td:last-child {
  background: #f0faf9;
  font-weight: 600;
  color: #0ea5a0;
}

/* --- Steps --- */
.steps {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 140px;
  max-width: 180px;
  text-align: center;
}

.step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0ea5a0;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.step__title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.step__text {
  font-size: 0.8125rem;
  color: #5a6577;
}

.step__arrow {
  display: flex;
  align-items: center;
  color: #0ea5a0;
  font-size: 1.5rem;
  padding-top: 12px;
}

/* --- Pricing --- */
.pricing {
  display: grid;
  gap: 24px;
}

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

.pricing--3 {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card--featured {
  border-color: #0ea5a0;
  position: relative;
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #0ea5a0;
  color: #ffffff;
  padding: 4px 20px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}

.pricing-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-card__price {
  font-size: 2rem;
  font-weight: 800;
  color: #0ea5a0;
  margin-bottom: 4px;
}

.pricing-card__price small {
  font-size: 0.875rem;
  font-weight: 400;
  color: #5a6577;
}

.pricing-card__desc {
  font-size: 0.8125rem;
  color: #5a6577;
  margin-bottom: 20px;
}

.pricing-card__features {
  text-align: left;
  margin-bottom: 24px;
}

.pricing-card__features li {
  font-size: 0.875rem;
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  color: #3d4654;
}

.pricing-card__features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #0ea5a0;
  font-weight: 700;
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e8ecf1;
  padding: 24px 0;
}

.faq-item__q {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.faq-item__q::before {
  content: "Q";
  position: absolute;
  left: 0;
  color: #0ea5a0;
  font-weight: 800;
}

.faq-item__a {
  font-size: 0.9375rem;
  color: #3d4654;
  padding-left: 28px;
  position: relative;
  line-height: 1.8;
}

.faq-item__a::before {
  content: "A";
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-weight: 800;
}

/* --- CTA Section --- */
.cta {
  text-align: center;
  padding: 80px 10%;
  background: linear-gradient(135deg, #0ea5a0 0%, #0d8f8a 100%);
  color: #ffffff;
}

.cta__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta__text {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 36px;
}

/* --- Footer --- */
.footer {
  padding: 40px 10%;
  background: #1a1a2e;
  color: #a0a8b8;
  text-align: center;
  font-size: 0.8125rem;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.footer__links a {
  color: #a0a8b8;
  font-size: 0.8125rem;
}

.footer__links a:hover {
  color: #ffffff;
}

.footer__disclaimer {
  font-size: 0.6875rem;
  color: #7a8290;
  margin-bottom: 12px;
  line-height: 1.7;
}

/* --- Service List --- */
.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
  max-width: 960px;
  margin: 0 auto;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #e8ecf1;
}

.service-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #e6f7f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 10px;
}

.service-item__icon svg {
  width: 100%;
  height: 100%;
  stroke: #0ea5a0;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-item__body {
  flex: 1;
}

.service-item__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.service-item__text {
  font-size: 0.875rem;
  color: #5a6577;
}

/* --- Theme Cards (2x2) --- */
.theme-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.theme-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 24px;
  border-left: 4px solid #0ea5a0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.theme-card:nth-child(2) {
  border-left-color: #3b82f6;
}

.theme-card:nth-child(3) {
  border-left-color: #f59e0b;
}

.theme-card:nth-child(4) {
  border-left-color: #8b5cf6;
}

.theme-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a2e;
}

.theme-card__list {
  font-size: 0.875rem;
  color: #5a6577;
  line-height: 1.8;
}

/* --- Stats --- */
.stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0ea5a0;
}

.stat__label {
  font-size: 0.875rem;
  color: #5a6577;
  margin-top: 4px;
}

.stat__source {
  font-size: 0.6875rem;
  color: #8a93a3;
  margin-top: 4px;
}

/* --- Page Switcher --- */
.page-switch {
  display: inline-flex;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #0ea5a0;
}

.page-switch__link {
  padding: 8px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0ea5a0;
  background: #ffffff;
}

.page-switch__link--active {
  background: #0ea5a0;
  color: #ffffff;
}

.page-switch__link:hover {
  opacity: 1;
  background: #e6f7f6;
}

.page-switch__link--active:hover {
  background: #0d8f8a;
}

/* --- Modal --- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.modal-overlay.is-open {
  display: flex;
}

.modal {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 36px;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  max-height: 90vh;
  overflow-y: auto;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: #f5f9fc;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.modal__close:hover {
  background: #e8ecf1;
}

.modal__close svg {
  width: 18px;
  height: 18px;
  stroke: #5a6577;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}

.modal__title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a2e;
}

.modal__subtitle {
  font-size: 0.875rem;
  color: #5a6577;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1a1a2e;
}

.form-group label .required {
  color: #ef4444;
  font-size: 0.75rem;
  margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-family: inherit;
  color: #1a1a2e;
  background: #ffffff;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0ea5a0;
  box-shadow: 0 0 0 3px rgba(14, 165, 160, 0.1);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-group--consent {
  margin-bottom: 24px;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8125rem;
  color: #3d4654;
  cursor: pointer;
  line-height: 1.6;
}

.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #0ea5a0;
}

.consent-label a {
  color: #0ea5a0;
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #f59e0b;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.form-submit:hover {
  background: #d97706;
  transform: translateY(-2px);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .cards--4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .profile__tags {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 56px 10%;
  }

  .hero {
    padding: 72px 10% 56px;
  }

  .hero__title {
    font-size: 1.625rem;
  }

  .section__title {
    font-size: 1.375rem;
  }

  .cards--3,
  .cards--4,
  .cards--2 {
    grid-template-columns: 1fr;
  }

  .pricing--4,
  .pricing--3 {
    grid-template-columns: 1fr;
  }

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

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

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    max-width: 100%;
  }

  .step__arrow {
    transform: rotate(90deg);
    justify-content: center;
  }

  .hamburger {
    display: flex;
  }

  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e8ecf1;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 10%;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  }

  .header__nav.is-open {
    display: flex;
  }

  .header__nav .page-switch {
    justify-content: center;
  }

  .header__nav .header__link {
    text-align: center;
    padding: 8px 0;
  }

  .header__nav .btn {
    width: 100%;
    text-align: center;
  }

  .compare-table {
    font-size: 0.8125rem;
  }

  .compare-table th,
  .compare-table td {
    padding: 10px 8px;
  }

  .stats {
    gap: 24px;
  }

  .stat__number {
    font-size: 2rem;
  }

  .profile__img {
    width: 140px;
    height: 140px;
    font-size: 3rem;
  }

  .header {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* ============================================
   Legal Pages (Privacy / Tokushoho)
   ============================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-top: 40px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #0ea5a0;
}

.legal-content p {
  font-size: 0.9375rem;
  color: #3d4654;
  line-height: 1.9;
  margin-bottom: 16px;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 20px;
}

.legal-content ul li {
  font-size: 0.9375rem;
  color: #3d4654;
  line-height: 1.9;
  position: relative;
  padding-left: 16px;
}

.legal-content ul li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: #0ea5a0;
  font-weight: 700;
}

.legal-content__date {
  margin-top: 40px;
  font-size: 0.875rem;
  color: #5a6577;
  text-align: right;
}

/* --- Legal Table (Tokushoho) --- */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.legal-table th,
.legal-table td {
  padding: 20px 24px;
  border-bottom: 1px solid #e8ecf1;
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}

.legal-table th {
  width: 180px;
  font-weight: 700;
  color: #1a1a2e;
  background: #f5f9fc;
  white-space: nowrap;
}

.legal-table td {
  color: #3d4654;
}

.legal-table td small {
  font-size: 0.8125rem;
  color: #5a6577;
}

.legal-table td strong {
  color: #1a1a2e;
}

@media (max-width: 768px) {
  .legal-table th {
    width: 120px;
    padding: 14px 12px;
    font-size: 0.8125rem;
  }

  .legal-table td {
    padding: 14px 12px;
    font-size: 0.875rem;
  }
}
