@charset "UTF-8";
/* ========================================
   Responsive CSS - NO ALCOHOL, NO LIFE HP
   スマートフォン対応 (375px以下含む)
   ======================================== */

/* ---- ハンバーガーボタン: デスクトップでは非表示 ---- */
.hamburger-btn {
  display: none;
  background: rgba(196, 15, 0, 0.92);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
  z-index: 200;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* ハンバーガー → × 変換 */
.hamburger-btn.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger-btn.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ========================================
   スマートフォン/タブレット対応 (768px 以下)
   ======================================== */
@media screen and (max-width: 768px) {

  /* ---- 全体 ---- */
  body {
    overflow-x: hidden;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  /* ---- ヘッダー ---- */
  header {
    height: auto !important;
    min-height: 70px;
    padding: 8px 55px 0 12px;
    box-sizing: border-box;
    position: relative;
  }

  header .logo {
    width: auto !important;
    padding: 8px 0 6px !important;
    margin: 0 auto !important;
    overflow: hidden !important;
    display: block;
    text-align: center;
  }

  header .logo img {
    width: auto !important;
    max-width: 190px !important;
    height: auto !important;
  }

  /* ---- ハンバーガーボタン ---- */
  .hamburger-btn {
    display: flex !important;
    position: absolute;
    top: 13px;
    right: 10px;
  }

  /* ---- ナビゲーション ---- */
  header nav {
    width: 100% !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    position: static;
  }

  /* デフォルトは非表示 */
  header nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(176, 0, 0, 0.97);
    padding: 0 !important;
    margin: 0 !important;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 100;
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  }

  /* ハンバーガークリックで表示 */
  header nav ul.is-open {
    display: flex !important;
  }

  /* セパレーター li (line.png 専用) を非表示 */
  header nav li:not(:has(a)) {
    display: none !important;
  }

  header nav li {
    float: none !important;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  header nav li:last-child {
    border-bottom: none;
  }

  header nav li a {
    display: block;
    overflow: visible;
    position: static;
    text-decoration: none;
  }

  /* nav 内の画像ボタンを非表示 */
  header nav li a img {
    display: none !important;
  }

  /* positionSet1 の overflow / position を解除 (nav li内のみ) */
  header nav li.positionSet1 {
    overflow: visible !important;
    position: static !important;
  }

  /* positionText をテキストとして表示 */
  header nav li .positionText {
    position: static !important;
    display: block !important;
    overflow: visible !important;
    width: auto !important;
    height: auto !important;
    left: auto !important;
    top: auto !important;
    font-size: 15px !important;
    font-weight: bold !important;
    color: #ffffff !important;
    padding: 14px 20px !important;
    text-align: center !important;
    font-style: normal !important;
    text-decoration: none !important;
    line-height: 1.4em !important;
  }

  header nav li a:hover .positionText {
    background: rgba(255,255,255,0.1);
  }


  /* ---- コンテンツ共通 ---- */
  .contentsInner {
    width: 100% !important;
    padding: 0 12px !important;
    box-sizing: border-box !important;
  }

  .bgList {
    width: auto !important;
    margin: 0 0 25px !important;
  }

  /* bgList 内のトップ/ボトム装飾画像 (topBottom.png) を全幅に */
  .bgList > img {
    width: 100% !important;
    height: auto !important;
  }

  .fukidashiWrap {
    width: auto !important;
    margin: 0 !important;
  }

  .fukidashiWrap > img {
    width: 100% !important;
    height: auto !important;
  }

  .fukidashiWrap .fukidashiArea {
    background-size: 100% auto !important;
    padding: 15px !important;
  }

  .fukidashiWrap .fukidashiArea p {
    font-size: 14px !important;
    word-break: break-all;
  }

  /* ページタイトル画像あり: 画像を縮小、テキストは非表示 */
  .pageTitle {
    width: auto !important;
    margin: 0 auto 15px !important;
  }

  .pageTitle:has(img) .positionText {
    display: none !important;
  }

  .pageTitle img {
    max-width: 85% !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
  }

  /* ページタイトル画像なし: テキストを表示 */
  .pageTitle:not(:has(img)) {
    overflow: visible !important;
  }

  .pageTitle:not(:has(img)) .positionText {
    position: static !important;
    display: block !important;
    overflow: visible !important;
    width: auto !important;
    height: auto !important;
    left: auto !important;
    top: auto !important;
    font-size: 20px !important;
    font-weight: bold !important;
    color: #5D3F33 !important;
    padding: 15px 0 10px !important;
    text-align: center !important;
    line-height: 1.5em !important;
    font-style: normal !important;
  }

  /* ---- フッター ---- */
  footer .wrap {
    width: 100% !important;
    padding: 10px 15px !important;
    box-sizing: border-box !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative !important;
  }

  footer .wrap .pageTop {
    position: static !important;
    display: block !important;
    margin: 5px 0 0 !important;
    padding: 0 !important;
    right: auto !important;
    bottom: auto !important;
  }

  footer .wrap .pageTop img {
    width: 50px !important;
    height: auto !important;
  }


  /* ---- NEWS ---- */
  .titleArea {
    margin: 15px 5px 0 !important;
    background-position: left bottom !important;
    background-size: 100% auto !important;
  }

  .titleArea .title01 {
    float: none !important;
    padding: 0 0 8px 5px !important;
    font-size: 14px !important;
  }

  .titleArea .title01 .listBg {
    font-size: 14px !important;
    word-break: break-all;
    white-space: normal;
  }

  .titleArea .date {
    float: none !important;
    font-size: 13px !important;
    text-align: left !important;
    margin: 0 0 5px 5px !important;
  }

  .commentArea {
    margin: 8px 5px 15px !important;
    font-size: 13px !important;
    word-break: break-all;
  }


  /* ---- PROFILE ---- */
  .nameBg, .nameBg02 {
    width: auto !important;
    height: auto !important;
    background-image: none !important;
    border: 2px solid #C40F00;
    border-radius: 6px;
    padding: 15px !important;
    margin: 0 0 20px !important;
    box-sizing: border-box;
  }

  .nameBg.nikka, .nameBg.maou {
    padding: 15px !important;
  }

  .nameBg02.vodka {
    padding: 15px !important;
  }

  .nameFace {
    float: none !important;
    width: auto !important;
    display: block;
    max-width: 120px;
    margin: 0 auto 12px;
  }

  .nameFace img {
    max-width: 100%;
    height: auto;
  }

  .nameBg .nameRight, .nameBg02 .nameRight {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
  }

  /* プロフィール: 名前バナー画像を非表示、positionText を表示 */
  .nameBg .nameRight .positionSet1,
  .nameBg02 .nameRight .positionSet1 {
    overflow: visible !important;
  }

  .nameBg .nameRight .positionSet1 img,
  .nameBg02 .nameRight .positionSet1 img {
    display: none !important;
  }

  .nameBg .nameRight .positionText,
  .nameBg02 .nameRight .positionText {
    position: static !important;
    display: block !important;
    overflow: visible !important;
    width: auto !important;
    height: auto !important;
    left: auto !important;
    top: auto !important;
    font-size: 12px !important;
    color: #5D3F33 !important;
    font-weight: bold !important;
    white-space: pre-wrap !important;
    padding: 0 0 8px !important;
    line-height: 1.7em !important;
    font-style: normal !important;
  }

  .nameBg p, .nameBg02 p {
    font-size: 13px !important;
    padding: 5px 0 0 0 !important;
    max-height: none !important;
  }


  /* ---- DISCOGRAPHY ---- */
  .titleArea02 {
    margin: 12px 0 0 !important;
  }

  .titleArea02 .discImg {
    float: none !important;
    display: block !important;
    width: auto !important;
    max-width: 140px !important;
    height: auto !important;
    margin: 0 auto 10px !important;
  }

  .titleArea02 .discRight {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
  }

  .titleArea02 .discRight .title02 {
    font-size: 15px !important;
    padding: 0 0 8px 5px !important;
    background-position: left bottom !important;
    background-size: 100% auto !important;
  }

  .titleArea02 .discDate {
    padding: 5px 0 0 5px !important;
    font-size: 12px !important;
  }

  .titleArea02 .discArea {
    padding: 10px 0 0 5px !important;
    font-size: 13px !important;
    word-break: break-all;
  }

  .titleArea02 .discArea .discList {
    padding: 0 0 4px !important;
  }


  /* ---- PARTY ---- */
  .partyWrap {
    margin: 10px 0 0 !important;
  }

  .partyWrap .partyArea {
    margin: 4px 8px !important;
    border-bottom-color: #c0a090 !important;
    display: flex;
    flex-wrap: wrap;
  }

  .partyWrap .partyTitle {
    float: none !important;
    width: 75px !important;
    min-width: 75px;
    flex-shrink: 0;
    font-size: 11px !important;
    padding: 6px 5px 6px 5px !important;
    color: #B30000;
    font-weight: bold;
  }

  .partyWrap .partyComment {
    float: none !important;
    width: auto !important;
    flex: 1;
    font-size: 13px !important;
    padding: 5px 0 6px 8px !important;
    word-break: break-all;
  }

  /* PARTYフライヤー画像 */
  .partyWrap .partyComment img {
    max-width: 100% !important;
    height: auto !important;
  }


  /* ---- SHOP/GOODS ---- */
  .goodsComment {
    margin: 10px 5px 15px !important;
    font-size: 13px !important;
    word-break: break-all;
  }

  .goodsListWrap {
    width: auto !important;
    margin: 0 0 15px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  .goodsListWrap .goodsLeft01,
  .goodsListWrap .goodsMiddle01,
  .goodsListWrap .goodsRight01 {
    float: none !important;
    width: 46% !important;
    margin: 4px !important;
    box-sizing: border-box;
    text-align: center;
  }

  .goodsListWrap .goodsLeft02,
  .goodsListWrap .goodsRight02 {
    float: none !important;
    width: 46% !important;
    margin: 4px !important;
    box-sizing: border-box;
    text-align: center;
  }

  .goodsListWrap img {
    max-width: 100% !important;
    height: auto !important;
  }


  /* ---- トップページ (index.html) ---- */

  /* メイン画像エリア */
  .contentsWrap .mainImg {
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 auto 5px !important;
    background: none !important;
  }

  .contentsWrap .mainImg img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
  }

  /* topWrap */
  .contentsWrap .topWrap {
    width: 100% !important;
    position: static !important;
  }

  .contentsWrap .topWrap .contents01 {
    height: auto !important;
    position: static !important;
    padding: 10px 15px !important;
  }

  /* ライブ告知ボックス */
  .contentsWrap .topWrap .contents01 .live {
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: url(../img/top/img01.png) no-repeat center top !important;
    background-size: 100% 100% !important;
    max-width: 330px !important;
    min-height: 200px !important;
    margin: 0 auto 10px !important;
    padding: 52px 32px 20px !important;
    box-sizing: border-box !important;
  }

  .contentsWrap .topWrap .contents01 .live .datePlace {
    margin: 0 !important;
    font-size: 11px !important;
    line-height: 1.8em !important;
  }

  .contentsWrap .topWrap .contents01 .live .title {
    margin: 4px 0 0 !important;
    font-size: 11px !important;
  }

  /* キャラクター・サブ画像を非表示 */
  .contentsWrap .topWrap .contents01 .img02 {
    display: none !important;
  }

  .contentsWrap .topWrap .contents01 .character01 {
    display: none !important;
  }

  /* contents02 (vodka / twitter / links) */
  .contentsWrap .contents02 {
    height: auto !important;
    position: static !important;
    display: block !important;
    padding: 15px !important;
    background-size: cover !important;
  }

  /* vodka キャラは絶対位置で -195px なので非表示 */
  .contentsWrap .contents02 .vodka {
    display: none !important;
  }

  /* Twitter タイムライン */
  .contentsWrap .contents02 .twitter {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 15px !important;
    display: block;
  }

  /* リンク集 */
  .contentsWrap .contents02 .links {
    position: static !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    color: white !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
    right: auto !important;
    top: auto !important;
  }

  .contentsWrap .contents02 .links br {
    display: none !important;
  }

  .contentsWrap .contents02 .links img {
    max-width: 90px !important;
    height: auto !important;
  }


  /* ---- フォーム (themesong.html, confirm.html, finish.html) ---- */
  .ta1 {
    font-size: 13px !important;
    width: 100% !important;
  }

  .ta1, .ta1 td, .ta1 th {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 6px !important;
  }

  .ta1 th {
    width: 100% !important;
    text-align: left !important;
    font-weight: bold !important;
  }

  .ta1 input[type="text"],
  .ta1 textarea,
  .ta1 select {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* ---- 固定幅画像のオーバーライド ---- */
  /* topBottom.png など bg内の画像 */
  .news > img,
  .bgList > img {
    width: 100% !important;
    height: auto !important;
  }

}
/* ========== 375px 以下 (iPhone SE等) の追加調整 ========== */
@media screen and (max-width: 375px) {

  header .logo img {
    max-width: 160px !important;
  }

  .hamburger-btn {
    top: 10px;
    right: 8px;
    width: 40px;
    height: 40px;
  }

  header nav li .positionText {
    font-size: 14px !important;
    padding: 13px 15px !important;
  }

  .partyWrap .partyTitle {
    width: 65px !important;
    min-width: 65px;
    font-size: 10px !important;
  }

  .partyWrap .partyComment {
    font-size: 12px !important;
  }

  .goodsListWrap .goodsLeft01,
  .goodsListWrap .goodsMiddle01,
  .goodsListWrap .goodsRight01,
  .goodsListWrap .goodsLeft02,
  .goodsListWrap .goodsRight02 {
    width: 44% !important;
  }

  .contentsWrap .topWrap .contents01 .live {
    max-width: 290px !important;
    min-height: 175px !important;
    padding: 46px 28px 18px !important;
  }

  .contentsWrap .topWrap .contents01 .live .datePlace {
    margin: 0 !important;
    font-size: 10px !important;
  }
}
