@charset "UTF-8";

/* ══════════════════════════════════════════
   LUPUS hair&make — EDITORIAL REDESIGN v3
   すげぇ edition
══════════════════════════════════════════ */

:root {
  --ink:        #0e0a07;
  --cream:      #f7f2e8;
  --cream2:     #ede5d4;
  --gold:       #c8903c;
  --gold2:      #e8b96a;
  --gold3:      #fad588;
  --rust:       #b84a1a;
  --white:      #ffffff;
  --text:       #1e1208;
  --muted:      #7a6040;
  --border:     rgba(200,144,60,0.3);

  --f-display:  'Bebas Neue', sans-serif;
  --f-serif:    'Lora', Georgia, serif;
  --f-jp:       'Noto Sans JP', sans-serif;
  --f-script:   'Tangerine', cursive;

  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease2:      cubic-bezier(0.45, 0, 0.55, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--cream); color: var(--text); font-family: var(--f-jp); overflow-x: hidden; }
a { color: inherit; display: block; text-decoration: none; }
img { height: auto; max-width: 100%; pointer-events: none; vertical-align: bottom; }
ul, li { list-style: none; }
em { font-style: italic; }

/* ── Noise texture overlay ── */
.noise-overlay {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* ── Scroll reveal ── */
.js-reveal { opacity: 0; transform: translateY(48px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.js-reveal.revealed { opacity: 1; transform: translateY(0); }

/* ── Section eyebrow ── */
.section-eyebrow {
  font-family: var(--f-jp); font-size: 10px; font-weight: 700;
  letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; display: block;
}
.section-eyebrow.light { color: var(--gold2); }

/* ── Container ── */
.container { margin: 0 auto; width: min(90%, 1100px); }

/* ══════════════════════════════════════════
   PAGE-TOP BUTTON
══════════════════════════════════════════ */
.page-top { background: var(--ink); display: none; height: 50px; position: fixed; right: 10px; bottom: 60px; transform: rotate(90deg); width: 60px; z-index: 500; }
.page-top .text { color: var(--gold); font-size: 11px; font-family: var(--f-serif); letter-spacing: 0.15em; padding-left: 15px; line-height: 44px; }
.page-top a { background: transparent; border: 2px solid var(--gold); height: 100%; position: relative; text-align: center; transition: background 0.3s; }
.page-top a::before { background: var(--gold); content:''; height:1px; position:absolute; top:10px; right:23px; transform:translateY(-50%) rotate(150deg); width:12px; }
.page-top a::after  { background: var(--gold); content:''; height:1px; position:absolute; top:14px; right:6px; transform:translateY(-50%); width:28px; }
.page-top a:hover { background: var(--gold); }
.page-top a:hover .text { color: var(--ink); }
.page-top a .top-key { background: var(--ink); height:3px; position:absolute; top:-3px; left:.625rem; width:1.5625rem; transition: width .5s, left .3s; }
.page-top a .bottom-key-1 { background: var(--ink); height:3px; position:absolute; right:1.7rem; bottom:-3px; width:1.5625rem; transition: width .5s, right .3s; }
.page-top a:hover .top-key { left:-2px; width:0; }
.page-top a:hover .bottom-key-1 { right:0; width:0; }
.is-fixed { overflow: hidden; }

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
#header {
  background: rgba(14,10,7,0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200,144,60,0.4);
  position: fixed; top: 0; z-index: 200; width: 100vw;
  transition: background 0.4s;
}
.header-wrapper { display: flex; align-items: center; justify-content: flex-start; padding: 0 20px; position: relative; height: 60px; }

h1 {
  background: url(../img/logo.svg) no-repeat left center; background-size: contain;
  height: 44px; margin-right: auto; overflow: hidden;
  text-indent: 100%; white-space: nowrap; width: 130px;
  filter: brightness(0) invert(1) sepia(1) saturate(1.5) hue-rotate(5deg) brightness(0.9);
}
h1 a { height: 100%; }

/* SP nav */
.SP-nav { background: var(--ink); border-top: 2px solid var(--gold); display: none; position: absolute; top: 60px; left: 0; width: 100%; }
.SP-nav .SPnav-btn { font-family: var(--f-display); font-size: 22px; letter-spacing: 0.15em; display: grid; grid-template-columns: repeat(2,1fr); }
.SP-nav .SPnav-btn li { border-bottom: 1px solid rgba(200,144,60,0.2); border-left: 1px solid rgba(200,144,60,0.2); line-height: calc(((var(--vh,1vh)*100) - 60px)/5); text-align: center; }
.SP-nav .SPnav-btn li:nth-child(1), .SP-nav .SPnav-btn li:nth-child(3), .SP-nav .SPnav-btn li:nth-child(5) { border-left: 0; }
.SP-nav .SPnav-btn a { color: var(--cream); transition: color 0.3s, background 0.3s; }
.SP-nav .SPnav-btn a:hover { color: var(--gold); background: rgba(200,144,60,0.08); }
.SP-nav .header-btn { text-align: center; font-family: var(--f-jp); }
.SP-nav .header-btn a { border-bottom: 1px solid rgba(200,144,60,0.2); color: var(--cream); transition: background 0.3s; }
.SP-nav .header-btn a:hover { background: rgba(200,144,60,0.1); }
.SP-nav .header-web-btn p { line-height: calc(((var(--vh,1vh)*100) - 60px)/5); margin: 0 auto; position: relative; width: fit-content; }
.SP-nav .header-tel-btn p { line-height: calc(((var(--vh,1vh)*100) - 60px)/20); margin: 0 auto; padding: calc(((var(--vh,1vh)*100) - 60px)/20) 0; position: relative; width: fit-content; }
.SP-nav .header-tel-btn p::before { background: url(../img/telephone.svg) no-repeat; filter: invert(1); content:""; display:inline-block; height:25px; position:absolute; top:50%; left:-35px; transform:translate(-50%,-50%); width:25px; }
.SP-nav .header-web-btn p::before { background: url(../img/hotpepper-logo.svg) no-repeat; content:""; display:inline-block; height:25px; position:absolute; top:50%; left:-25px; transform:translate(-50%,-50%); width:25px; }

/* PC nav */
.PC-nav { display: none; }
.hamburger { height: 60px; position: fixed; top: 0; right: 0; z-index: 1000; }
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after { background-color: var(--gold) !important; }

@media screen and (min-width:835px) {
  #header { position: fixed; }
  .header-wrapper { height: 70px; }
  h1 { height: 48px; }
  .hamburger { display: none; }
  .SP-nav { display: none !important; }
  .PC-nav { display: flex; align-items: center; gap: 0; }
  .PCnav-btn { display: flex; align-items: center; gap: 32px; }
  .PCnav-btn li > a { font-family: var(--f-display); font-size: 15px; letter-spacing: 0.2em; color: rgba(247,242,232,0.75); position: relative; transition: color 0.3s; padding-bottom: 4px; }
  .PCnav-btn a::after { content:''; position:absolute; bottom:0; left:0; width:0; height:2px; background: var(--gold); transition: width 0.4s var(--ease); }
  .PCnav-btn a:hover { color: var(--gold); }
  .PCnav-btn a:hover::after { width: 100%; }
  .header-web-btn { margin-left: 32px; }
  .header-web-btn a { background: transparent; border: 2px solid var(--gold); color: var(--gold); height: 44px; line-height: 40px; position: relative; text-align: center; transition: all 0.3s; }
  .header-web-btn a::before { background: var(--gold); content:''; height:1px; position:absolute; top:calc(50% - 2px); right:1em; transform:translateY(calc(-50% - 2px)) rotate(30deg); transition:.3s; width:12px; }
  .header-web-btn a::after { background: var(--gold); content:''; height:1px; position:absolute; top:50%; right:1em; transform:translateY(-50%); transition:.3s; width:70px; }
  .header-web-btn a:hover::after { right:.5em; }
  .header-web-btn a:hover::before { right:.5em; width:.9375rem; }
  .header-web-btn .text { color: var(--gold); padding: 0 80px 0 16px; position: relative; font-family: var(--f-jp); font-size: 12px; letter-spacing: 0.12em; white-space: nowrap; }
  .header-web-btn .text::before { background: url(../img/hotpepper-logo.svg) no-repeat; content:""; display:inline-block; height:28px; position:absolute; top:50%; right:54px; transform:translateY(-50%); width:28px; }
  .header-web-btn a .top-key    { background: var(--ink); height:3px; position:absolute; top:-3px; left:.625rem; transition:width .5s ease-out, left .3s ease-out; width:1.5625rem; }
  .header-web-btn a .bottom-key-1 { background: var(--ink); height:3px; position:absolute; right:1.875rem; bottom:-3px; transition:width .5s ease-out, right .3s ease-out; width:1.5625rem; }
  .header-web-btn a:hover { background: var(--gold); }
  .header-web-btn a:hover .text { color: var(--ink); }
  .header-web-btn a:hover::before, .header-web-btn a:hover::after { background: var(--ink); }
  .header-web-btn a:hover .top-key { left:-2px; width:0; background: var(--gold); }
  .header-web-btn a:hover .bottom-key-1 { right:0; width:0; background: var(--gold); }
  .is-fixed { overflow: visible; }
}
@media screen and (height < 500px) {
  #header { position: fixed; }
  .header-wrapper { height: 60px; }
  h1 { height: 44px; }
  .SP-nav { border-top: 2px solid var(--gold); }
  .hamburger { display: block; }
  .PC-nav { display: none; }
  .is-fixed { overflow: hidden; }
}
@media screen and (499px < height) and (834px < width) {
  .SPnav-btn, .SPnav-btn li, .SPnav-btn a, .header-btn { display: none; visibility: hidden; }
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
#main-vis {
  height: calc(var(--mainVisVh, 1vh) * 100);
  position: relative; width: 100%; overflow: hidden;
  background: var(--ink);
}

/* Animated gradient mesh behind images */
#main-vis::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(200,144,60,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(184,74,26,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(200,144,60,0.15) 0%, transparent 50%);
  animation: meshPulse 8s ease-in-out infinite alternate;
}
@keyframes meshPulse {
  0%   { opacity: 0.6; }
  100% { opacity: 1; }
}

.mainImage {
  animation: mv-animation 20s ease-in-out infinite;
  position: absolute; top: 0; left: 0; opacity: 0;
  width: 100%; height: 100%; z-index: 1;
  background-size: cover;
}
.mainImage:nth-child(1) { background-image: url(../img/main-visual1a.webp); background-position: center center; }
.mainImage:nth-child(2) { animation-delay: 10s; background-image: url(../img/main-visual1b.webp); background-position: center top; }

/* Dark cinematic overlay */
#main-vis::after {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(
    175deg,
    rgba(14,10,7,0.55) 0%,
    rgba(14,10,7,0.2) 40%,
    rgba(14,10,7,0.6) 100%
  );
}

/* Giant background text */
.hero-bg-text {
  position: absolute; z-index: 2; pointer-events: none;
  font-family: var(--f-display);
  font-size: clamp(140px, 22vw, 320px);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,144,60,0.18);
  bottom: -20px; right: -10px;
  letter-spacing: -0.02em;
  user-select: none;
}

.catch-copy {
  color: #fff; position: absolute; bottom: 18%; left: 6%;
  z-index: 3;
}
.catch-copy-en {
  font-family: var(--f-script);
  font-size: clamp(3.5rem, 2.5rem + 5vw, 7rem);
  letter-spacing: 0.01em; line-height: 1.15;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
  white-space: nowrap;
}
.catch-copy-ja {
  font-family: var(--f-jp); font-size: clamp(.75rem, .6rem + .5vw, 1rem);
  letter-spacing: 0.4em; margin-top: 16px;
  color: var(--gold3); opacity: 0.9;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

/* Gold line below copy */
.catch-copy::after {
  content: '';
  display: block; width: 80px; height: 2px; margin-top: 20px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* Badge cluster top-right */
.hero-badge {
  position: absolute; top: 90px; right: 5%;
  z-index: 3;
  display: flex; flex-direction: column; gap: 8px; align-items: flex-end;
}
.hero-badge span {
  font-family: var(--f-jp); font-size: 10px; letter-spacing: 0.4em;
  color: var(--gold2); border: 1px solid rgba(200,144,60,0.4);
  padding: 5px 14px; backdrop-filter: blur(4px);
  background: rgba(14,10,7,0.5);
}

.scroll-btn {
  height: 50px; margin: 0 auto; position: absolute;
  bottom: 5%; left: 50%;
  transform: translateX(-50%);
  width: 50px; z-index: 3;
}
.scroll-btn::before {
  content: "scroll"; color: var(--gold2); font-size: 10px;
  font-family: var(--f-jp); letter-spacing: 0.35em;
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  white-space: nowrap;
}
.scroll-btn img {
  height: 50px; padding: 0 13px;
  filter: brightness(0) saturate(100%) invert(68%) sepia(52%) saturate(500%) hue-rotate(5deg) brightness(1.1);
  animation: scissorBob 2.2s ease-in-out infinite;
}
@keyframes scissorBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ══════════════════════════════════════════
   TICKER
══════════════════════════════════════════ */
.ticker-wrap {
  background: var(--gold);
  padding: 12px 0; overflow: hidden; white-space: nowrap;
  position: relative; z-index: 10;
}
.ticker {
  display: inline-flex; gap: 0;
  animation: ticker 25s linear infinite;
}
.ticker span {
  font-family: var(--f-display); font-size: 14px; letter-spacing: 0.2em;
  color: var(--ink); padding: 0 24px;
}
.ticker .bull { color: var(--ink); opacity: 0.5; padding: 0; font-size: 10px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════════════════════════
   CONCEPT
══════════════════════════════════════════ */
.concept {
  position: relative; overflow: hidden;
  padding: 120px 0 100px;
  background: var(--cream);
}

.concept-inner {
  display: flex; flex-direction: column;
  width: min(90%, 1100px); margin: 0 auto;
  gap: 0;
}

.concept-img-wrap {
  position: relative; width: 100%;
  max-height: 500px; overflow: hidden;
}
.concept-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 80% 50%; display: block; transition: transform 1s var(--ease); }
.concept-img-wrap:hover img { transform: scale(1.04); }

.concept-img-label {
  position: absolute; bottom: 0; right: 0;
  background: var(--gold); color: var(--ink);
  font-family: var(--f-display); font-size: 13px; letter-spacing: 0.3em;
  padding: 14px 20px; line-height: 1.4;
}

.concept-txt {
  background: var(--ink);
  padding: 56px 48px;
  position: relative; overflow: hidden;
}
.concept-txt::before {
  content: '美容';
  position: absolute; bottom: -20px; right: -10px;
  font-family: var(--f-jp); font-size: 180px; font-weight: 700;
  color: rgba(200,144,60,0.06); line-height: 1;
  pointer-events: none; user-select: none;
}
.concept-txt h2 {
  font-family: var(--f-display); font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400; letter-spacing: 0.05em; line-height: 0.95;
  color: var(--cream); margin-bottom: 0;
}
.concept-txt h2 em { color: var(--gold); font-style: normal; }

.concept-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 28px 0;
}

.concept-txt p {
  font-family: var(--f-jp); font-size: 14px; line-height: 2;
  color: rgba(247,242,232,0.65); font-weight: 300;
}

.concept-stats {
  display: flex; gap: 40px; margin-top: 40px;
  padding-top: 32px; border-top: 1px solid rgba(200,144,60,0.2);
}
.stat { display: flex; flex-direction: column; }
.stat-n { font-family: var(--f-display); font-size: 3rem; color: var(--gold2); line-height: 1; }
.stat-n small { font-size: 1.5rem; }
.stat-l { font-family: var(--f-jp); font-size: 10px; letter-spacing: 0.3em; color: rgba(247,242,232,0.4); margin-top: 4px; }

.concept-big-word {
  position: absolute; top: 40px; right: -20px;
  font-family: var(--f-jp); font-weight: 700;
  font-size: clamp(120px, 18vw, 240px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,144,60,0.08);
  line-height: 1; pointer-events: none; user-select: none;
  z-index: 0;
}

@media screen and (min-width: 744px) {
  .concept-inner { flex-direction: row; align-items: stretch; }
  .concept-img-wrap { width: 50%; max-height: none; }
  .concept-txt { width: 50%; }
}

/* ══════════════════════════════════════════
   MENU — DARK + DIAGONAL
══════════════════════════════════════════ */
.menu {
  background: url(../img/menu_bg.webp) no-repeat center/cover;
  position: relative; overflow: hidden;
  padding: 0;
  clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
  margin: -3% 0;
}
.menu::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,10,7,0.92) 0%, rgba(40,18,6,0.85) 50%, rgba(14,10,7,0.95) 100%);
}

.menu-header {
  text-align: center; position: relative; z-index: 1;
  padding: calc(8% + 60px) 20px 60px;
}
.menu-header h2 {
  font-family: var(--f-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 400; letter-spacing: 0.1em; line-height: 0.9;
  color: var(--cream);
}
.menu-header h2 em { color: var(--gold); display: block; font-style: normal; }

.menu .container { position: relative; z-index: 1; padding-bottom: calc(8% + 60px); }

.menu-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  margin-bottom: 2px;
}

.menu-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,144,60,0.12);
  padding: 36px 28px 24px;
  position: relative; overflow: hidden;
  transition: background 0.4s, border-color 0.4s;
}
.menu-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--gold);
  transition: height 0.5s var(--ease);
}
.menu-card:hover { background: rgba(200,144,60,0.06); border-color: rgba(200,144,60,0.3); }
.menu-card:hover::before { height: 100%; }

.menu-card h3 {
  font-family: var(--f-display); font-size: 1.5rem; letter-spacing: 0.1em;
  color: var(--gold2); margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.menu-icon { font-size: 1.1rem; opacity: 0.7; }

.menu dl { overflow: hidden; width: 100%; }
.menu dt { float: left; clear: left; font-size: 13px; color: rgba(247,242,232,0.7); font-weight: 300; padding: 0 0 12px; line-height: 1.4; max-width: 60%; }
.menu dd { text-align: right; font-family: var(--f-serif); font-size: 15px; color: var(--gold3); margin: 0 0 12px; border-bottom: 1px solid rgba(200,144,60,0.1); padding-bottom: 12px; line-height: 1.4; }

.menu-btn {
  background: transparent; border: 2px solid var(--gold);
  height: 52px; text-align: center; margin-top: 40px;
  transition: background 0.3s, border-color 0.3s;
  max-width: 400px;
}
.menu-btn:hover { background: var(--gold); }
.menu-btn a { border: none; background: transparent; height: 100%; position: relative; text-align: center; transition: all .3s; }
.menu-btn .text { font-family: var(--f-jp); font-size: 13px; letter-spacing: 0.15em; color: var(--gold2); line-height: 46px; padding-left: 50px; position: relative; width: fit-content; transition: color .3s; }
.menu-btn:hover .text { color: var(--ink); }
.menu-btn .text::before { background: url(../img/hotpepper-logo.svg) no-repeat; content:""; display:inline-block; height:30px; position:absolute; top:9px; left:8px; width:30px; }
.menu-btn a::before { background: var(--gold); content:''; height:1px; position:absolute; top:calc(50% - 2px); right:1em; transform:translateY(calc(-50% - 2px)) rotate(30deg); width:12px; transition:.3s; }
.menu-btn a::after  { background: var(--gold); content:''; height:1px; position:absolute; top:50%; right:1em; transform:translateY(-50%); width:40px; transition:.3s; }
.menu-btn a:hover::after  { right:.5em; }
.menu-btn a:hover::before { right:.5em; width:.9375rem; }
.menu-btn a .top-key    { background:transparent; height:3px; position:absolute; top:-3px; left:.625rem; width:1.5625rem; }
.menu-btn a .bottom-key-1 { background:transparent; height:3px; position:absolute; right:1.875rem; bottom:-3px; width:1.5625rem; }

.menu-big-word {
  position: absolute; bottom: calc(4% + 10px); left: -20px;
  font-family: var(--f-jp); font-weight: 700;
  font-size: clamp(80px, 12vw, 180px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,144,60,0.06);
  line-height: 1; pointer-events: none; user-select: none;
}

@media screen and (min-width: 744px) {
  .menu-wrapper { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (min-width: 1024px) {
  .menu-wrapper { grid-template-columns: repeat(4, 1fr); }
}

/* ══════════════════════════════════════════
   SERVICE
══════════════════════════════════════════ */
.service {
  background: var(--cream2);
  padding: 120px 0 100px;
  position: relative; overflow: hidden;
}
.service-title-wrap {
  text-align: center; margin-bottom: 70px; padding: 0 20px;
}
.service-title-wrap h2 {
  font-family: var(--f-display);
  font-size: clamp(3rem, 7vw, 7rem);
  letter-spacing: 0.15em; font-weight: 400;
  color: var(--ink); position: relative;
  display: inline-block;
}
.service-title-wrap h2::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: ""; height: 1px; position: absolute;
  top: calc(50% - 1px); left: -5%; width: 110%;
}
.service-title-wrap h2 span { background: var(--cream2); padding: 0 1.5em; position: relative; }

.service-wrapper {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.service-wrapper section {
  background: var(--white);
  overflow: hidden; position: relative;
  box-shadow: 0 4px 24px rgba(14,10,7,0.08);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.service-wrapper section::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px; background: var(--gold);
  transition: width 0.5s var(--ease);
}
.service-wrapper section:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(14,10,7,0.15); }
.service-wrapper section:hover::after { width: 100%; }

.service-wrapper p:first-of-type { position: relative; overflow: hidden; height: 240px; }
.service-wrapper p:first-of-type img { width:100%; height:100%; object-fit:cover; display:block; transition: transform 0.8s var(--ease); }
.service-wrapper section:hover p:first-of-type img { transform: scale(1.08); }
.service-wrapper p:first-of-type::after { content:''; position:absolute; inset:0; background:linear-gradient(to bottom, transparent 50%, rgba(14,10,7,0.4) 100%); pointer-events:none; }

.service h3 { font-family: var(--f-display); font-size: 1.4rem; letter-spacing: 0.1em; color: var(--ink); margin: 20px 20px 10px; }
.service-txt { font-size: 13px; line-height: 1.85; color: var(--muted); padding: 0 20px 24px; font-weight: 300; }

/* Animations for service images */
.service-wrapper img { opacity: 0; }
.service-wrapper img.fadeIn { animation: fadeInAnime 1s ease-in-out forwards; }

/* ══════════════════════════════════════════
   STAFF — FULL DARK
══════════════════════════════════════════ */
.staff {
  background: var(--ink);
  padding: 120px 0 80px;
  position: relative; overflow: hidden;
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
  margin: -3% 0;
}

/* Animated radial glow */
.staff::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(200,144,60,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 50%, rgba(184,74,26,0.08) 0%, transparent 50%);
  animation: staffGlow 6s ease-in-out infinite alternate;
}
@keyframes staffGlow {
  0%   { opacity: 0.5; }
  100% { opacity: 1; }
}

.staff-header { text-align: center; padding: 4% 20px 60px; position: relative; z-index: 1; }
.staff-header h2 {
  font-family: var(--f-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 400; letter-spacing: 0.1em; line-height: 0.9;
  color: var(--cream);
}
.staff-header h2 em { color: var(--gold); font-style: normal; display: block; }

.staff .container { position: relative; z-index: 1; }

.staff-list {
  display: flex; gap: 0; justify-content: center;
  flex-wrap: wrap; margin: 0 -12px;
}

.staff-list > section {
  margin: 12px; width: 180px;
  position: relative; text-align: center;
  transition: transform 0.4s var(--ease);
}
.staff-list > section:hover { transform: translateY(-12px); }

.staff-image { position: relative; display: block; overflow: hidden; }
.staff-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(14,10,7,0.7) 100%);
  opacity: 0; transition: opacity 0.4s;
}
.staff-list > section:hover .staff-image::after { opacity: 1; }

.staff-image img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
  border: 2px solid rgba(200,144,60,0.25);
  transition: border-color 0.4s;
  display: block;
}
.staff-list > section:hover .staff-image img { border-color: var(--gold); }

.staff-list h3 { font-family: var(--f-serif); font-size: 13px; margin: 14px 0 4px; color: var(--cream); letter-spacing: 0.04em; line-height: 1.4; }
.staff-list h3 span { font-family: var(--f-jp); font-size: 16px; display: block; color: var(--gold2); font-style: normal; }
.staff-role { font-family: var(--f-jp); font-size: 11px; color: rgba(247,242,232,0.4); letter-spacing: 0.15em; }
.staff-list a { display: flex; flex-direction: column; align-items: center; color: inherit; }
.staff-list a:hover { opacity: 1; }

.staff-big-word {
  position: absolute; bottom: calc(3% + 10px); right: -20px;
  font-family: var(--f-jp); font-weight: 700;
  font-size: clamp(80px, 12vw, 180px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,144,60,0.05);
  line-height: 1; pointer-events: none; user-select: none;
}

/* ══════════════════════════════════════════
   ACCESS
══════════════════════════════════════════ */
.access {
  background: var(--cream);
  padding: 140px 0 0;
  position: relative; overflow: hidden;
}

.access-inner {
  display: flex; flex-direction: column;
  width: min(90%, 1100px); margin: 0 auto 0;
}
.access-img-wrap { width: 100%; overflow: hidden; position: relative; max-height: 500px; }
.access-img-wrap img { width:100%; height:100%; object-fit:cover; object-position:40% center; display:block; transition: transform 1s var(--ease); }
.access-img-wrap:hover img { transform: scale(1.03); }

.access-wrapper {
  background: var(--ink); padding: 56px 48px 48px;
  position: relative; overflow: hidden;
}
.access-wrapper::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 4px; height: 100%; background: var(--gold);
}

.access h2 {
  font-family: var(--f-display); font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400; letter-spacing: 0.1em; color: var(--cream);
  margin-bottom: 32px; padding-bottom: 24px;
  border-bottom: 1px solid rgba(200,144,60,0.2);
}

.access-wrapper dl { margin-bottom: 32px; }
.access-wrapper dt { font-family: var(--f-jp); font-size: 11px; letter-spacing: 0.3em; color: var(--gold2); margin-bottom: 4px; margin-top: 16px; font-weight: 700; }
.access-wrapper dt:first-child { margin-top: 0; }
.access-wrapper dd { font-size: 15px; color: rgba(247,242,232,0.8); line-height: 1.7; font-weight: 300; }

.access-btn { background: transparent; border: 2px solid var(--gold); line-height: 44px; margin-top: 32px; transition: background .3s; }
.access-btn:hover { background: var(--gold); }
.access-btn a { border:none; background:transparent; color:var(--gold2); height:100%; position:relative; text-align:center; transition:all .3s; width:100%; }
.access-btn .text { font-family:var(--f-jp); font-size:13px; letter-spacing:.12em; color:var(--gold2); padding-left:70px; position:relative; transition:color .3s; width:fit-content; }
.access-btn:hover .text { color: var(--ink); }
.access-btn .text::before { background: url(../img/hotpepper-logo.svg) no-repeat; content:""; display:inline-block; height:35px; position:absolute; top:5px; left:20px; width:35px; }
.access-btn a::before { background:var(--gold); content:''; height:1px; position:absolute; top:calc(50% - 2px); right:1em; transform:translateY(calc(-50% - 2px)) rotate(30deg); width:12px; transition:.3s; }
.access-btn a::after  { background:var(--gold); content:''; height:1px; position:absolute; top:50%; right:1em; transform:translateY(-50%); width:60px; transition:.3s; }
.access-btn a:hover::after  { right:.5em; background: var(--ink); }
.access-btn a:hover::before { right:.5em; background: var(--ink); width:.9375rem; }
.access-btn a .top-key    { background:var(--ink); height:3px; position:absolute; top:-3px; left:.625rem; width:1.5625rem; transition:width .5s, left .3s; }
.access-btn a .bottom-key-1 { background:var(--ink); height:3px; position:absolute; right:1.875rem; bottom:-3px; width:1.5625rem; transition:width .5s, right .3s; }
.access-btn a:hover .top-key    { left:-2px; width:0; background:var(--gold); }
.access-btn a:hover .bottom-key-1 { right:0; width:0; background:var(--gold); }

.google-map { height: 460px; width: 100%; border-top: 4px solid var(--gold); margin-top: 0; }
.google-map iframe { height: 100%; width: 100%; filter: sepia(0.15) contrast(0.95); display: block; }

@media screen and (min-width: 835px) {
  .access-inner { flex-direction: row; }
  .access-img-wrap { width: 50%; max-height: none; }
  .access-wrapper { width: 50%; }
}

/* ══════════════════════════════════════════
   RECRUIT
══════════════════════════════════════════ */
.recruit {
  background: var(--cream);
  position: relative; overflow: hidden;
  padding: 100px 0;
}

.recruit-inner {
  display: flex; flex-direction: column;
  width: min(90%, 1100px); margin: 0 auto;
}

.recruit-image { width: 100%; overflow: hidden; position: relative; }
.recruit-image::after {
  content: 'RECRUIT'; position: absolute; bottom: 0; left: 0;
  font-family: var(--f-display); font-size: 80px; letter-spacing: 0.1em;
  color: transparent; -webkit-text-stroke: 1px rgba(200,144,60,0.3);
  line-height: 1; padding: 0 20px 10px; pointer-events: none;
}
.recruit-image img { width:100%; height:100%; object-fit:cover; min-height: 360px; display:block; transition: transform 1s var(--ease); }
.recruit-image:hover img { transform: scale(1.03); }

.recruit-content {
  background: var(--gold); padding: 56px 48px;
  position: relative; overflow: hidden;
}
.recruit-content::before {
  content: '採用'; position: absolute; bottom: -10px; right: -10px;
  font-family: var(--f-jp); font-weight: 700; font-size: 160px;
  color: rgba(14,10,7,0.07); line-height: 1;
  pointer-events: none; user-select: none;
}

.recruit-content .section-eyebrow { color: rgba(14,10,7,0.6); }

.recruit-content h2 {
  font-family: var(--f-display); font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400; letter-spacing: 0.05em; line-height: 0.9;
  color: var(--ink); margin-bottom: 28px;
}
.recruit-content h2 em { font-style: normal; display: block; }

.recruit-content p { font-size: 14px; line-height: 1.9; color: rgba(14,10,7,0.75); font-weight: 300; }

.recruit-btn { background: var(--ink); border: 2px solid var(--ink); margin: 32px 0 0; height: 52px; text-align: center; transition: background .3s; }
.recruit-btn:hover { background: transparent; }
.recruit-btn .text { font-family:var(--f-jp); font-size:13px; letter-spacing:.15em; color:var(--cream); line-height:46px; transition:color .3s; }
.recruit-btn:hover .text { color: var(--ink); }
.recruit-btn a { border:none; background:transparent; height:100%; position:relative; text-align:center; transition:all .3s; }
.recruit-btn a::before { background:var(--gold); content:''; height:1px; position:absolute; top:calc(50% - 2px); right:1em; transform:translateY(calc(-50% - 2px)) rotate(30deg); width:12px; transition:.3s; }
.recruit-btn a::after  { background:var(--gold); content:''; height:1px; position:absolute; top:50%; right:1em; transform:translateY(-50%); width:50px; transition:.3s; }
.recruit-btn a:hover::after  { right:.5em; }
.recruit-btn a:hover::before { right:.5em; width:.9375rem; }
.recruit-btn a .top-key    { background:var(--gold); height:3px; position:absolute; top:-3px; left:.625rem; width:1.5625rem; transition:width .5s, left .3s; }
.recruit-btn a .bottom-key-1 { background:var(--gold); height:3px; position:absolute; right:1.875rem; bottom:-3px; width:1.5625rem; transition:width .5s, right .3s; }
.recruit-btn a:hover .top-key    { left:-2px; width:0; }
.recruit-btn a:hover .bottom-key-1 { right:0; width:0; }

@media screen and (min-width: 744px) {
  .recruit-inner { flex-direction: row; }
  .recruit-image { width: 55%; }
  .recruit-content { width: 45%; }
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--ink);
  border-top: 3px solid var(--gold);
  position: relative; overflow: hidden;
}
.footer::before {
  content: 'LUPUS';
  position: absolute; bottom: -20px; left: -10px;
  font-family: var(--f-display); font-size: 180px; letter-spacing: -0.02em;
  color: transparent; -webkit-text-stroke: 1px rgba(200,144,60,0.05);
  line-height: 1; pointer-events: none; user-select: none;
}

.footer-inner {
  padding: 60px 40px 48px;
  text-align: center; position: relative; z-index: 1;
}
.footer-logo {
  font-family: var(--f-display); font-size: clamp(3rem, 6vw, 5rem);
  color: var(--gold2); letter-spacing: 0.3em;
  margin-bottom: 8px;
}
.footer-sub {
  font-family: var(--f-jp); font-size: 11px; letter-spacing: 0.4em;
  color: rgba(200,144,60,0.5); margin-bottom: 32px;
}
.footer-copy small { font-size: 11px; letter-spacing: 0.15em; color: rgba(247,242,232,0.25); font-family: var(--f-serif); }

/* ══════════════════════════════════════════
   LOADING
══════════════════════════════════════════ */
#loading { background: var(--ink); height:100vh; position:fixed; top:0; left:0; z-index:9999; transition:all 3s; width:100vw; }
.fadeOut { animation: fadeOut 3s ease-out 1.5s 1 normal both; background: url(../img/load.svg) no-repeat center; filter: invert(1) sepia(1) saturate(2) hue-rotate(5deg) brightness(1.2); height:300px; position:fixed; top:50%; left:50%; transform:translate(-47%,-50%); width:300px; }
.loaded { opacity:0; visibility:hidden; }

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
.catchCopyAnimation { animation: firstViewAnime 2.5s ease-in-out 1 normal forwards; opacity:0; }
.fadeIn { animation: fadeInAnime 1.2s ease-in-out 1 normal forwards; opacity:0; }
.delay01 { animation-delay: 1.25s; }
.delay02 { animation-delay: 2.25s; }
.delay03,.delay04,.delay05,.delay06,.delay07,.delay08 { animation-delay: 0.25s; }

@media screen and (min-width:600px) {
  .delay03,.delay05,.delay07 { animation-delay: 0.5s; }
  .delay04,.delay06,.delay08 { animation-delay: 0.75s; }
}
@media screen and (min-width:928px) {
  .delay03,.delay06 { animation-delay: 0.25s; }
  .delay04,.delay07 { animation-delay: 0.75s; }
  .delay05,.delay08 { animation-delay: 0.5s; }
}

@keyframes mv-animation { 0%{opacity:0} 25%{opacity:1} 75%{opacity:1} 100%{opacity:0;z-index:0} }
@keyframes firstViewAnime { 0%{opacity:0;transform:translate(0,16px)} 100%{opacity:1;transform:translate(0,0)} }
@keyframes fadeInAnime { 0%{opacity:0;transform:translate(0,32px)} 100%{opacity:1;transform:translate(0,0)} }
@keyframes fadeOut { 0%{opacity:1} 40%{opacity:1} 100%{opacity:0} }

/* ══════════════════════════════════════════
   RECRUIT PAGE
══════════════════════════════════════════ */
#guidelines .recruit-text-wrapper { aspect-ratio:16/9; background:url(../img/recuit-mainvis.webp) no-repeat center/cover; max-width:750px; margin:60px auto 0; position:relative; overflow:hidden; }
#guidelines .recruit-text { color:#fff; position:absolute; top:10%; left:45%; width:40vw; }
#guidelines .recruit-text h2 { font-family:var(--f-display); font-size:clamp(1.875rem,0.945rem + 4.65vw,3.125rem); margin-bottom:10px; color:var(--gold2); }
#guidelines .recruit-text p { font-size:16px; line-height:1.6; }
#guidelines .guidelines-contents { background:var(--cream2); }
#guidelines .container { margin:0 auto; padding:50px 0; width:min(90%,960px); }
#guidelines .salon { background:#f5f0e8; }
#guidelines .salon h3 { font-family:var(--f-jp); font-weight:700; color:var(--gold); margin:0 0 15px; padding-left:7px; }
#guidelines .statue { border:2px solid var(--gold); padding:20px 30px; margin:30px 0 0; }
#guidelines h4 { border-bottom:1px solid var(--gold); font-family:var(--f-jp); font-size:20px; font-weight:normal; margin-bottom:15px; padding-bottom:15px; }
#guidelines h4 span { color:var(--gold); margin-right:10px; }
#guidelines .salon p { line-height:1.6; }
#guidelines .wrapper { padding:0; }
#guidelines h3 { border-left:6px solid var(--gold); font-size:24px; margin:50px 0 15px; padding-left:12px; }
#guidelines .philosophy,#guidelines .greeting { display:grid; grid-template-columns:30% 70%; }
#guidelines .philosophy-txt,#guidelines .greeting-txt { line-height:1.6; margin-left:20px; }
#guidelines .guidelines-contents { margin-top:50px; }
#guidelines .guidelines-contents h3 { border-bottom:1px solid var(--border); border-left:0; font-size:28px; padding:0 0 30px; margin:0; }
#guidelines .container dl { display:grid; grid-template-columns:auto auto; padding-bottom:30px; }
#guidelines .container dt { border-bottom:1px solid var(--border); padding:10px 0; }
#guidelines .container dd { margin-left:1em; padding:10px 0; position:relative; }
#guidelines .container dd::before { content:""; border-bottom:var(--border) 1px solid; position:absolute; bottom:0; left:-1em; width:calc(100% + 1em); }
#guidelines li { line-height:1.6; }
@media screen and (min-width:475px) { #guidelines .recruit-text { top:25%; } }
@media screen and (width < 600px) { #guidelines .philosophy,#guidelines .greeting { display:block; } #guidelines .philosophy-txt,#guidelines .greeting-txt { margin:20px 0 0; } }

