:root {
  /* モノトーン・ミニマルなカラーパレットに変更 */
  --color-white: #ffffff;
  --color-base: #fafafa;
  --color-light: #e0e0e0;
  --color-accent: #222222;
  --color-accent-dark: #000000;
  --color-text: #333333;
  --color-text-mid: #666666;
  --color-text-light: #999999;
  
  --font-display: 'Cormorant Garamond', serif;
  --font-heading: 'Limelight', cursive;
  --font-body: 'Noto Serif JP', serif;
  --font-tel: 'Zen Old Mincho', serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  /* 英数字部分に Zen Old Mincho を優先適用、日本語は Noto Serif JP にフォールバック */
  font-family: var(--font-tel), var(--font-body);
  color: var(--color-text);
  background: var(--color-base);
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: default;
}

/* ─── TYPOGRAPHY & TEXT SIZE ─── */
.font-display { font-family: var(--font-display); }
.font-heading { font-family: var(--font-heading); }
.font-body { font-family: var(--font-body); }

/* 本文テキストサイズを18pxに統一 */
p, 
li, 
address, 
.contact-info-value, 
.voice-card p, 
.menu-desc, 
.service-item p,
.about-txt-col p,
.message-inner p,
.menu-section-desc {
  font-size: 18px !important;
  line-height: 2.2 !important;
  font-weight: 300;
}

.sp-only { display: none !important; }
@media (max-width: 768px) {
  .sp-only { display: block !important; }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s cubic-bezier(.25, .46, .45, .94), transform .9s cubic-bezier(.25, .46, .45, .94);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .9s cubic-bezier(.25, .46, .45, .94), transform .9s cubic-bezier(.25, .46, .45, .94);
}
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .9s cubic-bezier(.25, .46, .45, .94), transform .9s cubic-bezier(.25, .46, .45, .94);
}
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }

/* ─── HEADER ─── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
  transition: background .4s, box-shadow .4s, padding .4s;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 1px 15px rgba(0, 0, 0, .05);
  backdrop-filter: blur(8px);
}
.header-inner {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 3%;
  transition: padding .4s;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3.5vw, 48px);
}
.pc-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 40px);
}
#site-header.scrolled .header-inner {
  padding-top: 14px;
  padding-bottom: 14px;
}
.site-logo {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  letter-spacing: .2em;
  color: #457974;
  text-decoration: none;
  transition: color .3s;
  white-space: nowrap;
}

nav.pc-nav a {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: .15em;
  color: var(--color-text);
  text-decoration: none;
  padding: 4px 0;
  position: relative;
  text-transform: uppercase;
  transition: color .3s;
}
nav.pc-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width .3s;
}
nav.pc-nav a:hover::after { width: 100%; }
nav.pc-nav a:hover { color: var(--color-accent-dark); }

.btn-header-cta {
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .15em;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  padding: 10px 24px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all .3s;
}
.btn-header-cta:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

/* Hamburger */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  z-index: 2001;
}
.hamburger-btn span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-accent);
  transition: all .3s;
}

.hamburger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--color-accent);
}
.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--color-accent);
}

/* Full-screen mobile menu */
#sp-menu {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(.77, 0, .175, 1);
}
#sp-menu.open { transform: translateX(0); }
#sp-menu nav a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 5vw, 2rem);
  letter-spacing: .2em;
  color: var(--color-text);
  text-decoration: none;
  padding: 12px 0;
  text-align: center;
  text-transform: uppercase;
  transition: color .3s;
}
#sp-menu nav a:hover { color: var(--color-text-light); }

/* ─── SECTION LABEL ─── */
.section-label {
  font-family: var(--font-heading);
  font-size: .7rem;
  letter-spacing: .35em;
  color: var(--color-text-light);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

/* ─── ACCENT LINE ─── */
.accent-line {
  width: 40px;
  height: 1px;
  background: var(--color-accent);
  margin: 24px auto;
}
.accent-line-left { margin-left: 0; }

/* ─── BUTTONS ─── */
.btn-primary, .btn-outline, .btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding: 0 40px;
  transition: all .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border: 1px solid var(--color-accent);
}
.btn-primary:hover { 
  background: transparent; 
  color: var(--color-accent); 
}
.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}
.btn-outline:hover {
  background: var(--color-accent);
  color: var(--color-white);
}
.btn-dark {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}
.btn-dark:hover { 
  background: var(--color-white); 
  color: var(--color-accent); 
}

/* ─── FV ─── */
#fv {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}
.fv-bg-slider { position: absolute; inset: 0; z-index: 1; }
.fv-bg-slide {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  filter: grayscale(30%) contrast(1.1);
  animation: bgFade 18s infinite ease-in-out;
}
@media (min-width: 1024px) {
  .fv-bg-slide:nth-child(2) { background-position: center 10%; }
  .fv-bg-slide:nth-child(3) { background-position: center 20%; }
}
.fv-bg-slide:nth-child(1) { animation-delay: 0s; }
.fv-bg-slide:nth-child(2) { animation-delay: 6s; }
.fv-bg-slide:nth-child(3) { animation-delay: 12s; }
@keyframes bgFade {
  0% { opacity: 0; transform: scale(1.03); }
  10% { opacity: 1; transform: scale(1.03); }
  33% { opacity: 1; transform: scale(1.01); }
  43% { opacity: 0; transform: scale(1.0); }
  100% { opacity: 0; }
}
#fv::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 0, 0, .4) 0%, rgba(0, 0, 0, .1) 50%, rgba(0, 0, 0, .6) 100%);
  z-index: 2;
  pointer-events: none;
}
.fv-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  padding: clamp(40px, 8vw, 100px) clamp(24px, 6vw, 100px);
  padding-bottom: clamp(40px, 10vw, 80px);
}
.fv-eyebrow {
  font-family: var(--font-heading);
  font-size: clamp(.6rem, .9vw, .75rem);
  letter-spacing: .4em;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  margin-bottom: clamp(8px, 2vw, 24px);
  animation: fadeUp 1.2s .4s both;
}
.fv-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1;
  letter-spacing: .08em;
  animation: fadeUp 1.2s .6s both;
}
.fv-sub {
  margin-top: clamp(12px, 3vw, 32px);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, .9);
  line-height: clamp(1.6, 3vw, 2.2);
  letter-spacing: .15em;
  animation: fadeUp 1.2s .8s both;
}
.fv-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fadeUp 1.2s 1.2s both;
}
.fv-scroll span {
  font-family: var(--font-heading);
  font-size: .5rem;
  letter-spacing: .3em;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  writing-mode: vertical-lr;
}
.fv-scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, .2);
  position: relative;
  overflow: hidden;
}
.fv-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  animation: scrollLine 2s 1.5s infinite;
}
@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 200%; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── SECTION BASE ─── */
.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 160px) clamp(24px, 5vw, 60px);
}

/* ─── ABOUT ─── */
#about {
  position: relative;
  background: var(--color-white);
  overflow: hidden;
}
.about-bg-text {
  position: absolute;
  top: 5%;
  left: -5%;
  font-family: var(--font-heading);
  font-size: 18vw;
  color: rgba(0, 0, 0, 0.02);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.about-layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.about-img-col {
  width: 100%;
  position: relative;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-light);
  z-index: 0;
}
.about-slider {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/5;
}
.about-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
}
.about-txt-col {
  width: 100%;
}
.about-txt-col h2 {
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: .1em;
  margin-bottom: 32px;
  color: var(--color-accent);
}

@media(min-width: 768px) {
  .about-layout {
    flex-direction: row;
    align-items: center;
  }
  .about-img-col { width: 50%; }
  .about-txt-col { 
    width: 50%; 
    padding-left: 8%; 
    margin-top: 100px;
  }
}

/* ─── SERVICE ─── */
#service {
  position: relative;
  background: var(--color-base);
  overflow: hidden;
}
.service-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: 24vw;
  color: rgba(0,0,0,0.015);
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.service-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 10vw, 160px);
  margin-top: 60px;
}
.service-item {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}
.service-item-img {
  width: 100%;
  position: relative;
  aspect-ratio: 4/3;
}
.service-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}
.service-item-txt {
  width: 100%;
  position: relative;
}
.service-num-large {
  position: absolute;
  top: -50px;
  left: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  color: #d5e7e5;
  z-index: -1;
  line-height: 1;
  font-style: italic;
}
.service-item h3 {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--color-accent);
  margin-bottom: 24px;
  line-height: 1.6;
  margin-top: 20px;
}

@media(min-width: 768px) {
  .service-item {
    flex-direction: row;
    align-items: center;
  }
  .service-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .service-item-img { width: 55%; }
  .service-item-txt { 
    width: 45%; 
    padding: 0 5%;
  }
  .service-item:nth-child(even) .service-num-large {
    left: auto;
    right: 0;
  }
}

/* ─── MENU / SHOP ─── */
#shop { 
  position: relative;
  background: var(--color-white);
  overflow: hidden; 
}
#shop::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/menubg.jpg') center/cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}
.shop-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media(min-width: 768px) {
  .shop-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}
.shop-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
}
.shop-image::before {
  content: '';
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-light);
  z-index: 0;
}
.shop-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.shop-slider img { 
  width: 100%; height: 100%; object-fit: cover; 
  filter: grayscale(10%);
}

.shop-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: .15em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.recommend-menu-list {
  margin-top: 40px;
  margin-bottom: 48px;
}
.menu-item { margin-bottom: 32px; }
.menu-item:last-child { margin-bottom: 0; }
.menu-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-family: var(--font-heading);
  background: var(--color-accent);
  color: #fff;
  padding: 3px 12px;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}
.menu-main {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  border-bottom: 1px solid var(--color-light);
  padding-bottom: 10px;
  margin-bottom: 12px;
}
.menu-name { 
  font-weight: 400; 
  font-size: clamp(1.05rem, 1.3vw, 1.2rem); 
  color: var(--color-accent); 
}
.menu-price { 
  font-weight: 300; 
  font-size: 1.15rem; 
  color: var(--color-text-mid); 
  white-space: nowrap; 
  font-family: var(--font-display);
}
.menu-desc { 
  line-height: 1.8; 
}

/* ─── GALLERY ─── */
#gallery { background-color: #d5e7e5; }
.gallery-heading-wrap { text-align: center; margin-bottom: 56px; }
.gallery-placeholder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--color-light);
}
@media(min-width: 768px) {
  .gallery-placeholder {
    grid-template-columns: repeat(3, 1fr);
  }
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-white);
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease, filter .5s;
  filter: grayscale(40%) contrast(1.1);
}
.gallery-item:hover img { 
  transform: scale(1.05); 
  filter: grayscale(0%);
}

/* ─── VOICE ─── */
#voice { background: var(--color-white); }
.voice-swiper { padding-bottom: 60px !important; }
.voice-card {
  background: var(--color-base);
  padding: clamp(32px, 5vw, 48px);
  position: relative;
  height: 100%;
  border: 1px solid var(--color-light);
}
.voice-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--color-light);
  line-height: .8;
  position: absolute;
  top: 20px;
  left: 20px;
}
.voice-card p {
  position: relative;
  z-index: 1;
  margin-top: 10px;
}
.swiper-pagination-bullet { background: var(--text-light) !important; }
.swiper-pagination-bullet-active { background: var(--color-accent) !important; }

/* ─── MESSAGE ─── */
#message {
  position: relative;
  background: var(--color-white);
  color: var(--color-text);
  text-align: center;
}
.message-bg {
  position: absolute;
  inset: 0;
  background: url('../img/messagebg.jpg') center center / cover no-repeat;
  opacity: .15;
}
.message-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.message-inner h2 {
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  letter-spacing: .15em;
  line-height: 1.8;
  margin-bottom: 40px;
  color: var(--color-accent);
}
.message-inner .accent-line {
  background: var(--color-accent);
}

/* ─── CONTACT / ACCESS ─── */
#contact { background: var(--color-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--color-light);
  background: #1f1f1f;
}
@media(min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}
.map-wrap {
  width: 100%;
  aspect-ratio: auto;
  min-height: 400px;
}
.store-info-panel {
  padding: clamp(32px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.store-info-list {
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
}
.store-info-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
@media(min-width: 768px) {
  .store-info-item {
    flex-direction: row;
    gap: 32px;
  }
}
.store-info-item:first-child {
  padding-top: 0;
}
.store-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.info-label {
  font-family: var(--font-heading);
  font-weight: 500;
  width: 100px;
  flex-shrink: 0;
  color: var(--color-white);
  font-size: 0.95rem;
}
.info-value {
  flex-grow: 1;
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}
.info-value a {
  color: var(--color-white);
  text-decoration: none;
  transition: opacity 0.3s;
}
.info-value a:hover {
  opacity: 0.7;
}
.btn-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 24px;
  margin-top: 16px;
  font-size: 0.85rem;
  transition: background 0.3s;
  width: 100%;
  max-width: 280px;
}
.btn-map-link:hover {
  background: rgba(255, 255, 255, 0.1);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  max-width: 220px;
  margin-bottom: 4px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--color-accent-dark);
  color: var(--color-white);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 60px);
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding-bottom: 40px;
  margin-bottom: 40px;
}
@media(min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  letter-spacing: .2em;
  color: var(--color-white);
  text-decoration: none;
  line-height: 1.2;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px clamp(16px, 3vw, 32px);
}
.footer-nav a {
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  text-transform: uppercase;
  transition: color .3s;
}
.footer-nav a:hover { color: var(--color-white); }
.sns-list-footer {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.sns-btn-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .15em;
  color: var(--color-white);
  background: transparent;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 14px 24px;
  text-transform: uppercase;
  transition: all .3s;
  min-width: 170px;
}
.sns-btn-footer:hover {
  background: var(--color-white);
  color: var(--color-accent-dark);
}
.footer-copy {
  font-family: var(--font-display);
  font-size: .65rem;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .4);
}

/* ─── LIGHTBOX ─── */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
#lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
#lightbox-body {
  max-width: 90%;
  max-height: 80%;
  position: relative;
}
#lightbox-body img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10000;
  transition: opacity .3s;
}
.lightbox-close:hover { opacity: .7; }

/* ─── SP FIXED CTA ─── */
#sp-fixed-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: var(--color-white);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#sp-fixed-cta.visible { transform: translateY(0); }
@media (max-width: 768px) {
  #sp-fixed-cta { display: flex; }
}
#sp-fixed-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  font-family: var(--font-heading);
  font-size: .75rem;
  letter-spacing: .15em;
  text-decoration: none;
  text-transform: uppercase;
}
.cta-phone {
  background: var(--color-base);
  color: var(--color-accent);
  border-top: 1px solid var(--color-light);
}
.cta-shop {
  background: var(--color-accent);
  color: var(--color-white);
}

/* ─── SCROLL TO TOP ─── */
#scroll-top {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-light);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
#scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#scroll-top:hover {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
#scroll-top svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* ─── CTA 1 ─── */
.cta-section-wrapper {
  padding: clamp(60px, 8vw, 120px) 0;
  background: var(--color-base); /* セクション外側の背景色が必要な場合 */
}
.cta-section {
  position: relative;
  background: var(--color-accent);
  color: var(--color-white);
  text-align: center;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/about.jpeg') center/cover;
  opacity: 0.1;
  pointer-events: none;
  filter: grayscale(100%);
  z-index: 1;
}
.cta-inner { 
  position: relative; 
  z-index: 2; 
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 60px);
}
.cta-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  letter-spacing: .15em;
  margin-bottom: 16px;
  color: var(--color-white);
}
.cta-sub {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: .1em;
  margin-bottom: 48px;
  line-height: 2;
}
.cta-tel-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
}
.cta-tel-link {
  color: var(--color-white);
  text-decoration: none;
  transition: opacity 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1.5vw, 12px);
  white-space: nowrap;
  max-width: 100%;
}
.cta-tel-link:hover { opacity: 0.7; }
.cta-tel-link svg {
  flex-shrink: 0;
  width: clamp(20px, 4.5vw, 32px);
  height: clamp(20px, 4.5vw, 32px);
}
.cta-tel-link .tel-num {
  font-family: var(--font-tel);
  font-size: clamp(1.5rem, 7.5vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
}
.cta-hours {
  text-align: center;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 2;
  color: rgba(255,255,255,0.6);
}
.cta-other-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 767px) {
  .cta-section { border-radius: 0; }
  .cta-other-btns { flex-direction: column; width: 100%; }
  .cta-other-btns .btn-dark { width: 100%; }
}

@media (max-width: 768px) {
  .pc-nav, .header-cta-group { display: none !important; }
  .hamburger-btn { display: flex !important; }
}
