.site-header {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 100;
  box-shadow: inset 0 -1px #e5e5e5;
}

.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 8px;
  height: 56px;
}

.site-header__contact {
  display: none;
}

.site-header__contact-title p:first-child {
  font-size: 13px;
  color: #ee6600;
  font-weight: 700;
  margin-bottom: 4px;
}

.site-header__contact-title .business-hours {
  font-size: 11px;
  margin-bottom: 0;
}

.site-header__reservation-btn,
.site-header__line-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.52px;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
}

.site-header__reservation-btn:hover,
.site-header__line-btn:hover {
  opacity: 0.8;
}

.site-header__reservation-btn {
  background-image: linear-gradient(to right, #ff9900, #ee6600);
}

.site-header__line-btn {
  background-color: #06c755;
}

.site-header__call {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.96px;
}

.site-header__call a {
  color: #333;
  text-decoration: underline;
}

/* --- Tablet/Desktop (1024px~) --- */
@media (min-width: 1024px) {
  .site-header__inner {
    padding: 16px 40px;
    height: auto;
    flex-direction: column;
  }

  .site-header__top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .site-header__contact {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    background-color: #fffaf1;
    letter-spacing: normal;
  }
}

/* PC/SP 表示切り替え */
.header-container {
  display: block;
}

/* タブレット(769px~1023px) */
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .header-container-in .header-in {
    min-height: 56px;
    padding: 14px 30px;
    padding-right: 22px;
  }

  .header-container-in .header-logo {
    padding: 0;
  }
}

@media (min-width: 1024px) {
  .site-header {
    display: block;
  }

  .header-container {
    display: none;
  }

  body.has-site-header {
    padding-top: 92px;
  }
}

@media (min-width: 768px) {
  .header-logo img {
    width: 275px;
  }
}

/* 固定CVボタン（SP/Tablet） */
.fixed-cv {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(44, 37, 31, 0.6);
  padding: 10px;
  z-index: 10;
}

.fixed-cv__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  justify-content: center;
}

.fixed-cv__inner a:hover {
  opacity: 1;
}

.fixed-cv__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  font-weight: 700;
  font-size: 12px;
  width: 100%;
  height: 54px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  letter-spacing: normal;
}

.fixed-cv__btn--reservation {
  background-image: linear-gradient(to right, #ff9900, #ee6600);
}

.fixed-cv__btn--line {
  gap: 4px;
  background: linear-gradient(to right, #44cc6d, #33a657);
}

.fixed-cv__btn--call {
  background-image: linear-gradient(to right, #ff9900, #ee6600);
}

/* PC以上では非表示 */
@media (min-width: 1024px) {
  .fixed-cv {
    display: none;
  }
}

/* 固定CV表示時（~1023px）はフッターが隠れないよう余白を確保 */
@media (max-width: 1023px) {
  body {
    padding-bottom: 74px;
  }
}
