/*
Theme Name: Pinboard Child
Template: pinboard
Description: Pinboard テーマの子テーマ
Author: あなたの名前（またはRINPA）
Version: 1.0
*/

/* 子テーマ用の追加CSSはここに書く */

/* メニューのサブタイトル */
.menu-subtitle{
  display:block;
  font-size:0.75rem;
  line-height:1.2;
  opacity:.8;
  margin-top:.15em;
  white-space:normal;
}

/* 必要なら、スマホでは非表示（任意） */
@media (max-width: 768px){
  .menu-subtitle{ display:none; }
}

.hero{
  position:relative;
  width:100%;
  height:400px;
  overflow:hidden;
}
.hero img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(0.8);
}
.hero-text{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  color:white;
  text-align:center;
}