/* ------------------------------
   Base
------------------------------ */
:root {
  --bg-main: #f7f5f2;
  --bg-card: #fdfbf8;
  --bg-hero: #faf7f3;
  --bg-accent: #c5aa86;
  --text-main: #3f352c;
  --text-muted: #8c7a68;
  --border-soft: #e3d8ca;
  --border-strong: #b69a77;
  --footer-bg: #3b2f26;
  --footer-text: #f4ede3;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Yu Gothic", "游ゴシック体",
    "Hiragino Sans", "Noto Sans JP", sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1.7;
  font-size: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 10px;
}

section {
  padding: 56px 0;
  border-top: 1px solid rgba(182, 154, 119, 0.12);
}

@media (min-width: 960px) {
  section {
    padding: 72px 0;
  }
}

/* ------------------------------
   Header
------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(247, 245, 242, 0.92);
  border-bottom: 1px solid rgba(182, 154, 119, 0.16);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  font-size: 21px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
}

.logo-sub {
  display: block;
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ナビ共通 */
.nav {
  display: none; /* スマホではデフォルト非表示 / PCはメディアクエリで上書き */
  gap: 20px;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav a {
  position: relative;
  padding-bottom: 2px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--border-strong);
  transition: width 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  border: 1px solid var(--border-soft);
  background: transparent;
  padding: 6px 10px;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-radius: 4px;
}

/* ------------------------------
   Hero
------------------------------ */
.hero {
  background: var(--bg-hero);
  border-bottom: 1px solid rgba(182, 154, 119, 0.12);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 40px 0 48px;
}

@media (min-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr !important;
    align-items: center;
    padding: 64px 0 80px;
  }
}

.hero-copy-eyebrow {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.hero-title {
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  font-weight: 400;
  margin: 0 0 12px;
}

@media (min-width: 960px) {
  .hero-title {
    font-size: 34px;
  }
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 32em;
  line-height: 1.6;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  background: #d3b995;
  color: #fff;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease;
}

.hero-button:hover {
  background: #c3a67f;
  transform: translateY(-1px);
}

.hero-meta {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ===== FEATURE BAND (Full width) ===== */
.feature-band{
  width: 100%;
  background: #f4dede;      /* 画像の淡いピンク */
  padding: 56px 0;          /* 帯の上下余白（section相当） */
  border-top: 0;            /* section共通の線を出さない */
}

.feature-band-inner{
  /* container を付けているので max-width/margin は不要 */
  padding: 0 20px;          /* container と揃う保険（あってもOK） */
  color: #6b3f3f;
}

.feature-band-tag{
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 10px;
}

.feature-band-title{
  font-size: 23px;
  line-height: 1.6;
  letter-spacing: 0.18em;
  margin: 0 0 16px;
  font-weight: 500;
}

.feature-band-text{
  font-size: 17px;
    line-height: 1.6;
    opacity: 0.9;
  margin: 0 0 20px;
}

.feature-band-link{
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(107, 63, 63, 0.6);
  color: inherit;
}

.feature-band-link span{
  font-size: 12px;
}



/* ------------------------------
   Section heading
------------------------------ */
.section-heading {
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.section-heading-line {
  width: 1px;
  height: 32px;
  background: rgba(182, 154, 119, 0.6);
}

.section-heading-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.section-title{
  all: unset;
  display: block;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.55;
}


.section-description {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ------------------------------
   部位から探す
------------------------------ */
.part-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (min-width: 768px) {
  .part-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1040px) {
  .part-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.part-card {
  background: var(--bg-card);
  border-radius: 6px;
  border: 1px solid var(--border-soft);
  padding: 14px 12px 16px;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.part-card:hover {
  border-color: rgba(182, 154, 119, 0.9);
  transform: translateY(-1px);
}

.part-icon-slot {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px dashed var(--border-soft);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-muted);
  background: rgba(253, 251, 248, 0.7);
  overflow: hidden;
}

.part-label {
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.part-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ------------------------------
   悩み別
------------------------------ */
.cause-section {
  background: #f1ece5;
}

.cause-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 768px) {
  .cause-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cause-card {
  background: rgba(253, 251, 248, 0.86);
  border-radius: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(227, 216, 202, 0.7);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cause-card:before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 3px;
  height: 40px;
  background: linear-gradient(to bottom, #c5aa86, #b69a77);
  opacity: 0.65;
}

.cause-icon-slot {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px dashed var(--border-soft);
  background: rgba(253, 251, 248, 0.9);
  flex-shrink: 0;
  overflow: hidden;
}

.cause-body {
  flex: 1;
  position: relative;
  z-index: 1;
}

.cause-title {
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cause-text {
  font-size: 14px;
  color: var(--text-muted);
}

/* ------------------------------
   施術ガイド
------------------------------ */
.treatment-section {
  background: transparent;
}

.treatment-block {
  border-radius: 9px;
  padding: 28px 24px;
  background: radial-gradient(circle at top left, #ede0cf 0, #c3a47e 35%, #9f825f 100%);
  color: #fdfbf8;
  position: relative;
  overflow: hidden;
}

.treatment-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 880px) {
  .treatment-layout {
    grid-template-columns: 1.6fr 1fr;
    align-items: center;
  }
}

.treatment-visual-slot {
  min-height: 140px;
  border-radius: 12px;
  border: 1px dashed rgba(253, 251, 248, 0.7);
  background: rgba(253, 251, 248, 0.12);
  overflow: hidden;
}

.treatment-tag {
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 8px;
}

.treatment-title {
  font-size: 25px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.treatment-text {
  font-size: 16px;
    line-height: 1.6;
    opacity: 0.86;
    max-width: 32em;
    margin-bottom: 18px;
}

.treatment-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(253, 251, 248, 0.7);
  cursor: pointer;
}

.treatment-link span {
  font-size: 12px;
}

/* ------------------------------
   編集部ブロック
------------------------------ */
.editorial-section {
  background: #f8f4ef;
}

.editorial-inner {
  border-radius: 14px;
  border: 1px solid rgba(227, 216, 202, 0.9);
  background: #fdfbf8;
  padding: 24px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 880px) {
  .editorial-inner {
    grid-template-columns: 1.2fr 1fr;
    padding: 26px 26px;
  }
}

.editorial-title {
  font-size: 20px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.editorial-text {
  font-size: 16px;
    line-height: 1.6;
  color: var(--text-muted);
  max-width: 34em;
}

.editorial-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 10px;
}

.editorial-link {
  display: inline-flex;
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(182, 154, 119, 0.7);
  padding-bottom: 1px;
}

.editorial-visual-slot {
  width: 100%;
  min-height: 120px;
  border-radius: 10px;
  border: 1px dashed var(--border-soft);
  background: rgba(247, 245, 242, 0.9);
  margin-bottom: 12px;
  overflow: hidden;
}

/* ------------------------------
   記事一覧
------------------------------ */
.article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .article-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.article-card {
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border-soft);
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.article-card:hover {
  border-color: rgba(182, 154, 119, 0.8);
  transform: translateY(-1px);
}

.article-thumb-slot {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  border: 1px dashed var(--border-soft);
  background: rgba(247, 245, 242, 0.95);
  margin-bottom: 4px;
  overflow: hidden;
}

.article-meta {
  font-size: 13px;
  color: var(--text-muted);
}

.article-title {
  font-size: 16px;
  line-height: 1.6;
}

.article-tag {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ------------------------------
   Footer
------------------------------ */
.site-footer {
  background: #c8a0a7;
  color: var(--footer-text);
  padding: 32px 0 40px;
  margin-top: 40px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  font-size: 14px;
}

@media (min-width: 840px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr;
  }
}

.footer-brand {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 6px;
}

.footer-desc {
  font-size: 14px;
  opacity: 0.8;
  max-width: 30em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 13px;
  opacity: 0.8;
  justify-content: flex-start;
}

.footer-nav a {
  position: relative;
  padding-bottom: 1px;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: rgba(244, 237, 227, 0.8);
  transition: width 0.25s ease;
}

.footer-nav a:hover::after {
  width: 100%;
}

.footer-copy {
  font-size: 12px;
  opacity: 0.6;
  margin-top: 12px;
}

/* ------------------------------
   読みやすさ調整
------------------------------ */

/* 説明テキストを読みやすく（少し大きく・太く・濃く） */
.section-description,
.part-sub {
  font-size: 17px;
    line-height: 1.6;
  font-weight: 500;
  color: #3f352c;
}

/* 部位名（唇・乳輪など）を大きく・見やすく */
.part-label {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #3f352c;
}

/* 部位カードのサブテキスト微調整 */
.part-sub {
  font-size: 16px;
    line-height: 1.5;
  font-weight: 500;
  color: #5a4d43;
}

/* 悩みカード（摩擦など）のタイトルを読みやすく強調 */
.cause-title {
  font-size: 18px;
  font-weight: 600;
  color: #3f352c;
  letter-spacing: 0.08em;
}

/* 悩みカードの説明文 */
.cause-text {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  color: #3f352c;
}

/* ------------------------------
   PC レイアウト（幅960px以上）
------------------------------ */
@media (min-width: 960px) {
  .nav {
    display: flex !important;
    position: static;
    background: transparent;
    padding: 0;
    border-bottom: none;
    flex-direction: row;
  }

  .nav.is-open {
    position: static;
  }

  .nav-toggle {
    display: none;
  }

  /* PCではヒーロー幅はそのまま */
  .hero-title,
  .hero-sub,
  .hero-aside,
  .treatment-block {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

/* ------------------------------
   スマホ用レイアウト（幅959px以下）
------------------------------ */
@media (max-width: 959px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 30;
  }

  .site-header-inner {
    position: relative;
  }

  /* MENU クリック時に .is-open がついた nav を表示 */
  .nav.is-open {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 14px 20px 16px;
    background: #f7f5f2;
    border-bottom: 1px solid rgba(182, 154, 119, 0.2);
  }

  .nav.is-open a {
    font-size: 15px;
    white-space: nowrap;
  }

  /* ヒーローのキャッチコピー＆サブコピーに左右マージン */
  .hero-title,
  .hero-sub {
    max-width: 92%;
    margin-left: auto;
    margin-right: auto;
  }

  /* 茶色のカード類も端までベタっと広がらないように */
  .hero-aside,
  .treatment-block {
    margin-left: auto;
    margin-right: auto;
  }
}
/* スマホ時：ヒーロー内テキストの横幅を少し絞る */
@media (max-width: 959px) {
  .hero-copy-eyebrow,   /* MELANIN CARE MEDIA */
  .hero-title,          /* 黒ずみの悩みに、静かな選択肢を。 */
  .hero-sub,            /* デリケートゾーンから日常のパーツまで。の段落 */
  .hero-button,         /* 部位から探す ボタン */
  .hero-meta {          /* デリケートな黒ずみ悩みを〜 の文章 */
    max-width: 92%;
    margin-left: auto;
    margin-right: auto;
  }
}
/* スマホ時：部位から探すボタンにもしっかり横マージンをつける */
@media (max-width: 959px) {
  .hero-button {
    display: block;          /* 横幅調整しやすいようにブロック化 */
    max-width: 92%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}
/* ============================
   Category Archive
   ============================ */

.archive-hero {
  background: var(--bg-hero);
  border-bottom: 1px solid rgba(182, 154, 119, 0.12);
}

.archive-hero-inner {
  padding: 40px 0 32px;
}

.archive-eyebrow {
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.archive-title {
  font-size: 26px;
  line-height: 1.6;
  letter-spacing: 0.14em;
  font-weight: 400;
  margin: 0 0 10px;
}

.archive-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 36em;
}

@media (min-width: 960px) {
  .archive-hero-inner {
    padding: 56px 0 40px;
  }
  .archive-title {
    font-size: 30px;
  }
}

/* 一覧本体 */
.archive-list {
  padding-top: 40px;
}

/* 抜粋文 */
.article-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ページネーション */
.archive-pagination {
  margin-top: 32px;
  text-align: center;
}

.archive-pagination .page-numbers {
  display: inline-block;
  margin: 0 4px;
  padding: 6px 10px;
  font-size: 14px;
  border-radius: 999px;
  border: 1px solid rgba(182, 154, 119, 0.4);
  color: var(--text-muted);
}

.archive-pagination .page-numbers.current {
  background: #c5aa86;
  color: #fdfbf8;
  border-color: #c5aa86;
}

.archive-pagination .page-numbers:hover {
  border-color: #b69a77;
}
/* 記事カードのサムネイルを横幅いっぱいに表示 */
.article-thumb-slot {
  width: 100%;
  aspect-ratio: 16 / 9;   /* すでに入っていればOK */
  overflow: hidden;
  position: relative;
}

/* 中の画像を枠いっぱいにフィット */
.article-thumb-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* 重要：比率を保ったままトリミング */
  object-position: center;
  display: block;
}
.single {
  padding: 44px 0 72px;
}

.single-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}



.single-article {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 22px 18px;
}

@media (min-width: 960px) {
  .single-article {
    padding: 28px 26px;
  }
}

.single-breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.single-breadcrumb a {
  border-bottom: 1px solid rgba(182,154,119,0.35);
  padding-bottom: 1px;
}

.single-title {
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  font-weight: 600;
}

@media (min-width: 960px) {
  .single-title {
    font-size: 28px;
  }
}

.single-meta {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
}

.single-cat {
  color: var(--text-muted);
  border-bottom: 1px solid rgba(182,154,119,0.25);
  padding-bottom: 1px;
}

.single-hero {
  margin: 14px 0 18px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(227,216,202,0.8);
}

.single-hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* 本文 */
.single-content {
  font-size: 18px;
  line-height: 1.95;
  color: var(--text-main);
}

.single-content p {
  margin: 0 0 1.2em;
}

.single-content h2 {
  margin: 1.8em 0 0.8em;
  font-size: 20px;
  letter-spacing: 0.08em;
  font-weight: 600;
  padding-left: 12px;
  border-left: 3px solid rgba(182,154,119,0.7);
}

.single-content h3 {
  margin: 1.4em 0 0.6em;
  font-size: 18px;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.single-content img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 18px 0;
  border: 1px solid rgba(227,216,202,0.7);
}

/* 前後記事 */
.single-footer {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(182,154,119,0.18);
}

.single-nav {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-muted);
}

.single-nav a {
  border-bottom: 1px solid rgba(182,154,119,0.25);
  padding-bottom: 1px;
}

/* サイド */
.single-aside .aside-box {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 18px 16px;
}

.aside-title {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.aside-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.aside-article {
  font-size: 15px;
  line-height: 1.7;
  border-bottom: 1px solid rgba(182,154,119,0.22);
  padding-bottom: 6px;
}

.aside-muted {
  font-size: 14px;
  color: var(--text-muted);
}
/* ============================
   LEMELLA寄せ 上書きCSS（末尾に追記）
   ============================ */

/* フォント：本文はサンセリフ、見出しはセリフ寄りに */
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600&family=Noto+Sans+JP:wght@400;500;600&display=swap");

:root{
  /* 白×ニュートラル×控えめゴールド */
  --bg-main: #fbfaf8;        /* 全体背景：白寄り */
  --bg-card: #ffffff;        /* カード：純白 */
  --bg-hero: #ffffff;        /* ヒーロー：白 */
  --bg-accent: #b08a4a;      /* ゴールド：主張を弱めた上品色 */

  --text-main: #1f1a16;      /* 文字：濃いチャコール */
  --text-muted: #70655b;     /* サブ：グレージュ */
  --border-soft: #e9e2d8;    /* 罫線：薄いグレージュ */
  --border-strong: #b08a4a;  /* 強調線：ゴールド */

  --footer-bg: #14110e;      /* フッター：締め色 */
  --footer-text: #f6f1e8;

  --max-width: 1140px;
}

/* 全体の文字を少し締める（LEMELLAっぽい“静けさ”） */
html, body{
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Yu Gothic", "游ゴシック体",
    "Hiragino Sans", sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  letter-spacing: 0.02em;
}

body{
  font-size: 17px;     /* 少しだけ小さくして上品に */
  line-height: 1.85;   /* 余白感 */
}

/* 見出し系をセリフへ（“高級感”の核） */
.logo,
.hero-title,
.section-title,
.editorial-title,
.treatment-title,
.single-title,
.single-content h2,
.single-content h3,
.archive-title{
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
}

/* LEMELLAは大文字・広い字間が強すぎないので緩める */
.logo{
  text-transform: none;
  letter-spacing: 0.10em;
  font-weight: 500;
}

.nav{
  text-transform: none;
  letter-spacing: 0.08em;
}

/* ヘッダー：白ガラス感を強める */
.site-header{
  background: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(233,226,216,0.9);
  backdrop-filter: blur(14px);
}

/* セクションの区切り線を“薄く” */
section{
  border-top: 1px solid rgba(233,226,216,0.9);
}

/* ヒーロー：白ベース＋タイトルは少し大きめ・行間ゆったり */
.hero{
  background: var(--bg-hero);
  border-bottom: 1px solid rgba(233,226,216,0.9);
}

.hero-copy-eyebrow,
.section-eyebrow,
.article-tag,
.archive-eyebrow{
  color: var(--text-muted);
  letter-spacing: 0.18em;
  text-transform: none;
}

.hero-title{
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.55;
}

/* ボタン：ゴールドを“アクセント”に（ベタ塗り感を弱める） */
.hero-button{
  background: var(--bg-accent);
  color: #fff;
  letter-spacing: 0.12em;
  text-transform: none;
  padding: 12px 28px;
  box-shadow: 0 10px 24px rgba(17,13,10,0.10);
}
.hero-button:hover{
  background: #9c783f;
  transform: translateY(-1px);
}

/* カード：角丸を少し上げ、影は薄く（LEMELLA寄せ） */
.part-card,
.article-card,
.single-article,
.editorial-inner,
.single-aside .aside-box{
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  box-shadow: 0 12px 28px rgba(17,13,10,0.06);
}

.part-card:hover,
.article-card:hover{
  border-color: rgba(176,138,74,0.55);
}

/* アイコン枠の“点線感”を弱めて上品に */
.part-icon-slot,
.cause-icon-slot,
.editorial-visual-slot,
.article-thumb-slot,
.treatment-visual-slot{
  border: 1px solid rgba(233,226,216,0.95);
  background: rgba(255,255,255,0.92);
}

/* 悩み別セクション：ベージュ面を減らして白寄りへ */
.cause-section{
  background: #fbfaf8;
}
.cause-card{
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(233,226,216,0.95);
}
.cause-card:before{
  background: linear-gradient(to bottom, rgba(176,138,74,0.85), rgba(176,138,74,0.20));
}

/* 施術ガイドの茶グラデを“濃すぎない”方向へ */
.treatment-block,
.hero-aside{
  background: radial-gradient(circle at top left,
    #f3eee7 0,
    #d7c7b3 42%,
    #bfa88d 100%);
  color: #1f1a16;
}
.treatment-block a,
.hero-aside a{
  color: #1f1a16;
  border-bottom-color: rgba(31,26,22,0.35);
}

/* 読みやすさ調整で濃くしすぎている箇所を“LEMELLAっぽく”戻す */
.section-description,
.part-sub,
.cause-text{
  font-weight: 400;
  color: var(--text-muted);
}
.part-label,
.cause-title{
  font-weight: 500;
  color: var(--text-main);
}

/* ページネーション：白×ゴールド枠へ */
.archive-pagination .page-numbers{
  border: 1px solid rgba(176,138,74,0.35);
}
.archive-pagination .page-numbers.current{
  background: var(--bg-accent);
  border-color: var(--bg-accent);
}

/* スマホメニューの背景も白寄せ */
@media (max-width: 959px){
  .nav.is-open{
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid rgba(233,226,216,0.95);
  }
}
/* ============================
   くすみピンク（LEMELLA寄せ）上書き
   末尾に追記
   ============================ */

:root{
  /* ベース：白寄り×くすみピンク */
  --bg-main: #fbf6f6;     /* 全体背景 */
  --bg-card: #ffffff;     /* カード */
  --bg-hero: #fff7f8;     /* ヒーロー */
  --bg-accent: #c8a0a7;   /* くすみピンク（アクセント） */

  /* 文字：茶色→グレージュ/チャコール寄せ */
  --text-main: #2b1f22;
  --text-muted: #7b646a;

  /* 罫線：茶→ピンクベージュ */
  --border-soft: #ead7da;
  --border-strong: #b37f8a;

  /* フッター：こげ茶→ボルドー寄りの締め色 */
  --footer-bg: #2a1c20;
  --footer-text: #f7eef0;
}

/* セクション区切り線もピンク寄せ */
section{
  border-top: 1px solid rgba(234,215,218,0.9);
}

/* ヘッダー背景（ガラス感は維持して、色だけピンク寄せ） */
.site-header{
  background: rgba(251,246,246,0.86);
  border-bottom: 1px solid rgba(234,215,218,0.9);
}

/* ボタン：茶→くすみピンク */
.hero-button{
  background: var(--bg-accent);
  margin-top: 5%;
}
.hero-button:hover{
  background: #b88c96;
}

/* 茶色グラデのカード（右側カード/施術ガイド）をくすみピンクへ */
.hero-aside,
.treatment-block{
  background: radial-gradient(circle at top left,
    #f6e9ea 0%,
    #d8b7be 42%,
    #b88c96 100%);
  color: #ffffff;
}

/* くすみピンク面（悩み別/編集部） */
.cause-section{
  background: #f6eef0;
}
.editorial-section{
  background: #fbf4f5;
}

/* 悩みカードの左ライン（茶→ピンク） */
.cause-card:before{
  background: linear-gradient(to bottom, #c8a0a7, #b37f8a);
}

/* ページネーション current（茶→ピンク） */
.archive-pagination .page-numbers.current{
  background: var(--bg-accent);
  border-color: var(--bg-accent);
}

/* ホバー時の枠色（茶→ピンク） */
.part-card:hover,
.article-card:hover{
  border-color: rgba(184,140,150,0.75);
}
/* ============================
   ヘッダー直下：フル幅ヒーロー画像
   ============================ */
.hero-image{
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: #fff;
  height: clamp(420px, 84vh, 760px); /* PC */
}

@media (max-width: 959px){
  .hero-image{
    height: calc(100svh - 78px); /* SP：画面ぴったり */
  }
}

.hero-image img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 35%;
}
section#parts{
  border-top: 0 !important;
  padding-top: 40px; /* 好みで調整 */
}
/* ピンク帯の直後に出る線の正体（heroの下線）を消す */
.hero{
  border-bottom: 0 !important;
  padding: 0;
}

/* 念のため：PARTS側の上線も消す（重なってる場合） */
section#parts{
  border-top: 0 !important;
}
/* ============================
   PARTS 見出し下イラスト（PCのみ）
   section-heading のフレックスから切り離す
   ============================ */

@media (min-width: 960px) {

  /* 見出しテキストブロックは横幅いっぱい使わせる */
  #parts .section-heading-text{
    width: 100%;
    position: relative;
  }

  /* イラストはフレックスの流れから独立 */
  #parts .section-illust{
    width: 100%;
    display: block;
    margin: 16px 0 8px;
    text-align: center;
  }

  /* 画像を50%で中央 */
  #parts .section-illust img{
            width: 38%;
        height: auto;
        margin: 0 auto 2% auto;
  }
}

.hero-aside,
.treatment-block{
  position: relative;
  background: radial-gradient(circle at top left,
    #e8c4cc 0%,
    #c38d99 45%,
    #8f5b66 100%);
  color: rgba(255,255,255,0.96);
}

/* 透明の“暗幕”を重ねて文字を読みやすくする */
.hero-aside::before,
.treatment-block::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.14); /* 0.12〜0.18で好み調整 */
  border-radius: inherit;
  pointer-events:none;
}

.hero-aside > *,
.treatment-block > *{
  position: relative;
  z-index: 1;
}

/* 文字が細いところに効く */
.hero-aside,
.treatment-block{
  text-shadow: 0 1px 2px rgba(0,0,0,0.18);
}

/* リンク下線も見えるように */
.treatment-link{
  border-bottom-color: rgba(255,255,255,0.75);
}
/* ============================
   Case Slider（Splide）
   ============================ */
.case_list__slider{
  max-width: 1200px;
  margin: 0 auto;
}

.case_list__list{
  /* splide__list なので基本不要だが保険 */
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 角丸なし・枠線なし */
.case_list__item{
  border-radius: 0;
  overflow: hidden;
}

/* サムネ枠も角丸・枠線を外す */
.case_list__thumb{
  border-radius: 0;
  overflow: hidden;
  border: none;
  background: transparent;
}

/* 高さを揃える：画像はトリミングして全面表示（角丸なし） */
.case__img{
  width: 100%;
  height: 344px;      /* PC基準 */
  object-fit: cover;
  display: block;
  border-radius: 0;
}

@media (max-width: 768px){
  .case__img{
    height: 300px;
  }
}
@media (max-width: 480px){
  .case__img{
    height: 280px;
  }
}

/* Splideの余白（このままでOK） */
.case_list .splide__track{
  padding: 8px 0;
}
/* Splideが初期化されなくても見えるように（原因切り分け） */
.hero-case .splide{
  visibility: visible !important;
}
/* ============================
   Company（会社概要）
   フッター直前に入れる想定
   ============================ */

.company{
  padding: 64px 0;
  border-top: 1px solid rgba(234,215,218,0.9); /* 既存の区切り線トーンに寄せる */
  background: transparent;
}

.company__head{
  margin-bottom: 18px;
}

.company__eyebrow{
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--text-muted);
}

.company__title{
  margin: 8px 0 0;
  font-family: "Noto Serif JP","Hiragino Mincho ProN","Yu Mincho",serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

/* カード */
.company__card{
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 22px 18px;
  box-shadow: 0 12px 28px rgba(17,13,10,0.06);
}

@media (min-width: 960px){
  .company__card{
    padding: 26px 26px;
  }
}

/* dlを「左：項目 / 右：内容」に */
.company__dl{
  margin: 0;
}

.company__row{
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(234,215,218,0.7);
}

.company__row:last-child{
  border-bottom: 0;
  padding-bottom: 0;
}

.company__row dt{
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.10em;
  color: var(--text-muted);
  white-space: nowrap;
}

.company__row dd{
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-main);
}

.company__zip{
  letter-spacing: 0.06em;
}

.company__link{
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(179,127,138,0.35);
  padding-bottom: 2px;
}

.company__link:hover{
  border-bottom-color: rgba(179,127,138,0.75);
}

/* スマホは縦並び */
@media (max-width: 959px){
  .company{
    padding: 52px 0;
  }
  .company__title{
    font-size: 26px;
  }
  .company__row{
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px 0;
  }
  .company__row dt{
    font-size: 12px;
  }
  .company__row dd{
    font-size: 16px;
  }
}
.page-company section:first-of-type {
  border-top: none;
}



