@charset "UTF-8";
/* ===================================================
   KS ENICIA CO., LTD. - OFFICIAL STYLESHEET
   =================================================== */
/* ---------------------------------------------------
   Global Resets & Base Styles
   --------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #222222;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

/* Font Classes */
.font-en {
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Layout Utilities */
.section-padding {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

.bg-gray {
  background-color: #f3f3f1;
}

.bg-navy {
  background-color: #13294b;
  color: #ffffff;
}

.container-custom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------------------------------------------------
   Scroll Fade-Up Animation (.js-fade)
   --------------------------------------------------- */
.js-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js-fade.is-active {
  opacity: 1;
  transform: translateY(0);
}
.js-fade.no-fade {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ---------------------------------------------------
   Section Titles (Common)
   --------------------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 40px;
  }
}
.section-header .sec-title-en {
  font-family: "Outfit", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.08em;
  color: #13294b;
  margin-bottom: 8px;
  display: block;
}
@media (max-width: 768px) {
  .section-header .sec-title-en {
    font-size: 2.5rem;
  }
}
.section-header .sec-title-ja {
  font-size: 1.125rem;
  font-weight: 500;
  color: #555555;
  letter-spacing: 0.15em;
}
.section-header.title-white .sec-title-en {
  color: #ffffff;
}
.section-header.title-white .sec-title-ja {
  color: rgba(255, 255, 255, 0.8);
}

/* ---------------------------------------------------
   Site Header
   --------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  transition: all 0.4s ease;
}
@media (max-width: 991px) {
  .site-header {
    padding: 15px 20px;
  }
}
.site-header .header-logo {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}
.site-header .header-logo .logo-img {
  height: 36px;
  width: auto;
}
.site-header .header-logo .logo-text {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.site-header .site-nav {
  pointer-events: auto;
  border-radius: 40px;
  padding: 0;
  transition: all 0.4s ease;
}
.site-header .site-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 28px;
  align-items: center;
}
@media (max-width: 991px) {
  .site-header .site-nav ul {
    display: none;
  }
}
.site-header .site-nav ul li a {
  color: #ffffff;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  position: relative;
  transition: color 0.3s ease;
}
.site-header .site-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.3s ease, background-color 0.3s ease;
}
.site-header .site-nav ul li a:hover::after {
  width: 100%;
}
@media (max-width: 991px) {
  .site-header .site-nav.is-open {
    display: flex !important;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #0a1931 !important;
    padding: 90px 40px 40px;
    z-index: 1000;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
  .site-header .site-nav.is-open ul {
    display: flex !important;
    flex-direction: column;
    gap: 28px;
    align-items: center;
    width: 100%;
  }
  .site-header .site-nav.is-open ul li a {
    font-size: 1.1rem;
    color: #ffffff !important;
    letter-spacing: 0.1em;
  }
  .site-header .site-nav.is-open ul li a::after {
    display: none;
  }
}
.site-header {
  /* スクロール時: 左ロゴ消去 ＆ 右カプセルナビ化 (白透明80%) */
}
.site-header.scrolled {
  padding: 16px 40px;
}
@media (max-width: 991px) {
  .site-header.scrolled {
    padding: 12px 20px;
  }
}
.site-header.scrolled .header-logo {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-20px);
  pointer-events: none;
}
.site-header.scrolled .site-nav:not(.is-open) {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 40px;
  padding: 10px 32px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .site-header.scrolled .site-nav:not(.is-open) {
    display: none;
  }
}
.site-header.scrolled .site-nav:not(.is-open) ul li a {
  color: #13294b;
  font-weight: 600;
}
.site-header.scrolled .site-nav:not(.is-open) ul li a::after {
  background-color: #13294b;
}
.site-header.scrolled .site-nav:not(.is-open) ul li a:hover {
  color: #1e3e6f;
}
.site-header.scrolled .mobile-menu-toggle:not(.is-open) span {
  background-color: #13294b;
}
.site-header .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
  z-index: 1001;
  pointer-events: auto;
}
@media (max-width: 991px) {
  .site-header .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.site-header .mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.site-header .mobile-menu-toggle.is-open span {
  background-color: #ffffff !important;
}
.site-header .mobile-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.site-header .mobile-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.site-header .mobile-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ---------------------------------------------------
   HERO AREA (100vh, Zoom + Crossfade, Vertical Scroll line)
   --------------------------------------------------- */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: #0a1931;
}
.hero-section .hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-section .hero-bg-slider .hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 2s ease-in-out, transform 7s linear;
}
.hero-section .hero-bg-slider .hero-bg-slide.active {
  opacity: 1;
  transform: scale(1.08);
}
.hero-section .hero-bg-slider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.hero-section .hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .hero-section .hero-inner {
    padding: 0 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
.hero-section .hero-content {
  color: #ffffff;
  width: 800px;
  max-width: 100%;
}
.hero-section .hero-content .hero-title-main {
  margin-bottom: 24px;
}
.hero-section .hero-content .hero-title-main img {
  max-width: 100%;
  height: auto;
  display: block;
}
.hero-section .hero-content .hero-sub-text {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .hero-section .hero-content .hero-sub-text {
    font-size: 1.15rem;
  }
}
.hero-section {
  /* Scroll Indicator (Right Side) */
}
.hero-section .scroll-indicator {
  position: absolute;
  right: 40px;
  bottom: 50px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
@media (max-width: 768px) {
  .hero-section .scroll-indicator {
    right: 15px;
    bottom: 30px;
  }
}
.hero-section .scroll-indicator .scroll-text {
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: #ffffff;
  writing-mode: vertical-rl;
}
.hero-section .scroll-indicator .scroll-line-track {
  position: relative;
  width: 2px;
  height: 80px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
  border-radius: 1px;
}
.hero-section .scroll-indicator .scroll-line-track .scroll-dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: dropDot 2.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

@keyframes dropDot {
  0% {
    top: -10px;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    top: 90px;
    opacity: 0;
  }
}
/* ---------------------------------------------------
   CONCEPT / INTRO SECTION
   --------------------------------------------------- */
.concept-section {
  position: relative;
  background-color: #ffffff;
  padding-top: 180px;
  padding-bottom: 220px;
  /* 1: 右上 (pipe1.svg) */
}
.concept-section::before {
  content: "";
  position: absolute;
  top: -300px;
  right: -100px;
  width: 800px;
  height: 690px;
  background-image: url("../img/pipe1.svg");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 991px) {
  .concept-section::before {
    width: 250px;
    height: 200px;
    opacity: 0.3;
  }
}
.concept-section {
  /* 2: 右下 (pipe2.svg) */
}
.concept-section::after {
  content: "";
  position: absolute;
  bottom: 30px;
  right: 0;
  width: 400px;
  height: 300px;
  background-image: url("../img/pipe2.svg");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 991px) {
  .concept-section::after {
    width: 220px;
    height: 180px;
    opacity: 0.3;
  }
}
@media (max-width: 768px) {
  .concept-section {
    padding-top: 100px;
    padding-bottom: 120px;
  }
}
.concept-section .concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 150px;
  align-items: center;
}
@media (max-width: 991px) {
  .concept-section .concept-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.concept-section .concept-images {
  position: relative;
  width: 100%;
  height: 820px;
}
@media (max-width: 991px) {
  .concept-section .concept-images {
    height: 560px;
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .concept-section .concept-images {
    height: 440px;
    margin-bottom: 20px;
  }
}
.concept-section .concept-images .img-box {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.concept-section .concept-images .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.concept-section .concept-images .img-box {
  /* 1. 左上 (大・縦長) */
}
.concept-section .concept-images .img-box.img-box-1 {
  top: -50px;
  left: 0;
  width: 48%;
  height: 340px;
  z-index: 2;
  border-radius: 28px;
}
@media (max-width: 991px) {
  .concept-section .concept-images .img-box.img-box-1 {
    top: 0;
  }
}
@media (max-width: 576px) {
  .concept-section .concept-images .img-box.img-box-1 {
    height: 200px;
    border-radius: 18px;
  }
}
.concept-section .concept-images .img-box {
  /* 2. 右上 (中・縦長) */
}
.concept-section .concept-images .img-box.img-box-2 {
  top: 100px;
  right: 20px;
  width: 35%;
  height: 250px;
  z-index: 2;
  border-radius: 20px;
}
@media (max-width: 991px) {
  .concept-section .concept-images .img-box.img-box-2 {
    top: 40px;
    right: 10px;
  }
}
@media (max-width: 576px) {
  .concept-section .concept-images .img-box.img-box-2 {
    top: 30px;
    height: 140px;
    border-radius: 14px;
  }
}
.concept-section .concept-images .img-box {
  /* 3. 中央左 (小) */
}
.concept-section .concept-images .img-box.img-box-3 {
  top: 360px;
  left: 5%;
  width: 28%;
  height: 190px;
  z-index: 3;
  border-radius: 18px;
}
@media (max-width: 991px) {
  .concept-section .concept-images .img-box.img-box-3 {
    top: 260px;
  }
}
@media (max-width: 576px) {
  .concept-section .concept-images .img-box.img-box-3 {
    top: 210px;
    height: 100px;
    border-radius: 12px;
  }
}
.concept-section .concept-images .img-box {
  /* 4. 中央 (小) */
}
.concept-section .concept-images .img-box.img-box-4 {
  top: 450px;
  left: 32%;
  width: 28%;
  height: 190px;
  z-index: 4;
  border-radius: 16px;
}
@media (max-width: 991px) {
  .concept-section .concept-images .img-box.img-box-4 {
    top: 320px;
  }
}
@media (max-width: 576px) {
  .concept-section .concept-images .img-box.img-box-4 {
    top: 260px;
    height: 90px;
    border-radius: 10px;
  }
}
.concept-section .concept-images .img-box {
  /* 5. 右下 (大・縦長) */
}
.concept-section .concept-images .img-box.img-box-5 {
  top: 400px;
  right: -40px;
  width: 45%;
  height: 350px;
  z-index: 2;
  border-radius: 26px;
}
@media (max-width: 991px) {
  .concept-section .concept-images .img-box.img-box-5 {
    top: 220px;
    right: 0;
  }
}
@media (max-width: 576px) {
  .concept-section .concept-images .img-box.img-box-5 {
    top: 180px;
    height: 220px;
    border-radius: 18px;
  }
}
.concept-section .concept-images .img-box {
  /* 6. 左下 (中・横長) */
}
.concept-section .concept-images .img-box.img-box-6 {
  bottom: -100px;
  left: 0;
  width: 60%;
  height: 170px;
  z-index: 3;
  border-radius: 20px;
}
@media (max-width: 991px) {
  .concept-section .concept-images .img-box.img-box-6 {
    bottom: 0;
  }
}
@media (max-width: 576px) {
  .concept-section .concept-images .img-box.img-box-6 {
    bottom: 0;
    height: 110px;
    border-radius: 14px;
  }
}
.concept-section.is-active .concept-images .img-box {
  opacity: 1;
}
.concept-section.is-active .concept-images .img-box.img-box-1 {
  transform: translateY(0);
  transition-delay: 0.1s;
}
.concept-section.is-active .concept-images .img-box.img-box-2 {
  transform: translateY(0);
  transition-delay: 0.25s;
}
.concept-section.is-active .concept-images .img-box.img-box-3 {
  transform: translateY(0);
  transition-delay: 0.4s;
}
.concept-section.is-active .concept-images .img-box.img-box-4 {
  transform: translateY(0);
  transition-delay: 0.55s;
}
.concept-section.is-active .concept-images .img-box.img-box-5 {
  transform: translateY(0);
  transition-delay: 0.7s;
}
.concept-section.is-active .concept-images .img-box.img-box-6 {
  transform: translateY(0);
  transition-delay: 0.85s;
}
.concept-section .concept-content .concept-headline {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
  color: #13294b;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .concept-section .concept-content .concept-headline {
    font-size: 1.6rem;
  }
}
.concept-section .concept-content .concept-text {
  font-size: 0.9rem;
  color: #222222;
  line-height: 2;
}
.concept-section .concept-content .concept-text p {
  margin-bottom: 20px;
}

/* ---------------------------------------------------
   SERVICE SECTION (NO HOVER MOTION)
   --------------------------------------------------- */
.service-section .service-lead {
  text-align: center;
  max-width: 760px;
  margin: -30px auto 50px;
  color: #555555;
}
.service-section .service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .service-section .service-grid {
    grid-template-columns: 1fr;
  }
}
.service-section .service-card {
  background-color: #ffffff;
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
@media (max-width: 576px) {
  .service-section .service-card {
    border-radius: 20px;
    padding: 16px;
  }
}
.service-section .service-card .service-img {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .service-section .service-card .service-img {
    border-radius: 14px;
    margin-bottom: 16px;
  }
}
.service-section .service-card .service-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-section .service-card .service-info {
  padding: 0 4px;
}
.service-section .service-card .service-info .service-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 12px;
}
.service-section .service-card .service-info .service-title-row h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #13294b;
  margin: 0;
}
@media (max-width: 576px) {
  .service-section .service-card .service-info .service-title-row h3 {
    font-size: 1.2rem;
  }
}
.service-section .service-card .service-info .service-title-row .service-num {
  font-family: "Outfit", sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: #b5bdcb;
  line-height: 0.85;
}
@media (max-width: 576px) {
  .service-section .service-card .service-info .service-title-row .service-num {
    font-size: 2.6rem;
  }
}
.service-section .service-card .service-info p {
  font-size: 0.95rem;
  font-weight: 500;
  color: #222222;
  margin: 0;
  line-height: 1.65;
}
@media (max-width: 576px) {
  .service-section .service-card .service-info p {
    font-size: 0.875rem;
  }
}

/* ---------------------------------------------------
   FIELD SECTION (Navy BG, NO HOVER MOTION)
   --------------------------------------------------- */
.field-section {
  background-color: #13294b;
  color: #ffffff;
}
.field-section .field-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .field-section .field-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .field-section .field-grid {
    grid-template-columns: 1fr;
  }
}
.field-section .field-card {
  position: relative;
  height: 380px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .field-section .field-card {
    height: 300px;
  }
}
.field-section .field-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.field-section .field-card .field-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(19, 41, 75, 0.2) 0%, rgba(10, 25, 49, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 20px;
  text-align: center;
}
.field-section .field-card .field-overlay h3 {
  font-size: 1.15rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: 0.1rem;
  line-height: 1.5;
}
.field-section .field-card .field-overlay .field-sub {
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

/* ---------------------------------------------------
   CASE STUDY SECTION (Slider in each card)
   --------------------------------------------------- */
.casestudy-section .cs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 991px) {
  .casestudy-section .cs-grid {
    grid-template-columns: 1fr;
  }
}
.casestudy-section .cs-card {
  overflow: hidden;
}
.casestudy-section .cs-card .cs-header {
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #e0e0e0;
}
.casestudy-section .cs-card .cs-header .cs-tag {
  background-color: #13294b;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 15px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.casestudy-section .cs-card .cs-header .t-denki {
  background-color: #ffb700;
}
.casestudy-section .cs-card .cs-header .t-seigyo {
  background-color: #6baaaf;
}
.casestudy-section .cs-card .cs-header .t-kikai {
  background-color: #fd7d08;
}
.casestudy-section .cs-card .cs-header h3 {
  font-size: 1.05rem;
  color: #222222;
  margin: 0;
}
.casestudy-section .cs-card .cs-slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #eee;
}
.casestudy-section .cs-card .cs-slider-container .cs-slider-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease-in-out;
}
.casestudy-section .cs-card .cs-slider-container .cs-slider-wrapper .cs-slide {
  min-width: 100%;
  height: 100%;
}
.casestudy-section .cs-card .cs-slider-container .cs-slider-wrapper .cs-slide img {
  border-radius: 6px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.casestudy-section .cs-card .cs-slider-container {
  /* Slider Nav Controls */
}
.casestudy-section .cs-card .cs-slider-container .cs-prev-btn,
.casestudy-section .cs-card .cs-slider-container .cs-next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(19, 41, 75, 0.7);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}
.casestudy-section .cs-card .cs-slider-container .cs-prev-btn:hover,
.casestudy-section .cs-card .cs-slider-container .cs-next-btn:hover {
  background: rgba(19, 41, 75, 0.95);
}
.casestudy-section .cs-card .cs-slider-container .cs-prev-btn {
  left: 10px;
}
.casestudy-section .cs-card .cs-slider-container .cs-next-btn {
  right: 10px;
}
.casestudy-section .cs-card .cs-slider-container .cs-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.casestudy-section .cs-card .cs-slider-container .cs-dots .dot {
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.casestudy-section .cs-card .cs-slider-container .cs-dots .dot.active {
  background-color: #ffffff;
  transform: scale(1.3);
}

/* ---------------------------------------------------
   GALLERY SECTION (Infinite Marquee Top/Bottom)
   --------------------------------------------------- */
.gallery-section {
  padding: 80px 0;
  overflow: hidden;
}
.gallery-section .gallery-marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.gallery-section .gallery-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  gap: 16px;
}
.gallery-section .gallery-item {
  width: 320px;
  height: 210px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .gallery-section .gallery-item {
    width: 200px;
    height: 130px;
  }
}
.gallery-section .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-section {
  /* Right to Left & Left to Right Animations */
}
.gallery-section .track-right {
  animation: marqueeRight 35s linear infinite;
}
.gallery-section .track-left {
  animation: marqueeLeft 35s linear infinite;
}

@keyframes marqueeRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes marqueeLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ---------------------------------------------------
   PARTNER SECTION
   --------------------------------------------------- */
.partner-section .partner-lead {
  text-align: center;
  max-width: 760px;
  margin: -30px auto 50px;
  font-size: 1rem;
  color: #555555;
}
.partner-section .partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .partner-section .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .partner-section .partner-grid {
    grid-template-columns: 1fr;
  }
}
.partner-section .partner-card {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.partner-section .partner-card .partner-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #13294b;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.partner-section .partner-card .partner-name::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: #ffb700;
  border-radius: 50%;
  flex-shrink: 0;
}
.partner-section .partner-card .partner-name a {
  color: #13294b;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.partner-section .partner-card .partner-name a:hover {
  color: #1e3e6f;
  text-decoration: underline;
}
.partner-section .partner-card .partner-name .ext-link-icon {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px !important;
  min-height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
}
.partner-section .partner-card .partner-business {
  font-size: 0.875rem;
  color: #555555;
  margin-bottom: 12px;
  line-height: 1.6;
}
.partner-section .partner-card .partner-address {
  font-size: 0.8rem;
  color: #888888;
}

/* ---------------------------------------------------
   GREETING SECTION
   --------------------------------------------------- */
.greeting-section {
  background-color: #ffffff;
  background-image: url(../img/pipe3.svg);
  background-repeat: no-repeat;
  background-size: 30%;
}
.greeting-section .greeting-flex {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
  align-items: center;
}
@media (max-width: 991px) {
  .greeting-section .greeting-flex {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.greeting-section .greeting-content .greeting-headline {
  font-size: 1.9rem;
  font-weight: 700;
  color: #13294b;
  margin-bottom: 30px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .greeting-section .greeting-content .greeting-headline {
    font-size: 1.5rem;
  }
}
.greeting-section .greeting-content .greeting-body {
  font-size: 0.975rem;
  color: #222222;
  line-height: 1.95;
  margin-bottom: 30px;
}
.greeting-section .greeting-content .greeting-body p {
  margin-bottom: 20px;
}
.greeting-section .greeting-content .greeting-sign {
  font-size: 1.1rem;
  font-weight: 700;
  color: #13294b;
  text-align: right;
}
.greeting-section .greeting-image {
  position: relative;
  height: 600px;
  overflow: hidden;
  max-width: 100%;
}
.greeting-section .greeting-image .gi1 {
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/4;
  width: 60%;
  max-width: 100%;
}
.greeting-section .greeting-image .gi2 {
  border-radius: 8px;
  width: 50%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/5;
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 100%;
}
@media (max-width: 991px) {
  .greeting-section .greeting-image {
    height: 420px;
  }
}
@media (max-width: 576px) {
  .greeting-section .greeting-image {
    height: 320px;
  }
}

/* ---------------------------------------------------
   ABOUT US SECTION
   --------------------------------------------------- */
.about-section .about-table-wrap {
  max-width: 900px;
  margin: 0 auto 50px;
}
.about-section .about-table-wrap table {
  width: 100%;
  border-collapse: collapse;
}
.about-section .about-table-wrap table tr {
  border-bottom: 1px solid #e0e0e0;
}
.about-section .about-table-wrap table tr th,
.about-section .about-table-wrap table tr td {
  padding: 18px 20px;
  font-size: 0.95rem;
}
@media (max-width: 576px) {
  .about-section .about-table-wrap table tr th,
  .about-section .about-table-wrap table tr td {
    padding: 12px 10px;
    font-size: 0.875rem;
  }
}
.about-section .about-table-wrap table tr th {
  width: 180px;
  font-weight: 700;
  color: #13294b;
  vertical-align: top;
  white-space: nowrap;
}
@media (max-width: 576px) {
  .about-section .about-table-wrap table tr th {
    width: 100px;
  }
}
.about-section .about-table-wrap table tr td {
  color: #222222;
  line-height: 1.7;
}
.about-section .about-locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto 50px;
}
@media (max-width: 576px) {
  .about-section .about-locations {
    grid-template-columns: 1fr;
  }
}
.about-section .about-locations .location-card {
  overflow: hidden;
}
.about-section .about-locations .location-card img {
  border-radius: 6px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-section .about-locations .location-card .location-info {
  padding: 16px;
  text-align: center;
}
.about-section .about-locations .location-card .location-info h4 {
  font-size: 1.05rem;
  color: #13294b;
  margin-bottom: 4px;
}
.about-section .about-locations .location-card .location-info p {
  font-size: 0.85rem;
  color: #555555;
  margin: 0;
}
.about-section .about-map-box {
  max-width: 900px;
  margin: 0 auto;
  height: 600px;
  background-color: #e5e3df;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
}
.about-section .about-map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------------------------------------------------
   RECRUIT SECTION
   --------------------------------------------------- */
.recruit-section {
  background-color: #ffffff;
  background-image: url(../img/pipe1.svg), url(../img/pipe2.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: right top, right bottom;
  background-size: 400px auto, 320px auto;
}
@media (max-width: 991px) {
  .recruit-section {
    background-size: 300px auto, 220px auto;
  }
}
@media (max-width: 576px) {
  .recruit-section {
    background-size: 200px auto, 160px auto;
  }
}
.recruit-section .recruit-flex {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .recruit-section .recruit-flex {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.recruit-section .recruit-images {
  position: relative;
  width: 100%;
  height: 480px;
}
@media (max-width: 991px) {
  .recruit-section .recruit-images {
    height: 420px;
  }
}
@media (max-width: 576px) {
  .recruit-section .recruit-images {
    height: 340px;
  }
}
.recruit-section .recruit-images .img-box {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.recruit-section .recruit-images .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.recruit-section .recruit-images .img-box {
  /* 1. 左側 (大・縦長) */
}
.recruit-section .recruit-images .img-box.img-box-1 {
  top: 0;
  left: 0;
  width: 48%;
  height: 420px;
  z-index: 2;
  border-radius: 24px;
}
@media (max-width: 991px) {
  .recruit-section .recruit-images .img-box.img-box-1 {
    height: 360px;
  }
}
@media (max-width: 576px) {
  .recruit-section .recruit-images .img-box.img-box-1 {
    height: 280px;
    border-radius: 16px;
  }
}
.recruit-section .recruit-images .img-box {
  /* 2. 右上 (中・横長) */
}
.recruit-section .recruit-images .img-box.img-box-2 {
  top: 40px;
  right: 0;
  width: 44%;
  height: 200px;
  z-index: 1;
  border-radius: 20px;
}
@media (max-width: 991px) {
  .recruit-section .recruit-images .img-box.img-box-2 {
    top: 30px;
    height: 180px;
  }
}
@media (max-width: 576px) {
  .recruit-section .recruit-images .img-box.img-box-2 {
    top: 20px;
    height: 140px;
    border-radius: 14px;
  }
}
.recruit-section .recruit-images .img-box {
  /* 3. 右下 (中・横長) */
}
.recruit-section .recruit-images .img-box.img-box-3 {
  bottom: 0;
  right: 5%;
  width: 52%;
  height: 200px;
  z-index: 3;
  border-radius: 20px;
}
@media (max-width: 991px) {
  .recruit-section .recruit-images .img-box.img-box-3 {
    bottom: 10px;
    height: 180px;
  }
}
@media (max-width: 576px) {
  .recruit-section .recruit-images .img-box.img-box-3 {
    bottom: 0;
    height: 140px;
    border-radius: 14px;
  }
}
.recruit-section.is-active .recruit-images .img-box {
  opacity: 1;
}
.recruit-section.is-active .recruit-images .img-box.img-box-1 {
  transform: translateY(0);
  transition-delay: 0.1s;
}
.recruit-section.is-active .recruit-images .img-box.img-box-2 {
  transform: translateY(0);
  transition-delay: 0.25s;
}
.recruit-section.is-active .recruit-images .img-box.img-box-3 {
  transform: translateY(0);
  transition-delay: 0.4s;
}
.recruit-section .recruit-content .recruit-headline {
  font-size: 1.9rem;
  font-weight: 700;
  color: #13294b;
  margin-bottom: 24px;
  line-height: 1.8;
}
.recruit-section .recruit-content .recruit-body {
  font-size: 0.975rem;
  color: #222222;
  line-height: 1.9;
}
.recruit-section .recruit-content .recruit-body p {
  margin-bottom: 16px;
}
.recruit-section {
  /* Conditions Table Box (Navy Style) */
}
.recruit-section .conditions-container {
  max-width: 960px;
  margin: 80px auto 0;
  position: relative;
}
.recruit-section .conditions-container .conditions-header {
  display: flex;
  align-items: baseline;
  gap: 32px;
  margin-bottom: -13px;
  position: relative;
  z-index: 2;
  padding-left: 48px;
}
@media (max-width: 991px) {
  .recruit-section .conditions-container .conditions-header {
    margin-bottom: -40px;
    padding-left: 32px;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .recruit-section .conditions-container .conditions-header {
    gap: 16px;
    margin-bottom: -3px;
    padding-left: 0px;
  }
}
.recruit-section .conditions-container .conditions-header .conditions-title-en {
  font-family: "Outfit", sans-serif;
  font-size: 4.8rem;
  font-weight: 800;
  color: #13294b;
  letter-spacing: 0.14em;
  line-height: 1;
}
@media (max-width: 991px) {
  .recruit-section .conditions-container .conditions-header .conditions-title-en {
    font-size: 3.8rem;
  }
}
@media (max-width: 768px) {
  .recruit-section .conditions-container .conditions-header .conditions-title-en {
    font-size: 2.8rem;
  }
}
@media (max-width: 480px) {
  .recruit-section .conditions-container .conditions-header .conditions-title-en {
    font-size: 2rem;
    letter-spacing: 0.08em;
  }
}
.recruit-section .conditions-container .conditions-header .conditions-title-ja {
  font-size: 1.15rem;
  font-weight: 700;
  color: #13294b;
  letter-spacing: 0.15em;
  white-space: nowrap;
  transform: translateY(-10px);
}
@media (max-width: 768px) {
  .recruit-section .conditions-container .conditions-header .conditions-title-ja {
    font-size: 0.95rem;
  }
}
.recruit-section .conditions-container .conditions-box {
  background-color: #13294b;
  color: #ffffff;
  border-radius: 44px;
  padding: 36px 64px 48px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .recruit-section .conditions-container .conditions-box {
    border-radius: 28px;
    padding: 36px 24px 32px;
  }
}
.recruit-section .conditions-container .conditions-box table {
  width: 100%;
  border-collapse: collapse;
}
.recruit-section .conditions-container .conditions-box table tr {
  border-bottom: 1px dotted rgba(255, 255, 255, 0.35);
}
.recruit-section .conditions-container .conditions-box table tr th,
.recruit-section .conditions-container .conditions-box table tr td {
  padding: 22px 12px;
  font-size: 0.95rem;
  color: #ffffff;
}
@media (max-width: 768px) {
  .recruit-section .conditions-container .conditions-box table tr th,
  .recruit-section .conditions-container .conditions-box table tr td {
    padding: 16px 8px;
    font-size: 0.875rem;
  }
}
.recruit-section .conditions-container .conditions-box table tr th {
  width: 150px;
  font-weight: 700;
  vertical-align: top;
  white-space: nowrap;
}
@media (max-width: 576px) {
  .recruit-section .conditions-container .conditions-box table tr th {
    width: 80px;
  }
}
.recruit-section .conditions-container .conditions-box table tr td {
  color: #ffffff;
  line-height: 1.85;
}
.recruit-section .conditions-container .conditions-box .conditions-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 32px;
  text-align: center;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .recruit-section .conditions-container .conditions-box .conditions-note {
    font-size: 0.775rem;
    margin-top: 24px;
  }
}

/* ---------------------------------------------------
   CONTACT SECTION
   --------------------------------------------------- */
.contact-section .contact-lead {
  text-align: center;
  max-width: 720px;
  margin: -30px auto 40px;
  font-size: 0.95rem;
  color: #555555;
}
.contact-section .contact-lead a {
  color: #13294b;
  font-weight: 700;
}
.contact-section .contact-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
@media (max-width: 576px) {
  .contact-section .contact-form-wrap {
    padding: 24px 16px;
  }
}
.contact-section .contact-form-wrap .form-group {
  margin-bottom: 24px;
}
.contact-section .contact-form-wrap .form-group label {
  display: block;
  font-weight: 700;
  color: #13294b;
  font-size: 0.925rem;
  margin-bottom: 8px;
}
.contact-section .contact-form-wrap .form-group label .badge-req {
  background-color: #e53935;
  color: #ffffff;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 2px;
  margin-left: 8px;
  font-weight: 400;
}
.contact-section .contact-form-wrap .form-group .radio-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.contact-section .contact-form-wrap .form-group .radio-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  cursor: pointer;
  font-size: 0.9rem;
  color: #222222;
  margin-bottom: 0;
}
.contact-section .contact-form-wrap .form-group input[type=text],
.contact-section .contact-form-wrap .form-group input[type=email],
.contact-section .contact-form-wrap .form-group input[type=tel],
.contact-section .contact-form-wrap .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fafafa;
  transition: border-color 0.3s ease;
}
.contact-section .contact-form-wrap .form-group input[type=text]:focus,
.contact-section .contact-form-wrap .form-group input[type=email]:focus,
.contact-section .contact-form-wrap .form-group input[type=tel]:focus,
.contact-section .contact-form-wrap .form-group textarea:focus {
  outline: none;
  border-color: #13294b;
  background-color: #ffffff;
}
.contact-section .contact-form-wrap .form-group textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-section .contact-form-wrap .form-submit-wrap {
  text-align: center;
  margin-top: 36px;
}
.contact-section .contact-form-wrap .form-submit-wrap .btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #13294b;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 48px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-section .contact-form-wrap .form-submit-wrap .btn-submit:hover {
  background-color: #1e3e6f;
  transform: translateY(-2px);
}

/* ---------------------------------------------------
   FOOTER
   --------------------------------------------------- */
.site-footer {
  position: relative;
  background-image: linear-gradient(180deg, rgba(8, 20, 42, 0.5) 0%, rgba(10, 25, 49, 0.6) 100%), url("../img/top1.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 48px 0 40px;
}
.site-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .site-footer .footer-inner {
    padding: 0 20px;
  }
}
.site-footer {
  /* 上段: Nav + SNS */
}
.site-footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 991px) {
  .site-footer .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.site-footer .footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  list-style: none !important;
  padding: 0 !important;
  margin: 0;
}
@media (max-width: 768px) {
  .site-footer .footer-nav ul {
    gap: 16px 20px;
  }
}
.site-footer .footer-nav ul li {
  list-style: none !important;
}
.site-footer .footer-nav ul li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.06em;
}
.site-footer .footer-nav ul li a:hover {
  opacity: 0.75;
}
.site-footer .footer-sns {
  display: flex;
  align-items: center;
}
.site-footer .footer-sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.site-footer .footer-sns a:hover {
  opacity: 0.75;
}
.site-footer .footer-sns a img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}
.site-footer {
  /* 区切り線 */
}
.site-footer .footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.25);
  width: 100%;
  margin: 28px 0 36px;
}
@media (max-width: 768px) {
  .site-footer .footer-divider {
    margin: 24px 0 28px;
  }
}
.site-footer {
  /* 下段: 会社情報 + GOTOP */
}
.site-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}
@media (max-width: 768px) {
  .site-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
  }
}
.site-footer .footer-company-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.site-footer .footer-company {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 480px) {
  .site-footer .footer-company {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.site-footer .footer-company .footer-logo-mark {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.site-footer .footer-company .footer-logo-mark img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-footer .footer-company .footer-company-text .footer-logo {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  color: #ffffff;
}
.site-footer .footer-company .footer-company-text .footer-address {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
}
.site-footer .copyright {
  font-family: "Outfit", sans-serif;
  font-size: 0.725rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.08em;
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.site-footer .go-top-wrap {
  margin-bottom: 0;
  align-self: flex-end;
}
.site-footer .go-top-wrap .go-top-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #ffffff;
  font-size: 0.75rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.site-footer .go-top-wrap .go-top-btn img {
  width: 34px;
  height: auto;
  transition: transform 0.3s ease;
}
.site-footer .go-top-wrap .go-top-btn:hover img {
  transform: translateY(-4px);
}/*# sourceMappingURL=ks.css.map */