@charset "UTF-8";
/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: inherit;
}

html {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
  font-family: inherit;
}

a {
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

html,
body {
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
  background: #ffffff;
  font-family: "Noto Sans JP", sans-serif !important;
  overflow-x: hidden !important;
}

#main-content {
  position: relative;
  z-index: 2;
  overflow: visible;
}

.container {
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.flex {
  display: flex;
}

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

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

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.mt-xs {
  margin-top: 8px;
}

.mt-sm {
  margin-top: 16px;
}

.mt-md {
  margin-top: 24px;
}

.mt-lg {
  margin-top: 32px;
}

.mt-xl {
  margin-top: 48px;
}

.mb-xs {
  margin-bottom: 8px;
}

.mb-sm {
  margin-bottom: 16px;
}

.mb-md {
  margin-bottom: 24px;
}

.mb-lg {
  margin-bottom: 32px;
}

.mb-xl {
  margin-bottom: 48px;
}

.pt-xs {
  padding-top: 8px;
}

.pt-sm {
  padding-top: 16px;
}

.pt-md {
  padding-top: 24px;
}

.pt-lg {
  padding-top: 32px;
}

.pt-xl {
  padding-top: 48px;
}

.pb-xs {
  padding-bottom: 8px;
}

.pb-sm {
  padding-bottom: 16px;
}

.pb-md {
  padding-bottom: 24px;
}

.pb-lg {
  padding-bottom: 32px;
}

.pb-xl {
  padding-bottom: 48px;
}

.section {
  padding: 64px 0;
  padding: 0 2.7777777778vw;
  margin-top: 11.1111111111vw;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .section {
    padding: 48px 0;
    padding: 48px 24px;
  }
  .section.scroll-effect-active {
    padding: 0 !important;
    transition: padding 1s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }
}
.section--about {
  margin-top: 13.8888888889vw;
}
@media (max-width: 768px) {
  .section--about {
    padding: 48px 24px;
  }
}
.section.scroll-effect-active {
  padding: 0 !important;
  transition: padding 1s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.section-sm {
  padding: 48px 0;
}
@media (max-width: 768px) {
  .section-sm {
    padding: 32px 0;
  }
}

.section-lg {
  padding: 96px 0;
}
@media (max-width: 768px) {
  .section-lg {
    padding: 64px 0;
  }
}

/* Base Styles - General layout and typography */
/* Content structure styles that complement the main layout */
.content {
  padding-top: 40px;
  max-width: 800px;
  margin: auto;
}

/* Image styles */
.hero-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.content-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin: 20px 0;
  border-radius: 8px;
}

.gradient-banner {
  height: 300px;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gradient-banner h2 {
  color: white;
  text-align: center;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(12px, 1.8vw, 26px) clamp(24px, 5.6vw, 80px);
}
.header-logo {
  width: clamp(120px, 16.1vw, 232px);
  height: auto;
}
.header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 768px) {
  .header-logo {
    width: clamp(100px, 37vw, 140px);
    position: relative;
    z-index: 1001;
  }
}
.header .hamburger-menu {
  display: none;
  position: relative;
  flex-direction: column;
  justify-content: space-around;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 7px;
  z-index: 10000;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: auto;
}
.header .hamburger-menu .hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #000000;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
  pointer-events: none;
}
.header .hamburger-menu[aria-expanded=true] {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10001;
}
.header .hamburger-menu[aria-expanded=true] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header .hamburger-menu[aria-expanded=true] .hamburger-line:nth-child(2) {
  opacity: 0;
}
.header .hamburger-menu[aria-expanded=true] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -9px);
}
.header .hamburger-menu:focus {
  outline: none;
}
.header .hamburger-menu:active {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .header .hamburger-menu {
    display: flex;
  }
}
.header-nav {
  display: inline-flex;
  align-items: center;
  gap: clamp(20px, 2.7vw, 32px);
  position: relative;
  flex: 0 0 auto;
}
.header-nav-item {
  display: flex;
  align-items: center;
  gap: clamp(4px, 0.5vw, 8px);
  position: relative;
  transition: opacity 0.3s ease;
}
.header-nav-item:hover {
  opacity: 0.8;
}
.header-nav-item:focus {
  outline: none;
}
@media (max-width: 768px) {
  .header-nav-item {
    flex-direction: row;
    gap: 8px;
    padding: 20px;
    border-radius: 12px;
    transition: background-color 0.3s ease;
  }
}
.header-nav-icon {
  position: relative;
  width: clamp(16px, 2.1vw, 24px);
  height: auto;
  aspect-ratio: 1;
}
.header-nav-icon-company {
  width: clamp(18px, 2.4vw, 28px);
  aspect-ratio: 1.11;
}
.header-nav-icon-recruit {
  width: clamp(20px, 2.7vw, 32px);
  height: auto;
  aspect-ratio: 1.64;
}
.header-nav-icon-news {
  width: clamp(12.3px, 1.6vw, 18px);
  aspect-ratio: 0.77;
}
.header-nav-icon-contact {
  width: clamp(20px, 2.7vw, 32px);
  height: auto;
  aspect-ratio: 1.5;
}
@media (max-width: 768px) {
  .header-nav-icon {
    width: 24px;
    height: 24px;
  }
}
.header-nav-text {
  position: relative;
  width: fit-content;
  color: #000000;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.5;
  white-space: nowrap;
  display: inline-block;
}
@media (max-width: 768px) {
  .header-nav-text {
    font-size: 14px;
    font-weight: 500;
  }
}
@media (max-width: 768px) {
  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: right 0.3s ease;
    z-index: 9999;
    pointer-events: none;
  }
  .header-nav.is-open {
    right: 0;
    pointer-events: auto;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 20px;
  }
}

.main-section {
  padding: 5.5555555556vw 0 0 0;
  position: relative;
  z-index: 1;
}
.main-section-image-container {
  position: relative;
  width: 69%;
  height: auto;
  aspect-ratio: 1.7/1;
  overflow: hidden;
  border-radius: 0 clamp(8px, 4.4vw, 80px) clamp(8px, 4.4vw, 80px) 0; /* フォールバック用の角丸 */
  -webkit-mask: url(#rounded-rect-mask) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask: url(#rounded-rect-mask) no-repeat;
  mask-size: 100% 100%;
}
@media (max-width: 768px) {
  .main-section-image-container {
    width: calc(100% - 24px);
    height: 80vw;
    mask: none;
  }
}
.main-section .slide-image {
  position: absolute;
  top: 0%; /* パララックス用の余白を大幅に拡大 */
  left: 0%; /* パララックス用の余白を大幅に拡大 */
  width: 160%; /* パララックス効果のため大きく拡大 */
  height: 160%; /* パララックス効果のため大きく拡大 */
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  --parallax-y: 0px; /* パララックス効果用のCSS変数 */
  transform: translate3d(0, var(--parallax-y, 0px), 0); /* GPUアクセラレーション有効化 */
  will-change: transform;
}
.main-section .slide-image.active {
  opacity: 1;
}
.main-section .main-section-image {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%; /* パララックス効果のため大きく拡大 */
  height: auto; /* パララックス効果のため大きく拡大 */
  object-fit: cover;
  --parallax-y: 0px; /* パララックス効果用のCSS変数 */
  transform: translate3d(0, var(--parallax-y, 0px), 0); /* GPUアクセラレーション有効化 */
  will-change: transform;
}
@media (max-width: 768px) {
  .main-section .main-section-image {
    width: auto;
    height: 120%;
  }
}
.main-section-content {
  width: 46.6%;
  position: absolute;
  top: 54%;
  right: 1.6%;
  transform: translateY(-50%);
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  align-items: flex-end;
  gap: 32px;
}
@media (max-width: 768px) {
  .main-section-content {
    width: 100%;
    right: 12px;
    gap: 0;
  }
}
.main-section-content-text {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 6.6666666667vw;
  font-weight: bold;
  color: #9BFFF7;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  text-align: right;
  filter: blur(2px);
  z-index: 30;
  opacity: 0.5;
  --parallax-y: 0px; /* パララックス効果用のCSS変数 */
  transform: translateY(var(--parallax-y, 0px)); /* Y軸パララックス効果を適用 */
  will-change: transform;
}
@media (max-width: 768px) {
  .main-section-content-text {
    font-size: 9.2307692308vw;
  }
}
.main-section-title {
  position: relative;
  text-shadow: 2px 2px 8px #ffffff;
  font-weight: bold;
  color: #000000;
  font-size: clamp(28px, 3.33vw, 48px); /* 最小28px, 最大48px, 推奨3.33vw */
  line-height: 1.5; /* 7.5vwの半分 */
  letter-spacing: 0;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .main-section-title {
    font-size: 8.2051282051vw;
    text-align: right;
  }
}
.main-section-vision-label {
  text-align: right;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.8);
  font-size: clamp(14px, 1.25vw, 20px);
  margin-bottom: 8px;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .main-section-vision-label {
    font-size: clamp(12px, 3.6vw, 14px);
  }
}
.main-section-description {
  width: 95%;
  background-color: rgba(0, 11, 75, 0.8); /* #002ABB with 60% opacity */
  padding: 2.5%;
  border-radius: clamp(8px, 0.5vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 2.2222222222vw;
}
@media (max-width: 768px) {
  .main-section-description {
    width: calc(100% - 48px);
    padding: 4.1025641026vw;
    gap: 4.1025641026vw;
  }
}
.main-section-description-text {
  font-size: clamp(14px, 1.25vw, 20px);
  color: white;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .main-section-description-text {
    font-size: clamp(12px, 3.6vw, 14px);
  }
}
.main-section-description-title {
  font-size: clamp(16px, 1.67vw, 24px);
  line-height: 1.8;
  text-align: right;
  color: #ffffff;
}
.main-section-button-container {
  margin: 0;
  padding: 0;
  text-align: right;
}
.main-section-button-text {
  display: inline-flex;
  width: clamp(160px, 16.7vw, 240px);
  height: auto;
  aspect-ratio: 6/1;
  border-radius: 8px;
  border: solid 1px #ffffff;
  color: #ffffff;
  font-size: clamp(12px, 1.11vw, 16px);
  text-align: center;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
}
.main-section-button-text:hover {
  opacity: 0.8;
  transform: translateY(-2px);
  box-shadow: -4px 4px 8px rgba(0, 11, 75, 0.3), 4px -4px 4px rgba(255, 255, 255, 0.9);
}
.main-section-button-text:active {
  transform: translateY(0);
  box-shadow: -1px 1px 2px rgba(0, 11, 75, 0.2), 1px -1px 1px rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
  .main-section-button-text {
    width: 61.5%;
    height: auto;
    aspect-ratio: 6/1;
    font-size: clamp(12px, 4.1vw, 16px);
    border-radius: 0.5%;
  }
}
.main-section-button-text--dark {
  border: solid 1px #000000;
  color: #000000;
}

.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .sp-only {
    display: inline;
  }
}

.section-header, .about-purpose-header, .topics-section .about-purpose-header, .news-section-inner .about-purpose-header, .recruit-container .about-purpose-header, .about-intro-header, .topics-section .about-intro-header, .news-section-inner .about-intro-header, .recruit-container .about-intro-header, .recruit-container .section-header, .recruit-container .strengths-header, .news-section-inner .section-header, .news-section-inner .strengths-header, .topics-section .section-header, .topics-section .strengths-header, .strengths-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
  z-index: 30;
  will-change: transform;
  transition: transform 0.1s ease-out;
}
@media (max-width: 768px) {
  .section-header, .about-purpose-header, .topics-section .about-purpose-header, .news-section-inner .about-purpose-header, .recruit-container .about-purpose-header, .about-intro-header, .topics-section .about-intro-header, .news-section-inner .about-intro-header, .recruit-container .about-intro-header, .recruit-container .section-header, .recruit-container .strengths-header, .news-section-inner .section-header, .news-section-inner .strengths-header, .topics-section .section-header, .topics-section .strengths-header, .strengths-header {
    gap: 2.0512820513vw;
  }
}

.section-subtitle, .about-purpose-subtitle, .about-intro-subtitle, .recruit-container .section-label, .news-section-inner .section-label, .topics-section .section-label, .strengths-subtitle {
  position: relative;
  width: fit-content;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.1111111111vw;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.5;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .section-subtitle, .about-purpose-subtitle, .about-intro-subtitle, .recruit-container .section-label, .news-section-inner .section-label, .topics-section .section-label, .strengths-subtitle {
    font-size: 3.5897435897vw;
  }
}

.section-title, .about-purpose-title, .recruit-container .about-purpose-title, .about-intro-title, .recruit-container .about-intro-title, .recruit-container .section-title, .recruit-container .strengths-title, .news-section-inner .news-title, .topics-section .topics-title, .strengths-title {
  position: relative;
  width: fit-content;
  font-weight: bold;
  color: #000000;
  font-size: 6.1111111111vw;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.5;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .section-title, .about-purpose-title, .recruit-container .about-purpose-title, .about-intro-title, .recruit-container .about-intro-title, .recruit-container .section-title, .recruit-container .strengths-title, .news-section-inner .news-title, .topics-section .topics-title, .strengths-title {
    font-size: 8.2051282051vw;
  }
}

.strengths-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5.5555555556vw;
  padding: 11.1111111111vw 0 0 0;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  z-index: 1;
}
@media (max-width: 768px) {
  .strengths-section {
    gap: 40px;
  }
}

.strengths-header {
  will-change: transform;
  position: relative;
  z-index: 20;
}
.strengths-cards-container {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  width: 280%;
  padding: 0;
  margin: 0;
  animation: scroll-cards 30s linear infinite;
  z-index: 10;
}
@media (max-width: 768px) {
  .strengths-cards-container {
    width: fit-content;
  }
}

.strength-card {
  position: relative;
  flex: 1;
  height: auto; /* 中身に合わせる */
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .strength-card {
    width: 100vw;
    height: auto;
  }
}
.strength-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.strength-card-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  aspect-ratio: 1/0.9;
  align-items: center;
  gap: clamp(8px, 0.7vw, 10px);
  padding: clamp(32px, 9.65vw, 80px) clamp(16px, 4.1vw, 24px) clamp(16px, 4.1vw, 24px);
  margin-top: clamp(32px, 9.65vw, 140px);
  background: rgba(255, 255, 255, 0.8);
  border-radius: clamp(8px, 1.11vw, 24px);
  border: 1px solid #ffffff;
  backdrop-filter: blur(24px);
  box-shadow: 2px 2px 2px rgba(0, 11, 75, 0.1);
}
@media (max-width: 768px) {
  .strength-card-content {
    width: 100%;
    aspect-ratio: 1/0.8;
    padding: clamp(24px, 7.9vw, 40px) clamp(16px, 4.1vw, 24px) clamp(16px, 4.1vw, 24px);
    margin-top: clamp(40px, 11.5vw, 64px);
  }
}
.strength-card-header {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.11vw, 16px);
  width: 100%;
}
@media (max-width: 768px) {
  .strength-card-header {
    gap: 16px;
  }
}
.strength-card-number {
  position: relative;
  width: fit-content;
  font-family: "Roboto Condensed", Helvetica;
  font-weight: 300;
  font-style: italic;
  color: rgba(0, 42, 187, 0.2);
  font-size: 5.5555555556vw;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .strength-card-number {
    font-size: 12.3076923077vw;
  }
}
.strength-card-title {
  position: relative;
  margin-right: -26px;
  opacity: 0.8;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.3888888889vw;
  letter-spacing: 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .strength-card-title {
    font-size: 4.1025641026vw;
  }
}
.strength-card-description {
  opacity: 0.6;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.1111111111vw;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .strength-card-description {
    font-size: 3.5897435897vw;
  }
}
.strength-card-image-container {
  width: 30%;
  height: auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -64%);
  overflow: hidden;
  aspect-ratio: 1/1;
}
@media (max-width: 768px) {
  .strength-card-image-container {
    width: 30%;
    height: auto;
    top: 0;
  }
}
.strength-card-image {
  width: 100%;
  height: 100%;
}

@keyframes scroll-cards {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.services-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.2222222222vw;
  position: relative;
  flex: 0 0 auto;
  padding-top: 5.5555555556vw;
}
.services-title {
  font-weight: normal;
  color: rgba(0, 0, 0, 0.8);
  font-size: 4.4444444444vw;
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .services-title {
    font-size: 7.1794871795vw;
  }
}
.services-cards-container {
  display: flex;
  gap: 2.2222222222vw;
  width: 84%;
}
@media (max-width: 768px) {
  .services-cards-container {
    width: calc(100% - 48px);
    flex-direction: column;
    gap: clamp(16px, 4.1vw, 32px);
  }
}

.service-card {
  display: flex;
  flex: 1;
  aspect-ratio: 1/0.8;
  align-items: center;
  gap: clamp(16px, 4.1vw, 24px);
  padding: clamp(16px, 2.65vw, 32px);
  border-radius: clamp(8px, 1.11vw, 16px);
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid #ffffff;
  transition: opacity 0.6s ease, background 0.6s ease, box-shadow 0.6s ease;
  opacity: 1;
}
@media (max-width: 768px) {
  .service-card {
    width: 100%;
    height: auto;
    padding: clamp(16px, 4.1vw, 24px);
    gap: 0;
    border-radius: clamp(8px, 1.11vw, 16px);
  }
}
.service-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 4.1vw, 24px);
}
.service-card-icon {
  position: relative;
  width: clamp(48px, 6.94vw, 100px);
  height: auto;
  aspect-ratio: 1;
}
@media (max-width: 768px) {
  .service-card-icon {
    width: clamp(24px, 15vw, 80px);
    height: auto;
  }
}
.service-card-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1111111111vw;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}
@media (max-width: 768px) {
  .service-card-text-container {
    gap: 4.1025641026vw;
  }
}
.service-card-title {
  font-weight: bold;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.6666666667vw;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.5;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .service-card-title {
    font-size: clamp(16px, 5.13vw, 20px);
  }
}
.service-card-description {
  font-weight: normal;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1111111111vw;
  letter-spacing: 0;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .service-card-description {
    font-size: clamp(12px, 4.1vw, 16px);
  }
}
.service-card-arrow {
  width: auto;
  height: 1.1111111111vw;
}
@media (max-width: 768px) {
  .service-card-arrow {
    height: clamp(12px, 4.1vw, 16px);
  }
}

/* ホバーされているカードのスタイル */
.services-cards-container:hover .service-card:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.8);
  box-shadow: none;
}

/* ホバーされていないカードの色を落とす効果 */
.services-cards-container:hover .service-card:not(:hover) {
  opacity: 0.5;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: none;
}

/* strengths-headerのパララックス効果 */
.strengths-header {
  --parallax-y: 0px;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

.topics-section {
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #ffffff;
  padding: 5.5555555556vw 9.7222222222vw;
  border-radius: 1.6666666667vw;
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  box-shadow: 2px 2px 8px rgba(0, 11, 75, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  /* Topics Section の more ボタンを中央寄せ */
}
@media (max-width: 768px) {
  .topics-section {
    padding: 10.2564102564vw 6.1538461538vw;
    border-radius: 6.1538461538vw;
  }
}
.topics-section .topics-title {
  font-weight: 700;
  text-align: center;
}
.topics-section .topics-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3.3333333333vw; /* $spacing-xl */
}
@media (max-width: 768px) {
  .topics-section .topics-content {
    gap: 6.1538461538vw;
  }
}
.topics-section .topics-grid {
  display: flex;
  gap: 1.6666666667vw;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .topics-section .topics-grid {
    flex-flow: column;
    gap: 4.1025641026vw;
  }
}
.topics-section .topic-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 23.8888888889vw;
  height: 29.1666666667vw;
  align-items: center;
  gap: 1.1111111111vw;
  padding: 1.6666666667vw;
  border-radius: 1.1111111111vw;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .topics-section .topic-card {
    width: 100%;
    height: auto;
    padding: 4.1025641026vw;
    gap: 4.1025641026vw;
    border-radius: 4.1025641026vw;
  }
}
.topics-section .topic-image {
  width: 20.5555555556vw;
  height: auto;
  aspect-ratio: 1/0.54;
  overflow: hidden;
}
@media (max-width: 768px) {
  .topics-section .topic-image {
    width: 100%;
    height: 54.0540540541%; /* 296:160の比率を維持 */
  }
}
.topics-section .topic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .topics-section .topic-image img {
    width: 100%;
    height: auto;
  }
}
.topics-section .topic-title {
  position: relative;
  width: 100%;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.3888888889vw;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: left;
}
@media (max-width: 768px) {
  .topics-section .topic-title {
    font-size: 4.1025641026vw;
  }
}
.topics-section .topic-description {
  position: relative;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.9722222222vw;
  letter-spacing: 0;
  line-height: 1.8;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .topics-section .topic-description {
    font-size: 3.0769230769vw;
  }
}
.topics-section .scroll-indicator {
  display: none; /* 横スクロールを停止したため非表示 */
}
.topics-section .scroll-arrow {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.7);
  animation: bounce 2s infinite;
}
.topics-section .scroll-arrow.left {
  animation-delay: 0s;
}
.topics-section .scroll-arrow.right {
  animation-delay: 1s;
}
.topics-section .scroll-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.topics-section .main-section-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes fadeInOut {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(-5px);
  }
  60% {
    transform: translateX(5px);
  }
}
.news-content {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 2.2222222222vw;
  z-index: 10;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .news-list {
    gap: 6.1538461538vw;
  }
}

.news-item {
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border-radius: 16px;
  padding: 1.6666666667vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background-color 0.3s ease;
  width: 75vw;
}
@media (max-width: 768px) {
  .news-item {
    width: 100%;
    padding: 4.1025641026vw;
  }
}

.news-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 768px) {
  .news-item-header {
    flex-direction: column;
    gap: 2.0512820513vw;
    align-items: baseline;
  }
}

.news-item-title {
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.3888888889vw;
  font-weight: 700;
  line-height: 1.5;
  flex: 1;
}
@media (max-width: 768px) {
  .news-item-title {
    font-size: 4.1025641026vw;
  }
}

.news-item-date {
  color: rgba(0, 0, 0, 0.4);
  font-size: 0.8333333333vw;
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .news-item-date {
    font-size: 3.0769230769vw;
  }
}

.news-item-content {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.9722222222vw;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .news-item-content {
    font-size: 3.5897435897vw;
  }
}

.news-item {
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

/* News Section の more ボタンを中央寄せ */
.news-section-inner .main-section-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-section {
  position: relative;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid #ffffff;
  z-index: 1 !important;
  padding: clamp(40px, 5.56vw, 80px) clamp(40px, 5.56vw, 80px) clamp(40px, 5.56vw, 80px) clamp(20px, 5.56vw, 40px);
  border-radius: clamp(16px, 1.67vw, 32px);
  transition: background-color 1s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  box-shadow: 2px 2px 8px 0 rgba(0, 11, 75, 0.2);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .about-section {
    padding: clamp(20px, 5.13vw, 40px) clamp(24px, 6.15vw, 48px) clamp(40px, 10.26vw, 80px) clamp(24px, 6.15vw, 48px);
    border-radius: clamp(16px, 4.1vw, 32px);
  }
}
.about-section .section-inner {
  position: relative;
  z-index: 2;
}
.about-section .about-content-wrapper {
  display: flex;
  gap: 2.7777777778vw;
}
@media (max-width: 768px) {
  .about-section .about-content-wrapper {
    flex-direction: column;
    gap: 0px;
  }
}
.about-section .about-image-container {
  position: relative;
  top: -8.3333333333vw;
  width: 33.3333333333vw;
  height: 52.7777777778vw;
  overflow: hidden !important;
  border-radius: 1.1111111111vw;
}
@media (max-width: 768px) {
  .about-section .about-image-container {
    width: 100%;
    height: 50vw;
  }
}
.about-section .about-image-container .about-image {
  width: 160%;
  height: 160%;
  object-fit: cover;
  opacity: 1 !important;
  transition: none; /* パララックス効果のためトランジション無効化 */
  will-change: transform;
  position: relative;
  top: 0;
  left: 0;
  --parallax-y: 0px; /* パララックス効果用のCSS変数 */
  transform: translate3d(0, var(--parallax-y, 0px), 0); /* GPUアクセラレーション有効化 */
}
@media (max-width: 768px) {
  .about-section .about-image-container .about-image {
    width: 160%;
    height: 220%;
    top: 0;
  }
}
.about-section .about-text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.2222222222vw;
  text-align: left;
}
@media (max-width: 768px) {
  .about-section .about-text-content {
    gap: 8.2051282051vw;
  }
}
.about-section .about-text-content .main-section-button-container {
  text-align: left;
}
@media (max-width: 768px) {
  .about-section .about-text-content .main-section-button-container {
    text-align: center;
  }
}
.about-section .about-text-content .more-button-text {
  margin-top: 0;
}
.about-section .section-header, .about-section .about-purpose-header, .about-section .about-intro-header, .about-section .strengths-header {
  align-items: flex-start;
  text-align: left;
}
.about-section .section-label {
  text-align: left;
  white-space: normal;
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.1111111111vw;
}
@media (max-width: 768px) {
  .about-section .section-label {
    font-size: 3.5897435897vw;
  }
}
.about-section .section-title, .about-section .about-purpose-title, .about-section .about-intro-title, .about-section .strengths-title, .about-section .topics-section .topics-title, .topics-section .about-section .topics-title, .about-section .news-section-inner .news-title, .news-section-inner .about-section .news-title {
  text-align: left;
  white-space: normal;
}
.about-section .subsection .section-header, .about-section .subsection .about-purpose-header, .about-section .subsection .about-intro-header, .about-section .subsection .strengths-header {
  align-items: flex-start;
  text-align: left;
}
.about-section .subsection .section-title, .about-section .subsection .about-purpose-title, .about-section .subsection .about-intro-title, .about-section .subsection .strengths-title, .about-section .subsection .topics-section .topics-title, .topics-section .about-section .subsection .topics-title, .about-section .subsection .news-section-inner .news-title, .news-section-inner .about-section .subsection .news-title {
  font-size: 1.6666666667vw;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
  text-align: left;
  white-space: normal;
  transition: color 1s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .about-section .subsection .section-title, .about-section .subsection .about-purpose-title, .about-section .subsection .about-intro-title, .about-section .subsection .strengths-title, .about-section .subsection .topics-section .topics-title, .topics-section .about-section .subsection .topics-title, .about-section .subsection .news-section-inner .news-title, .news-section-inner .about-section .subsection .news-title {
    font-size: 5.1282051282vw;
  }
}
.about-section .subsection-description {
  font-size: 1.1111111111vw;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.6);
  transition: color 1s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .about-section .subsection-description {
    font-size: 3.5897435897vw;
  }
}

.about-content {
  width: 100%;
}

.subsection {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.subsection-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.contact-title {
  color: #000000;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  font-size: 80px;
}
@media (max-width: 768px) {
  .contact-title {
    font-size: 64px;
  }
}
@media (max-width: 576px) {
  .contact-title {
    font-size: 48px;
  }
}

.contact-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-button {
  width: 35.5555555556vw;
  padding: 1.6666666667vw 0;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 1.1111111111vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1111111111vw;
  transition: background-color 0.3s ease;
}
@media (max-width: 768px) {
  .contact-button {
    width: calc(100% - 48px);
    padding: 4.1025641026vw 0;
    border-radius: 4.1025641026vw;
    gap: 4.1025641026vw;
  }
}

.contact-button-icon {
  width: 3.3333333333vw;
  height: 2.2222222222vw;
}
@media (max-width: 768px) {
  .contact-button-icon {
    width: 8.2051282051vw;
    height: 6.1538461538vw;
  }
}

.contact-button-main {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 768px) {
  .contact-button-main {
    font-size: 4.1025641026vw;
  }
}

.recruit-container {
  position: relative;
  margin-top: 11.1111111111vw;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  z-index: 1;
  background-image: url("../images/reqruit/bg.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #000000;
}
.recruit-container .section-label {
  text-shadow: none;
}
.recruit-container .section-title, .recruit-container .about-purpose-title, .recruit-container .about-intro-title, .recruit-container .strengths-title, .recruit-container .topics-section .topics-title, .topics-section .recruit-container .topics-title, .recruit-container .news-section-inner .news-title, .news-section-inner .recruit-container .news-title {
  text-shadow: none;
}
.recruit-container.fixed {
  position: fixed;
  z-index: 1000;
}

.recruit-main-wrapper {
  border-radius: 1rem;
  padding: 8.3333333333vw 5.5555555556vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8.3333333333vw;
  transition: all 0.3s ease;
  backdrop-filter: blur(32px);
}
@media (max-width: 768px) {
  .recruit-main-wrapper {
    backdrop-filter: blur(8px);
  }
}
.recruit-main-wrapper::-webkit-scrollbar {
  width: 8px;
}
.recruit-main-wrapper::-webkit-scrollbar-track {
  background: transparent;
}
.recruit-main-wrapper::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}
.recruit-main-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.recruit-container.fixed .recruit-main-wrapper {
  overflow-y: auto;
}

.recruit-content {
  display: flex;
  flex-direction: column;
  gap: 8.3333333333vw;
  width: 100%;
}
@media (max-width: 768px) {
  .recruit-content {
    gap: 30.7692307692vw;
  }
}

.benefits-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.7777777778vw;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .benefits-section {
    gap: 6.1538461538vw;
  }
}
.benefits-section__title {
  text-align: center;
  font-size: 2.2222222222vw;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .benefits-section__title {
    font-size: 5.1282051282vw;
  }
}
.benefits-section__grid {
  display: flex;
  flex-direction: column;
  gap: 1.1111111111vw;
  width: 100%;
}
.benefits-section__row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.1111111111vw;
}
@media (max-width: 768px) {
  .benefits-section__row {
    flex-direction: column;
    align-items: center;
    gap: 8.2051282051vw;
  }
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 20.8333333333vw;
  height: 20.8333333333vw;
  padding: 3.8888888889vw 2.2222222222vw;
  border: 1px solid #000000;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .benefit-item {
    width: 80vw;
    height: 80vw;
    padding: 6.1538461538vw 4.1025641026vw;
  }
}
.benefit-item__title {
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  font-size: 1.6666666667vw;
  height: 5vw;
  color: #002ABB;
}
@media (max-width: 768px) {
  .benefit-item__title {
    font-size: 5.1282051282vw;
    height: 18.4615384615vw;
  }
}
.benefit-item__description {
  text-align: center;
  font-weight: normal;
  line-height: 1.5;
  font-size: 0.9722222222vw;
}
@media (max-width: 768px) {
  .benefit-item__description {
    font-size: 3.5897435897vw;
  }
}

.positions-section {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.positions-section__grid {
  display: flex;
  flex-direction: column;
  gap: 2.2222222222vw;
  width: 100%;
}
@media (max-width: 768px) {
  .positions-section__grid {
    gap: 4.1025641026vw;
    height: auto;
  }
}
.positions-section__row {
  display: flex;
  flex-direction: row;
  gap: 2.2222222222vw;
  width: 100%;
}
@media (max-width: 768px) {
  .positions-section__row {
    flex-direction: column;
    gap: 4.1025641026vw;
    height: auto;
  }
}

.position-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.2222222222vw;
  width: 100%;
  height: 13.8888888889vw;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #ffffff;
  border-radius: 1rem;
  box-shadow: 4px 4px 8px rgba(5, 37, 228, 0.2);
}
@media (max-width: 768px) {
  .position-card {
    height: auto;
    padding: 4.1025641026vw;
  }
}
.position-card__content {
  display: flex;
  flex-direction: column;
}
.position-card__category {
  font-weight: normal;
  line-height: 1.5;
  font-size: 1.1111111111vw;
  color: rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .position-card__category {
    font-size: 3.5897435897vw;
  }
}
.position-card__title {
  font-weight: normal;
  line-height: 1.5;
  font-size: 1.6666666667vw;
  color: rgba(0, 0, 0, 0.8);
}
@media (max-width: 768px) {
  .position-card__title {
    font-size: 5.1282051282vw;
  }
}
.position-card__link {
  font-weight: normal;
  line-height: 1.5;
  text-align: right;
  font-size: 0.9722222222vw;
  color: rgba(0, 0, 0, 0.8);
}
@media (max-width: 768px) {
  .position-card__link {
    margin-top: 0;
    font-size: 3.5897435897vw;
  }
}
.position-card--fixed-height {
  height: 13.8888888889vw;
}
.position-card--horizontal {
  height: 8.3333333333vw;
}
@media (max-width: 768px) {
  .position-card--horizontal {
    height: auto;
  }
}
.position-card--horizontal .position-card__content {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.position-card--horizontal .position-card__title {
  margin: 0;
  display: inline-block;
  width: auto;
}
.position-card--horizontal .position-card__link {
  margin-top: 0;
  flex-shrink: 0;
}
.position-card--horizontal .position-card__link--horizontal {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.ceo-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  width: 100%;
}
.ceo-section__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.7777777778vw;
  width: 100%;
}
.ceo-section__title {
  text-align: center;
  font-weight: 400;
  line-height: 1.5;
  font-size: clamp(24px, 2.2vw, 36px);
}
.ceo-section__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.2222222222vw;
  width: 100%;
}
@media (max-width: 768px) {
  .ceo-section__content {
    flex-direction: column;
    gap: 6.1538461538vw;
  }
}
.ceo-section__image {
  min-width: 33.3333333333vw;
  margin: 0 auto;
  border-radius: 1rem;
}
.ceo-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  .ceo-section__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
.ceo-section__message-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .ceo-section__message-content {
    gap: 4.1025641026vw;
  }
}
.ceo-section__message-content .main-section-button-text {
  margin-top: 0;
}
.ceo-section__name {
  font-weight: 700;
  line-height: 1.5;
  color: rgba(0, 42, 187, 0.8);
  font-size: 2.2222222222vw;
}
@media (max-width: 768px) {
  .ceo-section__name {
    font-size: 6.1538461538vw;
  }
}
.ceo-section__message {
  font-weight: normal;
  line-height: 1.8;
  font-size: 1.1111111111vw;
  color: rgba(0, 0, 0, 0.8);
}
@media (max-width: 768px) {
  .ceo-section__message {
    font-size: 3.5897435897vw;
  }
}
.ceo-section .main-section-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .ceo-section .main-section-button-container {
    justify-content: center;
  }
}

.recruit-cards-section {
  display: flex;
  flex-direction: column;
  gap: 4.4444444444vw;
  width: 100%;
  margin-top: -2.7777777778vw;
}
@media (max-width: 768px) {
  .recruit-cards-section {
    margin-top: -10.2564102564vw;
    gap: 6.1538461538vw;
  }
}
.recruit-cards-section .main-section-button-container {
  text-align: center;
}

.recruit-cards-grid {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .recruit-cards-grid {
    gap: 4.1025641026vw;
    flex-direction: column;
  }
}

.recruit-card {
  display: flex;
  flex-direction: column;
  width: 28.4722222222vw;
  height: auto;
  align-items: center;
  gap: 1.1111111111vw;
  padding: 1.6666666667vw;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 1.1111111111vw;
  overflow: hidden;
  border: 1px solid #ffffff;
}
.recruit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .recruit-card {
    width: 100%;
    height: auto;
    padding: 4.1025641026vw;
    gap: 6.1538461538vw;
  }
}
.recruit-card__image-container {
  width: 100%;
  aspect-ratio: 2/1;
  border-radius: 0.1388888889vw;
  background-color: rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .recruit-card__image-container {
    height: auto;
    border-radius: 0.5128205128vw;
  }
}
.recruit-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.recruit-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 1.1vw, 16px);
  width: 100%;
}
.recruit-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  .recruit-card__header {
    gap: 16px;
    align-items: baseline;
  }
}
.recruit-card__name {
  position: relative;
  opacity: 0.8;
  font-weight: bold;
  color: #000000;
  font-size: 1.3888888889vw;
  letter-spacing: 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .recruit-card__name {
    font-size: 4.1025641026vw;
  }
}
.recruit-card__position {
  font-weight: 500;
  color: #000000;
  font-size: 0.8333333333vw;
  line-height: 1.5;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .recruit-card__position {
    font-size: 3.0769230769vw;
  }
}
.recruit-card__comment {
  position: relative;
  opacity: 0.6;
  font-weight: normal;
  color: #000000;
  font-size: 0.9722222222vw;
  letter-spacing: 0;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .recruit-card__comment {
    font-size: 3.5897435897vw;
  }
}

.scroll-images-section {
  width: 100%;
  overflow: hidden;
  margin-top: 11.1111111111vw;
}

.scroll-images-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 9;
}

.scroll-images-track {
  display: flex;
  width: max-content;
  gap: 48px;
  transition: transform 0.1s ease-out;
}
@media (max-width: 768px) {
  .scroll-images-track {
    gap: 4.1025641026vw;
  }
}

.scroll-image {
  flex: 0 0 auto;
}
.scroll-image img {
  width: 22.2222222222vw;
  aspect-ratio: 1/0.625;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.scroll-image img:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .scroll-image img {
    width: 64.1025641026vw;
    height: 46.1538461538vw;
  }
}

@keyframes scroll-images {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes float {
  0%, 100% {
    transform: translate3d(0, calc(0px + var(--parallax-y, 0px)), 0);
  }
  50% {
    transform: translate3d(0, calc(-8px + var(--parallax-y, 0px)), 0);
  }
}
.animate-float {
  animation: float 4s ease-in-out infinite;
}

.decorative-image {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
  animation-fill-mode: forwards;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  will-change: transform;
  backface-visibility: hidden;
  perspective: 1000px;
  --parallax-y: 0px;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

.decorative-image-1 {
  top: 6.5%;
  left: 71%;
  width: 32%;
  aspect-ratio: 0.8/1;
  height: auto;
  background-image: url("../images/object_finport/img_01.avif");
  animation: float 4s ease-in-out infinite;
  z-index: 10;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

.decorative-image-2 {
  top: 16%;
  left: 0;
  width: 18%;
  height: auto;
  aspect-ratio: 0.54/1;
  background-image: url("../images/object_finport/img_02.avif");
  animation: float 5s ease-in-out infinite;
  transform: scaleX(-1) translate3d(0, var(--parallax-y, 0px), 0);
  z-index: 10;
}

.decorative-image-3 {
  top: 21%;
  left: 77%;
  width: 27%;
  height: auto;
  aspect-ratio: 0.93/1;
  background-image: url("../images/object_finport/img_03.avif");
  animation: float 4.5s ease-in-out infinite;
  z-index: 10;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

.decorative-image-4 {
  top: 30%;
  left: -3%;
  width: 40%;
  height: auto;
  aspect-ratio: 0.92/1;
  background-image: url("../images/object_finport/img_05.avif");
  animation: float 3.5s ease-in-out infinite;
  z-index: 10;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

.decorative-image-5 {
  top: 43%;
  left: 73%;
  width: 32%;
  height: auto;
  aspect-ratio: 1/0.96;
  background-image: url("../images/object_finport/img_04.avif");
  animation: float 5.5s ease-in-out infinite;
  z-index: 10;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

.decorative-image-6 {
  top: 62%;
  left: -1%;
  width: 30%;
  height: auto;
  aspect-ratio: 0.72/1;
  background-image: url("../images/object_finport/img_06.avif");
  animation: float 6s ease-in-out infinite;
  z-index: 10;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

.decorative-image-7 {
  top: 83%;
  left: 74%;
  width: 37%;
  height: auto;
  aspect-ratio: 0.82/1;
  background-image: url("../images/object_finport/img_07.avif");
  animation: float 4.8s ease-in-out infinite;
  z-index: 15;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

@media (max-width: 768px) {
  .decorative-image-1 {
    width: 40%;
    height: auto;
    top: 4%;
    left: 62%;
  }
  .decorative-image-2 {
    width: 30%;
    height: auto;
    top: 8%;
    left: -1%;
  }
  .decorative-image-3 {
    width: 30%;
    height: auto;
    top: 17%;
    left: 75%;
  }
  .decorative-image-4 {
    width: 50%;
    height: auto;
    top: 25.5%;
    left: -6%;
  }
  .decorative-image-5 {
    width: 58%;
    height: auto;
    top: 49%;
    left: 50%;
  }
  .decorative-image-6 {
    width: 51%;
    height: auto;
    top: 70%;
    left: -6%;
  }
  .decorative-image-7 {
    width: 50%;
    height: auto;
    top: 85%;
    left: 57%;
  }
}
.parallax-object {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  will-change: transform;
  backface-visibility: hidden;
  perspective: 1000px;
  transition: none; /* パララックス効果では滑らかなアニメーションのためトランジションを無効化 */
  --parallax-y: 0px;
  --parallax-scale: 1;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(var(--parallax-scale, 1));
}

body:not(.page-template) .parallax-object-page {
  display: none;
  background-image: url("../images/object/object00_page.avif");
  aspect-ratio: 0.96/1;
  height: auto;
  z-index: 1;
}

.parallax-object-0 {
  top: 13%;
  left: 6%;
  width: 25%;
  height: auto;
  aspect-ratio: 0.97/1;
  background-image: url("../images/object/object00.avif");
  z-index: 1;
}

.parallax-object-1 {
  top: 18%;
  left: 76%;
  width: 20%;
  height: auto;
  aspect-ratio: 1/0.86;
  background-image: url("../images/object/object01.avif");
  z-index: 1;
}

.parallax-object-2 {
  top: 30%;
  left: 49%;
  width: 24%;
  height: auto;
  aspect-ratio: 1/0.86;
  background-image: url("../images/object/object02.avif");
  z-index: 1;
}

.parallax-object-3 {
  top: 33%;
  left: 76%;
  width: 25%;
  height: auto;
  aspect-ratio: 1/0.85;
  background-image: url("../images/object/object03.avif");
  z-index: 1;
}

.parallax-object-4 {
  top: 40%;
  left: 5%;
  width: 27%;
  height: auto;
  aspect-ratio: 1/0.94;
  background-image: url("../images/object/object05.avif");
  z-index: 1;
}

.parallax-object-5 {
  top: 54%;
  left: 76%;
  width: 27%;
  height: auto;
  aspect-ratio: 1/0.9;
  background-image: url("../images/object/object04.avif");
  z-index: 1;
}

.parallax-object-6 {
  top: 70%;
  left: 2%;
  width: 30%;
  height: auto;
  aspect-ratio: 1/0.92;
  background-image: url("../images/object/object06.avif");
  z-index: 1;
}

.parallax-object-7 {
  top: 76%;
  left: 77%;
  width: 18%;
  height: auto;
  aspect-ratio: 0.96/1;
  background-image: url("../images/object/object07.avif");
  z-index: 1;
}

.parallax-object-8 {
  top: 86%;
  left: 6%;
  width: 27%;
  height: auto;
  aspect-ratio: 1/0.96;
  background-image: url("../images/object/object08.avif");
  z-index: 1;
}

@media (max-width: 768px) {
  .parallax-object-0 {
    top: 5.5%;
    left: 5%;
    width: 36%;
  }
  .parallax-object-1 {
    top: 9%;
    left: 76%;
    width: 34%;
  }
  .parallax-object-2 {
    top: 25%;
    left: 53%;
    width: 38%;
  }
  .parallax-object-3 {
    top: 27%;
    left: 67%;
    width: 37%;
  }
  .parallax-object-4 {
    top: 36%;
    left: -5%;
    width: 63%;
  }
  .parallax-object-5 {
    top: 54%;
    left: 66%;
    width: 39%;
  }
  .parallax-object-6 {
    top: 72%;
    left: 2%;
    width: 36%;
  }
  .parallax-object-7 {
    top: 77%;
    left: 59%;
    width: 41%;
  }
  .parallax-object-8 {
    top: 90%;
    left: -1%;
    width: 43%;
  }
}
.page-about .parallax-object-page {
  top: 7.5%;
  left: 78%;
  width: 20%;
  background-image: url("../images/object/object00_page.avif");
  aspect-ratio: 0.96/1;
  height: auto;
  z-index: 1;
}
.page-about .parallax-object-0 {
  top: 11%;
  left: 6%;
  width: 25%;
}
.page-about .parallax-object-1 {
  top: 18%;
  left: 76%;
  width: 20%;
}
.page-about .parallax-object-2 {
  top: 28%;
  left: 5%;
  width: 24%;
}
.page-about .parallax-object-3 {
  top: 35%;
  left: 76%;
  width: 25%;
}
.page-about .parallax-object-4 {
  top: 43%;
  left: -3%;
  width: 27%;
}
.page-about .parallax-object-5 {
  top: 63%;
  left: 4%;
  width: 27%;
}
.page-about .parallax-object-6 {
  top: 49%;
  left: 68%;
  width: 30%;
}
.page-about .parallax-object-7 {
  display: none;
}
.page-about .parallax-object-8 {
  top: 82%;
  left: 75%;
  width: 27%;
}
@media (max-width: 768px) {
  .page-about .parallax-object-page {
    top: 3%;
    left: 80%;
    width: 36%;
  }
  .page-about .parallax-object-0 {
    top: 8%;
    left: 5%;
    width: 36%;
  }
  .page-about .parallax-object-1 {
    top: 12%;
    left: 76%;
    width: 34%;
  }
  .page-about .parallax-object-2 {
    top: 24%;
    left: 0%;
    width: 38%;
  }
  .page-about .parallax-object-3 {
    top: 34%;
    left: 67%;
    width: 37%;
  }
  .page-about .parallax-object-4 {
    top: 40%;
    left: -5%;
    width: 44%;
  }
  .page-about .parallax-object-5 {
    top: 72%;
    left: -6%;
    width: 39%;
  }
  .page-about .parallax-object-6 {
    top: 54%;
    left: 66%;
    width: 36%;
  }
  .page-about .parallax-object-7 {
    display: none;
  }
  .page-about .parallax-object-8 {
    top: 90%;
    left: 63%;
    width: 43%;
  }
}

.page-company .parallax-object-page {
  top: 7.5%;
  left: 78%;
  width: 20%;
  background-image: url("../images/object/object00_page.avif");
  aspect-ratio: 0.96/1;
  height: auto;
  z-index: 1;
}
.page-company .parallax-object-0 {
  top: 11%;
  left: 6%;
  width: 25%;
}
.page-company .parallax-object-1 {
  top: 18%;
  left: 76%;
  width: 20%;
}
.page-company .parallax-object-2 {
  top: 28%;
  left: 5%;
  width: 24%;
}
.page-company .parallax-object-3 {
  top: 35%;
  left: 76%;
  width: 25%;
}
.page-company .parallax-object-4 {
  top: 43%;
  left: -3%;
  width: 27%;
}
.page-company .parallax-object-5 {
  top: 63%;
  left: 4%;
  width: 27%;
}
.page-company .parallax-object-6 {
  top: 49%;
  left: 68%;
  width: 30%;
}
.page-company .parallax-object-7 {
  display: none;
}
.page-company .parallax-object-8 {
  top: 82%;
  left: 75%;
  width: 27%;
}
@media (max-width: 768px) {
  .page-company .parallax-object-page {
    top: 3%;
    left: 80%;
    width: 36%;
  }
  .page-company .parallax-object-0 {
    top: 8%;
    left: 5%;
    width: 36%;
  }
  .page-company .parallax-object-1 {
    top: 12%;
    left: 76%;
    width: 34%;
  }
  .page-company .parallax-object-2 {
    top: 24%;
    left: 0%;
    width: 38%;
  }
  .page-company .parallax-object-3 {
    top: 34%;
    left: 67%;
    width: 37%;
  }
  .page-company .parallax-object-4 {
    top: 40%;
    left: -5%;
    width: 44%;
  }
  .page-company .parallax-object-5 {
    top: 72%;
    left: -6%;
    width: 39%;
  }
  .page-company .parallax-object-6 {
    top: 54%;
    left: 66%;
    width: 36%;
  }
  .page-company .parallax-object-7 {
    display: none;
  }
  .page-company .parallax-object-8 {
    top: 90%;
    left: 63%;
    width: 43%;
  }
}

.page-member .parallax-object-page {
  top: 7.5%;
  left: 78%;
  width: 20%;
  background-image: url("../images/object/object00_page.avif");
  aspect-ratio: 0.96/1;
  height: auto;
  z-index: 1;
}
.page-member .parallax-object-0 {
  top: 11%;
  left: 6%;
  width: 25%;
}
.page-member .parallax-object-1 {
  top: 18%;
  left: 76%;
  width: 20%;
}
.page-member .parallax-object-2 {
  top: 28%;
  left: 5%;
  width: 24%;
}
.page-member .parallax-object-3 {
  top: 35%;
  left: 76%;
  width: 25%;
}
.page-member .parallax-object-4 {
  top: 43%;
  left: -3%;
  width: 27%;
}
.page-member .parallax-object-5 {
  top: 63%;
  left: 4%;
  width: 27%;
}
.page-member .parallax-object-6 {
  top: 49%;
  left: 68%;
  width: 30%;
}
.page-member .parallax-object-7 {
  display: none;
}
.page-member .parallax-object-8 {
  top: 82%;
  left: 75%;
  width: 27%;
}
@media (max-width: 768px) {
  .page-member .parallax-object-page {
    top: 3%;
    left: 80%;
    width: 36%;
  }
  .page-member .parallax-object-0 {
    top: 8%;
    left: 5%;
    width: 36%;
  }
  .page-member .parallax-object-1 {
    top: 12%;
    left: 76%;
    width: 34%;
  }
  .page-member .parallax-object-2 {
    top: 24%;
    left: 0%;
    width: 38%;
  }
  .page-member .parallax-object-3 {
    top: 34%;
    left: 67%;
    width: 37%;
  }
  .page-member .parallax-object-4 {
    top: 40%;
    left: -5%;
    width: 44%;
  }
  .page-member .parallax-object-5 {
    top: 72%;
    left: -6%;
    width: 39%;
  }
  .page-member .parallax-object-6 {
    top: 54%;
    left: 66%;
    width: 36%;
  }
  .page-member .parallax-object-7 {
    display: none;
  }
  .page-member .parallax-object-8 {
    top: 90%;
    left: 63%;
    width: 43%;
  }
}

.page-report .parallax-object-page {
  top: 7.5%;
  left: 78%;
  width: 20%;
  background-image: url("../images/object/object00_page.avif");
  aspect-ratio: 0.96/1;
  height: auto;
  z-index: 1;
}
.page-report .parallax-object-0 {
  top: 11%;
  left: 6%;
  width: 25%;
}
.page-report .parallax-object-1 {
  top: 18%;
  left: 76%;
  width: 20%;
}
.page-report .parallax-object-2 {
  top: 28%;
  left: 5%;
  width: 24%;
}
.page-report .parallax-object-3 {
  top: 35%;
  left: 76%;
  width: 25%;
}
.page-report .parallax-object-4 {
  top: 43%;
  left: -3%;
  width: 27%;
}
.page-report .parallax-object-5 {
  top: 63%;
  left: 4%;
  width: 27%;
}
.page-report .parallax-object-6 {
  top: 49%;
  left: 68%;
  width: 30%;
}
.page-report .parallax-object-7 {
  display: none;
}
.page-report .parallax-object-8 {
  top: 82%;
  left: 75%;
  width: 27%;
}
@media (max-width: 768px) {
  .page-report .parallax-object-page {
    top: 3%;
    left: 80%;
    width: 36%;
  }
  .page-report .parallax-object-0 {
    top: 8%;
    left: 5%;
    width: 36%;
  }
  .page-report .parallax-object-1 {
    top: 12%;
    left: 76%;
    width: 34%;
  }
  .page-report .parallax-object-2 {
    top: 24%;
    left: 0%;
    width: 38%;
  }
  .page-report .parallax-object-3 {
    top: 34%;
    left: 67%;
    width: 37%;
  }
  .page-report .parallax-object-4 {
    top: 40%;
    left: -5%;
    width: 44%;
  }
  .page-report .parallax-object-5 {
    top: 72%;
    left: -6%;
    width: 39%;
  }
  .page-report .parallax-object-6 {
    top: 54%;
    left: 66%;
    width: 36%;
  }
  .page-report .parallax-object-7 {
    display: none;
  }
  .page-report .parallax-object-8 {
    top: 90%;
    left: 63%;
    width: 43%;
  }
}

.page-history .parallax-object-page {
  top: 7.5%;
  left: 78%;
  width: 20%;
  background-image: url("../images/object/object00_page.avif");
  aspect-ratio: 0.96/1;
  height: auto;
  z-index: 1;
}
.page-history .parallax-object-0 {
  top: 11%;
  left: 6%;
  width: 25%;
}
.page-history .parallax-object-1 {
  top: 18%;
  left: 76%;
  width: 20%;
}
.page-history .parallax-object-2 {
  top: 28%;
  left: 5%;
  width: 24%;
}
.page-history .parallax-object-3 {
  top: 35%;
  left: 76%;
  width: 25%;
}
.page-history .parallax-object-4 {
  top: 43%;
  left: -3%;
  width: 27%;
}
.page-history .parallax-object-5 {
  top: 63%;
  left: 4%;
  width: 27%;
}
.page-history .parallax-object-6 {
  top: 49%;
  left: 68%;
  width: 30%;
}
.page-history .parallax-object-7 {
  display: none;
}
.page-history .parallax-object-8 {
  top: 82%;
  left: 75%;
  width: 27%;
}
@media (max-width: 768px) {
  .page-history .parallax-object-page {
    top: 3%;
    left: 80%;
    width: 36%;
  }
  .page-history .parallax-object-0 {
    top: 8%;
    left: 5%;
    width: 36%;
  }
  .page-history .parallax-object-1 {
    top: 12%;
    left: 76%;
    width: 34%;
  }
  .page-history .parallax-object-2 {
    top: 24%;
    left: 0%;
    width: 38%;
  }
  .page-history .parallax-object-3 {
    top: 34%;
    left: 67%;
    width: 37%;
  }
  .page-history .parallax-object-4 {
    top: 40%;
    left: -5%;
    width: 44%;
  }
  .page-history .parallax-object-5 {
    top: 72%;
    left: -6%;
    width: 39%;
  }
  .page-history .parallax-object-6 {
    top: 54%;
    left: 66%;
    width: 36%;
  }
  .page-history .parallax-object-7 {
    display: none;
  }
  .page-history .parallax-object-8 {
    top: 90%;
    left: 63%;
    width: 43%;
  }
}

.page-ma .parallax-object-page {
  top: 7.5%;
  left: 78%;
  width: 20%;
  background-image: url("../images/object/object00_page.avif");
  aspect-ratio: 0.96/1;
  height: auto;
  z-index: 1;
}
.page-ma .parallax-object-0 {
  top: 11%;
  left: 6%;
  width: 25%;
}
.page-ma .parallax-object-1 {
  top: 18%;
  left: 76%;
  width: 20%;
}
.page-ma .parallax-object-2 {
  top: 28%;
  left: 5%;
  width: 24%;
}
.page-ma .parallax-object-3 {
  top: 35%;
  left: 76%;
  width: 25%;
}
.page-ma .parallax-object-4 {
  top: 43%;
  left: -3%;
  width: 27%;
}
.page-ma .parallax-object-5 {
  top: 63%;
  left: 4%;
  width: 27%;
}
.page-ma .parallax-object-6 {
  top: 49%;
  left: 68%;
  width: 30%;
}
.page-ma .parallax-object-7 {
  display: none;
}
.page-ma .parallax-object-8 {
  top: 82%;
  left: 75%;
  width: 27%;
}
@media (max-width: 768px) {
  .page-ma .parallax-object-page {
    top: 3%;
    left: 80%;
    width: 36%;
  }
  .page-ma .parallax-object-0 {
    top: 8%;
    left: 5%;
    width: 36%;
  }
  .page-ma .parallax-object-1 {
    top: 12%;
    left: 76%;
    width: 34%;
  }
  .page-ma .parallax-object-2 {
    top: 24%;
    left: 0%;
    width: 38%;
  }
  .page-ma .parallax-object-3 {
    top: 34%;
    left: 67%;
    width: 37%;
  }
  .page-ma .parallax-object-4 {
    top: 40%;
    left: -5%;
    width: 44%;
  }
  .page-ma .parallax-object-5 {
    top: 72%;
    left: -6%;
    width: 39%;
  }
  .page-ma .parallax-object-6 {
    top: 54%;
    left: 66%;
    width: 36%;
  }
  .page-ma .parallax-object-7 {
    display: none;
  }
  .page-ma .parallax-object-8 {
    top: 90%;
    left: 63%;
    width: 43%;
  }
}

.page-tob .parallax-object-page {
  top: 7.5%;
  left: 78%;
  width: 20%;
  background-image: url("../images/object/object00_page.avif");
  aspect-ratio: 0.96/1;
  height: auto;
  z-index: 1;
}
.page-tob .parallax-object-0 {
  top: 11%;
  left: 6%;
  width: 25%;
}
.page-tob .parallax-object-1 {
  top: 18%;
  left: 76%;
  width: 20%;
}
.page-tob .parallax-object-2 {
  top: 28%;
  left: 5%;
  width: 24%;
}
.page-tob .parallax-object-3 {
  top: 35%;
  left: 76%;
  width: 25%;
}
.page-tob .parallax-object-4 {
  top: 43%;
  left: -3%;
  width: 27%;
}
.page-tob .parallax-object-5 {
  top: 63%;
  left: 4%;
  width: 27%;
}
.page-tob .parallax-object-6 {
  top: 49%;
  left: 68%;
  width: 30%;
}
.page-tob .parallax-object-7 {
  display: none;
}
.page-tob .parallax-object-8 {
  top: 82%;
  left: 75%;
  width: 27%;
}
@media (max-width: 768px) {
  .page-tob .parallax-object-page {
    top: 3%;
    left: 80%;
    width: 36%;
  }
  .page-tob .parallax-object-0 {
    top: 8%;
    left: 5%;
    width: 36%;
  }
  .page-tob .parallax-object-1 {
    top: 12%;
    left: 76%;
    width: 34%;
  }
  .page-tob .parallax-object-2 {
    top: 24%;
    left: 0%;
    width: 38%;
  }
  .page-tob .parallax-object-3 {
    top: 34%;
    left: 67%;
    width: 37%;
  }
  .page-tob .parallax-object-4 {
    top: 40%;
    left: -5%;
    width: 44%;
  }
  .page-tob .parallax-object-5 {
    top: 72%;
    left: -6%;
    width: 39%;
  }
  .page-tob .parallax-object-6 {
    top: 54%;
    left: 66%;
    width: 36%;
  }
  .page-tob .parallax-object-7 {
    display: none;
  }
  .page-tob .parallax-object-8 {
    top: 90%;
    left: 63%;
    width: 43%;
  }
}

.page-inheritance .parallax-object-page {
  top: 26.5%;
  left: 78%;
  width: 20%;
  background-image: url("../images/object/object00_page.avif");
  aspect-ratio: 0.96/1;
  height: auto;
  z-index: 1;
}
.page-inheritance .parallax-object-0 {
  top: 40;
  left: 6%;
  width: 25%;
}
.page-inheritance .parallax-object-1 {
  top: 51%;
  left: 76%;
  width: 20%;
}
.page-inheritance .parallax-object-2 {
  display: none;
}
.page-inheritance .parallax-object-3 {
  display: none;
}
.page-inheritance .parallax-object-4 {
  display: none;
}
.page-inheritance .parallax-object-5 {
  display: none;
}
.page-inheritance .parallax-object-6 {
  display: none;
}
.page-inheritance .parallax-object-7 {
  display: none;
}
.page-inheritance .parallax-object-8 {
  display: none;
}
@media (max-width: 768px) {
  .page-inheritance .parallax-object-page {
    top: 12%;
    left: 80%;
    width: 36%;
  }
  .page-inheritance .parallax-object-0 {
    top: 32%;
    left: 0%;
    width: 36%;
  }
  .page-inheritance .parallax-object-1 {
    top: 54%;
    left: 76%;
    width: 34%;
  }
  .page-inheritance .parallax-object-2 {
    display: none;
  }
  .page-inheritance .parallax-object-3 {
    display: none;
  }
  .page-inheritance .parallax-object-4 {
    display: none;
  }
  .page-inheritance .parallax-object-5 {
    display: none;
  }
  .page-inheritance .parallax-object-6 {
    display: none;
  }
  .page-inheritance .parallax-object-7 {
    display: none;
  }
  .page-inheritance .parallax-object-8 {
    display: none;
  }
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  transition: opacity 0.5s ease-out;
  opacity: 1; /* 即座に表示 */
}

.loading-container {
  text-align: center;
  color: #000000;
  width: 100%;
}

.loading-logo-container {
  margin-bottom: 2rem;
  opacity: 1; /* 即座に表示 */
  animation: none; /* アニメーション遅延を削除 */
}

.logo-wrapper {
  position: relative;
  margin: 0 auto 1rem;
  width: 181px;
  height: 40px;
}

.loading-logo-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.logo-path {
  opacity: 1; /* 即座に表示 */
  transform: scale(1) rotate(0deg); /* 初期状態を表示状態に */
  transition: all 0.3s ease-out;
}

.loading-spinner {
  display: none;
}

.loading-text {
  font-size: 1.1rem;
  opacity: 1; /* 即座に表示 */
  animation: none; /* アニメーション遅延を削除 */
}

.loading-progress {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 4px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0;
  margin: 0;
  overflow: hidden;
  opacity: 1;
}

.loading-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #000000 0%, #001cc1 100%);
  width: 0%;
  border-radius: 2px;
  transition: width 0.5s ease-out;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.loading-dots {
  display: inline-block;
  animation: dots 1.5s infinite;
}

.loading-dots::after {
  content: "";
  animation: dots 1.5s infinite;
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  animation: float 6s infinite linear;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes dots {
  0%, 20% {
    content: "";
  }
  40% {
    content: ".";
  }
  60% {
    content: "..";
  }
  80%, 100% {
    content: "...";
  }
}
@keyframes logoPathAppear {
  0% {
    opacity: 0;
    transform: scale(0.8) rotate(-5deg);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1) rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}
@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.content-section {
  display: flex;
  flex-direction: column;
  gap: 2.7777777778vw;
  padding: 2.7777777778vw;
  width: 78%;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(32px);
  border-radius: 1.1111111111vw;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .content-section {
    width: 100%;
    padding: 8.2051282051vw;
    gap: 8.2051282051vw;
    margin-bottom: 10.2564102564vw;
  }
}
.content-section--report {
  width: 38%;
  height: auto;
  padding: 2.2222222222vw;
}
@media (max-width: 768px) {
  .content-section--report {
    width: 100%;
    padding: 6.1538461538vw;
  }
}
.content-section--reportWide {
  width: fit-content;
  height: auto;
  padding: 2.2222222222vw;
}
@media (max-width: 768px) {
  .content-section--reportWide {
    width: 100%;
    padding: 6.1538461538vw;
  }
}
.content-section--member {
  width: 55.5555555556vw;
  padding: 2.2222222222vw;
  gap: 2.2222222222vw;
  color: rgba(0, 0, 0, 0.8);
}
@media (max-width: 768px) {
  .content-section--member {
    width: 100%;
    padding: 4.1025641026vw;
    gap: 8.2051282051vw;
  }
}
.content-section--wide {
  width: 100%;
}
@media (max-width: 768px) {
  .content-section--wide {
    width: 100%;
  }
}
.content-section__section {
  display: flex;
  flex-direction: column;
  gap: 2.2222222222vw;
  flex: 1;
}
@media (max-width: 768px) {
  .content-section__section {
    gap: 3.0769230769vw;
  }
}
.content-section--right {
  margin: 0 0 0 auto;
}
.content-section--center {
  margin: 0 auto;
}
.content-section--left {
  margin: 0 auto 0 0;
}
.content-section--fullwidth-card {
  width: 100%;
  background: #ffffff;
  border-radius: 1.1111111111vw;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  padding: 11.1111111111vw 5.5555555556vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5.5555555556vw;
  margin: 0 auto;
  flex-direction: row;
}
@media (max-width: 768px) {
  .content-section--fullwidth-card {
    width: 100%;
    gap: 10.2564102564vw;
    padding: 10.2564102564vw 4.1025641026vw;
    flex-flow: column;
  }
}
@media (max-width: 768px) {
  .content-section--history {
    margin-bottom: 0;
  }
}
.content-section__section {
  display: flex;
  flex-direction: column;
  gap: 1.1111111111vw;
}
@media (max-width: 768px) {
  .content-section__section {
    gap: 3.0769230769vw;
  }
}
.content-section__title {
  font-size: 1.3888888889vw;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .content-section__title {
    font-size: 4.6153846154vw;
  }
}
.content-section__title--normal {
  font-weight: normal;
  text-align: center;
}
.content-section__card-title {
  font-size: 2.7777777778vw;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.5;
  text-align: left;
}
@media (max-width: 768px) {
  .content-section__card-title {
    font-size: 4.6153846154vw;
  }
}
.content-section__card-title--center {
  font-size: 2.7777777778vw;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 768px) {
  .content-section__card-title--center {
    font-size: 6.1538461538vw;
  }
}
.content-section__text-18 {
  font-size: 1.25vw;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 768px) {
  .content-section__text-18 {
    font-size: 3.5897435897vw;
  }
}
.content-section__text {
  font-size: 1.1111111111vw;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 768px) {
  .content-section__text {
    font-size: 3.5897435897vw;
  }
}
.content-section__text--right {
  text-align: right;
  opacity: 0.6;
}
.content-section__bgCardWrap {
  display: flex;
  gap: 2.2222222222vw;
}
@media (max-width: 768px) {
  .content-section__bgCardWrap {
    flex-flow: column;
    gap: 4.1025641026vw;
  }
}
.content-section__bgCardWrap--tob {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2222222222vw;
}
@media (max-width: 768px) {
  .content-section__bgCardWrap--tob {
    grid-template-columns: 1fr;
    gap: 6.1538461538vw;
  }
}
.content-section__bgCard {
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(32px);
  border-radius: 1.1111111111vw;
  border: 1px solid #ffffff;
  padding: 1.1111111111vw;
  flex: 1;
}
@media (max-width: 768px) {
  .content-section__bgCard {
    padding: 4.1025641026vw;
  }
}
.content-section__bgCard--guideline {
  display: flex;
  flex-direction: column;
  gap: 2.7777777778vw;
}
@media (max-width: 768px) {
  .content-section__bgCard--guideline {
    gap: 10.2564102564vw;
  }
}
.content-section__bgCard--tob {
  display: flex;
  flex-direction: column;
  gap: 1.1111111111vw;
}
@media (max-width: 768px) {
  .content-section__bgCard--tob {
    gap: 4.1025641026vw;
  }
}
.content-section__bgCard-title {
  font-size: 1.3888888889vw;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.8;
  display: flex;
  gap: 0.5555555556vw;
  align-items: center;
}
@media (max-width: 768px) {
  .content-section__bgCard-title {
    font-size: 4.6153846154vw;
    gap: 2.0512820513vw;
  }
}
.content-section__bgCard-title--32 {
  font-weight: bold;
  font-size: 2.2222222222vw;
}
@media (max-width: 768px) {
  .content-section__bgCard-title--32 {
    font-size: 6.1538461538vw;
  }
}
.content-section__bgCard-number {
  font-size: 2.7777777778vw;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .content-section__bgCard-number {
    font-size: 6.1538461538vw;
  }
}
.content-section__bgCard-list {
  list-style: initial;
  display: flex;
  flex-direction: column;
  padding-left: 1.1111111111vw;
}
@media (max-width: 768px) {
  .content-section__bgCard-list {
    padding-left: 4.1025641026vw;
  }
}
.content-section__bgCard-list--none > li {
  list-style: none;
}
.content-section__bgCard-list-item p {
  font-size: 1.1111111111vw;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .content-section__bgCard-list-item p {
    font-size: 3.5897435897vw;
  }
}
.content-section__bgCard-list-item--indent {
  margin-left: 2.2222222222vw;
}
@media (max-width: 768px) {
  .content-section__bgCard-list-item--indent {
    margin-left: 6.1538461538vw;
  }
}
.content-section__guideButton {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8333333333vw;
  margin: 0 auto;
  padding: 1.1111111111vw 2.7777777778vw;
  background: #000000;
  color: #ffffff;
  font-size: 1.25vw;
  font-weight: 600;
  text-align: center;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
@media (max-width: 768px) {
  .content-section__guideButton {
    padding: 3.0769230769vw 8.2051282051vw;
    font-size: 4.1025641026vw;
    gap: 2.0512820513vw;
  }
}
.content-section__guideButton::after {
  content: "";
  display: inline-block;
  width: 0.6944444444vw;
  height: 0.6944444444vw;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .content-section__guideButton::after {
    width: 2.0512820513vw;
    height: 2.0512820513vw;
  }
}
.content-section__guideButton.open::after {
  transform: rotate(-135deg);
}
.content-section__guideButton:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.content-section__guideButton:active {
  transform: translateY(0);
}
.content-section__pic {
  margin: 0;
  text-align: center;
  width: 100%;
}
.content-section__pic img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0.5555555556vw;
}
.content-section__report-image {
  width: 100%;
  height: auto;
}
.content-section__report-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 768px) {
  .content-section__report-image {
    width: 100%;
    height: auto;
  }
}
.content-section__member-image {
  width: 100%;
  height: auto;
}
.content-section__member-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 768px) {
  .content-section__maImg img {
    width: 100%;
  }
}
.content-section__logo {
  width: 64%;
  margin: 0 auto;
  text-align: center;
}
.content-section__logo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 768px) {
  .content-section__logo img {
    max-width: 38.4615384615vw;
  }
}
.content-section__certificate {
  display: flex;
  margin: 0 auto;
  text-align: center;
  width: 32%;
  flex-flow: column;
  align-items: center;
  gap: 40px;
}
.content-section__certificate img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 768px) {
  .content-section__certificate img {
    max-width: 64.1025641026vw;
  }
}
.content-section__certificate-text {
  font-size: 0.9722222222vw;
  color: #000B4B;
  line-height: 1.6;
  margin-top: -16px;
}
@media (max-width: 768px) {
  .content-section__certificate-text {
    font-size: 3.0769230769vw;
    margin-top: -12px;
  }
}
.content-section__certificate-text--light {
  color: #002ABB;
  font-weight: bold;
}
.content-section__report-list {
  padding-left: 1.1111111111vw;
  margin-top: 2.2222222222vw;
}
@media (max-width: 768px) {
  .content-section__report-list {
    padding-left: 4.1025641026vw;
    margin-top: 4.1025641026vw;
  }
}
.content-section__report-list-item {
  font-size: 1.1111111111vw;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.8;
  margin: 0;
  list-style: initial;
}
@media (max-width: 768px) {
  .content-section__report-list-item {
    font-size: 3.5897435897vw;
  }
}
.content-section__member-info {
  display: flex;
  flex-direction: row;
  align-items: end;
  gap: 0.5555555556vw;
  font-weight: bold;
}
.content-section__member-name {
  font-size: 2.2222222222vw;
}
@media (max-width: 768px) {
  .content-section__member-name {
    font-size: 4.6153846154vw;
  }
}
.content-section__member-title {
  font-size: 1.6666666667vw;
}
@media (max-width: 768px) {
  .content-section__member-title {
    font-size: 3.5897435897vw;
  }
}
.content-section__member-history {
  font-size: 0.9722222222vw;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .content-section__member-history {
    font-size: 3.5897435897vw;
  }
}
.content-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1111111111vw;
}
@media (max-width: 768px) {
  .content-section__inner {
    gap: 4.1025641026vw;
  }
}
.content-section__history-subtitle {
  font-size: 1.6666666667vw;
  text-align: center;
  color: rgba(0, 42, 187, 0.8);
}
@media (max-width: 768px) {
  .content-section__history-subtitle {
    font-size: 4.6153846154vw;
  }
}

.content-section-table {
  width: 69.4444444444vw;
  border-collapse: separate;
  border-spacing: 0;
  padding: 1.1111111111vw;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(32px);
  border-radius: 1.1111111111vw;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .content-section-table {
    width: 100%;
    border-radius: 3.0769230769vw;
    padding: 2.0512820513vw;
  }
}
.content-section-table tr {
  border: none;
}
@media (max-width: 768px) {
  .content-section-table tr {
    display: flex;
    flex-flow: column;
  }
}
.content-section-table tr:first-child td:first-child {
  border-top-left-radius: 1.1111111111vw;
}
@media (max-width: 768px) {
  .content-section-table tr:first-child td:first-child {
    border-top-left-radius: 3.0769230769vw;
  }
}
.content-section-table tr:first-child td:first-child {
  border-top-right-radius: 1.1111111111vw;
}
@media (max-width: 768px) {
  .content-section-table tr:first-child td:first-child {
    border-top-right-radius: 3.0769230769vw;
  }
}
.content-section-table tr:last-child td:first-child {
  border-bottom-left-radius: 1.1111111111vw;
}
@media (max-width: 768px) {
  .content-section-table tr:last-child td:first-child {
    border-bottom-left-radius: 3.0769230769vw;
  }
}
.content-section-table tr:last-child td:first-child {
  border-bottom-right-radius: 1.1111111111vw;
}
@media (max-width: 768px) {
  .content-section-table tr:last-child td:first-child {
    border-bottom-right-radius: 3.0769230769vw;
  }
}
.content-section-table th, .content-section-table td {
  padding: 1.3888888889vw;
  text-align: left;
}
@media (max-width: 768px) {
  .content-section-table th, .content-section-table td {
    padding: 4.1025641026vw;
  }
}
.content-section-table th {
  font-weight: 600;
  color: #000000;
  font-size: 1.1111111111vw;
}
@media (max-width: 768px) {
  .content-section-table th {
    font-size: 3.5897435897vw;
  }
}
.content-section-table td {
  color: #000B4B;
  font-size: 0.9722222222vw;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .content-section-table td {
    font-size: 3.5897435897vw;
  }
}
.content-section-table .table-title {
  background-color: rgba(0, 0, 0, 0.05);
}

.office-locations {
  width: 69.4444444444vw;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(32px);
  border-radius: 1.1111111111vw;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  padding: 1.1111111111vw;
  display: flex;
  flex-direction: column;
  gap: 1.3888888889vw;
}
@media (max-width: 768px) {
  .office-locations {
    width: 100%;
    padding: 16px;
    gap: 16.4102564103vw;
  }
}

.office-location {
  display: flex;
  gap: 4.4444444444vw;
  align-items: center;
}
@media (max-width: 768px) {
  .office-location {
    gap: 4.1025641026vw;
    flex-direction: column;
    align-items: baseline;
  }
}

.office-image {
  margin: 0;
}
.office-image img {
  width: 25vw;
  height: 16.6666666667vw;
  object-fit: cover;
  border-radius: 0.5555555556vw;
}
@media (max-width: 768px) {
  .office-image img {
    width: 100%;
    height: auto;
  }
}

.office-info {
  display: flex;
  flex-direction: row;
  gap: 1.1111111111vw;
  align-items: baseline;
}
@media (max-width: 768px) {
  .office-info {
    gap: 7.6923076923vw;
    flex-direction: column;
  }
}

.office-title {
  font-size: 1.1111111111vw;
  font-weight: 300;
  color: #000000;
  line-height: 1.5;
  white-space: nowrap;
  margin: 0;
}
@media (max-width: 768px) {
  .office-title {
    font-size: 4.6153846154vw;
    width: 35%;
  }
}

.office-address {
  font-size: 1.1111111111vw;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 768px) {
  .office-address {
    font-size: 3.5897435897vw;
  }
}

.company-logo {
  margin: 0;
}
@media (max-width: 768px) {
  .company-logo {
    width: 100%;
    text-align: center;
  }
}
.company-logo img {
  width: 37.5vw;
  height: auto;
}
@media (max-width: 768px) {
  .company-logo img {
    width: 80%;
    height: auto;
  }
}

.company-name {
  font-size: 2.2222222222vw;
  font-weight: 600;
  color: #000000;
  margin: 0;
}
@media (max-width: 768px) {
  .company-name {
    font-size: 5.1282051282vw;
  }
}

.company-description {
  font-size: 1.1111111111vw;
  color: #000B4B;
  line-height: 1.8;
  opacity: 0.6;
  margin: 0;
  max-width: 55.5555555556vw;
}
@media (max-width: 768px) {
  .company-description {
    max-width: 100%;
    font-size: 3.5897435897vw;
  }
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 7.1vw;
  top: 10px;
  bottom: 0;
  width: 4px;
  height: calc(100% - 32px);
  background: #000000;
}
@media (max-width: 768px) {
  .timeline::before {
    left: 13vw;
    width: 2px;
    height: 97%;
  }
}
.timeline li {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 5.5555555556vw;
  margin-bottom: 4.1666666667vw;
}
@media (max-width: 768px) {
  .timeline li {
    gap: 6.1538461538vw;
    margin-bottom: 10.2564102564vw;
  }
}
.timeline li::before {
  content: "";
  position: absolute;
  left: 6.6666666667vw;
  top: 0.8333333333vw;
  width: 1.1111111111vw;
  height: 1.1111111111vw;
  border-radius: 50%;
  background: #000000;
  z-index: 1;
}
@media (max-width: 768px) {
  .timeline li::before {
    left: 11.5vw;
    width: 3.0769230769vw;
    height: 3.0769230769vw;
    top: 2.0512820513vw;
  }
}
.timeline li:last-child {
  margin-bottom: 0;
}

.history-section-group:nth-child(2) .timeline::before {
  height: auto;
  bottom: 29vw;
}
@media (max-width: 768px) {
  .history-section-group:nth-child(2) .timeline::before {
    bottom: 65.25641vw;
  }
}

.history-section-group:last-child .timeline::before {
  height: auto;
  bottom: 4.1666666667vw;
}
@media (max-width: 768px) {
  .history-section-group:last-child .timeline::before {
    bottom: 14.25641vw;
  }
}

.timeline-date {
  font-size: 1.25vw;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.8);
  margin: 0;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .timeline-date {
    font-size: 3.0769230769vw;
  }
}

.timeline-content {
  display: flex;
  flex-direction: column;
  gap: 2.2222222222vw;
}
.timeline-content p {
  margin: 0;
  font-size: 1.25vw;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.8);
}
@media (max-width: 768px) {
  .timeline-content p {
    font-size: 3.5897435897vw;
  }
}
.timeline-content img {
  width: 100%;
  height: auto;
  border-radius: 0.5555555556vw;
}
@media (max-width: 768px) {
  .timeline-content img {
    border-radius: 2.0512820513vw;
  }
}
.timeline-content .timeline-image {
  width: 64%;
}
@media (max-width: 768px) {
  .timeline-content .timeline-image {
    width: 100%;
  }
}
.timeline-content .timeline-image img {
  width: 100%;
}

.history-section-group {
  display: flex;
  flex-direction: column;
  gap: 2.7777777778vw;
  margin-bottom: 2.7777777778vw;
}
@media (max-width: 768px) {
  .history-section-group {
    gap: 10.2564102564vw;
    margin-bottom: 10.2564102564vw;
  }
}
.history-section-group:last-child {
  margin-bottom: 0;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 2.7777777778vw;
}
@media (max-width: 768px) {
  .news-list {
    gap: 8.2051282051vw;
  }
}

.news-item {
  display: flex;
  flex-direction: column;
  gap: 0.8333333333vw;
  padding-bottom: 2.2222222222vw;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .news-item {
    gap: 2.0512820513vw;
    padding-bottom: 6.1538461538vw;
  }
}
.news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.news-item__date {
  font-size: 0.9722222222vw;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}
@media (max-width: 768px) {
  .news-item__date {
    font-size: 3.0769230769vw;
  }
}
.news-item__title {
  font-size: 1.3888888889vw;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .news-item__title {
    font-size: 4.1025641026vw;
  }
}
.news-item__title a {
  color: rgba(0, 0, 0, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-item__title a:hover {
  color: #000000;
}
.news-item__excerpt {
  font-size: 1.1111111111vw;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .news-item__excerpt {
    font-size: 3.5897435897vw;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 4.1666666667vw;
}
@media (max-width: 768px) {
  .pagination {
    margin-top: 10.2564102564vw;
  }
}
.pagination .page-numbers {
  display: flex;
  gap: 0.5555555556vw;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .pagination .page-numbers {
    gap: 1.0256410256vw;
  }
}
.pagination .page-numbers li {
  display: inline-block;
}
.pagination .page-numbers a, .pagination .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.7777777778vw;
  height: 2.7777777778vw;
  padding: 0 0.8333333333vw;
  font-size: 0.9722222222vw;
  color: rgba(0, 0, 0, 0.8);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.2777777778vw;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .pagination .page-numbers a, .pagination .page-numbers span {
    min-width: 8.2051282051vw;
    height: 8.2051282051vw;
    padding: 0 2.0512820513vw;
    font-size: 3.0769230769vw;
    border-radius: 1.0256410256vw;
  }
}
.pagination .page-numbers a:hover, .pagination .page-numbers span:hover {
  background: rgba(0, 0, 0, 0.1);
  border-color: #000000;
  color: #000000;
}
.pagination .page-numbers a.current, .pagination .page-numbers span.current {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}
.pagination .page-numbers .dots {
  border: none;
  background: transparent;
  pointer-events: none;
}
.pagination .page-numbers .dots:hover {
  background: transparent;
  border: none;
}

.contact-form-wrapper {
  margin-top: 2.2222222222vw;
}
@media (max-width: 768px) {
  .contact-form-wrapper {
    margin-top: 6.1538461538vw;
  }
}

.form-placeholder {
  padding: 2.7777777778vw;
  background: rgba(0, 0, 0, 0.05);
  border: 2px dashed rgba(0, 0, 0, 0.2);
  border-radius: 0.5555555556vw;
  text-align: center;
}
@media (max-width: 768px) {
  .form-placeholder {
    padding: 6.1538461538vw;
    border-radius: 1.5384615385vw;
  }
}
.form-placeholder p {
  font-size: 0.9722222222vw;
  color: rgba(0, 0, 0, 0.6);
  margin: 0.5555555556vw 0;
}
@media (max-width: 768px) {
  .form-placeholder p {
    font-size: 3.0769230769vw;
    margin: 1.5384615385vw 0;
  }
}
.form-placeholder p:first-child {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
}

.page-content {
  display: flex;
  flex-direction: column;
  gap: 11.1111111111vw;
  padding: 11.1111111111vw 5.5555555556vw;
}
@media (max-width: 768px) {
  .page-content {
    gap: 20.5128205128vw;
    padding: 20.5128205128vw 6.1538461538vw;
  }
}

.about-intro-section {
  display: flex;
  flex-direction: column;
  gap: 5.5555555556vw;
  width: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  .about-intro-section {
    gap: 6.1538461538vw;
  }
}
.about-intro-section--center {
  align-items: center;
}
.about-intro-section--right {
  align-items: flex-end;
}
.about-intro-section--margin {
  padding-top: 5.5555555556vw;
}
@media (max-width: 768px) {
  .about-intro-section--margin {
    padding-top: 10.2564102564vw;
  }
}
.about-intro-section--fullwidth {
  width: 100%;
  background: #ffffff;
  border-radius: 1.1111111111vw;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  padding: 11.1111111111vw 5.5555555556vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5.5555555556vw;
  margin: 0 auto;
  flex-direction: row;
}
@media (max-width: 768px) {
  .about-intro-section--fullwidth {
    width: 100%;
    gap: 3.8461538462vw;
  }
}

.about-intro-header {
  align-items: baseline;
  transition: transform 0.3s ease-out;
  will-change: transform;
  z-index: 20;
}
.about-intro-header--company {
  width: 69.4444444444vw;
}
@media (max-width: 768px) {
  .about-intro-header--company {
    width: 100%;
  }
}

.about-intro-subtitle {
  text-align: left;
}

.about-intro-title {
  font-size: 5.5555555556vw;
  text-align: left;
  text-shadow: 2px -2px 1px #ffffff;
}
@media (max-width: 768px) {
  .about-intro-title {
    white-space: normal;
    font-size: 12.3076923077vw;
  }
}

.about-intro-description {
  opacity: 0.6;
  font-weight: normal;
  color: #000B4B;
  font-size: 1.1111111111vw;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .about-intro-description {
    font-size: 3.5897435897vw;
  }
}

.about-intro-main-text {
  color: #001cc1;
  font-size: 2.7777777778vw;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .about-intro-main-text {
    font-size: 6.1538461538vw;
  }
}

.about-purpose-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5.5555555556vw;
  padding: 11.1111111111vw 0 0 0;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  z-index: 1;
}
@media (max-width: 768px) {
  .about-purpose-section {
    gap: 10.2564102564vw;
    padding: 20.5128205128vw 0 0 0;
  }
}

.about-purpose-header {
  position: relative;
  transition: transform 0.3s ease-out;
  will-change: transform;
  z-index: 20;
}

.about-purpose-main-text {
  font-weight: bold;
  color: #000B4B;
  font-size: 1.3888888889vw;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4.1666666667vw auto;
}
@media (max-width: 768px) {
  .about-purpose-main-text {
    font-size: 4.1025641026vw;
    margin-bottom: 10.2564102564vw;
    padding: 0 20px;
  }
}

.about-purpose-vision-coc {
  display: flex;
  flex-direction: column;
  gap: 2.7777777778vw;
  padding: 2.7777777778vw;
  width: 69.4444444444vw;
  background: #ffffff;
  border-radius: 1.1111111111vw;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .about-purpose-vision-coc {
    gap: 7.6923076923vw;
    padding: 7.6923076923vw 5.1282051282vw;
    width: 100%;
  }
}
.about-purpose-vision-coc__logo {
  text-align: center;
}
.about-purpose-vision-coc__logo img {
  width: 38.8888888889vw;
  height: 13.8888888889vw;
  object-fit: cover;
}
.about-purpose-vision-coc__title {
  font-size: 1.3888888889vw;
  font-weight: 600;
  color: #000000;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .about-purpose-vision-coc__title {
    font-size: 4.6153846154vw;
  }
}
.about-purpose-vision-coc__text {
  font-size: 1.1111111111vw;
  color: #000B4B;
  line-height: 1.8;
  opacity: 0.6;
  margin: 0;
}
@media (max-width: 768px) {
  .about-purpose-vision-coc__text {
    font-size: 3.5897435897vw;
  }
}
.about-purpose-vision-coc__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-purpose-vision-coc__certificate {
  text-align: center;
}
.about-purpose-vision-coc__certificate img {
  width: 18.125vw;
  height: 26.4583333333vw;
  object-fit: cover;
}
.about-purpose-vision-coc__certificate-text {
  font-size: 1.1111111111vw;
  color: #000000;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .about-purpose-vision-coc__certificate-text {
    font-size: 3.5897435897vw;
  }
}
.about-purpose-vision-coc__report-title {
  font-size: 2.7777777778vw;
  font-weight: bold;
  line-height: 1.5;
  color: #000B4B;
  margin: 0;
}
@media (max-width: 768px) {
  .about-purpose-vision-coc__report-title {
    font-size: 8.2051282051vw;
  }
}
.about-purpose-vision-coc__report-image {
  width: 33.3333333333vw;
  height: 37.5vw;
  object-fit: cover;
  border-radius: 0.5555555556vw;
}
@media (max-width: 768px) {
  .about-purpose-vision-coc__report-image {
    width: 82.0512820513vw;
    height: 92.3076923077vw;
  }
}
.about-purpose-vision-coc__member-image {
  width: 51.1111111111vw;
  height: 30.5555555556vw;
  border-radius: 1.1111111111vw;
}
.about-purpose-vision-coc__member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-purpose-vision-coc__member-info {
  display: flex;
  flex-direction: row;
  align-items: end;
  gap: 0.5555555556vw;
}
.about-purpose-vision-coc__member-name {
  font-size: 2.2222222222vw;
}
.about-purpose-vision-coc__member-title {
  font-size: 1.6666666667vw;
}
.about-purpose-vision-coc__member-history {
  font-size: 0.9722222222vw;
  line-height: 1.8;
}

.about-purpose-vision-coc-table {
  width: 69.4444444444vw;
  background: #ffffff;
  border-radius: 1.1111111111vw;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  border-collapse: separate;
  border-spacing: 0;
  padding: 16px;
}
@media (max-width: 768px) {
  .about-purpose-vision-coc-table {
    width: 100%;
  }
}
.about-purpose-vision-coc-table tbody tr {
  display: flex;
  gap: 4.4444444444vw;
  font-size: 1.1111111111vw;
}
.about-purpose-vision-coc-table tbody tr:last-child {
  border-bottom: none;
}
.about-purpose-vision-coc-table tbody td {
  padding: 1.3888888889vw;
  vertical-align: middle;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .about-purpose-vision-coc-table tbody td {
    padding: 3.8461538462vw;
  }
}
.about-purpose-vision-coc-table .table-title {
  font-size: 1.1111111111vw;
  font-weight: 300;
  color: #000000;
  line-height: 1.5;
  width: 12.5vw;
  height: auto;
  background: rgba(0, 0, 0, 0.05);
  padding: 1.6666666667vw;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .about-purpose-vision-coc-table .table-title {
    font-size: 4.6153846154vw;
    width: 35%;
    padding: 3.8461538462vw;
  }
}
.about-purpose-vision-coc-table .table-title:first-child {
  border-radius: 8px 8px 0 0;
}
.about-purpose-vision-coc-table .table-title:last-child {
  border-radius: 0 0 8px 8px;
}
.about-purpose-vision-coc-table .table-description {
  font-size: 1.1111111111vw;
  color: #000B4B;
  line-height: 1.8;
  opacity: 0.6;
}
@media (max-width: 768px) {
  .about-purpose-vision-coc-table .table-description {
    font-size: 3.5897435897vw;
  }
}

.about-purpose-vision-coc--report {
  width: 38.8888888889vw;
  height: auto;
  padding: 2.2222222222vw;
}
.about-purpose-vision-coc--report__report-list-item {
  font-size: 1.1111111111vw;
  color: #000B4B;
  line-height: 1.8;
  opacity: 0.6;
  margin: 0;
}
@media (max-width: 768px) {
  .about-purpose-vision-coc--report__report-list-item {
    font-size: 3.5897435897vw;
  }
}

.about-purpose-vision-coc--reportWide {
  width: 66.6666666667vw;
  height: auto;
  padding: 2.2222222222vw;
}

.about-intro-header,
.about-purpose-header {
  --parallax-y: 0px;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

/* Footer Styles */
.footer {
  background: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.6);
  padding: 5.5555555556vw 2.7777777778vw;
  position: relative;
  overflow: hidden;
  border-radius: 1.1111111111vw;
  margin: 11.1111111111vw 2.7777777778vw 5.5555555556vw 2.7777777778vw;
  z-index: 1;
  backdrop-filter: blur(32px);
}
.footer .footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
}
@media (max-width: 768px) {
  .footer .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .footer .footer-logo {
    text-align: center;
  }
}
.footer .footer-logo .footer-logo-img {
  width: 16.1111111111vw;
  height: auto;
}
@media (max-width: 768px) {
  .footer .footer-logo .footer-logo-img {
    width: 35.8974358974vw;
  }
}
.footer .footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.4444444444vw;
}
@media (max-width: 768px) {
  .footer .footer-links {
    grid-template-columns: 1fr;
    gap: 6.1538461538vw;
  }
}
@media (max-width: 768px) {
  .footer .footer-column {
    text-align: left;
  }
}
.footer .footer-column .footer-column-title {
  font-size: 1.3888888889vw;
  font-weight: 600;
  color: rgba(0, 11, 75, 0.6);
}
@media (max-width: 768px) {
  .footer .footer-column .footer-column-title {
    font-size: 4.1025641026vw;
  }
}
.footer .footer-column .footer-link-list {
  padding: 0;
  margin: 0;
}
.footer .footer-column .footer-link-list li {
  margin-bottom: 0.5555555556vw;
}
@media (max-width: 768px) {
  .footer .footer-column .footer-link-list li {
    margin-bottom: 2.0512820513vw;
  }
}
.footer .footer-column .footer-link-list li:last-child {
  margin-bottom: 0;
}
.footer .footer-column .footer-link-list .footer-link {
  color: rgba(0, 11, 75, 0.6);
  font-size: 1.3888888889vw;
  transition: all 0.3s ease;
  display: inline-block;
}
@media (max-width: 768px) {
  .footer .footer-column .footer-link-list .footer-link {
    font-size: 3.5897435897vw;
  }
}

.footer-copyright {
  margin: 0 auto;
}
.footer-copyright p {
  margin: 0;
  font-size: 1.3888888889vw;
  opacity: 0.7;
  text-align: center;
}
@media (max-width: 768px) {
  .footer-copyright p {
    font-size: 3.0769230769vw;
  }
}

/* CSS変数の定義 */
:root {
  --c-glass: #bbbbbc;
  --c-light: #fff;
  --c-dark: #000;
  --c-content: #224;
  --c-action: #0052f5;
  --c-bg: #e8e8e9;
  --glass-reflex-dark: 1;
  --glass-reflex-light: 1;
  --saturation: 150%;
}

/* ガラスカーソルの基本スタイル */
.glass-cursor {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(187, 187, 188, 0.3);
  backdrop-filter: blur(0px) url(#switcher) saturate(var(--saturation));
  -webkit-backdrop-filter: blur(0px) url(#switcher) saturate(var(--saturation));
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 20px rgba(187, 187, 188, 0.4);
  pointer-events: none;
  z-index: 99999 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translate(-50%, -50%);
  will-change: transform;
}
@media (max-width: 768px) {
  .glass-cursor {
    display: none;
  }
}

/* Chrome用の元の設定を復元 */
.glass-cursor:not(.safari-optimized):not(.firefox-optimized) {
  backdrop-filter: blur(0px) url(#switcher) saturate(var(--saturation));
  -webkit-backdrop-filter: blur(0px) url(#switcher) saturate(var(--saturation));
}

/* Safari用のフォールバック */
@supports (-webkit-backdrop-filter: none) and (not (backdrop-filter: none)) {
  .glass-cursor {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: blur(0px) saturate(var(--saturation)) !important;
    background-color: rgba(187, 187, 188, 0.25) !important;
  }
}
/* Firefox用のフォールバック */
@supports (not (-webkit-backdrop-filter: none)) and (not (backdrop-filter: none)) {
  .glass-cursor.firefox-optimized {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background-color: rgba(187, 187, 188, 0.35) !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
  }
}
/* Safari専用のCSSのみblur効果 */
@supports (-webkit-backdrop-filter: none) and (not (backdrop-filter: none)) {
  .glass-cursor.safari-optimized {
    filter: none !important;
    backdrop-filter: blur(2px) !important;
    -webkit-backdrop-filter: blur(2px) !important;
    background-color: rgba(187, 187, 188, 0.2) !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    mask: none !important;
    -webkit-mask: none !important;
  }
}
/* Safari専用の特別なクラス */
.glass-cursor.safari-optimized {
  filter: none !important;
  backdrop-filter: blur(2px) !important;
  -webkit-backdrop-filter: blur(2px) !important;
  background: rgba(187, 187, 188, 0.2) !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  transform: translate(-50%, -50%) translateZ(0) !important;
  -webkit-transform: translate(-50%, -50%) translateZ(0) !important;
  will-change: transform !important;
  mask: none !important;
  -webkit-mask: none !important;
}

/* Firefox専用の特別なクラス */
.glass-cursor.firefox-optimized {
  filter: none !important;
  backdrop-filter: blur(2px) !important;
  -webkit-backdrop-filter: blur(2px) !important;
  background: rgba(187, 187, 188, 0.25) !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  transform: translate(-50%, -50%) translateZ(0) !important;
  -webkit-transform: translate(-50%, -50%) translateZ(0) !important;
  will-change: transform !important;
  mask: none !important;
  -webkit-mask: none !important;
}

/* ホバー時の効果 */
.glass-cursor:hover {
  background-color: rgba(187, 187, 188, 0.18) !important;
  backdrop-filter: blur(0px) url(#switcher) saturate(180%) !important;
  -webkit-backdrop-filter: blur(0px) url(#switcher) saturate(180%) !important;
}

/* クリック時の効果 */
.glass-cursor:active,
.glass-cursor.clicking {
  background-color: rgba(187, 187, 188, 0.25) !important;
  backdrop-filter: blur(0px) url(#switcher) saturate(200%) !important;
  -webkit-backdrop-filter: blur(0px) url(#switcher) saturate(200%) !important;
}

/* インタラクティブ要素上での効果 */
.glass-cursor.interactive-hover {
  background-color: rgba(187, 187, 188, 0.22) !important;
  backdrop-filter: blur(0px) url(#switcher) saturate(200%) !important;
  -webkit-backdrop-filter: blur(0px) url(#switcher) saturate(200%) !important;
}

/* デフォルトカーソルを表示 */
body {
  cursor: auto;
}

/* インタラクティブ要素のデフォルトカーソル */
a, button, input, textarea, select, [role=button], [tabindex] {
  cursor: pointer;
}

.page-about .glass-button-1 {
  position: absolute !important;
  top: 10% !important;
  left: -1.7% !important;
  width: 25% !important;
}
.page-about .glass-button-2 {
  position: absolute !important;
  top: 21% !important;
  left: 56% !important;
  width: 36% !important;
}
.page-about .glass-button-3 {
  position: absolute !important;
  top: 31% !important;
  left: 4% !important;
  width: 20% !important;
}
.page-about .glass-button-4 {
  position: absolute !important;
  top: 33% !important;
  left: 2% !important;
  width: 20% !important;
}
.page-about .glass-button-5 {
  position: absolute !important;
  top: 41% !important;
  left: 84% !important;
  width: 18% !important;
}
.page-about .glass-button-6 {
  position: absolute !important;
  top: 42% !important;
  left: 80% !important;
  width: 14% !important;
}
.page-about .glass-button-7 {
  position: absolute !important;
  top: 56% !important;
  left: 4% !important;
  width: 36% !important;
}
.page-about .glass-button-8 {
  position: absolute !important;
  top: 77% !important;
  left: 70% !important;
  width: 20% !important;
}

.page-company .glass-button-1 {
  position: absolute !important;
  top: 10% !important;
  left: -1.7% !important;
  width: 25% !important;
}
.page-company .glass-button-2 {
  position: absolute !important;
  top: 21% !important;
  left: 56% !important;
  width: 36% !important;
}
.page-company .glass-button-3 {
  position: absolute !important;
  top: 31% !important;
  left: 4% !important;
  width: 20% !important;
}
.page-company .glass-button-4 {
  position: absolute !important;
  top: 33% !important;
  left: 2% !important;
  width: 20% !important;
}
.page-company .glass-button-5 {
  position: absolute !important;
  top: 41% !important;
  left: 84% !important;
  width: 18% !important;
}
.page-company .glass-button-6 {
  position: absolute !important;
  top: 46% !important;
  left: 80% !important;
  width: 14% !important;
}
.page-company .glass-button-7 {
  position: absolute !important;
  top: 56% !important;
  left: 4% !important;
  width: 36% !important;
}
.page-company .glass-button-8 {
  position: absolute !important;
  top: 77% !important;
  left: 70% !important;
  width: 20% !important;
}

.page-member .glass-button-1 {
  position: absolute !important;
  top: 10% !important;
  left: -1.7% !important;
  width: 25% !important;
}
.page-member .glass-button-2 {
  position: absolute !important;
  top: 21% !important;
  left: 56% !important;
  width: 36% !important;
}
.page-member .glass-button-3 {
  position: absolute !important;
  top: 46% !important;
  left: 4% !important;
  width: 20% !important;
}
.page-member .glass-button-4 {
  position: absolute !important;
  top: 49% !important;
  left: 2% !important;
  width: 20% !important;
}
.page-member .glass-button-5 {
  position: absolute !important;
  top: 55% !important;
  left: 84% !important;
  width: 18% !important;
}
.page-member .glass-button-6 {
  position: absolute !important;
  top: 58% !important;
  left: 80% !important;
  width: 14% !important;
}
.page-member .glass-button-7 {
  position: absolute !important;
  top: 56% !important;
  left: 4% !important;
  width: 36% !important;
}
.page-member .glass-button-8 {
  position: absolute !important;
  top: 77% !important;
  left: 70% !important;
  width: 20% !important;
}

.page-report .glass-button-1 {
  position: absolute !important;
  top: 10% !important;
  left: -1.7% !important;
  width: 25% !important;
}
.page-report .glass-button-2 {
  position: absolute !important;
  top: 21% !important;
  left: 56% !important;
  width: 36% !important;
}
.page-report .glass-button-3 {
  position: absolute !important;
  top: 33% !important;
  left: 4% !important;
  width: 20% !important;
}
.page-report .glass-button-4 {
  position: absolute !important;
  top: 36% !important;
  left: 2% !important;
  width: 20% !important;
}
.page-report .glass-button-5 {
  position: absolute !important;
  top: 41% !important;
  left: 84% !important;
  width: 18% !important;
}
.page-report .glass-button-6 {
  position: absolute !important;
  top: 44% !important;
  left: 80% !important;
  width: 14% !important;
}
.page-report .glass-button-7 {
  position: absolute !important;
  top: 56% !important;
  left: 4% !important;
  width: 36% !important;
}
.page-report .glass-button-8 {
  position: absolute !important;
  top: 77% !important;
  left: 70% !important;
  width: 20% !important;
}

.page-history .glass-button-1 {
  position: absolute !important;
  top: 10% !important;
  left: -1.7% !important;
  width: 25% !important;
}
.page-history .glass-button-2 {
  position: absolute !important;
  top: 21% !important;
  left: 56% !important;
  width: 36% !important;
}
.page-history .glass-button-3 {
  position: absolute !important;
  top: 34% !important;
  left: 4% !important;
  width: 20% !important;
}
.page-history .glass-button-4 {
  position: absolute !important;
  top: 42% !important;
  left: 2% !important;
  width: 20% !important;
}
.page-history .glass-button-5 {
  position: absolute !important;
  top: 62% !important;
  left: 84% !important;
  width: 18% !important;
}
.page-history .glass-button-6 {
  position: absolute !important;
  top: 67% !important;
  left: 85% !important;
  width: 14% !important;
}
.page-history .glass-button-7 {
  position: absolute !important;
  top: 56% !important;
  left: 4% !important;
  width: 36% !important;
}
.page-history .glass-button-8 {
  position: absolute !important;
  top: 87% !important;
  left: 70% !important;
  width: 20% !important;
}

.page-ma .glass-button-1 {
  position: absolute !important;
  top: 10% !important;
  left: -1.7% !important;
  width: 25% !important;
}
.page-ma .glass-button-2 {
  position: absolute !important;
  top: 21% !important;
  left: 56% !important;
  width: 36% !important;
}
.page-ma .glass-button-3 {
  position: absolute !important;
  top: 31% !important;
  left: 4% !important;
  width: 20% !important;
}
.page-ma .glass-button-4 {
  position: absolute !important;
  top: 33% !important;
  left: 2% !important;
  width: 20% !important;
}
.page-ma .glass-button-5 {
  position: absolute !important;
  top: 41% !important;
  left: 84% !important;
  width: 18% !important;
}
.page-ma .glass-button-6 {
  position: absolute !important;
  top: 43% !important;
  left: 80% !important;
  width: 14% !important;
}
.page-ma .glass-button-7 {
  position: absolute !important;
  top: 56% !important;
  left: 4% !important;
  width: 36% !important;
}
.page-ma .glass-button-8 {
  position: absolute !important;
  top: 77% !important;
  left: 70% !important;
  width: 20% !important;
}
.page-ma .glass-button-5,
.page-ma .glass-button-6,
.page-ma .glass-button-7,
.page-ma .glass-button-8 {
  display: none;
}
@media (min-width: 769px) {
  .page-ma:not(.guideline-open) .glass-button-1 {
    top: 13% !important;
  }
  .page-ma:not(.guideline-open) .glass-button-2 {
    top: 28% !important;
  }
  .page-ma:not(.guideline-open) .glass-button-3 {
    top: 42% !important;
  }
  .page-ma:not(.guideline-open) .glass-button-4 {
    top: 45% !important;
  }
}
.page-ma.guideline-open .glass-button-5,
.page-ma.guideline-open .glass-button-6,
.page-ma.guideline-open .glass-button-7,
.page-ma.guideline-open .glass-button-8 {
  display: block;
}

.page-tob .glass-button-1 {
  position: absolute !important;
  top: 12% !important;
  left: -1.7% !important;
  width: 25% !important;
}
.page-tob .glass-button-2 {
  position: absolute !important;
  top: 23% !important;
  left: 73.6% !important;
  width: 30% !important;
}
.page-tob .glass-button-3 {
  position: absolute !important;
  top: 34% !important;
  left: 1% !important;
  width: 20% !important;
}
.page-tob .glass-button-4 {
  position: absolute !important;
  top: 45% !important;
  left: 62% !important;
  width: 28% !important;
}
.page-tob .glass-button-5 {
  position: absolute !important;
  top: 56% !important;
  left: 5.5% !important;
  width: 22% !important;
}
.page-tob .glass-button-6 {
  position: absolute !important;
  top: 67% !important;
  left: 70% !important;
  width: 26% !important;
}
.page-tob .glass-button-7 {
  position: absolute !important;
  top: 78% !important;
  left: 10% !important;
  width: 24% !important;
}

.page-inheritance .glass-button-1 {
  position: absolute !important;
  top: 25% !important;
  left: -1.7% !important;
  width: 25% !important;
}
.page-inheritance .glass-button-2 {
  position: absolute !important;
  top: 60% !important;
  left: 73.6% !important;
  width: 30% !important;
}

body:not(.page-template) .glass-button-1 {
  position: absolute !important;
  top: 5% !important;
  left: -1.7% !important;
  width: 25% !important;
}
body:not(.page-template) .glass-button-2 {
  position: absolute !important;
  top: 13.6% !important;
  left: 73.6% !important;
  width: 30% !important;
}
body:not(.page-template) .glass-button-3 {
  position: absolute !important;
  top: 21% !important;
  left: 1% !important;
  width: 20% !important;
}
body:not(.page-template) .glass-button-4 {
  position: absolute !important;
  top: 27% !important;
  left: 62% !important;
  width: 28% !important;
}
body:not(.page-template) .glass-button-5 {
  position: absolute !important;
  top: 35% !important;
  left: 5.5% !important;
  width: 22% !important;
}
body:not(.page-template) .glass-button-6 {
  position: absolute !important;
  top: 47% !important;
  left: 62% !important;
  width: 26% !important;
}
body:not(.page-template) .glass-button-7 {
  position: absolute !important;
  top: 60% !important;
  left: 54% !important;
  width: 24% !important;
}
body:not(.page-template) .glass-button-8 {
  position: absolute !important;
  top: 65% !important;
  left: 9% !important;
  width: 28% !important;
}
body:not(.page-template) .glass-button-9 {
  position: absolute !important;
  top: 75% !important;
  left: 1% !important;
  width: 24% !important;
}

@media screen and (max-width: 768px) {
  .glass-button-1,
  .glass-button-1.glass-button,
  div.glass-button-1,
  div[class*=glass-button-1] {
    position: absolute !important;
    top: 240px !important;
    left: 10px !important;
    right: auto !important;
    bottom: auto !important;
    will-change: auto !important;
    backface-visibility: hidden !important;
  }
  .glass-button-2,
  .glass-button-2.glass-button,
  div.glass-button-2,
  div[class*=glass-button-2] {
    position: absolute !important;
    top: 1200px !important;
    left: auto !important;
    right: 10px !important;
    bottom: auto !important;
    will-change: auto !important;
    backface-visibility: hidden !important;
  }
  .glass-button.glass-button-1 {
    position: absolute !important;
    top: 240px !important;
    left: 10px !important;
    right: auto !important;
    bottom: auto !important;
    will-change: auto !important;
    backface-visibility: hidden !important;
  }
  .glass-button.glass-button-2 {
    position: absolute !important;
    top: 1200px !important;
    left: auto !important;
    right: 10px !important;
    bottom: auto !important;
    will-change: auto !important;
    backface-visibility: hidden !important;
  }
}
/* Test comment for auto-compilation */

/*# sourceMappingURL=main.css.map */
