/* レイアウト変更が有効なときだけ効かせる */
.haru-home-layout-enabled .haru-section{
  margin: 22px auto;
  max-width: 1100px;
  padding: 0 16px;
}

.haru-home-layout-enabled .haru-section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.haru-home-layout-enabled .haru-section__title{
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .02em;
  margin: 0;
}

.haru-home-layout-enabled .haru-section__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.haru-home-layout-enabled .haru-btn-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  text-decoration:none;
  font-weight: 800;
  font-size: 13px;
}

.haru-home-layout-enabled .haru-btn-link.is-ghost{
  background: #fff;
  color: #111;
  border: 1px solid rgba(0,0,0,.15);
}

/* ===== 作例ギャラリー ===== */
.haru-home-layout-enabled .haru-gallery__grid{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.haru-home-layout-enabled .haru-gallery__item{
  display:block;
  border-radius: 14px;
  overflow:hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
  transform: translateZ(0);
}

.haru-home-layout-enabled .haru-gallery__item img{
  width:100%;
  height: 140px;
  object-fit: cover;
  display:block;
  transition: transform .35s ease;
}

@media (hover:hover){
  .haru-home-layout-enabled .haru-gallery__item:hover img{
    transform: scale(1.03);
  }
}

.haru-home-layout-enabled .haru-gallery__note{
  margin: 10px 0 0;
  color: rgba(0,0,0,.65);
  font-size: 13px;
}

/* SP：2列×3行 */
@media (max-width: 959px){
  .haru-home-layout-enabled .haru-gallery__grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .haru-home-layout-enabled .haru-gallery__item img{
    height: 150px;
  }
}

/* ===== お知らせ圧縮 ===== */
.haru-home-layout-enabled .haru-news .haru-section__more{
  color: #111;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.25);
  padding-bottom: 2px;
}

/* お知らせ：PCは3件まで、SPは2件まで表示 */
.haru-home-layout-enabled .haru-newsList .p-postList__item{ display:none; }
.haru-home-layout-enabled .haru-newsList .p-postList__item:nth-child(-n+3){ display:block; }

@media (max-width: 959px){
  .haru-home-layout-enabled .haru-newsList .p-postList__item:nth-child(-n+3){ display:none; }
  .haru-home-layout-enabled .haru-newsList .p-postList__item:nth-child(-n+2){ display:block; }
}

/* SPで見出しが改行される対策：ボタンを次の行の右端へ */
@media (max-width: 520px){
  .haru-home-layout-enabled .haru-section__head{
    flex-direction: column;      /* 1行目：見出し / 2行目：ボタン */
    align-items: stretch;
    gap: 8px;
  }

  .haru-home-layout-enabled .haru-section__actions{
    width: 100%;
    justify-content: flex-end;   /* ボタンを右寄せ（=右方向に移動） */
    flex-wrap: nowrap;           /* できるだけボタンは1行に */
    gap: 8px;
  }

  /* ボタンを少しコンパクトにして収まりを良くする */
  .haru-home-layout-enabled .haru-btn-link{
    height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }

  /* 見出しも少しだけ締める（必要なら） */
  .haru-home-layout-enabled .haru-section__title{
    font-size: 19px;
    line-height: 1.2;
  }
}