/* ===========================================
   Hero Section
   =========================================== */
.hero {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

.hero__content {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 90px 100px 90px 120px;
}

.hero__title {
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 2.625rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.12em;
}

.hero__title-line {
  display: block;
}

.hero__subtitle {
  color: #ffffff;
  font-family: var(--font-gothic);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.25em;
}

.hero__subtitle-line {
  display: block;
}

.hero__logo {
  margin-top: 38px;
}

.hero__logo img {
  height: 43px;
  width: 200px;
  object-fit: contain;
}

.hero__woman-sp {
  display: none;
}

.hero__woman-pc {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: right bottom;
  z-index: 5;
}

/* ===========================================
   Statistics Section
   =========================================== */
.stats {
  padding: 30px 20px;
  background-color: var(--color-white);
}

.stats__container {
  max-width: var(--container-width);
  margin: 0 auto;
}

.stats__grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.stats__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stats__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.stats__text {
  text-align: left;
}

.stats__label {
  font-family: var(--font-gothic);
  font-size: 0.875rem;
  font-weight: 500;
  color: #3C3C3C;
  line-height: 1.3;
  margin: 0;
}

.stats__sublabel {
  font-family: var(--font-gothic);
  font-size: 0.875rem;
  font-weight: 500;
  color: #3C3C3C;
  line-height: 1.3;
  margin: 0;
}

.stats__number {
  font-family: var(--font-number);
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(92deg, #6515B9 30%, #464BB4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats__unit {
  font-family: var(--font-number);
  font-size: 1.0625rem;
  font-weight: 700;
  background: linear-gradient(92deg, #6515B9 30%, #464BB4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================================
   Photo Gallery
   =========================================== */
.gallery {
  background: linear-gradient(102.73deg, #6515B9 30.239%, #464BB4 100%);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}

.gallery__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.gallery__fade--left {
  left: 0;
  background: linear-gradient(90deg, rgba(101, 21, 185, 0.8) 0%, transparent 100%);
}

.gallery__fade--right {
  right: 0;
  background: linear-gradient(270deg, rgba(70, 75, 180, 0.8) 0%, transparent 100%);
}

.gallery__track {
  display: flex;
  width: fit-content;
  animation: gallery-scroll 40s linear infinite;
  will-change: transform;
}

.gallery__track:hover {
  animation-play-state: paused;
}

.gallery__slide {
  display: flex;
  flex-shrink: 0;
  gap: 20px;
  padding-right: 20px;
}

.gallery__item {
  flex: 0 0 200px;
  height: 160px;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid #FFFFFF;
  box-sizing: border-box;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes gallery-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
