@charset "UTF-8";
:root {
  --brand-red: #C81628;
  --brand-blue-dk: #2f4d88;
  --brand-blue: #2563EB;
  --brand-teal: #0D9488;
  --brand-gold: #B8860B;
  --brand-gold-dk:#96720A;
  --brand-orange: #EA580C;
  --brand-green: #16A34A;
  --brand-cyan: #0891B2;
  --brand-cyan-dk:#0E7490;
  --brand-red-rgb: 200 22 40;
  --brand-blue-rgb: 37 99 235;
  --brand-teal-rgb: 13 148 136;
  --brand-gold-rgb: 184 134 11;
  --brand-green-rgb: 22 163 74;
  --brand-primary: var(--brand-red);
  --brand-secondary: var(--brand-orange);
  --brand-primary-rgb: 200 22 40;
  --brand-secondary-rgb: 234 88 12;
  --benefit-icon-bg: var(--brand-primary);
  --benefit-icon-color: #fff;
  --chart-natural: #EF4444;
  --chart-accidental: #F97316;
  --nav-height: 4rem;
  --border-light: #e5e7eb;
  --border-mid: #d1d5db;
}

.fw-black {
  font-weight: 900;
}

.font-mono {
  font-family: "Space Mono", monospace;
}

.tracking-widest {
  letter-spacing: 0.12em;
}

.text-brand-red {
  color: var(--brand-red);
}

.text-brand-acc {
  color: var(--brand-secondary);
}

.text-brand-primary {
  color: var(--brand-primary);
}

.text-brand-secondary {
  color: var(--brand-secondary);
}

.bg-brand-primary {
  background-color: var(--brand-primary);
}

.bg-brand-secondary {
  background-color: var(--brand-secondary);
}

.bg-brand-primary-soft {
  background-color: rgb(var(--brand-primary-rgb)/0.1);
}

.bg-brand-secondary-soft {
  background-color: rgb(var(--brand-secondary-rgb)/0.1);
}

.border-brand-primary {
  border-color: var(--brand-primary) !important;
}

.border-brand-secondary {
  border-color: var(--brand-secondary) !important;
}

.border-brand-primary-soft {
  border-color: rgb(var(--brand-primary-rgb)/0.3) !important;
}

.border-brand-secondary-soft {
  border-color: rgb(var(--brand-secondary-rgb)/0.3) !important;
}

.btn-brand-primary {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  background: var(--brand-primary);
  color: white;
  border: none;
  border-radius: 2em;
  padding: 0.625em 1.75em;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: opacity 0.2s, -webkit-box-shadow 0.2s;
  transition: opacity 0.2s, -webkit-box-shadow 0.2s;
  transition: opacity 0.2s, box-shadow 0.2s;
  transition: opacity 0.2s, box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.btn-brand-primary:hover {
  opacity: 0.9;
  color: white;
  -webkit-box-shadow: 0 4px 16px rgb(var(--brand-primary-rgb)/0.3);
          box-shadow: 0 4px 16px rgb(var(--brand-primary-rgb)/0.3);
}

.btn-brand-secondary {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  background: var(--brand-secondary);
  color: white;
  border: none;
  border-radius: 2em;
  padding: 0.625em 1.75em;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: opacity 0.2s, -webkit-box-shadow 0.2s;
  transition: opacity 0.2s, -webkit-box-shadow 0.2s;
  transition: opacity 0.2s, box-shadow 0.2s;
  transition: opacity 0.2s, box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.btn-brand-secondary:hover {
  opacity: 0.9;
  color: white;
  -webkit-box-shadow: 0 4px 16px rgb(var(--brand-secondary-rgb)/0.3);
          box-shadow: 0 4px 16px rgb(var(--brand-secondary-rgb)/0.3);
}

.btn-brand-outline-primary {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  background: transparent;
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
  border-radius: 2em;
  padding: 0.625em 1.75em;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: color 0.2s, background 0.2s;
  transition: color 0.2s, background 0.2s;
}
.btn-brand-outline-primary:hover {
  color: var(--brand-primary);
  background: rgb(var(--brand-primary-rgb)/0.07);
}

.btn-brand-outline-secondary {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  background: transparent;
  color: var(--brand-secondary);
  border: 1px solid var(--brand-secondary);
  border-radius: 2em;
  padding: 0.625em 1.75em;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: color 0.2s, background 0.2s;
  transition: color 0.2s, background 0.2s;
}
.btn-brand-outline-secondary:hover {
  color: var(--brand-secondary);
  background: rgb(var(--brand-secondary-rgb)/0.07);
}

.text-xs {
  font-size: 0.75em;
}

.text-sm-em {
  font-size: 0.875em;
}

.text-2xs {
  font-size: 0.75rem;
}

.text-2xs-tracked {
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.text-dark-strong {
  color: #1f2937;
}

.text-muted-soft {
  color: #9ca3af;
}

.text-sm-90 {
  font-size: 0.9rem;
}

.text-2xl-custom {
  font-size: 1.75rem;
}

.section-sub-muted {
  font-size: 0.875rem;
  color: #9ca3af;
}

.scroll-hint-text {
  font-size: 0.625rem;
  color: #9ca3af;
}

.chart-note-text {
  font-size: 0.6875rem;
}

.tw-balance {
  text-wrap: balance;
}

.tw-pretty {
  text-wrap: pretty;
}

.feature-card-sub {
  font-size: 1rem;
}

.feature-card-desc {
  font-size: 1.1rem;
  line-height: 1.7;
}

.feature-card-desc-loose {
  font-size: 1rem;
  line-height: 2;
}

.hero-lead-text {
  font-size: 1.1rem;
  line-height: 1.8;
  text-wrap: pretty;
}

.section-desc-sm {
  font-size: 1rem;
  line-height: 1.8;
  text-wrap: pretty;
}

.comparison-lead {
  font-size: 1rem;
  max-width: 50rem;
  margin-inline: auto;
}

.subsection-title {
  font-size: 1.15rem;
}

.benefit-val {
  font-size: 1.1em;
}

.benefit-val-unit {
  font-size: 0.7em;
}

.benefit-note {
  font-size: 0.85em;
}

.heading-accent-bar {
  width: 5rem;
  height: 3px;
  background: var(--brand-red);
  border-radius: 2px;
}

.heading-accent-bar--primary {
  background: var(--brand-primary, var(--brand-red));
}

.section-inner-md {
  max-width: 56rem;
}

.section-inner-sm {
  max-width: 48rem;
}

.section-inner-md-auto {
  max-width: 52rem;
  margin-inline: auto;
}

.section-inner-xs-auto {
  max-width: 44rem;
  margin-inline: auto;
}

.bg-section-faint {
  background: #f9fafb;
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.icon-xs {
  width: 0.75rem;
  height: 0.75rem;
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.icon-sm-lg {
  width: 1.125rem;
  height: 1.125rem;
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.icon-md {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.icon-lg {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.icon-xl {
  width: 2rem;
  height: 2rem;
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.icon-2xl {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.icon-red {
  color: var(--brand-red);
}

.icon-acc {
  color: var(--brand-secondary);
}

.icon-dark {
  color: #374151;
}

.cat-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #374151;
  margin-bottom: 0.75rem;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  -webkit-font-smoothing: antialiased;
  font-family: "Arial", "Noto Sans JP", sans-serif;
  color: #1a1a1a;
  font-weight: 400;
}

.site-nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-brand {
  font-weight: 900;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #111;
}

.nav-link-custom {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.875em;
  font-weight: 700;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.nav-link-custom:hover, .nav-link-custom.active {
  color: var(--brand-red);
}

.subtilte {
  font-size: 0.73em;
  -webkit-margin-start: 0.5rem;
          margin-inline-start: 0.5rem;
  font-weight: 500;
}

.page-header {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .page-header {
    padding-top: calc(var(--nav-height) + 6rem);
    padding-bottom: 6rem;
  }
}

.bg-pattern {
  background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
  background-size: 24px 24px;
}

.hero-deco {
  position: absolute;
  top: -10rem;
  right: -10rem;
  width: 24rem;
  height: 24rem;
  background: #fee2e2;
  border-radius: 50%;
  mix-blend-mode: multiply;
  -webkit-filter: blur(60px);
          filter: blur(60px);
  opacity: 0.7;
  pointer-events: none;
}

.badge-outline-red {
  display: inline-block;
  padding: 0.375em 1em;
  border-radius: 2em;
  border: 1px solid var(--brand-red);
  color: var(--brand-red);
  font-size: 0.75em;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 1.5em;
}

.hero-heading {
  font-size: clamp(2.3rem, 5.5vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-wrap: balance;
  margin: 2rem 0;
  line-height: 1.2;
}

.feature-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5em;
  -webkit-box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
          box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid #f1f5f9;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  height: 100%;
}
.feature-card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.feature-icon-wrap {
  width: 6rem;
  height: 6rem;
}
.feature-icon-wrap svg, .feature-icon-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.category-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75em;
  padding: 1.25em 1em;
  border: 1px solid var(--bs-border-color, #dee2e6);
  border-radius: var(--bs-border-radius, 0.375rem);
  background-color: var(--bs-body-bg, #fff);
  cursor: pointer;
  -webkit-transition: -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  transition: box-shadow 0.2s ease, transform 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  text-wrap: pretty;
}
.category-card:hover {
  -webkit-box-shadow: var(--bs-box-shadow-sm, 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075));
          box-shadow: var(--bs-box-shadow-sm, 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075));
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.category-card__icon {
  width: 3em;
  height: 3em;
  aspect-ratio: 1;
}
.category-card__icon svg {
  width: 100%;
  height: 100%;
}
.category-card__title {
  font-size: 0.875em;
  font-weight: 500;
  color: var(--bs-body-color, #212529);
  text-align: center;
  text-wrap: balance;
}

.mb-7 {
  margin-bottom: 5rem;
}

.plan-carousel-wrapper {
  position: relative;
}
.plan-carousel-wrapper:hover .carousel-btn {
  opacity: 1;
}

.plan-carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  padding: 0.5rem 0.5rem 1.5rem;
  margin-inline: -0.5rem;
}
@media (min-width: 768px) {
  .plan-carousel {
    gap: 1.5rem;
  }
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.plan-card {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 280px;
  scroll-snap-align: start;
  border-radius: 1rem;
  border: 2px solid transparent;
  overflow: hidden;
  position: relative;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.plan-card:hover {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.plan-card .plan-badge {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.625em;
  font-weight: 700;
  padding: 0.3em 0.8em;
  border-radius: 0 0 0 0.5rem;
  color: white;
}
.plan-card .plan-body {
  padding: 1.5em;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.plan-card .plan-icon {
  width: 3em;
  height: 3em;
  border-radius: 0.75em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1em;
}
.plan-card .plan-title {
  font-weight: 700;
  font-size: 1.25em;
  color: #111827;
  margin-bottom: 0.25em;
}
.plan-card .plan-year {
  font-size: 1.5em;
  font-weight: 900;
}
.plan-card .plan-desc {
  font-size: 0.875em;
  color: #6b7280;
  margin-bottom: 1em;
}
.plan-card .plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.plan-card .plan-features li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  font-size: 0.875em;
  color: #4b5563;
  margin-bottom: 0.5em;
}
.plan-card .plan-features li.inactive {
  color: #9ca3af;
}
.plan-card.plan-natural {
  border-color: rgb(var(--brand-primary-rgb)/0.2);
}
.plan-card.plan-natural .plan-badge {
  background: var(--brand-red);
}
.plan-card.plan-natural .plan-icon {
  background: rgb(var(--brand-primary-rgb)/0.1);
  color: var(--brand-red);
}
.plan-card.plan-natural .plan-year {
  color: var(--brand-red);
}
.plan-card.plan-accidental {
  border-color: rgb(var(--brand-secondary-rgb)/0.3);
}
.plan-card.plan-accidental .plan-badge {
  background: var(--brand-secondary);
}
.plan-card.plan-accidental .plan-icon {
  background: rgb(var(--brand-secondary-rgb)/0.1);
  color: var(--brand-secondary);
}
.plan-card.plan-accidental .plan-year {
  color: var(--brand-secondary);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  width: 3rem;
  height: 3rem;
  background: white;
  border-radius: 50%;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-light);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #4b5563;
  -webkit-transition: color 0.2s, opacity 0.2s, -webkit-transform 0.2s;
  transition: color 0.2s, opacity 0.2s, -webkit-transform 0.2s;
  transition: color 0.2s, transform 0.2s, opacity 0.2s;
  transition: color 0.2s, transform 0.2s, opacity 0.2s, -webkit-transform 0.2s;
  opacity: 0;
  cursor: pointer;
  display: none;
}
@media (min-width: 768px) {
  .carousel-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.carousel-btn:hover {
  color: var(--brand-red);
  -webkit-transform: translateY(-50%) scale(1.05);
          transform: translateY(-50%) scale(1.05);
}
.carousel-btn.btn-prev {
  left: -1.5rem;
}
.carousel-btn.btn-next {
  right: -1.5rem;
}

.comparison-table {
  border-radius: 1rem;
  overflow: hidden;
  min-width: 600px;
}
.comparison-table thead th {
  font-weight: 700;
  color: #374151;
}
.comparison-table tbody tr:hover td {
  background-color: #f9fafb;
}
.comparison-table th:nth-child(1) {
  width: 34%;
}
.comparison-table th:nth-child(2),
.comparison-table th:nth-child(3) {
  width: 33%;
}

.comparison-table--multi th:nth-child(1) {
  width: 40%;
}
.comparison-table--multi th:nth-child(n+2) {
  width: 20%;
}

.section-spacing {
  padding-block: clamp(4rem, 8vw, 6rem);
}

.section-heading {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  text-wrap: balance;
  margin-bottom: 1rem;
}

.subsection-heading {
  font-size: 1.75rem;
  font-weight: 500;
  text-wrap: balance;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  padding-bottom: 0.5em;
  margin-bottom: 1.5em;
  border-bottom: 2px solid currentColor;
}
.subsection-heading.heading-natural {
  color: var(--brand-primary);
}
.subsection-heading.heading-accidental {
  color: var(--brand-secondary);
}

.subsection-label {
  font-weight: 700;
  background: #f3f4f6;
  border-radius: 0.5em;
  padding: 0.5em;
  text-align: center;
  margin-bottom: 1em;
}
.subsection-label.natural {
  color: var(--brand-primary);
}
.subsection-label.accidental {
  color: var(--brand-secondary);
}

.section-tab-nav {
  padding-block: 1rem;
}

.section-tab-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4em;
  padding: 0.5em 1.25em;
  border-radius: 2em;
  border: 1px solid #d1d5db;
  background: white;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: color 0.2s, border-color 0.2s, background 0.2s;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.section-tab-btn:hover {
  color: var(--brand-primary);
  border-color: var(--brand-primary);
  background: rgb(var(--brand-primary-rgb)/0.05);
}
.section-tab-btn.active {
  color: var(--brand-primary);
  border-color: var(--brand-primary);
  background: rgb(var(--brand-primary-rgb)/0.08);
}

.benefit-icon {
  width: 4em;
  height: 4em;
  font-size: 1.25rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 0.75em;
  font-weight: 900;
  background: var(--benefit-icon-bg, var(--brand-primary));
  color: var(--benefit-icon-color, #fff);
}
.benefit-icon svg {
  width: 2em;
  height: 2em;
  stroke: currentColor;
}

.benefit-label {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-wrap: balance;
  margin-bottom: 0;
}

.benefit-desc {
  font-size: 0.85rem;
  text-align: center;
  color: var(--bs-secondary-color, #6b7280);
  text-wrap: pretty;
  margin-bottom: 0;
}

.exclusion-card {
  padding: 1em;
  background: white;
  border: 1px solid #f3f4f6;
  border-radius: 0.75rem;
  text-align: center;
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
  height: 100%;
}
.exclusion-card:hover {
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.exclusion-card .excl-svg {
  width: 2.5rem;
  height: 2.5rem;
  display: block;
  margin: 0 auto;
  -webkit-filter: var(--excl-svg-filter, none);
          filter: var(--excl-svg-filter, none);
}
.exclusion-card .excl-label {
  font-size: 0.85em;
  font-weight: 500;
  color: #374151;
  display: block;
  margin-top: 0.5em;
}
.exclusion-card .excl-label > br {
  display: none;
}

.chart-outer {
  padding: 1.5em;
  background: #f9fafb;
  border: 1px solid var(--border-light);
  border-radius: 0.75rem;
}
@media (min-width: 768px) {
  .chart-outer {
    padding: 2em;
  }
}

.chart-legend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5em;
  font-size: 0.75em;
  color: #6b7280;
  margin-bottom: 0.5em;
}
.chart-legend .legend-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4em;
}
.chart-legend .legend-dot {
  width: 0.75em;
  height: 0.75em;
  border-radius: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.chart-legend .legend-dot.natural {
  background: var(--chart-natural);
}
.chart-legend .legend-dot.accidental {
  background: white;
  border: 2px solid var(--chart-accidental);
}

.chart-scroll-outer {
  overflow-x: auto;
  padding-bottom: 0.5rem;
}
.chart-scroll-outer::-webkit-scrollbar {
  display: none;
}
.chart-scroll-outer {
  scrollbar-width: none;
}

.chart-inner {
  min-width: 500px;
  position: relative;
  padding-left: 2.75rem;
  margin-top: 1.5rem;
}

.chart-y-axis {
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: "Space Mono", monospace;
  font-size: 0.7em;
  color: #9ca3af;
  text-align: right;
  width: 2rem;
}
.chart-y-axis .y-title {
  position: absolute;
  left: -1.8rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 0.85em;
  color: #6b7280;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.chart-bars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.75rem;
  height: 12rem;
  border-bottom: 2px solid var(--border-mid);
  padding-bottom: 0;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .chart-bars {
    height: 16rem;
    gap: 1rem;
  }
}

.chart-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  position: relative;
  background: var(--chart-natural);
  border-radius: 4px 4px 0 0;
  overflow: hidden;
}
.chart-col .natural-label {
  position: absolute;
  top: 0.5em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.6em;
  font-weight: 700;
  letter-spacing: 0.1em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  pointer-events: none;
  white-space: nowrap;
}
.chart-col .acc-bar {
  position: absolute;
  bottom: 0;
  left: 3px;
  right: 3px;
  height: min(var(--acc-h, 0%), 100% - 2.5em);
  background: white;
  border: 2px solid var(--chart-accidental);
  border-bottom: none;
  border-radius: 3px 3px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.2em;
  overflow: hidden;
}
.chart-col .acc-bar .acc-pct {
  color: var(--chart-accidental);
  font-weight: 900;
  font-size: 0.875em;
  line-height: 1;
}
@media (min-width: 768px) {
  .chart-col .acc-bar .acc-pct {
    font-size: 1.125em;
  }
}
.chart-col .acc-bar .acc-pct small {
  font-size: 0.6em;
  margin-left: 0.1em;
}
.chart-col .year-label {
  position: absolute;
  bottom: -2em;
  inset-inline: 0;
  text-align: center;
  font-size: 0.875em;
  font-weight: 700;
  color: #374151;
}

.btn-outline-natural {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  border: 1px solid var(--brand-primary);
  color: var(--brand-primary);
  border-radius: 2em;
  padding: 0.5em 1.5em;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: color 0.2s, background 0.2s;
  transition: color 0.2s, background 0.2s;
}
.btn-outline-natural:hover {
  color: var(--brand-primary);
  background: rgb(var(--brand-primary-rgb)/0.05);
}

.btn-outline-accidental {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  border: 1px solid var(--brand-secondary);
  color: var(--brand-secondary);
  border-radius: 2em;
  padding: 0.5em 1.5em;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: color 0.2s, background 0.2s;
  transition: color 0.2s, background 0.2s;
}
.btn-outline-accidental:hover {
  color: var(--brand-secondary);
  background: rgb(var(--brand-secondary-rgb)/0.05);
}

.section-dark {
  background: #111827;
  color: white;
}

.accordion-dark {
  --bs-accordion-bg: #1f2937;
  --bs-accordion-border-color: #374151;
  --bs-accordion-color: white;
  --bs-accordion-btn-color: white;
  --bs-accordion-btn-bg: #1f2937;
  --bs-accordion-active-bg: #1f2937;
  --bs-accordion-active-color: white;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-body-padding-x: 1.5rem;
  --bs-accordion-body-padding-y: 1rem;
}
.accordion-dark .accordion-item {
  border-radius: 0.75rem !important;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid #374151;
}
.accordion-dark .accordion-item:last-child {
  border-bottom: 1px solid #374151;
}
.accordion-dark .accordion-button {
  font-weight: 700;
  font-size: 1rem;
  padding: 1.25em 1.5em;
}
.accordion-dark .accordion-button::after {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  opacity: 0.6;
}
.accordion-dark .accordion-button:not(.collapsed)::after {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  opacity: 1;
}
.accordion-dark .accordion-button:not(.collapsed) {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.accordion-dark .accordion-body {
  background: rgba(17, 24, 39, 0.5);
  color: #d1d5db;
  font-size: 1rem;
  line-height: 1.8;
  border-top: 1px solid #374151;
}
.accordion-dark .accordion-note {
  background: #111827;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  padding: 0.75em 1em;
  font-size: 0.875rem;
  color: #9ca3af;
  margin-top: 1em;
}
.accordion-dark .accordion-list {
  list-style: disc;
  padding-left: 1.5em;
  margin: 0.75em 0;
  color: #9ca3af;
  font-size: 1rem;
}
.accordion-dark .accordion-list li {
  margin-bottom: 0.25em;
}
.accordion-dark .faq-item + .faq-item {
  margin-top: 1em;
  padding-top: 1em;
  border-top: 1px solid #374151;
}
.accordion-dark .faq-item .faq-q {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.4em;
}
.accordion-dark .faq-item .faq-a {
  font-size: 0.9375rem;
  color: #9ca3af;
}

.site-footer .footer-link {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.875em;
  font-weight: 700;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.site-footer .footer-link:hover {
  color: var(--brand-red);
}

.fade-up {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.vertical-text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
}

@-webkit-keyframes pulse-hint {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

@keyframes pulse-hint {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.scroll-hint {
  -webkit-animation: pulse-hint 2s ease-in-out infinite;
          animation: pulse-hint 2s ease-in-out infinite;
}

.pagetop-btn {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 900;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: none;
  background: #1f2937;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  opacity: 0;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  -webkit-transition: opacity 0.3s ease, background 0.2s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, background 0.2s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s, -webkit-transform 0.3s ease;
  pointer-events: none;
}
.pagetop-btn.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}
.pagetop-btn:hover {
  background: #374151;
}

.back-to-index-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4em;
  padding: 0.6em 1.5em;
  border-radius: 2em;
  border: 1px solid #d1d5db;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: border-color 0.2s, color 0.2s, background 0.2s;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.back-to-index-btn:hover {
  border-color: #6b7280;
  color: #111827;
  background: #f9fafb;
}

.icon-mb {
  margin-bottom: 0.75rem;
}

.icon-shrink0 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.page-kaden {
  --brand-primary: var(--brand-red);
  --brand-secondary: var(--brand-blue-dk);
  --brand-primary-rgb: 200 22 40;
  --brand-secondary-rgb: 37 99 235;
  --benefit-icon-bg: var(--brand-primary);
  --benefit-icon-color: #fff;
  --brand-filter: invert(27%) sepia(50%) saturate(700%) hue-rotate(195deg) brightness(70%);
}

.page-smartphone {
  --brand-primary: var(--brand-green);
  --brand-secondary: #571f7c;
  --brand-primary-rgb: 22 163 74;
  --brand-secondary-rgb: 124 58 237;
  --chart-natural: var(--brand-primary);
  --chart-accidental: var(--brand-secondary);
  --benefit-icon-bg: var(--brand-primary);
  --benefit-icon-color: #fff;
  --brand-filter: invert(18%) sepia(60%) saturate(1200%) hue-rotate(270deg) brightness(60%);
}
.page-smartphone .badge-outline-primary {
  display: inline-block;
  padding: 0.375em 1em;
  border-radius: 2em;
  border: 1px solid var(--brand-primary);
  color: var(--brand-primary);
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 1.5em;
}
.page-smartphone .hero-heading span {
  color: var(--brand-primary);
}
.page-smartphone .hero-deco {
  background: #dcfce7;
}
.page-smartphone .subsection-heading.heading-natural {
  color: var(--brand-primary);
}
.page-smartphone .subsection-heading.heading-accidental {
  color: var(--brand-secondary);
}
.page-smartphone .subsection-label.natural {
  color: var(--brand-primary);
}
.page-smartphone .subsection-label.accidental {
  color: var(--brand-secondary);
}
.page-smartphone .excl-icon-natural {
  color: var(--brand-primary);
}
.page-smartphone .excl-icon-acc {
  color: var(--brand-secondary);
}
.page-smartphone .plan-natural {
  border-color: rgb(var(--brand-primary-rgb)/0.2);
}
.page-smartphone .plan-natural .plan-badge {
  background: var(--brand-primary);
}
.page-smartphone .plan-natural .plan-icon {
  background: rgb(var(--brand-primary-rgb)/0.1);
  color: var(--brand-primary);
}
.page-smartphone .plan-natural .plan-year {
  color: var(--brand-primary);
}
.page-smartphone .plan-natural .plan-features li svg {
  color: var(--brand-primary);
}
.page-smartphone .plan-accidental {
  border-color: rgb(var(--brand-secondary-rgb)/0.3);
}
.page-smartphone .plan-accidental .plan-badge {
  background: var(--brand-secondary);
}
.page-smartphone .plan-accidental .plan-icon {
  background: rgb(var(--brand-secondary-rgb)/0.1);
  color: var(--brand-secondary);
}
.page-smartphone .plan-accidental .plan-year {
  color: var(--brand-secondary);
}
.page-smartphone .plan-accidental .plan-features li svg {
  color: var(--brand-secondary);
}
.page-smartphone .btn-outline-natural {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}
.page-smartphone .btn-outline-natural:hover {
  color: #15803d;
  background: rgb(var(--brand-primary-rgb)/0.05);
}
.page-smartphone .btn-outline-accidental {
  border-color: var(--brand-secondary);
  color: var(--brand-secondary);
}
.page-smartphone .btn-outline-accidental:hover {
  color: var(--brand-cyan-dk);
  background: rgb(var(--brand-secondary-rgb)/0.05);
}
.page-smartphone .legend-dot.natural {
  background: var(--chart-natural);
}
.page-smartphone .legend-dot.accidental {
  background: white;
  border: 2px solid var(--chart-accidental);
}
.page-smartphone .chart-col {
  background: var(--chart-natural);
}
.page-smartphone .acc-bar {
  border-color: var(--chart-accidental);
}
.page-smartphone .acc-pct {
  color: var(--chart-accidental);
}
.page-smartphone .pagetop-btn {
  background: var(--brand-primary);
}
.page-smartphone .pagetop-btn:hover {
  background: #15803d;
}
.page-smartphone .nav-link-custom:hover,
.page-smartphone .nav-link-custom.active {
  color: var(--brand-primary);
}
.page-smartphone .back-to-index-btn:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  background: rgb(var(--brand-primary-rgb)/0.04);
}
.page-smartphone .sp-trouble-card {
  border-radius: 0.75rem;
  overflow: hidden;
  background: white;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.page-smartphone .sp-trouble-card:hover {
  -webkit-box-shadow: 0 4px 16px rgb(var(--brand-primary-rgb)/0.15);
          box-shadow: 0 4px 16px rgb(var(--brand-primary-rgb)/0.15);
}
.page-smartphone .sp-trouble-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e5e7eb;
}
.page-smartphone .sp-trouble-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-smartphone .sp-trouble-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: var(--brand-primary);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.2em 0.6em;
  border-radius: 2em;
}
.page-smartphone .sp-trouble-label {
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  color: #374151;
  padding: 0.75rem 0.5rem;
  margin: 0;
}
.page-smartphone .sp-flow-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid #e5e7eb;
  height: 100%;
  position: relative;
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.page-smartphone .sp-flow-card:hover {
  -webkit-box-shadow: 0 4px 20px rgb(var(--brand-primary-rgb)/0.12);
          box-shadow: 0 4px 20px rgb(var(--brand-primary-rgb)/0.12);
}
.page-smartphone .sp-flow-num {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1.75rem;
  height: 1.75rem;
  background: var(--brand-primary);
  color: white;
  font-size: 0.8rem;
  font-weight: 900;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Space Mono", monospace;
}
.page-smartphone .sp-flow-icon {
  color: var(--brand-primary);
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-smartphone .sp-flow-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}
.page-smartphone .sp-flow-desc {
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

.page-pc-game {
  --brand-primary: var(--brand-blue);
  --brand-secondary: #D97706;
  --brand-primary-rgb: 37 99 235;
  --brand-secondary-rgb: 217 119 6;
  --chart-natural: var(--brand-blue);
  --chart-accidental: #D97706;
  --benefit-icon-bg: var(--brand-primary);
  --benefit-icon-color: #fff;
  --brand-filter: invert(55%) sepia(80%) saturate(1000%) hue-rotate(15deg) brightness(90%);
}
.page-pc-game .badge-outline-primary {
  display: inline-block;
  padding: 0.375em 1em;
  border-radius: 2em;
  border: 1px solid var(--brand-primary);
  color: var(--brand-primary);
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 1.5em;
}
.page-pc-game .hero-heading span {
  color: var(--brand-primary);
}
.page-pc-game ul svg {
  color: var(--brand-primary);
}
.page-pc-game .hero-deco {
  background: #dbeafe;
}
.page-pc-game .subsection-heading.heading-natural {
  color: var(--brand-primary);
}
.page-pc-game .subsection-heading.heading-accidental {
  color: var(--brand-secondary);
}
.page-pc-game .subsection-label.natural {
  color: var(--brand-primary);
}
.page-pc-game .subsection-label.accidental {
  color: var(--brand-secondary);
}
.page-pc-game .excl-icon-natural {
  color: var(--brand-primary);
}
.page-pc-game .excl-icon-acc {
  color: var(--brand-secondary);
}
.page-pc-game .plan-natural {
  border-color: rgb(var(--brand-primary-rgb)/0.2);
}
.page-pc-game .plan-natural .plan-badge {
  background: var(--brand-primary);
}
.page-pc-game .plan-natural .plan-icon {
  background: rgb(var(--brand-primary-rgb)/0.1);
  color: var(--brand-primary);
}
.page-pc-game .plan-natural .plan-year {
  color: var(--brand-primary);
}
.page-pc-game .plan-natural .plan-features li svg {
  color: var(--brand-primary);
}
.page-pc-game .plan-accidental {
  border-color: rgb(var(--brand-secondary-rgb)/0.3);
}
.page-pc-game .plan-accidental .plan-badge {
  background: var(--brand-secondary);
}
.page-pc-game .plan-accidental .plan-icon {
  background: rgb(var(--brand-secondary-rgb)/0.1);
  color: var(--brand-secondary);
}
.page-pc-game .plan-accidental .plan-year {
  color: var(--brand-secondary);
}
.page-pc-game .plan-accidental .plan-features li svg {
  color: var(--brand-secondary);
}
.page-pc-game .btn-outline-natural {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}
.page-pc-game .btn-outline-natural:hover {
  color: #1e40af;
  background: rgb(var(--brand-primary-rgb)/0.05);
}
.page-pc-game .btn-outline-accidental {
  border-color: var(--brand-secondary);
  color: var(--brand-secondary);
}
.page-pc-game .btn-outline-accidental:hover {
  color: #0f766e;
  background: rgb(var(--brand-secondary-rgb)/0.05);
}
.page-pc-game .legend-dot.natural {
  background: var(--chart-natural);
}
.page-pc-game .legend-dot.accidental {
  background: white;
  border: 2px solid var(--chart-accidental);
}
.page-pc-game .chart-col {
  background: var(--chart-natural);
}
.page-pc-game .acc-bar {
  border-color: var(--chart-accidental);
}
.page-pc-game .acc-pct {
  color: var(--chart-accidental);
}
.page-pc-game .pagetop-btn {
  background: var(--brand-primary);
}
.page-pc-game .pagetop-btn:hover {
  background: #1d4ed8;
}
.page-pc-game .category-card:hover {
  border-color: rgb(var(--brand-primary-rgb)/0.3);
}
.page-pc-game .carousel-btn:hover {
  color: var(--brand-primary);
}
.page-pc-game .nav-link-custom:hover,
.page-pc-game .nav-link-custom.active {
  color: var(--brand-primary);
}
.page-pc-game .back-to-index-btn:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  background: rgb(var(--brand-primary-rgb)/0.04);
}

.page-jutaku {
  --brand-primary: var(--brand-gold);
  --brand-secondary: var(--brand-teal);
  --brand-primary-rgb: 184 134 11;
  --brand-secondary-rgb: 13 148 136;
  --chart-natural: #C9940A;
  --benefit-icon-bg: var(--brand-primary);
  --benefit-icon-color: #fff;
  --brand-filter: invert(44%) sepia(60%) saturate(800%) hue-rotate(150deg) brightness(85%);
}
.page-jutaku .badge-outline-primary {
  display: inline-block;
  padding: 0.375em 1em;
  border-radius: 2em;
  border: 1px solid var(--brand-primary);
  color: var(--brand-primary);
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 1.5em;
}
.page-jutaku ul svg {
  color: var(--brand-primary);
}
.page-jutaku .hero-heading span {
  color: var(--brand-primary);
}
.page-jutaku .hero-deco {
  background: #fef9c3;
}
.page-jutaku .subsection-heading.heading-natural {
  color: var(--brand-primary);
}
.page-jutaku .subsection-label.natural {
  color: var(--brand-primary);
}
.page-jutaku .excl-icon-natural {
  color: var(--brand-primary);
}
.page-jutaku .jutaku-target-table .jutaku-th-main {
  background: var(--brand-primary);
  color: white;
  font-weight: 500;
  white-space: nowrap;
  font-size: 1.35rem;
}
.page-jutaku .jutaku-target-table .jutaku-th-year {
  background: rgb(var(--brand-primary-rgb)/0.12);
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 1.15em;
  white-space: nowrap;
}
.page-jutaku .jutaku-target-table .jutaku-check {
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 1.1em;
}
.page-jutaku .jutaku-target-table .jutaku-dash {
  color: #9ca3af;
  font-weight: 400;
}
.page-jutaku .jutaku-target-table tbody tr:hover td {
  background: rgb(var(--brand-primary-rgb)/0.04);
}
@media (max-width: 575px) {
  .page-jutaku .jutaku-target-table th, .page-jutaku .jutaku-target-table td {
    display: block;
  }
}
.page-jutaku .plan-natural {
  border-color: rgb(var(--brand-primary-rgb)/0.3);
}
.page-jutaku .plan-natural .plan-badge {
  background: var(--brand-primary);
}
.page-jutaku .plan-natural .plan-icon {
  background: rgb(var(--brand-primary-rgb)/0.1);
  color: var(--brand-primary);
}
.page-jutaku .plan-natural .plan-year {
  color: var(--brand-primary);
}
.page-jutaku .plan-natural .plan-features li svg {
  color: var(--brand-primary);
}
.page-jutaku .jutaku-plan-featured {
  border-color: var(--brand-primary) !important;
  border-width: 2px !important;
  position: relative;
}
.page-jutaku .btn-outline-natural {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}
.page-jutaku .btn-outline-natural:hover {
  color: #7a5a07;
  background: rgb(var(--brand-primary-rgb)/0.06);
}
.page-jutaku .jutaku-limit-box {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5em;
}
.page-jutaku .jutaku-limit-box .jutaku-limit-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.3em;
  color: var(--brand-primary);
  margin-bottom: 0.75em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-jutaku .jutaku-limit-box .jutaku-limit-bar {
  background: rgb(var(--brand-primary-rgb)/0.1);
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
  height: 2.5rem;
}
.page-jutaku .jutaku-limit-box .jutaku-limit-fill {
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(var(--brand-primary)), to(rgb(var(--brand-primary-rgb)/0.5)));
  background: linear-gradient(90deg, var(--brand-primary) 0%, rgb(var(--brand-primary-rgb)/0.5) 100%);
  border-radius: 0.5rem;
  position: relative;
}
.page-jutaku .jutaku-limit-box .jutaku-limit-fill::after {
  content: "購入金額の100%";
  position: absolute;
  right: 48%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: white;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
}
.page-jutaku .jutaku-limit-box .jutaku-limit-ticks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 0.4em;
  font-size: 0.85em;
  color: #9ca3af;
  padding: 0 0.25em;
}
.page-jutaku .nav-link-custom:hover,
.page-jutaku .nav-link-custom.active {
  color: var(--brand-primary);
}
.page-jutaku .category-card:hover {
  border-color: rgb(var(--brand-primary-rgb)/0.3);
}
.page-jutaku .pagetop-btn {
  background: var(--brand-primary);
}
.page-jutaku .pagetop-btn:hover {
  background: #96720a;
}
.page-jutaku .back-to-index-btn:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  background: rgb(var(--brand-primary-rgb)/0.04);
}
.page-jutaku .jutaku-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 991px) {
  .page-jutaku .jutaku-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .page-jutaku .jutaku-cat-grid {
    grid-template-columns: 1fr;
  }
}
.page-jutaku .jutaku-cat-card {
  border: 1px solid var(--border-light);
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.page-jutaku .jutaku-cat-card:hover {
  -webkit-box-shadow: 0 4px 16px rgb(var(--brand-primary-rgb)/0.1);
          box-shadow: 0 4px 16px rgb(var(--brand-primary-rgb)/0.1);
}
.page-jutaku .jutaku-cat-head {
  background: var(--brand-primary);
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 0.6em 1em;
  letter-spacing: 0.03em;
}
.page-jutaku .jutaku-cat-list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
}
.page-jutaku .jutaku-cat-list li {
  font-size: 1rem;
  color: #374151;
  padding: 0.45em 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.5em;
  border-bottom: 1px solid #f3f4f6;
  line-height: 1.5;
}
.page-jutaku .jutaku-cat-list li:last-child {
  border-bottom: none;
}
.page-jutaku .jutaku-cat-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-primary);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 0.35em;
}

.page-top {
  --bg-light: #F9F9F9;
  --brand-primary-rgb: 200 22 40;
  --brand-red-rgb: 200 22 40;
  --brand-teal-rgb: 13 148 136;
  --brand-gold-rgb: 184 134 11;
  --glyph-cyan: #0ff;
  --glyph-red: var(--brand-red);
}
.page-top .icon-sm {
  width: 1rem;
  height: 1rem;
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.page-top .icon-md {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.page-top .bg-section-light {
  background: var(--bg-light);
}
@media (min-width: 768px) {
  .page-top .py-md-6 {
    padding-block: 6rem !important;
  }
  .page-top .mb-md-6 {
    margin-bottom: 6rem !important;
  }
}
.page-top .top-hero {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5rem 1.5rem;
  background: white;
  background-image: radial-gradient(circle, #e5e7eb 1px, transparent 1px);
  background-size: 24px 24px;
}
@media (min-width: 768px) {
  .page-top .top-hero {
    padding-inline: 5rem;
  }
}
.page-top .top-glitch-blocks {
  z-index: 10;
}
.page-top .top-hero-label {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: #9ca3af;
  opacity: 0;
}
.page-top .top-hero-inner {
  z-index: 10;
}
.page-top .scramble-placeholder {
  visibility: hidden;
}
.page-top .top-hero-sub {
  opacity: 0;
}
.page-top .top-hero-hr {
  border-color: #e5e7eb;
  opacity: 1;
}
.page-top .top-hero-desc {
  font-size: 0.875rem;
  max-width: 24rem;
  text-wrap: pretty;
}
.page-top .top-hero-lead {
  font-size: clamp(1.25rem, 4vw, 1.875rem);
  font-weight: 300;
  line-height: 1.6;
}
.page-top .top-hero-blob {
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  width: 12rem;
  height: 12rem;
  background: #fee2e2;
  border-radius: 50%;
  mix-blend-mode: multiply;
  -webkit-filter: blur(60px);
          filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
  -webkit-animation: pulse-hint 4s ease-in-out infinite;
          animation: pulse-hint 4s ease-in-out infinite;
}
@media (min-width: 768px) {
  .page-top .top-hero-blob {
    width: 24rem;
    height: 24rem;
    bottom: -5rem;
    right: -5rem;
  }
}
.page-top .hero-typography {
  font-size: clamp(2.25rem, 10vw, 8rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 900;
  text-wrap: balance;
}
.page-top .text-outline {
  -webkit-text-stroke: 1px var(--brand-red);
  color: transparent;
}
.page-top .text-red {
  color: var(--brand-red);
}
.page-top .scramble-line {
  position: relative;
  overflow: hidden;
}
.page-top .scramble-char {
  display: inline-block;
  position: relative;
  -webkit-transition: color 0.05s;
  transition: color 0.05s;
}
.page-top .scramble-char.is-scrambling {
  color: rgb(var(--brand-red-rgb)/0.6);
}
.page-top .scramble-char.is-resolved {
  color: inherit;
}
.page-top .text-outline .scramble-char.is-scrambling {
  -webkit-text-stroke: 1px rgb(var(--brand-red-rgb)/0.4);
  color: transparent;
}
.page-top .text-outline .scramble-char.is-resolved {
  -webkit-text-stroke: 1px var(--brand-red);
  color: transparent;
}
.page-top .text-red .scramble-char.is-scrambling {
  color: rgb(var(--brand-red-rgb)/0.4);
}
.page-top .text-red .scramble-char.is-resolved {
  color: var(--brand-red);
}
.page-top .hero-glitch-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0;
  mix-blend-mode: overlay;
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.15) 0px, rgba(0, 0, 0, 0.15) 1px, transparent 1px, transparent 3px);
}
.page-top .glitch-block {
  position: absolute;
  opacity: 0;
  z-index: 15;
  pointer-events: none;
}
.page-top .glitch-block--red {
  background: var(--brand-red);
  mix-blend-mode: multiply;
}
.page-top .glitch-block--white {
  background: #fff;
  mix-blend-mode: difference;
}
.page-top .glitch-block--dark {
  background: #1a1a1a;
  mix-blend-mode: overlay;
}
.page-top .decode-cursor {
  display: inline-block;
  width: 0.06em;
  height: 0.85em;
  background: var(--brand-red);
  margin-left: 0.05em;
  vertical-align: middle;
  -webkit-animation: cursorBlink 0.5s step-end infinite;
          animation: cursorBlink 0.5s step-end infinite;
}
@-webkit-keyframes cursorBlink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
@keyframes cursorBlink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
.page-top .top-section-heading {
  position: relative;
  display: inline-block;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  text-wrap: balance;
  padding-bottom: 1.5rem;
}
.page-top .top-heading-bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 3rem;
  height: 4px;
  background: var(--brand-red);
  border-radius: 2px;
}
.page-top .top-about-text {
  font-size: 1.0625rem;
  line-height: 2;
  color: #374151;
}
.page-top .top-lineup-heading {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  text-wrap: balance;
}
.page-top .top-tab-radio {
  display: none;
}
.page-top .top-tab-system .top-tab-content {
  display: none;
}
.page-top .top-tab-system:has(#tab-appliances:checked) #content-appliances, .page-top .top-tab-system:has(#tab-pc:checked) #content-pc, .page-top .top-tab-system:has(#tab-housing:checked) #content-housing, .page-top .top-tab-system:has(#tab-smartphone:checked) #content-smartphone {
  display: block;
  -webkit-animation: fadeIn 0.45s ease;
          animation: fadeIn 0.45s ease;
}
.page-top .top-tab-system:has(#tab-appliances:checked) label[for=tab-appliances], .page-top .top-tab-system:has(#tab-pc:checked) label[for=tab-pc], .page-top .top-tab-system:has(#tab-housing:checked) label[for=tab-housing], .page-top .top-tab-system:has(#tab-smartphone:checked) label[for=tab-smartphone] {
  color: var(--brand-red);
  border-bottom-color: var(--brand-red);
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.page-top .top-tab-nav-wrap {
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 3rem;
  overflow-x: auto;
}
.page-top .top-tab-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  min-width: -webkit-min-content;
  min-width: -moz-min-content;
  min-width: min-content;
}
@media (min-width: 768px) {
  .page-top .top-tab-nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.page-top .top-tab-btn {
  display: inline-block;
  padding: 0.75em 1.5em;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #9ca3af;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: color 0.2s, border-color 0.2s;
  transition: color 0.2s, border-color 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (min-width: 768px) {
  .page-top .top-tab-btn {
    padding: 1em 2em;
    font-size: 1rem;
  }
}
.page-top .top-tab-btn:hover {
  color: var(--brand-red);
}
.page-top .top-tab-desc {
  line-height: 1.9;
}
.page-top .top-accent-line {
  width: 2.5rem;
  height: 4px;
  background: var(--brand-red);
  border-radius: 2px;
  margin-bottom: 1.5em;
}
.page-top .top-accent-line--blue {
  background: var(--brand-blue);
}
.page-top .top-accent-line--teal {
  background: var(--brand-teal);
}
.page-top .top-accent-line--gold {
  background: var(--brand-gold);
}
.page-top .top-accent-line--green {
  background: var(--brand-green);
}
.page-top .top-plan-item {
  border-left: 4px solid var(--brand-red);
  padding-left: 1em;
}
.page-top .top-plan-item--blue {
  border-left-color: var(--brand-blue);
}
.page-top .top-plan-item--teal {
  border-left-color: var(--brand-teal);
}
.page-top .top-plan-item--gold {
  border-left-color: var(--brand-gold);
}
.page-top .top-plan-item--green {
  border-left-color: var(--brand-green);
}
.page-top .top-plan-desc {
  font-size: 0.875rem;
}
.page-top .top-support-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #374151;
  border-radius: 1rem;
  padding: 2em;
  height: 100%;
  overflow: hidden;
  -webkit-transition: border-color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.page-top .top-support-card__img {
  aspect-ratio: 16/9;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1.25em;
  background: #1f2937;
}
.page-top .top-support-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-top .top-support-card .top-support-card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.25em;
  margin-bottom: 0.75em;
}
.page-top .top-support-card .top-support-num-bg {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 0.9;
  color: rgb(var(--brand-red-rgb)/0.52);
  letter-spacing: -0.02em;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 0;
}
.page-top .top-support-card .top-support-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 0;
  line-height: 1.5;
  text-wrap: balance;
  padding-top: 0.25em;
}
.page-top .top-support-card .top-support-accent {
  color: var(--brand-red);
  font-weight: 700;
}
.page-top .top-support-card .top-support-accent--lg {
  font-size: 1.1em;
}
.page-top .top-cta-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  background: var(--brand-red);
  color: white;
  padding: 0.875em 2.5em;
  border-radius: 2em;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  -webkit-box-shadow: 0 8px 24px rgb(var(--brand-red-rgb)/0.25);
          box-shadow: 0 8px 24px rgb(var(--brand-red-rgb)/0.25);
  -webkit-transition: opacity 0.2s, -webkit-box-shadow 0.2s;
  transition: opacity 0.2s, -webkit-box-shadow 0.2s;
  transition: opacity 0.2s, box-shadow 0.2s;
  transition: opacity 0.2s, box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.page-top .top-cta-btn:hover {
  opacity: 0.9;
  color: white;
  -webkit-box-shadow: 0 12px 32px rgb(var(--brand-red-rgb)/0.35);
          box-shadow: 0 12px 32px rgb(var(--brand-red-rgb)/0.35);
}
.page-top .top-cta-btn--blue {
  background: var(--brand-blue);
  -webkit-box-shadow: 0 8px 24px rgb(var(--brand-blue-rgb)/0.25);
          box-shadow: 0 8px 24px rgb(var(--brand-blue-rgb)/0.25);
}
.page-top .top-cta-btn--blue:hover {
  -webkit-box-shadow: 0 12px 32px rgb(var(--brand-blue-rgb)/0.35);
          box-shadow: 0 12px 32px rgb(var(--brand-blue-rgb)/0.35);
}
.page-top .top-cta-btn--teal {
  background: var(--brand-teal);
  -webkit-box-shadow: 0 8px 24px rgb(var(--brand-teal-rgb)/0.25);
          box-shadow: 0 8px 24px rgb(var(--brand-teal-rgb)/0.25);
}
.page-top .top-cta-btn--teal:hover {
  -webkit-box-shadow: 0 12px 32px rgb(var(--brand-teal-rgb)/0.35);
          box-shadow: 0 12px 32px rgb(var(--brand-teal-rgb)/0.35);
}
.page-top .top-cta-btn--gold {
  background: var(--brand-gold);
  -webkit-box-shadow: 0 8px 24px rgb(var(--brand-gold-rgb)/0.25);
          box-shadow: 0 8px 24px rgb(var(--brand-gold-rgb)/0.25);
}
.page-top .top-cta-btn--gold:hover {
  -webkit-box-shadow: 0 12px 32px rgb(var(--brand-gold-rgb)/0.35);
          box-shadow: 0 12px 32px rgb(var(--brand-gold-rgb)/0.35);
}
.page-top .top-cta-btn--green {
  background: var(--brand-green);
  -webkit-box-shadow: 0 8px 24px rgb(var(--brand-green-rgb)/0.25);
          box-shadow: 0 8px 24px rgb(var(--brand-green-rgb)/0.25);
}
.page-top .top-cta-btn--green:hover {
  -webkit-box-shadow: 0 12px 32px rgb(var(--brand-green-rgb)/0.35);
          box-shadow: 0 12px 32px rgb(var(--brand-green-rgb)/0.35);
}
.page-top .top-img-wrap {
  background: #f3f4f6;
  aspect-ratio: 4/3;
}
.page-top .top-tab-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-top .top-img-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: white;
  padding: 1.25em 1.5em;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
}
.page-top .top-img-badge--blue {
  border-top: 3px solid var(--brand-blue);
}
.page-top .top-img-badge--teal {
  border-top: 3px solid var(--brand-teal);
}
.page-top .top-img-badge--gold {
  border-top: 3px solid var(--brand-gold);
}
.page-top .top-img-badge--green {
  border-top: 3px solid var(--brand-green);
}
.page-top .top-img-badge-title {
  font-size: 0.875rem;
}
.page-top .top-img-badge-sub {
  font-size: 0.75rem;
}
.page-top .top-img-badge--blue .top-img-badge-title {
  color: var(--brand-blue);
}
.page-top .top-img-badge--teal .top-img-badge-title {
  color: var(--brand-teal);
}
.page-top .top-img-badge--gold .top-img-badge-title {
  color: var(--brand-gold);
}
.page-top .top-img-badge--green .top-img-badge-title {
  color: var(--brand-green);
}
.page-top .top-category-chip {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1em;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #374151;
  -webkit-transition: border-color 0.2s, -webkit-box-shadow 0.2s;
  transition: border-color 0.2s, -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s, border-color 0.2s;
  transition: box-shadow 0.2s, border-color 0.2s, -webkit-box-shadow 0.2s;
}
.page-top .top-category-chip:hover {
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: rgb(var(--brand-red-rgb)/0.3);
}
.page-top .top-category-chip--blue:hover {
  border-color: rgb(var(--brand-blue-rgb)/0.3);
}
.page-top .top-category-chip--teal:hover {
  border-color: rgb(var(--brand-teal-rgb)/0.3);
}
.page-top .top-category-chip--gold:hover {
  border-color: rgb(var(--brand-gold-rgb)/0.3);
}
.page-top .top-category-chip--green:hover {
  border-color: rgb(var(--brand-green-rgb)/0.3);
}
.page-top .text-brand-red {
  color: var(--brand-red);
}
.page-top .top-support-heading {
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  text-wrap: balance;
}
.page-top .top-support-item .top-support-num {
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--brand-red);
  margin: 0 auto 1.5rem;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
.page-top .top-support-item:hover .top-support-num {
  background: var(--brand-red);
  color: white;
}
.page-top .top-support-desc {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.9;
}
.page-top .top-company-heading {
  color: var(--brand-red);
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  text-wrap: balance;
}
.page-top .top-company-table {
  font-size: 0.9375rem;
}
.page-top .top-company-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 1px solid #e5e7eb;
}
.page-top .top-company-row:last-child {
  border-bottom: none;
}
@media (min-width: 576px) {
  .page-top .top-company-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.page-top .top-company-th {
  background: #f9fafb;
  padding: 0.75em 1.5em;
  font-weight: 700;
  font-size: 0.875rem;
  white-space: nowrap;
}
@media (min-width: 576px) {
  .page-top .top-company-th {
    width: 33%;
    padding: 1.25em 1.5em;
  }
}
.page-top .top-company-td {
  padding: 0.75em 1.5em;
  font-size: 0.875rem;
  color: #374151;
}
@media (min-width: 576px) {
  .page-top .top-company-td {
    padding: 1.25em 1.5em;
  }
}
.page-top .footer-logo {
  line-height: 1;
}
.page-top .footer-logo-img {
  height: 2rem;
  width: auto;
  display: inline-block;
}
.page-top .fade-in-section {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}
.page-top .fade-in-section.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.warranty-chart {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.75rem 1rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.warranty-chart__block {
  position: relative;
}
.warranty-chart__pat-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: #888;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.pat-a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.pat-a__lbl-col {
  width: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.pat-a__lbl {
  height: 120px;
  background: var(--brand-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1.4;
}
.pat-a__bars {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  height: 120px;
}
.pat-a__bg {
  position: absolute;
  inset: 0;
  background: rgb(var(--brand-primary-rgb)/0.7);
  z-index: 1;
}
.pat-a__text-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 1rem;
  pointer-events: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pat-a__text-layer span {
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.dur-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5px;
}
.dur-arrow__sp {
  width: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.dur-arrow__inner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 22px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dur-arrow__line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 8px;
  height: 1.5px;
  background: var(--brand-primary);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.dur-arrow__line::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--brand-primary);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.dur-arrow__text {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--brand-primary);
  background: #fff;
  padding: 0 8px;
  white-space: nowrap;
}

.pat-b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.pat-b__lbl-col {
  width: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.pat-b__lbl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1.4;
}
.pat-b__lbl--nat {
  height: 120px;
  background: var(--brand-primary);
}
.pat-b__lbl--phy {
  height: 120px;
  background: var(--brand-secondary);
  position: relative;
  z-index: 3;
}
.pat-b__bars {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  height: 240px;
}
.pat-b__nat-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 120px;
  background: rgb(var(--brand-primary-rgb)/0.7);
  z-index: 1;
}
.pat-b__phy-segs {
  position: absolute;
  left: 0;
  right: 0;
  top: 120px;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
}
.pat-b__nat-txt {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 120px;
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
}
.pat-b__nat-txt span {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.seg {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-left: 0.5px solid rgba(255, 255, 255, 0.5);
}
.seg:first-child {
  border-left: none;
}
.seg__top {
  background: rgb(var(--brand-secondary-rgb)/0.15);
}
.seg__bot {
  background: rgb(var(--brand-secondary-rgb)/0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 3;
}
.seg__bot span {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.cum-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 7px;
}
.cum-arrow__sp {
  width: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.cum-arrow__bar {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 24px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cum-arrow__bar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--brand-secondary);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cum-arrow__bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 7px solid var(--brand-secondary);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cum-arrow__right {
  position: absolute;
  right: 0;
  top: 50%;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid var(--brand-secondary);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cum-arrow__text {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--brand-secondary);
  background: #fff;
  padding: 0 8px;
  white-space: nowrap;
}

.timeline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5px;
}
.timeline__sp {
  width: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.timeline__inner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.timeline__line {
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  height: 2px;
  background: #cccccc;
}
.timeline__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.timeline__dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #cccccc;
  border: 2.5px solid #fff;
  outline: 2px solid #cccccc;
  position: absolute;
  top: 0;
  z-index: 2;
}
.timeline__txt {
  position: absolute;
  top: 19px;
  font-size: 11px;
  font-weight: 700;
  color: #cccccc;
  white-space: nowrap;
}

.top-target-chip {
  border: 1.5px solid var(--brand-primary);
  border-radius: 0.5rem;
  padding: 0.75em 0.5em;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  line-height: 1.6;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.top-target-note {
  font-size: 0.75rem;
  color: #9ca3af;
  text-align: right;
  margin-top: 0.5em;
  margin-bottom: 0;
}

@media (max-width: 500px) {
  .pat-a__lbl-col {
    width: 62px;
  }
  .pat-a__lbl {
    font-size: 10px;
  }
  .pat-a__text-layer span {
    font-size: 13px;
  }
  .pat-b__lbl-col {
    width: 62px;
  }
  .pat-b__lbl {
    font-size: 10px;
  }
  .pat-b__nat-txt span {
    font-size: 13px;
  }
  .dur-arrow__sp,
  .cum-arrow__sp,
  .timeline__sp {
    width: 62px;
  }
  .seg__bot span {
    font-size: 1rem;
  }
}
#flow {
  --flow-visit-bg: #1e3a5f;
  --flow-visit-border: #2d5282;
  --flow-visit-label: #93c5fd;
  --flow-carry-bg: #1f2937;
  --flow-carry-border: #374151;
  --flow-carry-label: #a5b4fc;
}
#flow .flow-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #111827;
  margin-bottom: 1em;
}
#flow .flow-title span {
  font-weight: 400;
  font-size: 0.875em;
  color: #6b7280;
  margin-left: 0.2em;
}
#flow .flow-col-visit {
  --step-bg: var(--flow-visit-bg);
  --step-border: var(--flow-visit-border);
  --step-label: var(--flow-visit-label);
}
#flow .flow-col-carry {
  --step-bg: var(--flow-carry-bg);
  --step-border: var(--flow-carry-border);
  --step-label: var(--flow-carry-label);
}
#flow .flow-steps {
  counter-reset: flow-counter;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
#flow .flow-step {
  counter-increment: flow-counter;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
  margin-bottom: 1.25rem;
}
#flow .flow-step::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.875rem solid transparent;
  border-right: 0.875rem solid transparent;
  border-top: 1rem solid #d1d5db;
  z-index: 1;
}
#flow .flow-step:last-child {
  margin-bottom: 0;
}
#flow .flow-step:last-child::after {
  display: none;
}
#flow .flow-step-badge {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.25em;
  background: var(--step-bg, #1f2937);
  border: 1px solid var(--step-border, #374151);
  border-right: none;
  padding: 1em 0.5em;
}
#flow .flow-step-badge::before {
  content: "STEP.";
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--step-label, #93c5fd);
  line-height: 1;
}
#flow .flow-step-badge::after {
  content: counter(flow-counter);
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
#flow .flow-step-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-left: none;
  padding: 1em 1.25em;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #374151;
}

.acc-coverage-row {
  display: grid;
  grid-template-columns: auto auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding: 1.25em;
  background: #f9fafb;
  border: 1px solid var(--border-light);
  border-radius: 0.75rem;
}
@media (max-width: 767px) {
  .acc-coverage-row {
    grid-template-columns: 1fr;
  }
}

.acc-coverage-nat {
  background: var(--brand-primary);
  color: #fff;
  font-weight: 700;
  padding: 0.5em 1em;
  border-radius: 0.375em;
  white-space: nowrap;
}

.acc-coverage-plus {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-secondary);
  text-align: center;
}

.acc-coverage-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
  gap: 0.5rem;
}
@media (max-width: 767px) {
  .acc-coverage-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

.acc-coverage-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25em;
  font-weight: 500;
  font-size: 1rem;
  color: #374151;
  border: 1px solid var(--border-light);
  border-radius: 0.5rem;
  padding: 0.6em 0.25em;
  background: #fff;
  color: var(--brand-secondary);
}
.acc-coverage-item img {
  width: 1.75rem;
  height: 1.75rem;
  -webkit-filter: var(--brand-filter);
          filter: var(--brand-filter);
}

.jutaku-duration-table {
  display: grid;
  gap: 0.6rem;
}

.jutaku-dur-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}

.jutaku-dur-label {
  width: 6rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--brand-primary);
  text-align: right;
}

.jutaku-dur-bars {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
  height: 3rem;
}

.jutaku-dur-maker {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: rgb(var(--brand-primary-rgb)/0.2);
  color: var(--brand-primary);
  font-size: 0.9375rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 0.5em;
  line-height: 1.3;
  border-radius: 3px 0 0 3px;
  white-space: nowrap;
}

.jutaku-dur-ext {
  -webkit-box-flex: calc(var(--total) - 1);
      -ms-flex: calc(var(--total) - 1);
          flex: calc(var(--total) - 1);
  background: var(--brand-primary);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0 3px 3px 0;
}

.sp-plan-table-wrap {
  border: 1px solid var(--border-light);
  border-radius: 0.75rem;
  overflow: hidden;
}

.sp-plan-table-head {
  padding: 0.75em 1.25em;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.sp-plan-table-head--natural {
  background: var(--brand-primary);
}
.sp-plan-table-head--accidental {
  background: var(--brand-secondary);
}

.sp-plan-table {
  margin: 0;
  font-size: 0.875rem;
}
.sp-plan-table th {
  background: #f9fafb;
  font-weight: 700;
  white-space: nowrap;
  width: 35%;
  vertical-align: middle;
  padding: 0.75em 1em;
}
.sp-plan-table td {
  vertical-align: middle;
  padding: 0.75em 1em;
}