@charset "UTF-8";
/* ===== About Page Styles ===== */
/* About Hero */
.about-hero {
  min-height: calc(var(--vh, 1vh) * 70);
  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(2rem, 6vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--foreground);
}

@media (max-width: 768px) {
  .about-section-title {
    font-size: 1.75rem;
    line-height: 1;
  }
}

.about-section-subtitle {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--muted-foreground);
  margin: 8px 0 0;
}

@media (max-width: 768px) {
  .about-section-subtitle {
    font-size: 0.875rem;
    margin: 4px 0 0;
  }
}

/* Message Section */
.about-message-section {
  padding: 120px 0;
  background: var(--background);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .about-message-section {
    padding: 40px 0 80px;
  }
}

/* 流体エフェクト背景 */
.about-message-fluid-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.about-message-fluid-shape {
  position: absolute;
  -webkit-filter: blur(60px);
          filter: blur(60px);
  opacity: 0.15;
  -webkit-animation: floatRotate 20s ease-in-out infinite;
          animation: floatRotate 20s ease-in-out infinite;
}

.about-message-fluid-shape path {
  fill: currentColor;
}

.about-message-fluid-shape-1 {
  width: 400px;
  height: 400px;
  color: #00d0ff;
  top: -100px;
  left: -100px;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.about-message-fluid-shape-2 {
  width: 500px;
  height: 500px;
  color: #ff8c42;
  bottom: -150px;
  right: -150px;
  -webkit-animation-delay: -7s;
          animation-delay: -7s;
}

.about-message-fluid-shape-3 {
  width: 350px;
  height: 350px;
  color: #7dd181;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation-delay: -14s;
          animation-delay: -14s;
}

.about-message-layout {
  position: relative;
  z-index: 1;
  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 (max-width: 768px) {
  .about-message-layout {
    gap: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

.about-message-left {
  display: -ms-grid;
  display: grid;
  gap: 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 768px) {
  .about-message-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    margin-bottom: 24px;
  }
}

.about-message-image {
  width: 100%;
  aspect-ratio: 3 / 3;
  border-radius: 50%;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.9);
}

.about-message-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1023px) {
  .about-message-image {
    width: 140px;
    height: 140px;
    min-width: 140px;
    margin: 0;
  }
}

.about-message-header {
  display: -ms-grid;
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

@media (min-width: 1024px) {
  .about-message-header {
    display: none;
  }
}

@media (max-width: 768px) {
  .about-message-header {
    margin-bottom: 0;
  }
}

.about-message-right {
  padding: 48px 0;
  display: -ms-grid;
  display: grid;
  gap: 28px;
}

@media (max-width: 768px) {
  .about-message-right {
    padding: 0;
    gap: 20px;
  }
}

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

@media (max-width: 768px) {
  .about-message-heading {
    font-size: 1.375rem;
    line-height: 1.7;
    font-weight: 700;
  }
}

@media (max-width: 768px) {
  .about-message-heading br {
    display: none;
  }
}

.about-message-lead {
  font-size: clamp(1.125rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.7;
  margin: 0;
  color: #60e772;
}

@media (max-width: 768px) {
  .about-message-lead {
    font-size: 1.125rem;
  }
}

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

.about-message-text p {
  margin: 0;
  line-height: 1.9;
  color: var(--muted-foreground);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
}

.about-message-question {
  font-weight: 600;
  color: #60e772 !important;
  font-size: clamp(0.9375rem, 2vw, 1.0625rem) !important;
  margin-top: 12px;
  padding: 20px;
  background: rgba(0, 188, 212, 0.1);
  border-radius: 12px;
  border-left: 4px solid #60e772;
}

@media (max-width: 768px) {
  .about-message-question {
    padding: 16px;
    font-size: 0.9375rem !important;
  }
}

.about-message-question strong {
  color: #60e772;
}

.about-message-signature {
  text-align: center;
  margin-top: 0px !important;
  font-size: 1rem !important;
  color: var(--foreground);
  font-weight: 600;
}

@media (max-width: 768px) {
  .about-message-signature {
    margin-top: 0px !important;
    text-align: left !important;
  }
}

/* Company Profile Section */
.company-profile-section {
  padding: 120px 0 0;
  background: #fff;
  position: relative;
}

@media (max-width: 768px) {
  .company-profile-section {
    padding: 80px 0 0;
  }
}

.company-profile-header {
  margin-bottom: 72px;
  text-align: center;
}

.company-profile-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  background: white;
}

.company-profile-table th {
  text-align: left;
  padding: 24px 32px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--foreground);
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  width: 200px;
  vertical-align: top;
}

@media (max-width: 768px) {
  .company-profile-table th {
    width: 80px;
    padding: 16px 10px;
    font-size: 0.9rem;
  }
}

.company-profile-table td {
  padding: 24px 32px;
  font-size: 0.95rem;
  color: var(--muted-foreground);
  line-height: 1.8;
  border: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
  .company-profile-table td {
    padding: 16px 10px;
    font-size: 0.9rem;
  }
}

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

@media (max-width: 768px) {
  .access-section {
    padding: 80px 0;
  }
}

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

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

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

.access-info {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  height: 100%;
}

.access-info-item {
  background: white;
  border: 2px solid rgba(0, 208, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  display: -ms-grid;
  display: grid;
  gap: 16px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.access-info-label {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0;
  letter-spacing: 0.02em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.access-info-label::before {
  content: '';
  width: 4px;
  height: 20px;
  background: linear-gradient(135deg, #00d0ff 0%, #7dd181 100%);
  border-radius: 2px;
}

.access-info-text {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--muted-foreground);
  margin: 0;
  padding-left: 12px;
}

.access-map {
  border-radius: 24px;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(0, 208, 255, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.access-map:hover {
  -webkit-box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
          box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 208, 255, 0.2);
}

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

/* Member Section Additional Styles for About Page */
.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;
}

.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);
}

/* 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);
}

@media (max-width: 768px) {
  .recruit-cta-box {
    padding: 60px 32px;
  }
}

/* Slideshow Section */
.about-slideshow-section {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
}

@media (max-width: 768px) {
  .about-slideshow-section {
    height: 300px;
  }
}

.about-slideshow-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.about-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
  transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
}

.about-slide.active {
  opacity: 1;
  visibility: visible;
}

.about-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-animation: slideZoom 12s ease-out infinite;
          animation: slideZoom 12s ease-out infinite;
}

@-webkit-keyframes slideZoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}

@keyframes slideZoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}

.about-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 208, 255, 0.3) 0%, rgba(125, 209, 129, 0.3) 50%, rgba(255, 140, 66, 0.3) 100%);
  z-index: 1;
}

.about-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 80px 60px;
  z-index: 2;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.75)), color-stop(70%, rgba(0, 0, 0, 0.4)), to(transparent));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-animation: slideUp 1s ease-out;
          animation: slideUp 1s ease-out;
}

@-webkit-keyframes slideUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .about-slide-content {
    padding: 48px 32px;
  }
}

.about-slide-badge {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00d0ff 0%, #7dd181 100%);
  border-radius: 50%;
  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;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  -webkit-box-shadow: 0 4px 16px rgba(0, 208, 255, 0.4);
          box-shadow: 0 4px 16px rgba(0, 208, 255, 0.4);
  margin-bottom: 8px;
  -webkit-animation: badgePulse 2s ease-in-out infinite;
          animation: badgePulse 2s ease-in-out infinite;
}

@-webkit-keyframes badgePulse {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 4px 16px rgba(0, 208, 255, 0.4);
            box-shadow: 0 4px 16px rgba(0, 208, 255, 0.4);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    -webkit-box-shadow: 0 6px 24px rgba(0, 208, 255, 0.6);
            box-shadow: 0 6px 24px rgba(0, 208, 255, 0.6);
  }
}

@keyframes badgePulse {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 4px 16px rgba(0, 208, 255, 0.4);
            box-shadow: 0 4px 16px rgba(0, 208, 255, 0.4);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    -webkit-box-shadow: 0 6px 24px rgba(0, 208, 255, 0.6);
            box-shadow: 0 6px 24px rgba(0, 208, 255, 0.6);
  }
}

.about-slide-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: white;
  margin: 0;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
}

.about-slide-text {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.8;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  font-weight: 500;
}

/* スライドインジケーター */
.about-slide-indicators {
  position: absolute;
  bottom: 32px;
  right: 60px;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .about-slide-indicators {
    right: 32px;
    bottom: 24px;
  }
}

.about-slide-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0;
}

.about-slide-indicator:hover {
  background: rgba(255, 255, 255, 0.6);
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.about-slide-indicator.active {
  background: white;
  width: 32px;
  border-radius: 6px;
  -webkit-box-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
          box-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
}
/*# sourceMappingURL=about.css.map */