

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Zen+Maru+Gothic:wght@300;400;500;700;900&family=Caveat:wght@400;700&display=swap');

:root {
  
  --pink:       #E8849A; 
  --pink-mid:   #DFA0AE;
  --pink-pale:  #FBF0F2;
  --pink-bg:    #F5C8CC; 
  --sky:        #7EC8E0; 
  --sky-pale:   #E8F6FB;
  --yellow:     #c08020;
  --green:      #1b8565;
  
  
  --cream:      #F7F7F7; 
  --cream-dark: #F3ECE3;
  --cream-gra:linear-gradient(90deg, #f4f4f4, #f9f9f9);
  --white:      #FFFFFF;
  --dark:       #2D2525; 
  --mid:        #605255;
  --light:      #A89B9E;
  --border-c:   rgba(168, 155, 158, 0.15);

  
  --glass-white: rgba(255, 255, 255, 0.7);
  --glass-pink: rgba(232, 132, 154, 0.8);
  --glass-black: rgba(0,0,0,0.2);
  --glass-border: rgba(255, 255, 255, 0.4);

  
  --shadow-flat:  0 2px 8px rgba(45, 37, 37, 0.04);
  --shadow-paper: 0 8px 24px rgba(45, 37, 37, 0.08);
  --shadow-hover: 0 16px 48px rgba(45, 37, 37, 0.15);
  --shadow-glass: 0 10px 32px rgba(45, 37, 37, 0.06);

  
  --radius:     16px;
  --radius-sm:  8px;
  --radius-lg:  24px;
  --radius-full:999px;
  --header-h:   76px;
  --t:          0.4s ease;

  
  --font-disp: 'Quicksand', sans-serif;
  --font-en:   'Quicksand', sans-serif;
  --font-ja:   'Zen Maru Gothic', sans-serif;
  --font-hand: 'Caveat', cursive;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ja);
  background: var(--cream-gra);
  color: var(--dark);
  line-height: 1.9;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

#loading {
  position:fixed;
  inset:0;
  z-index:9999;
  background:var(--pink-bg);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:0;
  transition:opacity 0.6s ease, visibility 0.6s ease;
}
#loading.hide {
  opacity:0;
  visibility:hidden;
  pointer-events:none; }

.loading-bubbles {
  position:absolute;
  inset:0;
  pointer-events:none;
  overflow:hidden;
}
.loading-bubble {
  position:absolute;
  border-radius:50%;
  background:rgba(255,255,255,0.22);
  animation:bubbleFloat ease-in-out infinite alternate;
}
@keyframes bubbleFloat {
  from { transform:translateY(0) scale(1); }
  to   { transform:translateY(-18px) scale(1.05); }
}

.loading-inner {
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:20px;
  padding:0 20px;
}

.loading-logo-box {
  background:rgba(255,255,255,0.7);
  backdrop-filter:blur(10px);
  border-radius:var(--radius-full);
  padding:10px 28px;
  box-shadow:var(--shadow);
}
#loadingLogoImg {
  height:30px;
  object-fit:contain;
  display:block;
}
.loading-logo-fallback {
  font-family:var(--font-hand);
  font-size:22px; color:var(--dark);
  display:none;
}

.loading-frame-outer {
  position:relative;
  padding-top:14px;
}
.loading-frame-outer::before {
  content:'';
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%) rotate(-2deg);
  width:45%; height:16px;
  background:rgba(126,200,224,0.45);
  border-radius:2px;
  z-index:3;
  pointer-events:none;
}

#loadingFrameWrap {
  width:min(550px,72vw);
  aspect-ratio:3/2;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-hover);
  background:var(--pink-pale);
  position:relative;
}
.lf-frame {
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center top;
  opacity:0;
  transition:opacity 0.15s ease;
}
.lf-frame.active {
  opacity:1;
}

.loading-bar-area {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:9px;
  width:min(280px,72vw);
}
.loading-bar-track {
  width:100%;
  height:8px;
  background:rgba(255,255,255,0.45);
  border-radius:99px;
  overflow:hidden;
}
#loadingBarFill {
  height:100%;
  width:0%;
  background:linear-gradient(90deg, var(--sky), var(--white), var(--sky));
  background-size:200% 100%;
  border-radius:99px;
  transition:width 0.4s ease;
  animation:barShimmer 2s linear infinite;
}
@keyframes barShimmer { 0%{background-position:100% 0} 100%{background-position:0 0}
}

.loading-label {
  font-family:var(--font-hand);
  font-size:17px;
  font-weight:600;
  color:rgba(255,255,255,0.9);
  letter-spacing:1px;
}
.ld-dot {
  display:inline-block;
  animation:dotBob 1.2s ease infinite;
  color:rgba(255,255,255,0.7);
}
.ld-dot:nth-child(2){
  animation-delay:0.2s;
}
.ld-dot:nth-child(3){
  animation-delay:0.4s;
}
@keyframes dotBob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)}
}

#bgCanvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.4s, box-shadow 0.4s;
}
#header.scrolled {
  background: rgba(250, 246, 240, 0.75);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  border-bottom: 1px solid rgba(45, 37, 37, 0.05);
  box-shadow: 0 8px 32px rgba(45, 37, 37, 0.03);
}
.header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}
.header-logo a {
  display: flex;
  align-items: center;
}
.header-logo-img {
  height: 32px;
  object-fit: contain;
}
.header-logo-text {
  font-family: var(--font-hand);
  font-size: 22px;
  font-weight: 700;
  color: var(--pink);
  display:none;
}

.header-nav {
  display: flex;
  gap: 6px;
  align-items: center;
}
.header-nav a {
  position: relative;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 11px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.header-nav a:hover {
  color: var(--pink);
  transform: scale(1.05);
}
.header-nav a.active {
  color: var(--pink);
  font-weight: 900;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  height: 3px;
  background-image: url('../images/rakugaki/rakugaki1.webp');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateX(-50%);
}

.header-nav a:hover::after,.header-nav a.active::after {
  width: 70%;
  opacity: 0.85;
}

.header-sns {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: 12px;
}
.header-sns a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 1px solid var(--glass-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px; 
  color: var(--mid);
  transition: var(--t);
}
.header-sns a:hover {
  background: var(--pink);
  color: white;
  transform: scale(1.12);
  border-color: var(--pink);
}
.header-sns a:hover .sns-note-icon-img {
  filter: brightness(0) invert(1);
}
.sns-fixed a:hover .sns-note-icon-img {
  filter: brightness(0) invert(1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--pink-mid);
  border-radius: 99px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.active span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2){ 
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(250, 246, 240, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  padding: 40px 24px;
}
.mobile-nav.active {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 340px;
  margin-top: 15px;
}
.mobile-nav-inner a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-ja);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  padding: 12px 20px;
  border-bottom: 1px solid rgba(45,37,37,0.08);
  background: none;
  border-radius: 0;
  transition: var(--t);
}
.mobile-nav-inner a .nav-label-ja {
  font-size: 14px;
  font-weight: 700;
}
.mobile-nav-inner a .nav-label-en {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  color: var(--light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.mobile-nav-inner a::after {
  content: '→';
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 400;
  color: var(--light);
  transition: var(--t);
  margin-left: 8px;
}
.mobile-nav-inner a:hover {
  color: var(--pink);
  padding-left: 8px;
}
.mobile-nav-inner a:hover .nav-label-en {
  color: var(--pink-mid);
}
.mobile-nav-inner a:hover::after {
  color: var(--pink);
  transform: translateX(4px);
}
.mobile-nav-inner a.active {
  color: var(--pink);
}
.mobile-nav-inner a.active .nav-label-en {
  color: var(--pink-mid);
}

.mobile-nav-sns {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  padding-top: 24px;
  width: 100%;
  max-width: 280px;
  justify-content: center;
}
.mobile-nav-sns a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: var(--shadow-flat);
  border: 1px solid rgba(45,37,37,0.06);
}
.mobile-nav-sns a:hover .sns-note-icon-img {
  filter: brightness(0) invert(1);
}

.sns-note-icon-img {
  width: 19px;
  height: 19px;
  object-fit: contain;
  vertical-align: middle;
  display: inline-block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.header-sns .sns-note-icon-img {
  width: 13px;
  height: 13px;
}
.footer-sns-row .sns-note-icon-img {
  width: 15px;
  height: 15px;
}
.sns-fixed .sns-note-icon-img {
  width: 15px;
  height: 15px;
}

main {
  position: relative;
  z-index: 1;
  padding-top: var(--header-h);
  flex: 1;
}

.section {
  padding: 70px 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.section-wrap { 
  position: relative; 
  overflow: hidden; 
  background: transparent; 
}

.has-paper {
  background: var(--white);
}
.has-paper::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/paper/bg-mesh-2.svg');
  background-size: 240px 240px;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.has-paper > * {
  position: relative;
  z-index: 1; }

.paper-divider-top {
  position: absolute;
  top: -10px;
  left: -5%;
  right: -5%;
  height: 32px;
  background-image: url('../images/paper/paper3.webp');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 5;
  transform: rotate(0.5deg);
}
.paper-divider-bottom {
  position: absolute;
  bottom: -10px;
  left: -5%;
  right: -5%;
  height: 32px;
  background-image: url('../images/paper/paper5.webp');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 5;
  transform: rotate(-0.5deg) scaleY(-1);
}

.sec-head {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.sec-title {
  font-family: var(--font-disp);
  font-size: clamp(44px, 7vw, 76px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--dark);
}
.sec-title.pink  {
  color: var(--pink);
}
.sec-title.sky   {
  color: var(--sky);
}

.sec-title.green {
  color: var(--green, #88D4B8);
}

.sec-title.white {
  color: white;
}

.sec-title-ja {
  font-family: var(--font-ja);
  font-size: 12px;
  font-weight: 700;
  color: var(--light);
  letter-spacing: 3px;
  padding-bottom: 12px;
}

.sec-more-wrapper{
  text-align: right;
}
.sec-more {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  align-self: flex-end;
  border-bottom: 1.5px solid var(--mid);
  transition: var(--t);
}
.sec-more:hover {
  color: var(--pink);
  border-color: var(--pink);
  gap: 12px; }

.glass-card {
  background: var(--glass-white);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-glass);
  transition: var(--t);
  overflow: hidden;
  position: relative;
}
.glass-card:hover {
  transform: translateY(-6px) rotate(0.5deg);
  box-shadow: var(--shadow-hover);
  background: rgba(255,255,255,0.8);
}

.tape-h {
  display: block;
  height: 20px;
  background: rgba(126,200,224,0.4);
  border-radius: 2px;
  transform: rotate(-1.5deg);
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.tape-h.pink {
  background: rgba(232,132,154,0.35);
  transform: rotate(1deg);
}
.tape-h.mint {
  background: rgba(136,212,184,0.35);
  transform: rotate(-0.5deg);
}

.btn-wrapper{
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--t);
}

.btn-pink {
  background: var(--pink);
  color: white;
}

.btn-sky {
  background: var(--sky);
  color: white;
  box-shadow: 0 6px 20px rgba(126,200,224,0.3);
}
.btn-sky:hover {
  box-shadow: 0 10px 28px rgba(126,200,224,0.4);
}
.btn-glass {
  background: var(--glass-white);
  color: var(--dark);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass);
}
.btn-glass:hover {
  background: white;
}
.btn-outline-w { 
  order: 1.5px solid rgba(255,255,255,0.5);
  color: white; background: transparent;
}
.btn-outline-w:hover {
  background: white;
  color: var(--dark);
}
.btn-dark {
  background: var(--dark);
  color: white;
  box-shadow: var(--shadow-flat);
}
.btn-dark:hover {
  background: var(--pink);
  color: white;
}

.badge {
  display: inline-block;
  border-radius: var(--radius-full);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-align: center;
  white-space: nowrap;
}
.badge.live {
  background: rgba(232,132,154,0.12);
  color: var(--pink);
}
.badge.info {
  background: rgba(126,200,224,0.12);
  color: var(--sky);
}
.badge.release {
  background: rgba(240,213,140,0.15);
  color: #B08000;
  padding: 1px 12px;
}
.badge.goods {
  background: rgba(180,140,220,0.12);
  color: #8A30C0;
}
.badge.media {
  background: rgba(45,170,160,0.14);
  color: #128f86;
}
.badge.event {
  background: rgba(47,174,102,0.14);
  color: #1f8a52;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-l {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out
}
.reveal-l.visible {
  opacity: 1;
  transform: none; }

.reveal-r {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out
}
.reveal-r.visible {
  opacity: 1;
  transform: none; }

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1); }

#scrollTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--glass-white);
  color: var(--pink);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: var(--t);
  z-index: 500;
}
#scrollTop.visible {
  opacity: 1;
  pointer-events: auto;
}
#scrollTop:hover {
  background: var(--pink);
  color: white;
  border-color: var(--pink);
}

.page-hero {
  padding: 100px 40px 64px;
  background: transparent; 
  position: relative;
  overflow: hidden;
}
.page-hero-title {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: clamp(48px, 8vw, 80px);
  line-height: 1;
  color: var(--dark);
}
.page-hero-sub {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--light);
  margin-top: 10px;
}

.news-rich-content {
  font-family: var(--font-ja);
  font-size: 15px;
  line-height: 2.0;
  color: var(--dark);
}
.news-rich-content p {
  margin-bottom: 1.5em;
}
.news-rich-content .news-lead {
  font-size: 17px;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 1.8em;
  line-height: 1.8;
}
.news-rich-content a.news-link {
  color: var(--sky);
  font-weight: 700;
  text-decoration: underline;
  transition: var(--t);
}
.news-rich-content a.news-link:hover {
  color: var(--pink);
}
.news-rich-content .news-highlight {
  background: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 32px 0;
  box-shadow: var(--shadow-flat);
}
.news-rich-content .news-highlight h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 12px;
  border-bottom: 2px solid var(--pink-pale);
  padding-bottom: 8px;
}
.news-rich-content .news-highlight ul {
  list-style: none;
  padding-left: 0;
}
.news-rich-content .news-highlight li {
  margin-bottom: 8px;
  font-weight: 600;
}

footer {
  position: relative;
  z-index: 2;
  background: var(--cream-dark);
  border-top: 1px solid rgba(45, 37, 37, 0.08);
  color: var(--mid);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 40px 40px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(45, 37, 37, 0.06);
  margin-bottom: 24px;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-logo-img {
  height: 32px;
  object-fit: contain;
  opacity: 0.9;
  margin-bottom: 8px;
}
.footer-logo-text {
  font-family: var(--font-hand);
  font-size: 24px; color: var(--pink);
  font-weight: 700; display:none;
}
.footer-logo-small {
  font-family: var(--font-en);
  font-size: 9px; letter-spacing: 2.5px;
  opacity: 0.6; text-transform: uppercase;
  color: var(--mid);
}
.footer-nav-group {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}
.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav-col a {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.7;
  color: var(--mid);
  transition: var(--t);
}
.footer-nav-col a:hover {
  opacity: 1;
  color: var(--pink);
  transform: translateX(4px);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-sns-row {
  display: flex;
  gap: 12px;
}
.footer-sns-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: var(--t);
  border: 1px solid rgba(45, 37, 37, 0.08);
  box-shadow: var(--shadow-flat);
}
.footer-sns-row a:hover {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.footer-sns-row a:hover .sns-note-icon-img {
  filter: brightness(0) invert(1);
}
.f-copy {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 1px;
  opacity: 0.6;
  color: var(--mid); }

.sp-only{
  display: none;
}

@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }
  .header-sns {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-nav {
    display: flex;
  }
  .section {
    padding: 60px 24px;
  }
  .page-hero {
    padding: 64px 24px 48px;
  }
  .footer-inner {
    padding: 48px 24px 32px;
  }
  .header-inner {
    padding: 0 24px;
  }
  .pc-only{
    display: none;
  }
  .sp-only{
    display: inline-block;
  }
}
@media (max-width: 600px) {
  .footer-top {
    flex-direction: column;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    text-align: center;
    gap: 24px;
  }
  .footer-nav-group {
    gap: 32px;
  }
}

#photoLightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(30, 16, 22, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lightboxFadeIn 0.25s ease;
}
@keyframes lightboxFadeIn {
  from {
    opacity: 0;
  }
  to   {
    opacity: 1;
  }
}
#photoLightbox img {
  max-width: 90vw;
  max-height: 60vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  user-select: none;
  touch-action: pan-y;
  animation: lightboxImgIn 0.2s ease;
}
@keyframes lightboxImgIn {
  from { transform: scale(0.96);
    opacity: 0.7; }
  to   { transform: scale(1);
    opacity: 1;
  }
}
.lb-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-height: 90vh;
}

.lb-close {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 9px 24px;
  cursor: pointer;
  background: none;
  white-space: nowrap;
  transition: 0.2s;
}
.lb-close:hover {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.6);
}
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  padding: 0;
  line-height: 1;
}
.lb-nav:hover {
  background: rgba(255,255,255,0.25);
}
.lb-prev {
  left: 16px;
}
.lb-next {
  right: 16px;
}
.lb-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: 2px;
  background: rgba(255,255,255,0.08);
  padding: 4px 14px;
  border-radius: 99px;
}
.lb-caption {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-ja);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-align: center;
  white-space: nowrap;
  max-width: 80vw;
  overflow: hidden;
  text-overflow: ellipsis;
}

.filter-btn {
  padding:10px 22px;
  border-radius:var(--radius-full);
  border:1px solid var(--glass-black);
  background:var(--glass-white);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  font-family:var(--font-en);
  font-size:10px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--mid);
  cursor:pointer;
  transition:var(--t);
  box-shadow:var(--shadow-flat);
}
.filter-btn:hover,.filter-btn.active {
  background:var(--pink);
  color:white;
  border-color:var(--pink);
  transform:translateY(-2px);
  box-shadow:0 4px 12px rgba(232,132,154,0.25);
}

.loading-placeholder {
  color:var(--mid);
  padding:40px 0;
}
.disco-cover-fallback {
  background:var(--pink-pale);
  width:100%;
  height:100%;
  aspect-ratio:1;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:52px;
}
.work-thumb-fallback {
  font-size:32px;
}

.video-modal {
  position:fixed;
  inset:0;
  z-index:9000;
  background:rgba(30,16,22,0.88);
  backdrop-filter:blur(18px);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
}
.video-modal-inner {
  width:min(92vw,900px);
  aspect-ratio:16/9;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,0.5);
}
.video-modal-inner iframe {
  width:100%;
  height:100%;
  border:none;
}
.video-modal-close {
  font-family:var(--font-en);
  font-size:10px;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
  color:rgba(255,255,255,0.55);
  border:1.5px solid rgba(255,255,255,0.25);
  border-radius:999px;
  padding:9px 24px;
  cursor:pointer;
  background:none;
}


.listen-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lightboxFadeIn 0.2s ease;
}

.listen-modal {
  background: var(--white);
  border-radius: 20px;
  width: 90%;
  max-width: 480px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 28px 24px 40px;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.18);
}

.listen-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-c);
}
.listen-modal-title {
  font-size: 14px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.4;
}
.listen-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--light);
  font-size: 20px;
  padding: 4px 8px;
  transition: var(--t);
}
.listen-modal-close:hover {
  color: var(--dark);
}

.listen-service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(45,37,37,0.07);
}
.listen-service-row:last-child {
  border-bottom: none;
}

.listen-service-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}
.listen-service-logo i {
  font-size: 22px;
  width: 28px;
  text-align: center;
}

.listen-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1.5px solid rgba(45,37,37,0.15);
  background: rgba(45,37,37,0.04);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--mid);
  text-decoration: none;
  transition: var(--t);
  white-space: nowrap;
}
.listen-service-btn:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.listen-service-btn.disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
}
.listen-service-btn i {
  font-size: 10px;
}

.ls-apple  {
  color: #FC3C44;
}
.ls-spot   {
  color: #1DB954;
}
.ls-line   {
  color: #00B900;
}
.ls-ytm    {
  color: #FF0000;
}
.ls-amz    {
  color: #00A8E0;
}
.ls-awa    {
  color: #000;
  font-size: 24px;
  letter-spacing: -1px;
}
.ls-kkbox  {
  color: #00D9D9;
}
.ls-itunes {
  color: #FC3C44;
}
.ls-reco   {
  color: #E60073;
}
.ls-mora   {
  color: #1B4FA0;
}

.note-icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  font-family: var(--font-en);
  font-size: 0.65em;
  font-weight: 900;
  background: var(--dark);
  color: var(--white);
  border-radius: 3px;
  letter-spacing: -0.5px;
  vertical-align: middle;
}

/* ── ページネーション ── */
.pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 48px 0 24px;
  flex-wrap: wrap;
}

/* 数字ボタン */
.pag-btn.pag-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-c);
  background: none;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  color: var(--light);
  cursor: pointer;
  transition: var(--t);
  display: flex; align-items: center; justify-content: center;
}
.pag-btn.pag-num:hover { border-color: var(--pink); color: var(--pink); }
.pag-btn.pag-num.active {
  background: var(--pink); border-color: var(--pink); color: white;
}

.pag-btn.pag-prev,
.pag-btn.pag-next {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 14px; height: 36px;
  border-radius: 99px;
  border: 1px solid var(--border-c);
  background: none;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--mid);
  cursor: pointer;
  transition: var(--t);
}
.pag-btn.pag-prev:hover,
.pag-btn.pag-next:hover {
  border-color: var(--pink); color: var(--pink);
}

.pag-arrow {
  position: relative;
  display: inline-block;
  width: 10px; height: 14px;
}
.pag-arrow::before,
.pag-arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px; height: 1.5px;
  border-radius: 9999px;
  background-color: currentColor;
  transform-origin: calc(100% - 1px) 50%;
}
.pag-arrow::before { transform: rotate(45deg); }
.pag-arrow::after  { transform: rotate(-45deg); }

.pag-arrow-left {
  transform: scaleX(-1);
}

.gallery-thumb-wrap {
  position: relative;
  overflow: hidden;
}
.gallery-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 37, 37, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
  opacity: 0;
}
.gallery-card:hover .gallery-photo-overlay {
  background: rgba(45, 37, 37, 0.2);
  opacity: 1;
}
.gallery-photo-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 16px;
}

.gallery-card {
  background: var(--white);
  border: 6px solid var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-paper);
  transition: var(--t);
  position: relative;
}
.gallery-card:nth-child(odd) { transform: rotate(-1deg); }
.gallery-card:nth-child(even) { transform: rotate(1.2deg); }

.gallery-card:hover {
  transform: translateY(-8px) rotate(0deg) scale(1.02);
  box-shadow: var(--shadow-hover);
  z-index: 3;
}

.gallery-thumb-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--pink-pale);
  cursor: pointer;
}
.gallery-thumb-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.gallery-card:hover .gallery-thumb-wrap img {
  transform: scale(1.05);
}

.gallery-play-btn {
  position: absolute; inset: 0;
  background: rgba(45,37,37,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
}
.gallery-card:hover .gallery-play-btn {
  background: rgba(45,37,37,0.3);
}
.gallery-play-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--glass-white);
  color: var(--glass-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-flat);
  transition: var(--t);
}
.gallery-card:hover .gallery-play-icon {
  transform: scale(1.1);
  background: var(--glass-pink);
  color: var(--glass-white);
}
.gallery-card:hover .gallery-photo-icon {
  transform: scale(1.1);
  background: var(--glass-pink);
  color: var(--glass-white);
}

.gallery-info {
  padding: 16px;
}
.gallery-type-badge {
  font-family: var(--font-en); font-size: 9px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--pink); margin-bottom: 6px; display: inline-block;
}
.gallery-type-badge.photo {
  color: var(--sky);
}
.gallery-title {
  font-size: 14px; font-weight: 700; color: var(--dark);
  line-height: 1.5; margin-bottom: 8px;
}

.arrow {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 14px;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 8px;
  height: 1.5px;
  border-radius: 9999px;
  background-color: currentColor;
  transform-origin: calc(100% - 0.7px) 50%;
}
.arrow::before { transform: rotate(45deg); }
.arrow::after  { transform: rotate(-45deg); }

a:hover .arrow,
button:hover .arrow {
  transform: translateX(6px);
}

