/* STC DEBUG: IF YOU SEE THIS, THIS IS THE EDITED FILE */
.wp-site-blocks {
background: #f3f1eb !important;
}

.wp-block-navigation a {
  color: #936e3a !important;
  font-weight: 700 !important;
}

/* カスタムフォント設定 */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ボタンのホバーエフェクト */
.wp-block-button__link:hover {
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

/* カードのシャドウ */
.wp-block-group.has-border-color {
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease;
}

.wp-block-group.has-border-color:hover {
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
}

/* アイコン用の円形背景 */
.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

/* ヘッダー固定（オプション） */
@media (min-width: 782px) {
  .wp-block-template-part.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }
}

/* レスポンシブ調整 */
@media (max-width: 781px) {
  .wp-block-heading.has-hero-font-size {
    font-size: 32px !important;
    line-height: 1.3 !important;
  }
  
  .wp-block-columns {
    flex-direction: column;
  }
}

/* サイトロゴのサイズ */
.wp-block-site-logo img {
  max-width: 350px !important;
  width: 350px;
}
