@charset "UTF-8";
/*
 Theme Name: SANGO Child
 Theme URI: https://saruwakakun.design
 Author: SARUWAKA
 Author URI: https://saruwakakun.com
 Template: sango-theme
 Version: 3.0
*/
/*こちらはSANGOの子テーマ用CSSです。以下にCSSを記入していきましょう。*/

/* サイト名グラデーション（blue → orange） */
#logo a.header-logo__link {
  background: linear-gradient(135deg, #365A9B, #EDA74D) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
}

/* dfont(Quicksand)を無効化 → デフォルトフォントに統一 */
.dfont {
  font-family: inherit !important;
}

/* 本文テキスト色を柔らかいグレーに維持 */
body {
  color: #4a5568;
}

/* 「検証実績」サイドバーウィジェット（custom_html-1）の表示崩れ修正
   - 親テーマの .widget .custom-html-widget { padding: 0 } と
     ウィジェット本体の inline style padding:10px 0 で左右余白が 0 になり、
     widgettitle (padding: 6px 18px) と本文の左揃えが18pxズレて見えていた。
   - また ul の padding:0 + list-style:disc で discマーカーが見切れていた。 */
.widget .verification-results {
  padding: 10px 18px !important;
}
.widget .verification-results ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget .verification-results li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}
.widget .verification-results li:last-child {
  border-bottom: none;
}
