@charset "utf-8";

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
}



/* ==========================================================================
   トップページ - topの動画関連
   ========================================================================== */

.top {
  width: 100%;
  position: relative;
}

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .video-container {
    aspect-ratio: 4 / 3;
  }
}

/* 文字を重ねるための設定 */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  z-index: 100;
}

.fade-text {
  color: #f8ffe0;
  font-size: 40px;
  font-family: 'Shippori Mincho', serif;
  text-align: center;
  line-height: 2.5;
  letter-spacing: 0.3em;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.76);
}

.line {
  display: inline-block;
  opacity: 0;
  filter: blur(15px);
  transform: translateY(30px);
}

@media screen and (max-width: 768px) {
  .fade-text {
    font-size: 14px;
    line-height: 2;
  }
}

.movie {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   トップページ - 動画下のデバイダー
   ========================================================================== */

.divider-section {
  padding: 80px 0;
  background-color: #ffffff;
}

@media screen and (max-width: 768px) {
  .divider-section {
    padding: 24px 0;
    background-color: #ffffff;
  }
}

.vertical-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent-color), transparent);
  margin: 20px auto 0;
}

.divider-logo {
  opacity: 0.8;
}


/* ==========================================================================
   トップページ - GALLERY
   ========================================================================== */

/* スライダー全体のサイズ制限 */
.custom-slider {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.slider-image-wrapper {
  position: relative;
  overflow: hidden;
  background-color: #000;
}

.slider-image-wrapper img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 10s linear;
}

/* スライドがアクティブな時に少しだけズームさせる（ケン・バーンズ効果） */
.carousel-item.active img {
  transform: scale(1.1);
}

/* インジケーターを丸く細く */
.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 6px;
  background-color: #d8d8d8;
}

/* ==========================================================================
   トップページ - メニュー
   ========================================================================== */

/* メニューカード全体のラップ */
.menu-card {
  display: block;
  text-decoration: none !important;
  color: inherit;
  transition: all 0.4s ease;
}

/* 画像エリアのコンテナ（はみ出しを隠す） */
.menu-img-wrap {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
}

.menu-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* テキストエリア */
.menu-info {
  padding: 20px 0;
  text-align: center;
}

.menu-info .en {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  margin-bottom: 0;
  color: var(--text-color);
}

.menu-info .jp {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 0;
  color: #888;
  letter-spacing: 0.05em;
}

/* ホバー時のアクション */
.menu-card:hover .menu-img-wrap img {
  transform: scale(1.08);
}

.menu-card:hover .menu-info .en {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .menu-info {
    padding: 15px 0;
  }

  .menu-info .en {
    font-size: 0.9rem;
  }

  .menu-info .jp {
    font-size: 0.65rem;
  }
}

/* ==========================================================================
   トップページ - 料金システム
   ========================================================================== */

.zero-system-line {
  margin: 100px 0;
  border-top: 1px solid #a8974a33;
  border-bottom: 1px solid #a8974a33;
  padding: 60px 0;
}

.system-link-block {
  text-decoration: none !important;
  display: block;
  transition: all 0.4s ease;
}

.system-flex-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-title small {
  font-size: 0.9rem;
  font-weight: 400;
  color: #888;
  letter-spacing: 0.1em;
  margin-left: 25px;
  vertical-align: middle;
}

/* 右側の矢印アイコン */
.arrow-icon {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent-color);
  position: relative;
  transition: all 0.4s ease;
}

.arrow-icon::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
  transform: rotate(45deg);
}

/* ホバー時の演出：全体が少し右に動く */
.system-link-block:hover {
  opacity: 0.7;
}

.system-link-block:hover .arrow-icon {
  width: 60px;
  margin-right: -10px;
}

@media (max-width: 768px) {
  .zero-system-line {
    margin: 40px 0;
    padding: 30px 0;
  }

  .main-title small {
    display: block;
    margin-left: 0;
    margin-top: 10px;
  }

  .arrow-icon {
    width: 30px;
  }
}

@media (max-width: 430px) {

  .main-title {
    font-size: 1.2rem;
  }

}

/* ==========================================================================
   テイクアウトページ・フードページ共通タイトル
   ========================================================================== */
.section-title {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 4rem;
  letter-spacing: 0.1rem;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 2px;
  background-color: var(--accent-color);
  margin: 15px auto 0;
}

/* ==========================================================================
   フードページ
   ========================================================================== */

.slider {
  padding-left: 0 !important;
  list-style: none;
  overflow: hidden;
  height: 282px;
}

.slider .slick-track {
  display: flex !important;
  align-items: center;
  will-change: transform;
}

.slider .slider-item {
  padding: 0 10px;
}

.slider img {
  width: 100%;
  height: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  aspect-ratio: 3/4;
}

@media (max-width:768px) {

  .slider .slider-item {
    padding: 0 6px;
    height: 150px;

  }
}

.slider.slick-initialized {
  height: auto;
}

.food-box {
  background-color: #d4c29e8f;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
}

/* 写真エリア */
.menu-photo {
  width: 100%;
  padding: 16px;
  box-sizing: border-box;
}

.menu-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.bright-plus {
  filter: brightness(1.5);
}

.bright {
  filter: brightness(1.2);
}


/* タイトルエリア */
.box-menu-title {
  font-family: "source-han-serif-japanese", serif;
  text-align: center;
  font-weight: bold;
  font-size: 1.25rem;
  padding: 20px;
  line-height: 1.4;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* 価格エリア */
.box-menu-price {
  font-family: "source-han-serif-japanese", serif;
  text-align: center;
  font-size: 1.3rem;
  padding: 0 10px 24px;
  margin-top: auto;
}

/* フレーバーのコメント */

.flavor-notice {
  display: block;
  font-size: 0.9rem;
  font-weight: normal;
  color: #666;
  margin-top: 4px;
  letter-spacing: 0.05rem;
}

@media (max-width: 768px) {
  .box-menu-title {
    font-size: 1rem;
    padding: 8px 5px;
  }

  .box-menu-price {
    font-size: 0.95rem;
    padding-bottom: 15px;
  }

  .menu-photo {
    padding: 6px;
  }
}

@media (max-width: 430px) {
  .box-menu-title {
    font-size: 0.9rem;
  }

  .box-menu-price {
    font-size: 0.85rem;
    padding-bottom: 16px;
  }

  .flavor-notice {
    font-size: 0.6rem;
    transform: scale(0.9);
  }
}


/* ==========================================================================
   テイクアウトページ
   ========================================================================== */


/* --- ヒーローセクション --- */
.hero {
  height: 100vh;
  background: linear-gradient(#ffffff1a, #ffffffb3),
    url('../img/zero/TO_top_l@1x.webp') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

@media (max-width: 768px) {
  .hero {
    background-attachment: scroll !important;
    background-position: center center;
    height: 70vh;
  }
}

.hero-content h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  line-height: 0.9;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  font-weight: 600;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--accent-color);
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}



/* .reveal {
  opacity: 0;
  transform: translateY(50px);
} */

/* --- 大きい写真部分 --- */
.featured-item {
  position: relative;
  margin-bottom: 80px;
}

.featured-img-wrapper {
  background-color: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  line-height: 0;
  font-size: 0;
}

.featured-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: drop-shadow(0 10px 15px #0000001a);
}

.featured-content {
  background-color: var(--accent-bg-color);
  color: #333333;
  padding: 40px;
  position: absolute;
  bottom: -50px;
  right: 50px;
  width: 50%;
  border-radius: 4px;
  box-shadow: 0 10px 30px #00000033;
  z-index: 10;
}

.featured-price {
  font-size: 1.5rem;
  color: #333333;
  font-weight: 700;
}

/* --- メニューグリッド（4つの四角い写真部分） --- */
.menu-grid-item {
  padding: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  border-color: var(--accent-color);
}

.grid-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 15px;
  border: 2px solid var(--accent-color);
}

.item-name {
  font-size: 1.2rem;
  font-weight: 600;
}

.item-price {
  color: var(--accent-color);
  font-weight: 700;
}

/* --- アラカルトリスト --- */
.alacarte-list {
  list-style: none;
  padding: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.alacarte-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.alacarte-list li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-color), transparent);
}

/* --- 電話お問い合わせセクション --- */

.contact-action {
  margin-top: 80px;
  padding: 60px 20px;
  background-color: #fcfaf5;
  border-radius: 12px;
}

.contact-label {
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
  margin-bottom: 15px;
  color: var(--text-color);
  font-weight: 600;
}

.btn-tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: #fff !important;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px #a38f684d;
}

.btn-tel i {
  margin-right: 15px;
  font-size: 1.5rem;
}

.btn-tel:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px #a38f6866;
  opacity: 0.9;
}

.contact-note {
  margin-top: 15px;
  font-size: 0.8rem;
  color: #888;
}

/* --- フッター --- */

.footer-info {
  border-top: 1px solid var(--border-color);
  margin-top: 120px;
  padding: 60px 0;
  background-color: #fafafa;
  text-align: center;
}

@media (min-width: 769px) {
  .featured-img {
    height: 60vh;
  }
}

@media (max-width: 992px) {
  .menu-grid-item {
    padding: 4px;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 3rem !important;
    line-height: 1.1;
  }

  .hero-content p {
    font-size: 0.9rem !important;
    letter-spacing: 0.15rem;
  }

  .section-title h2 {
    font-size: 2.2rem !important;
  }

  .featured-img {
    height: 40vh;
  }

  .featured-content {
    padding: 32px;
  }

  .featured-content h3 {
    font-size: 1.3rem;
  }

  .featured-content span {
    font-size: 1.4rem;
  }

  .row.g-4 {
    --bs-gutter-x: 10px;
    margin-right: 0;
    margin-left: 0;
  }

  .col-6.reveal {
    padding-right: 5px !important;
    padding-left: 5px !important;
  }

  .menu-grid-item {
    padding: 0 !important;
    width: 100%;
  }

  .grid-img {
    width: 100% !important;
    margin-bottom: 8px;
  }

  .btn-tel {
    font-size: 1.4rem;
    padding: 15px 30px;
    width: 100%;
    max-width: 350px;
  }
}


@media (max-width: 430px) {

  .featured-content {
    padding: 24px;
    width: 70%;
    right: -6px;

  }

  .featured-content h3 {
    font-size: 1.3rem;
  }

  .featured-content span {
    font-size: 1.4rem;
  }

  .alacarte-list {
    padding: 10px;
  }

  .item-name {
    font-size: 1.0rem;
  }

  .item-price {
    font-size: 0.8rem;
  }

}

/* =============================================
   ドリンクページ
   ============================================= */

/* 飲み放題料金表カード */
.all-you-can-drink-card {
  background-color: #fff;
  border: 2px solid var(--accent-color);
  border-radius: 15px;
  padding: 40px 20px;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.karaoke-text {
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--accent-color);
  margin-top: 10px;
  letter-spacing: 0.2em;
}

.plan-subtitle {
  font-size: 0.85rem;
  color: #888;
  margin-top: -5px;
}

.plan-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.plan-item {
  flex: 1;
  min-width: 150px;
}

.plan-item .time {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-color);
  font-family: var(--font-heading);
  line-height: 1;
}

.plan-item .time span {
  font-size: 1rem;
  margin-left: 3px;
}

.plan-item .price {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .plan-item .time {
    font-size: 2rem;
  }
}

/* ドリンクカテゴリーカード（基本構造） */
.drink-category-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  border-top: 4px solid var(--accent-color);
  text-align: center;
}

.drink-category-card h3 {
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  margin-bottom: 25px;
  color: var(--accent-color);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

/* アルコールリスト & カクテルベース */
.drink-box {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px dashed var(--border-color);
}

.simple-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.simple-list li {
  padding: 8px 0;
  font-size: 1rem;
  border-bottom: 1px dotted #eee;
}

.drink-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.drink-item {
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 12px 5px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cocktail-footer {
  font-size: 0.8rem;
  color: #888;
  margin-top: 15px;
}


/* 5. 別料金メニュー */

.extra-item-white {
  background: #fcfaf5;
  border: 1px solid #eee;
  padding: 15px 5px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--text-color);
}

.extra-item-white span {
  font-size: 0.8rem;
  color: var(--accent-color);
  white-space: nowrap;
}

.extra-item-white.full-width {
  grid-column: span 4;
}

@media (max-width: 768px) {


  .extra-item-white.full-width {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .plan-grid {
    flex-direction: column;
  }

  .drink-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  .extra-item.full-width {
    grid-column: span 2;
  }

  .simple-list li {
    font-size: 0.9rem;
  }
}

/* 階層構造のリストスタイル */
.hierarchical {
  list-style: none;
  padding-left: 0;
}

.category-parent {
  font-family: var(--font-heading);
  font-weight: bold;
  color: var(--accent-color);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

.category-child {
  position: relative;
  padding-left: 1.5em !important;
  font-size: 0.95rem;
  border-bottom: 1px dotted #eee;
}

/* 擬似要素で「∟」を表示 */
.category-child::before {
  content: "∟";
  position: absolute;
  left: 0.2em;
  color: #ccc;
}

/* 親カテゴリの間の余白調整 */
.mt-3 {
  margin-top: 20px !important;
}

/* ==========================================================================
   Public House ZERO - SYSTEM Page (Typography Layout)
   ========================================================================== */

body.system-page {
  background-color: #ffffff !important;
  color: #111 !important;
}

.system-main-section {
  position: relative;
  padding: 100px 0;
  display: flex;
  align-items: center;
  background-image: url('../../assets/img/zero/system-bg.webp');
  background-repeat: no-repeat;
  background-position: right 30% center;
  background-size: 40%;
  z-index: 1;
}

/* 透明度 0.2 */
.system-main-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  z-index: -1;
}

/* コンテンツブロック（PCは85%） */
.system-left-block {
  max-width: 85%;
  z-index: 10;
}

/* 見出し */
.sub-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 5px;
}

.desc {
  font-size: 0.9rem;
  color: #a8974a;
  letter-spacing: 0.1em;
}

/* リスト形式のデザイン */
.system-item {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 25px 0;
  max-width: 600px;
  /* PCでの幅制限 */
}

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

.time {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.plan-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: #888;
}

.item-prices {
  display: flex;
  gap: 40px;
  /* 男・女料金の間隔 */
}

.price-group {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #a8974a;
  margin-bottom: 2px;
}

.val {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.caution {
  font-size: 0.75rem;
  color: #999;
  line-height: 1.6;
}

.system-hr {
  color: #9e9e9e;
  width: 60%;
  margin: 0;
}

/* --- スマホ対応：幅55%に凝縮 --- */
@media (max-width: 768px) {
  .system-main-section {
    background-position: right 100%;
    background-size: 70% !important;
    /* ロゴを大きく */
    padding: 60px 0;
  }

  .system-left-block {
    max-width: 55%;
    /* ご希望の55%幅 */
  }

  .system-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 0;
  }

  .time {
    font-size: 1.8rem;
  }

  .item-prices {
    margin-top: 10px;
    gap: 20px;
    width: 100%;
  }

  .val {
    font-size: 1.5rem;
  }

  .price-group {
    text-align: left;
    /* スマホは左寄せが見やすい */
  }
}

@media (max-width: 430px) {
  .system-main-section {
    background-position: right 75%;
  }

  .system-left-block {
    max-width: 70%;
  }

  .system-item {
    padding: 12px 0;
  }


  .time {
    font-size: 1.3rem;
  }

  .item-prices {
    margin-top: 4px;
    gap: 20px;
    width: 100%;
    padding-left: 36px;
  }

  .val {
    font-size: 1rem;
  }

  .plan-name {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }


  .label {
    font-size: 0.6rem;
  }

}