/* PC_SUB DEDICATED FILE */
/* =========================================================
   33_environment.css (PC)
   - Environment page
   ========================================================= */

.env-page{
  padding: 12px 0 40px;
}

.env-inner{
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
}

.env-map-block{
  margin-bottom: 38px;
}

.env-map-head{
  margin: 34px 0 26px;
  text-align: center;

  opacity: 0;
  transform: translateY(-26px);
  animation: envSectionHeadFadeDown .95s cubic-bezier(.22,.61,.36,1) both;
}

.env-map-title{
  margin: 0;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.04em;
  color: #444;
  white-space: nowrap;
}

.env-map-title em{
  font-style: normal;
  color: #c89459;
  font-weight: 550;
}

.env-map-guide{
  margin: 0 0 18px;
  text-align: right;
  font-size: 14px;
  font-weight: 600;
  color: #8d1d58;
}

.env-map-stage{
  position: relative;
  overflow: hidden;
  background: #f4f4f4;
  line-height: 0;
}

.env-map-image{
  display: block;
  width: 100%;
  height: auto;
  transform-origin: center;
  will-change: transform;
  animation: envMapZoomIn 12s cubic-bezier(.16, 1, .3, 1) forwards;
}

@keyframes envMapZoomIn{
  from{ transform: scale(1.08); }
  to{ transform: scale(1.02); }
}

@keyframes envSectionHeadFadeDown{
  from{
    opacity: 0;
    transform: translateY(-26px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

.env-magnifier{
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 3px solid #8d1d58;
  box-shadow: 0 18px 50px rgba(0,0,0,.24);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  pointer-events: none;
  display: none;
  z-index: 4;
}

.env-map-note{
  margin-top: 10px;
}

.env-map-note p{
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: #777;
}

.env-feature-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
}

.env-feature-card{
  text-align: center;
}

.env-feature-thumb{
  width: 100%;
  margin: 0 0 16px;
  overflow: hidden;
  background: #f3f3f3;
  aspect-ratio: 1200 / 650;
  line-height: 0;
}

.env-feature-thumb img{
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center center;
}

.env-feature-title{
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: #8d1d58;
}

.env-feature-desc{
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  letter-spacing: -0.02em;
}

@media (prefers-reduced-motion: reduce){
  .env-map-head{
    opacity: 1;
    transform: none;
    animation: none;
  }

  .env-map-image{
    animation: none;
    transform: none;
  }
}
