html {
  scroll-behavior: smooth;
}

body {
  padding-top: 50px;
  /* Space for fixed header on mobile */
}

a{
  text-decoration: none;
}

.container {
  max-width: 90%;
  margin: 0 24px;
}

.spOnly {
  display: block;
}

.pcOnly {
  display: none;
}

@media screen and (min-width: 768px) {
  .spOnly {
    display: none;
  }

  .pcOnly {
    display: block;
  }

  .container {
    max-width: 900px;
    margin: 16px auto;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 2px 25px rgba(0, 0, 0, 0.15);
}

.header_container {
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_logo {
  width: 100px;
}

.header_nav {
  display: none;
  align-items: center;
}

.header_nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header_nav a {
  text-decoration: none;
}

.header_nav_button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #8187a1 0%, #6c7289 100%);
  color: #fff;
  padding: 8px 36px;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 4px 15px rgba(129, 135, 161, 0.3),
    0 2px 5px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header_nav_button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.1) 50%,
      transparent 70%);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.header_nav_button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.5s ease;
}

.header_nav_button:hover {
  background: linear-gradient(135deg, #9298b2 0%, #7f859d 100%);
  box-shadow:
    0 8px 20px rgba(129, 135, 161, 0.4),
    0 4px 10px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 0 20px rgba(129, 135, 161, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.header_nav_button:hover::before {
  opacity: 1;
  animation: shimmer 1.5s ease-in-out;
  animation-iteration-count: infinite;
}

.header_nav_button:hover::after {
  left: 100%;
}

.header_nav_button span {
  margin-right: 16px;
}

.header_nav_button img {
  position: absolute;
  width: 12px;
  right: 20px;
}

@media screen and (min-width: 768px) {
  body {
    padding-top: 100px;
    /* Space for fixed header on desktop */
  }

  .header_container {
    padding: 8px 0;
  }

  .header_logo {
    width: 180px;
  }

  .header_nav {
    display: flex;
  }

  .hamburger_menu {
    display: none;
  }

  .mobile_nav_modal {
    display: none;
  }
}

.recruitFV {
  background: linear-gradient(133deg, rgba(235, 241, 249, 1) 50%, rgba(129, 134, 160, 1) 100%);
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.recruitFV_ttl {
  color: #3b3f72;
  font-weight: 700;
  text-align: center;
}

.recruitFV_en {
  font-size: 24px;
  letter-spacing: 4px;
  font-weight: bold;
  line-height: 1.4;
}

.recruitFV_jp {
  margin-top: 16px;
  font-size: 18px;
}

.recruitFV_button {
  display: none;
  text-decoration: none;
  margin: 0 auto;
  margin-top: 40px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 4px;
  background: linear-gradient(135deg, #8186a0 0%, #6c7289 100%);
  color: #fff;
  border-radius: 50px;
  padding: 20px 32px;
  width: 240px;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 12px 35px rgba(129, 134, 160, 0.4),
    0 6px 15px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
}

.recruitFV_button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.1) 50%,
      transparent 70%);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.recruitFV_button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.5s ease;
}

.recruitFV_button:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, #9298b2 0%, #7f859d 100%);
  box-shadow:
    0 20px 45px rgba(129, 134, 160, 0.5),
    0 10px 20px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 0 40px rgba(129, 134, 160, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

.recruitFV_button:hover::before {
  opacity: 1;
  animation: shimmer 1.5s ease-in-out;
  animation-iteration-count: infinite;
}

.recruitFV_button:hover::after {
  left: 100%;
}

.recruitFV_button:active {
  transform: translateY(-1px) scale(0.98);
  transition: all 0.1s ease;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@media screen and (min-width: 768px) {
  .recruitFV_en {
    font-size: 58px;
    letter-spacing: 6px;
  }

  .recruitFV_jp {
    margin-top: 0;
    font-size: 20px;
  }

  .recruitFV_button {
    display: block;
  }
}

.section {
  padding: 40px 0;
  color: #4d4d4d;
  font-size: 18px;
}

.sectionImages {
  display: none;
  gap: 20px;
  justify-content: center;
}

.sectionImages div {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sectionImages div:nth-child(odd) {
  margin-top: -60px;
  transform: translateY(50px);
}

.sectionImages div:nth-child(even) {
  margin-top: 40px;
  transform: translateY(-50px);
}

.sectionImages.animate div:nth-child(odd) {
  opacity: 1;
  transform: translateY(0px);
}

.sectionImages.animate div:nth-child(even) {
  opacity: 1;
  transform: translateY(0px);
}

.sectionImages.animate div:nth-child(1) {
  transition-delay: 0.1s;
}

.sectionImages.animate div:nth-child(2) {
  transition-delay: 0.3s;
}

.sectionImages.animate div:nth-child(3) {
  transition-delay: 0.5s;
}

.sectionImages.animate div:nth-child(4) {
  transition-delay: 0.7s;
}

.sectionImages div:hover {
  transform: translateY(0px) scale(1.05);
}

@media screen and (min-width: 768px) {
  .sectionImages {
    display: flex;
  }
}

.sectionAbout {
  background: linear-gradient(180deg, #FFF 50%, #dcdcdc 100%);
  text-align: center;
}

.sectionAbout_title {
  margin-top: 40px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 2px;
}

.sectionAbout_text {
  margin-top: 20px;
  font-size: 14px;
}

.sectionAboutSlideshow {}

.sectionAboutPDF {
  margin-top: 40px;
}

.sectionAboutPDF_container {
  position: relative;
  width: 100%;
  height: 220px;
  background: #f8f9fc;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(129, 134, 160, 0.12);
  transition: all 0.3s ease;
  overflow: visible;
}

.sectionAboutPDF_container:hover {
  box-shadow: 0 8px 30px rgba(129, 134, 160, 0.18);
}

/* PDF Loading Spinner */
.pdf-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(129, 134, 160, 0.2);
  border-top: 3px solid #8186a0;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.pdf-loading p {
  color: #8186a0;
  font-size: 14px;
  margin: 0;
}

/* Swiper Slideshow */
.pdf-swiper {
  width: 100%;
  height: 100%;
  display: none;
  overflow: hidden;
  border-radius: 12px;
}

.pdf-swiper.loaded {
  display: block;
}

.pdf-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  overflow: hidden;
}

.pdf-swiper .swiper-slide canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Swiper Navigation - Consolidated */
.pdf-swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Base styles for navigation buttons */
.pdf-swiper-wrapper .swiper-button-next,
.pdf-swiper-wrapper .swiper-button-prev {
  color: #8186a0;
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.pdf-swiper-wrapper .swiper-button-next:hover,
.pdf-swiper-wrapper .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
}

.pdf-swiper-wrapper .swiper-button-next::after,
.pdf-swiper-wrapper .swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}

/* Mobile positioning (inside container) */
.pdf-swiper-wrapper .swiper-button-next {
  right: 10px;
}

.pdf-swiper-wrapper .swiper-button-prev {
  left: 10px;
}

/* Desktop positioning (outside container) */
@media screen and (min-width: 768px) {
  .sectionAboutPDF {
    margin-top: 60px;
  }

  .sectionAboutPDF_container {
    height: 500px;
    border-radius: 20px;
  }

  .pdf-swiper-wrapper .swiper-button-next,
  .pdf-swiper-wrapper .swiper-button-prev {
    width: 50px;
    height: 50px;
  }

  .pdf-swiper-wrapper .swiper-button-next::after,
  .pdf-swiper-wrapper .swiper-button-prev::after {
    font-size: 20px;
  }

  .pdf-swiper-wrapper .swiper-button-next {
    right: -80px;
  }

  .pdf-swiper-wrapper .swiper-button-prev {
    left: -80px;
  }
}

.sectionCoreValues,
.sectionSupport {
  background: linear-gradient(180deg, #dfe8ed 50%, #FFF 100%);
  text-align: center;
}

.sectionCoreValues .sectionTitleShadow,
.sectionSupport .sectionTitleShadow,
.sectionMedia .sectionTitleShadow {
  color: #FFF;
  opacity: 0.7;
}

.sectionCoreValues_title,
.sectionCulture_title {
  margin-top: 24px;
  font-size: 18px;
  color: #8186a0;
}

.sectionCoreValues_container {
  background: #fff;
  padding: 24px 36px;
  max-width: 90%;
  border-radius: 10px;
  margin: 16px auto;
}

.sectionCoreValues_item {
  margin-bottom: 28px;
}

.sectionCoreValues_item:last-child {
  margin-bottom: 0;
}

.sectionCoreValues_item_title,
.sectionCulture_item_title {
  font-size: 16px;
  letter-spacing: 2px;
  color: #8186a0;
}

.sectionCoreValues_item_text {
  margin-top: 12px;
  font-size: 13px;
}

@media screen and (min-width: 768px) {
  .sectionCoreValues_item {
    margin-bottom: 40px;
  }

  .sectionCoreValues_item_title,
  .sectionCulture_item_title {
    font-size: 22px;
    letter-spacing: 4px;
  }

  .sectionCoreValues_item_text {
    margin-top: 20px;
    font-size: 16px;
  }
}

.sectionCulture {
  text-align: center;
}

.sectionCulture_container {
  max-width: 90%;
  margin: 0 auto;
}

.sectionCulture_item {
  background: linear-gradient(135deg, #FFF 0%, #F3F3F7 40%);
  padding: 24px 24px;
  border-radius: 10px;
  margin: 16px auto;
}

.sectionCulture_item_text {
  margin-top: 12px;
  font-size: 13px;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .sectionCulture_item {
    background: linear-gradient(135deg, #FFF 0%, #F3F3F7 100%);
    padding: 24px 8px;
  }

  .sectionCulture_item_text {
    margin-top: 20px;
    font-size: 16px;
  }
}

.sectionMessage {
  background: #f2f3f5;
  text-align: center;
}

.sectionMessage_container {
  max-width: 90%;
  margin: 0 auto;
  margin-top: 40px;
}

.sectionMessage_item {
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
  background: #ebebed;
  display: block;
  border-radius: 10px;
  margin: 0 auto;
  margin-top: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.sectionMessage_item_header {
  position: relative;
  display: block;
  align-items: center;
  padding: 20px 32px;
  gap: 12px;
  cursor: pointer;
}

.sectionMessage_item_image {
  width: 100%;
  height: auto;
  object-fit: cover;
  background: #d5e3e8;
}

.sectionMessage_item_content {
  margin-top: 20px;
  text-align: center;
}

.sectionMessage_item_title {
  font-size: 14px;
  letter-spacing: 2px;
  color: #8186a0;
}

.sectionMessage_item_name {
  margin-top: 8px;
  font-size: 16px;
}

.sectionMessage_item_position {
  font-size: 10px;
}

.sectionMessage_arrow {
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 15px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.sectionMessage_item.expanded .sectionMessage_arrow {
  transform: rotate(-90deg);
}

.sectionMessage_item_expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.sectionMessage_item.expanded .sectionMessage_item_expanded {
  max-height: 1000px;
  padding: 0 20px 20px;
}

.sectionMessage_item_expanded_content {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
  font-size: 11px;
  text-align: left;
}

.sectionMessage_item.expanded .sectionMessage_item_expanded_content {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (min-width: 768px) {
  .sectionMessage_item_header {
    display: flex;
    padding: 12px;
    margin-top: 0;
  }

  .sectionMessage_item_image {
    width: 100px;
  }

  .sectionMessage_item_content {
    margin-top: 0;
    text-align: left;
  }

  .sectionMessage_item_title {
    font-size: 18px;
  }

  .sectionMessage_item.expanded .sectionMessage_item_expanded {
    padding: 20px
  }

  .sectionMessage_item_expanded_content {
    padding: 0 32px;
    font-size: 14px;
  }
}

.sectionWorkStyle {
  text-align: center;
}

.sectionWorkStyle_image {
  margin-top: 40px;
}

.sectionWorkStyle_title {
  margin-top: 40px;
  letter-spacing: 2px;
  font-size: 13px;
  color: #8186a0;
}

.sectionWorkStyle_container {
  max-width: 90%;
  margin: 40px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sectionWorkStyle_item {}

.sectionWorkStyle_item_title {
  font-size: 14px;
  letter-spacing: 2px;
  color: #8186a0;
  background: #ecedf1;
  font-weight: bold;
  padding: 4px 0;
}

.sectionWorkStyle_item_text {
  text-align: left;
  font-size: 10px;
  padding: 8px;
}

.sectionWorkStyle_item_details {
  text-align: left;
  font-size: 8px;
  padding: 0 8px;
}

@media screen and (min-width: 768px) {
  .sectionWorkStyle_title {
    margin-top: 40px;
    letter-spacing: 4px;
    font-size: 24px;
  }

  .sectionWorkStyle_item_title {
    font-size: 18px;
    padding: 6px 0;
  }

  .sectionWorkStyle_item_text {
    font-size: 14px;
    padding: 8px 16px;
  }

  .sectionWorkStyle_item_details {
    font-size: 10px;
    padding: 0 16px;
  }
}

.sectionSupport_container {
  background: #fff;
  padding: 24px;
  max-width: 90%;
  margin: 16px auto;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.sectionSupport_title {
  margin-top: 24px;
  font-size: 14px;
  color: #8186a0;
}

.sectionSupport_container_header {
  font-size: 20px;
  letter-spacing: 4px;
  color: #8186a0;
}

.sectionSupport_container_item_container {
  display: block;
  justify-content: center;
  gap: 24px;
}

.sectionSupport_item {
  margin-top: 24px;
  background: linear-gradient(210deg, #f3f7fa 20%, #dfe8ed 100%);
  width: auto;
  border-radius: 10px;
  padding: 12px 24px;
}

.sectionSupport_item_title {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #8186a0;
}

.sectionSupport_item_text {
  margin-top: 12px;
  font-size: 10px;
  color: #8186a0;
}

@media screen and (min-width: 768px) {
  .sectionSupport_title {
    margin-top: 60px;
    font-size: 24px;
    color: #8186a0;
  }

  .sectionSupport_container_header {
    font-size: 24px;
  }

  .sectionSupport_container_item_container {
    display: flex;
  }

  .sectionSupport_item {
    margin-top: 0;
    width: calc((100% - 48px) / 3);
  }
}

.sectionRecruitment {
  text-align: center;
  background-color: #f2f3f5;
}

.sectionRecruitment_container {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: left;
}

.sectionRecruitment_left_title {
  text-align: center;
  font-size: 24px;
  letter-spacing: 4px;
  color: #8186a0;
}

.sectionRecruitment_left_text {
  margin-top: 24px;
  font-size: 14px;
}

.sectionRecruitment_right_box {
  position: relative;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

.sectionRecruitment_right_box_line {
  position: absolute;
  top: 54px;
  left: 47px;
  width: 1px;
  height: calc(100% - 100px);
  background-color: #a5abc6;
}

.sectionRecruitment_right_box_item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sectionRecruitment_right_box_item_container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 14px;
}

.sectionRecruitment_right_box_item .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.sectionRecruitment_right_box_note {
  font-size: 10px;
  color: black;
  text-align: center;
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .sectionRecruitment_container {
    grid-template-columns: 1fr 1fr;
    margin-top: 60px;
  }

  .sectionRecruitment_left_title {
    text-align: left;
  }

  .sectionRecruitment_left_text {
    font-size: 16px;
  }

  .sectionRecruitment_right_box_item_container {
    font-size: 16px;
    gap: 36px;
  }

  .sectionRecruitment_right_box_note {
    font-size: 12px;
  }
}

.sectionDescription {
  text-align: center;
}

.sectionDescription_container {
  margin-top: 40px;
}

.sectionDescription_title_container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

.sectionDescription_title {
  color: #8186a0;
  font-size: 16px;
  text-align: left;
  font-weight: 600;
}

.sectionDescription_title_note {
  background: #1b1564;
  color: #fff;
  padding: 6px 10px;
  font-size: 10px;
  letter-spacing: 0px;
  text-align: center;
  border-radius: 18px;
}

.sectionDescription_item_container {
  margin-bottom: 40px;
}

.sectionDescription_item {
  position: relative;
  background: #f2f3f5;
  margin-top: 16px;
  text-align: left;
  color: #8186a0;
  padding: 12px 20px;
  font-size: 14px;
  border-radius: 5px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  overflow: hidden;
  border: 1px solid transparent;
  box-shadow: 0 2px 8px rgba(129, 134, 160, 0.08);
}

.sectionDescription_item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(129, 134, 160, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.sectionDescription_item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(129, 134, 160, 0.05) 0%,
    rgba(235, 241, 249, 0.8) 50%,
    rgba(129, 134, 160, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.sectionDescription_item:hover {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
  color: #5c6185;
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(129, 134, 160, 0.2);
  box-shadow: 
    0 8px 25px rgba(129, 134, 160, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 2px 4px rgba(129, 134, 160, 0.1);
}

.sectionDescription_item:hover::before {
  left: 100%;
}

.sectionDescription_item:hover::after {
  opacity: 1;
}

.sectionDescription_item:hover .arrow_container {
  transform: translateY(-50%) translateX(4px) scale(1.1);
  filter: brightness(1.2) saturate(1.3);
}

.sectionDescription_item:active {
  transform: translateY(-1px) scale(1.01);
  transition: all 0.15s ease;
}

.sectionDescription_item > * {
  position: relative;
  z-index: 2;
}

.arrow_container {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 24px;
  transform: translateY(-50%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}

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

@media screen and (min-width: 768px) {
  .sectionDescription_container {
    margin-top: 60px;
  }

  .sectionDescription_title_container {
    gap: 12px;
  }

  .sectionDescription_title {
    text-align: left;
    font-size: 24px;
    letter-spacing: 3px;
  }

  .sectionDescription_item {
    padding: 16px 32px;
    font-size: 16px;
  }

  .arrow_container {
    width: 28px
  }

  .sectionDescription_title_note {
    padding: 6px 18px;
    font-size: 17px;
    letter-spacing: 1.5px;
  }
}

.sectionMedia {
  text-align: center;
  background: linear-gradient(180deg, #dcdcdc 0%, #FFF 50%);
}

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

.sectionMedia_item {
  background: #e6e7ec;
  padding: 16px 16px 24px;
  border-radius: 10px;
}

.sectionMedia_item_image {
  background: #fff;
  border-radius: 10px;
  height: 160px;
}

.sectionMedia_item_title {
  margin-top: 16px;
  font-size: 20px;
  letter-spacing: 4px;
  color: #8186a0;
}

.sectionMedia_item_text {
  margin-top: 16px;
  font-size: 13px;
  color: #8186a0;
}

.sectionMedia_button {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 16px;
  letter-spacing: 4px;
  font-weight: bold;
  color: #8186a0;
}

.sectionMedia_button img {
  width: 50px
}

@media screen and (min-width: 768px) {
  .sectionMedia_container {
    margin-top: 60px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .sectionMedia_item_title {
    font-size: 20px;
  }

  .sectionMedia_item_text {
    font-size: 12px;
  }
}

.sectionCTA {
  text-align: center;
  background: #8187a1;
  padding: 40px 0;
}

.sectionCTA_container {
  max-width: 90%;
  margin: 60px auto;
}

.sectionCTA_title {
  font-size: 22px;
  letter-spacing: 4px;
  color: #fff;
}

.sectionCTA_text {
  margin-top: 36px;
  letter-spacing: 2px;
  font-size: 16px;
  color: #fff;
}

.sectionCTA_button {
  margin-top: 60px;
}

.sectionCTA_button a {
  background: #8187a1;
  color: white;
  font-size: 20px;
  letter-spacing: 2px;
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 8px 8px 8px #585c72, -8px -8px 8px #c8cadd;
  transition: all 0.2s ease-in-out;
}

.sectionCTA_button a:hover {
  background: #878da6;
  transform: scale(1.05);
  box-shadow:
    4px 4px 8px #585c72,
    -4px -4px 8px #c8cadd;
}

@media screen and (min-width: 768px) {
  .sectionCTA_title {
    font-size: 38px;
    letter-spacing: 6px;
  }

  .sectionCTA_text {
    font-size: 22px;
    letter-spacing: 6px;
  }

  .sectionCTA_button a {
    font-size: 22px;
    letter-spacing: 4px;
    padding: 24px 60px;
  }
}

.footer {
  text-align: center;
  padding: 32px 0;
}

.footer_container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer_logo img {
  width: 220px;
}

.copyright {
  text-align: center;
  font-size: 12px;
  letter-spacing: 4px;
  padding: 20px 0;
}

.sectionTitle {
  position: relative;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sectionTitle.animate {
  opacity: 1;
}

.sectionTitleShadow {
  position: relative;
  z-index: 0;
  color: #dddfe3;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 8px;
  opacity: 0.4;
  transform: translateX(-20px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.sectionTitle.animate .sectionTitleShadow {
  transform: translateX(0);
  opacity: 0.4;
}

.sectionTitleText {
  position: relative;
  z-index: 1;
  color: #3b3f72;
  font-size: 18px;
  margin-top: -16px;
  letter-spacing: 2px;
  transform: translateY(12px);
  opacity: 0;
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
}

.sectionTitle.animate .sectionTitleText {
  transform: translateY(-4px);
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .footer {
    padding: 60px 0;
  }

  .recruitFV {
    height: 700px;
  }

  .recruitFV_jp {
    margin-top: 40px;
    font-size: 22px;
    letter-spacing: 4px;
  }

  .section {
    padding: 80px 0;
  }

  .sectionTitleShadow {
    font-size: 42px;
    letter-spacing: 6px;
  }

  .sectionTitleText {
    font-size: 28px;
    margin-top: -28px;
  }

  .sectionTitle.animate .sectionTitleText {
    transform: translateY(-8px);
  }

  .sectionAbout_title {
    font-size: 34px;
    letter-spacing: 6px;
  }

  .sectionAbout_text {
    margin-top: 40px;
    font-size: 16px;
  }

  .sectionAboutSlideshow {
    max-width: 800px;
    margin: 0 auto;
  }

  .sectionCoreValues_title,
  .sectionCulture_title {
    margin-top: 60px;
    font-size: 24px;
    color: #8186a0;
  }

  .sectionCoreValues_container {
    padding: 60px 40px;
    max-width: 700px;
    border-radius: 20px;
    margin: 24px auto;
  }

  .sectionCulture_container {
    max-width: 700px;
    margin: 0 auto;
  }

  .sectionCulture_item {
    padding: 60px 40px;
    border-radius: 20px;
    margin: 24px auto;
  }

  .sectionMessage_container {
    max-width: 700px;
    margin: 0 auto;
    margin-top: 60px;
  }

  .sectionMessage_item {
    flex-direction: row;
    padding: 24px 20px;
    gap: 16px;
    margin-top: 24px;
  }

  .sectionMessage_item_image {
    width: 170px;
    height: auto;
    object-fit: cover;
  }

  .sectionMessage_item_content {}

  .sectionMessage_item_title {
    margin-top: 0;
    font-size: 22px;
  }

  .sectionMessage_item_name {
    font-size: 14px;
  }

  .sectionMessage_item_position {
    font-size: 10px;
  }

  .sectionWorkStyle_title {
    margin-top: 60px;
  }

  .sectionWorkStyle_container {
    max-width: 700px;
    margin: 60px auto;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }

  .sectionSupport_container {
    max-width: 700px;
    padding: 48px;
    margin: 32px auto;
  }

  .sectionSupport_container_item_container {
    padding: 48px 0;
  }
}

.black1 {
  background-color: #a5abc6;
}

.black2 {
  background-color: #9ba1bc;
}

.black3 {
  background-color: #9298b2;
}

.black4 {
  background-color: #888ea8;
}

.black5 {
  background-color: #7f859d;
}

.black6 {
  background-color: #757b93;
}

.black7 {
  background-color: #6c7289;
}

.black8 {
  background-color: #62687f;
}

.hamburger_menu {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 20px;
  justify-content: space-between;
  z-index: 101;
  position: relative;
}

.hamburger_menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #3b3f72;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger_menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger_menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger_menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Modal */
.mobile_nav_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #8187a1 0%, #3b3f72 100%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  visibility: hidden;
}

.mobile_nav_modal.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.mobile_nav_close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile_nav_close span {
  position: absolute;
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile_nav_close span:nth-child(1) {
  transform: rotate(45deg);
}

.mobile_nav_close span:nth-child(2) {
  transform: rotate(-45deg);
}

.mobile_nav_content {
  text-align: center;
}

.mobile_nav_content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mobile_nav_content li {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.mobile_nav_modal.active .mobile_nav_content li {
  opacity: 1;
  transform: translateY(0);
}

.mobile_nav_modal.active .mobile_nav_content li:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile_nav_modal.active .mobile_nav_content li:nth-child(2) {
  transition-delay: 0.2s;
}

.mobile_nav_modal.active .mobile_nav_content li:nth-child(3) {
  transition-delay: 0.3s;
}

.mobile_nav_modal.active .mobile_nav_content li:nth-child(4) {
  transition-delay: 0.4s;
}

.mobile_nav_content a {
  text-decoration: none;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.mobile_nav_content a:hover {
  color: #dcdcdc;
}

.mobile_nav_button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  margin-top: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.mobile_nav_button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.mobile_nav_button span {
  margin-right: 8px;
}

.mobile_nav_button img {
  width: 12px;
}

@media screen and (min-width: 768px) {
  .hamburger_menu {
    display: none;
  }
}

/* Move Up Animation */
.animateMoveUp {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
}

.animateMoveUp.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered animation for containers with multiple animateMoveUp elements */
.animateMoveUp:nth-child(1) {
  transition-delay: 0s;
}

.animateMoveUp:nth-child(2) {
  transition-delay: 0.1s;
}

.animateMoveUp:nth-child(3) {
  transition-delay: 0.2s;
}

.animateMoveUp:nth-child(4) {
  transition-delay: 0.3s;
}

.animateMoveUp:nth-child(5) {
  transition-delay: 0.4s;
}

.animateMoveUp:nth-child(6) {
  transition-delay: 0.5s;
}

/* Enhanced animation for special elements */
.sectionCoreValues_container.animateMoveUp {
  transform: translateY(30px) scale(0.98);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sectionCoreValues_container.animateMoveUp.animate {
  transform: translateY(0) scale(1);
}

.sectionMessage_item.animateMoveUp {
  transform: translateY(25px) scale(0.96);
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sectionMessage_item.animateMoveUp.animate {
  transform: translateY(0) scale(1);
}

.sectionSupport_container.animateMoveUp {
  transform: translateY(35px) scale(0.97);
  transition: all 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sectionSupport_container.animateMoveUp.animate {
  transform: translateY(0) scale(1);
}