/* ==========================================================
   Marry共通デザインCSS
   適用対象：投稿ページ（single）＋固定ページ（page）
   ========================================================== */

/* ===== 全体構成 ===== */
.marry-article {
  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-article .header {
  background: #fff0f5;
  padding: 1.2rem 0;
  text-align: center;
  border-bottom: 2px solid #f8c8d8;
  border-radius: 6px 6px 0 0;
}
.marry-article .header h1 {
  color: #cc3366;
  font-size: 1.6rem;
  margin: 0.2rem 0;
}
.marry-article .meta {
  color: #888;
  font-size: 0.9rem;
}
.marry-article .meta span::before {
  content: "•";
  margin: 0 6px;
  color: #bbb;
}

/* ===== 本文 ===== */
.marry-article .article-content {
  font-size: 1.05rem;
  margin-top: 1.5rem;
}
.marry-article .article-content p {
  margin-bottom: 1.2rem;
}
.marry-article .article-content h2 {
  border-left: 5px solid #f8c8d8;
  padding-left: 10px;
  color: #cc3366;
  margin: 2rem 0 1rem;
}
.marry-article .article-content img {
  max-width: 100%;
  border-radius: 10px;
  margin: 1rem 0;
}
.marry-article .article-content a {
  color: #cc3366;
  text-decoration: underline;
}
.marry-article .article-content a:hover {
  opacity: 0.8;
}

/* ===== フッター ===== */
.marry-footer {
  margin-top: 3rem;
  padding: 2rem 1rem;
  text-align: center;
  background: #fce8ef;
  border-top: 2px solid #f8c8d8;
  border-radius: 8px;
}
.marry-footer p {
  margin: 0.5rem 0;
}
.marry-footer .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);
}
.marry-footer .marry-line-btn:hover {
  background: #05a94f;
}

/* ===== 固定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-article .header h1 {
    font-size: 1.3rem;
  }
  .marry-article {
    padding: 0 1rem;
  }
}
