.page-hero {
  width: 100vw;
  min-height: 290px;
  /* 背景画像はcoverでOK（横長画像も自然に） */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  z-index: 1;
  background-color: #f7eee2; /* ベースの背景色：antiquewhite系 */
  /* サイトがmax-widthの時も左右フル幅に広げる用（bodyがoverflow-x:hidden前提） */
}

.page-hero::before {
  /* 背景画像に暗いオーバーレイ+ブラーを乗せて馴染ませる */
  content: "";
  position: absolute;
  inset: 0;
   /* 好みで色調整、antiquewhiteと馴染む焦げ茶系例 */
   /* ブラー＆やや暗め補正 */
  z-index: 2;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.54);  /* 黒・54%透明（おすすめスタート値） */
  backdrop-filter: blur(2.5px) brightness(0.85); /* 黒くするならbrightness値も下げてOK */
  /* 透明度を0.45〜0.65くらいで微調整してください */
}

.page-hero-overlay {
  width: 100%;
  padding: 4vw 0 2vw 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.page-hero-inner {
  width: 100%;
  text-align: center;
  padding-bottom: 1.5em;
}

.page-hero-title {
  font-size: 2rem;
  font-family: 'Oswald', 'Raleway', 'Noto Sans JP', sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0;
  line-height: 1.13;
  display: inline-block;
  color: #fff;
  text-shadow: 0 2px 16px rgba(40,0,0,0.14); /* 透過オーバーレイ＋白文字は必須 */
}

@media (max-width: 900px) {
  .page-hero, .page-hero-overlay {
    min-height: 140px;
    height: 27vw;
    max-height: 180px;
    padding-top: 28px;
    padding-bottom: 16px;
  }
  .page-hero-title {
    font-size: 1.5rem;
  }
}






.site-main > article,
.site-main .post {
  /* background: #fff; */
  border-radius: 2.2rem;
  /* box-shadow: 0 7px 44px rgba(0,0,0,0.09); */
  max-width: 1200px;
  width: 100%;
  margin: auto; /* HEROと少し重ねて下層感アップ */
  padding: 10px 7vw 64px 7vw;
  z-index: 10;
  position: relative;
  color: #222;
  display: block;
}

.site-main {
  display: flex;
  justify-content: center;
  width: 100%;
}

.entry-title {
    font-size: 2.4rem;
    font-family: 'Oswald', 'Raleway', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    margin-bottom: 1.2em;
    /* color: #b28c38; */
    text-align: left;
    margin-top: 0.2em;
}

.entry-content {
  font-size: 1.14rem;
  line-height: 2.12;
  letter-spacing: 0.04em;
}

/* メタ・フッターも上品に調整したい場合例 */
.entry-meta, .entry-footer {
  text-align: left;
  color: #888;
  font-size: 0.98em;
  margin-bottom: 1.7em;
}

@media (max-width: 900px) {
  .site-main > article,
  .site-main .post {
    padding: 24px 3vw 40px 3vw;
    max-width: 97vw;
    margin-top: -38px;
  }
  .entry-title {
    font-size: 1.3rem;
  }
}

span.byline {
    display: none;
}



nav.breadcrumb {
    /* background: #fff; */
    border-radius: 2.2rem;
    /* box-shadow: 0 7px 44px rgba(0, 0, 0, 0.09); */
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 56px 7vw 0px 7vw;
    z-index: 10;
    position: relative;
    color: #222;
    display: block;
    font-size: 0.7em !important;
}




a {
  color: #b28c38;           /* ゴールド・ブロンズ系 */
  text-decoration: underline dotted rgba(178,140,56,0.26); /* 上品な点線下線 */
  transition: color 0.18s, text-decoration-color 0.18s;
  font-weight: 500;
}

a:hover,
a:focus {
  color: #d4501e;           /* アクセントの深いオレンジ */
  text-decoration-color: #d4501e;
  text-underline-offset: 4px;
}

.breadcrumb a {
  color: #b28c38;
  text-decoration: none;
  border-bottom: 1.5px dashed #e7c995;
  transition: color 0.18s, border-color 0.18s;
  padding: 0 0.08em;
  border-radius: 2px;
}

.breadcrumb a:hover,
.breadcrumb a:focus {
  color: #d4501e;
  border-bottom: 2px solid #d4501e;
  background: rgba(212,80,30,0.07);
}

.breadcrumb .current {
  color: #b28c38;
  font-weight: bold;
  border-bottom: none;
}

a {
  color: #b28c38;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.2px;
  text-decoration-color: #ecdba6;
  text-decoration-style: dotted;
  transition: color 0.15s, text-decoration-color 0.18s;
}
a:hover,
a:focus {
  color: #d4501e;
  text-decoration-color: #d4501e;
}
