/* ELECS Complete Corporate Website CSS */
/* Design System: ELECS Color Palette & Typography Rules from Tailwind V4 */
body,
html {
  overflow:auto;
}
body.modal-on,
html.modal-on {
  overflow:hidden;
}

:root {
  /* Color Palette - From globals.css */
  --main-gradient-start: #198ece;
  --main-gradient-end: #003E8C;
  --base-color: #ffffff;
  --text-color: #202121;
  --sub-text-color: #717272;
  --white: #ffffff;
  --light-gray: #AAAAAA;

  /* Typography Scale - Winfield Japan Rules */
  --font-h1: 48px;
  --font-h2: 24px;
  --font-h3: 16px;
  --font-body: 14px;
  --font-caption: 12px;

  /* Font Families */
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  --font-body-jp: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  --font-mixed: 'Montserrat', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;

  /* Layout */
  --border-radius: 8px;
  --border-radius-full: 9999px;
  --container-max-width: 1400px;
  --section-padding: 80px 0;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 14px;
}

body {
  font-family: var(--font-mixed);
  font-size: var(--font-body);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--base-color);
}

/* Typography - Following globals.css rules */
h1 {
  font-family: var(--font-mixed);
  font-size: var(--font-h1);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-color);
  letter-spacing: -0.02em;
}

h2 {
  font-family: var(--font-mixed);
  font-size: var(--font-h2);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-color);
  letter-spacing: -0.01em;
  position: relative;
  /*padding-left: 20px;*/
}

h2::before {
  /*content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 24px;
  background: linear-gradient(135deg, var(--main-gradient-start) 0%, var(--main-gradient-end) 100%);
  border-radius: 2px;*/
}

h3 {
  font-family: var(--font-mixed);
  font-size: var(--font-h3);
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-color);
}

h4 {
  font-family: var(--font-mixed);
  font-size: var(--font-body);
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-color);
}

p {
  font-family: var(--font-mixed);
  font-size: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--sub-text-color);
}

button {
  font-family: var(--font-mixed);
  font-size: var(--font-body);
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  border-radius: var(--border-radius-full);
}

/* Utility Classes */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding);
}

.section-white {
  background-color: var(--white);
}

.section-gray {
  background-color: var(--base-color);
}
  
.section-main-start {
background: linear-gradient(92.37deg, #198ECE 0.22%, #2661A3 126.06%);
}
.section-main-end {
    background-color: var(--main-gradient-end);
}
.section-clients {
  
}
.section-clients .section-label,
.section-clients h2{
  color: var(--white);  
}
.section-clients h2{
  padding-left: 0px;
  line-height: 1;
}
.section-clients h2.section-title::before {
  content: none;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.fade-in-up.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation */
.nav-container {
  position: fixed;
  top: 24px;
  left: 24px;
  right: 24px;
  z-index: 50;
  transition: all 0.3s ease;
}

.nav-wrapper {
  /*max-width: var(--container-max-width);*/
  max-width: calc( 1400px + ((100vw - 1400px) / 2));
  margin: 0 auto;
  /*margin-right: 0;*/
  border-radius: 10px;
  transition: all 0.3s ease;
}

.nav-container.scrolled .nav-wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(32, 33, 33, 0.08), 0 4px 16px rgba(32, 33, 33, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-content {
  /*display: flex;
  align-items: center;
  justify-content: space-between;*/
  display: flex;
  flex-direction: column;
  padding: 16px 32px;
  transition: all 0.3s ease;
}
.nav-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--main-gradient-start) 0%, var(--main-gradient-end) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  box-shadow: 0 2px 8px rgba(25, 142, 206, 0.3);
}

/* delete
.logo-icon span {
  color: white;
  font-size: 12px;
  font-weight: 500;
}*/

.logo-text {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: white;
  text-shadow: 0 2px 8px rgba(32, 33, 33, 0.4), 0 1px 4px rgba(32, 33, 33, 0.3);
  transition: all 0.3s ease;
  height: 32px;
  width: 190px;
  background-image: url('../images/logo_white.svg');
  background-repeat: no-repeat;
}
.logo-text img {height: 100%;}

.nav-container.scrolled .logo-text {
  color: var(--text-color);
  text-shadow: none;
  background-image: url('../images/logo_gray.svg');
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--main-gradient-end);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: bold;
}

.nav-container.scrolled .nav-link {
  text-shadow: none;
}

.nav-link:hover {
  color: var(--main-gradient-start);
}

.contact-button {
  padding: 10px 32px;
  background: var(--main-gradient-end);
  color: white;
  border-radius: var(--border-radius);
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(25, 142, 206, 0.25);
  transition: all 0.2s ease;
}

.contact-button:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 24px rgba(25, 142, 206, 0.4);
}

.mobile-menu-button {
  display: none;
  width: 24px;
  height: 16px;
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.nav-container.scrolled .mobile-menu-button {
  color: var(--text-color);
}
.mobile-menu-content {display: none;}
@media (max-width: 1024px) {
  
  .nav-container.open .nav-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(32, 33, 33, 0.08), 0 4px 16px rgba(32, 33, 33, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  .nav-container.open .mobile-menu-button{
    color: var(--text-color);
  }
  .nav-container .mobile-menu-button span {
    position: absolute;
    left: 0;
    width: 100%;
    width: 24px;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
  }
  
  .nav-container.scrolled .mobile-menu-button span {
    background-color: var(--text-color); 
  }
  .nav-container .mobile-menu-button, .nav-container .mobile-menu-button span {
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
  }
  .nav-container .mobile-menu-button span:nth-of-type(1) {
    top: 0;
  }
  .nav-container .mobile-menu-button span:nth-of-type(2) {
    top: 7px;
  }
  .nav-container .mobile-menu-button span:nth-of-type(3) {
    bottom: 0;
  }
  .nav-container.open .mobile-menu-button span:nth-of-type(1) {
    -webkit-transform: translateY(7px) rotate(-45deg);
    transform: translateY(7px) rotate(-45deg);
  }
  .nav-container.open .mobile-menu-button span:nth-of-type(2) {
    opacity: 0;
  }
  .nav-container.open .mobile-menu-button span:nth-of-type(3) {
    -webkit-transform: translateY(-7px) rotate(45deg);
    transform: translateY(-7px) rotate(45deg);
  }

  .nav-container.open .logo-text {
    color: var(--text-color);
    text-shadow: none;
    background-image: url('../images/logo_gray.svg');
  }
  .nav-container.open .nav-link {
    text-shadow: none;
  }
  .nav-content {
    /*justify-content: flex-start;
    flex-wrap: wrap;*/
    height: 64px;
    overflow: hidden;
  }
  
  .nav-content.open {
    height: calc(100vh - 48px);
  }
  .nav-links {
    display: none;
  }
  
  .mobile-menu-button {
    display: block;
  }
  .mobile-menu-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    height: calc(100vh - 48px - 64px);
    padding-top: 32px;
    transition: .3s;
    opacity: 0;
  }
  .mobile-menu-content.open {
    opacity: 1;
  }
  
  .mobile-menu-content a,
  .mobile-menu-content button {
    display: block;
    /*height: calc((100vh - 48px - 64px) / 6);*/
    font-size: 24px;
    /*margin-top: 24px;
    margin-bottom: 24px;*/
  }
  
  .mobile-menu-content a.contact-button {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .mobile-menu-content a {
    padding-left: 32px;
    padding-top: 32px;
    padding-bottom: 32px;
    border-top: 1px solid rgba(38, 97, 163, 0.2);
  }
  
  .mobile-menu-content a:first-child {
    border-top: none;
  }
}


/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hero-spacer {
  height: 96px;
}

.hero-main {
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-wrapper {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
}

.hero-text {
  flex: 1;
  max-width: 800px;
}

.hero-title {
  color: white;
  font-size: 56px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 4px 16px rgba(0, 0, 0, 0.3);
  margin-bottom: 32px;
}

.hero-subtitle {
  color: white;
  font-size: 18px;
  line-height: 1.7;
  max-width: 520px;
  opacity: 0.95;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-spacer-side {
  flex: 1;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
}

/* News Bar */
.news-bar {
  background: var(--white);
  padding: 24px 0;
  border-bottom: 1px solid var(--sub-text-color);
}

.news-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-label h2 {
  font-size: 18px;
  line-height: 1.5;
  color: var(--main-gradient-end);
  padding-left: 0;
}

.news-label h2::before {
  display: none;
}

.news-item {
  flex: 1;
  margin: 0 48px;
}

.news-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.news-date {
  font-size: 14px;
  line-height: 1.5;
  color: var(--sub-text-color);
  margin-right: 16px;
  flex-shrink: 0;
}

.news-title {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-color);
  transition: all 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-link:hover .news-title {
  color: var(--main-gradient-start);
}

.news-arrow {
  margin-left: 8px;
  color: var(--sub-text-color);
  transition: all 0.2s ease;
}

.news-link:hover .news-arrow {
  transform: translateX(4px);
}

.view-all-link {
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  font-weight: bold;
  color: var(--main-gradient-end);
  text-decoration: none;
  transition: all 0.2s ease;
}

.view-all-link:hover {
  color: var(--main-gradient-end);
  transform: scale(1.1);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  font-size: var(--font-caption);
  font-weight: 500;
  color: var(--sub-text-color);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 24px;
}

.section-description {
  font-size: var(--font-body);
  line-height: 1.6;
  color: var(--sub-text-color);
  max-width: 600px;
  margin: 0 auto;
}

/* Vision Mission Section */
.vision-mission-content br.sp-on {
  display: none;
}
.vision-mission-section{
  background-image: url('../images/vision_bk.jpg');
  background-size: contain; 
}
.vision-mission-grid {
  /*
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
  */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  align-items: center;
}

.vision-infographic {
  width: 100%;
}

.infographic-container {
  width: 100%;
  aspect-ratio: 4/3;
  min-height: 300px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.infographic-container:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

.infographic-svg {
  width: 100%;
  height: 100%;
  padding: 10px;
}

.vision-mission-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.vision-section, .mission-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vision-section h2,
.mission-section h2{
  color: #2661A3;
  font-weight: 900;
  font-size: 32px;
  line-height: 36px;
}
.vision-section .section-label,
.mission-section .section-label{
  color: rgba(38, 97, 163, 0.8);
  font-family: 'Montserrat';
  font-weight: 600;
  font-size: 20px;
  line-height: 17px;
}

.mission-description {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;

  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 180%;

}

.more-button-container {
  display: flex;
  justify-content: center;
  padding-top: 24px;
}

.more-button {
  display: flex;
  align-items: center;
  /*gap: 8px;
  padding: 12px 32px;
  background-color: var(--text-color);
  color: var(--white);
  border-radius: var(--border-radius);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  min-width: 100px;*/

/* Read More */


font-family: 'Montserrat';
font-style: normal;
font-weight: 700;
font-size: 20px;
line-height: 150%;
/* ボックスの高さと同一、または30px */
display: flex;
align-items: center;

color: #2661A3;
background: none;

}

.more-button:hover {
  transform: scale(1.05);
}
.more-button::after{
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background-image: url('../images/arrow_blue.svg');
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  margin-left: 24px;
  transform-origin: center left;
  transition: all 0.5s ease;
}
.more-button:hover::after {
  transform: scale(1.1) translateX(40%);
}

.button-arrow {
  transition: all 0.3s ease;
}

.more-button:hover .button-arrow {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Services Section */
/*スクロールアニメ -- */
.services-section.sc-anime {
  height: 4000px;
  margin-bottom: 50vh;
  overflow-y: hidden;
  position: relative;
  
}

.sc-anime .service-slide{
  display: none;
  position: absolute;
  transition: opacity 0.5s ease-out, display 0.5s ease-out allow-discrete;
 /* transition-duration: .5s;
  transition-behavior: allow-discrete;*/
  opacity: 0;
  top: 0;
  position: fixed;
  background-color: black;
  z-index: 3;
}

.sc-anime.on_scroll .service-slide {
  display: block;
  position: fixed;
  opacity: 1;
  @starting-style {
   opacity: 0;
  }
}
.sc-anime.end_scroll .service-slide{
  display: none;
  opacity: 0;
  bottom: 0;
}
.service-background ul,
.service-content ul{
  display: flex; 
  flex-direction: column;
  width: calc(100% * 5);
  position: absolute;
  transition-duration: .5s;
  left: 0;
  top: 0;
}
.service-content ul{
  transition-duration: .65s;
}
.service-background li{
  width: 100vw;
  height: 100vh;
  background-blend-mode: overlay;
  background-repeat: no-repeat;
  background-size: auto 100vh;
  /* background-size: cover; */
  background-position: center;
  position: absolute;
  top: 0;
  overflow: hidden;
  transition-duration: .5s;
  transform-origin:top center; 
}
.service-content li{
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.service-background li:nth-child(1){background-image: url('../images/services_01.jpg');z-index: 5;}
.service-background li:nth-child(2){background-image: url('../images/services_02.jpg');z-index: 4;}
.service-background li:nth-child(3){background-image: url('../images/services_03.jpg');z-index: 3;}
.service-background li:nth-child(4){background-image: url('../images/services_04.jpg');z-index: 2;}
.service-background li:nth-child(5){background-image: url('../images/services_05.jpg');z-index: 1;}

/*.slide-num--2 .service-background ul,.slide-num--2 .service-content ul{left: -100%;}
.slide-num--3 .service-background ul,.slide-num--3 .service-content ul{left: -200%;}
.slide-num--4 .service-background ul,.slide-num--4 .service-content ul{left: -300%;}
.slide-num--5 .service-background ul,.slide-num--5 .service-content ul{left: -400%;}
.end_scroll .service-background ul,.end_scroll .service-content ul{left: -400%;}*/
.slide-num--2 .service-content ul{top: -100%;}
.slide-num--3 .service-content ul{top: -200%;}
.slide-num--4 .service-content ul{top: -300%;}
.slide-num--5 .service-content ul{top: -400%;}
.end_scroll .service-content ul{top: -400%;}

.slide-num--2 .service-background li:nth-child(1),
.slide-num--3 .service-background li:nth-child(1),
.slide-num--4 .service-background li:nth-child(1),
.slide-num--5 .service-background li:nth-child(1){height: 0vh;}

.slide-num--3 .service-background li:nth-child(2),
.slide-num--4 .service-background li:nth-child(2),
.slide-num--5 .service-background li:nth-child(2){height: 0vh;}

.slide-num--4 .service-background li:nth-child(3) {height: 0vh;}
.slide-num--5 .service-background li:nth-child(3) {height: 0vh;}

.slide-num--5 .service-background li:nth-child(4) {height: 0vh;}

.end_scroll .service-background li:nth-child(1),
.end_scroll .service-background li:nth-child(2),
.end_scroll .service-background li:nth-child(3),
.end_scroll .service-background li:nth-child(4) {height: 0vh;}
/*-----*/
.services-section {
  background-color: var(--white);
}

.service-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.service-background {
  position: absolute;
  inset: 0;
}

.service-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*opacity: 0.15;*/
}

.service-overlay {
  position: absolute;
  inset: 0;
  z-index: 6;
}
.overlay-1 {background: linear-gradient(90.1deg, rgba(0, 62, 140, 0.5) 0.82%, rgba(0, 0, 0, 0) 90.58%);}
.overlay-2 {background: linear-gradient(90.1deg, #003E8C 0.82%, rgba(0, 0, 0, 0) 90.58%); mix-blend-mode: overlay;}

.service-header {
  position: absolute;
  top: 17vh;
  z-index: 10;
  width: 100%;
  /*height: 100vh;*/
}

.service-category {
  max-width: 1400px;
  padding: 0 24px;
  font-size: 12px;
  letter-spacing: -0.1em;
  line-height: 1.5;
  color: white;
  margin: 0 auto;
  margin-bottom: 8px;

font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 24px;
}

.service-main-title {
  max-width: 1400px;
  padding: 0 24px;
  margin: 0 auto;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--white);
  
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
}

.service-content {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 10;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-text {
  width: 1400px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.service-title {
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--white);

  margin-bottom: 48px;
  font-style: normal;
  font-weight: 900;
  font-size: 48px;
  line-height: 150%;
}

.service-description {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 64px;

  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 180%;

}

.service-description p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--white);
}

.service-cta-button {
  display: flex;
  padding: 32px 40px;
  background-color: #fafafa;
  color: var(--main-gradient-end);
  border-radius: var(--border-radius);
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 16px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.service-cta-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2), 0 4px 16px rgba(0, 0, 0, 0.15);
}

.service-cta-button::after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background-image: url('../images/arrow_blue.svg');
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  margin-left: 48px;
  transform-origin: center left;
  transition: all 0.5s ease;
}
.service-cta-button:hover::after {
  transform: scale(1.1) translateX(40%);
}

.service-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

.indicator-text {
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.indicator-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  margin: 0 auto;
}

/* Service Pagination */
.service-pagination {
  position: fixed;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.service-pagination.visible {
  opacity: 1;
  visibility: visible;
}

.pagination-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: white;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 3px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
}

.pagination-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.1);
}

.pagination-btn.active {
  background: white;
  color: var(--main-gradient-end);
  transform: scale(1.1);
  box-shadow: 0 12px 48px rgba(255, 255, 255, 0.4), 0 6px 20px rgba(255, 255, 255, 0.25);
  border-color: transparent;
}

/* Works Section */
.works-section .container {
  max-width: calc( 1400px + ((100vw - 1400px) / 2));
  margin-right: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 0;
}
.works-section .section-header {
  width: 28%;
  align-self: stretch;
  text-align: left;
  flex-shrink: 0;
  height: 326px;
}
.works-section .section-title {
  text-align: left;
  color: var(--main-gradient-end);
  margin: 0;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 150%;
}
.works-section .section-label{
  text-align: left;
  letter-spacing: 0.5px;
  color: #6A7282;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 40px;
}

.works-card-data {
}
.works-card-data li {
  position: absolute;
  display: none;
  transition: 1s;
  opacity: 0;
}
.works-card-data li.selected {
  display: block;
   opacity: 1;
  @starting-style {
   opacity: 0;
  }
}

.works-card-data .works-card-title {
  color: #202121;
  font-style: normal;
  font-weight: 900;
  font-size: 32px;
  line-height: 150%;
  margin-bottom: 16px;
}
.works-card-data .works-card-label {
  color: #555555;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  margin-bottom: 16px;
}

.works-card-data .works-card-date {
  color: #717272;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 17px;
  margin-bottom: 24px;
}

.works-card-data .read-more {
  color: var(--main-gradient-end);
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  transform-origin: center left;
}
.works-card-data .read-more:hover {
  transform: scale(1.05);
}

.works-card-data .read-more::after{
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background-image: url('../images/arrow_blue.svg');
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  margin-left: 24px;
  transform-origin: center left;
  transition: all 0.5s ease;
}

.works-card-data .read-more:hover::after {
  transform: scale(1.1) translateX(40%);
}

.works-cards{
  overflow: hidden;
  padding: 0px 100px;
  margin-top: -100px;
  margin-bottom: -100px;
  margin-left: -100px;
}
.works-cards-ctr {
  position: relative;
  width: 100%;
  height: 0;
  width: 520px;
  margin-left: 30px;
}
.works-cards-ctr--prev {
  display: block;
  transform: scale(-1, 1);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2), 0px 6px 16px rgba(0, 0, 0, 0.06), 0px 0px 32px rgba(52, 51, 91, 0.06);
  position: absolute;
  background-color: var(--white);
  background-image: url('../images/next_arrow_blue.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 6px 12px;
  width: 80px;
  height: 80px;
  z-index: 2;
  top: 195px;
  left: -60px;
  transition: all 0.5s ease;
  opacity: 1;
  @starting-style {
   opacity: 0;
  }
}
.works-cards-ctr--next {
  display: block;
  position: absolute;
  background-color: var(--white);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2), 0px 6px 16px rgba(0, 0, 0, 0.06), 0px 0px 32px rgba(52, 51, 91, 0.06);
  background-image: url('../images/next_arrow_blue.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 6px 12px;
  width: 80px;
  height: 80px;
  z-index: 2;
  top: 195px;
  /*left: 480px;
  left:560px;*/
  right: -104px;
  transition: all 0.5s ease;
  opacity: 1;
  @starting-style {
   opacity: 0;
  }
}
.works-cards-ctr.first-select .works-cards-ctr--prev {
  display: none;
  opacity: 0;
}
/*.works-cards-ctr.last-select .works-cards-ctr--next {
  display: none;
  opacity: 0;
}*/
.works-grid {
  position: relative;
  /*width: 1400px;*/
  width: calc(( 416px * 9 ) + (116px * 9 ) + 80px);
  overflow: hidden;
  /*padding-left: 50px;*/
  height: 100%;
}
.works-grid::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 15px 15px var(--white);
  z-index: 1;
  pointer-events: none;
}
.works-grid-inner {
  width: 100%;
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  /*gap: 116px;*/
  padding: 100px 0;
  position: relative;
  transition: all 0.3s ease;
  left: 0px;
  left: 80px;
  left: -452px;
}

.work-card {
  width: 416px;
  margin-right: 116px;
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  user-select: none;
}

.work-card.selected {
  transform: scale(1.25);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
  position: inherit;
}

.work-image {
  /* width: 100%; */
  width: 416px;
  height: 270px;
  overflow: hidden;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.work-card:hover .work-image img {
  transform: scale(1.1);
}

.work-content {
  padding: 24px;
}

.work-content h3 {
  margin-bottom: 12px;
}

.work-content p {
  margin-bottom: 16px;
  line-height: 1.6;
}

.work-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.work-tag {
  padding: 4px 12px;
  background: var(--base-color);
  color: var(--sub-text-color);
  font-size: 12px;
  border-radius: var(--border-radius-full);
  font-weight: 500;
}
.works-veiw-all {
  margin-left: 24px;
}
.works-veiw-container {
  width: 120px;
  border-bottom: 1px solid var(--main-gradient-end);
  padding-bottom: 13px;
  height: 40px;
}
.works-veiw-all a.veiw-all {
  position: absolute;
  text-decoration: none;
  color: var(--main-gradient-end);
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  transition: all 0.3s ease;
  z-index: 1;
}

.works-veiw-all a.veiw-all:hover {
  transform: scale(1.1);
}
.works-modal {
  width: 100%;
  height: 100%;
  position: fixed;
  display: none;
  opacity: 0;
  transition: all 0.3s ease;
  top: 0;
  padding: 32px;
  z-index: 100;
}

.works-modal ul {list-style: none;}
.works-modal li {
  width: 100%;
  height: 100vh;
  margin-top: 5vh;
  display: none;
  position: relative;
}
.works-modal li.selected {display: block;}

.works-modal.works-modal-on {
  display: block;
  opacity: 1;
  @starting-style {
   opacity: 0;
  }
}
.works-modal-bk {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:rgba(0,0,0,.5);
}
.works-modal-card {
  position: relative;
  width: 100%; height: 100%; background: var(--white);
  padding: 60px 80px;
  overflow-y: auto;
  height: 90vh;
  background: var(--white);
}
.works-modal-close {
  position: absolute;
  z-index: 2;
  width: 100px;
  height: 100px;
  border-radius: 0;
  border-bottom-left-radius: var(--border-radius);
  right: 0px;
  top: 0px;
  background-image: url('../images/cross_blue.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px 21px;
  background-color: rgba(106, 114, 130, 0.1);
}
.works-modal-container {
  display: flex;
  justify-content: center;
  gap: 80px;
}
.works-modal-data {
  width: 640px;
}
.works-modal-thumbnail {
  width: 640px;
}

.works-modal-thumbnail img {
  width: 100%;
filter: drop-shadow(0px -8px 32px rgba(0, 0, 0, 0.06)) drop-shadow(0px 6px 16px rgba(0, 0, 0, 0.06));
}
.works-modal-data .works-card-title {
  color: var(--main-gradient-end);
  font-style: normal;
  font-weight: 900;
  font-size: 32px;
  line-height: 150%;
  margin-bottom: 16px;
}
.works-modal-data .works-card-label {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  color: #6A7282;
  margin-bottom: 24px;
}
.works-modal-data .works-card-date {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 17px;
  color: #6A7282;
  margin-bottom: 40px;
}
.works-modal-data p {
  color: #2D2F32;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
    margin-bottom: 40px;
}
.works-modal-data table {
  border: none;
  border-top:  1px solid rgba(45, 47, 50, 0.7);
  border-bottom:  1px solid rgba(45, 47, 50, 0.7);
  border-spacing: 0;
  width: 100%;
  margin-bottom: 32px;
}
.works-modal-data table th {
  border: none;
  color: var(--main-gradient-end);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 180%;
  padding: 16px 24px;
  text-align: left;
}
.works-modal-data table td {
  border: none;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  color: #2D2F32;
}
.works-modal-data table th,
.works-modal-data table td {
  border-bottom: 1px solid rgba(113, 114, 114, 0.3);
}
.works-modal-data table tr:last-child th,
.works-modal-data table tr:last-child td {
  border-bottom: none;
}
.works-modal-data a {
display: flex;
align-items: center;
justify-content: center;
border-radius: var(--border-radius);
width: 100%;
height: 91px;
color: var(--white);
background: linear-gradient(99.89deg, #2661A3 54.64%, #003E8C 116.89%);
font-style: normal;
font-weight: 900;
font-size: 18px;
line-height: 150%;
text-align: center;
text-decoration: none;
}
/* Partners Section */
.partners-grid {
  display: grid;
  background: var(--white);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto 48px;
  padding: 0px 24px;
  border-radius: 4px;
}

.partner-card {
  /*background: var(--white);*/
  padding: 24px;
  /*border-radius: var(--border-radius);*/
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  /*box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);*/
  transition: all 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-4px) scale(1.02);
  /*box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);*/
}

.partner-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.partner-card:hover img {
  opacity: 1;
}

.partnership-message {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.partnership-message p {
  font-size: 16px;
  color: var(--text-color);
}

/* Blog Section */
.blog-section .section-header {
  margin-bottom: 52px;
}
.blog-section .section-header .section-label {
  text-align: left;
  letter-spacing: 0.5px;
  color: #6A7282;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
}
.blog-section .section-header .section-title {
  text-align: left;
  color: var(--main-gradient-end);
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 150%;
  margin-bottom: 0;
}
.blog-date-category-label {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.blog-date-category-label .blog-date {
  color: #6A7282;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  margin: 0;
}
.blog-date-category-label .blog-category {
  color: var(--white);
  padding: 8px 16px;
  margin-left: 14px;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  border-radius: 2px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

.blog-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 24px;
}

.blog-date {
  font-size: 12px;
  color: var(--sub-text-color);
  margin-bottom: 8px;
}

.blog-content h3 {
  color: #2D2F32;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 160%;
  margin-bottom: 24px;
}

.blog-content p {
  margin-bottom: 16px;
  line-height: 1.6;
}

.blog-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-tag {
  /*padding: 4px 12px;
  background: var(--base-color);
  color: var(--sub-text-color);
  font-size: 12px;
  border-radius: var(--border-radius-full);
  font-weight: 500;*/
  color: var(--sub-text-color);
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
}

.blog-veiw-all {

}
.blog-veiw-all{
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-bottom: 80px;
}

.blog-veiw-all a.veiw-all{
  display: flex;
  align-items: center;
  color: var(--main-gradient-end);
  text-decoration: none;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
}

.blog-veiw-all a.veiw-all:hover {
  transform: scale(1.05);
}
.blog-veiw-all a.veiw-all::after{
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background-image: url('../images/arrow_blue.svg');
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  margin-left: 24px;
  transform-origin: center left;
  transition: all 0.5s ease;
}

.blog-veiw-all a.veiw-all:hover::after {
  transform: scale(1.1) translateX(40%);
}
/* News Section */
.news-section {
  display: flex;
  justify-content: center;
  padding: 80px 24px;
}
.news-section .container {
  max-width: 1400px;
  width: 1400px;
  /*max-width: initial;*/
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto;
  padding: 0;
  border-bottom: 1px solid rgba(38, 97, 163, 0.2);
}
.news-section .section-title {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 150%;
  color: #2661A3;
  text-align: left;
  margin-bottom: 0;
}

.news-section .section-label {
  text-align: left;
  letter-spacing: 0.5px;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 0;
}
.news-section .news-list {
  max-width: initial;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-grow: 1;
  margin-left: 15%;
  margin-bottom: 32px;
}
.news-section .news-list .news-date-category-label {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.news-section .news-list .news-date-category-label .news-date {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #6A7282;
}
.news-section .news-list .news-date-category-label .news-category {
  padding: 8px 16px;
  font-size: 12px;

  color: var(--white);
  border-radius: 2px;
}
.cat-event{background-color: var(--main-gradient-start);}
.cat-press{background-color: var(--main-gradient-end);}

.cat-event{background-color: #37b23d;}
.cat-notice{background-color: #8224e3;}
.cat-recruit{background-color: #ffa500;}
.cat-service{background-color: #d87fff;}
.cat-prtimes{background-color: #294c7a;}
.news-section .news-item {
  background-color: var(--white);
  box-shadow: 0px 8px 32px rgba(45, 47, 50, 0.06), 0px 4px 16px rgba(45, 47, 50, 0.03), inset 0px 1px 0px rgba(255, 255, 255, 0.9);
  border-right: none;
  padding: 24px;
  margin: 0;
  transition: all 0.3s ease;
  gap: 24px;
  align-items: start;
  border-radius: var(--border-radius);
}
.news-section .news-veiw-all{
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-bottom: 80px;
}

.news-section .news-veiw-all a.veiw-all{
  display: flex;
  align-items: center;
  color: var(--main-gradient-end);
  text-decoration: none;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
}

.news-section .news-veiw-all a.veiw-all:hover {
  transform: scale(1.05);
}
.news-section .news-veiw-all a.veiw-all::after{
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background-image: url('../images/arrow_blue.svg');
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  margin-left: 24px;
  transform-origin: center left;
  transition: all 0.5s ease;
}

.news-section .news-veiw-all a.veiw-all:hover::after {
  transform: scale(1.1) translateX(40%);
}
.news-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-item {
  border-right: var(--text-color) solid 1px;
  padding: 24px;
  transition: all 0.3s ease;
  gap: 24px;
  align-items: start;
}

.news-item:hover {
  transform: translateY(-2px);
}

.news-date {
  font-size: 14px;
  color: var(--sub-text-color);
  font-weight: 500;
}

.news-category {
  font-size: 12px;
  color: var(--main-gradient-start);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-content h3 {
  margin-bottom: 8px;
}

.news-content p {
  line-height: 1.6;
}

/* Parallax Story Section */
.parallax-story-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.parallax-background {
  position: absolute;
  inset: 0;
}

.parallax-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.parallax-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 64px;
}

.parallax-text {
  max-width: 560px;
  color: white;
}

.parallax-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.parallax-title {
  font-size: 40px;
  line-height: 1.4;
  font-weight: 500;
  color: white;
  margin-bottom: 32px;
}

.parallax-description {
  font-size: 20px;
  line-height: 1.6;
  color: white;
}

/* challenge Section */
.challenge-section {
  margin-top: 50vh;
  margin-bottom: 30vh;
}
.challenge-background {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  transition: opacity 0.5s ease-out, display 0.5s ease-out allow-discrete;
  opacity: 0;
  z-index: 1;
}
.challenge-background img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit:cover;
  transition: .5s;
  opacity: 0;
  top: 0;
  left: 0;
}
.challenge-background img:nth-child(1) {
  opacity: 1;
}
.slide-num--2 .challenge-background img:nth-child(2) {
  opacity: 1;
}
.slide-num--3 .challenge-background img:nth-child(3) {
  opacity: 1;
}

.challenge-section.on_scroll .challenge-background {
  display: block;
  opacity: 1;
  @starting-style {
   opacity: 0;
  }
}
.challenge-section.end_scroll .challenge-background {
  display: none;
  opacity: 0;
  bottom: 0;
}
.challenge-slides {
  display: flex;
  flex-direction: column;
  gap: 50vh;
}
.challenge-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;

}
.challenge-content {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 10;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 55%;
}
.challenge-content br.sp-on{
  display: none;
}
.challenge-label {
  color: var(--white);
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 19px;
  margin-bottom: 8px;
  text-shadow:rgba(0, 0, 0, 0.7) 1px 0 10px;
}
.challenge-title {
  color: var(--white);
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  line-height: 56px;
  text-shadow:rgba(0, 0, 0, 0.7) 1px 0 10px;
}
.challenge-sub-title{
  color: var(--white);
  font-style: normal;
  font-weight: 900;
  font-size: 32px;
  line-height: 150%;
  margin-bottom: 32px;
  text-shadow:rgba(0, 0, 0, 0.7) 1px 0 10px;

}
.challenge-description p{
  color: var(--white);
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 180%;
  text-shadow:rgba(0, 0, 0, 0.7) 1px 0 10px;
}

.challenge-text p{
  color: var(--white);
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 180%;
  letter-spacing: -0.02em;
  text-shadow:rgba(0, 0, 0, 0.7) 1px 0 10px;
}

/* Next Step Section */
.next-step-section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.next-step-section br.sp-on{
  display: none;
}
.next-step-section .container {

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.next-step-section .section-title {
  color: #2D2F32;
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  line-height: 56px;
  margin-bottom: 24px;

}
.next-step-section .section-description {
  color: #2D2F32;
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 150%;
  margin-bottom: 24px;
  
}

.next-step-section .our_challenge {
  display: flex;
  align-items: center;
  color: var(--main-gradient-end);
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  line-height: 150%;
  text-decoration: none;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.next-step-section .our_challenge:hover {
  transform: scale(1.1);
}
.next-step-section .our_challenge::after {
  content: '';
  display: block;
  width: 31px;
  height: 31px;
  background-image: url('../images/arrow_blue.svg');
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  top: calc(50% - (32px / 2));
  margin-left: 24px;
  transform-origin: center left;
  transition: all 0.5s ease;
}

.next-step-section .our_challenge:hover::after {
  transform: scale(1.1) translateX(40%);
}

/* Services Recruit Section */
.services-recruit-section {
  background-image: url('../images/service_recruit_bk.jpg');
  background-size: cover;
  background-position: center;
}

.services-recruit-section .container {
  max-width: initial;
  width: 100%;
  margin: 0 auto;
  padding-right: 0;
  padding-top: 100px;
  padding-bottom: 127px;
}
.services-recruit-section .next-step-cards {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 990px;
  margin: 0 auto;
  margin-right: 0;
  background: var(--white);
  border-top-left-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
  box-shadow: 0px 8px 32px rgba(45, 47, 50, 0.06), 0px 4px 16px rgba(45, 47, 50, 0.03), inset 0px 1px 0px rgba(255, 255, 255, 0.9);
  padding: 70px 64px 27px;
  gap: 0;
}

.services-recruit-section .next-step-card {
  padding: 0px;
  padding-right: 74px;
  transition: all 0.3s ease;
  box-shadow: none;
  background: none;
  text-align: left;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  transform-origin: center left;
  margin-bottom: 64px;
}
.services-recruit-section .next-step-card h3 {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 150%;
  color: var(--main-gradient-end);
  margin-bottom: 14px;
}

.services-recruit-section .next-step-card p {
  color: var(--main-gradient-end);

}

.services-recruit-section .border-line {
  width: 100%;
  height: 2px;
  border-bottom:  1px solid rgba(38, 97, 163, 0.2);
  margin-bottom: 64px;
}

.services-recruit-section .next-step-card::after {
  content: '';
  display: block;
  position: absolute;
  width: 32px;
  height: 32px;
  background-image: url('../images/arrow_blue.svg');
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  top: calc(50% - (32px / 2));
  right: 76px;
  transform-origin: center left;
  transition: all 0.5s ease;
}
.services-recruit-section .next-step-card::after {
  transform: scale(1.1) translateX(40%);
}

.services-recruit-section .next-step-card:hover {
  transform: scale(1.02);
  box-shadow: none;
}

/* Footer */
.footer {
  background-color: var(--main-gradient-end);
  color: var(--white);
  box-shadow: inset 0 4px 16px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footer-main {
  padding: 64px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-company {
  grid-column: span 1;
}

.footer-logo {
  display: inline-block;
  width: 190px;
  height: 32px;
  padding: 8px 16px;
  background-image: url(../images/logo_white.svg);
  background-repeat: no-repeat;
  color: white;
  font-size: 18px;
  font-weight: 500;
  border-radius: var(--border-radius);
  margin-bottom: 24px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  /*background: rgba(255, 255, 255, 0.02);*/
  border-radius: var(--border-radius);
  /*box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(255, 255, 255, 0.02);*/
}

.contact-item svg {
  flex-shrink: 0;
}

.contact-item p {
  font-size: 14px;
  line-height: 1.5;
  color: white;
}

.footer-section h4 {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 24px;
  color: white;
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-section a {
  font-size: 14px;
  line-height: 1.5;
  color: var(--white);
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: all 0.2s ease;
  display: block;
}

.footer-section a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.social-links {
  display: flex;
  margin-top: 24px;
  gap: 16px;
}

.social-link {
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 14px;
  transition: all 0.2s ease;
}
.social-link img {
  width: 26px;
  object-fit: contain;
}
.social-link.social-qiita img{min-width: 16px; min-height: 16px;}

.social-link.social-x img{min-width: 16px; min-height: 16px;}

.social-link.social-facebook img{min-width: 16px; min-height: 16px;}

.footer-section a.social-link:hover {
  transform: scale(1.2);
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.copyright {
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.6;
  color: white;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.6;
  color: white;
  text-decoration: none;
  padding: 8px;
  border-radius: var(--border-radius);
  transition: all 0.2s ease;
}

.footer-legal a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.05);
}

.floating {
  cursor: pointer;
  position: fixed;
  right: 30px;
    bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 90px;
  border-radius: var(--border-radius);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  transition: .3s;
  color: var(--main-gradient-end);
  background: #fff;
  z-index: 999;
  box-shadow: 0px 8px 32px rgba(45, 47, 50, 0.06), 0px 4px 16px rgba(45, 47, 50, 0.03), inset 0px 1px 0px rgba(255, 255, 255, 0.9);
}
.floating h2{
  font-size: 20px;
  color: var(--main-gradient-end);
  font-weight: 600;
}
.floating p{
  color: var(--main-gradient-end);
  font-size: 14px;
  line-height: 24px;
}
.floating:hover {
    box-shadow: var(--main-gradient-end);
    transform: scale(1.1);
}
.floating::after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background-image: url('../images/arrow_blue.svg');
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  margin-left: 48px;
  transform-origin: center left;
  transition: all 0.5s ease;
}


/* Responsive Design */
@media (max-width: 1240px) {
  .challenge-content {
    align-items: flex-end;
      margin-left: 0px;
      padding: 0px 24px;
  }
}
@media (max-width: 1024px) {
  :root {
    --container-max-width: 100%;
    --section-padding: 60px 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  
  .service-pagination {
    right: 16px;
  }
  
  .pagination-btn {
    width: 60px;
    height: 60px;
    font-size: 12px;
  }
  /* works section */
  .works-modal-card {
    padding: 32px 32px;
  }
  .works-modal-container {
    flex-direction: column-reverse;
  }
  .works-modal-data {
    width: 100%;
  }
  .works-modal-thumbnail{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 0px 60px;
  }
  .works-modal-close {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 40px 0;
  }
  
  .container {
    /*padding: 0 16px;*/
    padding: 0 24px;
  }
  
  /* Hero Section */
  .hero-title {
    font-size: 32px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .section-header {
    margin-bottom: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  
  /* News Bar */
  .news-content {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  .news-label {
    width: 100%;
  }
  .news-label h2 {
    text-align: left;  
  }
  .news-item {
    margin: 0;
    width: 100%;
    border-right: none;
  }
  .view-all-link {
    width: 100%;
    text-align: right;
  }

  /* Vision Mission Section */
  .vision-mission-section {
    background-image: none;
  }
  .vision-section h2, .mission-section h2 {
    font-size: 24px;
  }
  .mission-description {
    padding-left: 0px;
  }
  /* Service Pagination */
  .service-title {
    font-size: 32px;
  }
  
  .service-description p {
    font-size: 16px;
  }
  
  .service-pagination {
    display: none;
  }
  
  .parallax-content {
    padding: 32px;
    justify-content: center;
    text-align: center;
  }
  
  .parallax-title {
    font-size: 28px;
  }
  
  .parallax-description {
    font-size: 16px;
  }
  
  /* Works Section */
  .works-section .container {
    flex-direction: column;
    padding: 0px;
  }
  .works-section .section-header {
    width: 100%;
    padding: 0px 24px;
  }
  .works-cards {
    overflow: hidden;
    position: relative;
    padding: 0px;
    margin-top: -50px;
    margin-bottom: 0px;
    margin-left: 0px;
    width: 100%;
  }
  .works-grid { 
    width: calc(((80vw * 9)) + (5vw * 9));
    padding-left:0px;
    left: 0px;
  }
  .works-grid::after{
    display: none;
  }
  .works-grid-inner {
    left: 10vw;
    left: -75vw;
  }
  .works-cards-ctr {
    width: 100%;
  }
  .works-cards-ctr--next {
    top: calc(25.9615vw + 100px - 30px);
    width: 60px;
    height: 60px;
    right: 45px;
  }
  .work-card {
    width: 80vw;
    height: 51.923vw;
    margin-right:5vw;
  }
  .work-card.selected {
    transform: scale(1);
  }
  .work-image {
    width: 100%;
    height: 51.923vw;
  }
  /* News Section */
  .news-section .container{
    flex-direction: column;
  }
  .news-section .section-header{ 
    width: 100%;
  }
  .news-section .news-list{
    width: 100%;
    margin-left: 0px;
  }
  .news-content h3 { text-align: left; width: 100%;}
  .news-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  /* challenge Section */
  .challenge-content { 
    margin-left: 0px; padding: 0px 24px;
    align-items: flex-start;
  }
  .challenge-content br.sp-on{
    display: block;
  }
  .challenge-title {
    font-weight: 900;
    font-size: 24px;
    line-height: 180%;
  }
  .challenge-sub-title {font-size: 24px;}
  .challenge-label {margin-bottom: 34px;}
  .challenge-text p {font-size: 16px;}
  #challenge-2 .challenge-text p {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 180%;
  }
  /* Next Step Section */
  .next-step-section br.sp-on{
    display: block;
  }
  .next-step-section .section-title {
    font-size: 28px;
    line-height: 45px;
    margin-bottom: 43px;
  }
  .next-step-section .section-description {
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 44px;
  }
  .next-step-section .our_challenge {
    font-size: 18px;
  }
  /* services recruit Section */
  .services-recruit-section .next-step-cards {
    padding: 75px 33px 27px;
  }
  .services-recruit-section .next-step-card::after {
    right: 45px;
  }
}

@media (max-width: 518px) {
  /* Vision Mission Section */
  .vision-mission-content br.sp-on{
    display: block;
  }
}
@media (max-width: 480px) {
  
  /* Vision Mission Section */
  
  
  .nav-content {
    padding: 12px 16px;
  }
  
  .nav-container {
    top: 16px;
    left: 16px;
    right: 16px;
  }
  
  .hero-spacer {
    height: 80px;
  }
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Print Styles */
@media print {
  .nav-container,
  .service-pagination {
    display: none;
  }
  
  .hero-section,
  .service-slide,
  .challenge-slide {
    height: auto;
    min-height: 50vh;
  }
  
  .section {
    break-inside: avoid;
  }
}