/*
Theme Name: classy-a002 Child
Template: classy-a002
Version: 2.1.0
Description: ヘッダー2段構造 + Vegas Slider対応（子テーマCSS）
*/
@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;600&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Amiri&display=swap);

/* ===================================================================
   CSS変数（カラースキーム・共通値）
   =================================================================== */
:root {
  /* サイズ */
  --header-height-top: 80px;
  --header-height-bottom: 50px;

  /* ベースカラー */
  --color-black: #0f0f0f;
  --color-dark: #1a1a1a;
  --color-white: #f5f5f5;

  /* アクセント */
  --color-red: #8c1d18; /* 深い赤（血じゃない、ワイン） */
  --color-gold: #c9a876; /* マット寄りの金 */
  --color-gold-soft: #e2d3b3; /* ライン用 */

  /* UI */
  --color-border: rgba(201, 168, 118, 0.35);
  --color-text-main: #eaeaea;
  --color-text-sub: #b8b8b8;

  --transition-base: 0.3s ease;
}
/* *{
  outline:1px solid red;
} */
/* ===================================================================
   リセット・基本調整
   =================================================================== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: opacity var(--transition-base);
}

a:hover {
  opacity: 0.7;
}

/* ===================================================================
   ヘッダー全体構造
   =================================================================== */
.site-header {
  position: relative;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ===================================================================
   上段ヘッダー（ロゴ + 営業時間/電話 + 予約/LINE）
   =================================================================== */
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height-top);
  padding: 0 40px;
  background: linear-gradient(180deg, #111 0%, #1a1a1a 100%);
  color: var(--color-text-main);
  border-bottom: 1px solid var(--color-border);
}

.header-top__left {
  flex-shrink: 0;
}

.site-logo {
  display: block;
  line-height: 1;
}

.site-logo img {
  height: 70px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.35));
}

.header-top__right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: var(--color-dark);
}

.header-hours {
  margin: 0;
  font-weight: 500;
}

.header-tel {
  margin: 0;
}
.header-hours,
.header-tel a {
  color: var(--color-gold);
  letter-spacing: 0.04em;
}

.header-tel a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--color-dark);
  font-size: 15px;
}

.header-tel i {
  color: var(--color-gold);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  transition: all var(--transition-base);
  white-space: nowrap;
  border: none;
  outline: none;
}

.btn--reserve {
  background: var(--color-accent);
  color: #fff;
  border: 2px solid var(--color-accent);
}

.btn--reserve:hover {
  background: #fff;
  color: var(--color-accent);
  opacity: 1;
}

.btn--line {
  padding: 0;
  background: transparent;
  border: none;
}

.btn--line img {
  height: 40px;
  width: auto;
}

.mobile-menu {
  display: none;
}

/* ===================================================================
   下段ヘッダー（PCナビ + More + English）
   =================================================================== */
.header-bottom {
  background: var(--color-dark);
  height: var(--header-height-bottom);
}

.pc-nav {
  height: 100%;
}

.pc-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pc-nav__list > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.pc-nav__list > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color var(--transition-base);
}

.pc-nav__list > li > a:hover {
  color: var(--color-accent);
  opacity: 1;
}

.pc-nav__more {
  position: relative;
}

.pc-nav__more details {
  height: 100%;
}

.pc-nav__more summary {
  display: flex;
  align-items: center;
  height: var(--header-height-bottom);
  padding: 0 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  list-style: none;
  transition: color var(--transition-base);
}

.pc-nav__more summary::-webkit-details-marker {
  display: none;
}

.pc-nav__more summary::after {
  content: "▼";
  margin-left: 6px;
  font-size: 10px;
  transition: transform var(--transition-base);
}

.pc-nav__more details[open] summary::after {
  transform: rotate(180deg);
}

.pc-nav__more summary:hover {
  color: var(--color-accent);
}

.pc-nav__more-list {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.pc-nav__more-list li {
  margin: 0;
}

.pc-nav__more-list a {
  display: block;
  padding: 10px 20px;
  color: var(--color-dark);
  font-size: 13px;
  font-weight: 500;
  transition: background var(--transition-base);
}

.pc-nav__more-list a:hover {
  background: #f5f5f5;
  opacity: 1;
}

.pc-nav__lang {
  margin-left: auto;
}

.btn--lang {
  background: transparent;
  color: #fff;
  /* border: 1px solid #fff; */
  padding: 6px 16px;
  font-size: 12px;
  transition: all 3s;
}

.btn--lang:hover {
  background: #f5f5f5;
  color: var(--color-dark);
  opacity: 1;
}

/* ===================================================================
   ヒーロー領域（トップページ）- Vegas Slider版
   =================================================================== */
.hero--kv {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* 1) 最背面：無地 or グラデ */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #0b0b0b 0%, #1f1f1f 55%, #111 100%);
}

/* 2) 中央：キービジュ枠（ここだけVegasが動く） */
.hero__kv {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 120px)); /* 両端に余白 */
  height: 520px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

/* キービジュを“少し右寄せ”したいなら枠の中で寄せる */
.hero__kv .vegas-slide,
.hero__kv .vegas-slide-inner {
  background-position: 70% 50% !important;
  background-size: cover !important;
}

/* キービジュに暗幕 or ぼかし（必要なら） */
.hero__kv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(0px); /* ぼかしたければ 2px とか */
  pointer-events: none;
}

/* 3) 文字層：前面。左寄せにするなら “枠の左上” へ */
.hero__text {
  position: absolute;
  z-index: 2;
  width: min(1100px, calc(100% - 120px));
  height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; /* 左寄せ */
  padding-left: 60px;
  color: #fff;
}

.hero__title {
  margin: 0 0 18px;
  font-size: 72px;
  line-height: 1.05;
  letter-spacing: 0.06em;
  color: var(--color-accent, #c9a876);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.75);
}
.hero__subtitle {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.75);
}

/* 1200以下（一点突破でOK） */
@media (max-width: 1200px) {
  .hero--kv {
    min-height: 420px;
  }
  .hero__kv,
  .hero__text {
    width: calc(100% - 36px);
    height: 380px;
  }
  .hero__text {
    padding-left: 0;
    align-items: center;
    text-align: center;
  }
  .hero__title {
    font-size: 46px;
  }
  .hero__subtitle {
    font-size: 13px;
  }
  .hero__kv::after {
    background: rgba(0, 0, 0, 0.35);
  }
}

/* ===================================================================
   親テーマの不要なスタイルを上書き
   =================================================================== */
.site-header.fixed {
  position: relative;
}

/* ===================================================================
   レスポンシブ（1200px以下 = タブレット〜スマホ）★統合版★
   =================================================================== */
@media (max-width: 1200px) {
  /* ──────────────────────────────────
     ヘッダー上段
     ────────────────────────────────── */
  .header-top {
    height: 70px;
    padding: 0 20px;
  }

  .site-logo img {
    height: 36px;
  }

  .header-info,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  /* ──────────────────────────────────
     ヘッダー下段（PC版ナビを非表示）
     ────────────────────────────────── */
  .header-bottom {
    display: none;
  }

  /* ──────────────────────────────────
     ハンバーガーメニュー
     ────────────────────────────────── */
  .mobile-menu input[type="checkbox"] {
    display: none;
  }

  .hamburger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 1002;
  }

  .hamburger span,
  .hamburger span::before,
  .hamburger span::after {
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: all 0.3s;
  }

  .hamburger span::before,
  .hamburger span::after {
    content: "";
    display: block;
  }

  .hamburger span::before {
    transform: translateY(-8px);
  }

  .hamburger span::after {
    transform: translateY(8px);
  }

  .mobile-menu input:checked ~ .hamburger span {
    background: transparent;
  }

  .mobile-menu input:checked ~ .hamburger span::before {
    transform: rotate(45deg);
  }

  .mobile-menu input:checked ~ .hamburger span::after {
    transform: rotate(-45deg);
  }

  /* ──────────────────────────────────
     SPナビ本体
     ────────────────────────────────── */
  .sp-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    padding: 80px 20px 40px;
    overflow-y: auto;
    transition: right 0.4s ease;
    z-index: 1001;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
  }

  .mobile-menu input:checked ~ .sp-nav {
    right: 0;
  }

  .mobile-menu input:checked ~ .sp-nav::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }

  .sp-nav ul {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
  }

  .sp-nav ul li {
    border-bottom: 1px solid #e8e8e8;
  }

  .sp-nav ul li:last-child {
    border-bottom: none;
  }

  .sp-nav ul a {
    display: block;
    padding: 14px 0;
    color: var(--color-dark);
    font-size: 14px;
    font-weight: 500;
  }

  .sp-pay {
    margin-bottom: 20px;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 4px;
    text-align: center;
  }

  .sp-pay img {
    max-width: 200px;
    margin-bottom: 8px;
  }

  .sp-pay p {
    margin: 0;
    font-size: 12px;
    color: #666;
  }

  .sp-tel {
    margin-bottom: 20px;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 4px;
    text-align: center;
  }

  .sp-tel p {
    margin: 4px 0;
    font-size: 13px;
  }

  .sp-tel a {
    font-weight: 600;
    color: var(--color-dark);
  }

  .sp-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
  }

  .sp-cta .btn {
    width: 100%;
    padding: 12px;
  }

  .language-switch {
    width: 100%;
    padding: 12px;
    background: var(--color-dark);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-base);
  }

  .language-switch:hover {
    background: var(--color-accent);
  }

  /* ──────────────────────────────────
     ヒーロー領域（SP版）- Vegas Slider対応
     ────────────────────────────────── */
  .hero {
    height: 400px;
    justify-content: center;
    text-align: center;
  }

  .hero__content {
    padding-left: 0;
    width: 100%;
    z-index: 10;
  }

  .hero__title {
    font-size: 48px;
  }

  .hero__subtitle {
    font-size: 14px;
  }

  /* Vegas スライダーを全画面背景に */
  .hero-vegas {
    width: 100%;
    height: 100%;
  }

  /* 背景を暗くしてテキストを読みやすく */
  .hero-vegas::after {
    background: rgba(0, 0, 0, 0.5);
  }
}

/* ===== 叩き台用：全体の器（後で消してOK） ===== */

.inner,
.inner-s {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 70px 0;
}

h2 {
  margin: 0 0 24px;
  font-size: 28px;
  line-height: 1.2;
}

/* ===================================================================
セクション共通ベース
=================================================================== */

.section {
  padding: 70px 0;
  /* background: radial-gradient(circle at top right, #2a1a1a 0%, #0f0f0f 60%); */
}

.section-title {
  font-size: 28px;
  position: relative;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 32px;
}
.section-title::after {
  position: absolute;
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  margin-top: 16px;
  background: linear-gradient(to right, var(--color-gold), transparent);
}
.section.center .section-title::after {
  margin-left: auto;
  margin-right: auto;
}
.section-title .section-sub {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  opacity: 0.85;
}

.section-body {
  margin-top: 16px;
}

.section-cta {
  margin-top: 24px;
}

/* ===== コンセプトセクション ===== */
/* CONCEPTだけ写真を薄く入れる */
#concept .layered__frame {
  position: relative;
  overflow: hidden;
}

/* 写真レイヤー */
#concept .layered__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/wp-content/themes/classy-a002-child/img/concept-bg.jpg")
    center/cover no-repeat;
  opacity: 1; /* ←ここで透過調整 */
  z-index: 0;
}

/* 文字を上に出す */
#concept .layered__frame > * {
  position: relative;
  z-index: 1;
}
.concept-points {
  margin-top: 32px;
}
.concept-point + .concept-point {
  margin-top: 24px;
}
/* ===== お知らせ（News） ===== */
.section-news .section-cta {
  text-align: center;
}

/* ===== システム（System） ===== */
.section-system .section-body {
  display: grid;
  gap: 40px;
}

.section-system .system-block {
  border-top: 1px solid #ddd;
  padding-top: 24px;
}

.section-system .system-title {
  margin-bottom: 12px;
  font-size: 20px;
}
/* ===== 出勤情報（Schedule） ===== */
.section-schedule .section-body {
  margin-top: 16px;
}

/* ===== Blog ===== */
.section-blog .post-list {
  display: grid;
  gap: 24px;
}

/* ===== SNS ===== */
.section-sns .sns-box {
  display: grid;
  gap: 24px;
}

.section-sns .sns-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== SP（1200px以下） ===== */
@media (max-width: 1200px) {
  section {
    padding: 48px 0;
  }
  h2 {
    font-size: 22px;
  }
}

/* 画像は崩れないように */
img {
  max-width: 100%;
  height: auto;
}

/* ===================================================================
   英語トップページ (/en/) テキストカラー修正
   =================================================================== */
body.page-slug-en main.u-bg,
body.page-slug-en main.u-bg *,
body.page-slug-en main.u-bg p,
body.page-slug-en main.u-bg h1,
body.page-slug-en main.u-bg h2,
body.page-slug-en main.u-bg h3,
body.page-slug-en main.u-bg h4,
body.page-slug-en main.u-bg li,
body.page-slug-en main.u-bg span,
body.page-slug-en main.u-bg a,
body.page-slug-en main.u-bg div {
    color: #111 !important;
}
