/* ===========================================
   デフォルト（PC表示）スタイル
   =========================================== */
.only-sp {
  display: none;
}
.only-pc {
  display: block;
}

body{
	font-family: "Century Gothic", sans-serif ;
}

/* ===========================================
   スマホ表示時（max-width:768px）用スタイル
   =========================================== */
@media screen and (max-width: 768px) {
  /* 全体背景 */
  body {
    background: #fff;
    font-family: sans-serif ;
  }

  /* only‑sp / only‑pc 切り替え */
  .only-sp {
    display: block;
  }
  .only-pc {
    display: none;
  }

  /* モバイルメニュー全体 */
  .mobile-menu {
    position: relative;
    display: block;
  }

  /* ヘッダー部分 */
  /* ヘッダー内コンテナを Flexbox で一行に並べる */
  .mobile-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;       /* 折り返し禁止 */
    box-sizing: border-box;
    background: #cccabb;
  }

  /* ロゴ部分は余ったスペースを使う */
  .mobile-logo {
    flex: 0 0 85%;           /* 基本幅 85%、伸縮させない */
    max-width: 85%;
  }

  .mobile-logo img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* ハンバーガーは必要最小サイズ */
/* ハンバーガー部分：幅 15% に固定 */
  #menu-toggle {
    flex: 0 0 15%;           /* 基本幅 15%、伸縮させない */
    max-width: 15%;
    text-align: center;      /* 真ん中に three-bars を寄せる */
    font-size: 32px;         /* アイコンを大きめに */
    line-height: 1;
    cursor: pointer;
    color: #333333;
    background: #cccabb;
  }


  /* メニュー パネル */
  #menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background: #cccabb;
    color: #333333;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    z-index: 2000;
    padding: 20px;
  }
  #menu-panel.hidden {
    display: none;
  }

  /* リストマーカー削除・余白リセット */
  #menu-panel ul,
  #menu-panel .submenu {
    list-style: none;
    margin: 0;
    padding-left: 0;
  }

  /* HOME 項目を下げる */
  #menu-panel ul > li:first-child {
    margin-top: 20px;
  }

  /* リンクスタイル */
  #menu-panel a {
    color: #333333;
    text-decoration: none;
    font-weight: bold;
  }
  #menu-panel a:hover {
    color: #cc0001;
  }

  /* 閉じるボタン（×） */
  .menu-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #333333;
    z-index: 2100;
  }

  /* アコーディオン見出し */
  /* アコーディオン見出し */
  .accordion-toggle {
    display: block;
    cursor: pointer;
    margin: 10px 0;
    padding: 10px;
    font-weight: bold;
    border-bottom: 1px solid #aaa;
  }
  /* YASUHIRO YAMANE（１つめの accordion ）*/
  #menu-panel > ul > li.accordion-toggle:nth-child(2) {
    background-color: #333333; /* 赤 */
    color: #fff;
  }
  /* FAN CLUB MOTHER（２つめの accordion ）*/
  #menu-panel > ul > li.accordion-toggle:nth-child(3) {
    background-color: #cc0001; /* 赤 */
    color: #fff;
  }

  /* サブメニュー */
  #menu-panel .submenu {
    display: none;
    padding-left: 14px;
  }
  #menu-panel .submenu.open {
    display: block;
  }
  #menu-panel .submenu li {
    margin: 5px 0;
    padding-left: 10px;
    padding-top : 4px;
    padding-bottom : 4px;
    font-size: 18px;
  }
  #menu-panel .submenu li a {
    color: #333333;
    color: #fff !important;
  }
  #menu-panel .submenu li a:hover {
    color: #fff !important;
  }
}
