@charset "UTF-8";
.site-header__menu > li > a {
  position: relative;
}

.site-header__menu > li.is-current:not(.site-header__contact) > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  background: #ff771d;
  border-radius: 999px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.site-header__inner {
  width: 100%;
  height: clamp(80px, 6vw, 135px);
  padding-left: clamp(16px, 2.5vw, 32px);
  padding-right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo {
  margin: 0;
  line-height: 1;
  flex-shrink: 0;
}

.site-header__logo a {
  display: block;
}

.site-header__logo img {
  display: block;
  width: clamp(190px, 22vw, 330px);
  height: auto;
}

.site-header__nav {
  height: 100%;
  margin-left: 40px;
}

.site-header__menu {
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__menu li {
  height: 100%;
  display: flex;
  align-items: center;
}

.site-header__menu a {
  color: #111;
  text-decoration: none;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.site-header__contact {
  height: 100%;
  margin-left: clamp(8px, 1.5vw, 24px);
  background: #ff771d;
  transition: background 0.3s ease;
}

.site-header__contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  padding: 0 32px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.site-header__contact:hover {
  background: #ff8809;
}

.site-header__contact:hover img {
  transform: translateX(-3px) rotate(-6deg);
}

.site-header__contact img {
  width: 22px;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

/* ========================================
   Header Hover Animation
======================================== */
.site-header__logo img {
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.site-header__logo a:hover img {
  transform: scale(1.04);
  opacity: 0.9;
}

.site-header__menu > li > a {
  position: relative;
  transition: color 0.3s ease;
}

.site-header__menu > li:not(.site-header__contact) > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: #ff771d;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.site-header__menu > li:not(.site-header__contact) > a:hover {
  color: #ff771d;
}

.site-header__menu > li:not(.site-header__contact) > a:hover::after {
  width: 28px;
}

/* タブレット調整 */
@media screen and (max-width: 1024px) {
  .site-header__inner {
    height: 88px;
    padding-left: 20px;
    padding-right: 0;
  }
  .site-header__logo img {
    width: 200px;
  }
  .site-header__nav {
    margin-left: 24px;
  }
  .site-header__menu {
    gap: 18px;
  }
  .site-header__menu a {
    font-size: 13px;
  }
  .site-header__contact {
    margin-left: 8px;
    padding: 0;
    flex-shrink: 0;
    align-self: stretch;
  }
  .site-header__contact a {
    min-width: auto;
    width: 148px;
    height: 100%;
    padding: 0 18px;
    border-radius: 0;
  }
  .site-header__contact img {
    width: 19px;
  }
}
.site-header__hamburger {
  display: none;
}

.sp-menu {
  display: none;
}

@media screen and (max-width: 767px) {
  .site-header {
    display: block;
  }
  .site-header__inner {
    height: 72px;
    padding: 0 18px;
  }
  .site-header__logo img {
    width: 172px;
  }
  .site-header__nav {
    display: none;
  }
  .site-header__hamburger {
    position: relative;
    display: block;
    width: 46px;
    height: 46px;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  .site-header__hamburger span {
    position: absolute;
    left: 50%;
    width: 24px;
    height: 2px;
    background: #111;
    border-radius: 999px;
    transform: translateX(-50%);
    transition: 0.25s ease;
  }
  .site-header__hamburger span:nth-child(1) {
    top: 14px;
  }
  .site-header__hamburger span:nth-child(2) {
    top: 22px;
    width: 16px;
    background: #ff8809;
  }
  .site-header__hamburger span:nth-child(3) {
    top: 30px;
  }
  body.is-menu-open .site-header__hamburger span:nth-child(1) {
    transform: translateX(-50%) translateY(8px) rotate(45deg);
  }
  body.is-menu-open .site-header__hamburger span:nth-child(2) {
    opacity: 0;
  }
  body.is-menu-open .site-header__hamburger span:nth-child(3) {
    transform: translateX(-50%) translateY(-8px) rotate(-45deg);
  }
  .sp-menu {
    display: block;
    position: fixed;
    inset: 72px 0 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.97);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: 0.35s ease;
    pointer-events: none;
  }
  body.is-menu-open .sp-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .sp-menu__inner {
    width: calc(100% - 40px);
    margin-inline: auto;
    padding: 38px 0 42px;
  }
  .sp-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .sp-menu__list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
  .sp-menu__list a {
    display: block;
    padding: 22px 0;
    color: #fff;
    text-decoration: none;
  }
  .sp-menu__list em {
    display: block;
    color: #ff771d;
    font-style: normal;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
  }
  .sp-menu__list span {
    display: block;
    margin-top: 7px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.08em;
  }
  .sp-menu__contact {
    margin-top: 34px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #ff771d;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
  }
  .sp-menu__contact img {
    width: 22px;
  }
  body.is-menu-open {
    overflow: hidden;
  }
}/*# sourceMappingURL=header.css.map */