
body{
  margin:0;
  font-family:"Noto Serif JP", serif;
  background:#000;
  color:#fff;
}

.header{
  position:fixed;
  top:0;
  width:100%;
  background:#b40000;
  z-index:100;
}

.header-inner{
  max-width:1200px;
  margin:0 auto;
  height:64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 20px;
}

.logo{
  font-size:14px;
  white-space:nowrap;
}

.logo span{font-weight:600;}

.nav{
  display:flex;
  gap:20px;
  align-items:center;
}

.nav a{
  color:#fff;
  text-decoration:none;
  font-size:13px;
  white-space:nowrap;
}

.hamburger{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  cursor:pointer;
  width:40px;
  height:40px;
  padding:8px;
  background:none;
  border:none;
  box-shadow:none;
  -webkit-appearance:none;
  appearance:none;
}

.hamburger span{
  display:block;
  width:22px;
  height:2px;
  background:#2a1c12;
  border-radius:2px;
  transition:transform .3s ease, opacity .2s ease;
  transform-origin:center;
}
.hamburger.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2){ opacity:0; }
.hamburger.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.hero{
  height:100vh;
  padding-top:64px;
  position:relative;
  overflow:hidden;
}

.slides{
  position:absolute;
  inset:64px 0 0 0;
}

.slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1s ease;
}

.slide.is-active{opacity:1}

.hero-title{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:min(800px,92vw);
}

.hero-title img{width:100%;}

@media(max-width:900px){
  .nav{
    position:fixed;
    top:0;
    right:-100%;
    width:min(280px,75vw);
    height:100vh;
    background:linear-gradient(160deg,#faf6ed,#f0e6d0);
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:80px 28px 40px;
    transition:right .35s cubic-bezier(.2,.8,.2,1);
    box-shadow:-4px 0 30px rgba(0,0,0,.15);
    z-index:1050;
  }
  .nav.is-open{right:0;}
  .nav a{
    width:100%;
    padding:14px 0;
    border-bottom:1px solid rgba(42,28,18,.18);
    color:#2a1c12;
    font-size:13px;
    letter-spacing:.2em;
  }
  .nav a:last-child{border-bottom:none;}
  .nav a.active{color:#b58a3a;}
  .hamburger{
    display:flex;
    position:absolute;
    right:12px;
    top:50%;
    transform:translateY(-50%);
  }
  .header-inner{
    position:relative;
  }
  .social-links{
    margin-right:26px;
  }
  /* SNSボタンをスマホでも表示 */
  .social-links{
    gap:5px;
  }
  .social-link{width:30px;height:30px;}
  .social-link svg{width:14px;height:14px;}
}


/* About Section */
.about-section{
  background:#000;
  padding:120px 20px;
  text-align:center;
}
.about-inner{
  max-width:1100px;
  margin:0 auto;
}
.about-section h2{
  color:#d60000;
  font-family:'Noto Serif JP',serif;
  font-size:34px;
  letter-spacing:2px;
  margin-bottom:30px;
}
.about-section p{
  font-size:18px;
  line-height:1.9;
  letter-spacing:1px;
  margin-bottom:60px;
}
.about-banner img{
  width:100%;
  height:auto;
  display:block;
}


/* 4-up grid under About (no extra big images) */
.country-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:26px;
  margin-top:56px;
}

.country-item{
  margin:0;
  cursor:pointer;
  text-align:left;
}

.country-item img{
  width:100%;
  display:block;
  border-radius:2px;
  transform: translateZ(0);
  transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .7s cubic-bezier(.2,.8,.2,1);
}

.country-item:hover img{
  transform: scale(1.03);
  filter: contrast(1.05) brightness(1.05);
}

.country-title{
  color:#d60000;
  font-size:16px;
  letter-spacing:.06em;
  margin:14px 0 8px;
  font-weight:600;
}

.country-item p{
  margin:0;
  color: rgba(255,255,255,.86);
  font-size:14px;
  line-height:1.75;
  letter-spacing:.02em;
}

/* reveal animation (nice, not too much) */
.reveal{
  opacity:0;
  transform: translateY(18px);
  transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}
.reveal.show,
.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}

/* responsive grid */
@media(max-width:1000px){
  .country-grid{grid-template-columns:repeat(2, 1fr);}
}
@media(max-width:600px){
  .country-grid{grid-template-columns:1fr; gap:18px;}
}

/* Modal */
.modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:9999;
}
.modal.open{display:block;}
.modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.72);
  animation: fadeIn .25s ease both;
}
.modal__panel{
  position:relative;
  width:min(980px, 92vw);
  margin: 8vh auto 0;
  background:#111;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  animation: popIn .35s cubic-bezier(.2,.8,.2,1) both;
}
.modal__close{
  position:absolute;
  right:10px;
  top:6px;
  width:40px;
  height:40px;
  border:0;
  background:transparent;
  color:#fff;
  font-size:30px;
  cursor:pointer;
  opacity:.9;
}
.modal__media{
  background:#000;
}
.modal__media img{
  width:100%;
  max-height:62vh;
  object-fit:contain;
  display:block;
}
.modal__text{
  padding:14px 16px 18px;
}
.modal__title{
  color:#d60000;
  font-weight:600;
  letter-spacing:.06em;
  font-size:16px;
}
.modal__desc{
  margin-top:8px;
  color: rgba(255,255,255,.86);
  line-height:1.7;
  font-size:14px;
}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes popIn{from{opacity:0; transform: translateY(12px) scale(.98)}to{opacity:1; transform: translateY(0) scale(1)}}



/* Performance style section */
.perf-section{
  background:#000;
  padding:90px 20px 110px;
}
.perf-inner{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 360px 1fr;
  gap:54px;
  align-items:center;
}
.perf-logo img{
  width:100%;
  max-width:340px;
  height:auto;
  display:block;
  margin:0 auto;
}
.perf-title{
  margin:0 0 18px;
  color:#d60000;
  font-size:44px;
  letter-spacing:.04em;
  font-weight:600;
}
.perf-text{
  margin:0;
  color:rgba(255,255,255,.9);
  font-size:18px;
  line-height:2.05;
  letter-spacing:.03em;
}

/* Responsive */
@media(max-width:980px){
  .perf-inner{
    grid-template-columns: 1fr;
    gap:28px;
    text-align:left;
  }
  .perf-logo img{
    margin:0;
    max-width:260px;
  }
  .perf-title{font-size:36px}
  .perf-text{font-size:16px; line-height:1.95}
}


/* Performance banner */
.perf-banner{
  position:relative;
  background:url('../img/performance_ambition.png') center/cover no-repeat;
  height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.perf-banner::after{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.35);
}

.perf-banner__inner{
  position:relative;
  z-index:2;
  text-align:center;
}

.perf-banner__title{
  color:#ffffff;
  font-size:48px;
  letter-spacing:.35em;
  font-weight:300;
}

@media(max-width:768px){
  .perf-banner{height:300px}
  .perf-banner__title{font-size:28px; letter-spacing:.25em}
}


/* PNG overlay top position only */
.perf-banner{
  align-items:flex-start;
  padding-top:40px;
}

.perf-banner__png{
  width:min(900px, 90vw);
  height:auto;
  display:block;
  margin:0 auto;
}


/* Performance Menu (4 items) */
.menu-section{
  background:#4a0b0b;
  padding:110px 20px 120px;
}
.menu-inner{
  max-width:1280px;
  margin:0 auto;
}
.menu-title{
  text-align:center;
  color: rgba(214,0,0,.55);
  font-size:44px;
  letter-spacing:.04em;
  margin:0 0 18px;
  font-weight:600;
}
.menu-sub{
  text-align:center;
  margin:0 0 64px;
  color: rgba(255,255,255,.86);
  letter-spacing:.08em;
  font-size:14px;
}
.menu-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:46px;
}
.menu-card{
  text-align:center;
}
.menu-img{
  background:#000;
  padding:10px;
  box-shadow:0 10px 30px rgba(0,0,0,.35);
}
.menu-img img{
  width:100%;
  height:190px;
  object-fit:cover;
  display:block;
}
.menu-label{
  display:inline-block;
  margin-top:14px;
  background:#d60000;
  color:#fff;
  padding:8px 18px;
  font-weight:600;
  letter-spacing:.08em;
  font-size:14px;
}
.menu-text{
  margin:16px auto 0;
  max-width:320px;
  color: rgba(255,255,255,.90);
  font-size:13px;
  line-height:2.0;
  letter-spacing:.06em;
}
.menu-divider{
  margin:26px auto 0;
  height:1px;
  width:92%;
  background: rgba(255,255,255,.35);
}

/* Responsive */
@media(max-width:1200px){
  .menu-grid{grid-template-columns:repeat(2, 1fr); gap:40px;}
  .menu-text{max-width:420px;}
}
@media(max-width:640px){
  .menu-section{padding:80px 16px 90px;}
  .menu-title{font-size:34px;}
  .menu-grid{grid-template-columns:1fr; gap:34px;}
  .menu-img img{height:210px;}
  .menu-text{max-width:520px;}
}


/* Remove black frame */
.menu-img{
  background:transparent;
  padding:0;
  box-shadow:none;
}

/* Make images clickable */
.menu-card{
  cursor:pointer;
}

/* Modal for menu */
.menu-modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:9999;
}
.menu-modal.open{display:block;}
.menu-modal__back{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.75);
}
.menu-modal__inner{
  position:relative;
  width:min(1000px, 92vw);
  margin:8vh auto;
  background:#000;
  padding:20px;
}
.menu-modal__inner img{
  width:100%;
  height:auto;
  display:block;
}
.menu-modal__close{
  position:absolute;
  top:10px;
  right:14px;
  font-size:28px;
  color:#fff;
  cursor:pointer;
}


/* ===== Unified modal (A-D + Performance Menu) ===== */
.img-modal{
  display:none;
  position:fixed;
  inset:0;
  z-index:99999;
  justify-content:center;
  align-items:center;
}
.img-modal.open{ display:flex; }
.img-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.85);
}
.img-modal__panel{
  position:relative;
  width:min(1100px, 92vw);
  max-height:88vh;
  background:#000;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 30px 90px rgba(0,0,0,.65);
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
}
.img-modal__img{
  width:100%;
  height:auto;
  max-height:82vh;
  object-fit:contain;
  display:block;
}
.img-modal__close{
  position:absolute;
  top:10px;
  right:10px;
  width:44px;
  height:44px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  color:#fff;
  font-size:30px;
  line-height:1;
  cursor:pointer;
  z-index:3;
  -webkit-tap-highlight-color: transparent;
}
.img-modal__close:hover{background:rgba(255,255,255,.16);}


/* ===== Luxe Warm Theme Overrides ===== */
:root{
  --ink:#2a1c12;
  --muted:#4c3a2d;
  --paper:#fbf7ee;
  --paper2:#f3e7cf;
  --beige:#e8d6b5;
  --gold:#b58a3a;
  --gold2:#d7b56d;
  --brown:#6a3f22;
  --shadow: 0 18px 45px rgba(42,28,18,.18);
  --shadow2: 0 10px 26px rgba(42,28,18,.16);
  --line: rgba(42,28,18,.14);
}

/* Page background */
body{
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(215,181,109,.28), transparent 55%),
    radial-gradient(900px 500px at 80% 20%, rgba(181,138,58,.18), transparent 55%),
    linear-gradient(180deg, var(--paper), var(--paper2));
  color: var(--ink);
}

/* Header */
.header{ background: linear-gradient(90deg, rgba(181,138,58,.22), rgba(106,63,34,.14)); backdrop-filter: blur(8px); }
.header-inner{ border-bottom:1px solid var(--line); }
.logo, .nav a{ color: var(--ink); }
.nav a{ opacity:.92; }
.nav a:hover{ opacity:1; text-decoration: underline; text-decoration-color: rgba(181,138,58,.55); text-underline-offset:6px; }
.hamburger span{ background: var(--ink); }

/* Hero title stays, but add subtle glow */
.hero-title img{ filter: drop-shadow(0 18px 35px rgba(42,28,18,.22)); }

/* About section */
.about-section{ background: transparent; }
.about-section h2{ color: var(--brown); }
.about-section p{ color: rgba(42,28,18,.86); }
.about-banner img{ box-shadow: var(--shadow); border-radius: 10px; }

/* Clickable images: shadow + hover */
.country-item img,
.menu-img img{
  border-radius: 12px;
  box-shadow: var(--shadow2);
  transition: transform .55s cubic-bezier(.2,.8,.2,1), box-shadow .55s cubic-bezier(.2,.8,.2,1), filter .55s cubic-bezier(.2,.8,.2,1);
}

.country-item:hover img,
.menu-card:hover .menu-img img{
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 28px 70px rgba(42,28,18,.22);
  filter: contrast(1.04) saturate(1.05);
}

/* A-D captions */
.country-title{ color: var(--gold); }
.country-item p{ color: rgba(42,28,18,.78); }

/* Performance style */
.perf-section{ background: transparent; }
.perf-title{ color: var(--brown); }
.perf-text{ color: rgba(42,28,18,.86); }
.perf-logo img{ filter: drop-shadow(0 18px 40px rgba(42,28,18,.18)); }

/* Performance banner: keep image, soften overlay */
.perf-banner::after{ background: rgba(250,245,235,.35); mix-blend-mode: overlay; }

/* Performance menu section */
.menu-section{
  background:
    radial-gradient(900px 520px at 30% 0%, rgba(215,181,109,.25), transparent 60%),
    linear-gradient(135deg, rgba(251,247,238,.92), rgba(232,214,181,.78));
}
.menu-title{ color: rgba(181,138,58,.55); }
.menu-sub{ color: rgba(42,28,18,.70); }
.menu-label{
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  color: #1e140c;
  box-shadow: 0 14px 30px rgba(181,138,58,.22);
}
.menu-text{ color: rgba(42,28,18,.78); }
.menu-divider{ background: rgba(42,28,18,.18); }

/* Unified modal: warm */
.img-modal__backdrop{ background: rgba(24,16,10,.78); }
.img-modal__panel{
  background: linear-gradient(180deg, rgba(251,247,238,.98), rgba(243,231,207,.98));
  border: 1px solid rgba(181,138,58,.28);
  box-shadow: 0 34px 110px rgba(42,28,18,.45);
}
.img-modal__close{
  background: rgba(181,138,58,.18);
  color: var(--ink);
  border: 1px solid rgba(181,138,58,.35);
}
.img-modal__close:hover{ background: rgba(181,138,58,.26); }
.img-modal__img{ background: transparent; }


  .nav a{ color: var(--ink); }
}


/* Ensure no frames */
.menu-img{ background:transparent !important; padding:0 !important; box-shadow:none !important; }


/* ===== Luxe Header Upgrade ===== */
.header{
  position:fixed;
  width:100%;
  background:rgba(251,247,238,.55);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(181,138,58,.25);
  z-index:1000;
}

.nav a{
  position:relative;
  font-size:12px;
  letter-spacing:.25em;
  font-weight:400;
  color:#2a1c12;
  text-transform:uppercase;
  padding:12px 0;
  transition:all .4s cubic-bezier(.2,.8,.2,1);
}

.nav a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:0;
  width:0%;
  height:2px;
  background:linear-gradient(90deg,#b58a3a,#d7b56d);
  transition:width .4s cubic-bezier(.2,.8,.2,1);
}

.nav a:hover{
  transform:translateY(-2px);
  color:#6a3f22;
}

.nav a:hover::after{
  width:100%;
}


/* ===== FX Pack ===== */

/* 1) Logo gentle glow (center hero PNG) */
@keyframes softGlow{
  0%{ filter: drop-shadow(0 18px 35px rgba(42,28,18,.18)) drop-shadow(0 0 0 rgba(215,181,109,0)); }
  50%{ filter: drop-shadow(0 22px 45px rgba(42,28,18,.22)) drop-shadow(0 0 18px rgba(215,181,109,.20)); }
  100%{ filter: drop-shadow(0 18px 35px rgba(42,28,18,.18)) drop-shadow(0 0 0 rgba(215,181,109,0)); }
}
.hero-title img{
  animation: softGlow 6.5s ease-in-out infinite;
}

/* 2) Header becomes slightly stronger on scroll */
.header{
  transition: background .35s cubic-bezier(.2,.8,.2,1), border-color .35s cubic-bezier(.2,.8,.2,1);
}
.header.is-scrolled{
  background:rgba(251,247,238,.82);
  border-bottom:1px solid rgba(181,138,58,.32);
}

/* 3) Gold underline subtle flowing shimmer */
.nav a::after{
  background: linear-gradient(90deg,#b58a3a,#d7b56d,#b58a3a);
  background-size: 200% 100%;
}
@keyframes goldFlow{
  from{ background-position: 0% 50%; }
  to{ background-position: 200% 50%; }
}
.nav a:hover::after{
  animation: goldFlow .9s linear infinite;
}

/* 4) Smooth modal fade */
.img-modal{
  opacity:0;
  transition: opacity .22s ease;
}
.img-modal.open{ opacity:1; }
.img-modal__panel{
  transform: translateY(10px) scale(.985);
  transition: transform .26s cubic-bezier(.2,.8,.2,1);
}
.img-modal.open .img-modal__panel{
  transform: translateY(0) scale(1);
}


/* Refined CTA placement between menu and contact */
.cta-section{
  padding:70px 20px 40px;
  text-align:center;
  background:transparent;
}

/* ===== Social links (icons only, luxe) ===== */
.site-header{position:relative;}
.social-links{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:flex-end;
  margin-left:14px;
}
.social-link{
  width:36px;
  height:36px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.35));
  border:1px solid rgba(181,138,58,.25);
  box-shadow:0 10px 24px rgba(0,0,0,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.social-link svg{
  width:18px;
  height:18px;
  fill: rgba(42,28,18,.82);
  transition: fill .25s ease, transform .25s ease;
}
.social-link:hover{
  transform: translateY(-2px);
  border-color: rgba(215,181,109,.55);
  box-shadow:0 14px 34px rgba(0,0,0,.14);
}
.social-link:hover svg{
  fill:#6a3f22;
  transform: scale(1.05);
}
@media (max-width: 768px){
  .social-links{
    position:absolute;
    right:56px;
    top:50%;
    transform: translateY(-50%);
    margin-left:0;
  }
  .social-link{ width:34px; height:34px; }
}

/* ===== PNG shadow enhancement ===== */
.hero-title img,
.perf-banner img,
img.shadow-enhance{
  filter:
    drop-shadow(0 0 22px rgba(215,181,109,.28))
    drop-shadow(0 12px 34px rgba(0,0,0,.55));
}

/* ===== Contact / Footer (luxe warm redesign) ===== */
.site-footer{
  position: relative;
  overflow: hidden;
  padding: 96px 0 52px;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(215,181,109,.22), transparent 60%),
              radial-gradient(900px 520px at 100% 30%, rgba(106,63,34,.18), transparent 60%),
              linear-gradient(180deg, #f6efe0 0%, #efe2c8 50%, #e9d9b8 100%);
  border-top: 1px solid rgba(181,138,58,.25);
}
.site-footer .footer-bg{
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.35), transparent 45%),
    radial-gradient(circle at 80% 35%, rgba(215,181,109,.18), transparent 55%),
    linear-gradient(90deg, rgba(181,138,58,.08), transparent 22%, transparent 78%, rgba(181,138,58,.08));
  opacity:.9;
  filter: blur(.2px);
}
.site-footer .footer-inner{
  position:relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  gap: 18px;
}
.site-footer .footer-title{
  margin:0;
  font-size: clamp(34px, 3.2vw, 54px);
  letter-spacing: .08em;
  color: #2a1c12;
  text-shadow: 0 10px 26px rgba(0,0,0,.08);
}
.site-footer .footer-text{
  margin: 0;
  font-size: 18px;
  line-height: 2.05;
  color: rgba(42,28,18,.86);
  letter-spacing: .04em;
}
.site-footer .footer-label{
  font-weight: 600;
  letter-spacing: .08em;
  color: rgba(42,28,18,.86);
}
.site-footer .footer-link{
  color: #6a3f22;
  text-decoration: none;
  border-bottom: 1px solid rgba(181,138,58,.55);
  padding-bottom: 2px;
  transition: all .25s ease;
}
.site-footer .footer-link:hover{
  color: #b58a3a;
  border-bottom-color: rgba(215,181,109,.9);
  text-shadow: 0 0 18px rgba(215,181,109,.25);
}
.site-footer .footer-sep{
  margin-top: 14px;
  height: 1px;
  width: min(520px, 92%);
  background: linear-gradient(90deg, transparent, rgba(181,138,58,.55), transparent);
}
.site-footer .footer-copy{
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: .12em;
  color: rgba(42,28,18,.55);
}
@media (max-width: 768px){
  .site-footer{ padding: 72px 0 44px; }
  .site-footer .footer-text{ font-size: 15px; line-height: 1.9; }
}



/* ===== CTA: Performance details (luxe warm, forced) ===== */
.cta-section{
  position: relative;
  padding: 72px 0 56px;
  margin: 0;
  text-align: center;
  background: radial-gradient(900px 420px at 50% 0%, rgba(215,181,109,.18), transparent 62%);
  border-top: 1px solid rgba(181,138,58,.18);
  border-bottom: 1px solid rgba(181,138,58,.14);
}
.cta-inner{
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}
.cta-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 34px;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: .10em;
  font-size: 18px;
  line-height: 1;
  color: rgba(42,28,18,.92) !important;
  background: linear-gradient(135deg, #f7eedb 0%, #e9d2a0 38%, #caa24e 100%);
  border: 1px solid rgba(181,138,58,.55);
  box-shadow: 0 16px 46px rgba(0,0,0,.10);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, filter .25s ease;
  overflow: hidden;
}
/* shine */
.cta-btn::after{
  content:"";
  position:absolute;
  top:-40%;
  left:-120%;
  width:60%;
  height:180%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.55) 45%, rgba(255,255,255,0) 100%);
  transform: rotate(18deg);
  animation: ctaShine 3.8s ease-in-out infinite;
  opacity:.9;
}
@keyframes ctaShine{
  0%{ left:-120%; }
  45%{ left:140%; }
  100%{ left:140%; }
}
.cta-btn:hover{
  transform: translateY(-3px);
  border-color: rgba(215,181,109,.85);
  box-shadow: 0 22px 62px rgba(0,0,0,.14);
  filter: saturate(1.05);
}
.cta-arrow{
  display:inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  align-items:center;
  justify-content:center;
  background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.18));
  border: 1px solid rgba(181,138,58,.35);
}
.cta-note{
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: .06em;
  color: rgba(42,28,18,.62);
}
@media (max-width: 768px){
  .cta-section{ padding: 56px 0 44px; }
  .cta-btn{ padding: 16px 22px; font-size: 16px; gap: 10px; }
  .cta-arrow{ width: 30px; height: 30px; }
}


/* Force center PERFORMANCE AMBITION overlay */
.perf-banner{align-items:center !important; padding-top:0 !important;}
.perf-banner .perf-png, .perf-banner img{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);}



/* ===== Subpages (placeholders) ===== */
body.subpage{
  background: linear-gradient(180deg, #f6efe0 0%, #efe2c8 55%, #e9d9b8 100%);
  color: rgba(42,28,18,.9);
}
.subpage .page-wrap{ min-height: 100vh; }
.subpage main{ padding-top: 110px; }
.subpage .container{
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 22px;
}
.subpage .page-hero{
  padding: 90px 0 80px;
  text-align: center;
}
.subpage .page-hero h1{
  margin: 0;
  font-size: clamp(42px, 7vw, 96px);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(42,28,18,.88);
  font-weight: 400;
  line-height: 1.1;
}
.subpage .page-hero p{
  margin: 20px auto 0;
  font-size: 13px;
  line-height: 2.0;
  letter-spacing: .28em;
  color: rgba(42,28,18,.45);
  font-weight: 400;
}
.subpage .section{ padding: 30px 0 54px; }
.subpage .grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.subpage .card{
  grid-column: span 12;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.34));
  border: 1px solid rgba(181,138,58,.22);
  box-shadow: 0 18px 48px rgba(0,0,0,.08);
  overflow: hidden;
}
.subpage .card-inner{ padding: 22px 20px; }
.subpage .card h2{
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.subpage .card p{
  margin: 0;
  font-size: 14px;
  line-height: 2.0;
  letter-spacing: .06em;
  color: rgba(42,28,18,.72);
}
.ph{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(0,0,0,.10), rgba(0,0,0,.03));
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(255,255,255,.45);
}
.ph::after{
  content: attr(data-ph);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 22px;
  letter-spacing: .22em;
  color: rgba(42,28,18,.42);
  text-transform: uppercase;
}
.subpage .two-col .card{ grid-column: span 6; }
.subpage .three-col .card{ grid-column: span 4; }
@media (max-width: 860px){
  .subpage .two-col .card,
  .subpage .three-col .card{ grid-column: span 12; }
  .ph{ aspect-ratio: 4 / 3; }
}
.subpage .sub-footer{
  margin-top: 40px;
  padding: 70px 0 40px;
  text-align: center;
  border-top: 1px solid rgba(181,138,58,.22);
  background: radial-gradient(900px 420px at 50% 0%, rgba(215,181,109,.18), transparent 62%);
}
.subpage .sub-footer a{
  color: #6a3f22;
  text-decoration: none;
  border-bottom: 1px solid rgba(181,138,58,.55);
  padding-bottom: 2px;
}
.subpage .sub-footer a:hover{ color:#b58a3a; }
.subpage .sub-footer .copy{
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: .12em;
  color: rgba(42,28,18,.55);
}


/* PHOTO masonry (simple, "unstructured" grid) */
.photo-masonry{
  column-count: 3;
  column-gap: 26px;
}
.photo-item{
  display:block;
  break-inside: avoid;
  margin: 0 0 26px;
  border-radius: 16px;
  overflow:hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
  transform: translateZ(0);
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}
.photo-item img{
  width:100%;
  height:auto;
  display:block;
  transform: scale(1.02);
  transition: transform .45s ease;
}
.photo-item:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(0,0,0,.14);
}
.photo-item:hover img{
  transform: scale(1.06);
}

@media (max-width: 980px){
  .photo-masonry{column-count: 2; column-gap: 18px;}
  .photo-item{margin-bottom: 18px; border-radius: 14px;}
}
@media (max-width: 560px){
  .photo-masonry{column-count: 1; column-gap: 14px;}
  .photo-item{margin-bottom: 14px; border-radius: 12px;}
}

/* ===== PROFILE PAGE V2 (scoped) ===== */
body.subpage .profile-page .container{max-width:1020px;margin:0 auto;padding:0 22px;}
body.subpage .profile-page .lead{opacity:.75;letter-spacing:.14em;text-transform:uppercase;}
body.subpage .profile-page .reveal{opacity:0;transform:translateY(18px);transition:opacity .9s ease, transform .9s ease;}
body.subpage .profile-page .reveal.is-visible{opacity:1;transform:none;}

body.subpage .profile-photo-strip{margin:10px 0 22px;}
body.subpage .profile-photos{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;}
body.subpage .ph-img{margin:0;border-radius:12px;overflow:hidden;
  border:1px solid rgba(181,138,58,.22);
  box-shadow:0 18px 48px rgba(0,0,0,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.34));
}
body.subpage .ph-img img{width:100%;height:100%;display:block;aspect-ratio:3/2;object-fit:cover;transition:transform .45s ease;}
body.subpage .ph-img:hover img{transform:scale(1.04);}
body.subpage .profile-photo-note{margin-top:10px;font-size:12px;letter-spacing:.06em;opacity:.62;text-align:center;}

body.subpage .profile-block{margin-top:18px;background:linear-gradient(180deg, rgba(255,255,255,.74), rgba(255,255,255,.34));
  border:1px solid rgba(181,138,58,.22);
  box-shadow:0 18px 48px rgba(0,0,0,.08);
  border-radius:18px;padding:26px 22px;
}
body.subpage .profile-block h2{margin:0 0 14px;letter-spacing:.14em;text-transform:uppercase;font-size:18px;}
body.subpage .profile-prose p{margin:0 0 14px;line-height:2.05;letter-spacing:.06em;opacity:.84;}

body.subpage .profile-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:18px;}
body.subpage .profile-card{background:linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.34));
  border:1px solid rgba(181,138,58,.22);
  box-shadow:0 18px 48px rgba(0,0,0,.08);
  border-radius:18px;padding:22px 20px;overflow:hidden;
}
body.subpage .profile-card h2{margin:0 0 12px;letter-spacing:.12em;text-transform:uppercase;font-size:16px;}
body.subpage .profile-card .muted{opacity:.6;font-size:.82em;}
body.subpage .scrollbox{padding-right:8px;}
body.subpage .profile-list{margin:0;padding-left:18px;line-height:2.0;letter-spacing:.05em;opacity:.85;}

body.subpage .award-strip{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-top:14px;}
body.subpage .award-strip figure{margin:0;border-radius:12px;overflow:hidden;border:1px solid rgba(181,138,58,.22);box-shadow:0 14px 36px rgba(0,0,0,.08);}
body.subpage .award-strip img{width:100%;height:100%;display:block;aspect-ratio:3/2;object-fit:cover;transition:transform .45s ease;}
body.subpage .award-strip figure:hover img{transform:scale(1.04);}

body.subpage .video-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:10px;}
body.subpage .video{border-radius:18px;overflow:hidden;border:1px solid rgba(181,138,58,.22);
  box-shadow:0 18px 48px rgba(0,0,0,.10);
  background:radial-gradient(800px 380px at 50% 0%, rgba(215,181,109,.22), transparent 62%);
}
body.subpage .video iframe{width:100%;height:320px;display:block;}

@media(max-width: 980px){
  body.subpage .profile-grid{grid-template-columns:1fr;}
  body.subpage .video-grid{grid-template-columns:1fr;}
  body.subpage .video iframe{height:260px;}
}
@media(max-width: 700px){
  body.subpage .profile-photos{grid-template-columns:repeat(2,1fr);}
}

/* ===== Award full-width section ===== */
body.subpage .award-fullwidth{
  margin-top: 18px;
  width: 100%;
}
body.subpage .award-full-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100%;
}
body.subpage .award-full-grid figure{
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(181,138,58,.22);
  box-shadow: 0 14px 36px rgba(0,0,0,.08);
}
body.subpage .award-full-grid img{
  width: 100%;
  display: block;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform .45s ease;
}
body.subpage .award-full-grid figure:hover img{
  transform: scale(1.04);
}
@media(max-width:700px){
  body.subpage .award-full-grid{grid-template-columns: repeat(2,1fr);}
}

/* ===== Performance Page ===== */
.perf-list {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 22px 60px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.perf-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.perf-item--reverse {
  direction: rtl;
}
.perf-item--reverse > * {
  direction: ltr;
}

.perf-item-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(0,0,0,.10);
  border: 1px solid rgba(181,138,58,.18);
}
.perf-item-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.perf-item:hover .perf-item-img img {
  transform: scale(1.03);
}

.perf-item-num {
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: rgba(181,138,58,.22);
  line-height: 1;
  margin-bottom: 6px;
}

.perf-item-title {
  margin: 0 0 18px;
  font-size: 22px;
  letter-spacing: .06em;
  color: rgba(42,28,12,.92);
  line-height: 1.4;
}
.perf-item-ja {
  display: block;
  font-size: 13px;
  letter-spacing: .14em;
  color: rgba(106,63,34,.70);
  font-weight: 400;
  margin-top: 4px;
}

.perf-item-text p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 2.0;
  letter-spacing: .05em;
  color: rgba(42,28,18,.80);
}
.perf-item-text p:last-child { margin-bottom: 0; }

.perf-item-note {
  margin-top: 14px !important;
  padding: 12px 16px;
  background: rgba(181,138,58,.10);
  border-left: 3px solid rgba(181,138,58,.55);
  border-radius: 0 8px 8px 0;
  font-size: 13px !important;
  color: rgba(106,63,34,.85) !important;
}

.perf-item-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f7eedb 0%, #e9d2a0 38%, #caa24e 100%);
  border: 1px solid rgba(181,138,58,.55);
  color: rgba(42,28,18,.92);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .10em;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.perf-item-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,.13);
}
.perf-item-btn-arrow { font-size: 16px; }

/* CTA section */
.perf-cta {
  padding: 100px 22px 110px;
  text-align: center;
  border-top: 1px solid rgba(181,138,58,.18);
  background: radial-gradient(900px 420px at 50% 0%, rgba(215,181,109,.15), transparent 62%);
}
.perf-cta-lead {
  margin: 0 0 28px;
  font-size: 18px;
  letter-spacing: .14em;
  color: rgba(42,28,18,.70);
}

/* Reveal for performance page */
.perf-list .reveal,
.perf-cta.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s ease, transform .9s ease;
}
.perf-list .reveal.is-visible,
.perf-cta.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 860px) {
  .perf-item,
  .perf-item--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 28px;
  }
  .perf-list { gap: 60px; }
  .perf-item-num { font-size: 48px; }
  .perf-item-title { font-size: 19px; }
}

/* ===== Photo page ===== */
.photo-item {
  opacity: 1;
  transform: none;
}

/* ===== 和風パフォーマンスページ ===== */
.wafuu-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 22px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.wafuu-hero-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(0,0,0,.10);
  border: 1px solid rgba(181,138,58,.18);
}
.wafuu-hero-img img {
  width: 100%; height: auto; display: block;
  transition: transform .5s ease;
  cursor: zoom-in;
}
.wafuu-hero-img:hover img { transform: scale(1.03); }

.wafuu-catch {
  font-size: 22px;
  line-height: 1.9;
  letter-spacing: .08em;
  color: rgba(42,28,18,.88);
  margin: 0 0 24px;
  font-weight: 400;
}
.wafuu-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, #b58a3a, #d7b56d);
  margin: 0 0 24px;
  border-radius: 2px;
}
.wafuu-desc {
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: .06em;
  color: rgba(42,28,18,.72);
  margin: 0;
}

.wafuu-features {
  background: linear-gradient(180deg, rgba(215,181,109,.08), rgba(215,181,109,.04));
  border-top: 1px solid rgba(181,138,58,.14);
  border-bottom: 1px solid rgba(181,138,58,.14);
  padding: 80px 22px;
}
.wafuu-section-title {
  text-align: center;
  font-size: 28px;
  letter-spacing: .14em;
  margin: 0 0 50px;
  color: rgba(42,28,18,.88);
}
.wafuu-section-title span {
  display: block;
  font-size: 13px;
  letter-spacing: .28em;
  color: rgba(42,28,18,.45);
  font-weight: 400;
  margin-top: 8px;
}
.wafuu-feature-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.wafuu-feature-card {
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.44));
  border: 1px solid rgba(181,138,58,.22);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.wafuu-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(0,0,0,.10);
}
.wafuu-feature-icon { font-size: 32px; margin-bottom: 14px; }
.wafuu-feature-card h3 {
  margin: 0 0 10px;
  font-size: 15px;
  letter-spacing: .10em;
  color: rgba(42,28,18,.88);
}
.wafuu-feature-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(42,28,18,.68);
  letter-spacing: .04em;
}

.wafuu-scene {
  padding: 80px 22px;
}
.wafuu-scene-list {
  max-width: 680px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wafuu-scene-list li {
  font-size: 16px;
  letter-spacing: .08em;
  color: rgba(42,28,18,.80);
  padding: 16px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.34));
  border: 1px solid rgba(181,138,58,.20);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
  line-height: 1.6;
}

@media (max-width: 860px) {
  .wafuu-hero { grid-template-columns: 1fr; gap: 30px; }
  .wafuu-feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .wafuu-feature-grid { grid-template-columns: 1fr; }
}

/* ===== 和風ギャラリー ===== */
.wafuu-gallery {
  padding: 20px 22px 60px;
}
.wafuu-gallery-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.wafuu-gallery-item {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(181,138,58,.20);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  cursor: zoom-in;
  transition: transform .35s ease, box-shadow .35s ease;
}
.wafuu-gallery-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0,0,0,.13);
}
.wafuu-gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.wafuu-gallery-item:hover img {
  transform: scale(1.05);
}
@media (max-width: 860px) {
  .wafuu-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .wafuu-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ===== Profile full-width strip (8枚) ===== */
.profile-fullstrip {
  margin: 10px 0 22px;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}
.profile-strip-track {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0;
  width: 100%;
}
.profile-strip-img {
  margin: 0;
  overflow: hidden;
  position: relative;
}
.profile-strip-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform .55s cubic-bezier(.2,.8,.2,1), filter .55s ease;
  filter: brightness(.95);
}
.profile-strip-img:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}
@media (max-width: 860px) {
  .profile-strip-track { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 480px) {
  .profile-strip-track { grid-template-columns: repeat(4, 1fr); }
}

/* ===== Profile PDF section ===== */
.profile-pdf {
  padding: 90px 22px 100px;
  text-align: center;
  border-top: 1px solid rgba(181,138,58,.18);
  background: radial-gradient(800px 360px at 50% 0%, rgba(215,181,109,.13), transparent 60%);
}
.profile-pdf-lead {
  margin: 0 0 28px;
  font-size: 13px;
  letter-spacing: .28em;
  color: rgba(42,28,18,.45);
}
.profile-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f7eedb 0%, #e9d2a0 38%, #caa24e 100%);
  border: 1px solid rgba(181,138,58,.55);
  color: rgba(42,28,18,.92);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: .12em;
  box-shadow: 0 14px 40px rgba(181,138,58,.22), 0 4px 12px rgba(0,0,0,.08);
  transition: transform .28s ease, box-shadow .28s ease;
}
.profile-pdf-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 56px rgba(181,138,58,.30), 0 6px 18px rgba(0,0,0,.10);
}
.profile-pdf-btn svg {
  opacity: .80;
  flex-shrink: 0;
}

@media(max-width:600px){
  .subpage .page-hero h1{
    font-size:clamp(1.5rem,6vw,3rem) !important;
  }
}

/* PDF Buttons */
.pdf-btns{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  padding:32px 20px;
  background:linear-gradient(180deg,rgba(245,235,215,0),rgba(240,225,195,.5));
  border-top:1px solid rgba(181,138,58,.15);
}
.pdf-btn{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:12px 24px;
  background:linear-gradient(135deg,#b58a3a,#d7b56d);
  color:#fff !important;
  font-size:12px;
  letter-spacing:.12em;
  border-radius:3px;
  text-decoration:none !important;
  box-shadow:0 4px 14px rgba(181,138,58,.28);
  transition:transform .2s,box-shadow .2s;
  white-space:nowrap;
}
.pdf-btn:hover{transform:translateY(-2px);box-shadow:0 7px 20px rgba(181,138,58,.4);}
.pdf-btn svg{width:14px;height:14px;flex-shrink:0;fill:none;stroke:#fff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
@media(max-width:480px){
  .pdf-btns{flex-direction:column;align-items:center;}
  .pdf-btn{width:100%;max-width:240px;justify-content:center;}
}

/* 5個目はスマホのみ表示 */
.country-item--mobile-only {
  display: none;
}
@media (max-width: 900px) {
  .country-item--mobile-only {
    display: block;
  }
}

/* 5th item: mobile only */
.sp-only { display: none; }
@media (max-width: 900px) {
  .sp-only { display: block; }
}
