@charset "UTF-8";

:root {
  /* Color Palette */
  --primary: #048ABF;
  --primary-dark: #036891;
  --primary-light: #e6f3f8;
  --accent: #F28705;
  --accent-hover: #D97704;
  --bg-main: #FFFFFF;
  --bg-sub: #F8F9FA;
  --text-main: #333333;
  --text-dim: #666666;
  --border: #E0EBEF;
  --white: #FFFFFF;
  --nav-height: 80px;
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  overflow-x: clip;
  line-height: 1.8;
  font-size: 16px;
  user-select: none;
  -webkit-user-select: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.en {
  font-family: 'Montserrat', sans-serif;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

@media(max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media(max-width: 768px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}

br.sp-br {
  display: none;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-inner {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo a {
  display: block;
  text-decoration: none;
  color: var(--primary);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-main);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 30px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  letter-spacing: 0.1em;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(242, 135, 5, 0.3);
}

.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(242, 135, 5, 0.4);
}

/* HAMBURGER BTN */
.hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 300;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  position: absolute;
  left: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.hamburger-btn span:nth-child(1) {
  top: 0;
}

.hamburger-btn span:nth-child(2) {
  top: 9px;
}

.hamburger-btn span:nth-child(3) {
  bottom: 0;
}

.hamburger-btn.is-open span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.hamburger-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.is-open span:nth-child(3) {
  bottom: 9px;
  transform: rotate(-45deg);
}

/* ── BUTTONS ── */
.btn-blue {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 18px 56px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  display: inline-block;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 8px 20px rgba(4, 138, 191, 0.3);
}

.btn-blue:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(4, 138, 191, 0.4);
}

.btn-orange {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 18px 20px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  display: inline-block;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 8px 20px rgba(242, 135, 5, 0.3);
}

.btn-orange:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(242, 135, 5, 0.4);
}

.btn-outline {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 16px 56px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.hero .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.hero .btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-full {
  width: 100%;
  border-radius: 12px;
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  background: var(--primary-dark);
  overflow: hidden;
}

.hero-visual-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 100%;
  z-index: 1;
}

.hero-visual-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.hero-visual-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-dark) 0%, rgba(4, 138, 191, 0) 40%);
  z-index: 2;
  pointer-events: none;
}

.hero-pagination {
  bottom: 40px !important;
  right: 40px !important;
  left: auto !important;
  width: auto !important;
  z-index: 10;
}

.hero-pagination .swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.5;
  width: 10px;
  height: 10px;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: var(--accent);
  opacity: 1;
  transform: scale(1.2);
}

.hero-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--nav-height) 40px 0;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero-main-area {
  max-width: 900px;
}

.hero-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: slideInLeft 1s forwards;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title span {
  display: block;
}

.hero-lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  color: var(--white);
  margin-bottom: 40px;
  opacity: 0;
  animation: slideInLeft 1.2s 0.2s forwards;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-cta-group {
  display: flex;
  gap: 24px;
  opacity: 0;
  animation: fadeIn 1.5s 0.6s forwards;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--primary);
  padding: 15px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: mq 30s linear infinite;
  width: max-content;
  white-space: nowrap;
}

.mq-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--white);
  text-transform: uppercase;
  padding: 0 50px;
  opacity: 0.9;
}

.mq-sep {
  color: var(--accent);
  margin-left: 50px;
}

@keyframes mq {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── SECTION BASE ── */
.sec {
  padding: 120px 0;
}

.sec-bg-sub {
  background: var(--bg-sub);
}

.sec-eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
  justify-content: center;
}

.sec-eyebrow.left {
  justify-content: flex-start;
}

.sec-eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.sec-eyebrow-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3em;
  color: var(--primary);
  text-transform: uppercase;
}

.sec-heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--text-main);
  margin-bottom: 40px;
  text-align: center;
}

.sec-heading.left {
  text-align: left;
}

.sec-heading em {
  font-style: normal;
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.sec-heading em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--primary-light);
  z-index: -1;
}

/* ── IMAGE DECORATION ── */
.img-deco {
  position: relative;
}

.img-deco::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  border-top: 5px solid var(--primary);
  border-left: 5px solid var(--primary);
  z-index: 2;
  pointer-events: none;
}

.img-deco::after {
  content: '';
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-bottom: 5px solid var(--accent);
  border-right: 5px solid var(--accent);
  z-index: 2;
  pointer-events: none;
}

/* ── ABOUT ── */
.about-split {
  display: flex;
  gap: 80px;
  align-items: stretch;
  margin-top: 40px;
}

.about-visual {
  flex: 1;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.about-visual:hover img {
  transform: scale(1.05);
}

.about-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content p {
  margin-bottom: 24px;
  color: var(--text-dim);
  line-height: 2;
}

.about-content .btn-blue {
  margin-top: 24px;
}

/* ── FEATURES ── */
.features-split {
  display: flex;
  flex-direction: row-reverse;
  gap: 80px;
  align-items: flex-start;
  margin-top: 60px;
}

.sticky-visual-wrapper {
  flex: 1;
  position: sticky;
  top: 120px;
  z-index: 10;
}

.features-visual {
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.features-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.features-content {
  flex: 1.2;
}

.feat-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.feat-item {
  background: var(--white);
  padding: 40px;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.feat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-light);
}

.feat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  display: inline-block;
  background: #FFF4E5;
  padding: 4px 12px;
  border-radius: 20px;
}

.feat-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 15px;
  line-height: 1.5;
}

.feat-text {
  color: var(--text-dim);
  line-height: 1.8;
}

/* ── FEATURES (3 Column Card) ── */
.features-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.feature-card {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
  transition: all 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-light);
}

.feature-img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.feature-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.feature-card:hover .feature-img-wrap img {
  transform: scale(1.05);
}

.feature-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feature-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  display: inline-block;
  background: #FFF4E5;
  padding: 4px 12px;
  border-radius: 20px;
  align-self: flex-start;
}

.feature-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 15px;
  line-height: 1.5;
}

.feature-text {
  color: var(--text-dim);
  line-height: 1.8;
}

/* ── SERVICE ── */
.service-split {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
  margin-top: 60px;
}

.service-split .features-visual img {
  aspect-ratio: 4 / 3.85;
  object-fit: cover;
  height: auto;
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.service-icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

/* ── CONSULTATION (Pricing layout replacement) ── */
.sec-consultation {
  position: relative;
  clip-path: inset(0);
  -webkit-clip-path: inset(0);
  padding: 120px 0;
}

.consultation-bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
}

.consultation-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 104, 145, 0.55);
  /* Primary dark with reduced opacity */
  z-index: 1;
}

.relative-z {
  position: relative;
  z-index: 2;
}

.line-white {
  background: var(--white) !important;
}

.text-white {
  color: var(--white) !important;
}

.sec-consultation .sec-heading em::after {
  background: rgba(255, 255, 255, 0.3);
}

.consultation-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  border-radius: 0;
}

.consultation-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.consultation-flex {
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.consultation-img {
  flex: 1;
  min-height: 400px;
}

.consultation-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec-consultation .img-deco::before {
  border-color: var(--white);
}

.consultation-info {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.consultation-info h3 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.4;
}

.consultation-info p {
  line-height: 2;
  margin-bottom: 32px;
  opacity: 0.9;
}

.consultation-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.consultation-tags span {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
}

/* ── MESSAGE ── */
.message-split {
  display: flex;
  gap: 80px;
  align-items: stretch;
  margin-top: 60px;
  flex-direction: row-reverse;
}

.message-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.message-visual {
  flex: 1;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.message-visual img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message-text .message-lead {
  font-size: 22px;
  color: #333333;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 32px;
}

.message-text p {
  color: var(--text-dim);
  line-height: 2;
  margin-bottom: 24px;
}

/* ── RECRUIT ── */
.recruit-box {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: center;
  margin-top: 40px;
}

.recruit-img {
  flex: 1;
  width: 100%;
  position: relative;
}

.recruit-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.recruit-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.recruit-content h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 24px;
}

.recruit-content p {
  color: var(--text-dim);
  line-height: 2;
  margin-bottom: 32px;
  text-align: left;
}

/* ── CONTACT ── */
.sec-contact {
  padding: 120px 0;
  background: var(--primary-light);
}

.contact-card {
  background: var(--white);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 40px;
}

.map-side {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.map-side iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.content-side {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.info-block .store-name {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-main);
}

.info-block .store-address {
  color: var(--text-dim);
  margin-bottom: 12px;
  line-height: 1.6;
}

.info-block .store-hours {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.8;
}

.cta-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sns-block h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--primary);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.sns-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sns-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 12px 24px;
  border: 2px solid var(--border);
  border-radius: 5px;
  color: var(--text-main);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  background: var(--white);
}

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

.sns-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  background: var(--text-main);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  color: var(--white);
  text-decoration: none;
  display: inline-block;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.8;
}

.footer-links h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  color: var(--accent);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.copyright {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
}

/* ── PAGE TOP ── */
.page-top-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(4, 138, 191, 0.4);
}

.page-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-top-btn:hover {
  background: var(--accent);
  transform: translateY(-5px);
}

/* SP FLOATING CTA */
.sp-floating-cta {
  display: none;
}

/* ── RESPONSIVE ── */
@media(max-width: 1024px) {
  .features-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-split,
  .features-split,
  .message-split,
  .service-split,
  .recruit-box {
    flex-direction: column;
    gap: 40px;
  }

  .about-visual,
  .sticky-visual-wrapper,
  .features-visual,
  .message-visual,
  .recruit-img {
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
  }

  .about-visual,
  .message-visual {
    aspect-ratio: 16 / 9;
  }

  .consultation-flex {
    flex-direction: column;
    gap: 0;
  }

  .consultation-img {
    width: 100%;
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .consultation-info {
    padding: 40px;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .content-side {
    padding: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media(max-width: 768px) {
  body {
    font-size: 14px;
  }

  .nav-cta {
    display: none;
  }

  .hamburger-btn {
    display: block;
  }

  .features-card-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 250;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    pointer-events: none;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 16px;
  }

  .hero {
    flex-direction: column;
    height: auto;
    min-height: auto;
    align-items: stretch;
    padding-top: var(--nav-height);
  }

  .hero-visual-wrapper {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 350px;
  }

  .hero-visual-wrapper::before {
    display: none;
  }

  .hero-container {
    padding: 40px 24px 40px;
    height: auto;
    text-align: center;
    align-items: center;
  }

  .hero-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .hero-lead {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .hero-cta-group {
    display: none;
  }


  .hero-pagination {
    bottom: 20px !important;
    right: 50% !important;
    transform: translateX(50%);
  }

  .feat-item {
    padding: 20px;
  }

  br.sp-br {
    display: inline;
  }

  .sec {
    padding: 80px 0;
  }

  .consultation-info {
    padding: 40px 20px;
    text-align: left;
  }

  .consultation-tags {
    justify-content: flex-start;
  }

  .content-side {
    padding: 20px;
  }

  .recruit-content {
    padding: 0;
    text-align: center;
    align-items: center;
  }

  .recruit-content p {
    text-align: left;
  }

  h3,
  .feature-name,
  .feat-name,
  .consultation-info h3,
  .recruit-content h3 {
    font-size: 20px !important;
  }

  .message-text .message-lead {
    font-size: 20px;
  }

  body {
    padding-bottom: 60px;
  }

  .page-top-btn {
    bottom: 80px;
    right: 20px;
    width: 40px;
    height: 40px;
  }

  .sp-floating-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1000;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  }

  .sp-cta-tel,
  .sp-cta-web {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    color: var(--white);
  }

  .sp-cta-tel {
    background: var(--text-main);
  }

  .sp-cta-web {
    background: var(--accent);
  }
}