/* ========================================
   About Page Main Sections
======================================== */
.about-page-section{
  padding:110px 0;
}

.about-page-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:64px;
  align-items:center;
}

.about-page-grid.reverse{
  grid-template-columns:.98fr 1.02fr;
}

.about-page-grid.reverse .about-page-image{
  order:2;
}

.about-page-grid.reverse .about-page-content{
  order:1;
}

.about-page-image{
  overflow:hidden;
  border-radius:28px;
  box-shadow:0 24px 60px rgba(0,0,0,.12);
}

.about-page-image img{
  width:100%;
  aspect-ratio:4 / 3;
  object-fit:cover;
}

.about-page-content{
  position:relative;
}

.about-page-content::before{
  content:"";
  position:absolute;
  left:-24px;
  top:8px;
  width:4px;
  height:84px;
  background:linear-gradient(to bottom, #8b6b43, #d3b690);
  border-radius:999px;
}

.about-page-content .text-lg + .text-lg{
  margin-top:16px;
}

.about-vision-section{
  background:linear-gradient(180deg, #faf7f2 0%, #ffffff 100%);
}


/* ========================================
   About Feature Section
======================================== */
.about-feature-section{
  padding:120px 0;
  background:#111;
  color:#fff;
}

.about-feature-section .sec-tit .jp{
  color:#fff;
}

.about-feature-section .sec-tit .en{
  color:#d6b48b;
}

.about-feature-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:48px;
  margin-bottom:38px;
}
.about-feature-text{
  max-width:560px;
  color:rgba(255,255,255,.78);
  font-size:15px;
  line-height:2;
}

.about-feature-cards{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.about-feature-card{
  background:#1a1a1a;
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  padding:30px 26px;
  box-shadow:0 18px 36px rgba(0,0,0,.18);
}

.about-feature-card .feature-number{
  font-size:14px;
  font-weight:800;
  letter-spacing:.18em;
  color:#d6b48b;
  margin-bottom:18px;
  line-height:1;
}

.about-feature-card .feature-title{
  font-size:22px;
  line-height:1.5;
  font-weight:800;
  color:#fff;
  margin-bottom:14px;
}

.about-feature-card .feature-text{
  color:rgba(255,255,255,.78);
  line-height:2;
  font-size:15px;
}


/* ========================================
   About Link Cards
======================================== */
.about-links{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
  margin-top:34px;
}

.about-link-card{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:150px;
  padding:28px;
  border-radius:24px;
  background:#fff;
  color:#111;
  box-shadow:0 16px 36px rgba(0,0,0,.16);
  transition:.3s ease;
}

.about-link-card:hover{
  transform:translateY(-4px);
}

.about-link-label{
  display:inline-block;
  font-size:13px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#8b6b43;
  margin-bottom:12px;
}

.about-link-card strong{
  font-size:24px;
  line-height:1.5;
}


/* ========================================
   About Page Small Adjustments
======================================== */
#about .sec-tit{
  margin-bottom:24px;
}

#about .sec-tit .jp{
  line-height:1.4;
}

#about .text-lg{
  max-width:none;
}


/* ========================================
   Responsive
======================================== */
@media (max-width:1024px){

  .about-page-grid,
  .about-page-grid.reverse{
    grid-template-columns:1fr;
    gap:42px;
  }

  .about-page-grid.reverse .about-page-image,
  .about-page-grid.reverse .about-page-content{
    order:initial;
  }

  .about-feature-head{
    flex-direction:column;
    align-items:flex-start;
  }

  .about-feature-cards{
    grid-template-columns:1fr;
  }

  .about-links{
    grid-template-columns:1fr;
  }

}

@media (max-width:768px){

  .about-page-section,
  .about-feature-section{
    padding:82px 0;
  }

  .about-page-content::before{
    display:none;
  }

  .about-feature-cards{
    gap:18px;
  }

  .about-feature-card{
    padding:24px 20px;
    border-radius:20px;
  }

  .about-feature-card .feature-title{
    font-size:20px;
  }

  .about-feature-card .feature-text{
    font-size:14px;
    line-height:1.8;
  }

  .about-link-card{
    min-height:auto;
    padding:24px 20px;
    border-radius:20px;
  }

  .about-link-card strong{
    font-size:20px;
  }

}