@charset "UTF-8";
/* ==========================================================================
   Event CTA Banner — 写真背景＋白抜きテキスト 強化版
   .cta-recruit-banner--event-tour      → assets/img/event-tour/hero.jpg
   .cta-recruit-banner--event-hairmake  → assets/img/event-hairmake/hero-02.jpg
   既存の .cta-recruit-banner クラスを継承して上書き
   ========================================================================== */

/* ========== 共通ベース ========== */
.cta-recruit-banner--event-tour,
.cta-recruit-banner--event-hairmake {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 2rem 2.2rem;
  min-height: 180px;
  border-radius: 6px;
  background-color: #1a1612;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-decoration: none;
  border: none;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ========== 写真背景割り当て ========== */
.cta-recruit-banner--event-tour {
  background-image: url(../img/event-tour/hero.jpg);
}

.cta-recruit-banner--event-hairmake {
  background-image: url(../img/event-hairmake/hero-02.jpg);
}

/* ========== 拡大ホバー用の擬似画像レイヤー ========== */
.cta-recruit-banner--event-tour::after,
.cta-recruit-banner--event-hairmake::after {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-color: transparent;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

/* ========== 暗いオーバーレイ ========== */
.cta-recruit-banner--event-tour::before,
.cta-recruit-banner--event-hairmake::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.65) 100%
  );
  z-index: -1;
  transition: background 0.5s ease;
  pointer-events: none;
}

/* ========== ホバー ========== */
.cta-recruit-banner--event-tour:hover,
.cta-recruit-banner--event-hairmake:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.22);
}

.cta-recruit-banner--event-tour:hover::after,
.cta-recruit-banner--event-hairmake:hover::after {
  transform: scale(1.06);
}

.cta-recruit-banner--event-tour:hover::before,
.cta-recruit-banner--event-hairmake:hover::before {
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.22) 50%,
    rgba(0, 0, 0, 0.58) 100%
  );
}

/* ========== テキスト白抜き ========== */
.cta-recruit-banner--event-tour .cta-recruit-banner__title,
.cta-recruit-banner--event-tour .cta-recruit-banner__desc,
.cta-recruit-banner--event-tour .cta-recruit-banner__arrow,
.cta-recruit-banner--event-hairmake .cta-recruit-banner__title,
.cta-recruit-banner--event-hairmake .cta-recruit-banner__desc,
.cta-recruit-banner--event-hairmake .cta-recruit-banner__arrow {
  color: #fff;
}

.cta-recruit-banner--event-tour .cta-recruit-banner__title,
.cta-recruit-banner--event-hairmake .cta-recruit-banner__title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  margin-bottom: 0.5rem;
  display: block;
}

.cta-recruit-banner--event-tour .cta-recruit-banner__desc,
.cta-recruit-banner--event-hairmake .cta-recruit-banner__desc {
  font-size: clamp(0.82rem, 1.1vw, 0.92rem);
  line-height: 1.85;
  letter-spacing: 0.02em;
  opacity: 0.96;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
  display: block;
}

/* ========== アイコンバッジ ========== */
.cta-recruit-banner--event-tour .cta-recruit-banner__icon,
.cta-recruit-banner--event-hairmake .cta-recruit-banner__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  font-size: 1.3rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: background 0.4s ease, transform 0.5s ease, border-color 0.4s ease;
}

.cta-recruit-banner--event-tour:hover .cta-recruit-banner__icon,
.cta-recruit-banner--event-hairmake:hover .cta-recruit-banner__icon {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.05);
}

/* ========== 本文ラップ ========== */
.cta-recruit-banner--event-tour .cta-recruit-banner__body,
.cta-recruit-banner--event-hairmake .cta-recruit-banner__body {
  flex: 1;
  position: relative;
}

/* ========== Arrow ========== */
.cta-recruit-banner--event-tour .cta-recruit-banner__arrow,
.cta-recruit-banner--event-hairmake .cta-recruit-banner__arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  font-size: 0.85rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: background 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease;
}

.cta-recruit-banner--event-tour:hover .cta-recruit-banner__arrow,
.cta-recruit-banner--event-hairmake:hover .cta-recruit-banner__arrow {
  background: rgba(255, 255, 255, 0.95);
  color: #1a1612;
  border-color: #fff;
  transform: translateX(4px);
}.cta-recruit-banner--event-tour:hover .cta-recruit-banner__arrow i, .cta-recruit-banner--event-tour:hover .cta-recruit-banner__arrow .icon, .cta-recruit-banner--event-hairmake:hover .cta-recruit-banner__arrow i, .cta-recruit-banner--event-hairmake:hover .cta-recruit-banner__arrow .icon {
  color: #1a1612;
}

/* ==========================================================================
   Mega Menu — サイト全体共通：スクロール中は hover で開かない
   （main.js が body.is-scrolling を一時付与・解除）
   ========================================================================== */
body.is-scrolling .mega-menu,
body.is-scrolling .header__nav-item--mega:hover .mega-menu {
  display: none !important;
  pointer-events: none;
}

/* メガメニューは top の transition を切って即時追従＝ヘッダーにぴったり貼り付き */
.mega-menu {
  transition: none !important;
  margin-top: 0 !important;
}

/* Event Mega Menu — 白背景固定 + テキスト暗色強制（2026-06-27 ユーザー指示）
   背景透過 → 白で塗りつぶし、白文字 → 暗色で読みやすく */
.mega-menu--event {
  background: #ffffff !important;
  background-color: #ffffff !important;
  box-shadow: 0 14px 36px rgba(42, 38, 34, 0.12);
}

.mega-menu--event .mega-menu__link,
.mega-menu--event .mega-menu__link i,
.mega-menu--event .mega-menu__en,
.mega-menu--event .mega-menu__jp {
  color: #2a2622 !important;
  text-shadow: none !important;
}

.mega-menu--event .mega-menu__en {
  color: #8a6a4f !important; /* English label は accent カラー */
  opacity: 0.85;
}.mega-menu--event .mega-menu__link:hover, .mega-menu--event .mega-menu__link:hover .mega-menu__en, .mega-menu--event .mega-menu__link:hover .mega-menu__jp, .mega-menu--event .mega-menu__link:hover i, .mega-menu--event .mega-menu__link:hover .icon {
  color: #5a3f25 !important;
}

/* ========== レスポンシブ ========== */
@media (max-width: 600px) {
  .cta-recruit-banner--event-tour,
  .cta-recruit-banner--event-hairmake {
    padding: 1.7rem 1.4rem;
    gap: 1rem;
    min-height: 160px;
  }
  .cta-recruit-banner--event-tour .cta-recruit-banner__icon,
  .cta-recruit-banner--event-hairmake .cta-recruit-banner__icon {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.05rem;
  }
  .cta-recruit-banner--event-tour .cta-recruit-banner__arrow,
  .cta-recruit-banner--event-hairmake .cta-recruit-banner__arrow {
    width: 2rem;
    height: 2rem;
    font-size: 0.75rem;
  }
}
