@charset "UTF-8";

/* ==========================================================================
   1. Root (カラーパレット・変数)
========================================================================== */
:root {
  --color-main: #CF8E87;
  --color-gold: #B19866;
  --color-ivory: #F7F4E2;
  --color-black: #000000;
  --color-gray: #444444;
  --color-white: #FFFFFF;
  --text-dark: #333333;
  --color-ticket-teal: #009E96;
}

/* ==========================================================================
   2. ベーススタイル & フォント指定
========================================================================== */
html, .cd_scroll {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 30px;
}

body {
  font-family: "Inria Serif", "Tsukimi Rounded", serif;
  font-weight: 400;
  line-height: 1.6;
  background-color: var(--color-main);
  color: var(--color-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.sec_title, #information .sec_title, .flex_box, .list_box h3, .store_name, .footer {
  text-align: center;
}

p, li, dt, dd, button {
  font-family: "Tsukimi Rounded", sans-serif;
  font-weight: 300;
}

/* 情報セクション専用フォント指定 */
#information.sec_info {
  color: var(--text-dark);
  background-color: var(--color-white);
}

#information.sec_info p, 
#information.sec_info li, 
#information.sec_info dt, 
#information.sec_info dd {
  font-family: "Noto Sans JP", sans-serif;
}

/* セクションタイトル */
.sec_title {
  font-family: "Inria Serif", serif;
  font-size: 32px;
  letter-spacing: 0.05em;
  position: relative;
  display: block;
  margin: 0 auto 25px;
  text-align: center;
}

.sec_title::after {
  content: '';
  display: block;
  width: 177px;
  height: 39px;
  margin: 0 auto;
  background-color: currentColor;
  mask-image: url(/images/cascade/teabloomy/title_line.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

#concept .sec_title, 
#gallery .sec_title, 
.sec_reserve .sec_title {
  color: var(--color-main);
}

/* スクロールフェードイン */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   3. 全体レイアウト（固定背景 ＆ スクロール枠）
========================================================================== */
.main_content {
  width: 100%;
  position: relative;
}

.cd_fixed_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url(/images/cascade/teabloomy/bg_body_teabloomy.webp);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.cd_fixed_bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
}

.cd_scroll {
  position: relative;
  z-index: 10;
  width: 100%;
  background-color: var(--color-main);
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.cd_scroll::-webkit-scrollbar {
  display: none;
}

@media only screen and (min-width: 1024px) {
  .cd_scroll {
    position: fixed;
    width: 390px;
    height: 90vh;
    bottom: 0;
    right: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 11px solid #FFFFFF;
    border-bottom: 0;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
}

/* ==========================================================================
   4. ヘッダー ＆ ハンバーガーメニュー
========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  padding: 0 15px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}

@media only screen and (min-width: 1024px) {
  .header {
    position: sticky;
  }
}

/* ヘッダーロゴ */
.logo_area { 
  position: relative;
  z-index: 1000;
}

.logo_area img {
  opacity: 0;
  width: 140px;
  display: block;
}

.logo_area::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--color-white);
  mask-image: url(/images/cascade/teabloomy/logo.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  transition: background-color 0.3s ease;
}

.header.is-light .logo_area::after {
  background-color: var(--color-main);
}

.no-scroll .logo_area::after {
  background-color: var(--color-white) !important;
}

/* ハンバーガーボタン */
.nav_flower_wrap {
  position: relative;
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.nav_flower {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  transform-origin: 50% 50%;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.25));
  pointer-events: none;
}

.nav_btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 101;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.nav_btn span {
  display: block;
  width: 20px;
  height: 3px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: 0.3s ease;
}

.nav_btn.active { box-shadow: none; }
.nav_btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav_btn.active span:nth-child(2) { opacity: 0; }
.nav_btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header .logo_area,
.header .nav_btn span {
  transition: color 0.3s ease, background-color 0.3s ease;
}

.header.is-light .logo_area {
  color: var(--color-main);
}

.header.is-light .nav_btn span {
  background-color: var(--color-main);
}

.header.is-light .nav_btn.active span {
  background-color: var(--color-white) !important;
}

/* 回転サークルバッジ */
.circle-badge {
  position: absolute;
  right: 0;
  width: 90px;
  height: 90px;
  z-index: 20;
  animation: spinBadge 15s linear infinite;
  pointer-events: none;
}

@keyframes spinBadge {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.circle-badge .badge-text {
  fill: var(--color-white);
  transition: fill 0.3s ease;
}

.circle-badge.is-light .badge-text {
  fill: var(--color-main);
}

/* ==========================================================================
   5. サイドメニュー ＆ 暗幕
========================================================================== */
#sideColumn {
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-color: var(--color-gray);
  z-index: 95;
  padding: 80px 20px 40px;
  box-sizing: border-box;
  transition: right 0.4s ease;
}

body.no-scroll,
.cd_scroll.no-scroll {
  overflow: hidden !important;
}

#sideColumn.open {
  right: 0;
}

#sideColumn nav ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0;
}

#sideColumn nav ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 4px;
  box-sizing: border-box;
  color: var(--color-white);
  text-decoration: none;
  font-size: 16px;
  font-family: "Inria Serif", serif;
  opacity: 0.55; /* 通常時は少し透け感を持たせる */
  transition: opacity 0.35s ease, transform 0.35s ease, color 0.35s ease;
}

#sideColumn nav ul li a::after {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M12 5l7 7-7 7"/></svg>');
  transition: transform 0.35s ease;
}

#sideColumn nav ul li a:hover {
  opacity: 1;
  color: var(--color-gold);
}

#sideColumn nav ul li a:hover::after {
  transform: translateX(4px);
}

.side-sns, .sns { 
  display: flex; 
  justify-content: center; 
  gap: 24px; 
  margin-top: 30px; 
}

.side-sns a, .sns a { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: var(--color-white); 
  text-decoration: none; 
  transition: background-color 0.3s, transform 0.3s; 
  border-radius: 50%; 
}

.side-sns a { font-size: 40px; }
.sns a { color: var(--color-main); background-color: var(--color-white); border: 1px solid var(--color-main); font-size: 24px; }
.side-sns a:hover, .sns a:hover { background-color: var(--color-gold); color: var(--color-white); border-color: var(--color-gold); transform: translateY(-2px); }

.drawerClose {
  position: absolute;
  inset: 0;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  margin: 0;
}

.drawerClose.open {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   6. セクション共通 ＆ 波線（SVG Divider）
========================================================================== */
.sec_inner {
  padding: 80px 15px;
  position: relative;
  z-index: 2;
}

.sec_reserve .sec_inner {
  padding: 30px 20px;
}

#concept, #gallery, .sec_reserve {
  position: relative;
  background-color: var(--color-ivory);
  color: var(--text-dark);
}

#concept .bg_img::before, .sec_reserve .bg_img::before {
  content: "";
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  filter: blur(5px);
  opacity: 0.2;
}

#concept .bg_img::before {
  background: url(/images/cascade/teabloomy/bg_concept.webp);
  height: calc(100% - 80px);
}

.sec_reserve .bg_img::before {
  background: url(/images/cascade/teabloomy/bg_reserve.webp);
  height: calc(100% - 30px);
}

#patissier {
  background-color: var(--color-black);
  color: var(--color-white);
}

.shapedividers_com-8911 {
  overflow: visible;
  position: relative;
}

.shapedividers_com-8911::before, .shapedividers_com-8911::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 40px;
  z-index: 10;
  background-size: 100% 40px;
  background-repeat: no-repeat;
  pointer-events: none;
}

.wave-ivory::before, .wave-ivory::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" fill="%23F7F4E2"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23F7F4E2"/><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23F7F4E2"/></svg>');
}

.wave-ivory::before {
  top: 0;
  transform: translateY(-98%) rotate(180deg);
}
.wave-ivory::after {
  bottom: 0;
  transform: translateY(98%);
}

.wave-ivory:last-of-type::after {
  background-image: none;
}

.wave-black::before, .wave-black::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" fill="%23000000"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23000000"/><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23000000"/></svg>');
}

.wave-black::before {
  top: 0;
  transform: translateY(-98%) rotate(180deg);
}
.wave-black::after {
  bottom: 0;
  transform: translateY(98%);
}

/* ==========================================================================
   7. 各セクション要素 (MV, Menu, Concept, Patissier, Info, Button)
========================================================================== */

/* MV (メインビジュアル) */
#mv {
  position: relative;
  background-color: var(--color-main);
  text-align: center;
  padding-bottom: 40px;
}

.mv_arch_container {
  width: 100%;
  height: 510px;
  overflow: hidden;
  border-radius: 0 0 50% 50% / 0 0 150px 150px;
}

.mv_arch_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.light-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 10;
}

.light-particles span {
  position: absolute;
  bottom: -100px;
  background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  animation: floatUp linear infinite forwards;
}

.light-particles span:nth-child(1) { left: 15%; width: 60px; height: 60px; animation-duration: 9s; animation-delay: 0s; }
.light-particles span:nth-child(2) { left: 35%; width: 120px; height: 120px; animation-duration: 13s; animation-delay: 2s; opacity: 0.6; }
.light-particles span:nth-child(3) { left: 65%; width: 45px; height: 45px; animation-duration: 7s; animation-delay: 4s; }
.light-particles span:nth-child(4) { left: 80%; width: 90px; height: 90px; animation-duration: 15s; animation-delay: 1s; opacity: 0.4; }
.light-particles span:nth-child(5) { left: 50%; width: 75px; height: 75px; animation-duration: 11s; animation-delay: 3s; }

@keyframes floatUp {
  0% { transform: translateY(0) scale(0.8); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateY(-70vh) scale(1.5); opacity: 0; }
}

.mv_curved_text text {
  font-size: 22px;
  fill: var(--color-ivory);
}

.mv_title {
  color: var(--color-ivory);
  font-family: "Inria Serif", serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.mv_logo_icon {
  width: 60px;
  margin: 0 auto 20px;
}

.mv_dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.mv_dots span {
  width: 10px;
  height: 10px;
  background-color: var(--color-white);
  border-radius: 50%;
}

/* Flex Layout Parts (Arch Frame) */
.flex_box {
  display: flex;
  align-items: center;
}

.flex_box div { flex: 1; }
.flex_box p { flex: 1.7; font-size: 14px; }

.flex_box img {
  height: 200px;
  border-radius: 120px 120px 0 0;
  object-fit: cover;
}

.arch_frame {
  display: inline-block;
  padding: 6px;
  border: 1.5px solid var(--color-white);
  border-radius: 126px 120px 0 0;
  animation: floatArch 6s ease-in-out infinite alternate;
}

@keyframes floatArch {
  0% { transform: translateY(0); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05); }
  100% { transform: translateY(-10px); box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12); }
}

/* Concept */
.concept_box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.concept_text {
  padding-right: 30px;
}

.concept_text:nth-of-type(even) {
  padding-right: 0;
  padding-left: 30px;
}

/* Menu */
#menu .menu_top_txt,
#menu .menu_desc,
#patissier .patissier_desc {
  font-size: 14px;
  opacity: 0.8;
  padding-top: 50px;
}

#menu .menu_top_txt { padding-top: 0; opacity: 1; }

.area_switch_btns {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 30px 0 20px;
}

.area_switch_btns button {
  position: relative;
  z-index: 1;
  background-image: url(/images/cascade/teabloomy/bg_btns.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: var(--color-white);
  padding: 25px 30px;
  font-family: "Tsukimi Rounded", sans-serif;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease;
}

.area_switch_btns button:hover {
  transform: translateY(-4px) scale(1.02);
  filter: drop-shadow(0 8px 16px rgba(177, 152, 102, 0.5)) brightness(1.06);
}

.area_switch_btns button:active {
  transform: translateY(-1px) scale(0.98);
}

.area_switch_btns button.active {
  font-weight: 700;
}
.area_switch_btns button.active:hover {
  transform: unset;
  filter: unset;
}

.list_wrapper {
  border: 2px solid var(--color-white);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  padding: 30px 10px;
  background: rgba(255, 255, 255, 0.15);
}

.list_box { display: none; }
.list_box.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.list_box h3 { margin-bottom: 15px; }
.list_box ul { font-size: 14px; margin: 10px 0 25px; }
.list_box li { margin: 0 15px; }

.price {
  text-align: end;
  margin-top: 20px;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1.2px;
}

/* Information */
.information_desc, .info_box { font-size: 13px; }
.store_name { margin: 20px 0; }

#information .store_name h3 {
  font-family: "Tsukimi Rounded", sans-serif;
  font-size: 24px;
  color: var(--color-main);
}

#information .store_name h3 .name_top { display: block; font-size: 14px; }
#information .store_name h3 .name_bottom { display: block; font-size: 12px; }

.info_item {
  margin-bottom: 15px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 10px;
}

.info_item:last-child { border-bottom: 0; }
.info_item dt { font-size: 16px; font-weight: bold; color: var(--color-black); }
.info_item dd { padding: 15px 0 10px; }

/* 共通ボタン (btn_gold) */
.btn_gold {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 10px auto;
  padding: 12px 0;
  text-align: center;
  background-color: var(--color-gold);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 30px;
  font-weight: normal;
  border: none;
  overflow: hidden;
  transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s ease, box-shadow 0.3s ease;
}

.btn_gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  z-index: -1;
  transform: translateY(102%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn_gold:hover {
  opacity: 1;
  color: var(--color-gold); 
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn_gold:hover::before {
  transform: translateY(0);
}

.btn_gold:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
  padding: 10px 20px;
  background-color: #222222;
}

.footer .copyright {
  font-size: 10px;
  color: var(--color-white);
}

/* ==========================================================================
   8. ギャラリースライダー（GALLERYセクション）
========================================================================== */
#gallery .sec_inner {
  padding-bottom: 40px;
}

.gallery-slider-wrap {
  position: relative;
  margin: 10px -20px 0;
}

.gallery-slider {
  margin: 0 -20px;
  overflow: hidden;
}

.gallery-slider .slick-list {
  padding: 40px 70px 70px !important;
}

.gallery-slider .slick-slide {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, box-shadow 0.6s ease, filter 0.6s ease;
  transform: scale(0.85) translateY(0);
  opacity: 0.5;
  filter: blur(2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--color-gold);
  padding: 8px;
  background-color: var(--color-white);
  border-radius: 2px;
}

.gallery-slider .slick-center {
  transform: scale(1.15) translateY(-15px);
  opacity: 1;
  filter: blur(0);
  z-index: 10;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
  animation: centerPulse 4s ease-in-out infinite alternate;
}

@keyframes centerPulse {
  0% {
    transform: scale(1.15) translateY(-15px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
  }
  100% {
    transform: scale(1.15) translateY(-19px);
    box-shadow: 0 30px 55px rgba(177, 152, 102, 0.45);
  }
}

.gallery-slider img {
  width: 100%;
  display: block;
  border: 1px solid rgba(177, 152, 102, 0.4); 
  border-radius: 2px;
}

/* すりガラス風・丸型矢印ボタン */
.slick-prev-custom,
.slick-next-custom {
  position: absolute;
  bottom: -20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--color-gold);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  z-index: 25;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 0;
}

.slick-prev-custom { left: 20%; }
.slick-next-custom { right: 20%; }

.slick-prev-custom::before,
.slick-next-custom::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}

.slick-prev-custom::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23B19866" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 18l-6-6 6-6"/></svg>');
}

.slick-next-custom::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23B19866" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 18l6-6-6-6"/></svg>');
}

.slick-prev-custom:hover,
.slick-next-custom:hover {
  background: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(177, 152, 102, 0.4);
}

.slick-prev-custom:hover::before {
  transform: translateX(-2px);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 18l-6-6 6-6"/></svg>');
}

.slick-next-custom:hover::before {
  transform: translateX(2px);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 18l6-6-6-6"/></svg>');
}

/* メタリックゴールド SNSバー */
.gallery-sns-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: var(--color-gold);
  border-radius: 35px;
  padding: 10px 25px;
  max-width: 300px;
  margin: 60px auto 0;
  position: relative;
  z-index: 20;
  box-shadow: 0 10px 25px rgba(177, 152, 102, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.gallery-sns-bar li a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 20px;
  text-decoration: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-sns-bar li a:hover {
  background: var(--color-white);
  color: var(--color-main);
  transform: translateY(-5px) scale(1.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   9. PC表示時 固定予約エリア
========================================================================== */
.pc_fixed_reserve {
  display: none;
}

@media only screen and (min-width: 1024px) {
  .pc_fixed_reserve {
    display: block;
    position: fixed;
    bottom: 40px;
    left: 80px;
    z-index: 50;
    animation: fadeIn 1s ease forwards;
  }

  .pc_fixed_reserve p {
    padding-bottom: 40px;
    font-size: 32px;
    color: var(--color-gray);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);;
  }

  .pc_fixed_reserve .buttonwrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .pc_fixed_reserve .btn_gold {
    margin: 0;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }
}

@media only screen and (min-width: 1400px) {
  .pc_fixed_reserve {
    left: calc(50vw - 600px);
    bottom: 200px;
  }
  
  .pc_fixed_reserve .buttonwrap {
    flex-direction: row;
  }
  
  .pc_fixed_reserve .btn_gold {
    width: 300px;
  }
}

/* ==========================================================================
   フェードイン・アニメーション（4バリエーション）
========================================================================== */

/* 共通基本アニメーション設定 */
.fade-in-up,
.fade-in-blur,
.fade-in-scale,
.fade-in-stagger > * {
  opacity: 0;
  will-change: opacity, transform, filter;
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ① 下から立ち上がる (Up) */
.fade-in-up {
  transform: translateY(35px);
}
.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ② ぼかしからクリアに現れる (Blur) */
.fade-in-blur {
  filter: blur(12px);
  transform: scale(0.98);
}
.fade-in-blur.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

/* ③ 奥からふんわり拡大する (Scale) */
.fade-in-scale {
  transform: scale(0.92) translateY(15px);
}
.fade-in-scale.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ④ 子要素が時間差で順番に現れる (Stagger) */
.fade-in-stagger > * {
  transform: translateY(20px);
}
.fade-in-stagger.is-visible > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.fade-in-stagger.is-visible > *:nth-child(2) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.fade-in-stagger.is-visible > *:nth-child(3) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.fade-in-stagger.is-visible > *:nth-child(4) { transition-delay: 0.55s; opacity: 1; transform: translateY(0); }
.fade-in-stagger.is-visible > *:nth-child(5) { transition-delay: 0.7s; opacity: 1; transform: translateY(0); }