/*
Theme Name: Lightning Child
Theme URI: 
Template: lightning
Description: 
Author: 
Tags: 
Version: 0.6.0
*/
/*ヘッダー*/
.site-header {
  background: #fff;
}

#site-header-container {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
}

.header-contact {
  font-size: 14px;
  font-weight: bolder;
  line-height: 1.2;
  text-align: left;
  color: #333;
  margin-bottom: 0px;
}

.header-contact p {
  margin: 0;
}

.header-contact .note {
  color: #c00;
  font-weight: normal;
  font-size: 13px;
}

#site-header-container {
  display: flex;
  justify-content: space-between; /* 左右に分ける */
  align-items: center;            /* 垂直方向中央揃え */
  flex-wrap: nowrap;              /* 折り返さない（必要なら wrap に） */
  gap: 20px;                      /* 要素間の余白 */
}

.header-contact {
  flex: 0 0 auto;                 /* 固定幅で縮まない */
  max-width: 300px;
  font-size: 14px;
  line-height: 1.4;
}

.site-header-logo-image {
  flex: 0 0 auto;                 /* 固定幅で縮まない */
  text-align: right;
}

@media (max-width: 768px) {
  #site-header-container {
    flex-direction: column;
    align-items: center;
  }

  .site-header-logo-image,
  .header-contact {
    text-align: center;
    margin-bottom: 10px;
  }
}

#site-header-container {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

.site-header {
  background-color: #f5f5f5 !important;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

/*投稿者名非表示*/
.vcard.author{
  display: none;
}
