:root {
  --bg: #f4f6fa;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --text: #22314d;
  --muted: #60708c;
  --line: #dbe4f0;
  --primary: #2d63b7;
  --primary-dark: #1f4d93;
  --primary-soft: #e8f0ff;
  --accent: #c84f4f;
  --accent-soft: #fff4f4;
  --line-btn: #27b728;
  --shadow: 0 18px 44px rgba(28, 63, 122, 0.12);
  --radius: 18px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
}

section[id] {
  scroll-margin-top: 88px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(20, 43, 81, 0.72);
  backdrop-filter: blur(10px);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(20, 43, 81, 0.94);
  box-shadow: 0 8px 24px rgba(0,0,0,0.16);
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.global-nav {
  display: flex;
  gap: 8px;
  font-size: 0.95rem;
  align-items: center;
}

.global-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 999px;
  opacity: 0.96;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.global-nav a:hover,
.global-nav a:focus-visible,
.global-nav a:active {
  opacity: 1;
  background: rgba(255,255,255,0.12);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
}

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url("./hero-bg-clean.jpg") center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  transform: scale(1.04);
  animation: heroZoom 14s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(92deg, rgba(25, 66, 135, 0.93) 0%, rgba(25, 66, 135, 0.78) 38%, rgba(255,255,255,0.06) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 32px;
  align-items: center;
  padding: 92px 0 52px;
}

.hero-copy {
  color: #fff;
}

.hero-mini {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.22);
  margin: 0 0 16px;
  font-size: 0.92rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
}

.hero h1 span {
  color: #dfeaff;
}

.hero-text {
  margin: 22px 0 0;
  font-size: 1.08rem;
  max-width: 720px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.92rem;
}

.hero-buttons,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 54px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(255,255,255,0.24) 50%, transparent 75%);
  transform: translateX(-140%);
  transition: transform 0.8s ease;
}

.button:hover::after {
  transform: translateX(140%);
}

.button.primary,
.button.mail {
  background: var(--primary);
  color: #fff;
}

.button.primary:hover,
.button.mail:hover {
  background: var(--primary-dark);
}

.button.ghost {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}

.button.line {
  background: var(--line-btn);
  color: #fff;
}

.hero-point-box {
  background: rgba(255,255,255,0.96);
  color: var(--text);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
  max-width: 380px;
  margin-left: auto;
}

.hero-point-title {
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.hero-point-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-point-box li {
  position: relative;
  padding-left: 28px;
}

.hero-point-box li + li {
  margin-top: 12px;
}

.hero-point-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 800;
}

.section {
  padding: 72px 0;
}

.section-soft,
.contact-section {
  background: var(--surface-soft);
}

.section-label {
  margin: 0 0 8px;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.88rem;
}

.section h2 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
}

.section-intro,
.note,
.contact-text,
.card p,
.step p,
.reason-card p,
.plan-copy,
.plan-time,
.faq-list p,
.head-note,
.need-item span:last-child,
.trust-copy p,
.trust-point span {
  color: var(--muted);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.head-note {
  font-weight: 700;
  color: var(--primary-dark);
  background: linear-gradient(135deg, rgba(45,99,183,0.12) 0%, rgba(120,165,241,0.12) 100%);
  border: 1px solid rgba(45,99,183,0.12);
  padding: 10px 14px;
  border-radius: 999px;
}

.reason-cards,
.cards,
.pricing-cards,
.steps {
  display: grid;
  gap: 24px;
}

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

.reason-card,
.card,
.step,
.pricing-card,
.trust-box,
.needs-box {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #e7edf6;
}

.reason-card,
.card,
.step,
.pricing-card {
  padding: 22px;
}

.reason-card {
  position: relative;
}

.reason-number {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, #6f9df0 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 26px rgba(45, 99, 183, 0.22);
}

.reason-card h3,
.card h3,
.step h3,
.pricing-card h3,
.trust-point strong {
  margin: 0 0 10px;
  color: var(--primary-dark);
}

.needs-box {
  padding: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  border: 1px solid rgba(45, 99, 183, 0.12);
}

.needs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 18px;
}

.need-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(45, 99, 183, 0.1);
  box-shadow: 0 10px 24px rgba(28, 63, 122, 0.08);
}

.need-check {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2d63b7 0%, #6a96e2 100%);
  box-shadow: 0 10px 22px rgba(45, 99, 183, 0.24);
}

.need-check::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 5px;
  width: 8px;
  height: 14px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(40deg);
}

.need-item span:last-child {
  font-size: clamp(0.98rem, 1.9vw, 1.14rem);
  line-height: 1.4;
  font-weight: 700;
  color: var(--text);
}

.needs-cta {
  margin-top: 18px;
  padding: 20px 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, #edf4ff 0%, #f8fbff 100%);
  border: 1px solid rgba(45, 99, 183, 0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}

.needs-cta p {
  margin: 0 0 14px;
  color: var(--primary-dark);
  font-weight: 600;
}

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

.card img {
  margin: 0 auto;
  width: min(100%, 220px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.service-cards {
  margin-top: 8px;
}

.service-card {
  position: relative;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(244,248,255,0.99) 100%);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary) 0%, #78a5f1 100%);
}

.service-card-kakei::before {
  background: linear-gradient(90deg, #2d63b7 0%, #78a5f1 100%);
}

.service-card-hoken::before {
  background: linear-gradient(90deg, #2f6f8f 0%, #75b8d6 100%);
}

.service-card-rougo::before {
  background: linear-gradient(90deg, #4d6bb3 0%, #9db5f6 100%);
}

.service-image-wrap {
  min-height: 236px;
  margin: -2px -2px 18px;
  border-radius: 22px;
  border: 1px solid rgba(45, 99, 183, 0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.service-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
}

.service-visual-kakei {
  background: radial-gradient(circle at top left, #ffffff 0%, #eef5ff 55%, #e4efff 100%);
}

.service-visual-hoken {
  background: radial-gradient(circle at top left, #ffffff 0%, #eef9fc 56%, #deeff5 100%);
}

.service-visual-rougo {
  background: radial-gradient(circle at top left, #ffffff 0%, #f0f4ff 58%, #e5ebff 100%);
}

.service-visual-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-icon-badge {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(45,99,183,0.96) 0%, rgba(120,165,241,0.96) 100%);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(45, 99, 183, 0.2);
}

.service-card-hoken .service-icon-badge {
  background: linear-gradient(135deg, rgba(47,111,143,0.96) 0%, rgba(117,184,214,0.96) 100%);
}

.service-card-rougo .service-icon-badge {
  background: linear-gradient(135deg, rgba(77,107,179,0.96) 0%, rgba(157,181,246,0.96) 100%);
}

.service-visual-copy strong {
  display: block;
  color: var(--primary-dark);
  font-size: 1.02rem;
}

.service-visual-copy span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-bars {
  display: grid;
  gap: 12px;
  padding: 4px 0;
}

.service-bars span {
  display: block;
  width: var(--w);
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(45,99,183,0.94) 0%, rgba(120,165,241,0.62) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
}

.service-shield {
  display: grid;
  place-items: center;
  min-height: 88px;
}

.shield-main {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 110px;
  height: 120px;
  background: linear-gradient(180deg, rgba(47,111,143,0.94) 0%, rgba(117,184,214,0.94) 100%);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.06em;
  clip-path: polygon(50% 0%, 92% 16%, 92% 52%, 50% 100%, 8% 52%, 8% 16%);
  box-shadow: 0 18px 30px rgba(47, 111, 143, 0.2);
}

.service-graph {
  position: relative;
  min-height: 92px;
  margin: 2px 2px 6px;
}

.graph-line {
  position: absolute;
  inset: auto 0 20px 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(77,107,179,0.35) 12%, rgba(77,107,179,0.35) 88%, transparent 100%);
}

.graph-dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4d6bb3 0%, #9db5f6 100%);
  box-shadow: 0 10px 22px rgba(77, 107, 179, 0.22);
}

.dot-1 { left: 12%; bottom: 26px; }
.dot-2 { left: 46%; bottom: 46px; }
.dot-3 { right: 12%; bottom: 62px; }

.service-mini-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-mini-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(45,99,183,0.12);
  color: var(--primary-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  margin: 0 0 12px;
  border-radius: 999px;
  background: rgba(45, 99, 183, 0.1);
  color: var(--primary-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.service-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 16px 0 0;
}

.service-points li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(45, 99, 183, 0.12);
  color: var(--primary-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.profile-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.profile-photo-wrap,
.profile-copy {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #e7edf6;
}

.profile-photo-wrap {
  overflow: hidden;
}

.profile-photo-wrap img {
  width: 100%;
  height: 100%;
  max-height: 760px;
  object-fit: cover;
  object-position: center top;
}

.profile-copy {
  padding: 28px;
}

.profile-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 22px;
}

.profile-fact {
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border: 1px solid var(--line);
}

.profile-fact-wide {
  grid-column: span 2;
}

.fact-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.profile-fact strong {
  display: block;
  color: var(--primary-dark);
  line-height: 1.45;
  font-size: 1.02rem;
}

.profile-lead {
  margin: 0 0 14px;
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.profile-points {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 14px;
}

.profile-points li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.profile-points li:first-child {
  border-top: 0;
  padding-top: 0;
}

.profile-points strong {
  color: var(--primary-dark);
}

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

.pricing-card {
  position: relative;
}

.pricing-card.featured {
  border: 2px solid rgba(45, 99, 183, 0.35);
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(45, 99, 183, 0.1);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.85rem;
  margin: 0 0 14px;
}

.plan-price {
  margin: 10px 0 0;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
}

.plan-block {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.plan-block h4 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.plan-block ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.plan-block li + li {
  margin-top: 8px;
}

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

.step span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-bottom: 16px;
  background: rgba(45, 99, 183, 0.1);
  color: var(--primary-dark);
  font-weight: 800;
}

.trust-section {
  background: linear-gradient(180deg, #f4f6fa 0%, #eef4ff 100%);
}

.trust-box {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  padding: 26px;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.trust-point {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
  padding: 20px;
  border-radius: 16px;
  background: var(--surface-soft);
  border: 1px solid #e0e9f7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.contact-visual img {
  margin-left: auto;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.contact-points li {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--primary-dark);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  background: var(--surface);
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid #e7edf6;
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  font-size: 1.2rem;
  color: var(--primary);
}

.faq-list details[open] summary::after {
  content: "−";
}

.site-footer {
  background: #142b51;
  color: rgba(255,255,255,0.9);
  padding-bottom: 68px;
}

.footer-inner {
  min-height: 84px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.4s; }
.stagger-6 { transition-delay: 0.48s; }

.lift-on-hover {
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.lift-on-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.12);
  filter: saturate(1.02);
}

.float-soft {
  animation: floatSoft 5.5s ease-in-out infinite;
}

@keyframes floatSoft {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

@media (max-width: 1080px) {
  .reason-cards,
  .cards,
  .pricing-cards,
  .steps,
  .trust-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .contact-grid,
  .trust-box,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .hero-point-box,
  .contact-visual img {
    margin-left: 0;
  }
}

@media (max-width: 960px) {
  .global-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    background: rgba(20, 43, 81, 0.98);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 8px 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    display: none;
    overflow: hidden;
  }

  .global-nav a {
    display: flex;
    width: 100%;
    align-self: stretch;
    justify-content: flex-start;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 0;
    -webkit-tap-highlight-color: rgba(255,255,255,0.12);
  }

  .global-nav a + a {
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .global-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .cards,
  .pricing-cards,
  .trust-points {
    grid-template-columns: 1fr;
  }

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

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: 600px;
    background-position: 68% center;
  }
}

@media (max-width: 640px) {
  .profile-facts {
    grid-template-columns: 1fr;
  }

  .profile-fact-wide {
    grid-column: span 1;
  }

  .section {
    padding: 52px 0;
  }

  .hero-grid {
    padding: 84px 0 44px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero-text,
  .hero-mini {
    font-size: 0.98rem;
  }

  .button {
    width: 100%;
  }

  .need-item {
    min-height: 58px;
    padding: 12px 14px;
    gap: 10px;
    border-radius: 16px;
  }

  .need-item span:last-child {
    font-size: 0.96rem;
    line-height: 1.32;
  }

  .need-check {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    border-radius: 8px;
  }

  .need-check::after {
    left: 8px;
    top: 4px;
    width: 6px;
    height: 12px;
    border-right-width: 2.5px;
    border-bottom-width: 2.5px;
  }

  .profile-copy {
    padding: 24px;
  }

  .profile-points li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .pricing-card,
  .card,
  .step,
  .reason-card,
  .trust-box,
  .needs-box {
    padding: 18px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 8px;
  }

  .mobile-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 1200;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .mobile-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    font-size: 0.83rem;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  }

  .mobile-cta a.line {
    background: var(--line-btn);
  }

  .mobile-cta a.reserve {
    background: linear-gradient(135deg, #7357d8 0%, #5e43c1 100%);
  }

  .mobile-cta a.mail {
    background: var(--primary);
  }
}


@media (max-width: 430px) {
  .needs-grid,
  .reason-cards,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 560px;
  }

  .hero-point-box {
    padding: 18px;
  }

  .button {
    min-height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
  }
}


.profile-name-label {
  margin-bottom: 6px;
}

.profile-name {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.2;
  color: var(--text);
}


.reason-icon {
  display: none !important;
}

.reason-card h3 {
  margin-top: 0;
}


@media (max-width: 640px) {
  .service-image-wrap {
    min-height: 180px;
  }

  .service-points {
    gap: 8px;
  }

  .service-points li {
    font-size: 0.82rem;
    min-height: 32px;
    padding: 0 10px;
  }
}


.contact-grid {
  align-items: stretch;
}

.contact-visual {
  display: flex;
}

.contact-offer-card {
  width: 100%;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
  border: 1px solid rgba(45,99,183,0.10);
  box-shadow: 0 22px 44px rgba(20, 44, 92, 0.12);
}

.contact-offer-label {
  margin: 0 0 18px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--primary-dark);
}

.contact-offer-items {
  display: grid;
  gap: 14px;
}

.contact-offer-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(45,99,183,0.08);
}

.contact-offer-no {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #2d63b7 0%, #7aa6ff 100%);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 28px rgba(45,99,183,0.18);
}

.contact-offer-item strong {
  display: block;
  margin-top: 2px;
  color: var(--primary-dark);
  font-size: 1rem;
}

.contact-offer-item p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

.contact-offer-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-offer-footer span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(45,99,183,0.08);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.86rem;
}

@media (max-width: 767px) {
  .contact-offer-card {
    padding: 22px;
    border-radius: 24px;
  }

  .contact-offer-item {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
  }

  .contact-offer-no {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 0.9rem;
  }
}

.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 4px;
}

.profile-link-chip,
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
  border: 1px solid rgba(45, 99, 183, 0.18);
  color: var(--primary-dark);
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.profile-link-chip:hover,
.footer-social a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(22, 44, 86, 0.12);
  border-color: rgba(45, 99, 183, 0.34);
}

.footer-left {
  display: grid;
  gap: 10px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 767px) {
  .profile-links {
    gap: 8px;
  }

  .profile-link-chip,
  .footer-social a {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.95rem;
  }

  .social-icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .social-icon svg {
    width: 14px;
    height: 14px;
  }

  .footer-left {
    width: 100%;
  }
}


.contact-buttons .button.reserve,
.hero-buttons .button.reserve {
  min-width: 220px;
}

@media (max-width: 767px) {
  .hero-buttons,
  .contact-buttons {
    gap: 10px;
  }

  .hero-buttons .button,
  .contact-buttons .button {
    width: 100%;
    min-width: 0;
  }
}


/* --- v18 social icons / CTA color tuning --- */
.anchor-offset {
  position: relative;
  top: -88px;
  height: 0;
}

.button.line {
  background: var(--line-btn);
  color: #fff;
}

.button.line:hover {
  background: #1fa11f;
}

.button.mail {
  background: var(--primary);
  color: #fff;
}

.button.mail:hover {
  background: var(--primary-dark);
}

.button.reserve {
  background: linear-gradient(135deg, #7357d8 0%, #5e43c1 100%);
  color: #fff;
}

.button.reserve:hover {
  background: linear-gradient(135deg, #664acb 0%, #5238b3 100%);
}

.spir-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.profile-link-chip,
.footer-social a {
  gap: 10px;
}

.social-icon {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  flex: 0 0 26px;
}

.social-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.social-icon.youtube {
  background: #ff0033;
  color: #fff;
}

.social-icon.note,
.social-icon.x {
  background: #111827;
  color: #fff;
}

.social-icon.youtube svg,
.social-icon.note svg,
.social-icon.x svg {
  fill: currentColor;
}

@media (max-width: 767px) {
  .hero-buttons,
  .contact-buttons {
    gap: 10px;
  }

  .hero-buttons .button,
  .contact-buttons .button {
    width: 100%;
    min-width: 0;
  }

  .profile-link-chip,
  .footer-social a {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.95rem;
  }

  .social-icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .social-icon svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 767px) {
  .mobile-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 1200;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .mobile-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    font-size: 0.83rem;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  }

  .mobile-cta a.line {
    background: var(--line-btn);
  }

  .mobile-cta a.reserve {
    background: linear-gradient(135deg, #7357d8 0%, #5e43c1 100%);
  }

  .mobile-cta a.mail {
    background: var(--primary);
  }
}


/* --- v21 refinements --- */
.pricing-cards-three {
  grid-template-columns: repeat(3, 1fr);
}

.button,
.mobile-cta a {
  gap: 10px;
}

.btn-icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.btn-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.button.reserve {
  background: linear-gradient(135deg, #4b3ec8 0%, #332a9f 100%);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.16);
}

.button.reserve:hover {
  background: linear-gradient(135deg, #4034b4 0%, #2b228a 100%);
}

.profile-link-chip.line-chip,
.footer-social a.line-chip {
  border-color: rgba(6, 181, 74, 0.24);
}

.social-icon.line {
  background: #06c755;
  color: #fff;
}

.social-icon.line svg {
  fill: currentColor;
}

@media (max-width: 1024px) {
  .pricing-cards-three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .btn-icon {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }

  .btn-icon svg {
    width: 16px;
    height: 16px;
  }

  .mobile-cta a {
    gap: 6px;
    font-size: 0.8rem;
  }

  .mobile-cta a.reserve {
    background: linear-gradient(135deg, #4b3ec8 0%, #332a9f 100%);
  }
}


/* --- v22 uploaded social logos --- */
.social-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

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

.youtube-logo {
  width: 56px;
}

.note-logo,
.line-logo {
  width: 26px;
  height: 26px;
}

.note-logo img,
.line-logo img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  border-radius: 6px;
}

.youtube-logo img {
  width: 56px;
  height: auto;
  object-fit: contain;
}

.btn-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.line-logo-inline {
  width: 22px;
  height: 22px;
}

.line-logo-inline img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}

@media (max-width: 767px) {
  .youtube-logo {
    width: 48px;
  }

  .youtube-logo img {
    width: 48px;
  }

  .note-logo,
  .line-logo {
    width: 24px;
    height: 24px;
  }

  .note-logo img,
  .line-logo img {
    width: 24px;
    height: 24px;
  }

  .line-logo-inline {
    width: 20px;
    height: 20px;
  }

  .line-logo-inline img {
    width: 20px;
    height: 20px;
  }
}



/* --- v23: logo-free refined social buttons --- */
.profile-link-chip,
.footer-social a,
.footer-line {
  position: relative;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(244,248,255,0.96) 100%);
  border: 1px solid rgba(45, 99, 183, 0.14);
  box-shadow: 0 10px 24px rgba(31, 56, 104, 0.08);
  color: var(--primary-dark);
}

.profile-link-chip::before,
.footer-social a::before,
.footer-line::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.28) 100%);
  pointer-events: none;
}

.profile-link-chip > *,
.footer-social a > *,
.footer-line > * {
  position: relative;
  z-index: 1;
}

.profile-link-chip:hover,
.footer-social a:hover,
.footer-line:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(31, 56, 104, 0.12);
  border-color: rgba(45, 99, 183, 0.24);
}

.social-mark,
.btn-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
}

.social-mark {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  font-size: 0.82rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.48);
}

.social-mark-youtube {
  background: linear-gradient(135deg, #ff7373 0%, #e23b3b 100%);
  color: #fff;
}

.social-mark-note {
  background: linear-gradient(135deg, #232428 0%, #4a4d55 100%);
  color: #fff;
}

.social-mark-x {
  background: linear-gradient(135deg, #1f2430 0%, #485068 100%);
  color: #fff;
}

.social-mark-line {
  background: linear-gradient(135deg, #35d57a 0%, #08b04c 100%);
  color: #fff;
}

.btn-mark {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  font-size: 0.72rem;
  background: rgba(255,255,255,0.2);
  color: inherit;
  border: 1px solid rgba(255,255,255,0.26);
}

.button.line {
  background: linear-gradient(135deg, #25c562 0%, #119a47 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(17, 154, 71, 0.24);
}

.button.line:hover {
  background: linear-gradient(135deg, #20b75a 0%, #0e8a40 100%);
}

.button.line .btn-mark-line {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.24);
  color: #fff;
}

.profile-link-chip.line-chip,
.footer-social a.line-chip,
.footer-line.line-chip {
  border-color: rgba(6, 181, 74, 0.18);
}

.profile-link-chip.line-chip:hover,
.footer-social a.line-chip:hover,
.footer-line.line-chip:hover {
  border-color: rgba(6, 181, 74, 0.28);
}

.social-logo,
.btn-logo,
.line-logo-inline,
.youtube-logo,
.note-logo,
.line-logo {
  display: none !important;
}

@media (max-width: 767px) {
  .profile-link-chip,
  .footer-social a,
  .footer-line {
    min-height: 44px;
    padding: 0 16px;
    gap: 8px;
  }

  .social-mark {
    width: 28px;
    height: 28px;
    font-size: 0.76rem;
  }

  .btn-mark {
    width: 22px;
    height: 22px;
    font-size: 0.68rem;
  }
}


/* --- v24: line buttons unified, social buttons refined, hero line breaks --- */
.hero h1 {
  white-space: normal;
}

.hero h1 span {
  display: inline-block;
}

/* Social button layout */
.profile-links,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.profile-link-chip,
.footer-social a {
  width: 148px;
  min-width: 148px;
  min-height: 52px;
  justify-content: flex-start;
}

.social-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 16px;
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 14px 28px rgba(31, 56, 104, 0.12);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.social-pill::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 100%);
  pointer-events: none;
}

.social-pill > * {
  position: relative;
  z-index: 1;
}

.social-pill:hover,
.social-pill:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.social-pill .social-mark {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.24);
}

.social-pill-youtube {
  background: linear-gradient(135deg, #ff4e5b 0%, #cf202f 100%);
}

.social-pill-note {
  background: linear-gradient(135deg, #2c3340 0%, #11161f 100%);
}

.social-pill-x {
  background: linear-gradient(135deg, #24324a 0%, #0f1726 100%);
}

.social-pill-line,
.profile-link-chip.line-chip,
.footer-social a.line-chip,
.footer-line.line-chip,
.button.line {
  background: linear-gradient(135deg, #24c95f 0%, #119345 100%);
  color: #fff;
}

.social-pill-line,
.profile-link-chip.line-chip,
.footer-social a.line-chip,
.footer-line.line-chip {
  border-color: rgba(17, 147, 69, 0.42);
  box-shadow: 0 14px 28px rgba(17, 147, 69, 0.18);
}

.social-pill-line:hover,
.profile-link-chip.line-chip:hover,
.footer-social a.line-chip:hover,
.footer-line.line-chip:hover,
.button.line:hover {
  background: linear-gradient(135deg, #20bb59 0%, #0e863e 100%);
}

.profile-link-chip.line-chip::before,
.footer-social a.line-chip::before,
.footer-line.line-chip::before,
.button.line::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.03) 100%);
}

.footer-line {
  min-height: 52px;
  justify-content: center;
}

@media (max-width: 767px) {
  .profile-link-chip,
  .footer-social a {
    width: calc(50% - 6px);
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .profile-link-chip,
  .footer-social a {
    width: 100%;
  }
}



/* --- v25: refined no-mark social buttons, consistent size, unified green LINE --- */
.profile-links,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.profile-link-chip,
.footer-social a {
  width: 116px;
  min-width: 116px;
  min-height: 46px;
  justify-content: center;
  padding: 0 12px;
  border-radius: 14px;
  text-align: center;
}

.social-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 12px;
  border-radius: 14px;
  overflow: hidden;
  font-weight: 800;
  letter-spacing: 0.01em;
  border: 1px solid rgba(31, 77, 147, 0.14);
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  color: var(--primary-dark);
  box-shadow:
    0 12px 26px rgba(27, 49, 93, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.social-pill::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 13px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(243,247,255,0.90) 100%);
}

.social-pill::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 3px;
  border-radius: 999px;
  background: var(--pill-accent, linear-gradient(90deg, #6f8ec7 0%, #2d63b7 100%));
  opacity: 0.95;
}

.social-pill > span {
  position: relative;
  z-index: 1;
  display: inline-block;
  transform: translateY(-1px);
}

.social-pill:hover,
.social-pill:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 16px 30px rgba(27, 49, 93, 0.13),
    inset 0 1px 0 rgba(255,255,255,0.96);
  border-color: rgba(31, 77, 147, 0.22);
}

.social-pill-youtube { --pill-accent: linear-gradient(90deg, #ff6a75 0%, #cf202f 100%); }
.social-pill-note { --pill-accent: linear-gradient(90deg, #4b5568 0%, #11161f 100%); }
.social-pill-x { --pill-accent: linear-gradient(90deg, #52617c 0%, #1a2435 100%); }

.social-pill-line,
.profile-link-chip.line-chip,
.footer-social a.line-chip,
.footer-line.line-chip,
.button.line {
  background: linear-gradient(135deg, #26cc61 0%, #119345 100%);
  color: #fff;
}

.social-pill-line,
.profile-link-chip.line-chip,
.footer-social a.line-chip,
.footer-line.line-chip {
  border-color: rgba(17, 147, 69, 0.44);
  box-shadow:
    0 14px 28px rgba(17, 147, 69, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.social-pill-line::before,
.profile-link-chip.line-chip::before,
.footer-social a.line-chip::before,
.footer-line.line-chip::before,
.button.line::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.03) 100%);
}

.social-pill-line::after,
.profile-link-chip.line-chip::after,
.footer-social a.line-chip::after,
.footer-line.line-chip::after {
  left: 16px;
  right: 16px;
  bottom: 8px;
  background: rgba(255,255,255,0.52);
}

.social-pill-line > span {
  color: #fff;
}

.social-pill .social-mark,
.profile-link-chip .social-mark,
.footer-social a .social-mark,
.btn-mark.btn-mark-line {
  display: none !important;
}

.button.line {
  background: linear-gradient(135deg, #26cc61 0%, #119345 100%);
  color: #fff;
}

.button.line:hover {
  background: linear-gradient(135deg, #22bf5a 0%, #0f863e 100%);
}

@media (max-width: 767px) {
  .profile-link-chip,
  .footer-social a {
    width: calc(50% - 6px);
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .profile-link-chip,
  .footer-social a {
    width: 100%;
  }
}


/* --- v26: compact premium social buttons --- */
.profile-links,
.footer-social {
  display: grid;
  grid-template-columns: repeat(4, minmax(84px, 94px));
  gap: 12px;
  width: fit-content;
  align-items: stretch;
}

.profile-link-chip,
.footer-social a {
  width: auto;
  min-width: 0;
  min-height: 58px;
  padding: 10px 12px 12px;
  border-radius: 20px;
  justify-content: center;
  text-align: center;
}

.social-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 58px;
  padding: 10px 12px 12px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(31, 77, 147, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
  color: var(--primary-dark);
  box-shadow:
    0 14px 28px rgba(27, 49, 93, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.96),
    inset 0 -8px 18px rgba(111, 142, 199, 0.06);
  letter-spacing: 0.01em;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, filter 0.22s ease;
}

.social-pill::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 19px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(247,250,255,0.86) 100%);
}

.social-pill::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 10px;
  height: 4px;
  border-radius: 999px;
  background: var(--pill-accent, linear-gradient(90deg, #6f8ec7 0%, #2d63b7 100%));
  box-shadow: 0 4px 10px rgba(45,99,183,0.18);
}

.social-pill > span {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 0.92rem;
  line-height: 1.05;
  transform: translateY(-2px);
}

.social-pill:hover,
.social-pill:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 18px 34px rgba(27, 49, 93, 0.14),
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -10px 18px rgba(111, 142, 199, 0.08);
  border-color: rgba(31, 77, 147, 0.20);
  filter: saturate(1.03);
}

.social-pill-youtube {
  --pill-accent: linear-gradient(90deg, #ff6f7a 0%, #cf202f 100%);
}

.social-pill-note {
  --pill-accent: linear-gradient(90deg, #4b5568 0%, #11161f 100%);
}

.social-pill-x {
  --pill-accent: linear-gradient(90deg, #52617c 0%, #1a2435 100%);
}

.social-pill-line,
.profile-link-chip.line-chip,
.footer-social a.line-chip {
  border-color: rgba(17, 147, 69, 0.32);
  background: linear-gradient(180deg, #29cf64 0%, #119345 100%);
  color: #ffffff;
  box-shadow:
    0 16px 30px rgba(17, 147, 69, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.22),
    inset 0 -8px 16px rgba(0,0,0,0.08);
}

.social-pill-line::before,
.profile-link-chip.line-chip::before,
.footer-social a.line-chip::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.03) 100%);
}

.social-pill-line::after,
.profile-link-chip.line-chip::after,
.footer-social a.line-chip::after {
  left: 20px;
  right: 20px;
  bottom: 10px;
  background: rgba(255,255,255,0.58);
  box-shadow: none;
}

.social-pill-line > span {
  color: #ffffff;
}

.social-pill-line:hover,
.profile-link-chip.line-chip:hover,
.footer-social a.line-chip:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 20px 36px rgba(17, 147, 69, 0.26),
    inset 0 1px 0 rgba(255,255,255,0.24),
    inset 0 -10px 18px rgba(0,0,0,0.10);
  filter: saturate(1.02);
}

.social-pill .social-mark,
.profile-link-chip .social-mark,
.footer-social a .social-mark {
  display: none !important;
}

@media (max-width: 767px) {
  .profile-links,
  .footer-social {
    grid-template-columns: repeat(2, minmax(84px, 1fr));
    width: 100%;
    max-width: 240px;
  }

  .profile-link-chip,
  .footer-social a,
  .social-pill {
    min-height: 56px;
    border-radius: 18px;
  }

  .social-pill::before {
    border-radius: 17px;
  }

  .social-pill > span {
    font-size: 0.9rem;
  }
}


/* --- v41 redesign: line-first, smaller social buttons, clearer tiers --- */
.hero-buttons .button,
.contact-buttons .button {
  min-width: 160px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  font-size: 0.96rem;
  box-shadow: 0 12px 28px rgba(31, 56, 104, 0.12);
}

.hero-buttons .button.line,
.contact-buttons .button.line {
  min-width: 190px;
  background: linear-gradient(135deg, #28c963 0%, #129548 100%);
}

.hero-buttons .button.reserve,
.contact-buttons .button.reserve {
  background: linear-gradient(135deg, #245fd0 0%, #194aa0 100%);
  color: #fff;
}

.hero-buttons .button.mail,
.contact-buttons .button.mail {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  color: var(--primary-dark);
  border: 1px solid rgba(45, 99, 183, 0.18);
}

.hero-buttons .button.ghost {
  min-width: 140px;
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.contact-buttons {
  gap: 10px;
}

.contact-buttons .button {
  flex: 1 1 220px;
}

.spir-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.94rem;
}

.profile-links,
.footer-social {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.profile-link-chip,
.footer-social a {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  border: 1px solid rgba(45, 99, 183, 0.14);
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 20px rgba(27, 49, 77, 0.08);
  overflow: hidden;
}

.profile-link-chip::before,
.footer-social a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: currentColor;
  opacity: 0.9;
}

.social-pill-youtube {
  color: #d62431;
  border-color: rgba(214, 36, 49, 0.16);
  background: linear-gradient(180deg, #fff 0%, #fff7f8 100%);
}

.social-pill-note {
  color: #0f1726;
  border-color: rgba(15, 23, 38, 0.12);
  background: linear-gradient(180deg, #fff 0%, #f7f8fb 100%);
}

.social-pill-x {
  color: #24324a;
  border-color: rgba(36, 50, 74, 0.12);
  background: linear-gradient(180deg, #fff 0%, #f7f9fd 100%);
}

.social-pill-line,
.profile-link-chip.line-chip,
.footer-social a.line-chip,
.footer-line.line-chip {
  background: linear-gradient(135deg, #26c95f 0%, #119345 100%);
  color: #fff;
  border-color: rgba(17, 147, 69, 0.34);
}

.social-pill-line::before,
.profile-link-chip.line-chip::before,
.footer-social a.line-chip::before,
.footer-line.line-chip::before {
  display: none;
}

.social-pill:hover,
.profile-link-chip:hover,
.footer-social a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(27, 49, 77, 0.12);
}

.plan-note {
  margin: 12px 0 0;
  color: var(--primary-dark);
  font-weight: 700;
}

.plan-actions {
  margin-top: 18px;
  display: flex;
}

.plan-actions .button {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border-radius: 16px;
}

.pricing-card.featured {
  transform: translateY(-3px);
  border: 2px solid rgba(45, 99, 183, 0.34);
  box-shadow: 0 22px 46px rgba(31, 56, 104, 0.16);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.pricing-card.featured .plan-price {
  font-size: 2rem;
}

.plan-badge {
  background: linear-gradient(135deg, rgba(45, 99, 183, 0.12) 0%, rgba(120, 165, 241, 0.12) 100%);
  color: var(--primary-dark);
}

.plan-badge-soft {
  background: rgba(36, 201, 95, 0.12);
  color: #0d7f38;
}

.plan-time {
  margin: 10px 0 0;
  color: var(--muted);
}

@media (max-width: 767px) {
  .hero-buttons .button,
  .contact-buttons .button {
    min-width: 0;
    width: 100%;
  }

  .profile-links,
  .footer-social {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-link-chip,
  .footer-social a {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.92rem;
  }

  .mobile-cta {
    gap: 6px;
  }

  .mobile-cta a {
    min-height: 46px;
    border-radius: 14px;
    font-size: 0.76rem;
  }
}


/* --- v46 slim conversion adjustments --- */
section[id] { scroll-margin-top: 84px; }
.section { padding: 56px 0; }
.hero { min-height: 560px; }
.hero-grid { padding: 72px 0 38px; gap: 24px; }
.hero h1 { line-height: 1.06; }
.hero-buttons, .contact-buttons { gap: 10px; margin-top: 22px; }
.button { min-height: 46px; padding: 0 16px; min-width: 0; border-radius: 14px; box-shadow: 0 12px 24px rgba(28,63,122,0.11); }
.button::after { display: none; }
.button.line { background: linear-gradient(135deg, #19c44d 0%, #149d48 100%); color: #fff; }
.button.line:hover { background: linear-gradient(135deg, #17b847 0%, #118d3d 100%); }
.button.reserve { background: linear-gradient(135deg, #234f9c 0%, #163b75 100%); color: #fff; }
.button.reserve:hover { background: linear-gradient(135deg, #1d448a 0%, #123262 100%); }
.button.mail { background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%); color: var(--primary-dark); border: 1px solid rgba(45,99,183,0.18); }
.button.mail:hover { background: linear-gradient(180deg, #ffffff 0%, #ecf3ff 100%); }
.hero-buttons .button, .contact-buttons .button { min-width: 0; }
.hero-buttons .button.line, .contact-buttons .button.line { min-width: 206px; }
.hero-buttons .button.reserve, .contact-buttons .button.reserve { min-width: 170px; }
.hero-buttons .button.ghost { min-width: 132px; }
.pricing-cards-three { grid-template-columns: 1fr 1.12fr 1fr; gap: 20px; }
.pricing-card { padding: 22px 20px; }
.pricing-card.featured { transform: translateY(-8px); border: 2px solid rgba(45,99,183,0.30); box-shadow: 0 26px 56px rgba(31,56,104,0.18); background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%); }
.pricing-card.featured .plan-price { font-size: 2rem; }
.plan-badge { min-height: 28px; padding: 0 11px; font-size: 0.82rem; }
.plan-note { margin: 12px 0 0; color: var(--primary-dark); font-weight: 700; }
.plan-time { margin-top: 8px; }
.plan-copy { margin: 14px 0 0; }
.plan-block { margin-top: 18px; padding-top: 16px; }
.plan-actions { margin-top: 16px; display: flex; }
.plan-actions .button { width: 100%; min-width: 0; min-height: 46px; border-radius: 14px; }
.plan-actions .button.reserve { background: linear-gradient(135deg, #234f9c 0%, #163b75 100%); }
.plan-actions .button.mail { background: linear-gradient(135deg, #f7faff 0%, #e9effa 100%); }
.precheck-section .container { display: grid; gap: 18px; }
.precheck-card { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 20px; padding: 22px; border-radius: 24px; background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%); border: 1px solid rgba(45,99,183,0.10); box-shadow: 0 20px 44px rgba(28,63,122,0.10); }
.precheck-copy p { margin: 0; color: var(--text); font-weight: 600; }
.precheck-list { margin: 14px 0 0; padding-left: 18px; color: var(--muted); }
.precheck-list li + li { margin-top: 6px; }
.precheck-actions { display: grid; gap: 12px; align-content: center; justify-items: start; }
.precheck-note { margin: 0; color: var(--muted); font-size: 0.92rem; }
.social-pill, .profile-link-chip, .footer-social a { min-height: 36px; padding: 0 12px; border-radius: 14px; font-size: 0.84rem; font-weight: 800; }
.social-pill { background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%); color: var(--text); border: 1px solid rgba(45,99,183,0.14); box-shadow: 0 8px 18px rgba(28,63,122,0.07); gap: 0; }
.social-pill::before { display: none; }
.social-pill-youtube { color: #c81f2b; border-color: rgba(200,31,43,0.18); }
.social-pill-note { color: #111827; border-color: rgba(17,24,39,0.16); }
.social-pill-x { color: #111827; border-color: rgba(17,24,39,0.16); }
.social-pill-line, .line-chip { background: linear-gradient(135deg, #19c44d 0%, #149d48 100%); color: #fff; border-color: transparent; box-shadow: 0 10px 22px rgba(20,157,72,0.16); }
.social-pill:hover, .social-pill:focus-visible, .profile-link-chip:hover, .footer-social a:hover { transform: translateY(-1px); box-shadow: 0 10px 20px rgba(22,44,86,0.10); }
.mobile-cta { gap: 10px; }
.mobile-cta a { min-height: 44px; border-radius: 14px; padding: 0 14px; }
.mobile-cta a.mail { display: none; }
.contact-points { gap: 8px; }
.contact-points li { min-height: 32px; padding: 0 12px; font-size: 0.92rem; }
.contact-offer-card { padding: 24px; }
.contact-offer-item { padding: 14px; grid-template-columns: 48px minmax(0, 1fr); }
.contact-offer-no { width: 48px; height: 48px; border-radius: 16px; }
.contact-offer-footer { gap: 8px; }
.contact-offer-footer span { min-height: 30px; padding: 0 12px; border-radius: 999px; background: #fff; border: 1px solid rgba(45,99,183,0.10); color: var(--primary-dark); font-size: 0.84rem; font-weight: 700; }
.hero-point-box { padding: 20px; max-width: 360px; }
.hero-point-box li + li { margin-top: 10px; }
.section-intro { max-width: 880px; }
.reasons, .needs, .services, .fees, .flow, .precheck-section, .contact-section { scroll-margin-top: 82px; }
@media (max-width: 1024px) { .pricing-cards-three, .precheck-card { grid-template-columns: 1fr; } .pricing-card.featured { transform: none; } }
@media (max-width: 767px) { .section { padding: 48px 0; } .hero { min-height: 520px; } .hero-grid { padding: 62px 0 34px; } .hero-buttons, .contact-buttons { flex-direction: column; } .hero-buttons .button.line, .contact-buttons .button.line, .hero-buttons .button.reserve, .contact-buttons .button.reserve, .hero-buttons .button.ghost { width: 100%; min-width: 0; } .social-pill, .profile-link-chip, .footer-social a { min-height: 34px; padding: 0 11px; font-size: 0.82rem; } .precheck-card { padding: 18px; } .contact-offer-item { grid-template-columns: 42px minmax(0, 1fr); } .contact-offer-no { width: 42px; height: 42px; } }


/* v47: compact social-brand buttons + balanced bottom CTA */
.profile-links,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: stretch;
}

.profile-link-chip,
.footer-social a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 12px 0 10px;
  border-radius: 16px;
  text-decoration: none;
  overflow: hidden;
  box-shadow:
    0 12px 24px rgba(27, 49, 93, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.95);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, filter 0.22s ease;
}

.profile-link-chip:not(.line-chip),
.footer-social a:not(.line-chip) {
  min-width: 88px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  border: 1px solid rgba(45, 99, 183, 0.14);
  color: var(--primary-dark);
}

.profile-link-chip.line-chip,
.footer-social a.line-chip {
  min-width: 116px;
  background: linear-gradient(135deg, #25c562 0%, #119345 100%);
  color: #fff;
  border: 1px solid rgba(17, 147, 69, 0.44);
  box-shadow:
    0 14px 28px rgba(17, 147, 69, 0.20),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.profile-link-chip::before,
.footer-social a::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88) 0%, rgba(248,251,255,0.42) 100%);
  pointer-events: none;
}

.profile-link-chip.line-chip::before,
.footer-social a.line-chip::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.03) 100%);
}

.profile-link-chip::after,
.footer-social a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 8px;
  height: 3px;
  border-radius: 999px;
  background: var(--pill-accent, linear-gradient(90deg, #6f8ec7 0%, #2d63b7 100%));
  opacity: 0.92;
}

.profile-link-chip.line-chip::after,
.footer-social a.line-chip::after {
  background: rgba(255,255,255,0.52);
}

.profile-link-chip > *,
.footer-social a > * {
  position: relative;
  z-index: 1;
}

.profile-link-chip:hover,
.footer-social a:hover,
.profile-link-chip:focus-visible,
.footer-social a:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 16px 28px rgba(27, 49, 93, 0.12),
    inset 0 1px 0 rgba(255,255,255,1);
  filter: saturate(1.02);
}

.social-pill-youtube { --pill-accent: linear-gradient(90deg, #ff5b6a 0%, #cf202f 100%); }
.social-pill-note { --pill-accent: linear-gradient(90deg, #4b5568 0%, #11161f 100%); }
.social-pill-x { --pill-accent: linear-gradient(90deg, #52617c 0%, #1a2435 100%); }
.social-pill-line,
.profile-link-chip.line-chip,
.footer-social a.line-chip,
.footer-line.line-chip,
.button.line {
  --pill-accent: linear-gradient(90deg, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.50) 100%);
}

.social-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.social-icon-youtube {
  width: 24px;
  height: 24px;
}

.social-icon-note,
.social-icon-x,
.social-icon-line {
  width: 22px;
  height: 22px;
}

.social-text {
  position: relative;
  z-index: 1;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

.social-pill-line .social-text,
.profile-link-chip.line-chip .social-text,
.footer-social a.line-chip .social-text,
.footer-line.line-chip .social-text {
  color: #fff;
}

@media (max-width: 767px) {
  .profile-links,
  .footer-social {
    gap: 6px;
  }

  .profile-link-chip:not(.line-chip),
  .footer-social a:not(.line-chip) {
    width: calc(33.333% - 4px);
    min-width: 0;
    justify-content: center;
    padding: 0 8px;
  }

  .profile-link-chip.line-chip,
  .footer-social a.line-chip {
    width: 100%;
    min-width: 0;
    justify-content: center;
    padding: 0 12px;
  }

  .social-icon {
    width: 20px;
    height: 20px;
  }

  .social-icon-youtube {
    width: 22px;
    height: 22px;
  }

  .social-text {
    font-size: 0.78rem;
  }

  .mobile-cta {
    left: 8px;
    right: 8px;
    bottom: 8px;
    gap: 6px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mobile-cta a {
    min-height: 48px;
    padding: 0 8px;
    font-size: 0.82rem;
  }

  .mobile-cta a span {
    line-height: 1.1;
  }
}

@media (max-width: 430px) {
  .profile-link-chip:not(.line-chip),
  .footer-social a:not(.line-chip) {
    width: calc(50% - 3px);
  }
}



/* --- v48 conversion refresh --- */
:root {
  --social-icon-size: 58px;
  --social-icon-size-line: 64px;
  --footer-cta-height: 44px;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.profile-links,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.social-logo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--social-icon-size);
  height: var(--social-icon-size);
  padding: 7px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(45, 99, 183, 0.14);
  box-shadow: 0 12px 26px rgba(31, 56, 104, 0.10);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, filter 0.22s ease;
  text-decoration: none;
}

.social-logo-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.social-logo-btn:hover,
.social-logo-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(31, 56, 104, 0.16);
  border-color: rgba(45, 99, 183, 0.24);
}

.social-logo-btn-youtube {
  background: linear-gradient(180deg, #ffffff 0%, #fff6f6 100%);
}

.social-logo-btn-note {
  background: linear-gradient(180deg, #ffffff 0%, #f7f7fb 100%);
}

.social-logo-btn-x {
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}

.social-logo-btn-line {
  width: var(--social-icon-size-line);
  height: var(--social-icon-size-line);
  padding: 6px;
  background: linear-gradient(180deg, #f0fff6 0%, #ffffff 100%);
  border-color: rgba(20, 170, 80, 0.24);
  box-shadow: 0 14px 28px rgba(20, 170, 80, 0.10);
}

.social-logo-btn-line:hover,
.social-logo-btn-line:focus-visible {
  box-shadow: 0 18px 34px rgba(20, 170, 80, 0.14);
  border-color: rgba(20, 170, 80, 0.34);
}

.social-logo-btn-youtube,
.social-logo-btn-note,
.social-logo-btn-x {
  padding: 8px;
}

.profile-links a.social-logo-btn,
.footer-social a.social-logo-btn {
  text-decoration: none;
}

/* Make featured middle plan clearly stand out */
.pricing-card.featured {
  position: relative;
  transform: translateY(-6px);
  border: 2px solid rgba(245, 178, 46, 0.78);
  background: linear-gradient(180deg, #fffdf4 0%, #fff6de 100%);
  box-shadow: 0 24px 50px rgba(31, 56, 104, 0.18);
}

.pricing-card.featured::before {
  content: "おすすめ";
  position: absolute;
  top: -14px;
  left: 22px;
  padding: 0 12px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(135deg, #f5b82e 0%, #ea7a00 100%);
  box-shadow: 0 10px 20px rgba(234, 122, 0, 0.18);
}

.pricing-card.featured .plan-badge {
  background: linear-gradient(135deg, #f5b82e 0%, #ea7a00 100%);
  color: #fff;
}

.pricing-card.featured .plan-price {
  color: #e76c00;
  font-size: 2rem;
}

.pricing-card.featured .plan-note {
  color: #8b5b13;
  font-weight: 700;
}

/* Fixed mobile CTA: compact, 3 buttons, email restored */
.mobile-cta {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 1200;
  display: none;
  gap: 8px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(28, 63, 122, 0.18);
  border: 1px solid rgba(45, 99, 183, 0.12);
}

.mobile-cta a {
  flex: 1 1 0;
  min-width: 0;
  min-height: var(--footer-cta-height);
  padding: 0 8px;
  border-radius: 14px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: none;
}

.mobile-cta .mobile-cta-line {
  background: linear-gradient(135deg, #25c562 0%, #119a47 100%);
  color: #fff;
}

.mobile-cta .mobile-cta-spir {
  background: linear-gradient(135deg, #7357d8 0%, #5e43c1 100%);
  color: #fff;
}

.mobile-cta .mobile-cta-mail {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  border: 1px solid rgba(45, 99, 183, 0.16);
  color: var(--primary-dark);
}

@media (max-width: 767px) {
  .mobile-cta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body {
    padding-bottom: 84px;
  }

  .profile-links,
  .footer-social {
    gap: 8px;
  }

  .social-logo-btn {
    width: 52px;
    height: 52px;
    padding: 6px;
    border-radius: 16px;
  }

  .social-logo-btn-line {
    width: 58px;
    height: 58px;
    padding: 5px;
  }

  .social-logo-btn:hover,
  .social-logo-btn:focus-visible {
    transform: translateY(-1px);
  }
}

/* The reserve button should not show any icon mark */
.button.reserve .btn-mark,
.button.reserve .btn-icon {
  display: none !important;
}

.hero-buttons .button,
.contact-buttons .button {
  min-width: 0;
}

.hero-buttons .button.reserve,
.contact-buttons .button.reserve,
.hero-buttons .button.mail,
.contact-buttons .button.mail,
.hero-buttons .button.line,
.contact-buttons .button.line {
  min-width: 0;
}

/* Fee intro spacing */
#fees .section-intro {
  max-width: 920px;
}
