@charset "UTF-8";
/* header.css: ヘッダー専用スタイル */
/* Header Styles */
.ly_header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-top: 4px solid var(--color-red);
}

.ly_header_container {
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: auto;
}
@media screen and (max-width: 375px) {
  .ly_header_container {
    padding: 16px 20px;
  }
}

.ly_header_logo {
  display: flex;
  align-items: center;
}

.ly_header_logo_img {
  height: 45px;
  flex-shrink: 0;
}

.ly_header_actions {
  display: flex;
  align-items: center;
}

.ly_header_instagram_btn {
  display: flex;
  width: 160px;
  padding: 16px 20px 18px 20px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  border-radius: 30px;
  border: 2px solid var(--color-cream, #F7F3F0);
  background: var(--color-red, #E72A25);
  transition: all 0.3s ease;
}
.ly_header_instagram_btn:hover {
  background: var(--color-cream, #F7F3F0);
  border-color: var(--color-red, #E72A25);
}
.ly_header_instagram_btn:hover .el_instagram_text {
  color: var(--color-red, #E72A25);
}
.ly_header_instagram_btn .el_instagram_icon {
  width: 16px;
  height: 16px;
}
.ly_header_instagram_btn .el_instagram_text {
  color: var(--color-white, #FFF);
  text-align: justify;
  font-feature-settings: "palt" on;
  font-family: var(--font-poppins);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  transition: color 0.3s ease;
}

/*# sourceMappingURL=header.css.map */
