@charset "UTF-8";
/* body */
body {
  margin: 0;
  background-color: #FFECD5;
  font-family: "Noto Sans JP", sans-serif;
}

/* ヘッダー */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 左 */
.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-left img {
  width: auto;
  height: 65px;
}

.logo {
  height: 36px;
}

.site-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  white-space: nowrap;
}

/* 右 */
.header-right {
  display: flex;
  gap: 20px;
}

.header-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 12px;
}
.header-item img {
  width: auto;
  height: 35px;
}

.header-item .icon {
  font-size: 18px;
  line-height: 1;
}

.header-item .label {
  margin-top: 4px;
  font-weight: 600;
}

/* hover */
.header-item:hover {
  opacity: 0.7;
}/*# sourceMappingURL=header.css.map */