@charset "UTF-8";
:root {
  --color-base: #ffffff;
  --color-bg: #f6f9fa;
  --color-blue: #e9f2f5;
  --color-blue-line: #cfe1e6;
  --color-accent: #5f97a1;
  --color-accent-soft: #9cc3c9;
  --color-ink: #3a413f;
  --color-sub: #707a78;
  --color-hairline: #e4eaea;
  --color-line: #06c755;
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-head: "Shippori Mincho", "Yu Mincho", serif;
  --font-latin: "Cormorant Garamond", serif;
}

#content {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-ink);
  background: var(--color-base);
  line-height: 1.9;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

/* ---------- 共通レイアウト ---------- */
.l-page { width: 100%; overflow-x: hidden; }

.l-inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.l-inner--narrow { max-width: 760px; }

.l-section { padding-top: 5.5rem; padding-bottom: 5.5rem; }
.l-section--tinted { background: var(--color-bg); }

/* ---------- 見出し（共通コンポーネント） ---------- */
.c-heading { text-align: center; }

.c-heading__label {
  display: block;
  font-family: var(--font-latin);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--color-accent-soft);
}

.c-heading__title {
  margin-top: 0.9rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.9rem;
  line-height: 1.5;
  color: var(--color-ink);
  text-wrap: balance;
}

.c-heading__line {
  width: 48px;
  height: 2px;
  border: 0;
  margin-top: 1.4rem;
  margin-left: auto;
  margin-right: auto;
  background: var(--color-accent-soft);
}

.c-lead {
  margin-top: 2rem;
  font-size: 1rem;
  color: var(--color-sub);
  text-align: center;
  text-wrap: pretty;
}
.c-lead__strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 1.2rem;
  letter-spacing: 0.04em;
}

.c-photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid var(--color-hairline);
  border-radius: 6px;
  background-color: #eef3f4;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(95, 151, 161, 0.06) 0 12px,
    rgba(95, 151, 161, 0.12) 12px 24px
  );
  overflow: hidden;
}
.c-photo__label {
  font-family: "SF Mono", "Menlo", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: #7c9299;
  text-align: center;
  padding: 0.5rem 1rem;
  line-height: 1.6;
}
.c-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* =========================================================
   ① メイン写真 / ページ導入
   ========================================================= */
#hero { position: relative; }

.p-hero__figure {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-bottom: 1px solid var(--color-hairline);
  background-color: #e7eef0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(95, 151, 161, 0.05) 0 14px,
    rgba(95, 151, 161, 0.11) 14px 28px
  );
  overflow: hidden;
}
.p-hero__figure > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.p-hero__placeholder {
  position: relative;
  z-index: 1;
  font-family: "SF Mono", "Menlo", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: #7c9299;
  margin-bottom: 2rem;
}

.p-hero__caption {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2.4rem 24px 2.6rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
}
.p-hero__catch {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 1.6;
  color: var(--color-ink);
  text-wrap: balance;
}

.p-hero__intro { padding-top: 4rem; padding-bottom: 5.5rem; }
.p-hero__text {
  margin: 0;
  margin-top: 1.6rem;
  font-size: 1rem;
  color: var(--color-sub);
  text-align: center;
  text-wrap: pretty;
}
.p-hero__text:first-child { margin-top: 0; }

/* =========================================================
   ② belleの施術について
   ========================================================= */
.p-services__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 3.5rem;
}
.p-services__item {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
}
.p-services__figure { margin: 0; }
.p-services__figure .c-photo { aspect-ratio: 4/3; }
.p-services__name {
  margin: 0;
  margin-top: 1.1rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  color: var(--color-ink);
}
.p-services__caption {
  margin: 0;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  text-align: center;
  color: var(--color-sub);
}

/* =========================================================
   ③ オーナー紹介
   ========================================================= */
.p-owner__body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 48px;
  margin-top: 3.5rem;
}
.p-owner__figure { flex: 1 1 420px; margin: 0; }
.p-owner__figure .c-photo { height: 460px; border-radius: 8px; }
.p-owner__profile { flex: 1 1 340px; }

.p-owner__accent { margin: 0; margin-top: 2rem; }
.p-owner__accent .c-photo { height: 200px; border-radius: 6px; }
.p-owner__accent .c-photo img { height: 100% !important;}
.p-owner__role {
  margin: 0;
  font-family: var(--font-latin);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent-soft);
}
.p-owner__name {
  margin: 0;
  margin-top: 0.6rem;
  font-family: var(--font-latin);
  font-weight: 500;
  font-size: 2.6rem;
  letter-spacing: 0.14em;
  color: var(--color-ink);
}
.p-owner__jobtitle {
  margin: 0;
  margin-top: 0.4rem;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  color: var(--color-sub);
}
.p-owner__quote {
  margin: 0;
  margin-top: 1.8rem;
  font-family: var(--font-head);
  font-size: 1.05rem;
  line-height: 2.1;
  color: var(--color-ink);
  text-wrap: pretty;
}

/* =========================================================
   ④ 採用情報（薄いブルー背景で区別）
   ========================================================= */
#recruit { background: var(--color-blue); }

.p-recruit__panels {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 3.2rem;
}
.p-recruit__panel {
  flex: 1 1 320px;
  padding: 2.4rem 2.2rem;
  border: 1px solid var(--color-blue-line);
  border-radius: 8px;
  background: var(--color-base);
}
.p-recruit__panel-title {
  margin: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-blue-line);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--color-ink);
}
.p-recruit__list {
  margin: 0;
  margin-top: 1.4rem;
  padding: 0;
  list-style: none;
}
.p-recruit__list-item {
  position: relative;
  margin-top: 0.9rem;
  padding-left: 1.5rem;
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--color-ink);
}
.p-recruit__list-item:first-child { margin-top: 0; }
.p-recruit__list-item::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
}
.p-recruit__intro {
  margin: 0;
  margin-top: 2rem;
  font-size: 1rem;
  text-align: center;
  color: var(--color-sub);
  text-wrap: pretty;
}

/* =========================================================
   ⑤ お問い合わせボタン（LINE）
   ========================================================= */
#contact { text-align: center; }
.p-contact__text {
  margin: 0;
  font-size: 1rem;
  color: var(--color-sub);
}
.c-line-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-width: 320px;
  margin-top: 2.2rem;
  padding: 1.1rem 2.4rem;
  border: 0;
  border-radius: 999px;
  background: var(--color-line);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s ease;
}
.c-line-button:hover {
  background: #05b64d;
  color: #ffffff;
}
.c-line-button__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: #ffffff;
}

/* =========================================================
   レスポンシブ（スマートフォン）
   ========================================================= */
@media screen and (max-width: 767px) {
  .l-section { padding-top: 4rem; padding-bottom: 4rem; }

  .c-heading__title { font-size: 1.5rem; }

  .p-hero__figure { min-height: 340px; }
  .p-hero__catch { font-size: 1.3rem; }
  .p-hero__intro { padding-top: 3rem; padding-bottom: 4rem; }

  /* 施術写真：3枚を縦に1枚ずつ表示 */
  .p-services__cards { flex-direction: column; gap: 2rem; }
  .p-services__figure .c-photo { height: 260px; }

  /* オーナー：写真と文章を縦積み */
  .p-owner__body { flex-direction: column; gap: 2rem; }
  .p-owner__figure { flex: auto; width: 100%; }
  .p-owner__figure .c-photo { height: 360px; }
  .p-owner__name { font-size: 2.1rem; }

  .p-recruit__panels { flex-direction: column; gap: 1.4rem; }
  .p-recruit__panel { padding: 2rem 1.6rem; }

  .c-line-button { min-width: 0; width: 100%; font-size: 1rem; padding: 1.1rem 1.4rem; }
}
