@charset "utf-8";
/* CSS Document */

/* 🔹 ヘッダーエリア */
#headArea {
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    width: 100%;
    height: 80px;
   
    left: 0;
    top: 0;
    z-index: 3;
}
#headArea h1 {
    margin: 0;
    padding: 15px 0 0 10px;
}
#headArea h1 img {
    height: 20px;
}

/* 🔹 ハンバーガーメニュー（スマホ用） */
#headArea .menuBtn {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 40px;
    height: 40px;
    background: url(../../img/sp/common/btn_topmenu.png) no-repeat center;
    background-size: contain;
    cursor: pointer;
}
#headArea.menuOpen .menuBtn {
    background: url(../../img/sp/common/btn_topmenu_o.png) no-repeat center;
    background-size: contain;
}

/* 🔹 メニュー全体（デフォルト非表示、開いたら表示） */
#headArea .topMenu {
    display: none;
    position: absolute;
    left: 0;
    top: 51px;
    width: 100%;
    background: #00bfff;
    z-index: 10;
    max-height: calc(100vh - 50px);
    overflow-y: auto;
}
#headArea.menuOpen .topMenu {
    display: block;
}

/* 🔹 メニュー各項目（高さ圧縮） */
#headArea .topMenu li {
    padding: 6px 10px;
    background: #00bfff;
    border-bottom: 1px solid #ffffff;
    text-align: left;
}
#headArea .topMenu li a {
    display: block;
    padding: 6px 10px;
    font-size: 13px;
    color: #ffffff;
    background: transparent;
}

/* 🔹 教室一覧（タイトル） */
#headArea .topMenu .scl .index {
    padding: 6px 10px;
    font-size: 13px;
    font-weight: bold;
    color: #FFFFFF;
}

/* 🔹 教室一覧リスト本体 */
#headArea .topMenu .list {
    display: block !important;
    background: #00bfff;
    padding: 0;
}
#headArea .topMenu .list li {
    padding: 6px 10px 6px 20px;
    background: #00bfff;
    border-bottom: 1px solid #ffffff;
}
#headArea .topMenu .list li a {
    font-size: 13px;
    color: #ffffff;
}


#headArea h1 img {
    height: 20px;
    width: auto; /* ← これで比率をキープ */
}

/* トップページ専用 ハンバーガーメニュー対応 */
#headArea .menuBtn {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 40px;
  height: 40px;
  background: url(../../img/sp/common/btn_topmenu.png) no-repeat center;
  background-size: contain;
  cursor: pointer;
  z-index: 100;
}

#headArea.menuOpen .menuBtn {
  background: url(../../img/sp/common/btn_topmenu_o.png) no-repeat center;
  background-size: contain;
}

/* メニュー非表示→表示切り替え */
#headArea .topMenu {
  display: none;
  position: absolute;
  left: 0;
  top: 51px;
  width: 100%;
  background: #00bfff;
  z-index: 99;
  max-height: calc(100vh - 50px);
  overflow-y: auto;
}

#headArea.menuOpen .topMenu {
  display: block;
}

