@charset "UTF-8";
/* ==========================================
   PC用：旧SIRIUS風光沢ピンクテンプレート適用CSS
   ========================================== */

/* 1. 最上部のサイト名ロゴ（PC用） */
#logo-wrap {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 0 1.5em 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  text-align: left !important;
}

#logo {
  background: linear-gradient(to bottom, #ff93c0 0%, #f58fbb 50%, #ff71ad 100%) !important;
  border: none !important;
  border-top: 1px solid #ff71ad !important;
  border-bottom: 1px solid #ff71ad !important;
  border-radius: 6px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 10px 15px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 2px 4px rgba(0, 0, 0, 0.15) !important;
}

#logo a, #logo span {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-weight: bold !important;
  text-shadow: 1px 1px 2px rgba(51, 51, 51, 0.6) !important;
  text-decoration: none !important;
}

/* 2. 記事タイトル・H2見出し */
.p-entry__title,
.entry-title,
#main h1,
.p-entry__body h2, 
.entry-content h2, 
h2 {
  background: linear-gradient(to bottom, #ff93c0 0%, #f58fbb 50%, #ff71ad 100%) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-weight: bold !important;
  border: none !important;
  border-top: 1px solid #ff71ad !important;
  border-bottom: 1px solid #ff71ad !important;
  border-radius: 6px !important;
  padding: 10px 15px !important;
  margin-bottom: 1em !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 2px 4px rgba(0, 0, 0, 0.15) !important;
  text-shadow: 1px 1px 2px rgba(51, 51, 51, 0.6) !important;
}

/* 3. サイドバーやカテゴリーの枠（ウィジェット） */
.menubox > .title,
.space-box > .title,
.newentry-title,
#pickupentry > .title {
  background: linear-gradient(to bottom, #ff93c0 0%, #f58fbb 50%, #ff71ad 100%) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-weight: bold !important;
  border-radius: 6px !important;
  padding: 8px 12px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 2px 4px rgba(0, 0, 0, 0.15) !important;
  text-shadow: 1px 1px 2px rgba(51, 51, 51, 0.6) !important;
}

.menubox,
.space-box,
.categorylist {
  background: linear-gradient(180deg, #FFE1ED 0%, #FFF0F5 50%, #FFFFFF 100%) !important;
  padding: 15px !important;
  border-radius: 8px !important;
  border: 1px solid #FF71AD !important;
  margin-bottom: 20px !important;
}

/* ==========================================
   エレガントテンプレートの花柄背景を削除するCSS
   ========================================== */
body, 
#wrap, 
#contents, 
#main, 
#sidebar {
  background-image: none !important;
}

/* ==========================================
   PC版：トップページ記事・ブログ一覧の光沢ピンク囲い（二重枠解消版）
   ========================================== */
/* 外側のカード全体に光沢ピンクの背景と枠線を適用 */
.bloglist .blog,
.blog {
  background: linear-gradient(180deg, #FFE1ED 0%, #FFF0F5 50%, #FFFFFF 100%) !important;
  border: 1px solid #FF71AD !important;
  border-radius: 8px !important;
  padding: 15px !important;
  margin-bottom: 20px !important;
  box-sizing: border-box !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important;
}

/* 内側（blog-inner）は枠や背景を解除してすっきりさせる */
.bloglist .blog-inner,
.blog-inner {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* ==========================================
   PC版：トップページ記事一覧のサムネイルとタイトルの横並び（右側に配置）
   ========================================== */
@media (min-width: 1025px) {
  /* 記事カード全体を横並び（フレックスボックス）にする */
  .blog .blog-inner {
    display: flex !important;
    align-items: flex-start !important;
    gap: 20px !important;
  }
  
  /* サムネイル（左側）のサイズ固定 */
  .blog .blog-thumb {
    flex-shrink: 0 !important;
    width: 220px !important; /* 必要に応じて幅を調整してください */
    margin-bottom: 0 !important;
  }
  
  /* テキスト・タイトルエリア（右側）を広げる */
  .blog .blog-body {
    flex-grow: 1 !important;
    width: auto !important;
  }
}

/* ==========================================
   PC版：カードの中身はグラデーション、外側の背景を白にする
   ========================================== */
@media (min-width: 1025px) {
  /* サイト全体の背景画像を消して、真っ白（#FFFFFF）にする */
  body {
    background-image: none !important;
    background-color: #FFFFFF !important;
  }
  
  /* コンテンツの外側を囲むエリアも白背景にする */
  #contents,
  #wrap {
    background-color: #FFFFFF !important;
  }
}

/* ==========================================
   PC版：フッターのブロックを1つにまとめて一体化する
   ========================================== */
@media (min-width: 1025px) {
  #footer {
    background-color: #D87093 !important; /* お好みのピンク色に合わせて調整可能です */
    padding: 20px 0 !important;
  }
  
  #footer .inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
  }
  
  #footer .inner > * {
    background: transparent !important;
    border: none !important;
    margin: 0 !important;
    text-align: center !important;
  }
}