@charset "UTF-8";
/* ハンバーガーメニューボタン */
.hb-hamburger-menuWrap {
  position: absolute;
  right: 0;
  top: -2px;
}
@media screen and (max-width: 767px) {
  .hb-hamburger-menuWrap {
    top: 0px;
  }
}

.hb-hamburger-menu {
  position: relative;
  width: 40px;
  height: 40px;
  background: #9b0940;
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  margin-right: 0;
}

.hb-hamburger-menu:hover {
  background: #9b0940;
  transform: scale(1.05);
}

.hb-hamburger-line {
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 2px 0;
  transition: all 0.3s ease;
  transform-origin: center;
  position: relative;
}

/* ハンバーガーメニューがアクティブな時 */
.hb-hamburger-menu.active .hb-hamburger-line:nth-child(1) {
  transform: rotate(45deg) translateY(6px);
}

.hb-hamburger-menu.active .hb-hamburger-line:nth-child(2) {
  opacity: 0;
}

.hb-hamburger-menu.active .hb-hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px);
}

/* 黒オーバーレイ（メガメニュー） */
.hb-mega-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (max-width: 767px) {
  .hb-mega-menu-overlay {
    overflow: scroll;
  }
}

.hb-mega-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* メガメニューコンテンツ */
.hb-mega-menu-content {
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .hb-mega-menu-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
}
@media screen and (max-width: 767px) {
  .hb-mega-menu-content {
    margin-top: 60px;
  }
}

.hb-mega-menu-overlay.active .hb-mega-menu-content {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .hb-mega-menu-overlay.active .hb-mega-menu-content {
    transform: translate(-50%, -50%) scale(1);
  }
}

@media screen and (min-width: 768px) {
  .hb-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    padding: 2rem;
  }
}

.hb-menu-section {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .hb-menu-section {
    display: inline-block;
    width: 48%;
    vertical-align: text-top;
  }
}

.hb-menu-section h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 300;
  display: block;
  text-align: left;
  font-weight: bold;
}

.hb-menu-section h3 a.navTit {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.hb-menu-section h3.navTit {
  color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.hb-menu-section h3 a.navTit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.hb-menu-section h3 a.navTit:hover::before {
  left: 100%;
}

.hb-menu-section h3 a.navTit:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.hb-menu-items {
  list-style: none;
}
@media screen and (max-width: 767px) {
  .hb-menu-items {
    margin-top: -0.5rem;
  }
}

.hb-menu-items li {
  margin: 0.25rem 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .hb-menu-items li {
    margin: 0.1rem 0;
  }
}

.hb-menu-items a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .hb-menu-items a {
    padding: 0.3rem 1rem;
  }
}

.hb-menu-items a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.hb-menu-items a:hover::before {
  left: 100%;
}

.hb-menu-items a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

/* 閉じるボタン */
.hb-close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .hb-close-btn {
    top: 15px;
    right: 5vw;
  }
}

.hb-close-btn:hover {
  border-color: rgba(255, 255, 255, 0.6);
  transform: rotate(90deg);
}

.hb-close-btn::before,
.hb-close-btn::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
}

.hb-close-btn::before {
  transform: rotate(45deg);
}

.hb-close-btn::after {
  transform: rotate(-45deg);
}

/* メインコンテンツ */
.hb-main-content {
  padding: 120px 2rem 2rem;
  color: white;
  text-align: center;
}

.hb-main-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 300;
  letter-spacing: 3px;
}

.hb-main-content p {
  font-size: 1.2rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* アニメーション遅延 */
.hb-menu-section:nth-child(1) {
  animation-delay: 0.1s;
}

.hb-menu-section:nth-child(2) {
  animation-delay: 0.2s;
}

.hb-menu-section:nth-child(3) {
  animation-delay: 0.3s;
}

.hb-menu-section:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hb-mega-menu-overlay.active .hb-menu-section {
  animation: fadeInUp 0.6s ease forwards;
}/*# sourceMappingURL=menu.css.map */