:root {
  --header-bg: #8cc53e;
  --tel-bg: #79af30;
}

/* 画像は原則として親幅内で縮む */
img {
  max-width: 100%;
  height: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--header-bg);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  height: 70px;
}

@media (max-width: 767px) {
  .site-header {
    height:  auto;
  }
}

/* コンテナは最大1100px、狭い画面では100%で縮む */
.header-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.2vw, 24px);
  padding: 0 5px;
  height: 100%;
}

/* ロゴは高さを可変（32〜56px） */
.logo img {
  display: block;
  height: clamp(25px, 5vw, 48px);
  width: auto;
}

/* 右側グループ */
.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 16px);
}

/* 電話ブロックも可変パディング＆幅 */
.tel-block {
  background: var(--tel-bg);
  color: #fff;
  padding: 14px;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .tel-block {
    padding: 16px;
  }
}

@media (max-width: 767px) {
  .tel-block {
    padding: 10px;
  }
}

@media (max-width: 417px) {
  .tel-block {
    padding: 7px;
  }
}

.tel-row {
  display: flex;
  align-items: center;
  gap: clamp(6px, 0.9vw, 8px);
}

.tel-icon {
  width: clamp(16px, 1.8vw, 20px);
  height: clamp(16px, 1.8vw, 20px);
  object-fit: contain;
}

/* 電話番号の文字サイズも可変（14〜18px） */
.tel-number {
  color: #fff;
  font-weight: 700;
  font-size: clamp(17px, calc(1.6vw + 3px), 21px);
  text-decoration: none;
}

.tel-number:hover {
  text-decoration: underline;
}

/* 営業時間（10〜12px） */
.biz-hours {
  margin-top: 2px;
  margin-left: 30px;
  font-size: clamp(9px,  calc(1.2vw + 3px), 11px);
  color: #fff;
  opacity: 0.95;
}

@media (max-width: 410px) {
  .tel-number {
    font-size: 14px;
  }
  .biz-hours {
    font-size: 6px;
  }
}

/* SNSアイコンも可変（22〜28px） */
.sns {
  display: flex;
  align-items: center;
  gap: clamp(5px, 1vw, 10px);
}
.sns-link img {
  display: block;
  width: clamp(35px, 3.2vw, 44px);
  height: clamp(35px, 3.2vw, 44px);
  object-fit: contain;
  transition: opacity 0.15s ease;
}
.sns-link:hover img {
  opacity: 0.8;
}

@media screen and (max-width: 1100px) {
  .header-inner {
    width: 95%;
  }
}
@media screen and (max-width: 767px) {
  .biz-hours {
    margin-left: 23px;
  }

  .sns {
    margin-right: 5px;
  }
}

