@charset "UTF-8";
/* CSS Document : スタイリスト紹介ページ専用 */

/* ===== 共通: 下層ページのヘッダー余白 ===== */
.subPageHeader .headerContentInner {
  padding-bottom: 20px;
}

/* ===== ページタイトル+リード ===== */
.stylistHero {
  padding: 90px 0 70px;
  position: relative;
}
.stylistHeroTitle {
  text-align: center;
}
.stylistHeroTitle h2 {
  text-align: center;
  line-height: 1.1;
}
.stylistHeroTitle p.title {
  text-align: center;
  position: relative;
  left: 7em; /* descender(y)を避けるため大幅に右へ */
  display: inline-block;
  margin-top: -10px;
  margin-bottom: 50px;
  color: #5a3a25; /* ページトップのみ少し薄い濃茶 */
}
.stylistHero .lead {
  text-align: center;
  font-size: 17px;
  line-height: 34px;
  margin: 30px auto 0;
  max-width: 720px;
}
@media screen and (max-width: 640px) {
  .stylistHero {
    padding: 50px 0 30px;
  }
  .stylistHero .lead {
    font-size: 15px;
    line-height: 28px;
  }
  .stylistHero .lead br.pc-br {
    display: none;
  }
}

/* ===== スタイリスト一覧(交互配置) ===== */
.stylistList {
  padding: 30px 0 100px;
}
.profileList {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.profile {
  display: flex;
  background-color: #fff;
  position: relative;
}
.profile:nth-child(even) {
  flex-direction: row-reverse;
}
.profImage {
  width: 45%;
  flex-shrink: 0;
  overflow: hidden;
  position: relative; /* 画像を絶対配置にして本文に高さを合わせる */
}
.profImage img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.profBody {
  width: 55%;
  padding: 50px 50px 50px 60px;
}
.profile:nth-child(even) .profBody {
  padding: 50px 60px 50px 50px;
}
.role {
  font-family: "クレー", 'Hiragino Kaku Gothic ProN', 'sans-serif';
  font-size: 14px;
  color: #6A6012;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.profName {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 25px;
  border-bottom: 1px solid #6A6012;
  padding-bottom: 18px;
  font-weight: bold;
  flex-wrap: wrap;
}
.profName .en {
  font-family: "adobe-handwriting-ernie", "charm", "Inglesa Script Variable", "selif";
  font-size: 46px;
  color: #321707;
  font-weight: 400;
  line-height: 1;
}
.profName .jp {
  font-family: "クレー", 'Hiragino Kaku Gothic ProN', 'sans-serif';
  font-size: 18px;
  color: #321707;
}
.profMeta {
  display: grid;
  grid-template-columns: 6em 1fr;
  row-gap: 14px;
  column-gap: 18px;
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 25px;
}
.profMeta dt {
  font-family: "クレー", 'Hiragino Kaku Gothic ProN', 'sans-serif';
  color: #6A6012;
  font-weight: bold;
  position: relative;
  padding-left: 14px;
}
.profMeta dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 2px;
  background-color: #6A6012;
}
.profMeta dd {
  color: #333;
}
.message {
  font-size: 15px;
  line-height: 28px;
  background-color: rgba(184, 218, 230, 0.25); /* #B8DAE6 を薄く */
  padding: 18px 22px;
  border-left: 3px solid #6A6012;
  position: relative;
}
@media screen and (max-width: 800px) {
  .stylistList {
    padding: 10px 0 60px;
  }
  .profileList {
    gap: 50px;
  }
  .profile,
  .profile:nth-child(even) {
    flex-direction: column;
  }
  .profImage {
    width: 100%;
    height: 280px;
  }
  .profBody,
  .profile:nth-child(even) .profBody {
    width: 100%;
    padding: 30px 25px;
  }
  .profName .en {
    font-size: 36px;
  }
  .profName .jp {
    font-size: 16px;
  }
  .profMeta {
    grid-template-columns: 1fr;
    row-gap: 4px;
    font-size: 14px;
  }
  .profMeta dt {
    margin-top: 10px;
  }
  .profMeta dt:first-child {
    margin-top: 0;
  }
  .message {
    font-size: 14px;
    line-height: 26px;
    padding: 14px 16px;
  }
}

/* ===== サロン内装ショット ===== */
.salonShots {
  background-color: #fff;
  margin: 80px 30px;
  padding: 70px 0;
  position: relative;
}
.salonShots:after { /* News と同じカーキ三角形のモチーフ */
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #6A6012 transparent;
  border-width: 0px 0px 156px 156px;
}
.salonShotsInner h2,
.salonShotsInner p.title {
  text-align: center;
  left: 0;
}
.salonLead {
  text-align: center;
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 50px;
}
.shotGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}
.shot {
  overflow: hidden;
  position: relative;
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shot1 {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}
.shot2 {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}
.shot3 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}
.shot4 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}
@media screen and (max-width: 800px) {
  .salonShots {
    padding: 40px 0;
    margin: 50px 0;
  }
  .salonShots:after {
    bottom: -10px;
    right: 0;
    border-width: 0px 0px 70px 70px;
  }
  .salonLead {
    font-size: 14px;
    margin-bottom: 30px;
    padding: 0 25px;
  }
  .shotGrid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 140px 140px 140px;
    gap: 8px;
    padding: 0 25px;
  }
  .shot1 {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
  .shot2 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  .shot3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
  .shot4 {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
  }
}

/* ===== 予約CTA ===== */
.stylistCta {
  text-align: center;
  padding: 30px 0 100px;
}
.stylistCta .ctaLead {
  font-family: "クレー", 'Hiragino Kaku Gothic ProN', 'sans-serif';
  font-size: 18px;
  color: #321707;
  margin-bottom: 25px;
}
@media screen and (max-width: 640px) {
  .stylistCta {
    padding: 10px 0 60px;
  }
  .stylistCta .ctaLead {
    font-size: 16px;
  }
}
