@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600;900&family=Shippori+Mincho:wght@500;700;800&display=swap');

:root {
  --color-gold: #D4AF37;
  --color-gold-light: #F3E5AB;
  --color-gold-dark: #996515;
  --color-bg: #0a0a0a;
  --color-text: #ffffff;
  --font-serif: 'Shippori Mincho', 'Noto Serif JP', serif;
}

body.lp-body {
  margin: 0;
  padding: 0;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  overflow-x: hidden;
}

body.lp-body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.03"/%3E%3C/svg%3E');
  z-index: 9999;
}

/* FV Section */
.lp-mv {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-bg);
}

.mv-bg-image {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  background-image: url('https://tcm-hd.com/matsunaga-bokujo-ginza/wp-content/uploads/2025/03/matsunaga_img32.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: mvZoom 25s ease-out forwards;
}

@keyframes mvZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.sparks-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.fire-spark {
  position: absolute;
  bottom: -20px;
  background: var(--color-gold-light);
  border-radius: 50%;
  box-shadow: 0 0 10px 2px rgba(212, 175, 55, 0.8), 0 0 5px 1px #ff8c00;
  opacity: 0;
  animation: floatUp 5s infinite ease-in;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }

  10% {
    opacity: 0.8;
  }

  50% {
    opacity: 0.8;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    transform: translateY(-80vh) scale(0);
    opacity: 0;
  }
}

.lp-mv::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(10, 10, 10, 0.4) 0%, rgba(5, 5, 5, 0.9) 100%);
  z-index: 2;
}

.lp-mv .inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mv-copy {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.mv-lead {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-gold);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  display: inline-block;
  border-bottom: 1px solid var(--color-gold);
  padding-bottom: 5px;
}

.mv-copy h1 {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 35px;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.3);
  letter-spacing: 0.05em;
}

.mv-desc {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.mv-features {
  list-style: none;
  padding: 0;
  margin: 0 0 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.mv-features li {
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-gold-light);
  background: rgba(10, 10, 10, 0.5);
  padding: 15px 35px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50px;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), inset 0 0 15px rgba(212, 175, 55, 0.1);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.mv-features li:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9), inset 0 0 25px rgba(212, 175, 55, 0.3);
  border-color: var(--color-gold);
}

.feat-icon {
  color: var(--color-gold);
  font-size: 1.1rem;
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.8));
}

.mv-organizer-benefit {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 12px;
  padding: 20px 30px;
  margin-bottom: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(212, 175, 55, 0.1);
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 600px;
}

.benefit-title {
  color: var(--color-gold-light);
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0 0 15px;
  letter-spacing: 0.1em;
}

.benefit-text {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 0;
  flex-wrap: wrap;
}

.feat-badge {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: bold;
  padding: 8px 15px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.05em;
}

.mv-cv-area {
  display: flex;
  gap: 20px;
}

.btn-cv,
.btn-cv-sub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  min-width: 240px;
}

.btn-cv {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-cv:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
}

.btn-cv-sub {
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}

.btn-cv-sub:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-3px);
}



@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 992px) {
  .lp-mv {
    height: auto;
    padding: 100px 0 60px;
  }

  .lp-mv .inner {
    flex-direction: column;
    text-align: center;
  }

  .mv-lead {
    margin: 0 auto 20px;
  }

  .mv-copy h1 {
    font-size: 3.2rem;
  }

  .mv-features {
    align-items: center;
    flex-direction: column;
    gap: 15px;
  }

  .mv-features li {
    width: 100%;
    max-width: 400px;
    justify-content: center;
  }

  .mv-cv-area {
    flex-direction: column;
    align-items: center;
  }

  .btn-cv,
  .btn-cv-sub {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .lp-mv {
    padding: 80px 0 50px;
  }

  .mv-copy h1 {
    font-size: 2.6rem;
    letter-spacing: 0.02em;
  }

  .mv-desc {
    font-size: 1.2rem;
  }

  .mv-organizer-benefit {
    padding: 15px 20px;
    margin-bottom: 30px;
  }

  .benefit-title {
    font-size: 1rem;
  }

  .feat-badge {
    font-size: 0.85rem;
    padding: 6px 12px;
  }

  .mv-cv-area {
    width: 100%;
  }
}

/* Global Navigation (Custom Hamburger Menu) */
.lp-nav-toggle-wrap {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 99998;
}

/* GTranslate Wrapper Positioning */
.gtranslate_wrapper {
    position: fixed;
    top: 30px;
    right: 100px;
    z-index: 99997;
}

.lp-nav-sidebar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.lp-nav-sidebar-toggle:hover {
    background: var(--color-gold-dark);
    transform: scale(1.05);
}

.hamburger-icon {
    position: relative;
    width: 24px;
    height: 2px;
    background-color: var(--color-gold-light);
    transition: all 0.3s ease;
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--color-gold-light);
    transition: all 0.3s ease;
}

.hamburger-icon::before { top: -8px; left: 0; }
.hamburger-icon::after { top: 8px; left: 0; }

/* Off-canvas Sidebar Group */
.lp-nav-group {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999 !important;
    display: none !important; /* 初期状 */
}

.lp-nav-group.is-active {
    display: block !important;
}

.lp-nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lp-nav-group.is-active .lp-nav-overlay {
    opacity: 1;
}

.lp-nav-widget {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 90%;
    height: 100%;
    background: #000;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 100px 40px 60px;
    overflow-y: auto;
    z-index: 2;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
}

.lp-nav-group.is-active .lp-nav-widget {
    transform: translateX(0);
}

.lp_close-side-widget {
    position: absolute;
    top: 25px;
    right: 25px;
    color: var(--color-gold);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lp_close-side-widget svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.lp_close-side-widget:hover {
    transform: rotate(90deg);
    color: var(--color-gold-light);
}

/* Menu Typography */
.lp_menu-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.lp-menu-item a {
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.lp-menu-item .txt-en {
    display: block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    margin-bottom: 8px;
}

.lp-menu-item .txt-jp {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.lp-menu-item a:hover .txt-jp {
    color: var(--color-gold);
    transform: translateX(10px);
}

.lp-menu-item a:hover .txt-en {
    transform: translateX(5px);
}

.lp-nav-image {
    margin-top: 40px;
}

.lp-nav-image img {
    width: 100%;
    height: auto;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
}

@media (max-width: 768px) {
    .lp-nav-widget {
        width: 100%;
        padding: 100px 30px 40px;
    }
    .lp-nav-toggle-wrap {
        top: 15px;
        right: 15px;
    }
    .lp-menu-item .txt-jp {
        font-size: 1.5rem;
    }
}

/* Section Common */
.lp-section {
  padding: 100px 0;
}

.lp-section .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 3.2rem;
  margin-bottom: 70px;
  color: var(--color-text);
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.section-title .highlight {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 10px;
  font-size: 2rem;
}

.sp-only {
  display: none;
}

/* Reasons Section */
.lp-reasons {
  background-color: #0f0f0f;
  background-image: radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.05), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(212, 175, 55, 0.05), transparent 25%);
}

.reason-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.reason-card {
  display: flex;
  align-items: center; /* stretchからcenterに変更 */
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 280px; /* 高さを確 */
}

/* 交互に並びを反転 */
.reason-card:nth-child(even) {
  flex-direction: row-reverse;
}

.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: rgba(212, 175, 55, 0.4);
}

.reason-num {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 8px 15px;
  z-index: 5;
  border-radius: 0 0 12px 0;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

/* 偶数番目の数字ラベル位置調整 */
.reason-card:nth-child(even) .reason-num {
  left: auto;
  right: 0;
  border-radius: 0 0 0 12px;
}

.reason-content {
  padding: 30px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.reason-content p {
  margin-bottom: auto;
}

.reason-content h3 {
  font-family: var(--font-serif);
  color: var(--color-gold-light);
  font-size: 1.6rem;
  margin: 0 0 15px;
  border-bottom: 1px dashed rgba(212, 175, 55, 0.3);
  padding-bottom: 15px;
}

.reason-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
  color: #ccc;
}

.reason-image {
  flex: 0 0 45%; /* 全体45%を画像に */
  height: 280px;
  overflow: hidden;
  margin: 0;
  border-radius: 0;
}

.reason-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.reason-card:hover .reason-image img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .lp-section {
    padding: 60px 0;
  }

  .lp-section .inner {
    padding: 0 20px;
  }

  .section-title {
    font-size: 1.6rem; /* 2.2rem -> 1.6rem */
    margin-bottom: 30px;
  }

  .section-title .highlight {
    font-size: 1.25rem; /* 2rem -> 1.25rem */
    margin-top: 5px;
    white-space: nowrap; /* 強制1 */
  }

  .sp-only {
    display: block;
  }

  .reason-card, .reason-card:nth-child(even) {
    flex-direction: column !important;
    min-height: auto;
  }

  .reason-image {
    width: 100%;
    height: 200px;
    flex: none;
  }

  .reason-num, .reason-card:nth-child(even) .reason-num {
    top: 0;
    left: 0;
    right: auto;
    border-radius: 0 0 12px 0;
    padding: 8px 15px;
    font-size: 0.8rem;
    z-index: 5;
  }

  .reason-content {
    padding: 60px 20px 25px !important; /* 絶対配置のバッジとの重なりを確実に解 */
  }

  .reason-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .reason-content p {
    font-size: 1rem;
  }
}

/* Course Section */
.lp-course {
  background: var(--color-bg);
  position: relative;
}

.lp-course::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/mv-bg-meat.jpg') center/cover no-repeat;
  opacity: 0.1;
  z-index: 0;
}

.lp-course .inner {
  position: relative;
  z-index: 1;
}

/* Course Slider */
.course-slider-wrapper {
  margin: 0 -20px;
  position: relative;
  overflow: hidden; /* 子要のtransformのはみ出しを */
}

.course-slider {
  display: flex;
  overflow: visible; /* transformを使用するため */
  padding: 20px 0 40px;
  gap: 25px;
  will-change: transform;
  transform: translate3d(0, 0, 0); /* GPU */
}

.course-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.course-card {
  flex: 0 0 350px;
  /* scroll-snap-align: center; */ /* 連続スクロールのため無効 */
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.course-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.course-card-image {
  height: 200px;
  overflow: hidden;
}

.course-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-card:hover .course-card-image img {
  transform: scale(1.1);
}

.course-card-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-gold-light);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.course-card-title.highlight-gold {
  color: #fff;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.course-card-price {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-gold);
  margin-bottom: 15px;
}

.course-card-price::after {
  content: '';
  font-size: 1rem;
  margin-left: 5px;
  color: #aaa;
}

.course-card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 15px;
  min-height: 3em;
}

.course-card-option {
  font-size: 0.85rem;
  color: #999;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.course-card-detail {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 15px;
}

.course-card-detail h4 {
  font-size: 0.9rem;
  color: var(--color-gold);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.course-card-detail ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
}

.course-card-detail ul li {
  font-size: 0.85rem;
  color: #bbb;
  position: relative;
  padding-left: 12px;
}

.course-card-detail ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-gold);
}

.slider-hint {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin-top: 10px;
  animation: pulse 2s infinite;
}

.hint-icon {
  color: var(--color-gold);
}

.course-cv-bottom {
  margin-top: 50px;
  text-align: center;
}

@keyframes pulse {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}

/* Slider Nav Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.slider-btn:hover {
  background: var(--color-gold);
}

.slider-btn .nav-arrow {
  display: block;
  position: relative;
  width: 14px;
  height: 14px;
  margin: 0 auto;
}

/* 疑似要による矢印の構より確な形状に */
.slider-btn .nav-arrow::before,
.slider-btn .nav-arrow::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.slider-btn.prev .nav-arrow::before {
  top: 3px;
  transform: rotate(-45deg);
  transform-origin: left top;
}
.slider-btn.prev .nav-arrow::after {
  bottom: 3px;
  transform: rotate(45deg);
  transform-origin: left bottom;
}

.slider-btn.next .nav-arrow::before {
  top: 3px;
  transform: rotate(45deg);
  transform-origin: right top;
}
.slider-btn.next .nav-arrow::after {
  bottom: 3px;
  transform: rotate(-45deg);
  transform-origin: right bottom;
}

.slider-btn.prev {
  left: -25px;
}

.slider-btn.next {
  right: -25px;
}

@media (max-width: 992px) {
  .slider-btn {
    width: 36px; /* モバイルでは少し小さ */
    height: 36px;
  }
  .slider-btn.prev { left: 5px; } /* 完に端ではなく少しへ */
  .slider-btn.next { right: 5px; }
  
  .slider-btn span {
    width: 10px;
    height: 10px;
  }
}

/* Scenes Section */
.lp-scenes {
  background-color: #050505;
  border-top: 1px dashed rgba(212, 175, 55, 0.2);
  border-bottom: 1px dashed rgba(212, 175, 55, 0.2);
}

.scenes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.scene-item {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 40px 20px;
  text-align: center;
  transition: all 0.4s ease;
  overflow: hidden;
  border-radius: 4px;
}

.scene-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.scene-item:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.scene-item:hover::before {
  transform: scaleX(1);
}

.scene-en {
  display: block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: var(--color-gold-dark);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.scene-item h3 {
  font-family: var(--font-serif);
  color: var(--color-gold-light);
  font-size: 1.8rem;
  margin: 0;
  letter-spacing: 0.15em;
}

@media (max-width: 768px) {
  .scenes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .scene-item {
    padding: 30px 10px;
  }

  .scene-en {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  .scene-item h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .scenes-grid {
    grid-template-columns: 1fr;
  }
}

/* Support Section */
.lp-support {
  background-color: #0c0c0c;
  position: relative;
}

.support-wrap {
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.8), rgba(10, 10, 10, 0.9));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.support-intro {
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding-bottom: 30px;
}

.support-intro p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #ccc;
  margin: 0;
}

.support-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.support-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: rgba(255, 255, 255, 0.02);
  padding: 25px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.05);
  transition: all 0.3s ease;
}

.support-list li:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.support-check {
  color: #0c0c0c;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
}

.support-text h4 {
  font-family: var(--font-serif);
  color: var(--color-gold);
  font-size: 1.4rem;
  margin: 0 0 10px;
}

.support-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  color: #bbb;
}

@media (max-width: 768px) {
  .support-wrap {
    padding: 30px 20px;
  }

  .support-intro p {
    font-size: 1rem;
  }

  .support-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .support-list li {
    padding: 20px 15px;
  }
}

/* FAQ Section */
.lp-faq {
  background-color: #050505;
  border-top: 1px dashed rgba(212, 175, 55, 0.2);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px 30px;
  background: linear-gradient(90deg, rgba(20, 20, 20, 1) 0%, rgba(30, 30, 30, 0) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.q-icon {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
}

.faq-q h3 {
  font-size: 1.2rem;
  margin: 0;
  color: var(--color-text);
  font-weight: bold;
}

.faq-a {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 25px 30px;
  background: rgba(0, 0, 0, 0.3);
}

.a-icon {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
}

.faq-a p {
  font-size: 1rem;
  line-height: 1.8;
  color: #ccc;
  margin: 0;
  padding-top: 5px;
}

@media (max-width: 768px) {
  .faq-q {
    padding: 20px;
  }

  .faq-q h3 {
    font-size: 1.1rem;
  }

  .faq-a {
    padding: 20px;
  }

  .faq-a p {
    font-size: 0.95rem;
  }

  .q-icon,
  .a-icon {
    font-size: 1.6rem;
  }
}

/* CTA Section */
.lp-cta {
  background: linear-gradient(135deg, rgba(15, 15, 15, 1) 0%, rgba(5, 5, 5, 1) 100%);
  border-top: 2px solid var(--color-gold);
  padding: 120px 0;
}

.cta-wrap {
  display: flex;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.cta-tel,
.cta-web {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 50px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-tel:hover,
.cta-web:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  border-color: var(--color-gold);
  background: rgba(212, 175, 55, 0.05);
}

.cta-label {
  display: block;
  font-size: 1.1rem;
  color: var(--color-gold-light);
  margin-bottom: 25px;
  font-weight: bold;
}

.tel-number {
  display: inline-block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--color-gold);
  text-decoration: none;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  white-space: nowrap; /* 改行防止 */
}

.icon-tel {
  font-size: 0.7em; /* 親の断サイズに比 */
  vertical-align: middle;
}

.icon-tel .emoji {
  width: 1em;
  height: 1em;
  vertical-align: -0.1em;
}

.tel-time {
  font-size: 0.95rem;
  color: #aaa;
  margin: 0;
}

.btn-web-reserve {
  display: block;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
  padding: 25px 20px;
  border-radius: 60px;
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-web-reserve span {
  display: block;
  font-size: 0.95rem;
  font-weight: normal;
  margin-top: 5px;
  opacity: 0.9;
}

.btn-web-reserve:hover {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5);
}

@media (max-width: 768px) {
  .lp-cta {
    padding: 80px 0;
  }

  .cta-wrap {
    flex-direction: column;
    gap: 20px;
  }

  .cta-tel,
  .cta-web {
    padding: 40px 20px;
  }

  .tel-number {
    font-size: 2.2rem; /* サイズをさらに縮小して入りやすくする */
  }

  .icon-tel {
    font-size: 0.7em;
  }

  .btn-web-reserve {
    font-size: 1.4rem;
    padding: 20px 15px;
  }
}

/* Footer Section */
.lp-site-footer {
  background-color: #050505;
  color: #ccc;
  padding: 80px 0 30px;
  border-top: 1px dashed rgba(212, 175, 55, 0.2);
}

.lp-site-footer .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-content {
  display: flex;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-info {
  flex: 1;
}

.footer-shop-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-gold);
  margin: 0 0 25px;
  letter-spacing: 0.1em;
  white-space: nowrap; /* 改行防止 */
}

.shop-details p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.shop-details p:last-of-type {
  margin-bottom: 30px;
}

.btn-map {
  display: inline-block;
  background: transparent;
  color: var(--color-gold-light);
  border: 1px solid var(--color-gold);
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-map:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.footer-map {
  flex: 1.2;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.copyright {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.85rem;
  color: #888;
  margin: 0;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .lp-site-footer {
    padding: 60px 0 20px;
  }

  .lp-site-footer .inner {
    padding: 0 20px;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-shop-name {
    font-size: 1.4rem; /* モバイルではサイズを縮 */
  }

  .footer-map iframe {
    height: 250px;
  }
}

/* Enhancements */
.js-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

.fixed-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: translateY(20px);
}

.fixed-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fixed-cta a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6), 0 0 0 2px rgba(212, 175, 55, 0.3);
  animation: pulseGlow 2.5s infinite;
  transition: transform 0.3s ease;
}

.fixed-cta a:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
}

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

.fixed-cta-text {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .fixed-cta {
    bottom: 15px;
    right: 15px;
  }

  .fixed-cta a {
    width: 65px;
    height: 65px;
  }

  .fixed-cta-icon {
    font-size: 1.3rem;
  }

  .fixed-cta-text {
    font-size: 0.6rem;
  }
}

/* ==========================================================================
   LP Footer Custom Styles (Robust Design)
   ========================================================================== */
.lp-footer {
    background-color: #0a0a0a !important;
    color: #fff !important;
    padding: 100px 20px 80px !important;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    font-family: var(--font-sans, sans-serif) !important;
}

.lp-footer-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.lp-footer-label {
    font-family: var(--font-serif, serif) !important;
    color: #D4AF37 !important; /* Gold */
    font-size: 2.8rem !important;
    letter-spacing: 0.2em !important;
    margin-bottom: 25px !important;
    font-weight: normal !important;
}

.lp-footer-message {
    font-size: 1.1rem !important;
    color: #fff !important;
    margin-bottom: 50px !important;
    letter-spacing: 0.05em !important;
}

.lp-footer-btn-wrap {
    margin-bottom: 80px;
}

.lp-footer-btn {
    display: inline-block !important;
    background-color: rgba(128, 130, 133, 0.8) !important;
    color: #fff !important;
    text-decoration: none !important;
    padding: 24px 0 !important;
    width: 100%;
    max-width: 800px;
    font-weight: bold !important;
    font-size: 1.3rem !important;
    letter-spacing: 0.1em !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.lp-footer-btn:hover {
    background-color: rgba(128, 130, 133, 1) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.lp-footer-copyright {
    color: #666 !important;
    font-size: 0.85rem !important;
    margin-top: 60px;
    letter-spacing: 0.05em !important;
}

/* oCŒ胁j[ */
.lp-mobile-fix-nav {
    display: none;
}

@media (max-width: 768px) {
    .lp-footer {
        padding: 80px 20px 140px !important;
    }
    
    .lp-footer-label { font-size: 2.0rem !important; }
    .lp-footer-message { font-size: 1.0rem !important; }

    .lp-mobile-fix-nav {
        display: block !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 80px !important;
        background: #000 !important;
        border-top: 1px solid #D4AF37 !important;
        z-index: 999999 !important;
        box-shadow: 0 -5px 15px rgba(0,0,0,0.5);
    }

    .lp-mobile-fix-nav ul {
        display: flex !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
        height: 100% !important;
    }

    .lp-mobile-fix-nav li {
        flex: 1 !important;
        border-right: 1px solid rgba(212, 175, 55, 0.2) !important;
    }

    .lp-mobile-fix-nav li:last-child {
        border-right: none !important;
    }

    .lp-mobile-fix-nav a {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        height: 100% !important;
        color: #fff !important;
        text-decoration: none !important;
    }

    .lp-mobile-fix-nav .icon {
        height: 28px !important;
        margin-bottom: 5px;
        display: flex;
        align-items: center;
    }

    .lp-mobile-fix-nav svg {
        fill: #D4AF37 !important;
        width: 24px !important;
        height: 24px !important;
    }

    .lp-mobile-fix-nav .text {
        font-size: 11px !important;
        font-weight: bold !important;
        letter-spacing: 0.02em !important;
    }

    /* CRec̉pfBOɏW */
    body.lp-body {
        padding-bottom: 80px !important;
    }
}

