/* モーダル・ヘッダーすりガラス化 */
/* モーダル本体はデフォルト非表示 */
.micromodal-slide {
  display: none;
}

/* is-open のときだけ表示 */
.micromodal-slide.is-open {
  display: block;
}
/* ===== ヘッダーすりガラス化 ===== */
.header-wrap {
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
@media screen and (min-width: 769px) {
  .header-wrap {
    padding: 8px 20px;
  }
}
.menu-list {
  background-color: transparent;
}
.header-logo {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .header-wrap {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 768px) {
  .header-wrap .toggle-menu {
    top: 50%;
    transform: translateY(-50%);
  }
}

/* グローバルフッター(PC用)・スマホフッターポリシーリンク */
.global-footer {
  background-color: #fff;
  /* お問い合わせセクションとの区切り線(画面幅いっぱい) */
  border-top: 1px solid #e6ebeb;
}
.global-footer__inner {
  margin: 0 auto;
  padding: 48px 40px 40px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.global-footer__logo-link {
  display: block;
}
.global-footer__logo-img {
  width: 285px;
  height: auto;
}
.global-footer__copyright {
  display: block;
  margin-top: 4px;
  font-size: clamp(0.75rem, 0.9375vw, 1.125rem);
  color: #333;
}
.global-footer__nav {
  display: flex;
  gap: 40px;
}
.global-footer__link {
  font-size: clamp(0.875rem, 1.0938vw, 1.3125rem);
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s;
}
.global-footer__link:hover {
  color: #b1221a;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.global-footer__sns {
  display: flex;
  align-items: center;
  gap: 16px;
}
.global-footer__sns-img {
  height: 40px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}
.global-footer__sns-link:hover .global-footer__sns-img {
  opacity: 0.6;
}
/* ===== スマホフッター内のポリシーリンク ===== */
.footer__policy-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.footer__policy-link {
  font-size: clamp(0.8125rem, 1.0156vw, 1.2188rem);
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 4px;
}
/* ===== ヒーロー演出の順序変更(背景→コピーの順次フェードイン) ===== */
/* 背景画像: 0s → 1.05s(先行してフェードイン) */
.hero__bg {
  opacity: 0;
  animation: heroBgFadeIn 1.4s ease forwards;
}
@keyframes heroBgFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/* コピー: 背景完了後に3行が順にフェードイン
   -left 1.05s / -center 1.20s / -right 1.35s(各0.55s、最終1.9s終了) */
.hero__title-main {
  opacity: 0;
  transform: translateY(20px);
  animation: heroTitleFadeIn 1.8s ease forwards;
  animation-delay: 1.4s;  
}
@keyframes heroTitleFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ルビ表示 */
.name-with-reading {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.name-with-reading .reading {
  font-size: 0.5em;
  color: #666;
}
