/* generated by lp-template build — DO NOT EDIT (edit sites/viralforge/ instead) */
:root {
  --ink: #121417;
  --muted: #5f6772;
  --paper: #ffffff;
  --white: #ffffff;
  --line: color-mix(in srgb, #121417 14%, transparent);
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --black: #071018;
  --accent: #356b4f;
  --heading: #2563eb;
  --shadow: 0 22px 60px color-mix(in srgb, #071018 14%, transparent);
  --font-body: "Noto Sans JP","Hiragino Kaku Gothic ProN","Yu Gothic",sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

body.line-dialog-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

h1,
h2,
h3,
p,
li,
a,
button,
small,
strong,
label,
input,
select,
textarea,
dt,
dd {
  letter-spacing: 0em;
}

img {
  display: block;
  max-width: 100%;
}

br.soft-break {
  display: none;
}

section[id] {
  scroll-margin-top: 88px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 150;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 58px);
  background: var(--paper);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
  backdrop-filter: blur(12px);
}

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

/* ロゴはアスペクト比を保ったままヘッダー高に収める（正方形マーク/横長ワードマーク両対応） */
.brand img {
  max-height: 44px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.header-trial-cta {
  display: none;
}

.header-trial-cta,
.global-menu a,
.menu-toggle,
.mobile-fixed a,
.modal-floating-close {
  touch-action: manipulation;
  -webkit-tap-highlight-color: color-mix(in srgb, var(--brand) 16%, transparent);
}

.global-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.global-menu a {
  white-space: nowrap;
}

@media (min-width: 901px) {
  .global-menu a:nth-child(6),
  .global-menu a:nth-child(7),
  .global-menu a:nth-child(8),
  .global-menu a:nth-child(9),
  .global-menu a:nth-child(10),
  .global-menu a:nth-child(11),
  .global-menu a:nth-child(13) {
    display: none;
  }
}

/* Match all recruitment titles to the blue first-view title. */
.recruit-title {
  color: var(--heading);
  text-shadow: 0 8px 22px color-mix(in srgb, var(--heading) 12%, transparent);
}

.recruit-title span {
  display: block;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .recruit-title {
    display: flex !important;
    align-items: baseline;
    gap: 0.28em;
    width: 100%;
    max-width: none;
    font-size: clamp(0.86rem, 4.3vw, 1.08rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.065em !important;
    white-space: nowrap !important;
    overflow-wrap: normal;
    word-break: keep-all;
  }

  .recruit-title span {
    display: inline !important;
    white-space: nowrap;
  }

  .recruit-title span + span {
    display: inline !important;
    font-size: 1em !important;
    letter-spacing: inherit !important;
  }
}

.global-cta {
  padding: 10px 16px;
  color: #fff;
  background: var(--brand);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.global-cta:hover,
.header-trial-cta:hover,
.mobile-fixed a:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: var(--black);
  padding: 12px;
  cursor: pointer;
  position: relative;
  z-index: 220;
}

.menu-toggle span {
  position: absolute;
  left: 24%;
  right: 24%;
  top: 50%;
  display: block;
  height: 2px;
  background: var(--paper);
  transition: transform 0.34s ease, opacity 0.22s ease;
  transform-origin: center;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(2) {
  transform: translateY(-1px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(5px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(-1px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 132px clamp(20px, 6vw, 76px) 92px;
}

.hero-bg {
  position: absolute;
  top: 128px;
  right: clamp(20px, 6vw, 76px);
  bottom: 92px;
  width: min(55vw, 820px);
  z-index: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: color-mix(in srgb, var(--ink) 14%, var(--paper));
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  opacity: 1;
  transform: none;
  animation: none;
}

.hero-bg img.is-active {
  opacity: 1;
}

.hero-bg img:nth-child(1) {
  animation-delay: 0s, 0s;
}

.hero-bg img:nth-child(2) {
  animation-delay: 3s, 3s;
}

.hero-bg img:nth-child(3) {
  animation-delay: 6s, 6s;
}

.hero-bg::after {
  content: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(560px, 45vw);
}

.hero-kicker {
  margin: 0 0 24px;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--brand-dark);
}

.hero-kicker span + span::before {
  content: "｜";
}

.section-kicker {
  display: block;
  margin: 0 0 12px;
  color: var(--brand) !important;
  font-size: 0.86rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0em;
}

.hero h1,
.final-section h2 {
  margin: 0;
  font-size: 5.4rem;
  line-height: 1.08;
  font-weight: 900;
}

.hero h1 {
  font-size: clamp(3.9rem, 4.75vw, 4.25rem);
  line-height: 1.12;
}

.hero h1 span {
  display: block;
}

.hero h1 .desktop-line {
  white-space: nowrap;
}

.mobile-line {
  display: none !important;
}

.phone-section h2 span {
  display: block;
}

.message-title span {
  display: inline;
}

.hero-lead {
  max-width: 480px;
  margin: 28px 0 0;
  font-size: 1.26rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--ink) 90%, var(--paper));
}

.hero-formula {
  margin: 26px 0 0;
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--brand);
}

.hero-actions,
.section-actions,
.final-actions,
.place-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.hero .hero-actions .btn {
  min-width: 190px;
}

.btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  font-size: 1.04rem;
  line-height: 1.2;
  font-weight: 900;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, filter 0.28s ease;
}

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

.btn:active,
.mini-nav a:active {
  transform: translateY(1px);
}

.btn-primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--brand) 24%, transparent);
  animation: softPulse 2.6s ease-in-out infinite;
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-dark {
  color: #fff;
  background: var(--black);
}

.btn-secondary {
  color: var(--ink);
  background: var(--paper);
  border-color: color-mix(in srgb, var(--black) 78%, transparent);
  box-shadow: none;
}

.btn-secondary::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: 14px;
  flex: 0 0 30px;
  background-color: var(--black);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='16' viewBox='0 0 10 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2l6 6-6 6' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 16px;
  border-radius: 50%;
}

.text-link {
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.mini-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 22px;
  padding: 18px clamp(16px, 4vw, 52px);
  background: color-mix(in srgb, var(--ink) 4%, var(--paper));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  white-space: nowrap;
}

.mini-nav a {
  font-size: 0.96rem;
  font-weight: 900;
  transition: color 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.mini-nav a:hover {
  transform: translateY(-2px);
  color: var(--brand);
}

.mini-nav .is-red {
  color: var(--brand);
}

.mini-nav .is-call {
  padding: 8px 14px;
  color: #fff;
  background: var(--black);
}

.mini-nav .is-call:hover {
  color: #fff;
  background: var(--brand);
}

.lp-section {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 116px clamp(20px, 6vw, 78px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.split-reverse .section-copy {
  order: 1;
}

.split-reverse .section-photo {
  order: 2;
}

.split > .section-copy,
.split-reverse > .section-copy {
  min-width: 0;
}

.section-copy,
.wide-copy,
.place-copy,
.method-copy,
.career-copy {
  position: relative;
  z-index: 2;
}

h2 {
  margin: 0;
  font-size: 3.55rem;
  line-height: 1.16;
  font-weight: 900;
}

.recruit-section h2 span {
  display: block;
}

h3 {
  margin: 0 0 14px;
  font-size: 1.45rem;
  line-height: 1.35;
  font-weight: 900;
}

.section-copy p,
.wide-copy p,
.place-copy p,
.method-copy p,
.career-copy p,
.final-section p {
  margin: 26px 0 0;
  font-size: 1.13rem;
  line-height: 1.58;
  font-weight: 700;
  color: color-mix(in srgb, var(--ink) 86%, var(--paper));
}

.hero-lead,
.modal-body p,
.modal-body li {
  font-size: 1.13rem;
  line-height: 1.58;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  line-height: 1.2;
  font-weight: 900;
  cursor: pointer;
}

.read-more::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.inline-more,
.text-more {
  display: inline;
  margin-left: 0.25em;
  padding: 0;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  line-height: inherit;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}

.inline-more-light {
  background: transparent;
  color: #fff;
}

.modal-teaser {
  cursor: pointer;
}

.modal-teaser:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--brand) 45%, transparent);
  outline-offset: 5px;
}

.modal-teaser:hover .inline-more {
  color: var(--brand);
}

.inline-more {
  transition: color 0.22s ease, transform 0.22s ease;
}

.modal-teaser:hover .inline-more {
  transform: translateX(3px);
}

.final-section .modal-teaser:hover .inline-more-light {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.circle-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: clamp(8px, 1.2vw, 14px);
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

.circle-points li {
  flex: 0 1 clamp(84px, calc((100% - (var(--cp-count, 5) - 1) * 14px) / var(--cp-count, 5)), 116px);
  aspect-ratio: 1;
  min-width: 84px;
  max-width: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid color-mix(in srgb, var(--ink) 16%, transparent);
  border-radius: 50%;
  text-align: center;
  font-size: clamp(0.66rem, calc(1.9vw - (var(--cp-count, 5) * 0.04vw)), 0.9rem);
  line-height: 1.3;
  font-weight: 900;
  background: color-mix(in srgb, var(--paper) 52%, transparent);
  overflow-wrap: break-word;
  word-break: keep-all;
  cursor: default;
  pointer-events: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.circle-points-dark li {
  border-color: color-mix(in srgb, var(--ink) 16%, transparent);
  background: var(--paper);
  color: var(--ink);
}

.mini-detail {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 2px solid var(--ink);
}

.mini-detail div {
  display: grid;
  grid-template-columns: minmax(5.5em, max-content) 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.mini-detail strong,
.mini-detail span {
  font-weight: 900;
}

.mini-detail span {
  color: var(--muted);
}

.mini-detail.compact div {
  grid-template-columns: minmax(5.5em, max-content) 1fr;
}

.flow-list {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--ink);
}

.flow-list li {
  display: grid;
  grid-template-columns: minmax(5.5em, max-content) 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.flow-list strong {
  font-weight: 900;
}

.flow-list span {
  color: var(--muted);
  font-weight: 800;
}

.section-actions .read-more,
.place-actions .read-more {
  min-height: 58px;
  margin-top: 0;
}

.section-photo,
.place-photo,
.method-photo,
.career-photo,
.category-main {
  position: relative;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: color-mix(in srgb, var(--ink) 14%, var(--paper));
}

.section-photo img,
.place-photo img,
.method-photo img,
.career-photo img,
.category-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s ease;
}

.is-inview .section-photo img,
.is-inview .place-photo img,
.is-inview .method-photo img,
.is-inview .career-photo img,
.is-inview .category-main img {
  transform: scale(1.035);
}

.section-photo,
.section-photo.tall,
.place-photo,
.method-photo,
.career-photo,
.category-main {
  aspect-ratio: 16 / 10;
}

.bg-word {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  color: var(--brand);
  font-size: min(9rem, calc(90vw / var(--bg-word-len, 6) * 1.7));
  line-height: 0.85;
  font-weight: 900;
  white-space: nowrap;
  opacity: 0.08;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.bg-word-tr {
  top: 30px;
  right: -24px;
  transform: translateX(115%);
}

.bg-word-bl {
  bottom: 24px;
  left: -24px;
  transform: translateX(-115%);
}

.bg-word.is-bg-visible {
  transform: translateX(0);
}

.category-section {
  background: var(--paper);
  overflow: visible;
}

.category-section .bg-word {
  display: none;
}

.wide-copy {
  width: min(920px, 100%);
  margin-bottom: 48px;
}

.category-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(420px, 1fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.category-layout-single {
  grid-template-columns: minmax(320px, 560px);
  justify-content: center;
}

.category-main {
  width: 100%;
  height: auto;
  min-height: auto;
  align-self: start;
}

.category-list {
  display: grid;
  align-content: center;
  gap: 24px;
}

.category-list button {
  display: grid;
  grid-template-columns: 150px 1fr;
  column-gap: 22px;
  align-items: center;
  min-height: 214px;
  padding: 0 0 22px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid var(--line);
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.category-list button:hover {
  transform: translateX(6px);
  border-color: color-mix(in srgb, var(--brand) 36%, transparent);
}

.category-list img {
  width: 150px;
  height: 188px;
  object-fit: cover;
}

.category-list img.category-poster-thumb {
  object-fit: contain;
  background: var(--black);
}

.category-text {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.category-text strong {
  font-size: 1.22rem;
  line-height: 1.35;
  font-weight: 900;
}

.category-text small {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
  font-weight: 700;
}

.recruit-section {
  background: linear-gradient(90deg, color-mix(in srgb, var(--brand) 5.5%, transparent), var(--paper) 46%);
}

.recruit-list,
.place-list,
.trial-list {
  margin: 30px 0 0;
  border-top: 2px solid var(--ink);
}

.line-box {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 26px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.line-box p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
}

.trial-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0;
  padding-top: 26px;
  border-top: 2px solid var(--ink);
}

.trial-form h3,
.trial-form .wide-field,
.trial-form .btn {
  grid-column: 1 / 3;
}

.trial-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.trial-form input,
.trial-form select,
.trial-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 12px 14px;
  font: inherit;
  font-weight: 700;
  color: var(--ink);
}

.trial-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.7em;
  margin: 0;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 800;
}

.form-status.is-error {
  color: var(--brand-dark);
}

.recruit-list div,
.place-list div,
.trial-list div {
  display: grid;
  grid-template-columns: minmax(5.5em, max-content) 1fr;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

dt {
  font-weight: 900;
  word-break: keep-all;
}

dd {
  margin: 0;
  font-weight: 700;
  color: color-mix(in srgb, var(--ink) 87%, var(--paper));
}

.place-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px 48px;
  align-items: end;
  background: linear-gradient(90deg, var(--paper) 0%, color-mix(in srgb, var(--brand) 5%, transparent) 100%);
}

.place-copy {
  align-self: center;
}

.place-photo {
  aspect-ratio: 16 / 9;
}

.place-actions {
  grid-column: 1 / 3;
  margin-top: 4px;
}

.method-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  background: linear-gradient(90deg, color-mix(in srgb, var(--black) 4.5%, transparent), var(--paper) 52%);
  color: var(--ink);
}

.method-copy {
  order: 1;
}

.method-photo {
  order: 2;
}

.method-section .bg-word {
  color: var(--brand);
}

.method-copy p,
.method-copy li {
  color: color-mix(in srgb, var(--ink) 86%, var(--paper));
}

.method-copy .section-kicker {
  color: var(--brand) !important;
}

.method-lines {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--ink);
}

.method-lines li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.08rem;
  font-weight: 800;
}

.method-section .read-more {
  color: var(--ink);
}

.career-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 34px 56px;
  align-items: start;
  background: linear-gradient(90deg, var(--paper) 0%, color-mix(in srgb, var(--brand) 5%, transparent) 100%);
}

.career-photo {
  aspect-ratio: 16 / 10;
}

.career-list {
  position: relative;
  z-index: 2;
  grid-column: 1 / 3;
  padding: 34px 0 0;
  border-top: 2px solid var(--ink);
}

.career-list p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--ink) 85%, var(--paper));
}

.trial-section {
  background: linear-gradient(90deg, color-mix(in srgb, var(--brand) 5.5%, transparent), var(--paper) 46%);
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  align-items: start;
}

.trial-form-wrap {
  position: relative;
  z-index: 2;
  grid-column: 1 / 3;
  width: min(920px, 100%);
  justify-self: center;
  margin-top: 54px;
}

.trial-section .section-photo {
  aspect-ratio: 16 / 10;
  min-height: auto;
}

.trial-section .section-photo img {
  object-position: center;
}

.phone-section {
  background: linear-gradient(90deg, var(--paper) 0%, color-mix(in srgb, var(--black) 4.5%, transparent) 100%);
}

.phone-number {
  color: var(--brand-dark) !important;
  font-size: 2.4rem !important;
  font-weight: 900 !important;
  line-height: 1.2;
}

.final-section {
  position: relative;
  z-index: 2;
  min-height: 82vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 112px clamp(20px, 6vw, 78px);
  color: #fff;
}

.final-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.final-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, color-mix(in srgb, var(--black) 94%, transparent) 0%, color-mix(in srgb, var(--black) 74%, transparent) 43%, color-mix(in srgb, var(--black) 18%, transparent) 100%);
}

.final-inner {
  position: relative;
  z-index: 2;
  width: min(1060px, 100%);
}

.final-section p {
  color: rgba(255, 255, 255, 0.88);
}

.final-section h2 span {
  display: block;
}

.final-actions .text-link {
  color: #fff;
}

.sponsor-section {
  position: relative;
  z-index: 2;
  padding: 78px clamp(20px, 6vw, 78px);
  background: var(--paper);
  color: var(--black);
}

.sponsor-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.sponsor-section h2 {
  margin: 0 0 18px;
}

.sponsor-section p {
  max-width: 740px;
  margin: 0 0 16px;
  color: var(--muted);
}

.sponsor-recruit-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin: 4px 0 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brand);
  font-weight: 900;
  font-family: inherit;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
}

.sponsor-recruit-link::after {
  content: "";
  width: 10px;
  height: 16px;
  margin-left: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='16' viewBox='0 0 10 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2l6 6-6 6' fill='none' stroke='%23c8171e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.sponsor-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  order: 2;
}

.sponsor-logo {
  display: grid;
  place-items: center;
  min-height: 148px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
  text-decoration: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.sponsor-logo:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--brand) 28%, transparent);
  box-shadow: 0 14px 36px color-mix(in srgb, var(--black) 10%, transparent);
}

.sponsor-logo img {
  display: block;
  max-width: min(100%, 360px);
  max-height: 112px;
  object-fit: contain;
}

.sponsor-logo:first-child {
  background: var(--black);
}

.sponsor-logo:last-child img {
  max-width: 184px;
  max-height: 184px;
}

.site-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 10px 18px;
  align-items: center;
  padding: 38px clamp(20px, 6vw, 78px) 110px;
  background: var(--black);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer img {
  grid-row: 1 / 3;
  width: 64px;
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.site-footer p:last-child {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer p:nth-of-type(2) {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
}

.mobile-fixed {
  display: none;
}

.line-dialog {
  position: fixed;
  inset: 0;
  z-index: 340;
  display: grid;
  place-items: center;
  padding: 22px;
  background: color-mix(in srgb, var(--black) 72%, transparent);
  backdrop-filter: blur(6px);
}

.line-dialog[hidden] {
  display: none;
}

.line-dialog-panel {
  width: min(520px, 100%);
  padding: clamp(26px, 6vw, 42px);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.line-dialog-panel h2 {
  margin: 0;
  font-size: clamp(1.42rem, 4.8vw, 2rem);
  line-height: 1.2;
  font-weight: 900;
}

.line-dialog-panel p:not(.section-kicker) {
  margin: 18px 0 0;
  color: color-mix(in srgb, var(--ink) 87%, var(--paper));
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 800;
}

.line-dialog-actions {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 12px;
  margin-top: 24px;
}

.line-dialog-actions .btn {
  width: 100%;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: auto;
  background: color-mix(in srgb, var(--black) 72%, transparent);
  padding: clamp(18px, 4vw, 42px) clamp(12px, 4vw, 34px) calc(22px + env(safe-area-inset-bottom));
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.38s ease, visibility 0.38s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-panel {
  position: relative;
  width: min(960px, 100%);
  max-height: min(92vh, 920px);
  margin: auto auto 0;
  background: var(--paper);
  color: var(--ink);
  border-radius: 14px 14px 10px 10px;
  overflow: auto;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.24);
  opacity: 0;
  transform: translateY(140px);
  transition: opacity 0.5s ease, transform 0.82s cubic-bezier(0.16, 1, 0.3, 1);
  overscroll-behavior: contain;
}

.modal-scroll {
  min-height: 0;
}

.modal.is-open .modal-panel {
  opacity: 1;
  transform: none;
}

.modal-back {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 26px color-mix(in srgb, var(--black) 22%, transparent);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.modal-back:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--brand) 45%, transparent);
  outline-offset: 3px;
}

.modal-scroll > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 0.42s ease 0.08s, transform 0.62s ease 0.08s;
}

.modal.is-open .modal-scroll > img {
  opacity: 1;
  transform: scale(1);
}

.modal-scroll > img.modal-portrait {
  aspect-ratio: 4 / 5;
  max-height: 720px;
  object-fit: contain;
  object-position: center;
  background: var(--black);
}

.modal-scroll > img.modal-poster {
  aspect-ratio: auto;
  width: min(720px, 100%);
  max-height: none;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  background: var(--black);
}

.modal-scroll > img.modal-wide {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  background: var(--black);
}

.modal-body {
  padding: 42px clamp(22px, 5vw, 64px) 56px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.34s ease 0.14s, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.14s;
}

.modal-scroll:not(:has(> img)) .modal-body {
  padding-top: 72px;
}

.modal.is-open .modal-body {
  opacity: 1;
  transform: none;
}

.modal-body h2 {
  font-size: 2.65rem;
}

.modal-body p,
.modal-body li {
  font-size: 1.13rem;
  font-weight: 700;
  line-height: 1.58;
  color: color-mix(in srgb, var(--ink) 85%, var(--paper));
}

.modal-body ul {
  margin: 28px 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--ink);
}

.modal-body li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.modal-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0;
}

.modal-detail-grid-wide {
  grid-template-columns: minmax(0, 1fr);
}

.modal-detail-card {
  padding: 18px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--ink) 1%, var(--paper));
  cursor: default;
  pointer-events: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.modal-detail-card h3 {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 1rem;
  line-height: 1.35;
}

.modal-detail-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.58;
}

.modal-footer-actions,
.modal-body > .btn,
.modal-actions .btn {
  margin-top: 24px;
}

.modal-footer-actions {
  position: sticky;
  bottom: calc(68px + env(safe-area-inset-bottom));
  z-index: 4;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-left: -4px;
  margin-right: -4px;
  padding: 14px 4px 0;
  background: transparent;
}

.modal-footer-actions::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -56px -18px -132px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--paper) 36%, var(--paper) 100%);
  pointer-events: none;
}

.modal-footer-actions .btn,
.modal-footer-actions .modal-bottom {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 58px;
  margin: 0;
  box-shadow: 0 16px 32px color-mix(in srgb, var(--black) 18%, transparent);
}

.modal-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.modal-map {
  height: 360px;
  margin: 28px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.modal-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 16px;
  border: 2px solid color-mix(in srgb, var(--ink) 83%, var(--paper));
  background: var(--paper);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.modal-floating-close {
  display: none;
}

[data-animate] {
  opacity: 1;
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-animate="slideLeft"] {
  transform: translateX(0);
}

[data-animate="slideRight"] {
  transform: translateX(0);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateX(0);
}

.js .hero-kicker,
.js .hero h1,
.js .hero-lead,
.js .hero-formula,
.js .hero-actions,
.js .section-kicker,
.js .lp-section h2,
.js .lp-section .modal-teaser,
.js .wide-copy,
.js .mini-detail,
.js .flow-list,
.js .recruit-list,
.js .place-list,
.js .trial-list,
.js .line-box,
.js .method-lines,
.js .circle-points li,
.js .category-list button,
.js .trial-form-wrap,
.js .career-list,
.js .section-actions,
.js .place-actions,
.js .final-section h2,
.js .final-section p,
.js .final-actions,
.js .sponsor-copy,
.js .sponsor-logo,
.js .site-footer img,
.js .site-footer p {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.78s ease, transform 0.82s cubic-bezier(0.16, 1, 0.3, 1);
}

.js .hero.is-inview .hero-kicker,
.js .hero.is-inview h1,
.js .hero.is-inview .hero-lead,
.js .hero.is-inview .hero-formula,
.js .hero.is-inview .hero-actions,
.js .is-inview .section-kicker,
.js .lp-section.is-inview h2,
.js .lp-section.is-inview .modal-teaser,
.js .lp-section.is-inview .wide-copy,
.js .lp-section.is-inview .mini-detail,
.js .lp-section.is-inview .flow-list,
.js .lp-section.is-inview .recruit-list,
.js .lp-section.is-inview .place-list,
.js .lp-section.is-inview .trial-list,
.js .lp-section.is-inview .line-box,
.js .lp-section.is-inview .method-lines,
.js .lp-section.is-inview .circle-points li,
.js .lp-section.is-inview .category-list button,
.js .lp-section.is-inview .trial-form-wrap,
.js .lp-section.is-inview .career-list,
.js .lp-section.is-inview .section-actions,
.js .lp-section.is-inview .place-actions,
.js .final-section.is-inview h2,
.js .final-section.is-inview p,
.js .final-section.is-inview .final-actions,
.js .sponsor-section.is-inview .sponsor-copy,
.js .sponsor-section.is-inview .sponsor-logo,
.js .site-footer.is-inview img,
.js .site-footer.is-inview p {
  opacity: 1;
  transform: translateY(0);
}

.js .hero h1,
.js .lp-section h2,
.js .final-section h2 {
  transition-delay: 0.07s;
}

.js .hero-lead,
.js .lp-section .modal-teaser,
.js .final-section p {
  transition-delay: 0.14s;
}

.js .hero-formula,
.js .mini-detail,
.js .flow-list,
.js .recruit-list,
.js .place-list,
.js .trial-list,
.js .method-lines,
.js .line-box {
  transition-delay: 0.21s;
}

.js .hero-actions,
.js .section-actions,
.js .place-actions,
.js .final-actions,
.js .trial-form-wrap,
.js .career-list {
  transition-delay: 0.28s;
}

.js .circle-points li:nth-child(2),
.js .category-list button:nth-child(2),
.js .sponsor-logo:nth-child(2) {
  transition-delay: 0.08s;
}

.js .circle-points li:nth-child(3),
.js .category-list button:nth-child(3),
.js .sponsor-logo:nth-child(3) {
  transition-delay: 0.16s;
}

.js .circle-points li:nth-child(4),
.js .category-list button:nth-child(4),
.js .sponsor-logo:nth-child(4) {
  transition-delay: 0.24s;
}

.js .circle-points li:nth-child(5) {
  transition-delay: 0.32s;
}

.modal.is-open .modal-body > .btn,
.modal.is-open .modal-actions .btn {
  animation: modalItemRise 0.52s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.modal.is-open .modal-body > .btn,
.modal.is-open .modal-actions .btn {
  animation-delay: 0.24s;
}

.js .lp-section.is-inview .category-list button:hover {
  transform: translateX(6px);
}

.js .sponsor-section.is-inview .sponsor-logo:hover,
.js .mini-nav.is-inview a:hover {
  transform: translateY(-4px);
}

.modal.is-open .modal-body > .btn:hover,
.modal.is-open .modal-actions .btn:hover {
  animation: none;
}

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

@keyframes heroFade {
  0%, 30% { opacity: 1; }
  42%, 88% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes heroZoomCycle {
  0% { transform: scale(1.06); }
  36% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

@keyframes softPulse {
  0%, 100% { box-shadow: 0 6px 18px color-mix(in srgb, var(--brand) 24%, transparent); }
  50% { box-shadow: 0 10px 28px color-mix(in srgb, var(--brand) 42%, transparent); }
}

@keyframes modalItemRise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 901px) {
  .hero {
    padding-left: max(48px, calc((100vw - 1280px) / 2));
    padding-right: max(48px, calc((100vw - 1280px) / 2));
  }

  .hero-content {
    width: min(620px, 43vw);
  }

  .hero-bg {
    right: max(48px, calc((100vw - 1280px) / 2));
    width: min(44vw, 630px);
  }

  .hero h1 {
    font-size: clamp(2.78rem, 2.95vw, 3rem);
  }

  .category-main {
    position: sticky;
    top: 118px;
  }

  .lp-section,
  .final-section,
  .site-footer {
    padding-left: max(48px, calc((100vw - 1280px) / 2));
    padding-right: max(48px, calc((100vw - 1280px) / 2));
  }
}

@media (max-width: 1180px) {
  .global-menu {
    gap: 12px;
    font-size: 0.84rem;
  }

  .hero h1,
  .final-section h2 {
    font-size: 4.35rem;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .global-menu a:nth-child(4),
  .global-menu a:nth-child(5) {
    display: none;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .hero-content {
    width: min(390px, 42vw);
  }

  .hero-bg {
    width: min(47vw, 560px);
  }

  .hero h1 {
    font-size: clamp(3.15rem, 5.6vw, 3.55rem);
  }

  .hero .hero-actions {
    gap: 10px;
  }

  .hero .hero-actions .btn {
    min-width: 180px;
  }
}

@media (max-width: 900px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    min-height: 66px;
    padding: calc(10px + env(safe-area-inset-top)) 16px 10px;
    gap: 10px;
  }

  .brand img {
    max-height: 38px;
    max-width: 150px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .header-trial-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-height: 44px;
    padding: 10px 12px;
    color: #fff;
    background: var(--brand);
    font-size: 0.78rem;
    line-height: 1;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 10px 22px color-mix(in srgb, var(--brand) 18%, transparent);
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    padding: 13px;
  }

  .global-menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 72px 24px 22px;
    background: var(--black);
    color: #fff;
    overflow-y: auto;
    min-height: 100vh;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 0.28s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.28s ease;
  }

  body.menu-open .site-header {
    height: 100vh;
    align-items: flex-start;
    background: var(--black);
  }

  body.menu-open .menu-toggle {
    position: fixed;
    top: calc(10px + env(safe-area-inset-top));
    right: 16px;
    margin-left: 0;
  }

  body.menu-open .brand,
  body.menu-open .header-trial-cta {
    display: none;
  }

  .global-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .global-menu a {
    width: 100%;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 1.05rem;
    line-height: 1.15;
  }

  .global-cta {
    margin-top: 12px;
    text-align: center;
    background: var(--brand);
    border-bottom: 0 !important;
  }

  .hero {
    min-height: 88vh;
    padding: 86px 18px 50px;
    align-items: flex-start;
  }

  .hero-bg::after {
    background: linear-gradient(180deg, color-mix(in srgb, color-mix(in srgb, var(--ink) 5%, var(--paper)) 98%, transparent) 0%, color-mix(in srgb, color-mix(in srgb, var(--ink) 5%, var(--paper)) 88%, transparent) 46%, color-mix(in srgb, color-mix(in srgb, var(--ink) 5%, var(--paper)) 32%, transparent) 100%);
  }

  .hero-content {
    padding-top: 20px;
  }

  .hero-kicker {
    margin-bottom: 16px;
    font-size: 0.98rem;
  }

  .hero h1,
  .final-section h2 {
    font-size: 3.05rem;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 1.08rem;
  }

  .hero-formula {
    margin-top: 18px;
    font-size: 1.2rem;
  }

  .btn {
    width: 100%;
    min-height: 56px;
    padding: 13px 18px;
  }

  .mini-nav {
    justify-content: center;
    gap: 18px;
    padding: 14px 16px;
  }

  .line-box {
    grid-template-columns: 1fr;
  }

  .trial-form {
    grid-template-columns: 1fr;
  }

  .trial-form-wrap {
    grid-column: auto;
    width: 100%;
    margin-top: 24px;
  }

  .trial-section .section-photo {
    aspect-ratio: 4 / 3;
    min-height: auto;
  }

  .trial-form h3,
  .trial-form .wide-field,
  .trial-form .btn {
    grid-column: auto;
  }

  .lp-section {
    padding: 76px 18px;
  }

  .split,
  .split-reverse,
  .split-reverse.phone-section,
  .place-section,
  .method-section,
  .career-section,
  .category-layout {
    grid-template-columns: 1fr;
  }

  .split .section-copy,
  .split-reverse .section-copy {
    order: 1;
  }

  .split .section-photo,
  .split-reverse .section-photo {
    order: 2;
  }

  h2 {
    font-size: 2.55rem;
  }

  .section-copy p,
  .wide-copy p,
  .place-copy p,
  .method-copy p,
  .career-copy p,
  .final-section p {
    font-size: 1.04rem;
  }

  .circle-points {
    gap: 10px;
  }

  .circle-points li {
    flex: 0 1 clamp(92px, calc((100vw - 66px) / var(--cp-count, 3)), 110px);
    max-width: 110px;
    min-width: 92px;
  }

  .mini-detail div,
  .mini-detail.compact div,
  .flow-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .bg-word {
    font-size: min(5.6rem, calc(90vw / var(--bg-word-len, 6) * 1.05));
  }

  .section-photo,
  .section-photo.tall,
  .place-photo,
  .method-photo,
  .career-photo,
  .category-main {
    aspect-ratio: 4 / 3;
    min-height: auto;
  }

  .category-list button {
    grid-template-columns: 110px 1fr;
  }

  .category-list img {
    width: 110px;
    height: 98px;
  }

  .recruit-list div,
  .place-list div,
  .trial-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .place-actions,
  .career-list {
    grid-column: auto;
  }

  .phone-number {
    font-size: 2rem !important;
  }

  .final-section {
    min-height: 76vh;
    padding: 82px 18px;
  }

  .final-section::after {
    background: linear-gradient(180deg, color-mix(in srgb, var(--black) 94%, transparent) 0%, color-mix(in srgb, var(--black) 76%, transparent) 55%, color-mix(in srgb, var(--black) 30%, transparent) 100%);
  }

  .sponsor-section {
    padding: 58px 18px;
  }

  .sponsor-inner {
    grid-template-columns: minmax(0, 1fr) minmax(138px, 44%);
    gap: 16px;
    align-items: start;
  }

  .sponsor-logos {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sponsor-logo {
    min-height: 86px;
    padding: 12px;
  }

  .sponsor-logo img {
    max-height: 62px;
  }

  .sponsor-logo:last-child img {
    max-width: 112px;
    max-height: 112px;
  }

  .site-footer {
    grid-template-columns: 52px 1fr;
    padding: 30px 18px 104px;
  }

  .site-footer img {
    width: 52px;
  }

  .mobile-fixed {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 170;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-bottom: env(safe-area-inset-bottom);
    background: linear-gradient(90deg, var(--black) 0 50%, var(--brand) 50% 100%);
    box-shadow: 0 -10px 28px color-mix(in srgb, var(--black) 12%, transparent);
  }

  .mobile-fixed a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    font-weight: 900;
    color: #fff;
    background: var(--black);
    line-height: 1;
    padding: 0 10px;
  }

  .mobile-fixed a:last-child {
    background: var(--brand);
  }

  body.menu-open .mobile-fixed,
  body.modal-open .mobile-fixed {
    display: none;
  }

  [data-animate],
  [data-animate="slideLeft"],
  [data-animate="slideRight"] {
    transform: translateY(34px);
  }

  [data-animate].is-visible {
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .hero h1,
  .final-section h2 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero-actions,
  .section-actions,
  .final-actions,
  .place-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .modal-body {
    padding: 30px 18px 42px;
  }

  .modal-body h2 {
    font-size: 2.1rem;
  }

}

@media (max-width: 900px) {
  body {
    line-height: 1.72;
  }

  section[id] {
    scroll-margin-top: 128px;
  }

  .site-header {
    min-height: 62px;
    padding: 9px 16px;
  }

  .brand img {
    max-height: 34px;
    max-width: 132px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
  }

  .hero {
    min-height: auto;
    padding: 82px 20px 38px;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero-kicker {
    margin-bottom: 10px;
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .hero h1,
  .final-section h2 {
    font-size: 2.18rem;
    line-height: 1.14;
  }

  .hero-lead {
    margin-top: 14px;
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .hero-formula {
    margin-top: 34px;
    font-size: 0.98rem;
  }

  .hero-actions,
  .section-actions,
  .final-actions,
  .place-actions {
    gap: 9px;
    margin-top: 18px;
  }

  .btn {
    min-height: 48px;
    padding: 11px 15px;
    font-size: 0.92rem;
  }

  .read-more {
    order: -1;
    justify-content: center;
    gap: 7px;
    margin-top: 14px;
    padding: 8px 12px;
    border: 1px solid color-mix(in srgb, var(--ink) 30%, transparent);
    background: color-mix(in srgb, var(--paper) 74%, transparent);
    font-size: 0.9rem;
    line-height: 1;
  }

  .section-actions .read-more,
  .place-actions .read-more {
    min-height: 40px;
  }

  .mini-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 14px 8px;
    overflow-x: visible;
    white-space: nowrap;
  }

  .mini-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 44px;
    padding: 0 5px;
    border-right: 1px solid var(--line);
    font-size: clamp(0.84rem, 3.6vw, 1rem);
    line-height: 1.12;
    text-align: center;
  }

  .mini-nav a:last-child {
    border-right: 0;
  }

  .mini-nav .is-call {
    padding: 8px 5px;
    border-right: 0;
  }

  .lp-section {
    padding: 46px 20px;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.18;
  }

  h3 {
    font-size: 1.12rem;
  }

  .section-copy p,
  .wide-copy p,
  .place-copy p,
  .method-copy p,
  .career-copy p,
  .final-section p {
    margin-top: 15px;
    font-size: 0.96rem;
    line-height: 1.76;
  }

  .wide-copy {
    margin-bottom: 26px;
  }

  .circle-points {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 18px;
  }

  .circle-points li {
    flex: 0 1 clamp(56px, calc((100vw - 64px - (var(--cp-count, 5) - 1) * 6px) / var(--cp-count, 5)), 96px);
    max-width: 96px;
    min-width: 56px;
    min-height: 0;
    aspect-ratio: 1;
    border-radius: 50%;
    padding: 0 3px;
    font-size: clamp(0.58rem, 2.55vw, 0.72rem);
    line-height: 1.18;
    background: var(--paper);
  }

  .circle-points-dark li {
    border-color: color-mix(in srgb, var(--ink) 16%, transparent);
    background: var(--paper);
    color: var(--ink);
  }

  .mini-detail,
  .flow-list,
  .recruit-list,
  .place-list,
  .trial-list {
    margin-top: 18px;
  }

  .mini-detail div,
  .mini-detail.compact div,
  .flow-list li,
  .recruit-list div,
  .place-list div,
  .trial-list div {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 10px 0;
  }

  .category-layout {
    gap: 18px;
  }

  .category-list {
    gap: 14px;
  }

  .category-list button {
    grid-template-columns: 92px 1fr;
    column-gap: 12px;
    min-height: auto;
    padding-bottom: 12px;
  }

  .category-list img {
    width: 92px;
    height: 72px;
  }

  .category-text {
    gap: 5px;
  }

  .category-text strong {
    font-size: 1rem;
  }

  .category-text small {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .phone-number {
    font-size: 1.68rem !important;
  }

  .final-section {
    min-height: auto;
    padding: 54px 20px 86px;
  }

  .site-footer {
    padding-bottom: calc(104px + env(safe-area-inset-bottom));
  }

  .mobile-fixed a {
    min-height: 60px;
    font-size: 0.9rem;
  }

  main {
    padding-bottom: calc(60px + env(safe-area-inset-bottom));
  }

  .line-box {
    gap: 12px;
    margin-top: 18px;
    padding: 16px 0;
  }

  .trial-form {
    gap: 12px;
    margin-top: 18px;
    padding-top: 18px;
  }

  .trial-form input,
  .trial-form select,
  .trial-form textarea {
    min-height: 46px;
    padding: 10px 12px;
    font-size: 0.92rem;
  }

  [data-animate],
  [data-animate="slideLeft"],
  [data-animate="slideRight"] {
    transform: none;
  }
}

@media (max-width: 480px) {
  .hero h1,
  .final-section h2 {
    font-size: 2.02rem;
  }

  h2 {
    font-size: 1.88rem;
  }

  .lp-section {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 900px) {
  .lp-section {
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .phone-section,
  .trial-section,
  .final-section {
    padding-bottom: calc(116px + env(safe-area-inset-bottom));
  }

  .hero {
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(168px, 48vw);
    gap: 14px;
    align-items: start;
    padding: 84px 20px 36px;
  }

  .hero-bg {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    height: clamp(214px, 60vw, 280px);
    align-self: start;
    box-shadow: none;
  }

  .hero-content {
    grid-column: 1;
    grid-row: 1;
    width: auto;
    min-width: 0;
  }

  .hero-kicker {
    font-size: clamp(0.58rem, 2.35vw, 0.74rem);
  }

  .hero h1,
  .final-section h2 {
    font-size: clamp(1.12rem, 4.7vw, 1.82rem);
  }

  .hero h1 .desktop-line {
    display: none;
  }

  .hero h1 .mobile-line {
    display: block !important;
    white-space: nowrap;
  }

  .hero-lead,
  .section-copy p,
  .wide-copy p,
  .place-copy p,
  .method-copy p,
  .career-copy p,
  .final-section p {
    font-size: clamp(0.82rem, 3.25vw, 0.96rem);
    line-height: 1.68;
  }

  .hero-formula {
    font-size: clamp(0.68rem, 3vw, 0.98rem);
    white-space: nowrap;
  }

  .split,
  .split-reverse,
  .split-reverse.phone-section,
  .place-section,
  .method-section,
  .career-section,
  .trial-section {
    grid-template-columns: minmax(0, 1fr) minmax(166px, 48vw);
    gap: 18px 14px;
    align-items: start;
  }

  .split-reverse .section-copy,
  .method-copy {
    order: 1;
  }

  .split-reverse .section-photo,
  .method-photo {
    order: 2;
  }

  .section-copy,
  .place-copy,
  .method-copy,
  .career-copy {
    grid-column: 1;
    min-width: 0;
    align-self: start;
  }

  .section-photo,
  .section-photo.tall,
  .place-photo,
  .method-photo,
  .career-photo {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    height: clamp(190px, 54vw, 252px);
    min-height: 0;
    aspect-ratio: auto;
    align-self: start;
    box-shadow: none;
  }

  .phone-section .section-copy {
    display: contents;
  }

  .phone-section .section-kicker,
  .phone-section h2 {
    grid-column: 1 / 3;
    min-width: 0;
  }

  .phone-section .section-copy > p:not(.section-kicker):not(.phone-number) {
    grid-column: 1;
    min-width: 0;
  }

  .phone-section .section-photo {
    grid-column: 2;
    grid-row: 3;
  }

  .phone-section .phone-number,
  .phone-section .section-actions {
    grid-column: 1 / 3;
  }

  .phone-number {
    width: max-content;
    max-width: 100%;
    font-size: clamp(1.95rem, 8.8vw, 2.35rem) !important;
    line-height: 1.06;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .section-photo img,
  .place-photo img,
  .method-photo img,
  .career-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  h2 {
    font-size: clamp(1.34rem, 5.95vw, 1.9rem);
    line-height: 1.18;
  }

  #recruit h2 {
    font-size: clamp(2.15rem, 9.4vw, 2.75rem);
    line-height: 1.03;
  }

  #recruit {
    grid-template-columns: minmax(0, 1fr) minmax(146px, 40vw);
  }

  #recruit h2 span {
    white-space: nowrap;
  }

  .section-kicker {
    margin-bottom: 8px;
    font-size: 0.72rem;
  }

  .section-actions,
  .place-actions,
  .career-list,
  .trial-form-wrap,
  .flow-list,
  .recruit-list,
  .place-list,
  .trial-list,
  .line-box,
  .mini-detail,
  .method-lines {
    grid-column: 1 / 3;
  }

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

  .category-main {
    height: clamp(210px, 58vw, 300px);
    aspect-ratio: auto;
    box-shadow: none;
  }

  .category-list button {
    grid-template-columns: 96px 1fr;
  }

  .category-list img {
    width: 96px;
    height: 72px;
    object-fit: cover;
  }

  .read-more {
    display: none;
  }

  .hero-actions,
  .section-actions,
  .place-actions,
  .final-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
    width: min(82vw, 340px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions:has(.btn + .btn),
  .section-actions:has(.btn + .btn),
  .place-actions:has(.btn + .btn),
  .final-actions:has(.btn + .btn) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100vw - 40px);
    max-width: 360px;
  }

  .hero-actions .btn,
  .section-actions .btn,
  .place-actions .btn,
  .final-actions .btn {
    width: 100%;
    min-width: 0;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
  }

  .modal {
    padding: max(18px, env(safe-area-inset-top)) 16px calc(34px + env(safe-area-inset-bottom));
  }

  .modal-panel {
    width: min(720px, calc(100vw - 32px));
    border-radius: 12px;
  }

  .modal-scroll > img {
    height: clamp(190px, 52vw, 310px);
    aspect-ratio: auto;
  }

  .modal-scroll > img.modal-portrait {
    height: clamp(300px, 94vw, 520px);
    aspect-ratio: auto;
    object-position: center top;
  }

  .modal-scroll > img.modal-poster {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .modal-body {
    padding: 28px 18px calc(92px + env(safe-area-inset-bottom));
  }

  .modal-body h2 {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
  }

  .modal-detail-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .modal-detail-card {
    padding: 15px;
  }

  .modal-floating-close {
    display: none;
  }

  .header-trial-cta:active,
  .menu-toggle:active,
  .mobile-fixed a:active,
  .modal-floating-close:active {
    transform: translateY(1px);
    filter: brightness(0.95);
  }

  .modal-map {
    height: 260px;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand img {
    max-height: 32px;
    max-width: 120px;
  }

  .header-trial-cta {
    min-height: 44px;
    padding: 9px 10px;
    font-size: 0.7rem;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    padding: 12px;
  }

  .split,
  .split-reverse,
  .place-section,
  .method-section,
  .career-section,
  .trial-section {
    grid-template-columns: minmax(0, 1fr) minmax(168px, 48vw);
    gap: 16px 10px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(156px, 45vw);
  }

  .hero-bg,
  .section-photo,
  .section-photo.tall,
  .phone-section .section-photo,
  .phone-section .section-photo.tall,
  .place-photo,
  .method-photo,
  .career-photo {
    height: clamp(210px, 62vw, 278px);
  }

  .hero-bg {
    height: clamp(220px, 66vw, 296px);
  }

  h2 {
    font-size: clamp(1.24rem, 5.8vw, 1.58rem);
  }
}

@media (max-width: 900px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .lp-section {
    padding-top: 34px;
    padding-bottom: calc(54px + env(safe-area-inset-bottom));
  }

  .phone-section,
  .trial-section,
  .final-section {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .mini-nav {
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .split > .section-copy,
  .split-reverse > .section-copy,
  .place-copy,
  .method-copy,
  .career-copy {
    display: contents;
  }

  .section-kicker,
  .split h2,
  .split-reverse h2,
  .place-copy > h2,
  .method-copy > h2,
  .career-copy > h2,
  .split .modal-teaser,
  .split-reverse .modal-teaser,
  .place-copy > .modal-teaser,
  .method-copy > .modal-teaser,
  .career-copy > .modal-teaser {
    grid-column: 1;
    min-width: 0;
    max-width: 100%;
  }

  h2 {
    font-size: clamp(1.34rem, 5.8vw, 1.78rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .hero-lead,
  .section-copy p,
  .wide-copy p,
  .place-copy p,
  .method-copy p,
  .career-copy p,
  .final-section p {
    font-size: clamp(0.94rem, 3.65vw, 1.06rem);
    line-height: 1.72;
  }

  .hero-formula {
    font-size: clamp(0.78rem, 3.25vw, 1.04rem);
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(156px, 45vw);
    gap: 10px;
  }

  .hero-content {
    display: contents;
  }

  .hero h1,
  .hero-formula,
  .hero-lead {
    grid-column: 1;
    min-width: 0;
  }

  .hero-kicker {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .hero h1 {
    grid-column: 1;
    grid-row: 2;
  }

  .hero-lead {
    grid-column: 1;
    grid-row: 3;
  }

  .hero-formula {
    grid-column: 1 / 3;
    grid-row: 4;
    margin-top: 34px;
  }

  .hero-bg {
    grid-column: 2;
    grid-row: 2 / span 2;
  }

  .hero .hero-actions {
    grid-column: 1 / 3;
    grid-row: 5;
    width: 100%;
    margin-top: 12px;
  }

  .hero h1,
  .final-section h2 {
    font-size: clamp(1.36rem, 5.65vw, 1.72rem);
    line-height: 1.12;
  }

  .hero h1 {
    font-size: clamp(1.76rem, 7.2vw, 2.35rem);
  }

  .hero-actions,
  .section-actions,
  .place-actions,
  .final-actions {
    grid-column: 1 / 3;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-actions:has(.btn + .btn),
  .section-actions:has(.btn + .btn),
  .place-actions:has(.btn + .btn),
  .final-actions:has(.btn + .btn) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: none;
    gap: 8px;
  }

  .hero .hero-actions:has(.btn + .btn) {
    width: 100%;
    max-width: none;
  }

  .hero-actions .btn,
  .section-actions .btn,
  .place-actions .btn,
  .final-actions .btn {
    min-height: 52px;
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .hero .hero-actions .btn {
    min-width: 0;
  }

  .circle-points {
    grid-column: 1 / 3;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
    gap: 4px;
    width: 100%;
    max-width: none;
    justify-content: stretch;
    flex-wrap: unset;
    overflow: visible;
  }

  .circle-points li {
    width: 100%;
    max-width: none;
    min-width: 0;
    flex: none;
    aspect-ratio: 1;
    padding: 0 2px;
    font-size: clamp(0.72rem, 3.2vw, 1.06rem);
    line-height: 1.18;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .method-section .circle-points {
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
    width: 100%;
    max-width: none;
    justify-content: stretch;
  }

  .method-section .circle-points li {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    font-size: clamp(0.9rem, 3.95vw, 1.05rem);
  }

  .section-photo,
  .section-photo.tall,
  .place-photo,
  .method-photo,
  .career-photo {
    grid-row: 1 / span 4;
  }

  .section-photo[data-animate],
  .place-photo[data-animate],
  .method-photo[data-animate],
  .career-photo[data-animate],
  .category-layout[data-animate] {
    opacity: 1;
    transform: translateX(14px) scale(0.99);
    transition: opacity 0.62s ease, transform 0.74s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .section-photo[data-animate].is-visible,
  .place-photo[data-animate].is-visible,
  .method-photo[data-animate].is-visible,
  .career-photo[data-animate].is-visible,
  .category-layout[data-animate].is-visible {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  .hero-bg {
    background: transparent;
  }

  .hero-bg img {
    position: relative !important;
    inset: auto;
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: 52% center;
    animation: mobileImageSettle 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .section-photo img,
  .place-photo img,
  .method-photo img,
  .career-photo img,
  .category-list img,
  .category-main img {
    object-fit: cover;
  }

}

@keyframes mobileImageSettle {
  from {
    opacity: 0;
    transform: translateX(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@media (max-width: 900px) {
  main {
    padding-bottom: 0;
  }

  .lp-section {
    padding-top: 28px;
    padding-bottom: 34px;
  }

  .phone-section,
  .trial-section,
  .final-section {
    padding-bottom: 42px;
  }

  .split,
  .split-reverse,
  .place-section,
  .method-section,
  .career-section,
  .trial-section,
  #recruit {
    grid-template-columns: minmax(0, 1.12fr) minmax(128px, 36vw);
    gap: 14px 12px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(128px, 34vw);
  }

  .section-photo,
  .section-photo.tall,
  .place-photo,
  .method-photo,
  .career-photo {
    position: sticky;
    top: calc(74px + env(safe-area-inset-top));
    height: clamp(210px, 58vw, 300px);
    z-index: 1;
  }

  .section-kicker {
    font-size: clamp(1rem, 4.35vw, 1.25rem);
    line-height: 1.1;
  }

  h2,
  .split h2,
  .split-reverse h2,
  .place-copy > h2,
  .method-copy > h2,
  .career-copy > h2 {
    font-size: clamp(2.26rem, 9.7vw, 3.3rem);
    line-height: 1.04;
    letter-spacing: 0em;
  }

  .phone-section .section-kicker,
  .phone-section h2 {
    grid-column: 1 / 3;
  }

  .phone-section .section-copy > p:not(.section-kicker):not(.phone-number) {
    grid-column: 1;
  }

  .phone-section .section-photo,
  .phone-section .section-photo.tall {
    grid-column: 2;
    grid-row: 3;
  }

  .phone-section .phone-number {
    grid-column: 1 / 3;
    margin-top: 6px;
  }

  .phone-section .section-actions {
    grid-column: 1 / 3;
  }

  #recruit h2 {
    font-size: clamp(2.35rem, 10.4vw, 3.15rem);
    line-height: 0.98;
  }

  .hero-lead,
  .section-copy p,
  .wide-copy p,
  .place-copy p,
  .method-copy p,
  .career-copy p,
  .final-section p {
    font-size: clamp(1.1rem, 4.6vw, 1.34rem);
    line-height: 1.56;
    letter-spacing: 0em;
  }

  .hero-kicker {
    font-size: clamp(0.9rem, 3.95vw, 1.12rem);
    line-height: 1.35;
  }

  .hero-kicker span {
    display: inline;
  }

  .hero-kicker span:first-child {
    display: block;
  }

  .hero-kicker span:nth-child(2)::before {
    content: "";
  }

  .hero-kicker span:nth-child(3)::before {
    content: "｜";
  }

  .hero-formula {
    color: var(--brand);
    font-size: clamp(1.26rem, 5.38vw, 1.62rem);
    line-height: 1.2;
    white-space: nowrap;
  }

  .recruit-list,
  .place-list,
  .trial-list {
    margin-top: 28px;
  }

  .mini-nav.last {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    padding: 10px 0;
  }

  .mini-nav.last a {
    min-width: 0;
    min-height: 46px;
    padding: 14px 4px;
    font-size: clamp(0.84rem, 3.6vw, 1rem);
    line-height: 1.12;
  }

  .site-footer {
    margin-top: 0;
    padding-top: 28px;
  }
}

@media (max-width: 600px) {
  .split-reverse.phone-section {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .phone-section .section-kicker {
    grid-row: 1;
  }

  .phone-section h2 {
    grid-column: 1;
    grid-row: 2;
  }

  .phone-section .section-copy > p:not(.section-kicker):not(.phone-number) {
    grid-column: 1;
    grid-row: 4;
  }

  .phone-section .section-photo,
  .phone-section .section-photo.tall {
    grid-column: 1;
    grid-row: 3;
    position: relative;
    top: auto;
    height: clamp(184px, 51vw, 220px);
    max-width: 560px;
    margin-top: -4px;
  }

  .phone-section .phone-number {
    grid-column: 1;
    grid-row: 5;
  }

  .phone-section .section-actions {
    grid-column: 1;
    grid-row: 6;
    display: none;
  }
}

@media (max-width: 420px) {
  .site-header {
    min-height: 64px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(104px, 28vw);
  }

  .hero-bg {
    height: clamp(164px, 48vw, 198px);
  }

  .hero-bg img {
    object-position: 52% 34%;
  }

  .split,
  .split-reverse,
  .place-section,
  .method-section,
  .career-section,
  .trial-section,
  #recruit {
    grid-template-columns: minmax(0, 1.08fr) minmax(124px, 34vw);
    gap: 12px 10px;
  }

  h2,
  .split h2,
  .split-reverse h2,
  .place-copy > h2,
  .method-copy > h2,
  .career-copy > h2 {
    font-size: clamp(2.12rem, 9.1vw, 2.85rem);
  }

  #recruit h2 {
    font-size: clamp(2.18rem, 9.6vw, 2.75rem);
  }

  .section-photo,
  .section-photo.tall,
  .place-photo,
  .method-photo,
  .career-photo {
    height: clamp(214px, 62vw, 286px);
  }
}

@media (max-width: 900px) {
  br.soft-break {
    display: initial;
  }

  .hero-lead,
  .section-copy p,
  .wide-copy p,
  .place-copy p,
  .method-copy p,
  .career-copy p,
  .final-section p {
    font-size: clamp(0.98rem, 4.05vw, 1.12rem);
    line-height: 1.68;
  }

  .category-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .category-list img.category-poster-thumb {
    object-fit: contain;
    object-position: center;
    background: var(--black);
  }

  .category-list {
    gap: 14px;
  }

  .category-list button {
    grid-template-columns: 98px minmax(0, 1fr);
    column-gap: 14px;
    min-height: 136px;
    padding-bottom: 14px;
  }

  .category-list img,
  .category-list img.category-poster-thumb {
    width: 98px;
    height: 122px;
  }

  .category-text {
    gap: 6px;
  }

  .category-text strong {
    font-size: clamp(1rem, 4.2vw, 1.14rem);
    line-height: 1.28;
  }

  .category-text small {
    font-size: clamp(0.82rem, 3.45vw, 0.94rem);
    line-height: 1.5;
  }

  .modal-body p,
  .modal-body li {
    font-size: 0.96rem;
    line-height: 1.82;
  }

  .modal-detail-card h3 {
    font-size: 0.95rem;
    line-height: 1.38;
  }

  .modal-detail-card p {
    font-size: 0.91rem;
    line-height: 1.78;
  }

  .modal-detail-card p + p {
    margin-top: 0.72em;
  }
}

@media (max-width: 360px) {
  .mini-nav {
    padding: 12px 4px;
  }

  .mini-nav a,
  .mini-nav.last a {
    padding-left: 2px;
    padding-right: 2px;
    font-size: clamp(0.8rem, 3.72vw, 0.84rem);
  }
}

@media (max-width: 340px) {
  .hero h1 {
    font-size: clamp(1.42rem, 7.15vw, 1.52rem);
  }
}

@media (max-width: 900px) {
  br.soft-break {
    display: none;
  }

  .split,
  .split-reverse,
  .place-section,
  .method-section,
  .career-section,
  .trial-section,
  #recruit {
    grid-template-columns: minmax(0, 1fr);
    gap: 0 22px;
  }

  .split > .section-copy,
  .split-reverse > .section-copy,
  .place-copy,
  .method-copy,
  .career-copy {
    display: contents;
  }

  .section-kicker,
  .split h2,
  .split-reverse h2,
  .place-copy > h2,
  .method-copy > h2,
  .career-copy > h2,
  .split .modal-teaser,
  .split-reverse .modal-teaser,
  .place-copy > .modal-teaser,
  .method-copy > .modal-teaser,
  .career-copy > .modal-teaser,
  .section-actions,
  .place-actions,
  .career-list,
  .trial-form-wrap,
  .flow-list,
  .recruit-list,
  .place-list,
  .trial-list {
    grid-column: auto;
    grid-row: auto;
  }

  .section-kicker {
    order: 1;
  }

  .split h2,
  .split-reverse h2,
  .place-copy > h2,
  .method-copy > h2,
  .career-copy > h2 {
    order: 2;
  }

  .split .modal-teaser,
  .split-reverse .modal-teaser,
  .place-copy > .modal-teaser,
  .method-copy > .modal-teaser,
  .career-copy > .modal-teaser {
    order: 3;
  }

  .circle-points,
  .recruit-list,
  .place-list,
  .trial-list,
  .career-list,
  .method-lines,
  .mini-detail {
    order: 4;
  }

  .section-photo,
  .section-photo.tall,
  .place-photo,
  .method-photo,
  .career-photo {
    order: 5;
    margin-top: 22px;
  }

  .section-actions,
  .place-actions {
    order: 6;
  }

  .trial-form-wrap,
  .flow-list,
  .line-box {
    order: 7;
  }

  .phone-number {
    order: 4;
  }

  .phone-section .section-kicker,
  .phone-section h2,
  .phone-section .section-copy > p:not(.section-kicker):not(.phone-number),
  .phone-section .phone-number,
  .phone-section .section-photo,
  .phone-section .section-photo.tall,
  .phone-section .section-actions {
    grid-column: auto;
    grid-row: auto;
  }

  .phone-section .section-actions {
    display: grid;
  }

  .phone-section h2 {
    margin-top: -18px;
  }

  .phone-section .section-copy > .modal-teaser {
    margin-top: -3px;
  }

  h2,
  .split h2,
  .split-reverse h2,
  .place-copy > h2,
  .method-copy > h2,
  .career-copy > h2,
  #recruit h2 {
    font-size: clamp(1.72rem, 7.2vw, 2.2rem);
    line-height: 1.14;
  }

  .hero h1 {
    font-size: clamp(1.45rem, 6.7vw, 1.72rem);
    line-height: 1.05;
    white-space: nowrap;
  }

  .hero h1 .mobile-line {
    white-space: nowrap;
  }

  .hero-kicker {
    margin-bottom: 4px;
    line-height: 1.18;
  }

  .hero h1 {
    margin-top: 10px;
  }

  .hero-lead {
    margin-top: 18px;
    line-height: 1.34;
  }

  .hero-formula {
    margin-top: 10px;
    margin-bottom: 26px;
  }

  #recruit h2 {
    font-size: clamp(2rem, 8.2vw, 2.35rem);
    line-height: 1.04;
    white-space: nowrap;
  }

  #recruit h2 span {
    display: inline;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .hero-content {
    display: contents;
  }

  .hero-kicker {
    order: 1;
    grid-column: auto;
    grid-row: auto;
  }

  .hero h1 {
    order: 2;
    grid-column: auto;
    grid-row: auto;
  }

  .hero-lead {
    order: 3;
    grid-column: auto;
    grid-row: auto;
  }

  .hero-formula {
    order: 4;
    grid-column: auto;
    grid-row: auto;
  }

  .hero-bg {
    order: 5;
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    height: clamp(250px, 68vw, 330px);
  }

  .hero .hero-actions {
    order: 6;
    grid-column: auto;
    grid-row: auto;
  }

  .hero-lead,
  .section-copy p,
  .wide-copy p,
  .place-copy p,
  .method-copy p,
  .career-copy p,
  .final-section p {
    font-size: clamp(0.88rem, 3.45vw, 0.96rem);
    line-height: 1.5;
    word-break: normal;
    overflow-wrap: break-word;
    line-break: strict;
    text-wrap: pretty;
  }

  .modal-body p,
  .modal-body li {
    font-size: clamp(0.88rem, 3.45vw, 0.96rem);
    line-height: 1.5;
  }

  .section-photo,
  .section-photo.tall,
  .place-photo,
  .method-photo,
  .career-photo {
    position: relative;
    top: auto;
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .section-photo.tall,
  .place-photo {
    aspect-ratio: 16 / 9;
  }

  .category-main {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .section-photo img,
  .place-photo img,
  .method-photo img,
  .career-photo img {
    width: 100%;
    height: 100%;
  }

  .circle-points,
  .method-section .circle-points {
    grid-column: auto;
    width: 100%;
    margin-left: 0;
  }

  .modal-body p,
  .modal-body li,
  .modal-detail-card p {
    word-break: normal;
    overflow-wrap: normal;
    line-break: strict;
    text-wrap: auto;
  }

  .modal-body p,
  .modal-body li {
    font-size: clamp(0.88rem, 3.45vw, 0.96rem);
    line-height: 1.5;
  }

  .modal-detail-card p {
    font-size: clamp(0.82rem, 3.45vw, 0.94rem);
    line-height: 1.5;
  }

  .modal-detail-card h3 {
    font-size: 0.9rem;
    line-height: 1.28;
  }

  .modal {
    padding: 56px 6px calc(12px + env(safe-area-inset-bottom));
  }

  .modal-panel {
    bottom: -96px;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 68px - env(safe-area-inset-bottom));
    max-height: calc(100dvh - 68px - env(safe-area-inset-bottom));
    border-radius: 14px 14px 0 0;
    overflow: hidden;
    transform: none;
    transition: opacity 0.5s ease, bottom 0.82s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-overflow-scrolling: touch;
  }

  .modal-scroll {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .modal.is-open .modal-panel {
    bottom: 0;
  }

  .modal.is-open .modal-body {
    transform: none;
  }

  .modal-back {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    min-height: 38px;
    font-size: 1.35rem;
  }

  .modal-body {
    padding: 26px 12px calc(28px + env(safe-area-inset-bottom));
    overflow-x: clip;
  }

  .modal-scroll:not(:has(> img)) .modal-body {
    padding-top: 58px;
  }

  .modal-detail-grid {
    gap: 10px;
    margin: 24px 0;
  }

  .modal-detail-card {
    padding: 14px 12px;
  }

  .modal-footer-actions,
  .modal-body > .btn,
  .modal-bottom {
    font-size: 0.92rem;
  }

  .modal-footer-actions {
    position: static;
    flex: 0 0 auto;
    gap: 10px;
    margin: 0;
    padding: 12px 12px calc(12px + env(safe-area-inset-bottom));
    background: var(--paper);
    border-top: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
    box-shadow: 0 -14px 30px color-mix(in srgb, var(--black) 8%, transparent);
  }

  .modal-footer-actions::before {
    content: none;
  }

  .modal-footer-actions .btn,
  .modal-bottom {
    min-height: 54px;
    padding-left: 10px;
    padding-right: 10px;
    box-shadow: 0 12px 24px color-mix(in srgb, var(--black) 16%, transparent);
  }

  .hero-lead,
  .section-copy p,
  .wide-copy p,
  .place-copy p,
  .method-copy p,
  .career-copy p,
  .final-section p,
  .modal-body p,
  .modal-body li,
  .modal-detail-card p {
    text-wrap: auto;
    overflow-wrap: normal;
    word-break: normal;
    letter-spacing: 0;
  }

  .modal-body h2 {
    font-size: clamp(1.86rem, 8.2vw, 2.35rem);
    line-height: 1.08;
  }

  .modal-body p,
  .modal-body li {
    line-height: 1.46;
  }

  .modal-detail-card p {
    line-height: 1.46;
  }

  .inline-more {
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  .site-header {
    display: flex !important;
    justify-content: flex-start;
    gap: 8px;
    left: 0;
    right: auto;
    width: 100vw;
    max-width: 100vw;
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden;
  }

  .brand {
    flex: 0 1 148px !important;
    max-width: 148px;
    min-width: 0;
  }

  .brand img {
    width: 148px !important;
  }

  .header-trial-cta {
    flex: 0 0 96px !important;
    width: 96px !important;
    max-width: 96px !important;
    margin-left: auto !important;
    min-height: 42px;
    padding: 9px 8px;
    font-size: clamp(0.68rem, 2.8vw, 0.76rem);
    line-height: 1.12;
    white-space: normal;
    text-align: center;
  }

  .menu-toggle {
    flex: 0 0 44px !important;
    width: 44px !important;
    height: 44px !important;
    padding: 11px;
  }

  .mini-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    overflow: visible;
    padding-left: 0;
    padding-right: 0;
  }

  .mini-nav a {
    min-width: 0;
    padding-left: 4px;
    padding-right: 4px;
    text-align: center;
  }

  .mobile-fixed {
    left: 0;
    right: auto;
    width: 100vw;
    max-width: 100vw;
  }

  .hero h1,
  .hero h1 .mobile-line,
  .split h2,
  .split-reverse h2,
  .place-copy > h2,
  .method-copy > h2,
  .career-copy > h2,
  #recruit h2,
  .final-section h2 {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: keep-all;
  }

  .hero,
  .split,
  .split-reverse,
  .split-reverse.phone-section,
  .place-section,
  .method-section,
  .career-section,
  .trial-section,
  #recruit {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(112px, 2fr);
    gap: 14px 12px;
    align-items: start;
  }

  .hero-content,
  .split > .section-copy,
  .split-reverse > .section-copy,
  .place-copy,
  .method-copy,
  .career-copy {
    display: flex;
    flex-direction: column;
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .hero-bg,
  .section-photo,
  .section-photo.tall,
  .phone-section .section-photo,
  .phone-section .section-photo.tall,
  .place-photo,
  .method-photo,
  .career-photo {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    grid-column: 2;
    grid-row: 1;
    order: initial;
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
  }

  .hero-bg img,
  .section-photo img,
  .phone-section .section-photo img,
  .place-photo img,
  .method-photo img,
  .career-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero .hero-actions,
  .section-actions,
  .phone-section .section-actions,
  .place-actions {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
  }

  .hero-actions:has(.btn + .btn),
  .section-actions:has(.btn + .btn),
  .place-actions:has(.btn + .btn),
  .final-actions:has(.btn + .btn) {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-actions .btn,
  .section-actions .btn,
  .place-actions .btn,
  .final-actions .btn {
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.2;
  }

  .phone-section h2 {
    margin-top: 0;
  }

  .circle-points,
  .recruit-list,
  .place-list,
  .trial-list,
  .career-list,
  .method-lines,
  .mini-detail,
  .flow-list,
  .line-box {
    grid-column: 1;
    width: 100%;
  }

  .category-section {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(112px, 2fr);
    gap: 14px 12px;
    align-items: start;
  }

  .category-section .wide-copy {
    display: flex;
    flex-direction: column;
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    align-self: start;
  }

  .category-layout {
    display: contents;
  }

  .category-main {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
  }

  .category-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .category-list {
    grid-column: 1 / 3;
    width: 100%;
  }

  .category-list button {
    grid-template-columns: minmax(0, 1fr) minmax(92px, 34vw);
    gap: 12px;
    align-items: stretch;
  }

  .category-list img,
  .category-list img.category-poster-thumb {
    grid-column: 2;
    order: 2;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

  .category-text {
    grid-column: 1;
    order: 1;
    min-width: 0;
  }

  .final-section {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(112px, 2fr);
    gap: 14px 12px;
    min-height: auto;
    padding: 44px 20px;
    background: var(--black);
  }

  .final-bg {
    position: relative;
    inset: auto;
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    opacity: 1;
  }

  .final-section::after {
    content: none;
  }

  .final-inner {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 420px) {
  .hero,
  .split,
  .split-reverse,
  .split-reverse.phone-section,
  .place-section,
  .method-section,
  .career-section,
  .trial-section,
  #recruit,
  .category-section,
  .final-section {
    grid-template-columns: minmax(0, 3fr) minmax(104px, 2fr);
    gap: 12px 10px;
  }
}

@media (max-width: 900px) {
  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom));
  }

  .site-header {
    min-height: 58px;
    height: 58px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand {
    flex-basis: 138px !important;
    max-width: 138px;
  }

  .brand img {
    width: 138px !important;
  }

  .header-trial-cta {
    flex-basis: 92px !important;
    width: 92px !important;
    max-width: 92px !important;
    min-height: 40px;
    font-size: 0.68rem;
  }

  .menu-toggle {
    flex-basis: 42px !important;
    width: 42px !important;
    height: 42px !important;
  }

  .hero,
  .lp-section,
  .place-section,
  .method-section,
  .career-section,
  .final-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero,
  .split,
  .split-reverse,
  .split-reverse.phone-section,
  .place-section,
  .method-section,
  .career-section,
  .trial-section,
  #recruit,
  .category-section,
  .final-section {
    grid-template-columns: minmax(0, 58fr) minmax(112px, 42fr);
    gap: 10px;
    align-items: start;
  }

  .hero h1 {
    font-size: clamp(1.54rem, 6.55vw, 1.94rem);
    line-height: 1.08;
    margin-bottom: 12px;
  }

  .hero-kicker {
    font-size: clamp(0.86rem, 3.5vw, 0.98rem);
    line-height: 1.28;
    margin-bottom: 10px;
  }

  .hero-lead,
  .section-copy p,
  .wide-copy p,
  .place-copy p,
  .method-copy p,
  .career-copy p,
  .final-section p {
    font-size: clamp(0.84rem, 3.45vw, 0.95rem);
    line-height: 1.55;
  }

  .hero-formula {
    font-size: clamp(1.06rem, 5vw, 1.34rem);
    line-height: 1.18;
    margin-top: 34px;
    margin-bottom: 16px;
  }

  .split h2,
  .split-reverse h2,
  .place-copy > h2,
  .method-copy > h2,
  .career-copy > h2,
  #recruit h2,
  .category-section h2,
  .final-section h2 {
    font-size: clamp(1.58rem, 6.6vw, 1.92rem);
    line-height: 1.08;
    margin-bottom: 12px;
  }

  .section-kicker {
    font-size: 0.78rem;
    line-height: 1;
    margin-bottom: 8px;
  }

  .hero-bg,
  .section-photo,
  .section-photo.tall,
  .phone-section .section-photo,
  .phone-section .section-photo.tall,
  .place-photo,
  .method-photo,
  .career-photo,
  .category-main,
  .final-bg {
    aspect-ratio: 4 / 5;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin-top: 0 !important;
  }

  .hero-bg img,
  .section-photo img,
  .section-photo.tall img,
  .phone-section .section-photo img,
  .place-photo img,
  .method-photo img,
  .career-photo img,
  .category-main img,
  .final-bg {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
  }

  .trial-section .section-photo,
  .trial-section .section-photo img {
    aspect-ratio: 4 / 5;
    height: auto !important;
  }

  .hero-actions:has(.btn + .btn),
  .section-actions:has(.btn + .btn),
  .place-actions:has(.btn + .btn),
  .final-actions:has(.btn + .btn) {
    gap: 7px;
  }

  .btn,
  .hero-actions .btn,
  .section-actions .btn,
  .place-actions .btn,
  .final-actions .btn {
    min-height: 44px;
    padding: 10px 8px;
    font-size: clamp(0.78rem, 3.2vw, 0.9rem);
    line-height: 1.18;
  }

  .mini-nav {
    top: 58px;
  }

  .mini-nav a {
    min-height: 44px;
    font-size: clamp(0.76rem, 3.3vw, 0.9rem);
    line-height: 1.1;
  }

  .mobile-fixed {
    height: 58px;
  }

  .mobile-fixed a {
    min-height: 58px;
    font-size: 0.92rem;
  }

  .circle-points {
    gap: 5px;
  }

  .circle-points li {
    font-size: clamp(0.66rem, 2.65vw, 0.78rem);
    line-height: 1.12;
  }

  .category-list {
    gap: 0;
    margin-top: 10px;
  }

  .category-list button {
    grid-template-columns: minmax(0, 58fr) minmax(104px, 42fr);
    gap: 10px;
    padding: 16px 0;
  }

  .category-text h3 {
    font-size: clamp(1.08rem, 4.7vw, 1.28rem);
    line-height: 1.16;
    margin-bottom: 8px;
  }

  .category-text p {
    font-size: clamp(0.82rem, 3.35vw, 0.94rem);
    line-height: 1.45;
  }

  .recruit-list,
  .place-list,
  .trial-list,
  .career-list,
  .method-lines,
  .mini-detail,
  .flow-list,
  .line-box {
    margin-top: 16px;
  }

  [data-animate],
  [data-animate="slideLeft"],
  [data-animate="slideRight"],
  .js .hero-kicker,
  .js .hero h1,
  .js .hero-lead,
  .js .hero-formula,
  .js .hero-actions,
  .js .section-kicker,
  .js .lp-section h2,
  .js .lp-section .modal-teaser,
  .js .wide-copy,
  .js .mini-detail,
  .js .flow-list,
  .js .recruit-list,
  .js .place-list,
  .js .trial-list,
  .js .line-box,
  .js .method-lines,
  .js .circle-points li,
  .js .category-list button,
  .js .trial-form-wrap,
  .js .career-list,
  .js .section-actions,
  .js .place-actions,
  .js .final-section h2,
  .js .final-section p,
  .js .final-actions,
  .js .sponsor-copy,
  .js .sponsor-logo,
  .js .mini-nav a,
  .js .site-footer img,
  .js .site-footer p {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 420px) {
  .hero,
  .split,
  .split-reverse,
  .split-reverse.phone-section,
  .place-section,
  .method-section,
  .career-section,
  .trial-section,
  #recruit,
  .category-section,
  .final-section {
    grid-template-columns: minmax(0, 58fr) minmax(104px, 42fr);
  }
}

@media (max-width: 600px) {
  .final-bg {
    height: calc((100vw - 42px) * 0.525) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 900px) {
  .lp-section {
    padding-top: 84px;
  }

  .phone-section .phone-number {
    display: block;
    width: 100%;
    max-width: none;
    font-size: clamp(2rem, 6vw, 3.25rem) !important;
    line-height: 1;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .trial-section .section-actions {
    width: calc(100vw - 32px);
    max-width: none;
  }

  .hero-actions:has(.btn + .btn),
  .section-actions:has(.btn + .btn),
  .place-actions:has(.btn + .btn),
  .final-actions:has(.btn + .btn) {
    grid-column: 1 / 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: none;
    gap: 8px;
  }

  .hero-actions .btn,
  .section-actions .btn,
  .place-actions .btn,
  .final-actions .btn {
    min-width: 0;
    white-space: nowrap;
    overflow-wrap: normal;
    font-size: clamp(0.74rem, 2.7vw, 0.88rem);
  }

  .trial-section .section-actions:has(.btn + .btn) {
    width: calc(100vw - 32px);
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .trial-section .section-actions {
    margin-top: 150px;
  }
}

@media (max-width: 600px) {
  .phone-section .phone-number {
    width: calc(100vw - 32px);
  }

}

.js .mini-nav a {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 1100px) {
  .category-list {
    gap: 0;
  }

  .category-list button {
    min-height: 0;
    padding: 22px 0;
    align-items: start;
  }

  .category-text {
    align-self: start;
    padding-top: 4px;
  }
}

@media (max-width: 900px) {
  .category-main {
    height: clamp(160px, 21vw, 220px) !important;
    aspect-ratio: auto;
  }

  .category-section .wide-copy {
    margin-bottom: 12px;
  }

  .category-section .section-kicker {
    order: 1;
  }

  .category-section h2 {
    order: 2;
  }

  .category-section .wide-copy > .modal-teaser {
    order: 3;
  }

  .category-list {
    margin-top: 0;
  }

  .category-list button {
    padding: 14px 0;
  }

  .category-list img,
  .category-list img.category-poster-thumb {
    height: clamp(150px, 32vw, 300px);
    aspect-ratio: auto;
    object-fit: contain;
  }
}

@media (max-width: 360px) {
  .category-section h2 {
    font-size: clamp(1.36rem, 7vw, 1.54rem);
  }

  .trial-section .section-actions .btn {
    font-size: 0.66rem;
    padding-left: 2px;
    padding-right: 2px;
  }

  .trial-section .section-actions:has(.btn + .btn) {
    width: calc(100vw - 32px);
    max-width: none;
  }
}

.mini-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: visible;
  padding-left: 0;
  padding-right: 0;
}

.mini-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 56px;
  padding: 0 8px;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  border-right: 1px solid var(--line);
}

.mini-nav a:last-child {
  border-right: 0;
}

.mini-nav .is-call {
  padding: 0 8px;
}

@media (max-width: 1100px) {
  .mini-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    top: auto;
    overflow: visible;
    padding-left: 0;
    padding-right: 0;
  }

  .mini-nav a {
    min-width: 0;
    min-height: 52px;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .mini-nav + .lp-section,
  .mini-nav + .place-section,
  .mini-nav + .method-section,
  .mini-nav + .career-section,
  .mini-nav + .category-section,
  .mini-nav + .final-section {
    padding-top: 28px;
  }

  .hero,
  .lp-section,
  .place-section,
  .method-section,
  .career-section,
  .category-section,
  .final-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero,
  .split,
  .split-reverse,
  .split-reverse.phone-section,
  .place-section,
  .method-section,
  .career-section,
  .trial-section,
  #recruit,
  .category-section,
  .final-section {
    display: grid;
    grid-template-columns: minmax(0, 58fr) minmax(136px, 42fr);
    gap: 14px 16px;
    align-items: start;
  }

  .hero {
    padding-top: 68px;
    padding-bottom: 26px;
    row-gap: 10px;
  }

  .hero-kicker {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 2px 0;
    margin-bottom: 6px;
    line-height: 1.2;
  }

  .hero-kicker span {
    display: inline-block;
    white-space: nowrap;
  }

  .hero h1 {
    margin-bottom: 0;
  }

  .hero-lead {
    margin-top: 10px;
    line-height: 1.48;
  }

  .hero-formula {
    margin-top: 10px;
    margin-bottom: 4px;
  }

  .hero .hero-actions {
    margin-top: 10px;
  }

  .hero-content,
  .split > .section-copy,
  .split-reverse > .section-copy,
  .place-copy,
  .method-copy,
  .career-copy,
  .category-section .wide-copy {
    display: flex;
    flex-direction: column;
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .category-layout,
  .final-inner {
    display: contents;
  }

  .final-inner {
    display: grid;
    grid-column: 1 / -1;
    grid-row: 1 / span 3;
    grid-template-columns: minmax(0, 58fr) minmax(136px, 42fr);
    gap: 6px 16px;
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .place-section .place-copy {
    align-self: start;
  }

  .hero-kicker,
  .section-kicker,
  .category-section .section-kicker {
    grid-column: 1;
    grid-row: 1;
  }

  .hero h1,
  .split h2,
  .split-reverse h2,
  .place-copy > h2,
  .method-copy > h2,
  .career-copy > h2,
  #recruit h2,
  .category-section h2,
  .final-section h2 {
    grid-column: 1;
    grid-row: 2;
    min-width: 0;
  }

  .hero-lead,
  .section-copy > .modal-teaser,
  .place-copy > .modal-teaser,
  .method-copy > .modal-teaser,
  .career-copy > .modal-teaser,
  .category-section .wide-copy > .modal-teaser,
  .final-inner > .modal-teaser {
    grid-column: 1;
    grid-row: 3;
    min-width: 0;
  }

  .final-section h2 {
    grid-row: 1;
  }

  .final-inner > .modal-teaser {
    grid-row: 2;
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
    margin-top: 0 !important;
  }

  .hero-bg,
  .section-photo,
  .section-photo.tall,
  .phone-section .section-photo,
  .phone-section .section-photo.tall,
  .place-photo,
  .method-photo,
  .career-photo,
  .category-main,
  .final-bg {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    grid-column: 2;
    grid-row: 1;
    order: initial;
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    box-shadow: none;
    align-self: start;
  }

  .final-bg {
    grid-row: 1 / span 2;
  }

  .hero-bg img,
  .section-photo img,
  .section-photo.tall img,
  .phone-section .section-photo img,
  .place-photo img,
  .method-photo img,
  .career-photo img,
  .category-main img,
  .final-bg {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
  }

  .hero-formula,
  .phone-number,
  .circle-points,
  .method-section .circle-points,
  .recruit-list,
  .place-list,
  .trial-list,
  .career-list,
  .method-lines,
  .mini-detail,
  .flow-list,
  .line-box,
  .category-list {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
  }

  .method-section .circle-points {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
    justify-content: stretch;
    gap: 10px;
    margin-left: 0;
  }

  .method-section .circle-points li {
    width: 100%;
    max-width: none;
    min-width: 0;
    aspect-ratio: 1;
    font-size: clamp(0.92rem, 1.7vw, 1.05rem);
  }

  .hero-actions,
  .section-actions,
  .phone-section .section-actions,
  .place-actions,
  .final-actions {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 10px;
  }

  .hero-actions:has(.btn + .btn),
  .section-actions:has(.btn + .btn),
  .phone-section .section-actions:has(.btn + .btn),
  .place-actions:has(.btn + .btn),
  .final-actions:has(.btn + .btn) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: none;
    gap: 10px;
  }

  .trial-section .section-actions {
    margin-top: 18px;
  }

  .hero-actions .btn,
  .section-actions .btn,
  .phone-section .section-actions .btn,
  .place-actions .btn,
  .final-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    font-size: clamp(1rem, 2vw, 1.16rem);
    text-align: center;
  }

  .hero-actions:has(.btn + .btn) .btn,
  .section-actions:has(.btn + .btn) .btn,
  .phone-section .section-actions:has(.btn + .btn) .btn,
  .place-actions:has(.btn + .btn) .btn,
  .final-actions:has(.btn + .btn) .btn {
    white-space: nowrap;
    overflow-wrap: normal;
    font-size: clamp(1rem, 2.1vw, 1.16rem);
  }

  .phone-section {
    row-gap: 10px !important;
  }

  .header-trial-cta {
    font-size: 0.9rem !important;
  }

  #recruit h2 span {
    display: block;
  }

  .phone-section .phone-number {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .phone-section .section-actions {
    margin-top: 8px !important;
  }

  .final-actions {
    grid-row: 3;
  }

  [data-animate],
  [data-animate="slideLeft"],
  [data-animate="slideRight"],
  .js .hero-kicker,
  .js .hero h1,
  .js .hero-lead,
  .js .hero-formula,
  .js .hero-actions,
  .js .section-kicker,
  .js .lp-section h2,
  .js .lp-section .modal-teaser,
  .js .wide-copy,
  .js .mini-detail,
  .js .flow-list,
  .js .recruit-list,
  .js .place-list,
  .js .trial-list,
  .js .line-box,
  .js .method-lines,
  .js .circle-points li,
  .js .category-list button,
  .js .trial-form-wrap,
  .js .career-list,
  .js .section-actions,
  .js .place-actions,
  .js .final-section h2,
  .js .final-section p,
  .js .final-actions,
  .js .sponsor-copy,
  .js .sponsor-logo,
  .js .mini-nav a,
  .js .site-footer img,
  .js .site-footer p {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 600px) {
  .hero,
  .split,
  .split-reverse,
  .split-reverse.phone-section,
  .place-section,
  .method-section,
  .career-section,
  .trial-section,
  #recruit,
  .category-section,
  .final-section {
    grid-template-columns: minmax(0, 58fr) minmax(118px, 42fr);
    gap: 12px 12px;
  }

  .mini-nav + .lp-section,
  .mini-nav + .place-section,
  .mini-nav + .method-section,
  .mini-nav + .career-section,
  .mini-nav + .category-section,
  .mini-nav + .final-section {
    padding-top: 24px;
  }

  .final-inner {
    grid-template-columns: minmax(0, 58fr) minmax(118px, 42fr);
    gap: 4px 12px;
  }

  .hero {
    padding-top: 62px;
    padding-bottom: 22px;
    row-gap: 8px;
  }

  .hero-kicker {
    font-size: clamp(0.78rem, 3.25vw, 0.86rem);
    line-height: 1.18;
    margin-bottom: 4px;
  }

  .hero h1 {
    line-height: 1.06;
  }

  .hero-lead {
    margin-top: 8px;
    line-height: 1.46;
  }

  .hero-formula {
    margin-top: 8px;
    margin-bottom: 2px;
  }

  .hero-actions:has(.btn + .btn),
  .section-actions:has(.btn + .btn),
  .phone-section .section-actions:has(.btn + .btn),
  .place-actions:has(.btn + .btn),
  .final-actions:has(.btn + .btn) {
    gap: 8px;
  }

  .hero-actions:has(.btn + .btn) .btn,
  .section-actions:has(.btn + .btn) .btn,
  .phone-section .section-actions:has(.btn + .btn) .btn,
  .place-actions:has(.btn + .btn) .btn,
  .final-actions:has(.btn + .btn) .btn {
    padding-left: 6px;
    padding-right: 6px;
    font-size: clamp(0.92rem, 3.9vw, 1.05rem);
  }

  .header-trial-cta {
    font-size: 0.9rem !important;
  }

  .phone-section {
    row-gap: 8px !important;
  }

  .circle-points {
    margin-top: 14px;
  }

  .hero-actions,
  .section-actions,
  .place-actions,
  .final-actions {
    margin-top: 14px;
  }

  .hero-actions .btn,
  .section-actions .btn,
  .place-actions .btn,
  .final-actions .btn {
    min-height: 50px;
  }

  #message .message-title span {
    display: block;
  }

  #recruit h2 span {
    display: block;
  }

  .method-section .circle-points {
    width: 100%;
    gap: 8px;
  }

  .method-section .circle-points {
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  }

  .method-section .circle-points li {
    font-size: clamp(0.78rem, 3.6vw, 0.96rem);
  }

  .phone-section .phone-number {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .phone-section .section-actions {
    margin-top: 8px !important;
  }

  .final-section {
    row-gap: 8px;
  }

  .final-inner > .modal-teaser {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 600px) {
  .modal-footer-actions .btn,
  .modal-bottom,
  .modal-body > .btn,
  .modal-actions .btn {
    font-size: 0.9rem;
  }
}

@media (min-width: 560px) and (max-width: 1100px) {
  .hero {
    min-height: auto !important;
  }

  .hero-bg {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 1100px) {
  .hero-lead,
  .section-copy > .modal-teaser,
  .place-copy > .modal-teaser,
  .method-copy > .modal-teaser,
  .career-copy > .modal-teaser,
  .category-section .wide-copy > .modal-teaser,
  .final-inner > .modal-teaser {
    line-height: 1.68;
  }

  .hero-lead {
    margin-top: 14px;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-formula {
    margin-top: 16px;
  }

  .hero .hero-actions {
    margin-top: 18px;
  }

  .phone-section {
    row-gap: 16px !important;
  }

  .phone-section .section-copy > p:not(.section-kicker):not(.phone-number) {
    margin-top: 16px !important;
    line-height: 1.68;
  }

  .phone-section .section-actions {
    margin-top: 14px !important;
  }
}

@media (max-width: 600px) {
  .hero-lead,
  .section-copy > .modal-teaser,
  .place-copy > .modal-teaser,
  .method-copy > .modal-teaser,
  .career-copy > .modal-teaser,
  .category-section .wide-copy > .modal-teaser,
  .final-inner > .modal-teaser {
    line-height: 1.64;
  }

  .hero-lead {
    margin-top: 12px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-formula {
    margin-top: 34px;
  }

  .hero .hero-actions {
    margin-top: 16px;
  }

  .phone-section {
    row-gap: 14px !important;
  }

  .phone-section .section-copy > p:not(.section-kicker):not(.phone-number) {
    margin-top: 14px !important;
    line-height: 1.64;
  }

  .phone-section .section-actions {
    margin-top: 12px !important;
  }
}

@media (max-width: 600px) {
  .split > .section-photo,
  .split-reverse > .section-photo,
  .place-photo,
  .method-photo,
  .career-photo,
  .phone-section .section-photo,
  .phone-section .section-photo.tall {
    margin-top: 36px !important;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .split > .section-photo,
  .split-reverse > .section-photo,
  .place-photo,
  .method-photo,
  .career-photo,
  .phone-section .section-photo,
  .phone-section .section-photo.tall {
    margin-top: 39px !important;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .hero {
    padding-top: 92px;
  }

  .split > .section-photo,
  .split-reverse > .section-photo,
  .place-photo,
  .method-photo,
  .career-photo,
  .phone-section .section-photo,
  .phone-section .section-photo.tall {
    margin-top: 55px !important;
  }
}

@media (max-width: 900px) {
  .site-header {
    gap: 8px;
  }

  .brand {
    flex: 0 1 174px !important;
    max-width: 174px !important;
  }

  .brand img {
    width: 174px !important;
  }
}

@media (max-width: 360px) {
  .site-header {
    gap: 5px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .brand {
    flex-basis: 156px !important;
    max-width: 156px !important;
  }

  .brand img {
    width: 156px !important;
  }

  .header-trial-cta {
    flex-basis: 82px !important;
    width: 82px !important;
    max-width: 82px !important;
    padding-left: 6px;
    padding-right: 6px;
  }

  .menu-toggle {
    flex-basis: 39px !important;
    width: 39px !important;
    height: 39px !important;
    padding: 10px;
  }
}

/* 2026-06 Arriba recruitment update: existing layout + modal preserved */
.faq-section .wide-copy {
  width: min(980px, 100%);
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.faq-item {
  background: var(--paper);
  border: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--black) 7%, transparent);
}

.faq-item summary {
  padding: 18px 20px;
  cursor: pointer;
  font-size: 1.04rem;
  line-height: 1.45;
  font-weight: 900;
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: color-mix(in srgb, var(--ink) 84%, var(--paper));
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 700;
}

.modal-related {
  margin: 28px 0;
  padding: 18px;
  background: color-mix(in srgb, var(--ink) 4%, var(--paper));
  border: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
}

.modal-article {
  display: grid;
  gap: 18px;
  margin: 24px 0 30px;
  color: color-mix(in srgb, var(--ink) 85%, var(--paper));
}

.modal-article p,
.modal-article h3,
.modal-article ul {
  margin: 0;
}

.modal-article p {
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.95;
  font-weight: 600;
}

.modal-article .modal-article-lead {
  position: relative;
  padding: 22px 24px 22px 28px;
  overflow: hidden;
  background: linear-gradient(135deg, color-mix(in srgb, var(--ink) 3%, var(--paper)) 0%, var(--paper) 72%);
  border: 1px solid color-mix(in srgb, var(--heading) 16%, transparent);
  border-left: 6px solid var(--heading);
  color: color-mix(in srgb, var(--ink) 95%, var(--paper));
  font-size: clamp(1.12rem, 1.8vw, 1.42rem);
  line-height: 1.65;
  font-weight: 800;
}

.modal-article .modal-article-lead::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -48px;
  width: 120px;
  height: 120px;
  border: 18px solid color-mix(in srgb, var(--heading) 6%, transparent);
  border-radius: 50%;
}

.modal-article h3 {
  position: relative;
  padding: 5px 0 8px 18px;
  color: var(--ink);
  font-size: clamp(1.16rem, 1.8vw, 1.45rem);
  line-height: 1.45;
  font-weight: 900;
  border-left: 5px solid var(--brand);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
}

.modal-article strong {
  color: color-mix(in srgb, var(--ink) 98%, var(--paper));
  font-weight: 900;
}

.modal-article mark {
  padding: 0 0.1em;
  color: var(--brand-dark);
  font-weight: 900;
  background: linear-gradient(
    transparent 52%,
    rgba(255, 210, 60, 0.58) 52%,
    rgba(255, 210, 60, 0.58) 92%,
    transparent 92%
  );
}

.modal-article .article-underline {
  color: color-mix(in srgb, var(--ink) 92%, var(--paper));
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--brand);
  text-decoration-thickness: 0.16em;
  text-underline-offset: 0.22em;
}

.modal-article .article-blue {
  color: var(--heading);
  font-size: 1.06em;
  font-weight: 900;
}

.modal-article ul {
  display: grid;
  gap: 9px;
  padding: 0;
  border-top: 0;
  list-style: none;
}

.modal-article li {
  position: relative;
  padding: 12px 14px 12px 46px;
  background: color-mix(in srgb, var(--ink) 3%, var(--paper));
  border: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
  font-size: clamp(0.96rem, 1.25vw, 1.06rem);
  line-height: 1.55;
  font-weight: 800;
}

.modal-article li::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 15px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 0.74rem;
  line-height: 1;
  transform: translateY(-50%);
}

.modal-article .modal-article-note {
  padding: 16px 18px;
  background: color-mix(in srgb, var(--brand) 4%, var(--paper));
  border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent);
  border-left: 5px solid var(--brand);
  color: color-mix(in srgb, var(--brand-dark) 60%, var(--black));
  font-size: 0.98rem;
  line-height: 1.7;
  font-weight: 800;
}

.modal-detail-grid + p {
  padding: 14px 16px;
  background: color-mix(in srgb, var(--ink) 3%, var(--paper));
  border-left: 4px solid color-mix(in srgb, var(--ink) 52%, var(--paper));
  color: color-mix(in srgb, var(--ink) 69%, var(--paper));
  font-size: 0.9rem;
  line-height: 1.7;
}

@media (min-width: 901px) {
  .modal-scroll {
    display: contents;
  }

  /* デスクトップ: フッターCTAはパネル下部に常時表示（スクロール不要）。
     padding-bottom がボタン下の余白＝パネル底から少し浮かせる */
  .modal-footer-actions {
    position: sticky;
    bottom: 0;
    z-index: 4;
    margin: 0;
    padding: 14px clamp(22px, 5vw, 64px) 22px;
    background: var(--paper);
  }

  /* 上端フェード: 記事がボタンの裏へ自然に消えていく */
  .modal-footer-actions::before {
    content: "";
    position: absolute;
    inset: auto 0 100% 0;
    height: 36px;
    background: linear-gradient(180deg, color-mix(in srgb, var(--paper) 0%, transparent), var(--paper));
    pointer-events: none;
  }
}

.modal-related h3 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.modal-related-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.modal-related-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 12px;
  background: var(--paper);
  border: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  font-size: 0.92rem;
  line-height: 1.3;
  font-weight: 900;
  text-align: center;
  overflow-wrap: anywhere;
}

.entry-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1100px, 100%);
  margin: 34px auto 0;
}

.entry-link-grid a {
  display: grid;
  gap: 8px;
  min-height: 170px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
  border-top: 4px solid var(--brand);
  box-shadow: 0 18px 38px color-mix(in srgb, var(--black) 8%, transparent);
  align-content: center;
}

.entry-link-grid strong {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.entry-link-grid small {
  color: color-mix(in srgb, var(--ink) 64%, var(--paper));
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 900;
}

.entry-link-grid span {
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 900;
}

.section-photo.portrait {
  aspect-ratio: 5 / 6 !important;
  padding: 0;
  background: var(--black);
}

.section-photo.portrait > img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center !important;
}

.footer-info-button {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-height: 46px;
  margin-top: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.footer-info-button span {
  color: #fff;
}

@media (max-width: 600px) {
  .modal-article {
    gap: 15px;
    margin: 18px 0 24px;
  }

  .modal-article p {
    font-size: 0.98rem;
    line-height: 1.78;
    text-align: left;
    text-wrap: auto;
    line-break: strict;
    word-break: normal;
    overflow-wrap: normal;
  }

  .modal-article .modal-article-lead {
    padding: 17px 16px 17px 19px;
    border-left-width: 5px;
    font-size: 1.08rem;
    line-height: 1.72;
    text-align: left;
    text-wrap: auto;
  }

  .modal-article h3 {
    padding-left: 13px;
    font-size: 1.08rem;
  }

  .modal-article li {
    padding: 10px 10px 10px 39px;
    font-size: 0.92rem;
    line-height: 1.65;
    text-align: left;
    text-wrap: auto;
  }

  .modal-article li::before {
    left: 11px;
    width: 20px;
    height: 20px;
  }

  .modal-related-buttons {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
  }

  .modal-related {
    padding: 12px 8px;
  }

  .modal-related-buttons a {
    min-width: 0;
    min-height: 58px;
    padding: 7px 3px;
    font-size: clamp(
      0.58rem,
      calc(1.05rem - (var(--label-length, 4) * 0.055rem)),
      0.78rem
    );
    line-height: 1.18;
  }
}

@media (max-width: 900px) {
  .entry-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .entry-link-grid a {
    min-height: 132px;
    padding: 16px;
  }
}

@media (max-width: 600px) {
  .entry-link-grid {
    grid-template-columns: 1fr;
  }

  .entry-link-grid a {
    min-height: 112px;
  }
}

.section-photo:has(> img[src*="arriba-2026"]),
.place-photo:has(> img[src*="arriba-2026"]),
.career-photo:has(> img[src*="arriba-2026"]),
.category-main:has(> img[src*="arriba-2026"]) {
  aspect-ratio: 4 / 5 !important;
  background: var(--paper);
}

.section-photo > img[src*="arriba-2026"],
.place-photo > img[src*="arriba-2026"],
.career-photo > img[src*="arriba-2026"],
.category-main > img[src*="arriba-2026"],
.hero-bg > img[src*="arriba-2026"] {
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
}

.is-inview .section-photo > img[src*="arriba-2026"],
.is-inview .place-photo > img[src*="arriba-2026"],
.is-inview .career-photo > img[src*="arriba-2026"],
.is-inview .category-main > img[src*="arriba-2026"],
.is-inview .hero-bg > img[src*="arriba-2026"] {
  transform: none !important;
}

@media (min-width: 901px) {
  .hero-content {
    width: min(560px, 39vw);
  }

  .hero h1 {
    font-size: clamp(2.42rem, 2.52vw, 2.85rem);
  }

  .hero h1 .desktop-line {
    white-space: normal;
  }

  .hero-lead,
  .hero-formula {
    max-width: 560px;
  }
}

.hero-entry-nav a {
  color: var(--brand) !important;
  font-size: clamp(0.9rem, 3.8vw, 1.08rem) !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
  padding-left: 1px !important;
  padding-right: 1px !important;
}

@media (max-width: 600px) {
  .hero-actions,
  .section-actions,
  .place-actions,
  .final-actions,
  .modal-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 10px !important;
    justify-content: stretch !important;
    justify-items: stretch !important;
  }

  .modal-footer-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: auto !important;
    gap: 10px !important;
    justify-content: stretch !important;
    justify-items: stretch !important;
  }

  .hero .hero-actions {
    width: calc(100vw - 32px) !important;
    max-width: none !important;
  }

  .hero-actions .btn,
  .section-actions .btn,
  .place-actions .btn,
  .final-actions .btn,
  .modal-footer-actions .btn,
  .modal-footer-actions .modal-bottom,
  .modal-actions .btn {
    width: 100% !important;
    min-width: 0 !important;
    justify-self: stretch !important;
  }

  .hero .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .hero .hero-actions .btn {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 50px !important;
    padding: 0 6px !important;
    font-size: clamp(0.78rem, 3.45vw, 0.95rem) !important;
    white-space: nowrap !important;
  }

  .hero-formula {
    width: calc(100vw - 32px) !important;
    max-width: none !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    line-height: 1.28 !important;
  }

  .circle-points,
  .method-section .circle-points {
    display: flex !important;
    flex-wrap: nowrap !important;
    grid-template-columns: none !important;
    width: 100% !important;
    gap: 4px !important;
    justify-content: stretch !important;
  }

  .circle-points li,
  .method-section .circle-points li {
    flex: 1 1 0 !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    aspect-ratio: 1 / 1 !important;
    padding: 0 2px !important;
    font-size: clamp(0.6rem, 2.85vw, 0.78rem) !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
  }
}

/* New 2026 recruitment posters and modal graphics */
.section-photo.portrait {
  aspect-ratio: 5 / 6 !important;
  background: var(--black) !important;
}

.section-photo.portrait > img,
.is-inview .section-photo.portrait > img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  transform: none !important;
}

.modal-scroll > img.modal-wide {
  aspect-ratio: 16 / 9 !important;
  width: 100% !important;
  height: auto !important;
  object-fit: cover !important;
  object-position: center !important;
}

/* Keep the original image-based entry layout while linking to each block. */
.category-list .entry-choice {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  column-gap: 22px;
  align-items: center;
  min-height: 214px;
  padding: 0 0 22px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-align: left;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.category-list .entry-choice:hover {
  transform: translateX(6px);
  border-color: color-mix(in srgb, var(--brand) 36%, transparent);
}

.category-list .entry-choice .category-poster-thumb {
  aspect-ratio: 4 / 5;
  object-fit: cover !important;
  object-position: center !important;
  background: var(--paper) !important;
}

.place-list dd strong,
.place-list dd span {
  display: block;
}

.place-list dd span {
  margin-top: 4px;
}

.place-list dd small {
  display: block;
  margin-top: 7px;
  color: color-mix(in srgb, var(--ink) 63%, var(--paper));
  font-size: 0.86rem;
  line-height: 1.55;
  font-weight: 600;
}

.note-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 48px;
  align-items: center;
  background: linear-gradient(120deg, color-mix(in srgb, var(--ink) 3%, var(--paper)) 0%, var(--paper) 68%);
}

.note-entry-links {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  margin-bottom: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.note-entry-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 58px;
  padding: 10px 8px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.25;
  font-weight: 800;
  text-align: center;
  transition: color 0.2s ease, background 0.2s ease;
}

.note-entry-links a:last-child {
  border-right: 0;
}

.note-entry-links a:hover {
  color: var(--brand);
  background: color-mix(in srgb, var(--ink) 3%, var(--paper));
}

.note-copy {
  max-width: 760px;
}

.note-copy > p:not(.section-kicker) {
  margin: 18px 0 26px;
  color: color-mix(in srgb, var(--ink) 84%, var(--paper));
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 600;
}

.note-qr {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 18px;
  background: var(--paper);
  border: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
  box-shadow: 0 18px 42px color-mix(in srgb, var(--black) 10%, transparent);
}

.note-qr img {
  display: block;
  width: 184px;
  height: 184px;
}

.note-qr span {
  color: color-mix(in srgb, var(--ink) 69%, var(--paper));
  font-size: 0.82rem;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .category-list .entry-choice {
    min-height: 0;
    padding: 22px 0;
    align-items: start;
  }
}

@media (max-width: 900px) {
  .category-list .entry-choice {
    grid-template-columns: minmax(0, 1fr) minmax(104px, 30vw);
    gap: 10px;
    align-items: stretch;
    padding: 10px 0;
  }

  .category-list .entry-choice .category-poster-thumb {
    grid-column: 2;
    grid-row: 1;
    order: 2;
    width: 100%;
    height: auto;
    max-height: 190px;
  }

  .category-list .entry-choice .category-text {
    grid-column: 1;
    grid-row: 1;
    order: 1;
  }

  .category-list .entry-choice .category-text {
    padding-top: 2px;
  }

  .category-list .entry-choice .category-text strong {
    font-size: clamp(1.05rem, 5.4vw, 1.45rem);
    line-height: 1.18;
  }

  .category-list .entry-choice .category-text small {
    font-size: clamp(0.84rem, 4vw, 1rem);
    line-height: 1.45;
  }
}

/* Keep the first-view title on one line and emphasize it with color. */
.hero h1 {
  color: var(--heading) !important;
  font-size: clamp(2rem, 3.2vw, 3.05rem) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.09em !important;
  white-space: nowrap !important;
  text-shadow: 0 10px 26px color-mix(in srgb, var(--heading) 16%, transparent);
}

@media (max-width: 600px) {
  .site-footer {
    grid-template-columns: 52px minmax(0, 1fr) !important;
    grid-template-rows: auto auto auto !important;
    gap: 8px 14px !important;
    min-height: 0 !important;
    padding: 30px 18px calc(104px + env(safe-area-inset-bottom)) !important;
    overflow: hidden;
  }

  .site-footer img {
    grid-column: 1 !important;
    grid-row: 1 / 3 !important;
    align-self: start;
    width: 52px !important;
  }

  .site-footer p {
    grid-column: 2 !important;
    width: auto !important;
    max-width: none !important;
    writing-mode: horizontal-tb !important;
    overflow-wrap: anywhere;
  }

  .site-footer p:first-of-type {
    grid-row: 1 !important;
  }

  .site-footer p:nth-of-type(2) {
    grid-row: 2 !important;
  }

  .footer-info-button {
    position: static !important;
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;
    width: 100% !important;
    min-height: 48px !important;
    margin: 12px 0 0 !important;
    padding: 10px 16px !important;
    border-radius: 8px !important;
    writing-mode: horizontal-tb !important;
    white-space: nowrap;
    transform: none !important;
  }

  .hero h1 {
    font-size: clamp(1.05rem, 4.75vw, 1.2rem) !important;
    letter-spacing: -0.11em !important;
  }

  .modal-footer-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .modal-footer-actions .btn,
  .modal-footer-actions .modal-bottom {
    width: 100% !important;
    min-width: 0 !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
    white-space: nowrap;
  }

  .circle-points {
    position: relative;
    padding-top: 28px !important;
  }

  .circle-points::before {
    content: attr(data-label);
    position: absolute;
    top: 0;
    left: 0;
    color: color-mix(in srgb, var(--ink) 60%, var(--paper));
    font-size: 0.72rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.08em;
  }

  .circle-points li,
  .method-section .circle-points li {
    border-color: color-mix(in srgb, var(--ink) 27%, var(--paper)) !important;
    background: color-mix(in srgb, var(--ink) 6%, var(--paper)) !important;
    color: color-mix(in srgb, var(--ink) 84%, var(--paper)) !important;
    box-shadow: inset 0 0 0 3px var(--paper);
  }

  .modal {
    background: color-mix(in srgb, var(--black) 78%, transparent);
    backdrop-filter: blur(9px);
    transition: opacity 0.32s ease, visibility 0.32s ease;
  }

  .modal-panel {
    bottom: auto !important;
    opacity: 0;
    transform: translateY(calc(100% + 56px)) scale(0.985) !important;
    transform-origin: center bottom;
    transition:
      transform 0.62s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.28s ease !important;
    will-change: transform, opacity;
  }

  .modal.is-open .modal-panel {
    opacity: 1;
    transform: translateY(0) scale(1) !important;
  }

  .modal-panel::before {
    content: "";
    position: absolute;
    z-index: 6;
    top: 8px;
    left: 50%;
    width: 42px;
    height: 5px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--ink) 36%, transparent);
    transform: translateX(-50%);
    pointer-events: none;
  }
}

/* Desktop modal reading layout. Mobile modal rules stay unchanged. */
@media (min-width: 901px) {
  .modal {
    padding: 24px 32px;
  }

  .modal-panel {
    width: min(1080px, calc(100vw - 64px));
    max-height: calc(100vh - 48px);
    max-height: calc(100dvh - 48px);
    border-radius: 14px;
  }

  .modal-scroll > img.modal-wide {
    width: 100% !important;
    height: clamp(220px, 30dvh, 310px) !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
    object-position: center 42% !important;
  }

  .modal-body {
    width: min(900px, 100%);
    margin: 0 auto;
    padding: 32px 58px 48px;
  }

  .modal-body h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.55rem);
    line-height: 1.16;
  }

  .modal-article {
    gap: 16px;
    max-width: 780px;
    margin: 22px auto 28px;
  }

  .modal-article p {
    font-size: 1rem;
    line-height: 1.85;
  }

  .modal-article .modal-article-lead {
    padding: 18px 22px 18px 25px;
    font-size: clamp(1.08rem, 1.5vw, 1.28rem);
    line-height: 1.7;
  }

  .modal-article h3 {
    font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  }

  .modal-article li {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 0.96rem;
  }

  .modal-detail-grid,
  .modal-map,
  .modal-related,
  .modal-footer-actions {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Count/length-aware single-line title fit. Applied via [data-fit-heading] on h1, h2, price-card strong, recruit-title spans, etc. */
[data-fit-heading] {
  white-space: nowrap;
  font-size: var(
    --heading-fit-size,
    clamp(
      2.2rem,
      min(3.7vw, calc(4.2rem - (var(--heading-length, 8) * 0.075rem))),
      3.55rem
    )
  );
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.035em;
  margin-bottom: 0;
  text-shadow: none;
}

main > section h2[data-fit-heading] {
  color: var(--heading) !important;
}

.hero h1 {
  font-weight: 500 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.035em !important;
  text-shadow: none !important;
}

main > section h2 + .modal-teaser {
  margin-top: 28px !important;
}

@media (max-width: 1100px) {
  main > section h2 + .modal-teaser {
    margin-top: 14px !important;
  }
}

@media (max-width: 600px) {
  [data-fit-heading] {
    font-size: var(--heading-fit-size, 1.5rem) !important;
    letter-spacing: -0.025em !important;
  }

  .note-section {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    align-items: center;
  }

  .note-entry-links {
    margin-bottom: 8px;
  }

  .note-entry-links a {
    min-height: 54px;
    padding: 8px 3px;
    font-size: clamp(0.76rem, 3.45vw, 0.9rem);
    white-space: nowrap;
  }

  .note-copy > p:not(.section-kicker) {
    margin: 12px 0 18px;
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .note-copy .btn {
    min-height: 48px;
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .note-qr {
    display: none;
  }

  main > section h2 + .modal-teaser {
    margin-top: 12px !important;
  }

  .circle-points {
    padding-top: 30px !important;
  }

  .circle-points::before {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
  }

  .circle-points li,
  .method-section .circle-points li {
    font-size: clamp(0.66rem, 3.1vw, 0.84rem) !important;
  }
}

/* Desktop recruitment sections: keep each block visually connected. */
@media (min-width: 1101px) {
  .js .lp-section .section-kicker,
  .js .lp-section h2,
  .js .lp-section .modal-teaser,
  .js .lp-section .recruit-list,
  .js .lp-section .place-list,
  .js .lp-section .trial-list,
  .js .lp-section .circle-points li,
  .js .lp-section .section-actions,
  .js .lp-section .place-actions,
  .js .final-section h2,
  .js .final-section p,
  .js .final-section .final-actions {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .lp-section.split {
    box-sizing: border-box;
    width: 100%;
    min-height: auto;
    margin-inline: 0;
    padding: clamp(46px, 4.4vw, 78px) max(48px, calc((100vw - 1080px) / 2));
    grid-template-columns: minmax(360px, 0.9fr) minmax(380px, 0.95fr);
    gap: clamp(8px, 1vw, 14px) clamp(40px, 4.2vw, 64px);
    align-items: start;
  }

  .lp-section.split > .section-copy {
    grid-column: 1 / 2;
    grid-row: 1;
    align-self: start;
    max-width: 520px;
  }

  .lp-section.split > .section-photo {
    grid-column: 2 / 3;
    grid-row: 1 / span 4;
    width: min(100%, 500px);
    justify-self: end;
    align-self: start;
    box-shadow: 0 26px 50px color-mix(in srgb, var(--black) 10%, transparent);
  }

  .lp-section.split > .section-photo.portrait {
    aspect-ratio: 4 / 5 !important;
    background: var(--paper) !important;
  }

  .lp-section.split > .section-photo.portrait > img,
  .is-inview .lp-section.split > .section-photo.portrait > img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    transform: none !important;
  }

  .lp-section.split > .recruit-list,
  .lp-section.split > .circle-points,
  .lp-section.split > .section-actions {
    grid-column: 1 / 2 !important;
    max-width: 520px;
    margin-top: 0;
  }

  .lp-section.split > .recruit-list,
  .lp-section.split > .circle-points {
    grid-row: 2;
  }

  .lp-section.split > .circle-points {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
  }

  .lp-section.split > .circle-points li {
    flex: 0 0 92px !important;
    width: 92px !important;
    max-width: 92px !important;
    min-width: 0 !important;
    font-size: 0.9rem !important;
    line-height: 1.18 !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .lp-section.split > .section-actions {
    grid-row: 3;
    justify-self: start;
    width: fit-content;
  }

  .lp-section.split > .section-actions .btn {
    min-width: 190px;
    min-height: 68px;
    padding-inline: 32px;
    font-size: 1.08rem;
  }

  .lp-section.split > .circle-points {
    align-self: start;
  }

  /* Mirror the explicit column placement above for split-reverse sections
     (order-based swap is overridden by the explicit grid-column values). */
  .lp-section.split.split-reverse > .section-copy {
    grid-column: 2 / 3;
  }

  .lp-section.split.split-reverse > .section-photo {
    grid-column: 1 / 2;
    justify-self: start;
  }

  .lp-section.split.split-reverse > .recruit-list,
  .lp-section.split.split-reverse > .circle-points,
  .lp-section.split.split-reverse > .section-actions {
    grid-column: 2 / 3 !important;
    justify-self: start;
  }
}

@media (min-width: 1500px) {
  .lp-section.split {
    padding-inline: max(70px, calc((100vw - 1160px) / 2));
    grid-template-columns: 520px 560px;
  }

  .lp-section.split > .section-photo {
    width: min(100%, 560px);
  }
}

/* Desktop compact pass for place, trial and final blocks. */
@media (min-width: 1101px) {
  .trial-section.lp-section.split {
    padding-block: clamp(38px, 3.6vw, 64px);
  }

  .trial-section.lp-section.split > .circle-points {
    gap: 14px;
    margin-top: 0 !important;
  }

  .trial-section.lp-section.split > .section-actions {
    display: flex;
    gap: 14px;
    width: 100%;
    margin-top: 2px !important;
  }

  .trial-section.lp-section.split > .section-actions .btn {
    min-width: 210px;
  }

  .place-section {
    box-sizing: border-box;
    width: 100%;
    margin-inline: 0;
    padding: clamp(38px, 3.6vw, 64px) max(48px, calc((100vw - 1080px) / 2));
    grid-template-columns: minmax(360px, 0.9fr) minmax(380px, 0.95fr);
    gap: clamp(12px, 1.6vw, 22px) clamp(40px, 4.2vw, 64px);
    align-items: start;
  }

  .place-section .place-copy {
    grid-column: 1 / 2;
    grid-row: 1;
    align-self: start;
    max-width: 520px;
  }

  .place-section .place-photo {
    grid-column: 2 / 3;
    grid-row: 1 / span 4;
    width: min(100%, 500px);
    justify-self: end;
    align-self: start;
    aspect-ratio: 4 / 5 !important;
    background: var(--paper) !important;
    box-shadow: 0 26px 50px color-mix(in srgb, var(--black) 10%, transparent);
  }

  .place-section .place-photo img {
    object-fit: contain !important;
    object-position: center !important;
    transform: none !important;
  }

  .place-section .place-list {
    grid-column: 1 / 2;
    grid-row: 2;
    max-width: 520px;
    margin-top: 0 !important;
  }

  .place-section .place-actions {
    grid-column: 1 / 2;
    grid-row: 3;
    justify-self: start;
    width: fit-content;
    margin-top: 2px !important;
  }

  .place-section .place-actions .btn {
    min-width: 260px;
    min-height: 68px;
    padding-inline: 32px;
    font-size: 1.08rem;
  }

  .career-section {
    box-sizing: border-box;
    width: 100%;
    margin-inline: 0;
    padding: clamp(46px, 4.4vw, 78px) max(48px, calc((100vw - 1080px) / 2));
    grid-template-columns: minmax(360px, 0.9fr) minmax(380px, 0.95fr);
    gap: clamp(8px, 1vw, 14px) clamp(40px, 4.2vw, 64px);
    align-items: start;
  }

  .career-section .career-copy {
    grid-column: 1 / 2;
    grid-row: 1;
    align-self: start;
    max-width: 520px;
  }

  .career-section .career-photo {
    grid-column: 2 / 3;
    grid-row: 1 / span 3;
    width: min(100%, 500px);
    justify-self: end;
    align-self: start;
    aspect-ratio: 4 / 5 !important;
    background: var(--paper) !important;
    box-shadow: 0 26px 50px color-mix(in srgb, var(--black) 10%, transparent);
  }

  .career-section .career-photo img {
    object-fit: contain !important;
    object-position: center !important;
    transform: none !important;
  }

  .career-section .section-actions {
    grid-column: 1 / 2;
    grid-row: 2;
    justify-self: start;
    width: fit-content;
    margin-top: 2px !important;
  }

  .career-section .section-actions .btn {
    min-width: 190px;
    min-height: 68px;
    padding-inline: 32px;
    font-size: 1.08rem;
  }

  .final-section {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(380px, 0.95fr);
    gap: clamp(8px, 1vw, 14px) clamp(40px, 4.2vw, 64px);
    align-items: center;
    width: 100%;
    min-height: auto;
    padding: clamp(46px, 4.4vw, 78px) max(48px, calc((100vw - 1080px) / 2));
    background: linear-gradient(90deg, color-mix(in srgb, var(--brand) 5.5%, transparent), var(--paper) 46%);
    color: var(--ink);
  }

  .final-section::after {
    content: none;
  }

  .final-bg {
    position: relative;
    inset: auto;
    grid-column: 2 / 3;
    grid-row: 1;
    width: min(100%, 560px);
    height: auto;
    aspect-ratio: 16 / 9;
    justify-self: end;
    align-self: center;
    object-fit: cover;
    object-position: center;
    background: var(--paper);
    box-shadow: 0 26px 50px color-mix(in srgb, var(--black) 10%, transparent);
  }

  .final-inner {
    grid-column: 1 / 2;
    grid-row: 1;
    width: auto;
    max-width: 520px;
    margin-inline: 0;
  }

  .final-section h2 {
    max-width: none;
    margin-bottom: 18px;
  }

  .final-section .modal-teaser {
    max-width: none;
    margin-bottom: 18px;
  }

  .final-section p {
    color: color-mix(in srgb, var(--ink) 87%, var(--paper));
  }

  .final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }

  .final-actions .btn {
    min-width: 190px;
    min-height: 68px;
    padding-inline: 28px;
    font-size: 1.04rem;
  }

  .final-actions .text-link {
    color: var(--ink);
  }
}

@media (min-width: 1500px) {
  .place-section {
    padding-inline: max(70px, calc((100vw - 1160px) / 2));
    grid-template-columns: 520px 560px;
  }

  .place-section .place-photo {
    width: min(100%, 560px);
  }

  .career-section,
  .final-section {
    padding-inline: max(70px, calc((100vw - 1160px) / 2));
    grid-template-columns: 520px 560px;
  }

  .career-section .career-photo,
  .final-bg {
    width: min(100%, 560px);
  }
}

/* Tablet and narrow desktop: prevent full-width circles and CTA overlap. */
@media (min-width: 601px) and (max-width: 1100px) {
  .lp-section.split > .circle-points,
  .method-section .circle-points {
    display: flex !important;
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    width: auto !important;
    max-width: 100% !important;
    margin: 18px 0 0 !important;
  }

  .lp-section.split > .circle-points li,
  .method-section .circle-points li {
    flex: 0 0 clamp(78px, 9vw, 92px) !important;
    width: clamp(78px, 9vw, 92px) !important;
    min-width: 0 !important;
    max-width: none !important;
    aspect-ratio: 1 !important;
    padding: 0 4px !important;
    font-size: clamp(0.76rem, 1.6vw, 0.9rem) !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
  }

  .trial-section.lp-section.split > .section-actions {
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    width: 100% !important;
    margin-top: 18px !important;
  }

  .trial-section.lp-section.split > .section-actions .btn {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 58px !important;
    font-size: clamp(0.9rem, 1.8vw, 1rem) !important;
  }

  .final-section {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 1fr) !important;
    gap: 24px !important;
    align-items: center !important;
    min-height: auto !important;
    padding: clamp(38px, 5vw, 56px) clamp(20px, 4vw, 44px) !important;
    background: linear-gradient(90deg, color-mix(in srgb, var(--brand) 5.5%, transparent), var(--paper) 52%) !important;
    color: var(--ink) !important;
  }

  .final-section::after {
    content: none !important;
  }

  .final-bg {
    position: relative !important;
    inset: auto !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 5 !important;
    align-self: center !important;
    object-fit: cover !important;
    object-position: center !important;
    box-shadow: 0 20px 38px color-mix(in srgb, var(--black) 10%, transparent) !important;
  }

  .final-section .final-actions {
    margin-top: 46px !important;
  }

  .final-inner {
    display: block !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }

  .final-section h2 {
    margin-bottom: 14px !important;
    color: var(--heading) !important;
    font-size: clamp(2rem, 4.4vw, 2.55rem) !important;
    line-height: 1.1 !important;
  }

  .final-inner > .modal-teaser {
    margin: 0 0 18px !important;
    color: color-mix(in srgb, var(--ink) 87%, var(--paper)) !important;
  }

  .final-section .inline-more-light {
    color: var(--ink) !important;
  }

  .final-section .modal-teaser:hover .inline-more-light {
    color: var(--brand) !important;
  }

  .final-actions,
  .final-actions:has(.btn + .btn) {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px 12px !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .final-actions .btn,
  .final-actions:has(.btn + .btn) .btn {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 56px !important;
    padding-inline: 10px !important;
    font-size: clamp(0.78rem, 1.7vw, 0.96rem) !important;
    white-space: nowrap !important;
  }

  .final-actions .text-link {
    color: var(--ink) !important;
    font-size: clamp(0.78rem, 1.6vw, 0.94rem) !important;
  }
}

@media (min-width: 1101px) {
  .final-section .inline-more-light {
    color: var(--ink) !important;
  }

  .final-section .modal-teaser:hover .inline-more-light {
    color: var(--brand) !important;
  }
}

@media (max-width: 600px) {
  .hero h1,
  main > section h2,
  .final-section h2 {
    color: var(--heading) !important;
    font-size: clamp(0.86rem, 4.3vw, 1.08rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.065em !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    overflow-wrap: normal !important;
    word-break: keep-all !important;
    text-shadow: none !important;
  }

  .final-section h2 {
    display: block !important;
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
    width: 100% !important;
    max-width: none !important;
    white-space: nowrap !important;
  }

  .final-section .modal-teaser {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }

  .final-section .final-bg {
    grid-column: 2 !important;
    grid-row: 1 / span 2 !important;
    align-self: start !important;
    aspect-ratio: 4 / 5 !important;
    height: auto !important;
    margin-top: -12px !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  .final-section .final-actions {
    margin-top: 46px !important;
  }

  .note-section {
    padding-top: 24px !important;
  }

  .recruit-section.lp-section.split {
    grid-template-columns: minmax(0, 66fr) minmax(92px, 34fr) !important;
    column-gap: 12px !important;
  }
}

/* Main visual: isolated from the existing hero and section layouts. */
.main-visual {
  width: 100%;
  margin: 0;
  padding: 76px 0 0;
  overflow: hidden;
  line-height: 0;
  background: var(--paper);
}

.main-visual > img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
}

.main-visual + .hero {
  padding-top: 72px;
}

@media (max-width: 900px) {
  .main-visual {
    padding-top: 58px;
  }

  .main-visual + .hero {
    padding-top: 44px;
  }
}

/* ===== VF components (pricing / header buttons) — ported from arriba-base ===== */
.brand-word {
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}

.price-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 10px;
}

.price-card {
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand);
  border-radius: 6px;
  background: #fff;
  padding: 26px 24px;
  box-shadow: 0 14px 40px color-mix(in srgb, var(--black) 7%, transparent);
}

.price-card-head {
  border-bottom: 2px solid var(--ink);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.price-sns {
  display: flex;
  gap: 9px;
  margin-bottom: 12px;
}

.price-sns img {
  width: 22px;
  height: 22px;
}

.price-card-head strong {
  display: block;
  font-size: 1.22rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.price-card-head small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.price-tiers {
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-tiers li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.price-tiers li span {
  color: var(--muted);
}

.price-tiers li:last-child {
  border-bottom: 0;
}

.price-tiers b {
  font-size: 1.18rem;
  color: var(--ink);
}

@media (max-width: 760px) {
  .price-table {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-weight: 800;
  text-decoration: none;
  border-radius: 10px;
  padding: 10px 15px;
  font-size: 0.9rem;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hbtn-ghost {
  color: var(--brand);
  background: #fff;
  border: 2px solid color-mix(in srgb, var(--brand) 50%, transparent);
}

.hbtn-solid {
  color: #fff;
  background: var(--brand);
  border: 2px solid var(--brand);
}

.hbtn-line {
  color: #fff;
  background: var(--black);
  border: 2px solid var(--black);
}

.hbtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--black) 18%, transparent);
}

@media (min-width: 901px) {
  .global-menu .header-actions {
    display: flex !important;
    margin-left: 6px;
  }
}

@media (max-width: 900px) {
  .header-trial-cta {
    display: none !important;
  }

  .global-menu .header-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .global-menu .hbtn {
    width: 100%;
    padding: 17px;
    font-size: 1.08rem;
    border-radius: 12px;
  }

  .global-menu .hbtn-ghost {
    color: #fff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.65);
  }

  .global-menu .hbtn-line {
    color: var(--black);
    background: #fff;
    border-color: #fff;
  }
}

/* ===== Form (ported from sekaikan) ===== */
.form-section .form {
  max-width: 420px;
  margin: 0 auto;
}

.form-section .form__lead {
  text-align: center;
  color: var(--muted);
  margin-bottom: 2.4rem;
  letter-spacing: 0.08em;
}

.form-section .field {
  display: block;
  margin-bottom: 1.6rem;
}

.form-section .field__label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.form-section .field__label em {
  font-style: normal;
  font-size: 0.7rem;
  color: var(--brand-dark);
  margin-left: 0.5em;
  letter-spacing: 0.08em;
}

.form-section .field__opt {
  font-size: 0.7rem;
  color: var(--muted);
  opacity: 0.7;
  margin-left: 0.5em;
}

.form-section .field input,
.form-section .field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: color-mix(in srgb, var(--ink) 4%, transparent);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border 0.3s, background 0.3s;
}

.form-section .field input::placeholder,
.form-section .field textarea::placeholder {
  color: color-mix(in srgb, var(--muted) 55%, transparent);
}

.form-section .field input:focus,
.form-section .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: color-mix(in srgb, var(--brand) 6%, transparent);
}

.form-section .field textarea {
  resize: vertical;
  line-height: 1.8;
}

.form-section .field--contact {
  border: none;
  padding: 0;
}

.form-section .field--contact input {
  margin-bottom: 0.7rem;
}

.form-section .field__hint {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 0.2rem;
}

.form-section .field.is-error input,
.form-section .field.is-error textarea,
.form-section .field--contact.is-error input {
  border-color: var(--brand-dark);
}

.form-section .field__err {
  color: var(--brand-dark);
  font-size: 0.78rem;
  margin-top: 0.5rem;
  display: none;
}

.form-section .field.is-error .field__err {
  display: block;
}

.form-section .form__privacy {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 1.6rem 0 1.8rem;
  text-align: center;
}

.form-section .submit {
  display: block;
  width: 100%;
  padding: 1.1rem;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  color: #fff;
  background:
    radial-gradient(120% 160% at 50% -40%, color-mix(in srgb, var(--brand) 30%, transparent), transparent 58%),
    linear-gradient(180deg, var(--brand), var(--brand-dark));
  border: 1px solid color-mix(in srgb, var(--brand) 36%, transparent);
  box-shadow: 0 10px 34px color-mix(in srgb, var(--brand) 42%, transparent), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.35s;
}

.form-section .submit:active {
  transform: scale(0.98);
}

.form-section .submit:disabled {
  opacity: 0.6;
  pointer-events: none;
}

.form-section .submit.is-sending {
  opacity: 0.7;
  pointer-events: none;
  letter-spacing: 0.12em;
}

/* Honeypot: visually hidden, kept out of screen-reader flow too */
.form-section .hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-section .form__error {
  color: var(--brand-dark);
  font-size: 0.85rem;
  line-height: 1.8;
  text-align: center;
  margin: 0 0 1rem;
  white-space: pre-line;
}

.form-section .thanks {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
  padding: 2vh 0;
}

.form-section .thanks__title {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.form-section .thanks__body {
  color: var(--muted);
  line-height: 2;
}

/* ===== 汎用ヘッダー最終上書き: ロゴのアスペクト比保持 + ハンバーガーを確実に右端へ =====
   （アリバの横長ワードマーク前提で .brand/.brand img を固定px幅で強制する旧ブロックを無効化。
     正方形マーク+文字ロゴなど任意のアスペクト比でヘッダー高に収める） */
@media (max-width: 900px) {
  .brand {
    flex: 0 1 auto !important;
    max-width: 62vw !important;
    min-width: 0 !important;
  }
  .brand img {
    width: auto !important;
    height: auto !important;
    max-height: 34px !important;
    max-width: 150px !important;
    object-fit: contain !important;
  }
  /* CTAが非表示の幅でもハンバーガーを右端へ */
  .menu-toggle {
    margin-left: auto !important;
  }
}
@media (max-width: 600px) {
  .brand img { max-height: 32px !important; max-width: 122px !important; }
}
@media (max-width: 360px) {
  .brand img { max-height: 30px !important; max-width: 104px !important; }
}

/* circle-points: 1行厳守(改行禁止)。[data-fit-heading]によるJS自動縮小
   (main.js fitSingleLineHeadings)が円の幅に収まるまでfont-sizeを縮めるため、
   ここではJSが正しく計測できるよう折り返しを禁止するだけでよい。 */
.circle-points li {
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow: hidden !important;
}

