:root {
  --ink: #3f3037;
  --muted: #806c75;
  --pink: #d96f95;
  --pink-deep: #a94368;
  --pink-pale: #fff0f4;
  --cream: #fffaf7;
  --lavender: #eee8f8;
  --gold: #b89463;
  --serif: "Noto Serif JP", serif;
  --round: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
}

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

html { max-width: 100%; overflow-x: clip; scroll-behavior: smooth; }

body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  color: var(--ink);
  background: var(--cream);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  z-index: 1000;
  inset: 0;
  pointer-events: none;
  border: 7px solid rgba(255,255,255,0.58);
  box-shadow: inset 0 0 0 1px rgba(217,111,149,0.15);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

.recruit-shell {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.recruit-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  gap: 34px;
  padding: 26px clamp(24px, 5vw, 72px);
}

.recruit-brand,
.recruit-footer a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--serif);
  letter-spacing: 0.12em;
}

.recruit-brand small,
.recruit-footer small { font-size: 9px; letter-spacing: 0.27em; }
.recruit-brand strong,
.recruit-footer strong { font-size: 25px; font-weight: 400; }

.recruit-header nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.recruit-header nav a { position: relative; padding-block: 8px; }
.recruit-header nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: var(--pink);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.recruit-header nav a:hover::after { transform: scaleX(1); }

.header-back {
  padding: 10px 16px;
  border: 1px solid rgba(63,48,55,0.2);
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: 0.09em;
}

.recruit-hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  padding: 140px 0 100px;
  background:
    radial-gradient(circle at 8% 22%, rgba(255,255,255,0.95) 0 2px, transparent 2.5px) 0 0 / 38px 38px,
    linear-gradient(135deg, #fffaf8 0 46%, #fae8ee 46% 72%, #eadff5 72% 100%);
}

.recruit-hero::before {
  content: "";
  position: absolute;
  top: -230px;
  left: -170px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(217,111,149,0.17);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255,255,255,0.19), 0 0 0 110px rgba(255,255,255,0.12);
}

.hero-dots {
  position: absolute;
  top: 17%;
  right: 4%;
  width: 150px;
  height: 150px;
  opacity: 0.38;
  background: radial-gradient(circle, #c17494 0 2px, transparent 2.5px) 0 0 / 17px 17px;
}

.hero-heart {
  position: absolute;
  color: rgba(181,85,121,0.25);
  font-family: var(--serif);
  font-size: 88px;
  line-height: 1;
}
.heart-one { top: 21%; left: 43%; transform: rotate(-14deg); }
.heart-two { right: 4%; bottom: 16%; font-size: 48px; transform: rotate(13deg); }

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
}

.hero-label,
.section-kicker {
  margin: 0 0 25px;
  color: var(--pink-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
}
.hero-label span { display: inline-block; margin-right: 14px; padding: 6px 11px; color: white; background: var(--pink); border-radius: 999px; font-size: 9px; }

.hero-copy h1 {
  margin: 0;
  font-family: var(--round);
  font-size: clamp(48px, 6.1vw, 78px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.28;
}
.hero-copy h1 small { display: block; margin-bottom: 12px; color: #78616b; font-size: clamp(18px, 2vw, 26px); font-weight: 400; }
.hero-copy h1 em { position: relative; color: var(--pink-deep); font-style: normal; }
.hero-copy h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -7px;
  bottom: 2px;
  left: -7px;
  height: 21px;
  background: rgba(255,202,217,0.72);
  border-radius: 50%;
  transform: rotate(-2deg);
}

.hero-message { margin: 28px 0; color: var(--muted); font-family: var(--round); font-size: 14px; line-height: 2; }

.hero-pay { display: flex; gap: 10px; margin-bottom: 28px; }
.hero-pay > div {
  min-width: 185px;
  padding: 15px 18px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(180,101,130,0.18);
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(136,81,104,0.08);
}
.hero-pay span { display: block; margin-bottom: 4px; color: var(--muted); font-size: 9px; }
.hero-pay strong { color: var(--pink-deep); font-family: "Cormorant Garamond", var(--serif); font-size: 29px; line-height: 1; }
.hero-pay strong small { font-family: var(--round); font-size: 9px; }

.primary-button {
  display: inline-flex;
  min-width: 285px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 20px 18px 27px;
  color: white;
  background: linear-gradient(135deg, #dc789a, #ad456c);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(169,67,104,0.23);
  font-family: var(--round);
  font-size: 13px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.primary-button:hover { transform: translateY(-3px); box-shadow: 0 21px 40px rgba(169,67,104,0.3); }
.primary-button i { display: grid; width: 31px; height: 31px; place-items: center; color: var(--pink-deep); background: white; border-radius: 50%; font-style: normal; }

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 18px 24px;
}

.hero-chibi-stage {
  position: relative;
  width: min(510px, 100%);
  aspect-ratio: 1;
  margin-left: auto;
  isolation: isolate;
}

.hero-chibi-stage::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 10% 5% 3%;
  background: radial-gradient(circle at 50% 43%, rgba(255,255,255,0.96), rgba(255,234,241,0.78) 59%, rgba(230,218,246,0.22) 72%, transparent 73%);
  border-radius: 50%;
  filter: drop-shadow(0 27px 45px rgba(112,66,87,0.13));
}

.hero-main-chibi {
  position: absolute;
  z-index: 2;
  inset: 1% 3% 0 3%;
  width: 94%;
  height: 94%;
  object-fit: contain;
  filter: drop-shadow(0 22px 25px rgba(80,43,61,0.16));
}

.chibi-halo {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(190,116,146,0.24);
  border-radius: 50%;
}
.halo-one { inset: 8%; }
.halo-two { inset: 18%; border-style: dashed; transform: rotate(13deg); }

.photo-ribbon {
  position: relative;
  z-index: 5;
  width: 235px;
  margin: -34px 0 0 auto;
  padding: 14px 32px 16px;
  color: white;
  background: rgba(177,72,110,0.93);
  box-shadow: 0 12px 28px rgba(114,58,79,0.2);
  font-family: var(--round);
  text-align: center;
  transform: rotate(-3deg);
}
.photo-ribbon::before,
.photo-ribbon::after { content: ""; position: absolute; top: 50%; width: 20px; height: 20px; background: inherit; transform: translateY(-50%) rotate(45deg); }
.photo-ribbon::before { left: -9px; }
.photo-ribbon::after { right: -9px; }
.photo-ribbon span { display: block; font-size: 9px; }
.photo-ribbon strong { font-size: 20px; letter-spacing: 0.1em; }

.hero-sticker {
  position: absolute;
  top: 11%;
  left: -10px;
  display: grid;
  width: 104px;
  height: 104px;
  place-content: center;
  color: var(--pink-deep);
  background: #fff9df;
  border: 2px dashed rgba(181,112,76,0.38);
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(107,70,84,0.12);
  font-family: var(--round);
  text-align: center;
  transform: rotate(-9deg);
}
.hero-sticker span, .hero-sticker small { font-family: "Cormorant Garamond", serif; font-size: 9px; letter-spacing: 0.16em; }
.hero-sticker strong { display: block; font-size: 22px; }

.chibi-sticker {
  position: absolute;
  z-index: 4;
  width: 88px;
  margin: 0;
  pointer-events: none;
  filter: drop-shadow(0 10px 13px rgba(101, 48, 73, 0.18));
}

.chibi-sticker img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.lace-edge {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 22px;
  background: radial-gradient(circle at 11px 0, transparent 0 10px, var(--cream) 10.5px) 0 0 / 22px 22px repeat-x;
}

.intro-section { position: relative; overflow: hidden; padding: 120px 0; text-align: center; }
.intro-inner { position: relative; z-index: 2; max-width: 800px; }
.chibi-intro {
  z-index: 0;
  top: 50%;
  left: 7%;
  width: 340px;
  opacity: 0.075;
  filter: none;
  transform: translateY(-50%) rotate(-7deg);
}
.intro-section h2,
.section-heading h2,
.atmosphere-copy h2,
.contact-inner h2 {
  margin: 0;
  font-family: var(--round);
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 500;
  letter-spacing: 0.035em;
  line-height: 1.55;
}
.title-line { display: block; white-space: nowrap; }
.keep-line { white-space: nowrap; }
.conditions-mobile-break { display: none; }
.intro-section h2 { color: var(--pink-deep); }
.intro-section h2::after { content: "♡"; display: block; margin: 18px auto; color: #dfa0b6; font-family: var(--serif); font-size: 25px; }
.intro-section p:last-child { margin: 0; color: var(--muted); font-family: var(--round); font-size: 13px; line-height: 2.3; }

.conditions-section { position: relative; padding: 130px 0; background: #f5eff9; }
.conditions-section .recruit-shell { position: relative; }
.conditions-heading { gap: clamp(25px, 5vw, 70px); }
.conditions-title-group {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: clamp(16px, 2.5vw, 34px);
}
.chibi-conditions {
  position: relative;
  right: auto;
  bottom: auto;
  flex: 0 0 auto;
  width: 144px;
  transform: rotate(7deg);
}
.conditions-section::before,
.conditions-section::after { content: ""; position: absolute; left: 0; width: 100%; height: 16px; background: radial-gradient(circle at 8px 8px, var(--cream) 0 7px, transparent 7.5px) 0 0 / 16px 16px repeat-x; }
.conditions-section::before { top: 0; }
.conditions-section::after { bottom: 0; transform: rotate(180deg); }

.section-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 50px; }
.section-heading .section-kicker { margin-bottom: 13px; }
.section-heading.centered { display: block; text-align: center; }

.pay-cards { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 16px; }
.pay-card {
  position: relative;
  min-height: 235px;
  overflow: hidden;
  padding: 38px 40px;
  color: #634557;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(167,116,144,0.17);
  border-radius: 25px;
  box-shadow: 0 17px 50px rgba(93,64,99,0.07);
}
.pay-card::after { content: "♡"; position: absolute; right: 28px; bottom: -30px; color: rgba(206,125,157,0.12); font-family: var(--serif); font-size: 150px; }
.pay-card.main-pay { color: white; background: linear-gradient(135deg, #d9799c, #aa4169); }
.pay-card p { position: relative; z-index: 1; margin: 0 0 17px; font-family: var(--round); font-size: 12px; }
.pay-card strong { position: relative; z-index: 1; font-family: "Cormorant Garamond", var(--serif); font-size: clamp(42px, 6vw, 71px); font-weight: 600; line-height: 0.95; }
.pay-card strong span { font-family: var(--round); font-size: 13px; font-weight: 500; }
.pay-card strong b { font-size: clamp(50px, 6vw, 74px); font-weight: 600; }
.pay-note { margin: 13px 5px 55px; color: #907e88; font-size: 9px; }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.benefit-card { padding: 29px 25px; background: rgba(255,255,255,0.64); border: 1px solid rgba(166,119,142,0.13); border-radius: 18px; }
.benefit-icon { display: grid; width: 37px; height: 37px; margin-bottom: 22px; place-items: center; color: white; background: #d886a4; border-radius: 50%; font-family: "Cormorant Garamond", serif; font-size: 11px; }
.benefit-card h3 { margin: 0 0 10px; font-family: var(--round); font-size: 17px; font-weight: 500; }
.benefit-card p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.9; }

.atmosphere-section { position: relative; padding: 150px 0 130px; overflow: hidden; }
.atmosphere-layout { display: grid; grid-template-columns: 0.77fr 1.23fr; align-items: center; gap: 8vw; }
.atmosphere-copy p:last-child { max-width: 430px; margin: 30px 0 0; color: var(--muted); font-family: var(--round); font-size: 12px; line-height: 2.2; }
.cast-collage { position: relative; min-height: 570px; }
.cast-photo { position: absolute; margin: 0; overflow: hidden; border: 8px solid white; border-radius: 46% 46% 26px 26px; box-shadow: 0 25px 65px rgba(103,67,83,0.15); }
.cast-photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-one { top: 0; left: 0; width: 59%; aspect-ratio: 0.81; transform: rotate(-3deg); }
.photo-two { right: 0; bottom: 0; width: 49%; aspect-ratio: 0.82; transform: rotate(4deg); }
.chibi-riara {
  top: 57%;
  left: 4%;
  width: 176px;
  transform: rotate(-6deg);
}
.collage-copy { position: absolute; right: 30px; top: 23px; color: rgba(169,67,104,0.42); font-family: "Cormorant Garamond", serif; font-size: 14px; letter-spacing: 0.2em; text-align: right; }
.collage-copy b { font-size: 27px; font-weight: 500; }

.flow-section { position: relative; padding: 130px 0; background: #fff3f5; }
.chibi-flow {
  top: 50%;
  right: 8px;
  width: 76px;
  transform: translateY(-50%) rotate(4deg);
}
.flow-card-chibi { padding-right: 91px !important; }
.flow-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin: 65px 0 35px; padding: 0; list-style: none; }
.flow-list li { position: relative; padding: 0 27px 34px; border-left: 1px dashed rgba(186,105,136,0.34); }
.flow-list li:last-child { border-right: 1px dashed rgba(186,105,136,0.34); }
.flow-list > li > span { display: block; margin-bottom: 27px; color: var(--pink); font-family: "Cormorant Garamond", serif; font-size: 43px; }
.flow-list h3 { margin: 0 0 13px; font-family: var(--round); font-size: 17px; font-weight: 500; }
.flow-list p { margin: 0; color: var(--muted); font-size: 10px; line-height: 2; }
.age-note { margin: 0; color: #88757e; font-size: 9px; text-align: center; }

.contact-section { position: relative; padding: 145px 0 130px; color: white; background: linear-gradient(135deg, #9e3c62, #6f2d4e); text-align: center; }
.contact-section::after { content: "♡"; position: absolute; right: 6%; bottom: -90px; color: rgba(255,255,255,0.05); font-family: var(--serif); font-size: 310px; }
.contact-lace { position: absolute; top: 0; right: 0; left: 0; height: 24px; background: radial-gradient(circle at 12px 0, transparent 0 11px, #fff3f5 11.5px) 0 0 / 24px 24px repeat-x; }
.contact-inner { position: relative; z-index: 2; }
.contact-inner .section-kicker { color: #f4bfd1; }
.contact-inner > p:not(.section-kicker) { margin: 23px 0 35px; color: rgba(255,255,255,0.7); font-family: var(--round); font-size: 12px; }
.contact-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; width: min(700px, 100%); margin: 0 auto; }
.contact-phone,
.contact-instagram { display: flex; min-height: 110px; align-items: center; justify-content: center; padding: 20px; background: white; border-radius: 17px; transition: transform 0.3s ease; }
.contact-phone:hover,
.contact-instagram:hover { transform: translateY(-4px); }
.contact-phone { flex-direction: column; color: var(--pink-deep); }
.contact-phone small { font-size: 9px; }
.contact-phone strong { font-family: "Cormorant Garamond", serif; font-size: 30px; letter-spacing: 0.05em; }
.contact-phone span { font-family: var(--round); font-size: 9px; }
.contact-instagram { gap: 14px; color: white; background: linear-gradient(135deg, #7d42c4, #d84683 55%, #ee9a48); text-align: left; }
.contact-instagram svg { width: 31px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.contact-instagram span { display: flex; flex-direction: column; }
.contact-instagram strong { font-family: "Cormorant Garamond", serif; font-size: 24px; font-weight: 600; }
.contact-instagram small { font-family: var(--round); font-size: 9px; }
.contact-inner address { margin-top: 45px; color: rgba(255,255,255,0.58); font-size: 9px; font-style: normal; line-height: 2; }

.recruit-footer { display: flex; align-items: center; justify-content: space-between; padding: 34px clamp(24px, 6vw, 80px) 36px; color: #947f89; background: #fffaf7; font-size: 8px; }

.sticky-entry { position: fixed; z-index: 70; right: 22px; bottom: 20px; display: flex; overflow: hidden; border: 5px solid rgba(255,255,255,0.82); border-radius: 999px; box-shadow: 0 14px 36px rgba(92,45,67,0.22); }
.sticky-entry a { display: flex; min-height: 54px; align-items: center; justify-content: center; padding: 0 23px; color: var(--pink-deep); background: white; font-family: var(--round); font-size: 10px; }
.sticky-entry a:last-child { gap: 10px; color: white; background: linear-gradient(135deg, #db789a, #a94168); }
.sticky-entry b { font-family: var(--serif); font-size: 17px; }

.reveal { transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2,0.75,0.2,1); }
.has-reveal .reveal { opacity: 0; transform: translateY(25px); }
.has-reveal .reveal.is-visible { opacity: 1; transform: translateY(0); }
.benefit-card:nth-child(2), .flow-list li:nth-child(2) { transition-delay: 0.08s; }
.benefit-card:nth-child(3), .flow-list li:nth-child(3) { transition-delay: 0.16s; }
.benefit-card:nth-child(4), .flow-list li:nth-child(4) { transition-delay: 0.24s; }
.benefit-card:nth-child(5) { transition-delay: 0.32s; }
.benefit-card:nth-child(6) { transition-delay: 0.4s; }

.mobile-only { display: none; }

@media (max-width: 900px) {
  .recruit-header nav { display: none; }
  .recruit-header { gap: 15px; }
  .header-back { margin-left: auto; }
  .hero-layout { grid-template-columns: 1fr 0.9fr; gap: 28px; }
  .hero-copy h1 { font-size: clamp(41px, 7vw, 63px); }
  .hero-pay { flex-direction: column; max-width: 270px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .atmosphere-layout { grid-template-columns: 1fr 1.15fr; gap: 35px; }
  .cast-collage { min-height: 470px; }
  .flow-list { grid-template-columns: 1fr 1fr; row-gap: 35px; }
  .flow-list li:nth-child(2) { border-right: 1px dashed rgba(186,105,136,0.34); }
}

@media (max-width: 640px) {
  body { padding-bottom: 67px; }
  body::before { border-width: 4px; }
  .recruit-shell { width: min(100% - 36px, 520px); }
  .recruit-header { padding: 18px 19px; }
  .recruit-brand strong { font-size: 21px; }
  .header-back { padding: 8px 12px; font-size: 8px; }
  .recruit-hero { min-height: auto; padding: 108px 0 78px; background: linear-gradient(160deg, #fffaf8 0 39%, #fae8ee 39% 75%, #eadff5 75% 100%); }
  .recruit-hero::before { top: -320px; left: -340px; }
  .hero-layout { display: flex; flex-direction: column; gap: 38px; }
  .hero-copy { position: relative; z-index: 3; width: 100%; }
  .hero-label { margin-bottom: 18px; font-size: 9px; }
  .hero-copy h1 { font-size: clamp(40px, 13vw, 58px); line-height: 1.25; }
  .hero-copy h1 small { font-size: 16px; }
  .hero-message { margin: 20px 0; font-size: 11px; }
  .hero-pay { display: grid; grid-template-columns: 1fr 1fr; max-width: none; }
  .hero-pay > div { min-width: 0; padding: 13px 11px; }
  .hero-pay strong { font-size: clamp(20px, 7vw, 29px); }
  .primary-button { width: 100%; min-width: 0; }
  .hero-visual { width: 100%; align-self: center; padding: 0; }
  .hero-chibi-stage { width: min(310px, 90vw); margin: 0 auto; }
  .hero-main-chibi { inset: 0 2% 0; width: 96%; height: 96%; }
  .hero-sticker { top: 12px; left: -4px; width: 79px; height: 79px; }
  .hero-sticker strong { font-size: 18px; }
  .photo-ribbon { width: 210px; margin: -23px auto 0; padding: 11px 24px 13px; }
  .intro-section { padding: 85px 0; }
  .chibi-intro { top: 51%; left: 30px; width: 245px; opacity: 0.065; }
  .intro-section h2, .section-heading h2, .atmosphere-copy h2, .contact-inner h2 { font-size: clamp(27px, 9vw, 38px); }
  .intro-section h2 { font-size: clamp(28px, 8.2vw, 32px); }
  .intro-section p:last-child { font-size: 11px; text-align: left; }
  .mobile-only { display: block; }
  .conditions-section { padding: 90px 0; }
  .conditions-heading { display: block; }
  .conditions-heading .section-kicker { margin: 0 0 14px; line-height: 1.6; }
  .conditions-title-group { width: 100%; justify-content: space-between; gap: 7px; }
  .conditions-title-group h2 { font-size: 27px; line-height: 1.48; }
  .conditions-mobile-break { display: block; }
  .chibi-conditions { width: 102px; }
  .section-heading { margin-bottom: 35px; }
  .pay-cards { grid-template-columns: 1fr; }
  .pay-card { min-height: 185px; padding: 29px 25px; }
  .pay-card strong { font-size: 48px; }
  .pay-card strong b { font-size: 54px; }
  .pay-note { margin-bottom: 38px; line-height: 1.7; }
  .benefit-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .benefit-card { padding: 22px 16px; }
  .benefit-icon { margin-bottom: 16px; }
  .benefit-card h3 { font-size: 14px; }
  .benefit-card p { font-size: 9px; }
  .atmosphere-section { padding: 95px 0 85px; }
  .atmosphere-layout { display: flex; flex-direction: column; align-items: stretch; gap: 45px; }
  .atmosphere-copy p:last-child { font-size: 11px; }
  .cast-collage { min-height: 420px; }
  .photo-one { width: 65%; }
  .photo-two { width: 53%; }
  .chibi-riara { top: 54%; left: 3%; width: 152px; }
  .collage-copy { top: 9px; right: 7px; }
  .flow-section { padding: 90px 0; }
  .flow-list { grid-template-columns: 1fr; gap: 0; margin: 45px 0 30px; }
  .flow-list li, .flow-list li:nth-child(2), .flow-list li:last-child { display: grid; grid-template-columns: 54px 1fr; gap: 13px; padding: 24px 0; border: 0; border-top: 1px dashed rgba(186,105,136,0.34); }
  .flow-list .flow-card-chibi { padding-right: 71px !important; }
  .chibi-flow { right: 4px; width: 58px; }
  .flow-list li:last-child { border-bottom: 1px dashed rgba(186,105,136,0.34); }
  .flow-list > li > span { margin: 0; font-size: 34px; }
  .flow-list h3 { margin-bottom: 8px; }
  .contact-section { padding: 105px 0 85px; }
  .contact-buttons { grid-template-columns: 1fr; }
  .contact-phone, .contact-instagram { min-height: 92px; }
  .recruit-footer { padding-bottom: 30px; }
  .sticky-entry { right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 0.8fr 1.2fr; border: 0; border-radius: 0; }
  .sticky-entry a { min-height: 67px; padding: 0 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
