@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Noto+Sans+JP:wght@400;500;700&family=Sofia+Sans+Extra+Condensed:wght@400&display=swap');

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

html {
  overflow-x: hidden;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #101010;
  background: #FFFFFF;
  overflow-x: hidden;
}

/* ======================== */
/* Navigation               */
/* ======================== */
.nav-container {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1128px;
  max-width: calc(100% - 40px);
  z-index: 100;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 0 0 80px 80px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-container.nav-scrolled {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 80px;
  height: 56px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
  color: #101010;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #5FA9D1;
}

.nav-links a.nav-active {
  color: #585858;
}

.nav-contact-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  height: 40px;
  background: #101010;
  color: #FFFFFF !important;
  border-radius: 80px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.43;
  transition: opacity 0.2s;
}

.nav-contact-btn:hover {
  opacity: 0.8;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #101010;
  transition: transform 0.3s, opacity 0.3s;
}

/* ======================== */
/* Hero Section             */
/* ======================== */
.service-hero {
  width: 100%;
  height: 264px;
  background: #5FA9D1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.service-hero-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1440px;
  padding: 56px 156px;
  margin: 0 auto;
}

.service-hero-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  color: #FFFFFF;
}

.service-hero-heading {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.service-hero-heading .heading-text {
  font-family: 'Inter', sans-serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-left: -5px;
}

.service-hero-heading .heading-icon {
  width: 40px;
  height: 40px;
  margin-top: 10px;
}

/* ======================== */
/* Strategy Section         */
/* ======================== */
.strategy-section {
  max-width: 1128px;
  margin: 0 auto;
  padding: 0;
}

.strategy-heading {
  padding: 0;
  height: 68px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}

.strategy-heading-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  color: #585858;
  width: 100%;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.strategy-heading-title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.33;
  text-transform: uppercase;
  text-align: center;
  color: #101010;
  width: 100%;
}

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

.strategy-card {
  /* background: linear-gradient(180deg, #E8F1F8 0%, #F3F7FA 100%); */
  background: url(../imgs/strategy-card-bg.png);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}


.strategy-card-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  color: #101010;
}

.strategy-card-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  color: #585858;
  line-break: strict;
}

/* ======================== */
/* Diagram Section          */
/* ======================== */
.diagram-section {
  display: flex;
  justify-content: center;
  max-width: 1128px;
  margin: 0 auto;
  padding: 80px 0 0;
}

.diagram-section img {
  max-width: 761px;
  width: 100%;
  height: auto;
  opacity: 0;
  transform: scale(0.3);
}

.diagram-img-mob {
  display: none;
}

@keyframes diagramScaleIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.diagram-section img.is-animated {
  animation: diagramScaleIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* ======================== */
/* Service Detail Section   */
/* ======================== */
.service-detail-section {
  background: linear-gradient(93deg, rgba(132, 195, 229, 0.40) -3.05%, rgba(255, 255, 255, 0.00) 34.76%, rgba(169, 207, 228, 0.40) 78.16%, rgba(148, 202, 232, 0.40) 94.16%);
  padding: 80px 24px;
  margin-top: 80px;
}

.service-detail-inner {
  max-width: 1128px;
  margin: 0 auto;
}

.service-detail-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
}

.service-detail-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.service-detail-heading-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  color: #585858;
  width: 100%;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail-heading-title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.33;
  text-transform: uppercase;
  text-align: center;
  color: #101010;
  width: 100%;
}

.service-detail-intro {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.14;
  text-align: center;
  color: #101010;
  max-width: 748px;
}

/* Service Row */
.service-row {
  display: flex;
  gap: 120px;
  align-items: flex-start;
}

.service-row + .service-row {
  margin-top: 80px;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-row-text {
  width: 456px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-row-number-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.service-row-number {
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #C2C2C2;
}

.service-row-line {
  flex: 1;
  height: 1px;
  background: #C2C2C2;
}

.service-row-titles {
  display: flex;
  flex-direction: column;
  width: 360px;
  height: 68px;
}

.service-row-en-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 2.67;
  color: #101010;
}

.service-row-jp-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.33;
  color: #101010;
}

.service-row-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  color: #101010;
  line-break: strict;
}

.service-row-image {
  width: 552px;
  height: 368px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.service-row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: -webkit-filter 1.5s ease, filter 1.5s ease;
  transition: -webkit-filter 1.5s ease, filter 1.5s ease;
}

.service-row-image img:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

/* ======================== */
/* Store Carousel Section   */
/* ======================== */
.store-section {
  background: #F2F2F2;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.store-heading {
  padding: 0 156px;
  height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 56px;
}

.store-heading-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  color: #585858;
  width: 100%;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-heading-title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.33;
  text-transform: uppercase;
  text-align: center;
  color: #101010;
  width: 100%;
}

.store-carousel {
  position: relative;
  display: flex;
  align-items: center;
  overflow: visible;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.store-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.store-card {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  width: 552px;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.store-card-inner {
  display: flex;
  flex-direction: column;
}

.store-card-image {
  width: 100%;
  height: 352px;
  border-radius: 8px;
  overflow: hidden;
}

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

.store-card-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 24px 0 0;
}

.store-card-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #101010;
}

.store-card-address {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  color: #000000;
}

.store-card.inactive {
  opacity: 0.4;
  transform: scale(0.78);
}

.store-carousel-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 80px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.2s;
}

.store-carousel-btn:hover {
  background: rgba(0, 0, 0, 0.45);
}

.store-carousel-btn.prev {
  left: 40px;
}

.store-carousel-btn.next {
  right: 40px;
}

.store-carousel-btn svg {
  width: 24px;
  height: 24px;
}

.store-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.store-dot {
  width: 16px;
  height: 2px;
  background: #C2C2C2;
  border-radius: 0;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.store-dot.active {
  background: #101010;
}

/* ======================== */
/* Footer                   */
/* ======================== */
.company-footer {
  position: relative;
  width: 100%;
  background-image: url('../imgs/footer-bg-350a86.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.footer-cta-area {
  padding: 80px 156px;
}

.footer-cta-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.footer-cta-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 49px;
  flex: 1;
  max-width: 554px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  text-decoration: none;
  color: #101010;
  transition: background 0.3s ease;
}

.footer-cta-card:hover {
  background: rgba(255, 255, 255, 0.6);
}

.footer-cta-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-cta-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  color: #101010;
}

.footer-cta-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-cta-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  color: #585858;
}

.footer-cta-arrow {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.footer-cta-arrow img {
  width: auto;
  height: 32px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.footer-cta-cards a:hover .footer-cta-arrow img {
  opacity: 1;
  transform: translateX(20px);
}

.footer-bottom {
  padding: 0 156px;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  padding-top: 1px;
}

.footer-bottom-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 32px;
}

.footer-info {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.footer-company-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* flex: 1; */
  margin-top: 20px;
  width: 409px;
}

.footer-company-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.71;
  color: #585858;
}

.footer-address {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
  color: #585858;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  flex: 1;
  gap: 16px;
  align-content: start;
}

.footer-links a {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
  color: #585858;
  text-decoration: none;
  padding: 4px 16px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #5FA9D1;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 0;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social img {
  width: 20px;
  height: 20px;
}



/* 与 index.html（style.css）页脚细线一致 */
.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: #C2C2C2;
}

.footer-copyright {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
  color: #C2C2C2;
}

.footer-privacy {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
  color: #C2C2C2;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-privacy:hover {
  color: #585858;
}


/* ======================== */
/* Scroll Animations        */
/* ======================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ======================== */
/* Responsive: 1280px       */
/* ======================== */
@media (max-width: 1280px) {
  .service-hero {
    padding: 56px 40px;
    height: auto;
    min-height: 200px;
  }

  .strategy-section {
    max-width: none;
    padding: 0 40px;
  }

  .strategy-heading {
    margin-top: 60px;
  }

  .strategy-grid {
    margin-top: 40px;
  }

  .diagram-section {
    max-width: none;
    padding: 60px 40px 0;
  }

  .service-detail-section {
    padding: 60px 40px;
    margin-top: 60px;
  }

  .service-row {
    gap: 60px;
  }

  .service-row-text {
    width: auto;
    flex: 1;
  }

  .service-row-image {
    width: 400px;
    height: auto;
    aspect-ratio: 552 / 368;
  }

  .store-heading {
    padding: 0 40px;
  }

  .footer-cta-area {
    padding: 60px 40px;
    min-height: auto;
  }

  .footer-bottom {
    padding: 0 40px;
    margin-top: 0;
  }

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

  .nav-inner {
    padding: 0 40px;
  }
}

/* ======================== */
/* Responsive: 768px        */
/* ======================== */
@media (max-width: 768px) {

  /* --- Navigation --- */
  .nav-container {
    max-width: calc(100% - 32px);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    margin-top: 30px;
  }

  .nav-container.nav-scrolled {
    background: transparent;
    box-shadow: none;
  }

  .nav-inner {
    height: 56px;
    padding: 0 16px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 24px;
    gap: 16px;
    border-radius: 16px;
    box-shadow: none;
  }

  .nav-links.open {
    display: flex;
  }

  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .mobile-menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* --- Hero Section --- */
  .service-hero {
    height: 200px;
    padding: 120px 16px 40px;
    align-items: flex-start;
  }

  .service-hero-content {
    gap: 0px;
    padding: 0px;
  }

  .service-hero-label {
    font-size: 10px;
  }

  .service-hero-heading {
    gap: 2px;
  }

  .service-hero-heading .heading-text {
    font-size: 32px;
    line-height: 1.21;
    margin-left: -2px;
  }

  .service-hero-heading .heading-icon {
    width: 10px;
    height: 10px;
    margin-top: 8px;
  }

  /* --- Strategy Section --- */
  .strategy-section {
    max-width: none;
    padding: 0 16px;
  }

  .strategy-heading {
    margin-top: 40px;
    height: 72px;
  }

  .strategy-heading-label {
    font-size: 10px;
  }

  .strategy-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }

  .strategy-card {
    padding: 24px 16px;
    gap: 8px;
    background: linear-gradient(180deg, #E8F1F8 0%, #F3F7FA 100%);
  }

  .strategy-card-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.75;
  }

  .strategy-card-desc {
    font-size: 14px;
    line-height: 2;
  }

  /* --- Diagram Section --- */
  .diagram-section {
    max-width: none;
    padding: 64px 16px 0;
  }

  .diagram-img-pc {
    display: none;
  }

  .diagram-img-mob {
    display: block;
  }

  /* --- Service Detail Section --- */
  .service-detail-section {
    padding: 40px 0 0;
    margin-top: 48px;
  }

  .service-detail-inner {
    max-width: none;
  }

  .service-detail-header {
    padding: 0 16px;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 0;
  }

  .service-detail-heading {
    gap: 0;
  }

  .service-detail-heading-label {
    font-size: 10px;
    text-align: left;
    justify-content: flex-start;
  }

  .service-detail-heading-title {
    font-size: 24px;
    text-align: left;
  }

  .service-detail-intro {
    font-size: 12px;
    font-weight: 500;
    line-height: 2;
    text-align: left;
    max-width: none;
  }

  /* --- Service Rows --- */
  .service-row {
    flex-direction: column !important;
    gap: 20px;
    padding: 40px 16px;
  }

  .service-row + .service-row {
    margin-top: 0;
  }

  .service-row-text {
    width: 100%;
    gap: 8px;
  }

  .service-row-titles {
    width: 100%;
    height: auto;
  }

  .service-row-en-title {
    font-size: 10px;
    line-height: 1.48;
  }

  .service-row-jp-title {
    font-size: 16px;
    line-height: 2;
  }

  .service-row-desc {
    font-size: 14px;
    line-height: 2;
  }

  .service-row-desc br {
    display: none;
  }

  .service-row-image {
    width: 100%;
    aspect-ratio: auto;
  }
  .service-row-image img{
    height: auto;
  }

  .service-row-image img:hover {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
  }

  .service-row-image img.is-colored {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
  }

  /* --- Store Section --- */
  .store-section {
    padding: 64px 0;
  }

  .store-carousel {
    overflow: hidden;
    margin: 0 16px;
  }

  .store-carousel-track {
    gap: 0;
    flex-direction: row;
    width: 100%;
  }

  .store-card {
    width: 100%;
    transform: none !important;
  }

  .store-heading {
    padding: 0 16px;
    margin-bottom: 40px;
    height: 72px;
  }

  .store-heading-label {
    font-size: 10px;
  }

  .store-card-image {
    height: 216px;
    aspect-ratio: auto;
    border-radius: 4px;
  }

  .store-card-info {
    padding: 16px 16px 0;
    margin: 0;
    gap: 8px;
  }

  .store-card-name {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.48;
  }

  .store-card-address {
    font-size: 10px;
    line-height: 1.67;
    color: #000000;
  }

  .store-carousel-btn {
    width: 24px;
    height: 24px;
  }

  .store-carousel-btn.prev {
    left: 4px;
  }

  .store-carousel-btn.next {
    right: 4px;
  }

  .store-carousel-btn svg {
    width: 14px;
    height: 14px;
  }

  /* --- Footer --- */
  .company-footer{
    background-image: url(../imgs/footer_bg_mob.png) !important;
  }
  .footer-cta-area {
    padding: 64px 16px;
    min-height: auto;
  }

  .footer-cta-cards {
    flex-direction: column;
    gap: 16px;
  }

  .footer-cta-card {
    padding: 16px;
    border-radius: 4px;
    gap: 0px;
    max-width: 100%;
  }

  .footer-cta-title {
    font-size: 16px;
    line-height: 2;
  }

  .footer-cta-desc {
    font-size: 14px;
    line-height: 1.71;
  }

  .footer-bottom {
    padding: 0;
    margin-top: 0;
  }

  .footer-bottom-inner {
    max-width: 100%;
    padding: 48px 16px 38px;
    position: relative;
  }

  .footer-info {
    flex-direction: column;
    gap: 48px;
  }

  .footer-company-name {
    font-size: 14px;
    line-height: 1.71;
  }

  .footer-company-info{
    width: 100%;
  }

  .footer-address {
    font-size: 14px;
    line-height: 1.43;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .footer-links a {
    font-size: 14px;
    line-height: 1.43;
    padding: 0;
  }

  /* 与 index：移动端用社交区上边框作细线，隐藏独立 divider */
  .footer-social {
    position: static;
    padding: 35px 10px;
    gap: 32px;
    border-top: 1px solid #C2C2C2;
    padding-bottom: 0px;
    /* margin-top: 40px; */
  }

  .footer-social img {
    width: 24px;
    height: 24px;
  }

  .footer-divider {
    display: none;
  }

  .footer-bottom-bar {
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
    /* padding-top: 16px; */
  }

  .footer-copyright {
    font-size: 10px;
    line-height: 2;
  }

  .footer-privacy {
    font-size: 10px;
    line-height: 2;
  }
}
