/* =========================================================
   keep common.css
   Base / Header / Footer / Common Sections / Lower Page Hero
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  color: #18181b;
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.5;
}

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

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

/* =========================================================
   Header
   ========================================================= */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(228,228,231,0.9);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}

/* TOPページのみ透過ヘッダーにしたい場合 */
.home-header {
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.header-solid {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(228,228,231,0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 28px 96px 24px;
  gap: 24px;
}

.header-inner > a {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin: 0;
}

.logo-box {
  width: 180px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  flex: 0 0 auto;
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.global-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  font-size: 14px;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 0;
  background: transparent;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.menu-toggle-lines {
  position: relative;
  width: 18px;
  height: 12px;
  display: block;
}

.menu-toggle-lines span {
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #18181b;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.menu-toggle-lines span:nth-child(1) { top: 0; }
.menu-toggle-lines span:nth-child(2) { top: 5px; }
.menu-toggle-lines span:nth-child(3) { top: 10px; }

.site-header.is-menu-open .menu-toggle-lines span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.site-header.is-menu-open .menu-toggle-lines span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle-lines span:nth-child(3) {
  top: 5px;
  transform: rotate(-45deg);
}

/* =========================================================
   Top Hero
   ========================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 60px;
  background-image: url('../img/main_bg.jpg');
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 0%);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0,0,0,0.08), transparent 35%);
  z-index: 0;
}

.hero-overlay-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-overlay-image {
  position: absolute;
  left: min(8vw, 120px);
  top: 75%;
  width: min(70vw, 1000px);
  max-width: none;
  opacity: 1;
  transform: translate3d(0, -50%, 0);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  mix-blend-mode: normal;
  filter: saturate(0.9);
}

.hero-overlay-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 128, 255, 0);
  pointer-events: none;
}

.hero-overlay-image img {
  width: auto;
  height: 45vh;
  object-fit: contain;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: end;
}

.hero-title-svg {
  width: min(620px, 100%);
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-title-svg svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero-copy {
  max-width: 620px;
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.9;
  color: #fff;
}

.pc-br { display: inline; }
.sp-br { display: none; }

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero-panel-wrap {
  min-height: 440px;
  position: relative;
}

.hero-visual-card {
  position: absolute;
  right: -20px;
  bottom: auto;
  width: 100%;
  max-width: 680px;
  height: 450px;
  border-radius: 0;
  overflow: hidden;
  border: none;
  box-shadow: none;
  transform: translate3d(0,0,0);
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  background: rgba(255,255,255,0);
}

.hero-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
  background: transparent;
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.25s ease;
}

.btn-primary {
  background: #18181b;
  color: #fff;
}

.btn-primary:hover,
.btn-white:hover {
  opacity: 0.85;
}

.btn-secondary {
  border: 1px solid #d4d4d8;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  background: #fff;
}

.btn-white {
  background: #fff;
  color: #18181b;
}

/* =========================================================
   Common Sections
   ========================================================= */

.section {
  position: relative;
  padding: 96px 0;
}

.section-top-border {
  border-top: 1px solid #e4e4e7;
}

.section-light {
  background: #fafafa;
}

.section-dark {
  background: #18181b;
  color: #fff;
}

.section-title-wrap {
  margin-bottom: 48px;
}

.section-title {
  margin: 4px 0 0;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: #71717a;
  margin: 0 0 10px;
}

/* =========================================================
   Lower Page Hero
   Usage: <section class="page-hero" data-bg-title="Company">
   ========================================================= */

.page-hero {
  position: relative;
  padding: 180px 0 96px;
  background: #f7fafb;
  overflow: hidden;
}

.page-hero::after {
  content: attr(data-bg-title);
  position: absolute;
  right: max(24px, calc((100vw - 1280px) / 2));
  bottom: -10px;
  font-size: clamp(72px, 12vw, 180px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.06em;
  color: rgba(96,171,201,0.12);
  pointer-events: none;
  white-space: nowrap;
}

.page-title {
  margin: 4px 0 0;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.page-lead {
  max-width: 720px;
  margin: 28px 0 0;
  font-size: 17px;
  line-height: 2;
  color: #3f3f46;
}

/* =========================================================
   Top About
   ========================================================= */

.about {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}

.about .container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.about-bg-text {
  position: absolute;
  top: 24px;
  right: 40px;
  font-size: clamp(72px, 10vw, 120px);
  line-height: 1;
  color: rgba(228,228,231,0.9);
  opacity: 0.55;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.about-illustration {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 600px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4d4d8;
  opacity: 0.85;
  pointer-events: none;
  margin: 0 80px 50px 0;
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 25% 75%;
  gap: 0;
  min-height: 500px;
}

.about-left {
  width: 100%;
  min-width: 0;
  background: #60ABC9;
  margin: 0;
  padding: 0;
}

.about-content {
  min-width: 0;
  padding: 140px max(24px, calc((100vw - 1280px) / 2)) 140px 96px;
}

.about-copy {
  font-size: 16px;
  line-height: 1.9;
  color: #3f3f46;
  max-width: 820px;
  position: relative;
  z-index: 1;
}

/* =========================================================
   Top Service
   ========================================================= */

.service-head {
  display: flex;
  justify-content: flex-start;
  align-items: end;
  gap: 80px;
}

.service-head-text {
  max-width: 720px;
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #52525b;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.service-image {
  position: relative;
  height: 208px;
  overflow: hidden;
  background: #f4f4f5;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.18), rgba(0,0,0,0.02));
}

.service-body {
  padding: 32px;
}

.service-en {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #71717a;
}

.service-title {
  margin: 16px 0 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
}

.service-text {
  margin: 20px 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: #52525b;
}

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  background: #18181b;
  color: #fff;
  text-decoration: none;
}

.service-link::after {
  content: "→";
  font-size: 14px;
  transition: transform 0.2s ease;
}

.service-link:hover::after {
  transform: translateX(4px);
}

.option-grid {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 32px;
  align-items: center;
}

/* =========================================================
   Top News
   ========================================================= */

.news-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 48px;
}

.news-link {
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.news-box {
  border: 1px solid #e4e4e7;
  border-radius: 32px;
  overflow: hidden;
  background: #fff;
}

.news-row {
  display: grid;
  grid-template-columns: 160px 160px 1fr;
  gap: 12px;
  align-items: center;
  padding: 24px;
  border-top: 1px solid #e4e4e7;
}

.news-row:first-child {
  border-top: 0;
}

.news-meta {
  font-size: 14px;
  color: #71717a;
}

.news-tag {
  display: inline-block;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f4f4f5;
  color: #3f3f46;
  border: none;
  letter-spacing: 0.06em;
  width: fit-content;
}

.news-tag.press { background:#fee2e2; color:#991b1b; }
.news-tag.info { background:#e0f2fe; color:#075985; }
.news-tag.company { background:#ecfccb; color:#3f6212; }
.news-tag.service { background:#fff7e6; color:#9a6a00; }
.news-tag.works { background:#f1f8f1; color:#2f8b63; }

.news-title {
  font-size: 16px;
  font-weight: 500;
}

/* =========================================================
   News List Page
   ========================================================= */

.news-section {
  padding: 96px 0;
}

.news-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
}

.news-side {
  position: sticky;
  top: 140px;
  padding: 28px;
  border: 1px solid #e4e4e7;
  background: #fafafa;
}

.news-side-title {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #71717a;
}

.news-category-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 10px;
}

.news-category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e4e4e7;
  font-size: 13px;
  color: #52525b;
}

.news-category-list a::after {
  content: "→";
  font-size: 12px;
  color: #a1a1aa;
}

.news-category-list a.is-active {
  background: #18181b;
  border-color: #18181b;
  color: #fff;
}

.news-category-list a.is-active::after {
  color: rgba(255,255,255,0.7);
}

.news-list {
  display: grid;
  gap: 18px;
}

.news-item {
  display: block;
  padding: 26px;
  border: 1px solid #e4e4e7;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
  opacity: 1;
}

.news-item .news-meta,
.news-list .news-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #71717a;
}

.news-item .news-tag,
.news-list .news-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef7fb;
  color: #317f9c;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

.news-item .news-title,
.news-list .news-title {
  margin: 14px 0 0;
  font-size: 22px;
  line-height: 1.55;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.news-excerpt {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.9;
  color: #71717a;
}

.news-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  color: #18181b;
}

.news-readmore::after {
  content: "→";
  transition: transform 0.2s ease;
}

.news-item:hover .news-readmore::after {
  transform: translateX(4px);
}

.news-empty {
  padding: 32px;
  border: 1px solid #e4e4e7;
  background: #fafafa;
  color: #71717a;
  font-size: 14px;
  display: none;
}

.pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pagination a,
.pagination span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #e4e4e7;
  background: #fff;
  font-size: 13px;
  color: #52525b;
}

.pagination .current {
  background: #18181b;
  color: #fff;
  border-color: #18181b;
}

/* =========================================================
   Area & Works
   ========================================================= */

.area-grid {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 32px;
}

.area-box {
  border: 1px solid #e4e4e7;
  border-radius: 32px;
  padding: 32px;
  background: #fff;
}

.area-title {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 16px;
}

.area-text {
  font-size: 15px;
  line-height: 1.8;
  color: #52525b;
}

.area-map {
  position: relative;
  height: 320px;
  border-radius: 24px;
  border: 1px solid #e4e4e7;
  background: linear-gradient(180deg, #fafafa, #f4f4f5);
  overflow: hidden;
  margin-bottom: 20px;
  isolation: isolate;
}

.area-map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.area-map-svg svg,
.area-map-svg img {
  width: 100%;
  height: 100%;
  display: block;
}

.area-map-svg img {
  object-fit: contain;
}

.access-map iframe {
  filter: grayscale(1) contrast(0.9) brightness(1.05);
}

@media (min-width: 641px) {
  .area-map-svg img {
    transform: translateX(-25px);
  }
}

.area-hotspot {
  position: absolute;
  width: 22px;
  height: 22px;
  left: 0;
  top: 0;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.area-hotspot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(193, 39, 45, 0.18);
  animation: hotspotPulse 2.1s ease-in-out infinite;
}

.area-hotspot:hover::before,
.area-hotspot:focus-visible::before {
  animation: hotspotPulse 2.1s ease-in-out infinite, hotspotRipple 0.9s ease-out 1;
}

.area-hotspot::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 999px;
  background: #c1272d;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.9);
}

.area-hotspots-sp {
  display: none;
}

.hub-hotspot {
  width: 14px;
  height: 14px;
}

.hub-hotspot::before {
  background: rgba(34,197,94,0.2);
  animation-duration: 2.1s;
}

.hub-hotspot:hover::before,
.hub-hotspot:focus-visible::before {
  animation: hotspotPulse 2.1s ease-in-out infinite, hubRipple 0.9s ease-out 1;
}

.hub-hotspot::after {
  inset: 3px;
  background: #22c55e;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.9);
}

.area-tooltip {
  position: absolute;
  min-width: 170px;
  max-width: 220px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.96);
  border: 1px solid #e4e4e7;
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
  color: #18181b;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  pointer-events: none;
  z-index: 3;
}

.area-tooltip.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.area-tooltip-title {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: #c1272d;
  letter-spacing: 0.06em;
}

.area-tooltip-text {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.7;
  color: #52525b;
}

.area-tooltip.hub .area-tooltip-title {
  color: #16a34a;
}

@keyframes hotspotPulse {
  0% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.2); opacity: 0.45; }
  100% { transform: scale(1); opacity: 0.9; }
}

@keyframes hotspotRipple {
  0% { transform: scale(1); opacity: 0.55; }
  70% { transform: scale(2.8); opacity: 0.08; }
  100% { transform: scale(3.2); opacity: 0; }
}

@keyframes hubRipple {
  0% { transform: scale(1); opacity: 0.55; }
  70% { transform: scale(2.9); opacity: 0.08; }
  100% { transform: scale(3.3); opacity: 0; }
}

.area-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.area-stat {
  border-top: 1px solid #e4e4e7;
  padding-top: 16px;
}

.area-number {
  font-size: 28px;
  font-weight: 600;
}

.area-label {
  font-size: 12px;
  color: #71717a;
  letter-spacing: 0.1em;
}

.partner-logos-static {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #e4e4e7;
  overflow: hidden;
}

.partner-logos-static-label {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #71717a;
  text-transform: uppercase;
}

.partner-logos-static-track {
  overflow: hidden;
  width: 100%;
  position: relative;
  height: 100px;
}

.partner-logos-static-row {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  animation: partnerLogosMarquee 18s linear infinite;
}

.partner-logo-static-item {
  width: 200px;
  height: 90px;
  flex: 0 0 auto;
  border: 1px solid #e4e4e7;
  border-radius: 18px;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.partner-logo-static-item svg {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes partnerLogosMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   News Article Page
   ========================================================= */

.article-hero {
  padding: 180px 0 72px;
  background: #f7fafb;
  border-bottom: 1px solid #e4e4e7;
}

.article-wrap {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 0 12px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #71717a;
  margin-bottom: 32px;
}

.breadcrumb span {
  opacity: 0.4;
}

.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 13px;
  color: #71717a;
}

.article-title {
  margin: 0;
  font-size: clamp(26px, 4vw, 48px);
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.article-main {
  padding: 96px 0 120px;
}

.article-content {
  width: min(860px, 100%);
  margin: 0 auto;
}

.article-content h2 {
  margin: 72px 0 24px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.45;
  letter-spacing: -0.04em;
}

.article-content p {
  margin: 0;
  font-size: 16px;
  line-height: 2.2;
  color: #3f3f46;
}

.article-content p + p {
  margin-top: 24px;
}

.article-box {
  margin-top: 42px;
  padding: 32px;
  border: 1px solid #e4e4e7;
  background: #fafafa;
}

.article-box-title {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 600;
}

.article-box ul {
  margin: 0;
  padding-left: 20px;
  color: #52525b;
}

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

.article-nav {
  margin-top: 96px;
  padding-top: 32px;
  border-top: 1px solid #e4e4e7;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.article-nav a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #52525b;
}

/* =========================================================
   Service Page
   ========================================================= */

.service-section {
  padding: 96px 0;
}

.service-item {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
  margin-top: 120px;
}

.service-item:first-child {
  margin-top: 0;
}

.service-item.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.service-item.reverse .service-image {
  order: 2;
}

.service-item.reverse .service-content {
  order: 1;
}

.service-item .service-image {
  position: relative;
  overflow: hidden;
  background: #f4f4f5;
  height: 520px;
  min-height: 0;
}

.service-item .service-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.04);
}

.service-number {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #60ABC9;
  margin-bottom: 20px;
}

.service-description {
  margin-top: 28px;
  font-size: 16px;
  line-height: 2;
  color: #52525b;
}

.service-points {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-point {
  position: relative;
  padding: 22px;
  border: 1px solid #e4e4e7;
  background: #fff;
  border-radius: 24px;
}

.service-point-title {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 600;
}

.service-point-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #71717a;
}

.service-unit-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f4f4f5;
  font-size: 12px;
  font-weight: 600;
  color: #52525b;
  line-height: 1;
}

.service-unit-meta::before {
  content: "●";
  font-size: 10px;
  color: #60ABC9;
}

.unit-grass { background: #3eb482; }
.unit-electric { background: #f5ba2c; }
.unit-emergency { background: #bc451f; }
.unit-clean { background: #2f80ed; }
.unit-monitor { background: #60ABC9; }
.unit-repower { background: #4f8f5b; }

.unit-stack-demo {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 28px;
  align-items: end;
  padding: 28px;
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 28px;
}

.unit-stack-copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #52525b;
}

.unit-flow {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.unit-flow-step {
  position: relative;
  padding-left: 28px;
  font-size: 13px;
  color: #52525b;
  line-height: 1.7;
}

.unit-flow-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #60ABC9;
}

.unit-flow-step::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 22px;
  width: 2px;
  height: calc(100% + 6px);
  background: #d4d4d8;
}

.unit-flow-step:last-child::after {
  display: none;
}

.unit-stack {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
}

.unit-stack-block {
  opacity: 0;
  transform: translateY(-42px) rotate(-2deg);
  padding: 14px 18px;
  border-radius: 18px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.04);
  transition: opacity 0.8s ease, transform 1.2s cubic-bezier(.2,1.35,.4,1);
}

.unit-stack-block.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

.unit-stack-total {
  margin-top: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #18181b;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.unit-stack-total.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-unit-nav {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.service-unit-link {
  position: relative;
  padding: 18px 8px;
  border-radius: 24px;
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-unit-link:hover {
  transform: translateY(-4px);
  background: transparent;
  opacity: 1;
}

.service-unit-icon {
  width: 100%;
  max-width: 150px;
  min-height: 92px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  box-shadow: none;
  padding: 16px 12px;
}

.service-unit-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.service-unit-name {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
  color: inherit;
}

/* =========================================================
   CTA Section
   ========================================================= */

.cta-section {
  padding: 96px 0;
  background: #18181b;
  color: #fff;
}

.cta-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.cta-copy {
  max-width: 720px;
  margin-top: 18px;
  font-size: 17px;
  line-height: 2;
  color: rgba(255,255,255,0.72);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 999px;
  background: #fff;
  color: #18181b;
  font-size: 14px;
  font-weight: 600;
}

/* =========================================================
   Contact CTA
   ========================================================= */

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}

.contact-copy {
  max-width: 760px;
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
}

/* =========================================================
   Corporate Page
   ========================================================= */

.overview-grid {
  display: grid;
  grid-template-columns: 0.36fr 0.64fr;
  gap: 64px;
  align-items: start;
}

.overview-aside {
  position: sticky;
  top: 120px;
  padding: 40px;
  background: #60ABC9;
  color: #fff;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.overview-aside-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.overview-aside-text {
  margin: 28px 0 0;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.82);
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.company-table tr {
  border-top: 1px solid #e4e4e7;
}

.company-table tr:first-child {
  border-top: 0;
}

.company-table th,
.company-table td {
  padding: 28px 0;
  vertical-align: top;
  text-align: left;
  font-size: 15px;
  line-height: 1.9;
}

.company-table th {
  width: 190px;
  color: #71717a;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.company-table td {
  color: #18181b;
}

.message-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.message-image {
  min-height: 420px;
  background: #e8f5f9;
  overflow: hidden;
}

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

.message-text {
  font-size: 16px;
  line-height: 2;
  color: #3f3f46;
}

.access-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  padding: 40px;
  background: #fff;
  border: 1px solid #e4e4e7;
}

.access-map {
  min-height: 280px;
  background: linear-gradient(135deg, #eef7fa, #f8fafc);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #71717a;
  font-size: 13px;
  letter-spacing: 0.12em;
  overflow: hidden;
}

.access-map iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: block;
  filter: grayscale(1) contrast(0.9) brightness(1.05);
}

/* =========================================================
   Works Page
   ========================================================= */

.works-section {
  padding: 96px 0;
}

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

.section-copy {
  max-width: 520px;
  margin: 0;
  font-size: 15px;
  line-height: 2;
  color: #52525b;
}

.works-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 42px;
  background: #fafafa;
  border: 1px solid #e4e4e7;
  margin-bottom: 80px;
}

.works-feature-image {
  height: 520px;
  background: #f4f4f5;
  overflow: hidden;
}

.works-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.works-feature:hover .works-feature-image img {
  transform: scale(1.04);
}

.case-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef7fb;
  color: #317f9c;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.case-title {
  margin: 22px 0 0;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.case-text {
  margin: 24px 0 0;
  font-size: 15px;
  line-height: 2;
  color: #52525b;
}

.case-meta {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.case-meta-item {
  padding: 16px;
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 18px;
}

.case-meta-label {
  margin: 0 0 4px;
  font-size: 12px;
  color: #71717a;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-meta-value {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #18181b;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.works-card {
  border: 1px solid #e4e4e7;
  background: #fff;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.works-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
  opacity: 1;
}

.works-card-image {
  height: 260px;
  background: #f4f4f5;
  overflow: hidden;
}

.works-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.works-card:hover .works-card-image img {
  transform: scale(1.04);
}

.works-card-body {
  padding: 26px;
}

.works-card-title {
  margin: 14px 0 0;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.works-card-text {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.9;
  color: #71717a;
}

.works-tags {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.works-tag {
  padding: 7px 10px;
  border-radius: 999px;
  background: #f4f4f5;
  color: #52525b;
  font-size: 11px;
  font-weight: 600;
}

/* =========================================================
   Privacy Policy Page
   ========================================================= */

.policy-section {
  padding: 96px 0 120px;
}

.policy-wrap {
  width: min(920px, 100%);
  margin: 0 auto;
}

.policy-block {
  position: relative;
  padding: 40px;
  border: 1px solid #e4e4e7;
  background: #fff;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.policy-block::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: #60ABC9;
  opacity: 0.9;
}

.policy-block + .policy-block {
  margin-top: 28px;
}

.policy-block:hover {
  border-color: rgba(96,171,201,0.35);
  box-shadow: 0 18px 40px rgba(0,0,0,0.04);
  transform: translateY(-2px);
}

.policy-title {
  margin: 0 0 20px;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.45;
}

.policy-text {
  font-size: 15px;
  line-height: 2.2;
  color: #3f3f46;
}

.policy-text p {
  margin: 0;
}

.policy-text p + p {
  margin-top: 22px;
}

.policy-text ul {
  margin: 24px 0 0;
  padding-left: 20px;
}

.policy-text li + li {
  margin-top: 12px;
}

.policy-date {
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid #e4e4e7;
  font-size: 14px;
  color: #71717a;
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  background: #000;
  color: #fff;
  padding: 80px 0 32px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: start;
}

.footer-brand-area {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.footer-logo-box {
  width: 220px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.6);
  overflow: hidden;
}

.footer-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-sdgs-list,
.footer-nav-grid > div[style*="display:flex"] {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-slot {
  width: 65px;
  height: 65px;
  margin-top: -72px;
  margin-bottom: 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-slot img,
.footer-logo-slot svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-text {
  max-width: 460px;
  margin-top: 24px;
  font-size: 14px;
  line-height: 2;
  color: rgba(255,255,255,0.6);
}

.footer-address {
  margin-top: 28px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

.footer-address p {
  margin: 6px 0;
}

.footer-nav-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-nav-title {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
}

.footer-nav-list li {
  margin-top: 12px;
}

.footer-nav-list a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.7);
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1100px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .news-layout {
    grid-template-columns: 1fr;
  }

  .news-side {
    position: static;
  }

  .news-category-list {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 1024px) {
  .article-content {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 900px) {
  .about-left {
    display: none;
  }

  .hero-overlay-image {
    width: min(58vw, 420px);
    left: -40px;
    top: 58%;
    opacity: 0.22;
  }

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

  .global-nav {
    position: absolute;
    left: 10px;
    right: 10px;
    top: calc(100% + 8px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-header.is-menu-open .global-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .global-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid #e4e4e7;
  }

  .global-nav a:last-child {
    border-bottom: 0;
  }

  .hero-inner,
  .about-grid,
  .area-grid,
  .contact-wrap,
  .cta-wrap,
  .footer-main,
  .section-head,
  .works-feature,
  .service-item,
  .service-item.reverse,
  .overview-grid,
  .message-grid,
  .access-card {
    grid-template-columns: 1fr;
  }

  .hero-panel-wrap {
    display: none;
  }

  .news-row {
    grid-template-columns: 1fr;
  }

  .overview-aside {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .service-item.reverse .service-image,
  .service-item.reverse .service-content {
    order: initial;
  }

  .service-points,
  .unit-stack-demo {
    grid-template-columns: 1fr;
  }

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

  .section-head {
    gap: 18px;
  }

  .works-feature {
    padding: 28px;
    gap: 32px;
  }

  .works-feature-image {
    height: 360px;
  }

  .case-meta {
    grid-template-columns: 1fr;
  }

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

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

  .about-bg-text {
    right: 20px;
    top: 36px;
    opacity: 0.35;
  }

  .about-illustration {
    position: absolute;
    right: 0;
    bottom: -20px;
    width: 300px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    pointer-events: none;
    margin: 0 40px 50px 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, calc(100% - 32px));
  }

  .header-inner {
    padding: 20px 5px 16px;
  }

  .logo-box {
    width: 140px;
    height: 32px;
  }

  .hero {
    padding-top: 108px;
  }

  .hero-overlay-image {
    width: 130vw;
    left: -5vw;
    top: 77%;
    opacity: 1;
  }

  .hero-copy,
  .contact-copy {
    font-size: 16px;
  }

  .hero-copy {
    margin-top: -15px;
  }

  .hero-buttons {
    margin-top: 60px;
  }

  .hero-title-svg {
    width: min(480px, 90%);
  }

  .pc-br {
    display: none;
  }

  .sp-br {
    display: inline;
  }

  .section,
  .page-hero,
  .news-section,
  .service-section,
  .works-section,
  .cta-section {
    padding: 72px 0;
  }

  .article-hero {
    padding: 100px 0 30px;
  }

  .article-main {
    padding: 72px 0;
  }

  .article-content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .page-hero {
    padding-top: 132px;
  }

  .page-lead,
  .cta-copy,
  .article-content p {
    font-size: 15px;
  }

  .article-box {
    padding: 24px;
  }

  .article-nav {
    flex-direction: column;
  }

  .service-item {
    gap: 36px;
    margin-top: 84px;
  }

  .service-item .service-image {
    height: 320px;
  }

  .service-description {
    font-size: 15px;
  }

  .service-section > .container:first-child > div {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .unit-stack-demo {
    padding: 18px 20px;
  }

  .unit-stack-total {
    font-size: 13px;
    padding: 14px 16px;
  }

  .service-unit-meta {
    font-size: 11px;
  }

  .example-plan-card {
    padding: 18px;
  }

  .example-plan-card h3 {
    font-size: 20px !important;
  }

  .example-plan-units {
    gap: 8px 10px !important;
  }

  .example-plan-units strong,
  .example-plan-price strong {
    font-size: 13px !important;
  }

  .example-plan-cost {
    width: 100%;
    justify-content: center;
    margin-left: 0 !important;
    margin-top: 10px;
    padding: 12px 14px !important;
  }

  .example-plan-cost-label {
    font-size: 12px !important;
  }

  .example-plan-cost-price {
    font-size: 16px !important;
  }

  .news-side {
    padding: 20px;
  }

  .news-category-list {
    grid-template-columns: 1fr;
  }

  .news-item {
    padding: 20px;
  }

  .news-item .news-title,
  .news-list .news-title {
    font-size: 20px;
  }

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

  .works-card-image {
    height: 230px;
  }

  .works-feature {
    padding: 20px;
  }

  .works-feature-image {
    height: 280px;
  }

  .about-content {
    padding: 0 16px;
  }

  .about-grid {
    min-height: 350px;
  }

  .about-copy {
    font-size: 15px;
  }

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

  .service-head-text {
    max-width: none;
    margin-top: -60px;
  }

  .service-grid,
  .footer-nav-grid {
    grid-template-columns: 1fr;
  }

  .service-card .service-image {
    height: 208px;
  }

  .service-title {
    font-size: 24px;
  }

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

  .option-grid > div:first-child {
    order: 1;
  }

  .option-grid > div:last-child {
    order: 2;
  }

  .area-map-svg {
    transform: scale(1.3) translateX(-30px);
    transform-origin: center;
  }

  .area-hotspots-pc {
    display: none;
  }

  .area-hotspots-sp {
    display: block;
  }

  .overview-aside {
    padding: 28px;
  }

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    padding: 0;
  }

  .company-table th {
    padding-top: 22px;
    font-size: 13px;
  }

  .company-table td {
    padding: 8px 0 22px;
  }

  .access-card {
    padding: 24px;
  }

  .footer-sdgs-list,
  .footer-nav-grid > div[style*="display:flex"] {
    justify-content: center !important;
    flex-wrap: wrap;
    gap: 10px;
    row-gap: 10px;
  }

  .policy-section {
    padding: 72px 0 96px;
  }

  .policy-block {
    padding: 26px 22px;
  }

  .policy-text {
    font-size: 14px;
  }
    
  .cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }

  .footer-logo-slot {
    width: 45px;
    height: 45px;
    margin-top: -50px;
    margin-bottom: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
