/*
Theme Name: SOUL DE LONE
Author: 児玉千海
Description: ポートフォリオ用WPテーマ、霊感強めのジョークサイト。
Version: 1.0
*/
.single-wrapper-shin {
    width: 100%;
    max-width: var(--pcsize); /* 1200px 上限 */
    margin: 0 auto; /* 横中央寄せ */
}

/* 1. ページ全体ラッパー */
.single-wrapper {
    margin: 0 auto; /* 横中央寄せ */
    display: flex;
    gap: 32px; /* 本文とサイドバーの間隔 */
    box-sizing: border-box;
}

/* 2. 記事コンテンツ領域 */
.single {
    flex: 1;
    background: #f9f7f3; /* 柔らかな背景 */
    padding: 2rem 1.5rem;
    border-radius: 8px;
    color: #333; /* 本文文字色 */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 3. サイドバー */
.sidebar {
    flex: none;
    width: 200px; /* 固定幅 */
    position: sticky;
    top: 2rem; /* スクロール追従 */
}

/* 4. 投稿トップ画像 */
.single-post__thumb img,
.single-post__thumbnail img {
    display: block;
    width: 478px; /* 固定幅 */
    max-height: 300px; /* 高さ制限 */
    margin: 0 auto 1.5rem; /* 中央寄せ＋下マージン */
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
}

/* 5. オーバーレイタイトル */
.overlay-title {
    position: absolute;
    width: 100%;
    left: 0;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-family: var(--font-p22);
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    border-radius: 0 0 4px 4px;
}
.overlay-title.top {
    top: 0;
}
.overlay-title.center {
    top: 50%;
    transform: translateY(-50%);
}
.overlay-title.bottom {
    bottom: 0;
}

/* 6. テキスト全般 */
.single h1,
.single-post__meta,
.single-post__content,
.single-post__footer {
    color: #333;
    line-height: 1.6;
}

.wpcf7 input,
.wpcf7 textarea {
  width: 100%;
  padding: 0.75em;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-size: 16px;
}

.wpcf7 input[type="submit"] {
  background-color: #115d89;
  color: white;
  border: none;
  cursor: pointer;
  padding: 0.75em 2em;
  border-radius: 4px;
}
