@charset "UTF-8";

/* =========================================
   変数の定義 (Variables)
========================================= */
:root {
  /* Colors */
  --color-bg-deep: #0a0a1a;
  --color-bg-black: #000000;
  --color-main-blue: #0055ff;
  --color-cyan: #00d2ff;
  --color-accent-pink: #ff007f;
  --color-text-main: #ffffff;
  --color-text-sub: #cccccc;

  /* Fonts */
  --font-jp: 'Noto Sans JP', sans-serif;
  --font-en: 'Montserrat', sans-serif;

  /* Layout */
  --max-width: 600px;
}

/* =========================================
   リセット (Reset)
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  /* 1rem = 10px */
}

body {
  font-family: var(--font-jp);
  color: var(--color-text-main);
  background-color: var(--color-bg-deep);
  font-size: 1.6rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

ul,
ol {
  list-style: none;
}

/* =========================================
   共通設定 (Common)
========================================= */
.neo-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  background-color: var(--color-bg-deep);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* =========================================
   固定CTA (Fixed CTA)
========================================= */
.fixed-cta-area {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  z-index: 100;
  background: rgba(10, 10, 26, 0.9);
  backdrop-filter: blur(5px);
  border-top: 1px solid rgba(0, 210, 255, 0.3);
}

.fixed-cta-area a {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.cta-tel {
  background: linear-gradient(135deg, var(--color-main-blue), var(--color-cyan));
  color: #fff;
}

.cta-access {
  background: var(--color-bg-black);
  color: var(--color-cyan);
}

.cta-reserve {
  background: linear-gradient(135deg, #b500ff, #e633ff);
  color: #fff;
}

.fixed-cta-area .icon {
  font-size: 1.6rem;
  margin-bottom: 2px;
}

/* =========================================
   FV (ファーストビュー)
========================================= */
.fv-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.fv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.fv-bg img,
.fv-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  /* 背景を少し暗くしてテキストを目立たせる */
}

.fv-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 10, 26, 0.2) 0%, rgba(10, 10, 26, 1) 100%);
}

.fv-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 90%;
  padding-bottom: 60px;
  /* CTAの分だけ浮かす */
}

.fv-catchphrase {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 16px;
  text-shadow: 0 0 10px rgba(0, 210, 255, 0.8);
  letter-spacing: 0.05em;
}

.fv-sub-catchphrase {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 40px;
  color: var(--color-text-sub);
}

.fv-logo-area {
  margin-bottom: 20px;
}

.en-logo {
  display: block;
  font-family: var(--font-en);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--color-cyan);
  letter-spacing: 0.1em;
  text-shadow: 0 0 15px rgba(0, 210, 255, 0.8);
}

.jp-logo {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 5px;
  letter-spacing: 0.1em;
}

.fv-hours {
  font-size: 1.2rem;
  border: 1px solid var(--color-cyan);
  display: inline-block;
  padding: 8px 24px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px rgba(0, 210, 255, 0.2);
}

/* =========================================
   CONCEPT (neoとはどんな店か)
========================================= */
.concept-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(to bottom, var(--color-bg-deep) 0%, rgba(0, 85, 255, 0.1) 100%);
}

.section-title {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 30px;
  background: linear-gradient(to right, #fff, var(--color-cyan));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.concept-text {
  font-size: 1.5rem;
  line-height: 2;
  color: var(--color-text-sub);
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

/* =========================================
   FEATURES (特徴)
========================================= */
.feature-item {
  position: relative;
  padding: 80px 20px;
  overflow: hidden;
}

/* 背景ストライプのバリエーションなど */
.feature-karaoke {
  background: var(--color-bg-black);
}

.feature-community {
  background: linear-gradient(135deg, var(--color-bg-deep) 0%, rgba(0, 85, 255, 0.2) 100%);
}

.feature-drink {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a365d 100%);
  /* 明るい紺色 */
}

.feature-welcome {
  background: linear-gradient(to bottom, #000 0%, var(--color-bg-deep) 100%);
}

.bg-en-text {
  position: absolute;
  top: 10px;
  left: -20px;
  font-family: var(--font-en);
  font-size: 7.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  z-index: 1;
  letter-spacing: 0.1em;
  pointer-events: none;
  white-space: nowrap;
}

.feature-content {
  position: relative;
  z-index: 2;
}

.feature-title {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 25px;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
}

.feature-img {
  margin-bottom: 25px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.feature-text {
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #e0e0e0;
}

/* =========================================
   吹き出し (Chat)
========================================= */
.chat-area {
  margin-top: 20px;
}

.chat-row {
  display: flex;
  margin-bottom: 25px;
  align-items: flex-start;
}

.chat-left {
  justify-content: flex-start;
}

.chat-right {
  justify-content: flex-end;
}

.chat-icon {
  width: 50px;
  text-align: center;
}

.icon-img {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #fff;
  border-radius: 50%;
  font-size: 2.4rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.icon-name {
  font-size: 1.1rem;
  font-family: var(--font-jp);
  color: var(--color-text-sub);
  display: block;
  margin-top: 4px;
}

.chat-balloon {
  position: relative;
  max-width: 75%;
  padding: 15px;
  border-radius: 12px;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #333;
}

/* お客様（左側）の吹き出し */
.chat-left .chat-balloon {
  background: #ffffff;
  margin-left: 15px;
  border-top-left-radius: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.chat-left .chat-balloon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  border-width: 10px 10px 0 0;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
}

/* スタッフ（右側）の吹き出し */
.chat-right .chat-balloon {
  background: #e6f7ff;
  margin-right: 15px;
  border-top-right-radius: 0;
  border: 2px solid var(--color-cyan);
  box-shadow: 0 4px 15px rgba(0, 210, 255, 0.2);
}

.chat-right .chat-balloon::before {
  content: '';
  position: absolute;
  top: -2px;
  right: -12px;
  border-width: 10px 0 0 10px;
  border-style: solid;
  border-color: var(--color-cyan) transparent transparent transparent;
}

.chat-right .chat-balloon::after {
  content: '';
  position: absolute;
  top: 0;
  right: -8px;
  border-width: 8px 0 0 8px;
  border-style: solid;
  border-color: #e6f7ff transparent transparent transparent;
}

.staff-balloon span {
  font-weight: 700;
  color: var(--color-main-blue);
}

/* =========================================
   REVIEW (お客様の声)
========================================= */
.review-section {
  padding: 80px 20px;
  background: var(--color-bg-deep);
}

.review-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-item {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  align-items: flex-start;
  border-left: 4px solid var(--color-cyan);
}

.review-icon {
  width: 60px;
  text-align: center;
  flex-shrink: 0;
  margin-right: 15px;
}

.review-icon img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-main-blue);
}

.review-name {
  display: block;
  font-size: 1rem;
  color: var(--color-cyan);
  margin-top: 5px;
  line-height: 1.2;
}

.review-text {
  font-size: 1.4rem;
  line-height: 1.6;
}

/* =========================================
   PRICE (料金システム)
========================================= */
.price-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, var(--color-bg-black) 0%, rgba(0, 85, 255, 0.1) 100%);
  text-align: center;
}

.price-sub {
  font-size: 1.4rem;
  color: var(--color-text-sub);
  margin-bottom: 30px;
}

.price-box {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--color-main-blue);
  border-radius: 12px;
  padding: 30px 20px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(0, 85, 255, 0.2);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.price-row:last-child {
  border-bottom: none;
}

.price-label {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}

.price-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-cyan);
  text-align: right;
  line-height: 1.4;
}

.price-value .tax {
  font-size: 1.2rem;
  font-weight: normal;
  color: var(--color-text-sub);
}

.price-note {
  font-size: 1rem;
  font-weight: normal;
  color: var(--color-accent-pink);
}

/* =========================================
   FAQ (よくあるご質問)
========================================= */
.faq-section {
  padding: 80px 20px;
  background: var(--color-bg-black);
}

.faq-list {
  max-width: 500px;
  margin: 0 auto;
}

.faq-list dt {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 15px 15px 15px 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 10px;
  position: relative;
  color: var(--color-cyan);
}

.faq-list dt::before {
  content: 'Q.';
  position: absolute;
  left: 15px;
  top: 15px;
  font-weight: 900;
  color: var(--color-main-blue);
}

.faq-list dd {
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 0 15px 15px 40px;
  margin-bottom: 25px;
  position: relative;
  color: #e0e0e0;
}

.faq-list dd::before {
  content: 'A.';
  position: absolute;
  left: 15px;
  top: 0;
  font-weight: 900;
  color: var(--color-accent-pink);
}

/* =========================================
   ACCESS & FOOTER
========================================= */
.footer-section {
  padding: 80px 20px 20px;
  background: linear-gradient(to bottom, var(--color-bg-deep) 0%, #000 100%);
  text-align: center;
}

.map-wrapper {
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.store-info {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.store-name {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-cyan);
  margin-bottom: 20px;
}

.store-address,
.store-tel,
.store-hours {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #ccc;
}

.copyright {
  font-size: 1rem;
  color: #666;
  margin-top: 40px;
}

/* =========================================
   ANIMATIONS (スクロールアニメーション)
========================================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* =========================================
   TOP PRICE BLOCK (時間制料金)
========================================= */
.top-price-block {
  background: #000;
  border: 1px solid #ffcc00;
  border-radius: 4px;
  padding: 40px 20px;
  text-align: center;
  margin: 30px 20px 60px;
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.top-price-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

.top-price-sub {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffcc00;
  margin-bottom: 20px;
}

.top-price-time {
  font-size: 2.4rem;
  font-weight: 900;
  color: #ffff00;
  margin-bottom: -10px;
}

.top-price-amount {
  font-size: 6rem;
  font-weight: 900;
  color: transparent;
  background: linear-gradient(to bottom, #ffff00, #ffcc00);
  background-clip: text;
  -webkit-background-clip: text;
  line-height: 1.2;
}

.top-price-amount .currency {
  font-size: 2.4rem;
}

.top-price-tax {
  font-size: 1.2rem;
  color: #ffcc00;
  margin-bottom: 30px;
}

.top-price-desc {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.8;
}

/* =========================================
   NEW KARAOKE FEATURE
========================================= */
.feature-new-karaoke {
  background: linear-gradient(to bottom, #faeeaa 0%, #d576bc 100%);
}

.feature-new-karaoke .bg-en-text {
  color: rgba(0, 0, 0, 0.05) !important;
}

.feature-new-karaoke .feature-title {
  color: #111 !important;
  font-size: 3.2rem;
  border-bottom: 2px solid #111 !important;
}

.karaoke-subtitle {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.5;
  color: #111;
  margin-bottom: 20px;
}

.feature-new-karaoke .feature-text {
  color: #222;
  text-align: center;
  font-weight: 700;
}

.feature-new-karaoke .staff-balloon span {
  background: linear-gradient(transparent 60%, rgba(255, 200, 0, 0.5) 60%);
  color: #333;
}

/* =========================================
   NEW DRINK FEATURE (こだわりのドリンク)
========================================= */
.feature-new-drink {
  background: #000;
}

.feature-new-drink .feature-title {
  color: #fff;
  font-size: 3.2rem;
  letter-spacing: 0.1em;
}

.drink-subtitle {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 40px;
}

.drink-kodawari {
  margin-bottom: 40px;
}

.kodawari-title {
  text-align: center;
  color: var(--color-cyan);
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 30px;
}

.kodawari-title span {
  color: var(--color-cyan);
}

.kodawari-item {
  display: grid;
  margin-bottom: 30px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.kodawari-item>* {
  grid-column: 1;
  grid-row: 1;
}

.kodawari-text {
  align-self: end;
  padding: 50px 20px 20px;
  background: linear-gradient(to top, rgba(0, 10, 20, 0.95) 0%, rgba(0, 10, 20, 0.6) 60%, transparent 100%);
  z-index: 2;
}

.kodawari-num {
  font-size: 1.3rem;
  font-weight: 900;
  color: #000;
  font-family: var(--font-en);
  margin-bottom: 12px;
  display: inline-block;
  padding: 4px 14px;
  background: var(--color-cyan);
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.5);
  letter-spacing: 0.1em;
}

.kodawari-text p {
  font-size: 1.7rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.6;
}

.kodawari-text p span {
  color: #fff;
  background: linear-gradient(transparent 60%, var(--color-cyan) 60%);
}

.kodawari-item.reverse .kodawari-num {
  background: #ffcc00;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
}

.kodawari-item.reverse .kodawari-text p span {
  color: #fff;
  background: linear-gradient(transparent 60%, #ffaa00 60%);
}

.kodawari-img {
  width: 100%;
  height: 280px;
}

.kodawari-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-new-drink .staff-balloon span {
  background: linear-gradient(transparent 60%, #ffff00 60%);
  color: #333;
}

/* =========================================
   REVIEW SWIPER CSS
========================================= */
.review-section {
  padding: 60px 0;
}

.review-sub {
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 30px;
}

.review-swiper {
  width: 100%;
  padding-bottom: 50px;
}

.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #333;
  margin: 0 10px;
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.r-icon img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.r-info {
  display: flex;
  flex-direction: column;
}

.r-name {
  font-weight: 700;
  font-size: 1.6rem;
  color: #202124;
}

.r-stars {
  color: #fbbc04;
  font-size: 1.4rem;
  margin-top: 5px;
}

.r-time {
  color: #70757a;
  font-size: 1.2rem;
  margin-left: 5px;
}

.review-body {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.review-image img {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center 85%;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--color-cyan);
  opacity: 1;
}