/*
Theme Name:       BlankSlate Child
Template:         blankslate
Description:      Child theme for BlankSlate. 
Version:          1.0
*/

/* 全体のリセットや標準スタイルは BlankSlate 側が最低限提供します */

/* ▼ ヘッダー周りの例 ▼ */

.site-header {
  background-color: #fafafa; 
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-title {
  margin: 0;
  font-size: 1.25rem;
}

.site-title a {
  text-decoration: none;
  color: #333;
}

/* SNSアイコンを横並びに */
ul.social-icons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px; /* アイコンの間隔 */
}

ul.social-icons li {
  display: inline-block;
}

ul.social-icons li img {
  width: 28px;
  height: 28px;
  display: block; /* 画像をブロック化するとhoverしやすい */
}