/* ===========================================
   MHW Harajuku - Utility & Component Overrides
   MHWサイトにはecbeingユーティリティクラスが未定義のため、
   ここで全て定義する
   =========================================== */

/* --- Utility: font-weight --- */
.u-fw-bold { font-weight: bold !important; }

/* --- Utility: text-align --- */
.u-text-left { text-align: left !important; }

/* --- Utility: margin-top (PC: md) --- */
.u-mt-md-60 { margin-top: 60px; }
.u-mt-md-30 { margin-top: 30px; }
.u-mt-md-20 { margin-top: 20px; }
.u-mt-md-10 { margin-top: 10px; }

/* --- Utility: padding-bottom (PC) --- */
.u-pb-md-120 { padding-bottom: 120px; }

/* --- Layout: container max-width --- */
.l-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Component: image responsive --- */
.c-image img,
figure.c-image img {
  width: 100%;
  height: auto;
  display: block;
}

figure {
  margin: 0;
}

/* --- Component: profile --- */
.profile-container {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.profile-image {
  position: relative;
  width: 250px;
}

.profile-image img {
  width: 100%;
  height: auto;
  display: block;
}

.profile-text {
  display: flex;
  align-items: center;
  max-width: 600px;
}

/* --- Component: shop-info --- */
.shop-info {
  border-top: 1px solid #ccc;
  padding-top: 40px;
}

/* --- Component: h2 title size override --- */
h2.c-title {
  font-size: 20px !important;
  line-height: 1.6 !important;
}

/* --- SP overrides (max-width: 767px) --- */
@media screen and (max-width: 767px) {
  .u-mt-sm-40 { margin-top: 40px !important; }
  .u-mt-sm-20 { margin-top: 20px !important; }
  .u-mt-sm-10 { margin-top: 10px !important; }
  .u-mt-sm-5  { margin-top: 5px !important; }
  .u-pb-sm-60 { padding-bottom: 60px !important; }

  .profile-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .profile-text {
    max-width: 100%;
  }

  h2.c-title {
    font-size: 16px !important;
  }
}


/* --- Component: figure-pair (2-col grid for side-by-side images) --- */
.figure-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.figure-pair figure {
  margin: 0;
}

.figure-pair img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Component: name emphasis in member intro --- */
.name-emphasis {
  font-weight: 900;
  font-size: 1.08em;
}

/* --- SP: figure-pair stacks to 1 column --- */
@media screen and (max-width: 767px) {
  .figure-pair {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
