/* ===== About Page Styles ===== */
/* About Hero */
.about-hero {
  max-height: 362px;
  min-height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.about-hero-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin: 0 0 24px;
}

.about-hero-title .hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.1em;
}

.about-hero-title .hero-main {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  color: white;
  letter-spacing: 0.05em;
  line-height: 1;
}

.about-hero-lead {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: white;
  margin: 0;
  font-weight: 500;
  line-height: 1.8;
}

/* Section Headers */
.about-section-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--foreground);
}

.about-section-subtitle {
  font-size: 1rem;
  color: var(--primary);
  margin: 0 0 24px 0;
  font-weight: 500;
}

/* Message Section */
.about-message-section {
  padding: 100px 0;
  background: var(--background);
}

.about-message-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 48px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

@media (min-width: 1024px) {
  .about-message-layout {
    -ms-grid-columns: 400px 1fr;
        grid-template-columns: 400px 1fr;
    gap: 80px;
  }
}

.about-message-left {
  display: -ms-grid;
  display: grid;
  gap: 8px;
  text-align: left;
}

.about-message-right {
  display: -ms-grid;
  display: grid;
  gap: 32px;
}

.about-message-heading {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: bold;
  line-height: 1.6;
  margin: 0;
  color: #000;
}

.about-message-lead {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.7;
  margin: 0;
  color: var(--primary);
}

.about-message-text {
  display: -ms-grid;
  display: grid;
  gap: 16px;
}

.about-message-text p {
  margin: 0;
  line-height: 1.9;
  color: #000;
  font-weight: bold;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
}

.about-message-question {
  font-weight: bold;
  color: #000 !important;
  font-size: clamp(1rem, 2vw, 1.25rem) !important;
  margin-top: 8px;
}

.about-message-question strong {
  color: var(--primary);
}

.about-message-signature {
  text-align: right;
  font-style: normal;
  margin-top: 24px !important;
  font-size: 1rem !important;
  color: #000;
  font-weight: bold;
}

/* Company Profile Section */
.company-profile-section {
  padding: 100px 0;
  background: var(--background);
}

.company-profile-header {
  margin-bottom: 80px;
  text-align: left;
}

.company-profile-table {
  max-width: 600px;
  margin: 0 auto;
  margin-left: 0;
  background: transparent;
}

.profile-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 200px 1fr;
      grid-template-columns: 200px 1fr;
  gap: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 32px 0;
}

.profile-row:first-child {
  padding-top: 0;
}

@media (max-width: 768px) {
  .profile-row {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }
}

.profile-label {
  font-weight: bold;
  font-size: 1rem;
  color: #000;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .profile-label {
    font-size: 0.875rem;
  }
}

.profile-value {
  color: #000;
  font-weight: bold;
  line-height: 1.8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .profile-value {
    font-size: 0.9375rem;
  }
}

/* Access Section */
.access-section {
  padding: 100px 0;
  background: var(--background);
}

.access-header {
  margin-bottom: 64px;
  text-align: left;
}

.access-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .access-layout {
    -ms-grid-columns: 1fr 2fr;
        grid-template-columns: 1fr 2fr;
    gap: 64px;
  }
}

.access-info {
  display: -ms-grid;
  display: grid;
  gap: 40px;
}

.access-info-item {
  display: -ms-grid;
  display: grid;
  gap: 16px;
}

.access-info-label {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin: 0;
  letter-spacing: 0.05em;
}

.access-info-text {
  font-size: 1rem;
  line-height: 1.9;
  color: #000;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  .access-info-text {
    font-size: 14px;
  }
}

.access-map {
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.access-map iframe {
  display: block;
  width: 100%;
  min-height: 400px;
}

/* Member Section Styles for About Page */
.member-section {
  padding: 100px 0;
  background: #f5f5f5;
}

.member-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .member-layout {
    -ms-grid-columns: 400px 1fr;
        grid-template-columns: 400px 1fr;
    gap: 80px;
  }
}

.member-left {
  display: -ms-grid;
  display: grid;
  gap: 16px;
}

.member-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--foreground);
}

.member-subtitle {
  font-size: 1rem;
  color: var(--primary);
  margin: 0 0 24px 0;
  font-weight: 500;
}

.member-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #000;
  font-weight: bold;
  margin: 0 0 32px 0;
}

.btn-member-recruit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: transparent;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  border: 2px solid var(--primary);
  border-radius: 60px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .btn-member-recruit {
    display: none;
  }
}

.btn-member-recruit svg {
  width: 20px;
  height: 20px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.btn-member-recruit:hover {
  background: var(--primary);
  color: white;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 24px rgba(0, 208, 255, 0.3);
          box-shadow: 0 8px 24px rgba(0, 208, 255, 0.3);
}

.btn-member-recruit:hover svg {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.member-right {
  display: -ms-grid;
  display: grid;
  gap: 32px;
}

.member-carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.member-carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.member-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 12px);
          flex: 0 0 calc(50% - 12px);
  display: -ms-grid;
  display: grid;
  gap: 16px;
}

@media (min-width: 1024px) {
  .member-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(33.333% - 16px);
            flex: 0 0 calc(33.333% - 16px);
  }
}

.member-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--muted);
}

.member-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.member-card:hover .member-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.member-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--foreground);
}

.member-name {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  color: var(--foreground);
  text-align: left;
}

.member-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.member-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: white;
  color: var(--foreground);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.member-nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.member-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .member-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80%;
            flex: 0 0 80%;
  }
}

/* Recruit CTA Section */
.recruit-cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.recruit-cta-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: white;
  border: 2px solid var(--border);
  border-radius: 32px;
  padding: 80px 48px;
  display: -ms-grid;
  display: grid;
  gap: 32px;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.recruit-cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin: 0;
  color: var(--foreground);
}

.recruit-cta-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
  color: var(--muted-foreground);
  margin: 0;
}

.btn-recruit-cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  padding: 20px 48px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 60px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 8px 24px rgba(0, 208, 255, 0.3);
          box-shadow: 0 8px 24px rgba(0, 208, 255, 0.3);
  margin: 16px auto 0;
}

.btn-recruit-cta svg {
  width: 20px;
  height: 20px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.btn-recruit-cta:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 12px 32px rgba(0, 208, 255, 0.4);
          box-shadow: 0 12px 32px rgba(0, 208, 255, 0.4);
  background: color-mix(in oklch, var(--primary), black 10%);
}

.btn-recruit-cta:hover svg {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

/* Recruit Banner Section */
.recruit-banner {
  position: relative;
  height: auto;
  border-radius: 24px;
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -webkit-box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
          box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .recruit-banner {
    border-radius: 16px;
    min-height: 300px;
  }
}

.recruit-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.recruit-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.recruit-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.92) 0%, rgba(59, 130, 246, 0.88) 50%, rgba(37, 99, 235, 0.9) 100%);
  z-index: 1;
}

.recruit-content {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  text-align: center;
  padding: 48px;
}

@media (max-width: 768px) {
  .recruit-content {
    padding: 32px 24px;
    gap: 20px;
  }
}

.recruit-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  color: white;
  margin: 0;
  letter-spacing: 0.05em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.recruit-sub {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: 0.1em;
}

.recruit-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 16px;
}

@media (max-width: 640px) {
  .recruit-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    max-width: 320px;
  }
}

.recruit-actions .btn {
  padding: 18px 40px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 60px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .recruit-actions .btn {
    width: 100%;
    padding: 20px 32px;
  }
}

.recruit-actions .btn.primary {
  background: white;
  color: var(--primary);
  -webkit-box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
          box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.recruit-actions .btn.primary:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 12px 32px rgba(255, 255, 255, 0.4);
          box-shadow: 0 12px 32px rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.95);
}

.recruit-actions .btn.outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.recruit-actions .btn.outline:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
          box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.recruit-actions .btn.pill {
  border-radius: 60px;
}

.recruit-actions .btn.lg {
  padding: 18px 40px;
  font-size: 1rem;
}

@media (max-width: 640px) {
  .recruit-actions .btn.lg {
    padding: 20px 32px;
  }
}

@media (max-width: 768px) {
  .recruit-cta-box {
    padding: 60px 32px;
  }
}
/*# sourceMappingURL=about.css.map */