/* ========== common(blog) ========== */
.menu-mv .title-deco {
  width: 28rem;
}
.title-deco {
  top: 0;
}

.reservation {
  margin-top: 16rem;
}

.page-blog h3 {
  color: var(--primary-black);
}

@media (max-width: 768px) {
  .menu-mv .title-deco {
    width: 16rem;
  }
}
/* ========== menu-mv(blog) ========== */

.page-blog .menu-mv {
  width: 100vw;
  height: auto;
  padding-top: 4rem;
  background-color: var(--primary-pink-beige);
  position: relative;
}

.menu-mv__subtitle {
  text-align: center;
  color: var(--primary-red);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.9;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}
.page-blog .wave {
  margin-top: 6rem;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
@media (max-width: 768px) {
  .page-blog .menu-mv {
    padding-top: 4rem;
  }
  .menu-mv__subtitle {
    line-height: 1.5;
  }
}

/* ================================
ブログ記事用スタイル
対象範囲：.entry-content
================================ */

/* タイトル、サムネイル、投稿日時 */

.entry-header {
  margin: 8rem 0;
}

.entry-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.4;
  margin-bottom: 1rem;
  text-align: center;
}

.entry-meta {
  font-size: clamp(1.4rem, 1.7vw, 1.7rem);
  color: #888;
  margin-bottom: 2rem;
  text-align: right;
}


.entry-thumbnail {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.entry-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}


/* 基本レイアウト */
.entry-content {
  font-size: clamp(1.4rem, 1.7vw, 1.8rem);
  line-height: 2.2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem var(--contentPadding);
}

/* 段落 */
.entry-content p {
  margin-top: 1.6rem;
}

/* strong（太字）を少し強調 */
.entry-content strong {
  font-weight: 500;
  color: var(--primary-red);
}

/* 見出し（WordPress風） */
.entry-content h2 {
  font-size: clamp(1.9rem, 2.4vw, 2.4rem);
  margin: 8rem 0 4rem;
  padding: 2rem;
  border-bottom: 2px solid var(--primary-white);
  background-color: var(--primary-red);
  color: var(--primary-white);
  font-weight: 600;
  line-height: 1;
  text-align: left;
}

.entry-content h3 {
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
  margin: 2.4rem 0 1rem;
  padding-left: 1rem;
  border-left: 4px solid #e7c6cc;
  font-weight: 500;
  line-height: 1.8;
}

.entry-content h4 {
  font-size: clamp(1.4rem, 1.6vw, 1.6rem);
  margin: 2.4rem 0 1.2rem;
  padding-left: 0.8rem;
  border-left: 3px solid var(--primary-red);
  font-weight: 500;
  line-height: 1.7;
}

.entry-content h5 {
  font-size: clamp(1.3rem, 1.4vw, 1.4rem);
  margin: 2rem 0 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--primary-red);
}

/* リスト */
.entry-content ul,
.entry-content ol {
  margin: 1.4rem 0 1.4rem 1.5rem;
  padding-left: 0.5rem;
}

.entry-content li {
  margin: 0.6rem 0;
  line-height: 1.8;
}
.wp-block-list{
  list-style: disc;
}



/* 画像（中央寄せ＋余白） */
.entry-content figure {
  margin: 2rem auto;
  text-align: center;
}

.entry-content figure img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/* 引用 */
.entry-content blockquote {
  margin: 2rem 0;
  padding: 1.2rem 1.5rem;
  border-left: 4px solid var(--primary-pink-beige);
  background: #faf5f7;
  color: #444;
  border-radius: 4px;
}

.entry-content blockquote p {
  margin: 0;
}

/* 水平線 */
.entry-content hr {
  border: none;
}

/* TOC（目次） */
.ez-toc-counter {
  margin: 4rem 0;
  padding: 2rem 2.2rem;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 6px;
}

.ez-toc-title-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 30px;
}

.entry-content .ez-toc-title {
  font-weight: 600;
  cursor: pointer;
}

.entry-content .toc-list li {
  margin: 0.4rem 0;
}
.ez-toc-heading-level-2 > a::before {
  content: "▸";
  margin-right: 8px;
  text-decoration: none;
  display: inline-block;
}

.entry-content .toc a {
  text-decoration: none;
}

.entry-content .toc a:hover {
  text-decoration: underline;
}

/* テーブル（念のため） */
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.8rem 0;
}

.entry-content table th,
.entry-content table td {
  border: 1px solid #ddd;
  padding: 0.7rem 1rem;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .entry-content {
    /* padding: 1.4rem 1rem; */
    /* font-size: 0.95rem; */
  }

  .entry-content h2 {
    /* font-size: 1.35rem; */
  }

  .entry-content h3 {
    /* font-size: 1.15rem; */
  }
}
