/* ==========================================
   Header
========================================== */

.kininaru-header {
  background-color: #fdfcf6;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  width: 100%;
}

.kininaru-header-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  box-sizing: border-box;
  width: 100%;
}

.kininaru-header-logo-img {
  max-height: 64px;
  width: auto;
  height: auto;
}

.kininaru-header-icons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.kininaru-header-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid #4a3b2a;
  background: transparent;
  color: #4a3b2a;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background .2s, color .2s;
}

.kininaru-header-icon-mail {
  background-color: #4a3b2a;
  color: white;
}

.kininaru-header-icon:hover {
  background-color: #4a3b2a;
  color: white;
}

.kininaru-header-x {
  font-size: 14px;
  font-weight: bold;
}

/* ==========================================
   Responsive
========================================== */

/* スマホ・タブレット時のヘッダー固定 */
@media (max-width: 1023px) {
  .header-container,
  #header-container {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000 !important;
  }

  /* ヘッダー固定時のbodyの上部余白（ヘッダーの高さ分） */
  body {
    padding-top: 64px;
  }

  /* WordPress管理バーがある場合のヘッダー位置調整 */
  /* 初期状態では管理バーの下にヘッダーを配置 */
  /* 601px〜1023px: 管理バー32px */
  body.admin-bar .header-container,
  body.admin-bar #header-container {
    top: 32px !important;
  }
}

@media (max-width: 600px) {
  /* 管理バーがスマホサイズで小さくなる場合（600px以下で46px） */
  body.admin-bar .header-container,
  body.admin-bar #header-container {
    top: 46px !important;
  }
}

@media (max-width: 767px) {
  .kininaru-header-in {
    padding: 6px 12px;
  }

  .kininaru-header-icon {
    width: 32px;
    height: 32px;
  }

  /* スマホではヘッダーの高さが小さくなるため調整 */
  body {
    padding-top: 56px;
  }
}
