/* ==========================
   Header（置き換え版）
   ========================== */

/* ヘッダー土台 */
.site-header{
  position: sticky;
  top: 0;
  z-index: 2000;
  background: #fff;
  border-bottom: 1px solid #e9e9ee;
}

/* ヘッダーの横並び */
.site-header .row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

/* ロゴ */
.site-logo{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-logo img{
  height: 56px;
  width: auto;
  display: block;
}

.site-logo span{
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: .10px;
  font-size: 28px;
  color: #111;
  white-space: nowrap;
}

/* ナビ（PC） */
.nav{
  margin-left: auto;
  display: flex;
  gap: 20px;
  align-items: center;
  background: #fff;
}

.nav a{
  color: #111;
  text-decoration: none;
  font-weight: 600;
}

/* ハンバーガー（PCでは非表示） */
.hamburger{
  display: none;
}

/* ==========================
   スマホ（メニュー・ハンバーガー）
   ========================== */
@media (max-width: 768px){

  /* ヘッダーは縦にせず、横並びのまま（右上にボタン） */
  .site-header .row{
    padding: 14px 0;
  }

  /* ロゴ少し小さめ */
  .site-logo img{
    height: 52px;
  }

  .site-logo span{
    font-size: 20px;
    font-weight: 700;
  }

  /* PCナビは隠す → スマホはオフキャンバス */
  .nav{
    position: fixed;
    inset: 0;                  /* top/right/bottom/left:0 */

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 26px;

    transform: translateX(100%);
    transition: transform .28s ease;
    z-index: 2100;
  }

  .nav.active{
    transform: translateX(0);
  }

  /* 予約ボタンなど */
  .nav .btn{
    width: min(72%, 320px);
    text-align: center;
  }

  /* ===== ハンバーガー（可動範囲を確保） ===== */
  .hamburger{
    display: flex;

    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 2200;             /* navより上 */

    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;

    padding: 0;
    border: 0;

    background: transparent;   /* ←透明 */
    cursor: pointer;

    color: #111;               /* ←線の色（currentColor） */
    -webkit-tap-highlight-color: transparent;
  }

  .hamburger span{
    display: block;
    width: 30px;
    height: 3px;
    margin: 0;
    background: currentColor;
    border-radius: 999px;
    transition: transform .25s ease, opacity .2s ease;
  }

  /* ×アニメ */
  .hamburger.active span:nth-child(1){
    transform: translateY(11px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2){
    opacity: 0;
  }
  .hamburger.active span:nth-child(3){
    transform: translateY(-11px) rotate(-45deg);
  }

}
/* ハンバーガー：通常時（透明） */
.hamburger {
  background: transparent;
  transition: background-color 0.2s ease;
}

/* ハンバーガー：メニューOPEN時（白背景） */
.hamburger.active {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* うっすら浮かせる */
}

/* メニューOPEN時：背景を白にする（競合に勝つ） */
#hamburger.hamburger.active{
  background-color: #fff !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  border-radius: 12px;
}


/* ==========================
   Footer
   ========================== */

.site-footer {
  background: #f7f7f7;
  border-top: 1px solid #ddd;
  padding: 24px 16px 12px;
  font-family: "Noto Sans JP", system-ui, -apple-system,
               BlinkMacSystemFont, sans-serif;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* ロゴ丸画像 */
.footer-logo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* 中央メイン領域 */
.footer-main {
  flex: 1;
}

/* 上のメニュー（Home / Studio / Access / etc） */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-nav a {
  text-decoration: none;
  color: #333;
}

.footer-nav a:hover {
  text-decoration: underline;
}

/* スタジオ名 */
.footer-title {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: 0.10px;
  font-size: 18px; /* 大きくしたければ 24px とかにしてOK */
  margin: 4px 0 14px;
}

/* メール／電話／住所のまとまり */
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
}

.footer-item {
  display: flex;
  gap: 6px;
}

.footer-item .label {
  font-weight: 500;
}

/* メール・電話のリンク */
.footer-item a {
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #333; /* 青くならない下線 */
}

.footer-item a:hover {
  opacity: 0.7;
}

/* 右側のSNSアイコン */
.footer-sns {
  display: flex;
  gap: 12px;
}

.footer-sns img {
  width: 32px;
  height: 32px;
  display: block;
}

/* コピーライト */
.footer-copy {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: #666;
}

/* ==========================
   スマホ対応
   ========================== */
@media (max-width: 768px) {

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-logo img {
    width: 96px;
    height: 96px;
  }

  .footer-copy {
    margin-top: 16px;
  }

}
