/* HARURI - Main Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Fascinate+Inline&family=Yomogi&display=swap');

:root {
  --pink:        #AA4184;
  --border-pink: #E696C9;
  --border-green:#6DA75F;
  --teal:        #46BEB8;
  --bg-radial-white: radial-gradient(52.15% 339.31% at 50% 50%, #FFFFFF 70.19%, rgba(255,255,255,0) 100%);
  --bg-radial-pink:  radial-gradient(52.15% 339.31% at 50% 50%, #E5C1E5 70.19%, rgba(255,255,255,0) 100%);
  --font-en: 'Fascinate Inline', cursive;
  --font-jp: 'Yomogi', cursive;
  --radius-pill: 258px;
  --radius-img:  54px;
  --shadow-text: 0px 8px 0px rgba(255,253,253,0.95), 5px 5px 0px rgba(0,0,0,0.25);
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-jp);
  color: var(--pink);
  overflow-x: hidden;
  background: url('./image/background.jpg') center center / cover scroll;
}
a { text-decoration: none; color: inherit; }

/* Fade-in */
.fade-in {
  opacity: 0; transform: translateY(22px);
	
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
  transition-delay: var(--delay, 0s);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeInUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--bg-radial-white);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(230,150,201,0.18);
}
.header-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 36px; height: 80px;
  display: flex; align-items: center;
}
.logo-link { flex-shrink: 0; margin-right: 24px; display: flex; align-items: center; }
.logo-img {
  height: 56px; width: auto; display: block;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 2px 6px rgba(170,65,132,0.2));
  transition: var(--transition);
}
.logo-img:hover { transform: scale(1.06); }
.logo-img--footer { height: 52px; width: auto; }
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; }

.global-nav { display: flex; gap: 12px; margin-left: auto; align-items: center; }
.nav-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 20px; height: 56px; min-width: 160px;
  border-radius: var(--radius-pill);
  background: #FFFFFF;
  font-family: var(--font-en); font-weight: 900; font-size: 1.25rem;
  color: var(--pink); cursor: pointer;
  transition: var(--transition); white-space: nowrap;
  border: 3px solid var(--border-pink);
}
.nav-btn:nth-child(2), .nav-btn:nth-child(4) { border-color: var(--border-green); }
.nav-btn:hover, .nav-btn.active {
  background: linear-gradient(135deg, #f0b8d8, #cca8e8);
  color: white; border-color: transparent;
  box-shadow: 0 4px 20px rgba(170,65,132,0.3);
  transform: translateY(-2px);
}

.hamburger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 28px; height: 3px; background: var(--pink); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
.mobile-nav { display: none; flex-direction: column; gap: 10px; padding: 16px 24px 20px; background: rgba(255,255,255,0.97); border-top: 1px solid rgba(230,150,201,0.2); }
.mobile-nav .nav-btn { min-width: auto; width: 100%; height: 52px; font-size: 1.1rem; }
.mobile-nav.open { display: flex; }

/* HERO SLIDER */
.hero { position: relative; padding: 0; overflow: hidden; }

.slider-outer {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
  animation: fadeInUp 0.85s 0.1s cubic-bezier(0.4,0,0.2,1) both;
}

/* slides width x5 */
.hero-slides-inner {
  display: flex;
  width: 500%;      /* slides x 100% */
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

/* each card 20% */
.hero-slide-card {
  flex-shrink: 0;
  width: 20%;       /* 500% / 5 slides */
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slide-img-block {
  position: absolute; inset: 0; overflow: hidden;
}
.slide-img-block img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.s-img1 { background: linear-gradient(160deg, #e8c0d8, #d4b0d0, #c8c0e8); }
.s-img2 { background: linear-gradient(160deg, #c8d0e8, #d0c8e8, #e0c0d8); }
.s-img3 { background: linear-gradient(160deg, #d0d8a8, #c8d098, #b8c888); }
.s-img4 { background: linear-gradient(160deg, #f0c8d8, #e8b8d0, #d8a8c8); }
.s-img5 { background: linear-gradient(160deg, #c0c8e8, #b8c0e0, #a8b0d8); }

/* card overlay */
.hero-slide-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(255,230,245,0.45) 0%, rgba(220,200,240,0.25) 40%, rgba(0,0,0,0) 70%);
  pointer-events: none; z-index: 1;
}

/* overlay text */
.hero-overlay-content {
  position: absolute; top: 50%; left: 8%;
  transform: translateY(-50%);
  z-index: 10; text-align: left;
  animation: fadeInUp 0.9s 0.3s cubic-bezier(0.4,0,0.2,1) both;
}
.hero-title { margin-bottom: 20px; }
.title-haruri {
  font-family: var(--font-en); font-weight: 900;
  font-size: clamp(3.5rem, 8vw, 8rem);
  color: var(--pink); display: inline-block;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 0 20px 6px; border-radius: 10px;
  transform: rotate(-0.43deg);
  text-shadow: 2px 2px 0 rgba(255,255,255,0.6), 0 4px 20px rgba(170,65,132,0.2);
  background: rgba(255,255,255,0.18); backdrop-filter: blur(2px);
}
.hero-poem-area { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.poem-tag {
  background: rgba(255,255,255,0.88); border-radius: 12px;
  padding: 5px 22px 10px 18px; font-family: var(--font-jp);
  font-size: clamp(1rem, 2.5vw, 1.8rem); color: var(--pink);
  box-shadow: 0 2px 14px rgba(170,65,132,0.15); display: inline-block;
  backdrop-filter: blur(4px);
}

.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.82); border: none; border-radius: 50%;
  width: 52px; height: 52px; cursor: pointer;
  font-size: 1.2rem; color: var(--pink);
  display: flex; align-items: center; justify-content: center;
  z-index: 20; box-shadow: 0 3px 14px rgba(0,0,0,0.13);
  transition: var(--transition);
}
.slider-btn:hover { background: white; transform: translateY(-50%) scale(1.08); }
.slider-prev { left: 16px; }
.slider-next { right: 16px; }

.slider-dots { display: flex; justify-content: center; gap: 8px; padding: 14px 0 6px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(170,65,132,0.28); cursor: pointer; transition: var(--transition); }
.dot.active { background: var(--pink); transform: scale(1.32); }

/* COPY SECTION */
.copy-section {
  padding: 80px 40px;
  background: rgba(255,248,255,0.75);
  position: relative; overflow: hidden;
}
.copy-grid { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 80px; }
.copy-block { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 56px; }
.copy-block.reverse { direction: rtl; }
.copy-block.reverse > * { direction: ltr; }
.copy-img-wrap { position: relative; }
.copy-img {
  width: 100%; aspect-ratio: 1; border-radius: 50%;
  overflow: hidden; box-shadow: 0 12px 40px rgba(170,65,132,0.2);
  position: relative;
}
.copy-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.img-resin   { background: linear-gradient(135deg, #f0c0d8, #e0b0d4, #d0c0e8); }
.img-nuifuku { background: linear-gradient(135deg, #c8d0e8, #d0c8e8, #e0c0d8); }
.img-charm   { background: linear-gradient(135deg, #d8d0a8, #c8c0a0, #e0c8b0); }
.copy-poem-bg { background: var(--bg-radial-white); border-radius: 16px; padding: 28px 36px; }

/* flower divider */
.copy-flower-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}
/* 上ライン：左寄せ（右のラインを非表示） */
.copy-flower-divider--top {
  justify-content: flex-start;
  margin-bottom: 14px;
  margin-top: 0;
}
.copy-flower-divider--top .copy-flower-line:last-child {
  display: none;
}
.copy-flower-divider--top .copy-flower-line:first-child {
  max-width: 60px;
}
/* 下ライン：右寄せ（左のラインを非表示） */
.copy-flower-divider--bottom {
  justify-content: flex-end;
  margin-bottom: 0;
  margin-top: 14px;
}
.copy-flower-divider--bottom .copy-flower-line:first-child {
  display: none;
}
.copy-flower-divider--bottom .copy-flower-line:last-child {
  max-width: 60px;
}
.copy-flower-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230,150,201,0.55), transparent);
}

.copy-text { font-family: var(--font-jp); font-size: clamp(1rem, 1.7vw, 1.3rem); line-height: 1.9; color: var(--pink); }
.copy-text p { margin-bottom: 0.4em; }
.copy-text p:last-child { margin-bottom: 0; }

/* MEDIA SECTION */
.media-section {
  padding: 0 0 60px;
  background: rgba(248,238,255,0.70);
  position: relative; overflow: hidden;
}
.media-deco {
  position: absolute; top: -20px; right: -20px;
  width: 280px; pointer-events: none; z-index: 2;
  opacity: 0.55; mix-blend-mode: multiply;
}
.media-deco-img { width: 100%; height: auto; display: block; }
.media-row {
  display: flex; align-items: center;
  max-width: 900px; margin: 0 auto;
  padding: 32px 40px; gap: 32px;
  cursor: pointer; text-decoration: none; transition: var(--transition);
}
.media-row:hover { transform: translateX(4px); }
.media-row--reverse { flex-direction: row-reverse; }
.media-row--reverse:hover { transform: translateX(-4px); }
.media-row-thumb {
  flex-shrink: 0; position: relative;
  width: 380px; height: 214px;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(170,65,132,0.18);
}
.media-row-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 1; }
.media-row-bg { position: absolute; inset: 0; z-index: 0; }
.yt-thumb { background: linear-gradient(135deg, #d0c0e0, #c8b8d8, #b8c0d8); }
.tk-thumb { background: linear-gradient(135deg, #b8c8e0, #c0b8d8, #d0b8cc); }
.media-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); z-index: 5;
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.88);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--pink);
  box-shadow: 0 4px 16px rgba(170,65,132,0.25); transition: var(--transition);
}
.media-row:hover .media-play-btn { background: white; transform: translate(-50%, -50%) scale(1.12); }
.media-row-label {
  flex: 1; font-family: var(--font-jp);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  color: var(--pink); font-weight: 400;
  text-shadow: var(--shadow-text); line-height: 1.4;
}

/* EVENT */
.event {
  max-width: 700px;
  margin: 0 auto 20px;
  padding: 28px 40px;
  background: rgba(255,192,203,0.55);
  
  border-radius: 16px;
}
.event-title {
  text-align: center; font-family: var(--font-jp);
  font-size: 1.1rem; letter-spacing: 3px;
  margin-bottom: 18px; color: var(--pink);
  text-shadow: var(--shadow-text);
}
.event-list { list-style: none; padding: 0; margin: 0; }
.event-list li {
  display: flex; gap: 30px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(170,65,132,0.3);
  color: var(--pink); font-family: var(--font-jp); font-size: 1rem;
}
.event-list li:last-child { border-bottom: none; }
.date { width: 130px; flex-shrink: 0; }
.text { flex: 1; }

/* GALLERY */
.gallery-section { padding: 56px 0 80px; background: rgba(255,248,255,0.75); }
.section-header { background: var(--bg-radial-white); text-align: center; padding: 8px 0; margin-bottom: 40px; }
.section-title { font-family: var(--font-jp); font-size: clamp(1.6rem, 3.5vw, 2.8rem); color: var(--pink); font-weight: 400; letter-spacing: 0.06em; }

/* 両端をふわっとフェード */
.gallery-outer {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}
.gallery-track {
  display: flex; gap: 20px; padding: 20px 0;
  width: max-content;
  animation: galleryScroll 32s linear infinite;
}
.gallery-track:hover { animation-play-state: paused; }
@keyframes galleryScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.gallery-item {
  flex-shrink: 0; position: relative; overflow: hidden;
  cursor: pointer; border-radius: var(--radius-img);
  box-shadow: 0 8px 28px rgba(170,65,132,0.15);
  transition: box-shadow var(--transition), transform var(--transition);
}
.gallery-item:hover { transform: translateY(-6px) scale(1.03); box-shadow: 0 16px 44px rgba(170,65,132,0.28); }

/* 画像を大きく */
.gallery-item.size-main  { width: 280px; height: 440px; }
.gallery-item.size-large { width: 260px; height: 460px; }
.gallery-item.size-thin  { width: 140px; height: 440px; }
.gallery-item.size-small { width:  90px; height: 440px; }
.gallery-img { position: absolute; inset: 0; overflow: hidden; }
.gallery-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.g-img1 { background: linear-gradient(160deg, #e8c0d8, #d4b0d0, #c8c0e8); }
.g-img2 { background: linear-gradient(160deg, #c4d4a8, #b8c89c, #a8c090); }
.g-img3 { background: linear-gradient(160deg, #f0c0d0, #e8b0c8, #d8a8c0); }
.g-img4 { background: linear-gradient(160deg, #e8c8a0, #e0c098, #d0b888); }
.g-img5 { background: linear-gradient(160deg, #b8c8e8, #b0c0e0, #a8b8d8); }
.g-img6 { background: linear-gradient(160deg, #f0d0e0, #e8c8d8, #d8b8c8); }

/* CONTACT PAGE */
.contact-hero {
  position: relative; height: 280px;
  background: rgba(255,245,252,0.2);
  display: flex; align-items: center; justify-content: flex-start;
  overflow: hidden; padding-left: 12%;
}
.contact-title {
  font-family: var(--font-en); font-weight: 900;
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--pink); position: relative; z-index: 2;
  animation: fadeInUp 0.8s cubic-bezier(0.4,0,0.2,1) both;
  text-shadow: 3px 3px 0 rgba(255,255,255,0.5);
}
.contact-form-section { padding: 60px 40px 80px; background: rgba(255,248,255,0.75); position: relative; }
.contact-form-wrap { max-width: 720px; margin: 0 auto; }
.form-card {
  background: rgba(255,255,255,0.78); backdrop-filter: blur(8px);
  border-radius: 24px; padding: 48px 52px 40px;
  box-shadow: 0 12px 52px rgba(170,65,132,0.13);
  border: 1.5px solid rgba(255,255,255,0.85);
}
.form-group { margin-bottom: 26px; }
.form-label { display: block; font-family: var(--font-jp); font-size: 1rem; color: var(--pink); margin-bottom: 8px; }
.form-input, .form-textarea {
  display: block; border: 2px solid rgba(230,150,201,0.52); border-radius: 10px;
  padding: 10px 16px; font-family: var(--font-jp); font-size: 1rem;
  color: var(--pink); background: rgba(255,255,255,0.88);
  transition: var(--transition); outline: none; width: 65%;
}
.form-input--wide { width: 86%; }
.form-input--mid  { width: 58%; }
.form-textarea { width: 100%; resize: vertical; min-height: 170px; line-height: 1.72; border-radius: 12px; }
.form-input:focus, .form-textarea:focus { border-color: var(--border-pink); background: white; box-shadow: 0 0 0 3px rgba(230,150,201,0.2); }
.form-buttons { display: flex; gap: 16px; justify-content: center; margin-top: 12px; }
.btn-clear, .btn-send { padding: 12px 40px; border-radius: var(--radius-pill); font-family: var(--font-jp); font-size: 1rem; cursor: pointer; transition: var(--transition); letter-spacing: 0.08em; }
.btn-clear { background: white; border: 2px solid var(--border-pink); color: var(--pink); }
.btn-clear:hover { background: #fde8f4; transform: translateY(-2px); }
.btn-send { background: linear-gradient(135deg, #d090bc, #b890d0); border: none; color: white; box-shadow: 0 5px 20px rgba(170,65,132,0.32); }
.btn-send:hover { background: linear-gradient(135deg, #c080ac, #a880c0); transform: translateY(-2px); }

.order-banner { margin: 0 40px 60px; border-radius: 12px; overflow: hidden; cursor: pointer; transition: var(--transition); box-shadow: 0 6px 28px rgba(170,65,132,0.16); }
.order-banner:hover { transform: translateY(-3px); }
.banner-inner { background: linear-gradient(135deg, rgba(240,210,232,0.9), rgba(220,202,248,0.88)); padding: 28px 36px; display: flex; align-items: center; gap: 20px; }
.banner-img-strip { font-size: 1.6rem; letter-spacing: 0.3em; flex-shrink: 0; padding: 8px; background: rgba(255,255,255,0.52); border-radius: 8px; }
.banner-text { flex: 1; font-family: var(--font-jp); font-size: clamp(1rem, 2.2vw, 1.4rem); color: var(--pink); text-align: center; text-shadow: var(--shadow-text); }
.banner-arrow { font-size: 1.4rem; color: var(--border-pink); flex-shrink: 0; }

.toast {
  position: fixed; bottom: 40px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, #d090bc, #b090d0);
  color: white; font-family: var(--font-jp); font-size: 1rem;
  padding: 14px 36px; border-radius: var(--radius-pill);
  box-shadow: 0 8px 30px rgba(170,65,132,0.32);
  z-index: 9999; pointer-events: none; opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* FOOTER */
.site-footer { background: rgba(229,193,229,0.78);  padding: 48px 40px 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-brand { font-family: var(--font-en); font-weight: 900; font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--pink); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.footer-nav a { font-family: var(--font-jp); font-size: clamp(0.85rem, 1.6vw, 1rem); color: var(--teal); transition: var(--transition); }
.footer-nav a:hover { opacity: 0.72; }
.footer-sns { display: flex; gap: 12px; }
.sns-btn {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 0; flex-shrink: 0;
  transition: var(--transition); box-shadow: 0 3px 10px rgba(0,0,0,0.13);
  font-size: 1.1rem; color: white; font-weight: 900;
}
.sns-btn img { width: 44px; height: 44px; object-fit: cover; display: block; border-radius: 50%; }
.sns-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,0.2); }
.sns-x  { background: #1a1a2e; }
.sns-yt { background: #cc4466; }
.sns-tt { background: #7766aa; }
.sns-ig { background: linear-gradient(135deg, #f09040, #cc4488, #9944cc); }

.footer-copy { font-family: var(--font-jp); font-size: 0.85rem; color: var(--pink); }

/* MODALS */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(120,58,112,0.44); backdrop-filter: blur(6px);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s; padding: 24px;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: white; border-radius: 24px; padding: 40px; max-width: 560px; width: 100%;
  position: relative; box-shadow: 0 28px 80px rgba(120,55,112,0.24);
  transform: scale(0.9) translateY(22px);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  background: #fde8f4; border: none; border-radius: 50%;
  width: 34px; height: 34px; cursor: pointer;
  font-size: 1rem; color: var(--pink);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--border-pink); color: white; }
.modal-content { font-family: var(--font-jp); line-height: 1.85; color: var(--pink); }
.modal-content h3 { font-size: 1.3rem; font-weight: 400; margin-bottom: 12px; }
.modal-thumb { width: 100%; height: 180px; border-radius: 12px; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: white; }
.modal-thumb.yt { background: linear-gradient(135deg, #d0c0e0, #c0b0d8); }
.modal-thumb.tk { background: linear-gradient(135deg, #b0c0d8, #c0b8e0); }
.modal-link { display: inline-block; margin-top: 12px; color: var(--pink); text-decoration: underline; text-underline-offset: 3px; }
.modal-box--gallery { max-width: 480px; text-align: center; }
.gallery-modal-img { width: 100%; aspect-ratio: 1; border-radius: 14px; overflow: hidden; margin-bottom: 16px; position: relative; }
.gallery-modal-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gallery-modal-label { font-family: var(--font-jp); font-size: 1.05rem; color: var(--pink); margin-bottom: 16px; }
.gallery-modal-nav { display: flex; justify-content: center; gap: 16px; }
.gallery-modal-nav button { background: #fde8f4; border: none; border-radius: 50%; width: 40px; height: 40px; cursor: pointer; font-size: 1rem; color: var(--pink); transition: var(--transition); }
.gallery-modal-nav button:hover { background: var(--border-pink); color: white; }

/* Petals */
.petals-container { position: fixed; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.petal { position: absolute; top: -30px; border-radius: 50% 0 50% 0; animation: petalFall linear infinite; }
@keyframes petalFall {
  0%   { transform: translateY(0) rotate(0deg) translateX(0); opacity: 0.75; }
  70%  { opacity: 0.48; }
  100% { transform: translateY(110vh) rotate(700deg) translateX(48px); opacity: 0; }
}
20%      { transform: translateX(-7px) translateY(-2px); }
  40%      { transform: translateX(7px) translateY(-2px); }
  60%      { transform: translateX(-4px) translateY(-2px); }
  80%      { transform: translateX(4px) translateY(-2px); }
}

/* PAGE HERO */
.page-hero {
  position: relative; height: 220px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: rgba(255,245,252,0.18);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(230,185,225,0.5) 0%, rgba(200,185,235,0.35) 50%, rgba(240,200,230,0.3) 100%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; text-align: center; }
.page-title {
  font-family: var(--font-en); font-weight: 900;
  font-size: clamp(3.5rem, 8vw, 6rem); color: var(--pink);
  text-shadow: 3px 3px 0 rgba(255,255,255,0.6);
  animation: fadeInUp 0.8s cubic-bezier(0.4,0,0.2,1) both; display: inline-block;
}
.page-title-cap { font-size: 1.4em; line-height: 0.8; display: inline-block; vertical-align: bottom; }

/* ABOUT */
.about-main { max-width: 820px; margin: 0 auto; padding: 60px 32px 80px; }
.about-section {
  margin-bottom: 56px; background: rgba(255,255,255,0.72);
  backdrop-filter: blur(6px); border-radius: 20px; padding: 36px 44px;
  box-shadow: 0 6px 28px rgba(170,65,132,0.1);
}
.about-heading {
  font-family: var(--font-jp); font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400; color: var(--pink); margin-bottom: 20px;
  padding-bottom: 10px; border-bottom: 2px solid rgba(230,150,201,0.35); letter-spacing: 0.04em;
}
.about-body { font-family: var(--font-jp); font-size: clamp(0.9rem, 1.6vw, 1.05rem); line-height: 2.1; color: var(--pink); }
.about-body p { margin-bottom: 1em; }
.about-body p:last-child { margin-bottom: 0; }
.about-sns { display: flex; gap: 20px; margin-top: 28px; flex-wrap: wrap; justify-content: center; }
.about-sns-btn {
  width: 80px; height: 80px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: white; font-weight: 900;
  transition: var(--transition); box-shadow: 0 4px 14px rgba(0,0,0,0.14);
  overflow: hidden; padding: 0;
}
.about-sns-btn img { width: 80px; height: 80px; object-fit: cover; display: block; border-radius: 20px; }
.about-sns-btn:hover { transform: translateY(-4px); }
.about-sns-x  { background: #1a1a2e; }
.about-sns-yt { background: #cc4466; }
.about-sns-tt { background: #7766aa; }
.about-sns-ig { background: linear-gradient(135deg, #f09040, #cc4488, #9944cc); }
.about-viewall { text-align: center; padding: 24px 0 8px; }
.viewall-link {
  font-family: var(--font-jp); font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--pink); font-weight: 400; letter-spacing: 0.08em;
  display: inline-block; padding: 12px 40px;
  background: var(--bg-radial-white); border-radius: 50px; transition: var(--transition);
}
.viewall-link:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(170,65,132,0.18); }

/* LIST */
.page-hero--list { height: 280px; }
.list-main { padding: 0 0 80px; }
.list-tabs {
  display: flex; flex-wrap: wrap; gap: 0;
  max-width: 1100px; margin: 0 auto; padding: 24px 32px 0;
  border-bottom: 2px solid rgba(230,150,201,0.3);
}
.list-tab {
  font-family: var(--font-jp); font-size: 0.95rem; color: var(--pink);
  background: rgba(255,255,255,0.6); border: 2px solid rgba(230,150,201,0.4);
  border-bottom: none; border-radius: 10px 10px 0 0;
  padding: 9px 22px; cursor: pointer; transition: var(--transition); margin-right: 4px;
}
.list-tab:hover { background: rgba(255,255,255,0.9); }
.list-tab.active { background: white; border-color: var(--border-pink); font-weight: 700; position: relative; top: 2px; }
.list-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 28px; max-width: 1100px; margin: 36px auto 0; padding: 0 32px;
}
.list-item { cursor: pointer; transition: var(--transition); }
.list-item:hover { transform: translateY(-4px); }
.list-img { width: 100%; aspect-ratio: 1; border-radius: 50%; overflow: hidden; box-shadow: 0 6px 20px rgba(170,65,132,0.15); margin-bottom: 10px; background: rgba(255,255,255,0.5); }
.list-img-inner { width: 100%; height: 100%; position: relative; }
.list-img-inner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.list-name { font-family: var(--font-jp); font-size: 0.88rem; color: var(--pink); margin-bottom: 4px; text-align: center; }
.list-price { font-family: var(--font-jp); font-size: 0.88rem; color: var(--pink); text-align: center; }

/* GALLERY PAGE */
.gallery-main { padding: 40px 0 80px; }
.gallery-feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: center; max-width: 1100px; margin: 0 auto 56px; padding: 0 40px;
}
.gallery-feature-text { font-family: var(--font-jp); font-size: clamp(0.9rem, 1.6vw, 1.1rem); line-height: 2.2; color: var(--pink); }
.gallery-feature-text p { margin-bottom: 0.3em; }
.gallery-feature-img {
  width: 100%; aspect-ratio: 3/4; border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, #e8c0d8, #d0b8d0, #c8c0e8);
  box-shadow: 0 10px 36px rgba(170,65,132,0.18); position: relative;
}
.gallery-feature-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-grid-section { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.gallery-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-page-item {
  cursor: pointer; overflow: hidden; transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  aspect-ratio: 1; position: relative;
  /* 花びら風のかわいい形 */
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  box-shadow:
    0 8px 28px rgba(170,65,132,0.2),
    0 0 0 4px rgba(255,255,255,0.8),
    0 0 0 7px rgba(230,150,201,0.35);
}
.gallery-page-item:nth-child(even) {
  /* 偶数は少し違う形 */
  border-radius: 45% 55% 40% 60% / 60% 40% 55% 45%;
}
.gallery-page-item:nth-child(3n) {
  border-radius: 55% 45% 60% 40% / 40% 60% 45% 55%;
}
.gallery-page-item:hover {
  transform: scale(1.07) rotate(-2deg);
  z-index: 2;
  border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  box-shadow:
    0 16px 40px rgba(170,65,132,0.32),
    0 0 0 5px rgba(255,255,255,0.95),
    0 0 0 9px rgba(230,150,201,0.5);
}
.gallery-page-img { width: 100%; height: 100%; position: relative; }
.gallery-page-img::after {
  content: 'check☆';
  position: absolute; inset: 0;
  background: rgba(230,130,195,0.45);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Yomogi', cursive;
  font-size: 1.1rem;
  color: white;
  text-shadow: 0 2px 8px rgba(170,65,132,0.5);
  letter-spacing: 0.05em;
  opacity: 0; transition: var(--transition);
}
.gallery-page-item:hover .gallery-page-img::after { opacity: 1; }
.gallery-page-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-page-item:nth-child(1)  .gallery-page-img { background: linear-gradient(135deg,#e8c0d8,#d0c0e8); }
.gallery-page-item:nth-child(2)  .gallery-page-img { background: linear-gradient(135deg,#c8d0e8,#d0e0c8); }
.gallery-page-item:nth-child(3)  .gallery-page-img { background: linear-gradient(135deg,#f0d0c8,#e8c0d8); }
.gallery-page-item:nth-child(4)  .gallery-page-img { background: linear-gradient(135deg,#d8e0b8,#c8d8a8); }
.gallery-page-item:nth-child(5)  .gallery-page-img { background: linear-gradient(135deg,#c8c0d8,#d8c0e0); }
.gallery-page-item:nth-child(6)  .gallery-page-img { background: linear-gradient(135deg,#b8c8e0,#c0b8e8); }
.gallery-page-item:nth-child(7)  .gallery-page-img { background: linear-gradient(135deg,#e8d0c0,#d8c8b8); }
.gallery-page-item:nth-child(8)  .gallery-page-img { background: linear-gradient(135deg,#f0c8d8,#e0c0d0); }
.gallery-page-item:nth-child(9)  .gallery-page-img { background: linear-gradient(135deg,#d0e0d0,#c0d8c8); }
.gallery-page-item:nth-child(10) .gallery-page-img { background: linear-gradient(135deg,#e0c0e0,#d0b8d8); }
.gallery-page-item:nth-child(11) .gallery-page-img { background: linear-gradient(135deg,#c8e0d8,#b8d8d0); }
.gallery-page-item:nth-child(12) .gallery-page-img { background: linear-gradient(135deg,#e8c8c0,#d8b8b8); }

/* RESPONSIVE gallery */
@media (max-width: 1100px) {
  .global-nav .nav-btn { min-width: 130px; font-size: 1.05rem; height: 50px; }
}
@media (max-width: 768px) {
  .global-nav { display: none; }
  .hamburger  { display: flex; }
  .header-inner { height: 68px; }
  .copy-block { grid-template-columns: 1fr; gap: 24px; }
  .copy-block.reverse { direction: ltr; }
  .copy-img-wrap { max-width: 260px; margin: 0 auto; }
  .media-row { flex-direction: column !important; padding: 20px 16px; gap: 16px; }
  .media-row-thumb { width: 100%; height: 200px; }
  .media-row-label { text-align: center; }
  .media-deco { width: 180px; }
  .event { margin: 0 16px 20px; padding: 20px 24px; }
  .form-card { padding: 24px 18px; }
  .form-input, .form-input--wide, .form-input--mid { width: 100%; }
  .order-banner { margin: 0 16px 40px; }
  .copy-section, .media-section, .gallery-section, .contact-form-section { padding-left: 16px; padding-right: 16px; }
  .gallery-item.size-main { width: 180px; height: 300px; }
  .about-section { padding: 24px 20px; }
  .about-main { padding: 32px 16px 60px; }
  .list-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 0 16px; }
  .list-tabs { padding: 16px 16px 0; }
  .gallery-feature { grid-template-columns: 1fr; padding: 0 16px; }
  .gallery-grid-section { padding: 0 16px; }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero { height: 160px; }
}
@media (max-width: 480px) {
  .poem-tag { font-size: 1rem; }
  .hero-overlay-content { left: 5%; }
  .list-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* GALLERY PAGE HERO */

/* gallery hero bg */
.gallery-hero {
  position: relative;
  background: rgba(255,245,252,0.22);
  overflow: hidden;
  padding-bottom: 100px;
}
.gallery-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg,
    rgba(230,185,225,0.42) 0%,
    rgba(200,185,235,0.28) 50%,
    rgba(240,200,230,0.22) 100%);
  pointer-events: none;
}
.gallery-hero-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 40px;
  position: relative; z-index: 1;
}

/* Gallery big title */
.gallery-big-title {
  font-family: var(--font-en);
  font-weight: 1000;
  font-size: clamp(4rem, 10vw, 9rem);
  color: white;
  text-shadow: 0px 4px 35px rgba(170,65,132,0.7), 2px 2px 0 rgba(200,100,180,0.4);
  line-height: 1;
  padding-top: 50px;
  padding-bottom: 50px;
  display: block;
  text-align: center;
  animation: fadeInUp 0.8s cubic-bezier(0.4,0,0.2,1) both;
}
.gallery-title-cap {
  font-size: 2em;
  display: inline-block;
}

/* feature layout */
.gallery-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 16px;
}
.gallery-feature-text {
  font-family: var(--font-jp);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  line-height: 2.4;
  color: #ffffff;
  text-shadow:
    0 1px 6px rgba(170,65,132,0.6),
    0 0 20px rgba(255,200,230,0.5);
  padding-top: 16px;
}
.gallery-feature-text p { margin-bottom: 0.3em; }

/* feature image deco */
.gallery-feature-img {
  width: 100%;
  aspect-ratio: 653 / 908;
  border-radius: 28px;
  overflow: visible;
  background: linear-gradient(135deg, #e8c0d8, #d0b8d0, #c8c0e8);
  position: relative;
  /* removed */
  box-shadow:
    0 0 0 3px rgba(255,255,255,0.9),
    0 0 0 9px rgba(230,150,201,0.6),
    0 0 0 13px rgba(200,180,240,0.28),
    0 0 44px 14px rgba(200,150,230,0.45),
    0 20px 64px rgba(170,65,132,0.32);
}
/* sparkle deco */
.gallery-feature-img::before {
  content: '?';
  position: absolute;
  top: -20px; right: -12px;
  font-size: 2.2rem;
  color: rgba(255,200,230,0.92);
  text-shadow: 0 0 14px rgba(255,150,200,0.85);
  z-index: 10;
  animation: sparkle 2.5s ease-in-out infinite;
  pointer-events: none;
}
.gallery-feature-img::after {
  content: '?';
  position: absolute;
  bottom: 28px; left: -18px;
  font-size: 1.4rem;
  color: rgba(200,180,255,0.88);
  text-shadow: 0 0 12px rgba(180,140,255,0.75);
  z-index: 10;
  animation: sparkle 2.5s ease-in-out infinite 1.2s;
  pointer-events: none;
}
@keyframes sparkle {
  0%, 100% { opacity: 0.7; transform: scale(1) rotate(0deg); }
  50%       { opacity: 1;   transform: scale(1.25) rotate(20deg); }
}

/* image inner */
.gallery-feature-img-inner {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}
.gallery-feature-img-inner img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  /* removed */
  mask-image: linear-gradient(to right,
    black 0%, black 55%,
    rgba(0,0,0,0.55) 76%,
    rgba(0,0,0,0.1) 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(to right,
    black 0%, black 55%,
    rgba(0,0,0,0.55) 76%,
    rgba(0,0,0,0.1) 92%,
    transparent 100%
  );
}
/* light overlay */
.gallery-feature-img-inner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 45% 35% at 20% 15%, rgba(255,255,255,0.42) 0%, transparent 65%),
    radial-gradient(ellipse 30% 20% at 80% 8%,  rgba(255,220,240,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 20% 15% at 60% 30%, rgba(255,240,255,0.2) 0%, transparent 50%);
  z-index: 2; pointer-events: none; border-radius: 28px;
}
/* sparkle stars */
.gallery-feature-img-inner::after {
  content: '? ? ?';
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 0 8px rgba(230,150,201,0.9), 0 0 16px rgba(255,180,220,0.6);
  z-index: 3;
  letter-spacing: 6px;
  animation: sparkle 2.5s ease-in-out infinite;
}

  50%       { opacity: 1;   transform: scale(1.15); }
}

/* GALLERY GRID */
.gallery-grid-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 40px 80px;
}
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-page-item {
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  aspect-ratio: 417 / 396;
  position: relative;
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  box-shadow:
    0 8px 28px rgba(170,65,132,0.2),
    0 0 0 4px rgba(255,255,255,0.8),
    0 0 0 7px rgba(230,150,201,0.35);
}
.gallery-page-item:nth-child(even) {
  border-radius: 45% 55% 40% 60% / 60% 40% 55% 45%;
}
.gallery-page-item:nth-child(3n) {
  border-radius: 55% 45% 60% 40% / 40% 60% 45% 55%;
}
.gallery-page-item:hover { transform: scale(1.05) rotate(1deg); z-index: 2; box-shadow: 0 12px 36px rgba(170,65,132,0.28); border-radius: 48% 52% 46% 54% / 54% 58% 42% 46%; }
.gallery-page-item:hover .gallery-page-img::after { opacity: 1; }

.gallery-page-img {
  width: 100%; height: 100%; position: relative;
}
.gallery-page-img::after {
  content: 'check☆';
  position: absolute; inset: 0;
  background: rgba(230,130,195,0.45);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Yomogi', cursive;
  font-size: 1.1rem;
  color: white;
  text-shadow: 0 2px 8px rgba(170,65,132,0.5);
  letter-spacing: 0.05em;
  opacity: 0; transition: var(--transition);
}
.gallery-page-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
/* placeholder bg */
.gallery-page-item:nth-child(1)  .gallery-page-img { background: linear-gradient(135deg,#e8c0d8,#d0c0e8); }
.gallery-page-item:nth-child(2)  .gallery-page-img { background: linear-gradient(135deg,#c8d8e8,#d0e0c8); }
.gallery-page-item:nth-child(3)  .gallery-page-img { background: linear-gradient(135deg,#f0d0c8,#e8c0d8); }
.gallery-page-item:nth-child(4)  .gallery-page-img { background: linear-gradient(135deg,#d8e0b8,#c8d8a8); }
.gallery-page-item:nth-child(5)  .gallery-page-img { background: linear-gradient(135deg,#c8c0d8,#d8c0e0); }
.gallery-page-item:nth-child(6)  .gallery-page-img { background: linear-gradient(135deg,#b8c8e0,#c0b8e8); }
.gallery-page-item:nth-child(7)  .gallery-page-img { background: linear-gradient(135deg,#e8d0c0,#d8c8b8); }
.gallery-page-item:nth-child(8)  .gallery-page-img { background: linear-gradient(135deg,#f0c8d8,#e0c0d0); }
.gallery-page-item:nth-child(9)  .gallery-page-img { background: linear-gradient(135deg,#d0e0d0,#c0d8c8); }
.gallery-page-item:nth-child(10) .gallery-page-img { background: linear-gradient(135deg,#e0c0e0,#d0b8d8); }
.gallery-page-item:nth-child(11) .gallery-page-img { background: linear-gradient(135deg,#c8e0d8,#b8d8d0); }
.gallery-page-item:nth-child(12) .gallery-page-img { background: linear-gradient(135deg,#e8c8c0,#d8b8b8); }

/* RESPONSIVE gallery */
@media (max-width: 768px) {
  .gallery-feature { grid-template-columns: 1fr; gap: 24px; }
  .gallery-hero-inner { padding: 0 16px; }
  .gallery-grid-section { padding: 24px 16px 60px; }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-big-title { font-size: clamp(4rem, 20vw, 8rem); }
}
@media (max-width: 480px) {
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
}

/* COPY DOUBLE IMAGE */
.copy-img-wrap--double {
  position: relative;
}
.copy-double-imgs {
  position: relative;
  width: 100%;
  /* full height */
  aspect-ratio: 1;
}

/* back image */
.copy-double-img--back {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(170,65,132,0.18);
  z-index: 1;
}
.copy-double-img--back img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* front image */
.copy-double-img--front {
  position: absolute;
  right: 0;
  top: 0;
  width: 58%;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(170,65,132,0.22);
  z-index: 2;
  /* slight rotate */
  transform: rotate(1.5deg);
}
.copy-double-img--front img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* responsive */
@media (max-width: 768px) {
  .copy-double-imgs { aspect-ratio: 4/3; }
  .copy-double-img--back { width: 68%; }
  .copy-double-img--front { width: 55%; }
}

/* GALLERY FEATURE */

/* white poem text */
.gallery-feature-text {
  font-family: var(--font-jp);
  font-size: clamp(0.95rem, 1.7vw, 1.25rem);
  line-height: 2.4;
  color: white;
  text-shadow:
    0 1px 8px rgba(170,65,132,0.5),
    0 0 20px rgba(200,150,220,0.4);
}
.gallery-feature-text p { margin-bottom: 0.1em; }

/* image frame */
.gallery-feature-img-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 653 / 908;
}

/* outer glow */
.gallery-feature-img-frame::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 24px;
  background: linear-gradient(135deg,
    rgba(230,180,240,0.6),
    rgba(180,200,255,0.5),
    rgba(255,180,220,0.6)
  );
  filter: blur(14px);
  z-index: 0;
}

/* sparkle border */
.gallery-feature-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 2.5px solid rgba(255,255,255,0.75);
  box-shadow:
    0 0 20px rgba(220,170,255,0.55),
    0 0 48px rgba(180,200,255,0.35),
    inset 0 0 20px rgba(255,220,240,0.2);
  z-index: 3;
  pointer-events: none;
}

/* photo inner */
.gallery-feature-img-inner {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(135deg, #e8c0d8, #d0b8d0, #c8c0e8);
}
.gallery-feature-img-inner img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* bottom blur */
.gallery-feature-img-inner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 38%;
  background: linear-gradient(to top,
    rgba(210,180,240,0.5) 0%,
    rgba(210,180,240,0) 100%
  );
  pointer-events: none;
}

/* sparkle icons */
.gallery-sparkle {
  position: absolute;
  font-size: 1.2rem;
  color: white;
  text-shadow: 0 0 8px rgba(255,200,255,0.9), 0 0 18px rgba(200,180,255,0.7);
  z-index: 4;
  animation: sparklePulse 2.5s ease-in-out infinite;
  pointer-events: none;
}
.gallery-sparkle--1 { top: -14px; left: 18%;  animation-delay: 0s;    font-size: 1.4rem; }
.gallery-sparkle--2 { top: 20%;  right: -14px; animation-delay: 0.5s;  font-size: 1rem; }
.gallery-sparkle--3 { bottom: 12%; left: -16px; animation-delay: 1s;   font-size: 1.3rem; }
.gallery-sparkle--4 { top: 8%;   left: -10px;  animation-delay: 1.5s;  font-size: 0.85rem; }
.gallery-sparkle--5 { bottom: -12px; right: 22%; animation-delay: 0.8s; font-size: 1.1rem; }

@keyframes sparklePulse {
  0%, 100% { opacity: 0.4; transform: scale(0.85); }
  50%       { opacity: 1;   transform: scale(1.2); }
}

/* gallery hero overlay */
.gallery-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg,
    rgba(200,160,230,0.18) 0%,
    rgba(180,155,220,0.12) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  
  background: var(--bg-radial-white);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(230,150,201,0.18);
}

#orderFields {
  margin-top: 20px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 240, 250, 0.6);
  animation: fadeInUp 0.5s ease;
}

/* ============================================================
   RESPONSIVE - FULL MOBILE SUPPORT
   ============================================================ */

/* --- Tablet (max 768px) --- */
@media (max-width: 768px) {

  /* Header */
  .header-inner { padding: 0 16px; }

  /* Hero */
  .slider-outer { height: 55vw; min-height: 260px; max-height: 480px; }
  .hero-overlay-content { left: 5%; top: 52%; }
  .title-haruri { font-size: clamp(2rem, 7vw, 4rem); padding: 0 10px 4px; }
  .poem-tag { font-size: clamp(0.75rem, 3vw, 1.1rem); padding: 4px 14px 6px 12px; }
  .slider-btn { width: 36px; height: 36px; font-size: 0.9rem; }

  /* Copy section */
  .copy-section { padding: 40px 16px; }
  .copy-grid { gap: 48px; }
  .copy-poem-bg { padding: 20px 22px; }
  .copy-text { font-size: clamp(0.9rem, 3.5vw, 1.1rem); }
  .copy-double-imgs { aspect-ratio: 4/3; }
  .copy-double-img--back { width: 68%; }
  .copy-double-img--front { width: 55%; }

  /* Media section */
  .media-section { padding: 0 0 40px; }

  /* Event */
  .event { margin: 16px; }
  .event-list li { font-size: 0.9rem; gap: 16px; }
  .date { width: 100px; }

  /* Gallery scroll */
  .gallery-section { padding: 40px 0 60px; }
  .gallery-item.size-main { width: 160px; height: 270px; }

  /* Footer */
  .site-footer { padding: 32px 16px 24px; }
  .footer-brand { font-size: clamp(1.4rem, 5vw, 2rem); }
  .footer-nav { gap: 12px; }
  .footer-nav a { font-size: 0.8rem; }

  /* Gallery page */
  .gallery-hero-inner { padding: 0 16px; }
  .gallery-big-title { font-size: clamp(3rem, 14vw, 7rem); }
  .gallery-feature { grid-template-columns: 1fr; gap: 24px; margin-top: 8px; }
  .gallery-grid-section { padding: 24px 16px 60px; }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }

  /* About page */
  .about-main { padding: 24px 16px 60px; }
  .about-section { padding: 24px 18px; margin-bottom: 28px; }
  .about-heading { font-size: 1.1rem; }
  .about-sns { gap: 12px; }
  .about-sns-btn { width: 60px; height: 60px; border-radius: 14px; }
  .about-sns-btn img { width: 60px; height: 60px; }

  /* List page */
  .list-main { padding: 0 0 60px; }
  .list-tabs { flex-wrap: wrap; padding: 16px 16px 0; gap: 4px; }
  .list-tab { font-size: 0.82rem; padding: 7px 14px; }
  .list-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 0 16px; margin-top: 24px; }

  /* Contact page */
  .contact-form-section { padding: 32px 16px 60px; }
  .form-card { padding: 24px 16px; }
  .form-input, .form-input--wide, .form-input--mid, .form-textarea { width: 100%; }
  .form-buttons { flex-direction: column; gap: 10px; }
  .btn-clear, .btn-send { width: 100%; }

  /* Page hero */
  .page-hero { height: 140px; }
  .page-title { font-size: clamp(2.5rem, 9vw, 4.5rem); }
}

/* --- Smartphone (max 480px) --- */
@media (max-width: 480px) {
  /* Header */
  .header-inner { height: 60px; padding: 0 12px; }
  .logo-img { height: 44px; }

  /* Hero */
  .slider-outer { height: 60vw; min-height: 220px; }
  .hero-overlay-content { left: 4%; }
  .title-haruri { font-size: clamp(1.8rem, 8vw, 3rem); }
  .poem-tag { font-size: 0.75rem; }
  .slider-btn { width: 30px; height: 30px; font-size: 0.75rem; }
  .slider-prev { left: 6px; }
  .slider-next { right: 6px; }

  /* Copy */
  .copy-section { padding: 32px 12px; }
  .copy-poem-bg { padding: 16px 16px; }

  /* Gallery scroll */
  .gallery-item.size-main { width: 140px; height: 230px; }
  .gallery-track { gap: 10px; }

  /* Gallery page grid */
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .gallery-big-title { font-size: clamp(2.5rem, 16vw, 5rem); padding-top: 12px; }

  /* List */
  .list-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 12px; }
  .list-name, .list-price { font-size: 0.78rem; }

  /* Footer */
  .footer-nav { gap: 8px; }
  .footer-nav a { font-size: 0.72rem; }
  .footer-sns { gap: 8px; }
  .sns-btn { width: 38px; height: 38px; }
  .sns-btn img { width: 38px; height: 38px; }

  /* Event */
  .event { padding: 16px 14px; }
  .event-list li { flex-direction: column; gap: 2px; padding: 10px 0; }
  .date { width: auto; font-size: 0.85rem; }

  /* Modal */
  .modal-box { padding: 24px 16px; }

  /* About */
  .about-sns-btn { width: 52px; height: 52px; border-radius: 12px; }
  .about-sns-btn img { width: 52px; height: 52px; }
  .viewall-link { font-size: 1.2rem; padding: 10px 28px; }
}

/* ============================================================
   LOADING SCREEN - Oshi-katsu ver.
   ============================================================ */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%,
      #fce4fb 0%, #f0caf5 35%, #e2b8f0 65%, #d4a4ec 100%);
  opacity: 1;
  pointer-events: all;
  touch-action: none;
  overflow: hidden;
  transition: opacity 0.7s ease;
}
#loading-screen.hide {
  opacity: 0;
  pointer-events: none;
  touch-action: none;
}

#ldCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* 中央コンテンツ */
.ld-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 230px;
}

/* 外側リング */
.ld-ring {
  position: absolute;
  border-radius: 50%;
}
.ld-ring--outer {
  width: 220px; height: 220px;
  border: 2px dashed rgba(200,120,220,0.5);
  animation: ldSpin 6s linear infinite;
}
.ld-ring--inner {
  width: 180px; height: 180px;
  border: 2px solid transparent;
  border-top: 2.5px solid rgba(230,140,210,0.7);
  border-right: 2.5px solid rgba(200,160,240,0.5);
  animation: ldSpin 2.2s ease-in-out infinite reverse;
  box-shadow: 0 0 20px rgba(210,130,240,0.3);
}
@keyframes ldSpin { to { transform: rotate(360deg); } }

/* 中央 */
.ld-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* ハートアイコン */
.ld-heart {
  font-size: 2.8rem;
  line-height: 1;
  color: #CC4488;
  text-shadow:
    0 0 16px rgba(220,80,160,0.7),
    0 0 36px rgba(200,100,200,0.45);
  animation: ldHeartBeat 1.2s ease-in-out infinite;
}
@keyframes ldHeartBeat {
  0%,100% { transform: scale(1);    }
  15%      { transform: scale(1.22); }
  30%      { transform: scale(1.05); }
  45%      { transform: scale(1.18); }
}

/* ブランド名 */
.ld-brand {
  font-family: 'Fascinate Inline', cursive;
  font-size: clamp(1.9rem, 5.5vw, 3rem);
  color: #AA4184;
  letter-spacing: 0.06em;
  text-shadow:
    0 0 22px rgba(220,100,230,0.65),
    0 0 45px rgba(200,80,210,0.3),
    2px 2px 0 rgba(255,255,255,0.55);
  animation: ldBrandIn 0.85s 0.2s cubic-bezier(0.4,0,0.2,1) both;
}
@keyframes ldBrandIn {
  from { opacity:0; transform: scale(0.75) translateY(14px); }
  to   { opacity:1; transform: scale(1)    translateY(0); }
}

/* キャッチコピー */
.ld-catch {
  font-family: 'Yomogi', cursive;
  font-size: clamp(0.78rem, 2.2vw, 0.95rem);
  color: rgba(160, 65, 150, 0.85);
  letter-spacing: 0.12em;
  text-shadow: 0 0 10px rgba(220,120,230,0.4);
  animation: ldFadeUp 0.8s 0.45s both;
}
@keyframes ldFadeUp {
  from { opacity:0; transform: translateY(10px); }
  to   { opacity:1; transform: translateY(0); }
}

/* プログレスバー */
.ld-bar-wrap {
  width: 200px; height: 5px;
  background: rgba(200,130,220,0.18);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(210,120,240,0.2);
  animation: ldFadeUp 0.8s 0.5s both;
}
.ld-bar {
  height: 100%; width: 0%;
  border-radius: 10px;
  background: linear-gradient(90deg,
    #e696c9, #cc4488, #aa4184, #c880c0, #e696c9);
  background-size: 300% 100%;
  animation:
    ldBarFill 2.4s 0.5s cubic-bezier(0.4,0,0.2,1) forwards,
    ldShimmer 1.4s linear infinite;
}
@keyframes ldBarFill    { to { width: 100%; } }
@keyframes ldShimmer    { 0% { background-position:100% 0; } 100% { background-position:-100% 0; } }

/* 下のテキスト */
.ld-bottom-text {
  font-family: 'Yomogi', cursive;
  font-size: clamp(0.72rem, 2vw, 0.88rem);
  color: rgba(160, 65, 150, 0.65);
  letter-spacing: 0.18em;
  animation: ldBottomBlink 2s ease-in-out infinite, ldFadeUp 0.8s 0.7s both;
}
@keyframes ldBottomBlink {
  0%,100% { opacity: 0.5; }
  50%      { opacity: 1; }
}


/* ============================================================
   INDEX PAGE - Additional Styles (index.html固有)
   ============================================================ */

/* Rainbow Ticker */
.rainbow-ticker {
  overflow: hidden; white-space: nowrap;
  background: linear-gradient(90deg,#ff9de2,#E0C8A5,#a8edea,#c3cfe2,#f093fb,#ff9de2);
  background-size: 200% 100%;
  animation: gradientBG 4s ease infinite;
  padding: 10px 0; font-family: var(--font-jp); font-size: 1rem;
  color: white; letter-spacing: 0.05em;
}
.ticker-inner { display: inline-block; animation: marqueeLeft 20s linear infinite; }
.ticker-inner span { margin: 0 24px; }

/* Hero emoji deco */
.hero-deco-emojis { position: absolute; inset: 0; pointer-events: none; z-index: 8; }
.hero-emoji {
  position: absolute; font-size: 1.8rem;
  animation: floatY 4s ease-in-out infinite; opacity: 0.85;
}
.hero-emoji:nth-child(1) { left:5%;  top:15%; animation-duration:3.8s; font-size:1.4rem; }
.hero-emoji:nth-child(2) { right:8%; top:20%; animation-duration:4.5s; animation-delay:-1s; }
.hero-emoji:nth-child(3) { left:3%;  bottom:25%; animation-duration:5s; animation-delay:-2s; font-size:1.2rem; }
.hero-emoji:nth-child(4) { right:5%; bottom:30%; animation-duration:3.5s; animation-delay:-0.5s; font-size:1.3rem; }
.hero-emoji:nth-child(5) { left:12%; top:60%; animation-duration:4.2s; animation-delay:-3s; font-size:1rem; }
.hero-emoji:nth-child(6) { right:15%; top:65%; animation-duration:5.2s; animation-delay:-1.5s; font-size:1rem; }

/* Hero active slide zoom */
.hero-slide-card.active .slide-img-block img { transform: scale(1.06); transition: transform 8s ease; }

/* Category Bubbles */
.category-section {
  padding: 60px 40px 40px;
  background: linear-gradient(135deg,rgba(255,240,250,0.9),rgba(240,232,255,0.9),rgba(232,248,255,0.9));
  background-size: 300% 300%;
  animation: gradientBG 8s ease infinite;
}
.category-title-wrap { text-align: center; margin-bottom: 36px; }
.category-title {
  font-family: var(--font-jp); font-size: clamp(1.6rem,4vw,2.4rem);
  background: linear-gradient(135deg,#ff6eb4,#a855f7,#06b6d4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: inline-block;
}
.category-bubbles { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; max-width: 900px; margin: 0 auto; }
.cat-bubble {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 999px; font-family: var(--font-jp);
  font-size: 1.1rem; cursor: pointer; transition: all 0.3s ease;
  text-decoration: none; font-weight: 700;
}
.cat-bubble:hover { transform: translateY(-5px) scale(1.06); }
.cat-bubble:nth-child(1) { background:linear-gradient(135deg,#ff9de2,#ffb347); color:white; box-shadow:0 6px 20px rgba(255,157,226,0.4); }
.cat-bubble:nth-child(2) { background:linear-gradient(135deg,#a8edea,#fed6e3); color:#444; box-shadow:0 6px 20px rgba(168,237,234,0.4); }
.cat-bubble:nth-child(3) { background:linear-gradient(135deg,#a18cd1,#fbc2eb); color:white; box-shadow:0 6px 20px rgba(161,140,209,0.4); }
.cat-bubble:nth-child(4) { background:linear-gradient(135deg,#ff9de2,#ffb347); color:white; box-shadow:0 6px 20px rgba(240,147,251,0.4); }
.cat-bubble:nth-child(5) { background:linear-gradient(135deg,#a18cd1,#fbc2eb); color:white; box-shadow:0 6px 20px rgba(79,172,254,0.4); }
.cat-bubble:nth-child(6) { background:linear-gradient(135deg,#a8edea,#fed6e3); color:#444; box-shadow:0 6px 20px rgba(67,233,123,0.4); }

/* Event (index版) */
.event {
  padding: 60px 40px;
  background: linear-gradient(135deg,rgba(255,240,250,0.9),rgba(248,240,255,0.9));
  position: relative;
}
.event-title {
  font-family: var(--font-jp); font-size: clamp(1.6rem,4vw,2.4rem);
  text-align: center; margin-bottom: 36px;
  background: linear-gradient(135deg,#ff6eb4,#a855f7);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.event-list { list-style: none; max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.event-list li {
  display: flex; align-items: center; gap: 20px;
  padding: 18px 28px; border-radius: 16px;
  background: rgba(255,255,255,0.9);
  border-left: 5px solid #a8edea;
  box-shadow: 0 4px 16px rgba(170,65,132,0.1);
  transition: all 0.3s ease;
}
.event-list li:hover { transform: translateX(6px); }
.event-list li .date { font-family: var(--font-jp); font-size: 1rem; color: #888; min-width: 130px; }
.event-list li .text { font-family: var(--font-jp); font-size: 1.1rem; color: var(--pink); font-weight: 700; flex: 1; }
.event-badge { padding: 4px 12px; border-radius: 999px; font-size: 0.75rem; font-family: var(--font-jp); font-weight: 700; background: linear-gradient(135deg,#a8edea,#fed6e3); color: #555; }

/* Copy block index variants */
.copy-block:nth-child(1) .copy-img { box-shadow: 0 0 0 8px #ffb6d9, 0 12px 40px rgba(255,110,180,0.25); }
.copy-block:nth-child(2) .copy-img { box-shadow: 0 0 0 8px #c4b5fd, 0 12px 40px rgba(168,85,247,0.25); }
.copy-block:nth-child(3) .copy-img { box-shadow: 0 0 0 8px #6ee7b7, 0 12px 40px rgba(16,185,129,0.25); }
.copy-block:nth-child(1) .copy-poem-bg { border: 2px solid #ffb6d9; background: linear-gradient(135deg,rgba(255,255,255,0.95),rgba(255,230,242,0.85)); }
.copy-block:nth-child(2) .copy-poem-bg { border: 2px solid #c4b5fd; background: linear-gradient(135deg,rgba(255,255,255,0.95),rgba(240,232,255,0.85)); }
.copy-block:nth-child(3) .copy-poem-bg { border: 2px solid #6ee7b7; background: linear-gradient(135deg,rgba(255,255,255,0.95),rgba(230,255,246,0.85)); }
.copy-poem-bg::before { content:'✦'; position:absolute; top:12px; right:16px; font-size:1.5rem; opacity:0.3; animation: sparkle 2s ease infinite; }
.copy-img:hover { transform: scale(1.04) rotate(2deg); }
.copy-img-wrap--double { position: relative; aspect-ratio: 1; }
.copy-double-imgs { position: relative; width: 100%; height: 100%; }
.copy-double-img { position: absolute; width: 70%; aspect-ratio: 1; border-radius: 50%; overflow: hidden; }
.copy-double-img img { width: 100%; height: 100%; object-fit: cover; }
.copy-double-img--back  { top:0; right:0; box-shadow:0 0 0 8px #6ee7b7, 0 8px 28px rgba(16,185,129,0.2); animation:floatY 5s ease-in-out infinite; }
.copy-double-img--front { bottom:0; left:0; box-shadow:0 0 0 8px #fcd34d, 0 8px 28px rgba(251,191,36,0.25); animation:floatYR 4s ease-in-out infinite; z-index:2; }

/* char animation */
.char-anim { display: inline-block; opacity: 0; animation: charPop 0.5s ease forwards; }

/* Nav色 (index版上書き) */
.nav-btn:nth-child(1):hover, .nav-btn:nth-child(1).active { background:linear-gradient(135deg,#ff9de2,#ff6eb4); color:white; border-color:transparent; }
.nav-btn:nth-child(2):hover, .nav-btn:nth-child(2).active { background:linear-gradient(135deg,#f093fb,#a855f7); color:white; border-color:transparent; }
.nav-btn:nth-child(3):hover, .nav-btn:nth-child(3).active { background:linear-gradient(135deg,#a8edea,#06b6d4); color:white; border-color:transparent; }
.nav-btn:nth-child(4):hover, .nav-btn:nth-child(4).active { background:linear-gradient(135deg,#ffecd2,#fcb69f); color:#a0522d; border-color:transparent; }
.nav-btn:nth-child(5):hover, .nav-btn:nth-child(5).active { background:linear-gradient(135deg,#a1c4fd,#c2e9fb); color:#1a6b8a; border-color:transparent; }

/* Cursor sparkle */
.cursor-sparkle { position:fixed; pointer-events:none; z-index:9999; font-size:1rem; animation:sparkle 0.7s ease forwards; }

/* Gallery section (index版) */
.section-title {
  font-family: var(--font-jp); font-size: clamp(1.6rem,3.5vw,2.8rem);
  background: linear-gradient(135deg,#ff6eb4,#a855f7,#06b6d4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: inline-block;
}

/* Media section (index版) */
.media-deco { text-align: center; }
.media-deco-img { max-height: 300px; mix-blend-mode: multiply; animation: floatY 4s ease-in-out infinite; }

/* Responsive (index固有) */
@media (max-width: 768px) {
  .copy-block { grid-template-columns: 1fr; gap: 32px; }
  .copy-block.reverse { direction: ltr; }
  .copy-section { padding: 48px 20px; }
  .category-section { padding: 40px 20px; }
  .event { padding: 40px 20px; }
  .media-section { padding: 40px 20px; }
  .media-row { flex-direction: column; }
  .media-row--reverse { flex-direction: column; }
  .media-row-thumb { width: 100%; height: 160px; }
  .global-nav { display: none; }
  .hamburger { display: flex; }
}