:root {
  --black:   #050810;
  --navy:    #070f22;
  --blue1:   #0a1a3a;
  --blue2:   #0e2460;
  --blue3:   #1a4a9a;
  --blue4:   #2d6fd6;
  --blue5:   #5b9bf5;
  --accent1: #313d6b;
  --accent2: #2b6db5;
  --accent3: #bad4ee;
  --accent4: #e2effb;
  --white:   #ffffff;
  --text-dim:#c0d6ee;
  --nav-height: 80px;
}
/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

*{margin:0;padding:0;box-sizing:border-box}
html { overflow-x: hidden; width: 100%; scroll-behavior: smooth; }
body { font-family:'Noto Sans JP',sans-serif; background:var(--black); color:var(--white); overflow-x:hidden; line-height:1.8; user-select:none; -webkit-user-select:none; width: 100%; position: relative; }
img { max-width: 100%; height: auto; -webkit-touch-callout: none; }

.en{font-family:'Montserrat',sans-serif}
.serif{font-family:'Cormorant Garamond',serif}
.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
@media(max-width: 768px) { .container { padding: 0 24px; } }

@media(max-width: 480px) {
  .hero-sub-en { letter-spacing: 0.3em !important; }
  .sec-eyebrow-text { letter-spacing: 0.2em !important; }
  .hero-title { font-size: clamp(32px, 10vw, 48px) !important; }
}

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

/* ── NAV ── */
nav{position:fixed;top:0;left:0;width:100%;z-index:200;background:rgba(5,8,16,0.95);backdrop-filter:blur(24px);border-bottom:1px solid rgba(43,109,181,0.1)}
.nav-inner{height:var(--nav-height);display:flex;align-items:center;justify-content:space-between}
.nav-logo a { display: block; line-height: 0; }
.nav-logo img { height: 32px; width: auto; display: block; }
.nav-links{display:flex;gap:40px;list-style:none}
.nav-links a{font-family:'Montserrat',sans-serif;font-size:10px;font-weight:600;letter-spacing:0.25em;color:var(--white);text-decoration:none;text-transform:uppercase;transition:color 0.3s}
.nav-links a:hover{color:var(--accent3)}
.nav-cta{font-family:'Noto Sans JP',sans-serif;font-size:11px;font-weight:600;padding:12px 30px;background:transparent;color:var(--accent3);border:1px solid var(--accent2);cursor:pointer;letter-spacing:0.15em;transition:all 0.3s}
.nav-cta:hover{background:var(--accent2);color:var(--black)}

/* HAMBURGER BTN */
.hamburger-btn {
  display: none; background: transparent; border: none; cursor: pointer;
  width: 30px; height: 20px; position: relative; z-index: 300;
}
.hamburger-btn span {
  display: block; width: 100%; height: 2px; background: var(--accent3);
  position: absolute; left: 0; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger-btn span:nth-child(1) { top: 0; }
.hamburger-btn span:nth-child(2) { top: 9px; }
.hamburger-btn span:nth-child(3) { bottom: 0; }
.hamburger-btn.is-open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.hamburger-btn.is-open span:nth-child(2) { opacity: 0; }
.hamburger-btn.is-open span:nth-child(3) { bottom: 9px; transform: rotate(-45deg); }

/* ── BUTTONS ── */
.btn-blue {
  font-family:'Noto Sans JP',sans-serif;
  font-size:14px;
  font-weight:600;
  letter-spacing:0.15em;
  padding:18px 56px;
  background:linear-gradient(135deg, var(--accent2), var(--accent1));
  color:var(--white);
  border:1px solid rgba(255,255,255,0.1);
  cursor:pointer;
  position:relative;
  clip-path:polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition:all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  display: inline-block;
  text-decoration: none;
  text-align: center;
}
.btn-blue:hover {
  background: var(--accent3);
  color: var(--accent1);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(43, 109, 181, 0.4);
}
.btn-full { width: 100%; border-radius: 0; }

.btn-outline-poly {
  font-family:'Noto Sans JP',sans-serif;
  font-size:14px;
  font-weight:500;
  letter-spacing:0.15em;
  padding:18px 56px;
  background:transparent;
  color:var(--white);
  border:1px solid rgba(255,255,255,0.25);
  cursor:pointer;
  clip-path:polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition:all 0.3s;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}
.btn-outline-poly:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* ── HERO ── */
.hero{position:relative;width:100%;height:100vh;min-height:750px;display:flex;align-items:center;background:var(--black);overflow:hidden}
.hero-visual-wrapper {
  position: absolute; top: 0; right: 0; width: 75%; height: 100%; z-index: 1;
}
.hero-visual-wrapper img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.85;
}
.hero-visual-wrapper::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, var(--black) 0%, rgba(5,8,16,0) 60%);
  z-index: 2;
  pointer-events: none; /* Allows clicking dots through the overlay */
}
.hero-pagination {
  bottom: 40px !important;
  right: 40px !important;
  left: auto !important;
  width: auto !important;
  z-index: 10;
  pointer-events: auto; /* Ensures dots are clickable */
}
.hero-pagination .swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.5;
  width: 10px;
  height: 10px;
}
.hero-pagination .swiper-pagination-bullet-active {
  background: var(--accent3);
  opacity: 1;
}
.hero-container {width: 100%;max-width: 1400px;margin: 0 auto;padding: var(--nav-height) 40px 0;position: relative;z-index: 3;display: flex;flex-direction: column;justify-content: center;height: 100%}
.hero-catchphrase {font-family: 'Noto Sans JP', sans-serif;font-weight: 700;font-size: 30px;letter-spacing: 0.4em;color: var(--white);margin-bottom: 24px;opacity: 0;animation: slideInLeft 1s forwards;display: flex;align-items: center;gap: 0}
.hero-catchphrase::after {content: '';height: 1px;width: 100px;background: var(--accent3);opacity: 0.8}
.hero-catchphrase em {font-style: normal;color: var(--accent3)}
.hero-main-area {max-width: 900px}
.hero-sub-en {font-family: 'Montserrat', sans-serif;font-size: 13px;font-weight: 600;letter-spacing: 0.6em;color: var(--accent2);text-transform: uppercase;margin-bottom: 16px;display: block;opacity: 0;animation: fadeIn 1s 0.6s forwards}
.hero-title {font-family: 'Cormorant Garamond', serif;font-size: clamp(48px, 9vw, 90px);font-weight: 300;line-height: 1.1;margin-bottom: 32px;opacity: 0;animation: slideInLeft 1.2s 0.2s forwards}
.hero-title span {display: block}
.hero-description {font-size: 15px;font-weight: 300;line-height: 2.2;color: var(--text-dim);max-width: 480px;margin-bottom: 56px;opacity: 0;animation: fadeIn 1.5s 0.8s forwards}
.hero-cta-group {display: flex;gap: 24px;opacity: 0;animation: fadeIn 1.5s 1s forwards}

@keyframes slideInLeft { from { transform: translateX(-50px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

/* ── MARQUEE ── */
.marquee-wrap{border-top:1px solid rgba(186,212,238,0.2);border-bottom:1px solid rgba(186,212,238,0.2);background:var(--accent1);padding:15px 0;overflow:hidden}
.marquee-track{display:flex;animation:mq 45s linear infinite;width:max-content;white-space:nowrap}
.mq-item{font-family:'Montserrat',sans-serif;font-size:12px;font-weight:700;letter-spacing:0.4em;color:var(--accent3);text-transform:uppercase;padding:0 50px;opacity:1}
@keyframes mq{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* ── SECTION BASE ── */
.sec{padding:160px 0}
.sec-eyebrow{display:flex;align-items:center;gap:15px;margin-bottom:24px}
.sec-eyebrow-line{width:40px;height:1px;background:var(--accent2)}
.sec-eyebrow-text{font-family:'Montserrat',sans-serif;font-size:11px;font-weight:700;letter-spacing:0.4em;color:var(--accent3);text-transform:uppercase}
.sec-heading{font-family:'Cormorant Garamond',serif;font-size:clamp(36px,6vw,80px);font-weight:300;line-height:1.1;letter-spacing:0.02em;color:var(--white);margin-bottom:40px}
.sec-heading em{font-style:normal;color:var(--accent3)}

/* ── RECOMMEND ── */
.sec-recommend { 
  background-color: var(--black);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
  padding: 120px 0; 
}
.sec-recommend::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(rgba(5,8,16,0.65), rgba(5,8,16,0.8));
  z-index: -1;
}
.recommend-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.rec-card { border-left: 2px solid rgba(43,109,181,0.3); padding: 24px 30px; background: rgba(255,255,255,0.03); backdrop-filter: blur(8px); transition: all 0.4s; }
.rec-card:hover { border-left-color: var(--accent3); background: rgba(43,109,181,0.1); transform: translateY(-5px); }
.rec-label { font-family:'Montserrat',sans-serif; font-size: 10px; color: var(--accent3); opacity: 0.6; margin-bottom: 8px; display: block; }
.rec-text { font-size: 15px; font-weight: 300; color: var(--white); line-height: 1.6; letter-spacing: 0.02em; }

@media(max-width: 1024px) {
  .recommend-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 640px) {
  .recommend-grid { grid-template-columns: 1fr; }
}

/* ── ABOUT ── */
.sec-about { background: #03060c; border-top: 1px solid rgba(43,109,181,0.1); border-bottom: 1px solid rgba(43,109,181,0.1); }
.about-split{display:flex;gap:100px;align-items:center;margin-top:60px}
.about-visual{flex:1;height:600px;position:relative;overflow:hidden}
.about-visual img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s}
.about-visual:hover img{transform:scale(1.05)}
.about-content{flex:1}
.about-content p{margin-bottom:32px;color:var(--text-dim);font-size:16px;line-height:2.4}

/* ── FEATURES ── */
.sec-features { background: var(--black); }
.features-split { display: flex; flex-direction: row-reverse; gap: 80px; align-items: flex-start; margin-top: 80px; }
.features-visual { flex: 1; position: sticky; top: 120px; }
.features-visual img { width: 100%; height: auto; border: 1px solid var(--accent1); }
.features-content { flex: 1.2; }
.feat-list { display: flex; flex-direction: column; gap: 40px; }
.feat-item { border-bottom: 1px solid rgba(43,109,181,0.1); padding-bottom: 40px; transition: all 0.3s; }
.feat-item:hover { transform: translateX(10px); }
.feat-num { font-family:'Montserrat',sans-serif; font-size: 11px; color: var(--accent2); letter-spacing: 0.2em; margin-bottom: 15px; display: block; }
.feat-name { font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 15px; }
.feat-text { font-size: 15px; color: var(--text-dim); line-height: 2; }

/* SNS Block */
.sns-block h4 { font-family: 'Montserrat', sans-serif; font-size: 13px; color: var(--accent3); letter-spacing: 0.15em; margin-bottom: 16px; }
.sns-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.sns-btn { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600; padding: 10px 20px; border: 1px solid rgba(43, 109, 181, 0.5); border-radius: 4px; color: var(--white); text-decoration: none; letter-spacing: 0.1em; transition: all 0.3s; background: rgba(255, 255, 255, 0.05); }
.sns-btn:hover { background: var(--accent2); color: var(--black); transform: translateY(-2px); }

@media(max-width: 1024px) {
  .features-split { flex-direction: column; gap: 60px; }
  .features-visual { position: relative; top: 0; }
  .feat-item:hover { transform: none; }
}

/* ── SERVICE ── */
.sec-service { 
  background-color: var(--black);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}
.sec-service::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(rgba(5,8,16,0.7), rgba(5,8,16,0.85));
  z-index: -1;
}
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 80px; }
.service-card { 
  background: rgba(255, 255, 255, 0.03); 
  border: 1px solid rgba(255, 255, 255, 0.05); 
  padding: 50px 40px; 
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  gap: 30px;
  backdrop-filter: blur(10px);
}
.service-card:hover { 
  background: rgba(43, 109, 181, 0.05); 
  border-color: rgba(43, 109, 181, 0.3);
  transform: translateY(-10px);
}
.service-icon-wrap {
  width: 60px; height: 60px; background: rgba(43, 109, 181, 0.1); 
  display: flex; align-items: center; justify-content: center;
  color: var(--accent3);
}
.service-icon-wrap svg { width: 30px; height: 30px; stroke-width: 1.5; }
.service-card h3 { font-family:'Cormorant Garamond',serif; font-size: 30px; font-weight: 400; color: var(--accent3); }
.service-card .service-desc { font-size: 14px; color: var(--text-dim); line-height: 2; flex: 1; }
.service-footer { 
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05);
}
.service-price-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}
.service-label { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; }
.service-price { font-family:'Montserrat',sans-serif; font-size: 18px; font-weight: 600; color: var(--accent2); letter-spacing: 0.05em; }
.service-card-note { font-size: 10px; color: var(--text-dim); text-align: right; margin-top: 8px; opacity: 0.8; letter-spacing: 0.05em; }
@media(max-width: 768px) {
  .service-card { padding: 40px 30px; }
}

.recommended-menu-box {
  margin-top: 100px; background: var(--navy); padding: 50px; border-left: 4px solid var(--accent2);
}
.recommended-flex-wrap { display: flex; gap: 60px; align-items: flex-start; }
.recommended-img { flex: 0 0 400px; aspect-ratio: 3 / 4; overflow: hidden; border: 1px solid rgba(43,109,181,0.2); }
.recommended-img img { width: 100%; height: 100%; object-fit: cover; }
.recommended-info { flex: 1; }

.recommended-info h3 { font-family:'Montserrat',sans-serif; font-size: 14px; color: var(--accent3); margin-bottom: 32px; letter-spacing: 0.3em; }
.reco-cta-wrap { margin-top: 48px; }
.reco-cta-wrap .btn-outline-poly { font-size: 13px; padding: 18px 48px; width: fit-content; }

.reco-course-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 40px;
}
.reco-course-item {
  border-bottom: 1px solid rgba(43,109,181,0.2);
  padding-bottom: 30px;
}
.reco-course-item h4 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--white);
}
.reco-course-item .reco-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  color: var(--accent2);
  font-weight: 700;
  margin-bottom: 16px;
}
.reco-course-item .reco-text {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.8;
}

@media(max-width: 1200px) {
  .recommended-flex-wrap { gap: 40px; }
  .recommended-img { flex: 0 0 320px; }
}
@media(max-width: 1024px) {
  .recommended-menu-box { padding: 40px 30px; }
  .recommended-flex-wrap { flex-direction: column; align-items: center; text-align: center; }
  .recommended-img { flex: none; width: 100%; max-width: 500px; aspect-ratio: 16 / 9; }
  .reco-course-grid { gap: 40px; margin-top: 40px; }
}
@media(max-width: 640px) {
  .reco-course-grid { grid-template-columns: 1fr; gap: 32px; }
  .reco-course-item h4 { font-size: 20px; }
  .reco-course-item .reco-price { font-size: 22px; }
}



/* ── VOICE ── */
.sec-voice { background: #03060c; border-top: 1px solid rgba(43,109,181,0.1); }
.voice-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 60px; }
.voice-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05); padding: 40px; backdrop-filter: blur(10px); transition: all 0.4s; position: relative; display: flex; flex-direction: column; }
.voice-card:hover { transform: translateY(-5px); border-color: rgba(43, 109, 181, 0.3); background: rgba(43, 109, 181, 0.05); }
.voice-card-header { margin-bottom: 24px; border-bottom: 1px solid rgba(43, 109, 181, 0.1); padding-bottom: 20px; }
.voice-stars { display: flex; gap: 4px; margin-bottom: 12px; }
.voice-stars svg { width: 14px; height: 14px; color: var(--accent3); fill: var(--accent3); }
.voice-name { font-size: 20px; color: var(--accent3); display: block; font-weight: 500; }
.voice-text-wrapper { position: relative; overflow: hidden; max-height: 5.4em; /* 1.8 line-height * 3 lines */ transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.voice-text-wrapper.is-expanded { max-height: 1000px; }
.voice-text { font-size: 15px; color: var(--text-dim); line-height: 1.8; margin: 0; }
.voice-text-wrapper::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2.5em; background: linear-gradient(to bottom, transparent, #03060c); pointer-events: none; transition: opacity 0.3s; }
.voice-text-wrapper.is-expanded::after { opacity: 0; }
.voice-text-wrapper.no-mask::after { display: none; }
.voice-more-btn { align-self: flex-start; margin-top: 20px; background: none; border: none; color: var(--accent3); font-size: 13px; font-weight: 600; cursor: pointer; padding: 4px 0; border-bottom: 1px solid var(--accent3); transition: all 0.3s; letter-spacing: 0.1em; }
.voice-more-btn:hover { color: var(--white); border-bottom-color: var(--white); }
.voice-footer-link { margin-top: 60px; text-align: center; }

@media(max-width: 1024px) {
  .voice-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 768px) {
  .voice-grid { grid-template-columns: 1fr; gap: 20px; }
  .voice-card { padding: 30px; }
  .voice-footer-link .btn-outline-poly { padding: 16px 40px; font-size: 12px; }
}

/* ── MESSAGE ── */
.sec-message { background: var(--black); }
.message-split { display: flex; gap: 80px; align-items: center; margin-top: 60px; }
.message-text { flex: 1; }
.message-visual-slider { flex: 1.2; position: relative; } /* Adjusted from 1.5 to fit better */

.message-lead {
  font-size: 20px; color: var(--white); font-weight: 500; line-height: 1.8; margin-bottom: 32px;
}

.staff-compact-profile {
  margin-top: 48px; border-top: 1px solid rgba(43,109,181,0.1); padding-top: 32px;
}
.staff-main-info { display: flex; align-items: baseline; gap: 24px; margin-bottom: 8px; }
.staff-role { font-size: 10px; color: var(--accent2); letter-spacing: 0.15em; font-weight: 600; }
.staff-name { font-size: 32px; color: var(--accent3); }
.staff-career { font-size: 13px; color: var(--text-dim); }

/* Swiper Customize */
.staff-swiper { width: 100%; max-width: 800px; border: 1px solid var(--accent1); padding: 5px; background: rgba(43,109,181,0.05); overflow: hidden; }
.staff-swiper .swiper-slide { aspect-ratio: 16 / 10; overflow: hidden; }
.staff-swiper img { width: 100%; height: 100%; object-fit: cover; display: block; transition: all 0.5s; cursor: zoom-in; }
.staff-swiper img:hover { transform: scale(1.02); }
.swiper-button-next, .swiper-button-prev { color: var(--accent3); --swiper-navigation-size: 24px; }
.swiper-pagination-bullet-active { background: var(--accent3); }

.slider-controls { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; min-height: 40px; }
.slider-hint { font-size: 11px; color: var(--text-dim); margin-top: 0; letter-spacing: 0.1em; }

.btn-insta-more {
  display: flex; align-items: center; gap: 10px;
  background: var(--accent1); color: var(--white);
  padding: 12px 28px; font-size: 12px; font-weight: 600;
  text-decoration: none; letter-spacing: 0.1em;
  border: 1px solid var(--accent2); transition: all 0.3s;
}
.btn-insta-more:hover { background: var(--accent2); color: var(--white); transform: translateY(-2px); }
.btn-insta-more svg { width: 16px; height: 16px; }

@media(max-width: 768px) {
  .slider-controls { flex-direction: column-reverse; gap: 16px; align-items: stretch; }
  .btn-insta-more { justify-content: center; }
  .slider-hint { text-align: center; }
}

/* Lightbox Modal */
.lightbox-modal {
  display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%;
  background-color: rgba(5,8,16,0.95); backdrop-filter: blur(10px); justify-content: center; align-items: center;
}
.lightbox-content { max-width: 90%; max-height: 85%; border: 1px solid var(--accent1); }
.lightbox-close {
  position: absolute; top: 40px; right: 40px; color: var(--white); font-size: 40px; cursor: pointer; transition: color 0.3s;
}
.lightbox-close:hover { color: var(--accent3); }

@media(max-width:1024px){
  .message-split { flex-direction: column; gap: 60px; }
  .message-visual-slider { flex: none; width: 100%; }
}

/* ── CONTACT ── */
.contact-bg{background:var(--navy);position:relative;overflow:hidden}
.contact-bg-visual {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
}
.contact-bg-visual img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.35;
}
.contact-inner{position: relative; z-index: 2; text-align:center;padding:160px 40px}
.section-label { letter-spacing: 0.5em; color: var(--accent2); font-size: 12px; margin-bottom: 24px; display: block; }

.contact-card {
  max-width: 1100px; margin: 40px auto 0; background: rgba(5,8,16,0.8); backdrop-filter: blur(20px); border: 1px solid rgba(43,109,181,0.2); text-align: left; display: grid; grid-template-columns: 1.2fr 1fr; overflow: hidden;
}
.map-side { width: 100%; height: 100%; min-height: 400px; transition: opacity 0.5s; }
.map-side:hover { opacity: 0.9; }
.map-side iframe { width: 100%; height: 100%; }

.content-side { padding: 60px; display: flex; flex-direction: column; justify-content: space-between; gap: 40px; }
.info-block .store-name { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--white); }
.info-block .store-address { font-size: 14px; color: var(--white); margin-bottom: 24px; line-height: 1.6; }
.info-block .store-hours { font-size: 13px; color: var(--text-dim); line-height: 1.8; }
.cta-block { display: flex; flex-direction: column; gap: 16px; }

/* ── FOOTER ── */
footer{background:#030710;padding:80px 0;border-top:1px solid rgba(43,109,181,0.1)}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:80px}
.footer-logo { margin-bottom: 24px; }
.footer-logo img { height: 40px; width: auto; opacity: 0.85; }
.footer-desc { color:var(--text-dim); font-size:13px; line-height: 1.8; }
.footer-links h4{font-family:'Montserrat',sans-serif;font-size:12px;letter-spacing:0.2em;margin-bottom:24px;color:var(--accent2)}
.footer-links ul{list-style:none}
.footer-links li{margin-bottom:12px}
.footer-links a{text-decoration:none;color:var(--text-dim);font-size:13px;transition:color 0.3s}
.footer-links a:hover{color:var(--white)}
.footer-bottom { margin-top:80px; padding-top:40px; border-top:1px solid rgba(255,255,255,0.05); display:flex; justify-content:space-between; align-items:center; }
.copyright { font-size:10px; color:rgba(255,255,255,0.2); letter-spacing:0.2em; }

@media(max-width:1024px){
  .about-split{flex-direction:column;gap:60px}
  .about-visual{width:100%;height:400px}
  .service-item{grid-template-columns:1fr;gap:24px}
  .service-item .service-price{text-align:left}
  .footer-grid{grid-template-columns: 1fr; gap: 40px;}
  .contact-card { grid-template-columns: 1fr; padding: 0; }
  .content-side { padding: 40px; }

}
@media(max-width:768px){
  .nav-cta { display: none; }
  .hamburger-btn { display: block; }
  .pc-only { display: none; }
  .sp-only { display: block; }
  br.sp-br { display: inline; }
  
  .nav-links {
    display: flex; flex-direction: column; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(5,8,16,0.98); backdrop-filter: blur(10px); justify-content: center; align-items: center;
    gap: 40px; z-index: 250; opacity: 0; visibility: hidden; transition: all 0.4s; pointer-events: none;
  }
  .nav-links.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-links a { font-size: 18px; letter-spacing: 0.3em; }
  
  /* Hero section mobile layout: image top, text bottom */
  .hero { flex-direction: column; height: auto; min-height: auto; align-items: stretch; }
  .hero-visual-wrapper { position: relative; width: 100%; height: 55vh; min-height: 400px; }
  .hero-visual-wrapper::before { background: linear-gradient(0deg, var(--black) 0%, rgba(5,8,16,0) 40%); }
  .hero-container { padding: 40px 16px 80px; height: auto; }
  
  .hero-cta-group { display: none; }
  .sec{padding:100px 0}
  .hero-catchphrase { font-size: 16px; letter-spacing: 0.05em; white-space: normal; display: block; line-height: 1.6; }
  .hero-catchphrase::after { content: ''; display: inline-block; vertical-align: middle; width: 20px; margin-left: 8px; }
  .hero-description { font-size: 14px; margin-bottom: 0; }
  .recommended-menu-box { padding: 40px 24px; margin-top: 60px; }
  .recommended-flex-wrap { flex-direction: column !important; gap: 32px; align-items: stretch; text-align: left; }
  .recommended-img { flex: none; width: 100%; aspect-ratio: 16 / 10; height: auto; order: -1; }
  .reco-course-grid { text-align: left; }
  .recommended-info h3 { font-size: 24px; margin-bottom: 24px; }
  .reco-cta-wrap .btn-outline-poly { padding: 16px 20px; font-size: 11px; }

  .hero-pagination { bottom: 20px !important; right: 20px !important; }
  
  /* About section SP */
  .about-content .btn-outline-poly { margin-top: 32px; }
  
  /* General button centering for SP */
  .btn-outline-poly {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    text-align: center;
  }
  
  /* Message section SP */
  .message-split { flex-direction: column-reverse; }
  .staff-compact-profile { margin-top: 0; }
  
  /* Recommend section compact SP layout */
  .recommend-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 40px; }
  .rec-card { display: flex; align-items: center; gap: 15px; padding: 12px 11px; }
  .rec-label { margin-bottom: 0; font-size: 11px; flex-shrink: 0; }
  .rec-text { font-size: 13.5px; }
  
  /* Contact SP adjustments */
  .contact-card { display: flex; flex-direction: column-reverse; border: none; border-top: 1px solid rgba(43,109,181,0.2); border-bottom: 1px solid rgba(43,109,181,0.2); }
  .content-side { padding: 32px 24px; gap: 32px; }
  .info-block .store-name { font-size: 18px; }
  .map-side { min-height: 300px; height: 300px; }
  .contact-inner { padding: 80px 0; } /* Remove side padding so card is full width on SP */
  
  .page-top-btn { bottom: 20px; right: 20px; width: 40px; height: 40px; }
}

/* ── PAGE TOP BUTTON ── */
.page-top-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent3);
  color: var(--navy);
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.page-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.page-top-btn:hover {
  background: var(--white);
  transform: translateY(-5px);
}
.page-top-btn svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.5;
}

/* ── SP FLOATING CTA ── */
.sp-floating-cta {
  display: none;
}
@media(max-width:768px){
  body { padding-bottom: 60px; }
  .page-top-btn { bottom: 80px; }
  
  .sp-floating-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1000;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.5);
  }
  .sp-cta-tel, .sp-cta-web {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.1em;
  }
  .sp-cta-tel {
    background: #1a1e29;
    color: var(--white);
  }
  .sp-cta-web {
    background: linear-gradient(135deg, var(--accent1), var(--accent2));
    color: var(--white);
  }
  .sp-cta-tel svg, .sp-cta-web svg {
    width: 18px;
    height: 18px;
  }
}
