﻿:root {
  --ink: #172028;
  --muted: #68727d;
  --line: #dfe5e7;
  --paper: #f7f8f6;
  --white: #ffffff;
  --green: #28584f;
  --green-dark: #173e38;
  --gold: #d59734;
  --blue: #2d6478;
  --shadow: 0 24px 70px rgba(22, 32, 40, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  line-height: 1.8;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

img,
svg {
  max-width: 100%;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(181, 138, 69, 0.1), transparent 38%),
    var(--green-dark);
  color: var(--white);
  animation: loaderOut 0.8s ease 3.5s forwards;
}

.site-loader::after {
  display: none;
}

.loader-stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.loader-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  opacity: 0;
  filter: blur(50px);
  transform: translate(-50%, -50%);
  animation: loaderLogoIn 1s ease-in-out 1.5s forwards;
}

.loader-photo {
  position: absolute;
  z-index: 2;
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  border-radius: 6px;
  opacity: 0;
  filter: blur(30px);
  animation: loaderPhotoIn 1s ease-in-out forwards;
}

.photo-a {
  top: 90px;
  left: 260px;
  width: 108px;
  animation-delay: 1.2s;
}

.photo-b {
  top: 38px;
  right: 142px;
  width: 342px;
  animation-delay: 0.8s;
}

.photo-c {
  bottom: 137px;
  left: 28px;
  width: 224px;
  animation-delay: 0.8s;
}

.photo-d {
  bottom: 43px;
  right: 28px;
  width: 222px;
  animation-delay: 1.2s;
}

.loader-mark {
  display: grid;
  width: clamp(58px, 9vw, 92px);
  height: clamp(58px, 9vw, 92px);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.loader-logo strong {
  font-size: clamp(1.25rem, 3vw, 2.2rem);
  letter-spacing: 0.08em;
}

.loader-logo small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  padding: 0 clamp(20px, 4vw, 56px);
  color: var(--white);
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(23, 32, 40, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.25;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  font-size: 0.68rem;
  opacity: 0.72;
}

.global-nav {
  position: fixed;
  top: 0;
  right: clamp(20px, 4vw, 56px);
  z-index: 90;
  display: flex;
  align-items: center;
  height: 78px;
  gap: clamp(16px, 2vw, 30px);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 0.35s ease;
}

.global-nav.is-scrolled,
.global-nav.is-open {
  color: var(--ink);
}

.global-nav a {
  position: relative;
}

.global-nav a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.global-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  min-width: 136px;
  padding: 12px 24px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  text-align: center;
  box-shadow: 0 14px 30px rgba(213, 151, 52, 0.24);
}

.global-nav .nav-contact::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(36deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-36deg);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 140px clamp(20px, 6vw, 88px) 80px;
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 33, 35, 0.86), rgba(14, 33, 35, 0.32) 54%, rgba(14, 33, 35, 0.7)),
    url("../images/rbanner-hotel-cleaning-01.png") center/cover;
  transform: scale(1.06);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-bg::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(14, 33, 35, 0.86), rgba(14, 33, 35, 0.32) 54%, rgba(14, 33, 35, 0.7)),
    url("../images/rbanner-hotel-cleaning-02.png") center/cover;
  opacity: 0;
  animation: rbannerFade 10s ease-in-out infinite;
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  max-width: 760px;
  padding-bottom: 58px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size:1rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.hero h1,
.section-heading h2,
.recruit-copy h2 {
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 700;
  line-height: 1.25;
}

.hero h1 {
  font-size: clamp(2rem, 4.4vw, 4.25rem);
}

.hero-copy p:last-of-type {
  max-width: 620px;
  margin: 26px 0 0;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.3;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn.primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(181, 138, 69, 0.28);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.hero-panel {
  position: absolute;
  right: clamp(20px, 6vw, 88px);
  bottom: 52px;
  width: min(430px, calc(100% - 40px));
  padding: 0;
  overflow: hidden;
  border-left: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel span,
.hero-panel strong {
  display: block;
}

.hero-panel span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-panel strong {
  margin-top: 8px;
  font-size: 1.22rem;
  line-height: 1.5;
}

.hero-panel p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-news-main {
  padding: 24px 24px 20px;
  border-left: 3px solid var(--gold);
}

.hero-news time {
  display: block;
  margin-top: 10px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
}

.hero-news a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 900;
}

.hero-news a::after {
  content: "";
  width: 38px;
  height: 1px;
  align-self: center;
  margin-left: 10px;
  background: currentColor;
  transition: transform 0.25s ease;
  transform-origin: left;
}

.hero-news a:hover::after {
  transform: scaleX(1.35);
}

.hero-phone {
  display: grid;
  gap: 4px;
  padding: 18px 24px 20px;
  background: var(--green-dark);
  color: var(--white);
}

.hero-phone span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.hero-phone a {
  width: fit-content;
  margin: 0;
  color: var(--white);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-phone a::after {
  display: none;
}

.hero-phone small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.scroll-cue {
  position: absolute;
  left: clamp(20px, 4vw, 56px);
  bottom: 34px;
  writing-mode: vertical-rl;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.scroll-cue::after {
  display: block;
  width: 1px;
  height: 70px;
  margin: 12px auto 0;
  content: "";
  background: var(--white);
  animation: scrollLine 1.8s ease infinite;
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

section:not(.hero) {
  padding: clamp(72px, 10vw, 130px) 0;
}

.section-band {
  background: var(--white);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.section-heading h2,
.recruit-copy h2 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
}

.section-heading p:not(.section-kicker),
.recruit-copy p {
  margin: 20px 0 0;
  color: var(--muted);
}

.centered {
  margin: 0 auto 48px;
  text-align: center;
}

.company-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(46px, 8vw, 104px);
  align-items: center;
}

.company-preview-copy {
  max-width: 620px;
}

.company-preview-copy span {
  display: inline-flex;
  padding: 5px 9px;
  border: 1px solid var(--line);
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.company-preview-copy h2 {
  margin: clamp(28px, 4vw, 48px) 0 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  line-height: 1.42;
}

.company-preview-copy p {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 2;
}

.company-points {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.company-points div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.company-points div:last-child {
  border-bottom: 0;
}

.company-points strong {
  color: var(--gold);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.45rem;
  line-height: 1;
}

.company-points small {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
}

.company-preview-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 58px;
  margin-top: clamp(32px, 5vw, 54px);
  padding: 14px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(23, 32, 40, 0.08);
  font-weight: 900;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.company-preview-button:hover {
  transform: translateY(-3px);
  border-color: rgba(40, 88, 79, 0.3);
  box-shadow: 0 22px 54px rgba(23, 32, 40, 0.12);
}

.company-visual {
  position: relative;
  min-height: clamp(430px, 48vw, 650px);
}

.company-visual figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.company-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1s ease;
}

.company-visual figure:hover img {
  transform: scale(1.06);
}

.company-photo-main {
  top: 0;
  right: 0;
  width: 82%;
  height: 74%;
}

.company-photo-sub {
  left: 0;
  bottom: 0;
  width: 48%;
  height: 42%;
  border: 10px solid var(--white);
}

.company-note {
  position: absolute;
  right: clamp(18px, 4vw, 46px);
  bottom: clamp(24px, 5vw, 70px);
  width: min(280px, 48%);
  padding: 22px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(23, 32, 40, 0.12);
  backdrop-filter: blur(14px);
}

.company-note b,
.company-note span {
  display: block;
}

.company-note b {
  color: var(--green);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 2rem;
}

.company-note span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.craft {
  position: relative;
  overflow: hidden;
  background: #eef2ef;
}

.craft::before {
  position: absolute;
  top: 0;
  left: clamp(20px, 6vw, 84px);
  bottom: 0;
  width: 1px;
  content: "";
  background: rgba(40, 88, 79, 0.18);
}

.craft-inner {
  position: relative;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.craft-copy {
  position: sticky;
  top: 118px;
  align-self: start;
}

.craft-index {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.craft-copy h2 {
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
  line-height: 1.35;
}

.craft-copy h2 small {
  display: block;
  margin-top: 8px;
  color: var(--green);
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.craft-lead {
  margin: 28px 0 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.75;
}

.craft-copy p:not(.craft-lead) {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--muted);
}

.craft-stage {
  height: min(760px, 78vh);
  min-height: 560px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 26px);
  overflow: hidden;
  border-radius: var(--radius);
}

.photo-column {
  display: grid;
  gap: clamp(14px, 2vw, 26px);
}

.photo-column figure {
  position: relative;
  min-height: 275px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 22px 54px rgba(23, 32, 40, 0.12);
}

.photo-column img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.8s ease;
}

.photo-column figure:hover img {
  transform: scale(1.1);
}

.photo-column figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--green-dark);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.column-up {
  animation: photoUp 22s linear infinite;
}

.column-down {
  transform: translateY(-165px);
  animation: photoDown 24s linear infinite;
}

.detail-marquee {
  position: relative;
  margin-top: clamp(44px, 6vw, 72px);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(40, 88, 79, 0.18);
  border-bottom: 1px solid rgba(40, 88, 79, 0.18);
  color: rgba(23, 62, 56, 0.28);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: clamp(34px, 5vw, 72px);
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-size: clamp(1.2rem, 3vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.service-illustration-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 390px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(40, 88, 79, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(40, 88, 79, 0.12), rgba(255, 255, 255, 0.72)),
    var(--paper);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(23, 62, 56, 0.14);
}

.service-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  min-width: 38px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.45;
}

.line-visual {
  position: relative;
  height: 190px;
  margin: 26px 0 20px;
  color: var(--green);
}

.line-visual span {
  position: absolute;
  display: block;
}

.visual-room .bed-line {
  left: 50%;
  bottom: 28px;
  width: 112px;
  height: 56px;
  border: 1.5px solid currentColor;
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
  background: rgba(181, 138, 69, 0.46);
  transform: translateX(-50%);
}

.visual-room .pillow-line {
  top: 34px;
  width: 54px;
  height: 42px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 48px 48px 0 0;
}

.visual-room .pillow-line::before {
  position: absolute;
  top: -22px;
  left: 17px;
  width: 18px;
  height: 18px;
  content: "";
  border: 1.5px solid currentColor;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
}

.visual-room .pillow-line.left {
  left: 24px;
}

.visual-room .pillow-line.right {
  right: 24px;
}

.shine-line {
  border-top: 1.5px dashed currentColor;
  opacity: 0.72;
}

.visual-room .shine-line.a {
  left: 86px;
  top: 92px;
  width: 64px;
  transform: rotate(35deg);
}

.visual-room .shine-line.b {
  right: 86px;
  top: 92px;
  width: 64px;
  transform: rotate(-35deg);
}

.visual-bath .mirror-line {
  top: 26px;
  left: 50%;
  width: 92px;
  height: 70px;
  border: 1.5px solid currentColor;
  border-radius: 42px 42px 10px 10px;
  transform: translateX(-50%);
}

.visual-bath .sink-line {
  left: 50%;
  bottom: 38px;
  width: 150px;
  height: 54px;
  border: 1.5px solid currentColor;
  border-radius: 0 0 54px 54px;
  transform: translateX(-50%);
}

.visual-bath .drop-line {
  width: 20px;
  height: 30px;
  border: 1.5px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.visual-bath .drop-line.a {
  left: 44px;
  top: 72px;
}

.visual-bath .drop-line.b {
  right: 48px;
  top: 98px;
}

.visual-bath .spark-line {
  right: 28px;
  top: 34px;
  width: 34px;
  height: 34px;
  border: 1.5px dashed currentColor;
  border-radius: 50%;
}

.visual-tools .bucket-line {
  left: 50%;
  bottom: 32px;
  width: 122px;
  height: 76px;
  border: 1.5px solid currentColor;
  border-radius: 10px 10px 24px 24px;
  background: rgba(181, 138, 69, 0.42);
  transform: translateX(-50%);
}

.visual-tools .handle-line {
  left: 50%;
  top: 52px;
  width: 128px;
  height: 80px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 80px 80px 0 0;
  transform: translateX(-50%);
}

.visual-tools .brush-line {
  right: 42px;
  bottom: 52px;
  width: 72px;
  height: 12px;
  border-top: 1.5px solid currentColor;
  transform: rotate(-33deg);
}

.visual-tools .brush-line::after {
  position: absolute;
  right: -11px;
  top: -10px;
  width: 22px;
  height: 22px;
  content: "";
  border: 1.5px solid currentColor;
  border-radius: 4px;
}

.visual-tools .circle-line {
  left: 38px;
  top: 54px;
  width: 38px;
  height: 38px;
  border: 1.5px dashed currentColor;
  border-radius: 50%;
}

.visual-report .paper-line {
  left: 50%;
  top: 34px;
  width: 104px;
  height: 128px;
  border: 1.5px solid currentColor;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.52);
  transform: translateX(-50%);
}

.visual-report .check-line {
  left: 50%;
  width: 64px;
  height: 1.5px;
  background: currentColor;
  transform: translateX(-50%);
}

.visual-report .check-line.a {
  top: 76px;
}

.visual-report .check-line.b {
  top: 106px;
}

.visual-report .person-line {
  right: 38px;
  bottom: 28px;
  width: 54px;
  height: 42px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 48px 48px 0 0;
}

.visual-report .person-line::before {
  position: absolute;
  top: -22px;
  left: 17px;
  width: 18px;
  height: 18px;
  content: "";
  border: 1.5px solid currentColor;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.12rem;
  line-height: 1.5;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.partner-flow {
  margin-top: clamp(62px, 8vw, 104px);
}

.partners-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 14px;
}

.partners-head span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.partners-head h3 {
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.25;
}

.partner-flow > p {
  max-width: 680px;
  margin: 0 0 30px;
  color: var(--muted);
}

.hotel-marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 10px 0 18px;
}

.hotel-row {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 0 18px;
}

.hotel-row + .hotel-row {
  display: none;
}

.row-left {
  animation: hotelSlideLeft 54s linear infinite;
}

.row-right {
  display: none;
}

.hotel-strip-card {
  position: relative;
  flex: 0 0 clamp(280px, 30vw, 430px);
  height: clamp(190px, 22vw, 280px);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-dark);
  color: var(--white);
  box-shadow:0 6px 14px rgb(23 32 40 / 30%);
}

.hotel-strip-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 30%, rgba(0, 0, 0, 0.64));
}

.hotel-strip-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.6s ease;
  will-change: transform;
}

.hotel-strip-card:hover img {
  transform: scale(1.12);
}

.hotel-strip-card strong,
.hotel-strip-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  z-index: 1;
}

.hotel-strip-card strong {
  bottom: 42px;
  font-size: 1rem;
  line-height: 1.45;
}

.hotel-strip-card span {
  bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.news {
  background:
    linear-gradient(90deg, rgba(40, 88, 79, 0.06), transparent 34%),
    var(--white);
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(280px, 1.05fr) minmax(260px, 0.9fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
}

.news-heading {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  padding-right: 22px;
}

.news-heading span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.news-heading h2 {
  margin: auto 0 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
  line-height: 1.2;
}

.news-heading p {
  margin: 22px 0 0;
  color: var(--muted);
}

.news-feature {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(23, 62, 56, 0.92), rgba(45, 100, 120, 0.72)),
    url("../images/made-bed.jpg") center/cover;
  color: var(--white);
  box-shadow: var(--shadow);
}

.news-feature time {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 900;
}

.news-feature span {
  width: fit-content;
  margin-top: 18px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.news-feature h3 {
  margin: 18px 0 0;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  line-height: 1.55;
}

.news-feature p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.news-list {
  display: grid;
  align-content: stretch;
  border-top: 1px solid var(--line);
}

.news-list a {
  display: grid;
  gap: 10px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.25s ease, transform 0.25s ease;
}

.news-list a:hover {
  color: var(--green);
  transform: translateX(8px);
}

.news-list time {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.company-table {
  margin: 0;
  border-top: 1px solid var(--line);
}

.company-table div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.company-table dt {
  color: var(--green);
  font-weight: 900;
}

.company-table dd {
  margin: 0;
  color: var(--muted);
}

section.page-promos {
  background: var(--paper);
  padding: 0;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: 100%;
}

.promo-card {
  position: relative;
  min-height: min(760px, 88vh);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 0;
  background: var(--green-dark);
  color: var(--white);
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.promo-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgb(11 24 26 / 50%) 0%, rgb(11 24 26 / 80%) 100%);
}

.promo-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.8s ease, filter 0.8s ease;
}

.promo-card:hover {
  transform: none;
  box-shadow: var(--shadow);
}

.promo-card:hover img {
  transform: scale(1.12);
  filter: saturate(1.08);
}

.promo-card span {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.promo-card h2 {
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.25;
}

.promo-card p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.promo-card strong {
  display: inline-flex;
  align-items: center;
  margin-top: 26px;
  font-size: 0.92rem;
}

.promo-card strong::after {
  width: 46px;
  height: 1px;
  margin-left: 12px;
  content: "";
  background: currentColor;
  transition: transform 0.25s ease;
  transform-origin: left;
}

.promo-card:hover strong::after {
  transform: scaleX(1.35);
}

.recruit {
  background: linear-gradient(135deg, var(--green-dark), var(--blue));
  color: var(--white);
}

.recruit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.recruit-visual {
  min-height: 520px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(23, 62, 56, 0.05), rgba(23, 62, 56, 0.28)),
    url("../images/recruit-team.jpg") center/cover;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.recruit-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.recruit-copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.recruit-copy li {
  padding: 14px 18px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.09);
}

.contact {
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 7vw, 90px);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(40, 88, 79, 0.1);
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  padding: clamp(38px, 5vw, 64px) clamp(20px, 5vw, 72px) 34px;
  background:
    linear-gradient(135deg, rgba(181, 138, 69, 0.1), transparent 38%),
    var(--green-dark);
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(220px, 0.8fr) minmax(220px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.footer-main p {
  max-width: 440px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.footer-logo {
  display: block;
  width: clamp(200px, 20vw, 270px);
  height: auto;
}

.footer-contact {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
  font-size: 0.92rem;
}

.footer-contact a {
  width: fit-content;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-copy {
  grid-column: 1 / -1;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

.delay-3 {
  transition-delay: 0.32s;
}

@keyframes loaderOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes loaderPhotoIn {
  from {
    opacity: 0;
    filter: blur(30px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes loaderLogoIn {
  from {
    opacity: 0;
    filter: blur(50px);
    transform: translate(-50%, -50%);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.06) translateX(0);
  }
  to {
    transform: scale(1.1) translateX(-18px);
  }
}

@keyframes rbannerFade {
  0%,
  42% {
    opacity: 0;
  }
  50%,
  92% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  45% {
    transform: scaleY(1);
    transform-origin: top;
  }
  46% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@keyframes photoUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-320px);
  }
}

@keyframes photoDown {
  from {
    transform: translateY(-320px);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes hotelSlideLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@keyframes hotelSlideRight {
  from {
    transform: translateX(calc(-50% - 180px));
  }
  to {
    transform: translateX(-180px);
  }
}

@media (max-width: 1020px) {
  .service-illustration-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panel {
 display: none;
  }

  .craft-inner {
    grid-template-columns: 1fr;
  }

  .craft-copy {
    position: relative;
    top: auto;
  }

  .craft-stage {
    height: 620px;
  }

  .partners-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .news-layout {
    grid-template-columns: 1fr;
  }

  .news-heading {
    min-height: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 68px;
    padding: 0 20px;
    z-index: 91;
  }


  .site-header .brand {
    position: relative;
    z-index: 102;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 102;
  }

  .global-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: auto;
    gap: 0;
    min-height: calc(100vh - 68px);
    min-height: calc(100dvh - 68px);
    padding: 22px 24px 34px;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.98);
    color: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .global-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .global-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100%, 420px);
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .global-nav a::after {
    display: block;
    position: static;
    width: 9px;
    height: 9px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    background: transparent;
    content: "";
    opacity: 0.55;
    transform: rotate(45deg);margin-right: 8px;
  }

  .global-nav .nav-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 420px);
    min-width: 0;
    margin-top: 22px;
    padding: 14px 24px;
    border: 1px solid var(--gold);
    text-align: center;
  }

  .global-nav .nav-contact::after {
    display: none;
  }

  .hero {
    min-height: 92vh;
    padding: 112px 20px 54px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(14, 33, 35, 0.58), rgba(14, 33, 35, 0.18) 46%, rgba(14, 33, 35, 0.76)),
      url("../images/mobile-banner-01.png") center/cover;
  }

  .hero-bg::before {
    background:
      linear-gradient(180deg, rgba(14, 33, 35, 0.58), rgba(14, 33, 35, 0.18) 46%, rgba(14, 33, 35, 0.76)),
      url("../images/mobile-banner-02.png") center/cover;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .scroll-cue {
    display: none;
  }

  .split,
  .recruit-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .craft::before {
    left: 20px;
  }

  .company-preview {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .company-visual {
    min-height: 420px;
    order: -1;
  }

  .company-note {
    width: min(260px, 72%);
  }

  .company-preview-copy h2 {
    margin-top: 28px;
  }

  .news-list a,
  .company-table div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .recruit-visual {
    min-height: 340px;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .promo-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  .hero-actions,
  .btn {
    display: none;
  }

  .service-illustration-grid {
    grid-template-columns: 1fr;
  }

  .company-visual {
    min-height: 360px;
  }

  .company-photo-main {
    width: 88%;
    height: 70%;
  }

  .company-photo-sub {
    width: 54%;
    height: 38%;
    border-width: 7px;
  }

  .company-note {
    right: 12px;
    bottom: 20px;
    padding: 16px;
    display: none;
  }

  .craft-stage {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    mask-image: none;
  }

  .photo-column,
  .column-up,
  .column-down {
    animation: none;
    transform: none;
  }

  .photo-column figure {
    min-height: 250px;
  }

  .photo-column:nth-child(2) figure:nth-child(n + 2) {
    display: none;
  }

  .hotel-row {
    gap: 12px;
    padding: 0 12px;
  }

  .hotel-row + .hotel-row {
    display: none;
  }

  .hotel-strip-card {
    flex-basis: 280px;
    height: 190px;
  }

  .row-left,
  .row-right {
    animation-duration: 48s;
  }

  .news-feature {
    min-height: 330px;
  }

  .footer-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer-contact{gap:0;}
  .service-card {
    min-height: 340px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Logo assets */
.loader-logo-image {
  display: block;
  width: clamp(168px, 22vw, 260px);
  height: auto;
  filter: brightness(0) invert(1);
}

@media (max-width: 1140px) {
  .photo-b {
    right: 102px;
    width: 322px;
  }

  .photo-a {
    left: 220px;
  }
}

@media (max-width: 840px) {
  .loader-logo-image {
    width: clamp(148px, 38vw, 190px);
  }

  .photo-b {
    top: 84px;
    right: 56px;
    width: 272px;
  }

  .photo-a {
    top: 56px;
    left: 78px;
    width: 88px;
  }

  .photo-c {
    bottom: 132px;
    left: 28px;
    width: 194px;
  }

  .photo-d {
    bottom: 60px;
    right: 22px;
    width: 192px;
  }
}

@media (max-width: 540px) {
  .loader-logo-image {
    width: clamp(148px, 44vw, 190px);
  }

  .photo-b {
    top: 128px;
    right: 36px;
    width: 171px;
  }

  .photo-a {
    top: 40px;
    left: 58px;
    width: 55px;
  }

  .photo-c {
    bottom: 152px;
    left: 16px;
    width: 113px;
  }

  .photo-d {
    bottom: 60px;
    right: 20px;
    width: 112px;
  }
}

.brand-logo {
  display: block;
  width: clamp(200px, 18vw, 272px);
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.35s ease;
}

.site-header.is-scrolled .brand-logo,
.site-header.is-open .brand-logo {
  filter: none;
}
