body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  background: #111;
  color: #fff;
}

a{
    text-decoration: none;
    color: inherit;
}

li{
  text-decoration: none;
  list-style: none;
}

body{
    overflow-x: hidden;
    width: 100%;
}

.text{
  font-size: 12px;
  color: #fff;
}

/* 全体 */
body { margin: 0; background: #000; color: #fff; font-family: "Noto Sans JP", sans-serif; }

/* HEADER */
.header {
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 10000;
    padding: 15px 20px;
}

.header-inner {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
}

/* ロゴ */
.logo-area { display: flex; align-items: center; gap: 10px; }
.logo-img { width: 40px; height: 40px; }
.logo-text { font-size: 15px; letter-spacing: 0.15em; opacity: 0.9; }

/* PCナビ（右端固定） */
.nav-pc {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-item {
  position: relative;
  display: inline-block;
}

.nav-btn {
  background: none; border: none; color: #fff;
  font-size: 14px; cursor: pointer; position: relative;
  padding: 4px 0;
}

.nav-btn::after {
  content: ""; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: #fff; transition: 0.2s;
}
.nav-btn:hover::after { width: 100%; }

/* ドロップダウン（真下） */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: rgba(0,0,0,0.95);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 0;
  min-width: 160px;
  display: none;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.dropdown a {
  display: block; padding: 8px 15px;
  color: #fff; text-decoration: none; font-size: 13px;
  opacity: 0.85;
}
.dropdown a:hover { background: rgba(255,255,255,0.08); opacity: 1; }

/* LINEバナー（PC） */
.line-banner {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 20px;
  border: 1px solid #00c300;
  background: rgba(0,195,0,0.1);
  text-decoration: none; color: #fff; font-size: 12px;
}
.line-banner i { color: #00c300; font-size: 18px; }

/* ハンバーガー（×に変形） */
.hamburger {
  display: none;
  width: 30px; height: 22px;
  background: none; border: none; position: relative;
    flex-direction: column;
      justify-content: space-between;
  z-index: 300;
}
.hamburger span {
  display: block;
  position: absolute; width: 100%; height: 2px; background: #fff;
  left: 0; transition: 0.3s;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }

/* × に変形 */
.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* モバイルメニュー */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  opacity: 0; visibility: hidden;
  transition: 0.35s;
  z-index: 200;
}
.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-bg {
  position: absolute; inset: 0;
  background-image: url("../images/header-bg.png");
  background-size: cover; background-position: center;
  filter: brightness(0.35);
}

/* コンテンツ（1/4アニメ） */
.mobile-content {
  position: relative; z-index: 2;
  padding: 10px 20px 30px;
  transform: translateX(25%); opacity: 0;
  transition: 0.35s cubic-bezier(0.25,0.1,0.25,1);
}
.mobile-menu.open .mobile-content {
  transform: translateX(0); opacity: 1;
}

.nav-btn1{
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 12px 14px;
  color: #fff;
  text-align: left;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(6px);
  border-radius: 6px;
}
/* アコーディオン（おしゃれ版） */
.accordion-btn {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 12px 14px;
  color: #fff;
  text-align: left;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(6px);
  border-radius: 6px;
}

.acc-icon {
  transition: 0.3s;
}

.accordion-btn.active .acc-icon {
  transform: rotate(180deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: 0.35s;
  border-left: 2px solid rgba(255,255,255,0.15);
  margin-left: 6px;
}

.accordion-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: #fff;
  font-size: 10px;
}

/* LINE（SP） */
.mobile-line-banner {
  margin-top: 20px;
  padding: 20px 20px;
  border-radius: 10px;
  font-size: 14px;
}

.line-big {
  font-size: 28px !important;
  color: #00c300;
}

/* SP表示 */
@media (max-width: 768px) {
  .nav-pc { display: none; }
  .hamburger { display: block; margin-left: auto; }
}



/* -------------------------
   スライダー
-------------------------- */

.container{
  position: relative;
}

.iphone{
  display: none;
}

.slider {
  width: 100%;
  height: 700px;
}
.slick-img img {
  width: 100%;
height: 700px;
}

.dots-wrap {
    margin: 0;
    position: absolute;
    right: 20px;
    top: 10%;
}

.dots-wrap li {
    width: 30px;
    height: 30px;
    background-color: coral;
    margin-bottom: 10px;
    cursor: pointer;
    opacity: 0.45;
}

.dots-wrap li.slick-active,
.dots-wrap li:hover {
    opacity: 1;
}

.dots-wrap li:last-child {
    margin-bottom: 0;
}

.dots-wrap li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}

/* ============================
   シンプル広告バナー（単体）
============================ */
.clean-banner {
  position: absolute;
  bottom: 50px;
  right: 50px;
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 16px 20px;

  background: rgba(255,255,255,0.85); /* ★白ベースで綺麗 */
  border: 1px solid #ddd;
  border-radius: 12px;

  text-align: center;
  text-decoration: none;
  color: #333;

  transition: 0.25s ease;
}

/* タイトル */
.clean-banner-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

/* サブタイトル */
.clean-banner-sub {
  font-size: 14px;
  color: #666;
}

/* hover：シンプルに整える */
.clean-banner:hover {
  background: #fff;
  border-color: #bbb;
  transform: translateY(-3px);
}

.top-text{
  position: absolute;
  top: 15%;
  left: 50px;
  font-size: 45px;
  color: #fff;
  text-shadow: 4px 4px 8px #000;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}




/* スマホ最適化 */
@media (max-width: 768px) {
  .pc{
    display: none;
  }

  .iphone{
    display: block;
  }

  .slider {
  width: 100%;
  height: auto;
}
.slick-img img {
  width: 100%;
height: auto;
}

.clean-banner {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%);
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  padding: 16px 20px;

  background: rgba(255,255,255,0.85); /* ★白ベースで綺麗 */
  border: 1px solid #ddd;
  border-radius: 12px;

  text-align: center;
  text-decoration: none;
  color: #333;

  transition: 0.25s ease;
}

/* タイトル */
.clean-banner-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

/* サブタイトル */
.clean-banner-sub {
  font-size: 12px;
  color: #666;
}

.dots-wrap li {
    width: 10px;
    height: 10px;
    background-color: coral;
    margin-bottom: 10px;
    cursor: pointer;
    opacity: 0.45;
}


.top-text{
  position: absolute;
  top: 15%;
  left: 10px;
  font-size: 15px;
  color: #fff;
  text-shadow: 4px 4px 8px #000;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}




  
}

.blog{
    font-size: 22px;
  margin-bottom: 20px;
  text-align: center;
}


/* -------------------------
   カテゴリカード
-------------------------- */
.category {
  padding: 40px 20px;
}

.category h2 {
  font-size: 22px;
  margin-bottom: 20px;
  text-align: center;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;

  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  max-width: 1100px;
}

.category-list li a {
  display: flex;
  align-items: flex-end;
  width: 300px;
  min-height: 180px;
  padding: 22px;

  border-radius: 14px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;

  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;

  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.category-list li a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.category-list li a {
  position: relative;
  z-index: 2;
}

/* 背景画像 */
.bg-karaoke { background-image: url("../images/bar-select1.png"); }
.bg-darts { background-image: url("../images/bar-select2.png"); }
.bg-nomi { background-image: url("../images/bar-select3.png"); }
.bg-fruit {
  background: url('../images/fruit.png') center/cover;
}
.bg-shisha {
  background: url('../images/shisha.png') center/cover;
}
.bg-girls { background-image: url("../images/bar-select4.png"); }
.bg-mens { background-image: url("../images/bar-select5.png"); }
.bg-mix { background-image: url("../images/bar-select6.png"); }
.bg-shotbar {
  background: url('../images/bar-select7.png') center/cover;
}

.bg-lounge {
  background: url('../images/bar-select8.png') center/cover;
}

.bg-snack {
  background: url('../images/bar-select9.png') center/cover;
}


/* -------------------------
   下層リンク
-------------------------- */
.links {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
}

.links a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  padding: 10px 20px;
  border: 1px solid #fff;
  border-radius: 6px;
  transition: 0.3s;
}

.links a:hover {
  background: #fff;
  color: #000;
}

/* ============================
   カードアニメーション（li a）
============================ */
.category-list li a {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* ホバー時：ふわっと浮く + 光が差す */
.category-list li a:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.55);
}

/* ホバー時：背景の暗幕を少し薄くして写真を強調 */
.category-list li a:hover::before {
  background: rgba(0,0,0,0.25);
}

.filter-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 10px 0 20px;
}

.filter-btn {
  padding: 6px 12px;
  background: #222;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition: 0.2s;
}

.filter-btn:hover {
  background: #333;
}

@media (max-width: 600px) {
 .filter-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 10px 0 20px;
}

.filter-btn {
  padding: 6px 6px;
  background: #222;
  border-radius: 6px;
  font-size: 10px;
  cursor: pointer;
  transition: 0.2s;
}

.filter-btn:hover {
  background: #333;
}
}


/* ============================
   ALL LIST バナー
============================ */
/* ============================
   ALL LIST バナー
============================ */
.all-banner {
  display: block;
  width: 100%;
   background: rgba(0,0,0,0.45);
  background-image: url(../images/allcover.png);
  background-size: cover;
  padding: 40px 20px;
  margin: 40px auto 20px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid #333;
  box-sizing: border-box; /* ★スマホはみ出し防止 */
}

.all-banner:hover {
  background-image: url(../images/allcover.png);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.all-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.all-banner-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fbbc04;
  word-break: break-word; /* ★長い文字の折り返し */
}

/* スマホ最適化 */
@media (max-width: 768px) {
  .all-banner-title {
    font-size: 20px; /* ★スマホでのはみ出し防止 */
    letter-spacing: 1px;
  }
}





/* スマホ最適化 */ @media (max-width: 768px) { .all-banner-title { font-size: 20px; /* ★スマホでのはみ出し防止 */ letter-spacing: 1px; } }
/* ============================
/* FOOTER */
.footer {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 50px 0;
  color: #fff;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 0 20px;
}

/* 左側 */
.footer-left {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-img {
  width: 48px;
  height: 48px;
}

.footer-logo-text {
  font-size: 18px;
  letter-spacing: 0.15em;
  opacity: 0.9;
}

.footer-copy {
  margin-top: 10px;
  font-size: 13px;
  opacity: 0.7;
}

/* 右側 */
.footer-right {
  display: flex;
  gap: 60px;
}

.footer-block h4 {
  font-size: 14px;
  margin-bottom: 10px;
  color: #fff;
  opacity: 0.9;
  letter-spacing: 0.05em;
}

.footer-block a {
  display: block;
  font-size: 13px;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 6px;
  transition: 0.2s;
}

.footer-block a:hover {
  color: #fff;
}

/* LINE */
.footer-line {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid #00c300;
  border-radius: 8px;
  background: rgba(0,195,0,0.1);
  width: fit-content;
}

.footer-line-icon {
  font-size: 26px;
  color: #00c300;
}

/* SP（縦並び） */
@media (max-width: 768px) {
  
  .footer-inner {
    flex-direction: column;
    gap: 30px;
  }

  .footer-right {
    flex-direction: column;
    gap: 30px;
  }

  .footer-block a {
    font-size: 14px;
  }

  .footer-line-icon {
    font-size: 30px;
  }
}

.footer-bottom{
  font-size: 10px;
  background-color: #000;
  text-align: center;
}



