@charset "UTF-8";

/* =========================================
   COMPANY PAGE STYLES
   ========================================= */

/* Common Section Layout */
.co-sec {
  padding: 0 0 clamp(100px, 15vw, 200px) 0;
  position: relative;
}
/* Parallax Text */
.bg-large-text {
  position: absolute;
  top: 0;
  right: -5vw;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 25vw;
  line-height: 1;
  color: #f8f8f8;
  z-index: -1;
  pointer-events: none;
}
.parallax-right {
  right: -5vw;
  top: 50px;
}
/* =========================================
   1. WHO WE ARE (Intro)
   ========================================= */
.intro-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(40px, 5vw, 80px);
}

.intro-left {
  width: 45%;
}

.v-catch {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}

.v-decor-bar {
  width: 0; /* JSで伸びる */
  height: 4px;
  background-color: var(--c-green);
}

.intro-right {
  width: 50%;
  padding-top: 10px;
}

.v-body-text p {
  font-size: 16px;
  line-height: 2.4;
  color: #444;
  margin-bottom: 40px;
  font-weight: 500;
  text-align: justify;
}
.v-body-text p:last-child {
  margin-bottom: 0;
}
.v-decor-bar {
  width: 0;
  height: 4px;
  background-color: var(--c-green);
}

/* --- Responsive (Intro) --- */
@media (max-width: 950px) {
  .intro-layout {
    flex-direction: column;
    gap: 40px;
  }
  .intro-left,
  .intro-right {
    width: 100%;
  }
}
/* =========================================
   2. OUTLINE (Profile & Map)
   ========================================= */
.outline-grid {
  display: flex;
  justify-content: space-between;
  gap: clamp(40px, 5vw, 80px);
  align-items: flex-start;
}

/* List Style */
.outline-list {
  flex: 1;
}

.ol-row {
  display: flex;
  border-bottom: 1px solid #eee;
  padding: 25px 0;
}
.ol-row:first-child {
  border-top: 1px solid #eee;
}

.ol-row dt {
  width: 140px;
  font-weight: 700;
  flex-shrink: 0;
  padding-top: 2px;
}

.ol-row dd {
  flex: 1;
  font-weight: 500;
  line-height: 1.8;
  color: #444;
}

/* Map Style */
.outline-map {
  width: 400px;
  flex-shrink: 0;
  position: sticky;
  top: 150px;
}

.map-frame {
  width: 100%;
  height: 300px;
  background-color: #f0f0f0;
  margin-bottom: 15px;
  filter: grayscale(100%);
  transition: filter 0.3s;
}
.map-frame:hover {
  filter: grayscale(0%);
}

.map-link {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #111;
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.3s;
}
.map-link:hover {
  opacity: 0.6;
}
.map-link .arrow {
  font-size: 12px;
}

/* =========================================
   RESPONSIVE MANAGER
   ========================================= */

/* --- 950px --- */
@media (max-width: 950px) {
  .outline-grid {
    flex-direction: column;
    gap: 60px;
  }
  .outline-map {
    width: 100%;
    position: static;
  }
  .map-frame {
    height: 250px;
  }
}

/* --- 768px --- */
@media (max-width: 768px) {
  .ol-row {
    flex-direction: column;
    gap: 10px;
  }
  .ol-row dt {
    width: 100%;
    color: var(--c-green);
    font-size: 14px;
  }
}
