/* ==========================================================
   Marry 共通デザインCSS（投稿・固定ページ共通）
   ========================================================== */

.marry-article,
.marry-post,
.marry-page {
  max-width: 780px;
  margin: 2rem auto;
  padding: 0 1rem;
  line-height: 1.8;
  color: #333;
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
}

/* ===== ヘッダー共通 ===== */
.marry-header,
.marry-post-header,
.marry-page-header {
  background: #fff0f5;
  text-align: center;
  border-bottom: 2px solid #f8c8d8;
  padding: 0.6rem 0;
}

.marry-header h1,
.marry-post-header h1,
.marry-page-header h1 {
  color: #cc3366;
  font-size: 1.3rem;
  margin: 0.2rem 0;
  line-height: 1.4;
}

.meta {
  color: #888;
  font-size: 0.85rem;
}
.meta span::before {
  content: "•";
  margin: 0 6px;
  color: #bbb;
}

/* ===== 本文共通 ===== */
.article-content,
.marry-post-body,
.marry-page-body {
  font-size: 1.05rem;
  margin-top: 1.5rem;
}
.article-content p,
.marry-post-body p,
.marry-page-body p {
  margin-bottom: 1.2rem;
}
.article-content h2,
.marry-post-body h2,
.marry-page-body h2 {
  border-left: 5px solid #f8c8d8;
  padding-left: 10px;
  color: #cc3366;
  margin: 2rem 0 1rem;
}
.article-content img {
  max-width: 100%;
  border-radius: 10px;
  margin: 1rem 0;
}
.article-content a {
  color: #cc3366;
  text-decoration: underline;
}
.article-content a:hover {
  opacity: 0.8;
}

/* ===== フッター共通 ===== */
.marry-footer,
.marry-post-footer,
.marry-page-footer {
  margin-top: 3rem;
  padding: 2rem 1rem;
  text-align: center;
  background: #fce8ef;
  border-top: 2px solid #f8c8d8;
  border-radius: 8px;
}
.marry-footer p,
.marry-post-footer p,
.marry-page-footer p {
  margin: 0.5rem 0;
}

/* ===== LINEボタン共通 ===== */
.marry-line-btn {
  display: inline-block;
  background: #06c755;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  transition: 0.2s;
}
.marry-line-btn:hover {
  background: #05a94f;
  transform: translateY(-2px);
}

/* ===== 固定LINEボタン（スマホ下部固定） ===== */
.cta-line {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #06c755;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  text-decoration: none;
  z-index: 999;
}
.cta-line:hover {
  background: #05a94f;
}

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
  .marry-header h1,
  .marry-post-header h1,
  .marry-page-header h1 {
    font-size: 1.1rem;
  }
}

/* ===== サイト共通ヘッダー（グローバル） ===== */
.site-header, header.site-header, .wp-block-site-title, .wp-block-site-tagline {
  padding: 0.5rem 0 !important;
  font-size: 0.9rem !important;
  line-height: 1.2;
}
.wp-block-site-title a {
  font-size: 1.1rem !important;
  color: #cc3366 !important;
  text-decoration: none;
}
.wp-block-site-tagline {
  color: #666 !important;
  font-size: 0.85rem !important;
}
