:root {
  --ink: #0e0f13; /* graphite black base */
  --surface: #16181f; /* card surface */
  --surface-2: #1d2029;
  --line: #2a2d38;
  --text: #f2f1ee;
  --muted: #9a9da8;
  --lm-a: #6d5cff; /* Lemino prism accent */
  --lm-b: #ff4d8d;
  --lm-c: #ff9e45;
  --grad: linear-gradient(100deg, var(--lm-a) 0%, var(--lm-b) 55%, var(--lm-c) 100%);
  --radius: 16px;
  --disp: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  --body: 'Noto Sans JP', sans-serif;
  --num: 'Outfit', 'Noto Sans JP', sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
}
a {
  color: inherit;
}
.wrap {
  width: min(1060px, 100% - 40px);
  margin-inline: auto;
}
section {
  padding: 72px 0;
}
.eyebrow {
  display: inline-block;
  font-family: var(--num);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 14px;
}
h2 {
  font-family: var(--disp);
  font-weight: 900;
  font-size: clamp(1.5rem, 3.6vw, 2.1rem);
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.lead {
  color: var(--muted);
  margin-top: 16px;
  max-width: 640px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: var(--grad);
  border: none;
  border-radius: 999px;
  padding: 18px 34px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(255, 77, 141, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(255, 77, 141, 0.38);
}
.btn:focus-visible {
  outline: 3px solid var(--lm-c);
  outline-offset: 3px;
}
.btn .price-tag {
  font-family: var(--num);
  font-weight: 800;
  background: rgba(0, 0, 0, 0.24);
  border-radius: 999px;
  padding: 2px 12px;
  font-size: 0.85rem;
}

/* ===== Header ===== */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 15, 19, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--num);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
}
.brand .x {
  color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
}
.header-cta {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
  background: var(--grad);
  border-radius: 999px;
  padding: 9px 18px;
  text-decoration: none;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--num);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.lang-switch a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s ease;
}
.lang-switch a:hover {
  color: var(--text);
}
.lang-switch .lang-current {
  color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  cursor: default;
}
.lang-switch .lang-sep {
  color: var(--line);
}

/* ===== Hero ===== */
.hero {
  padding: 40px 0 40px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: auto -20% -55% -20%;
  height: 70%;
  background: var(--grad);
  filter: blur(120px);
  opacity: 0.16;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  gap: 44px;
  align-items: center;
}
.hero h1 {
  font-family: var(--disp);
  font-weight: 900;
  font-size: clamp(1.8rem, 5.4vw, 2.5rem);
  line-height: 1.45;
  letter-spacing: 0.01em;
}
.hero h1 .fun {
  color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero .plan-name {
  display: block;
  margin-top: 14px;
  font-size: clamp(1rem, 2.6vw, 1.35rem);
  font-weight: 700;
  color: var(--muted);
}
.hero .sub {
  margin-top: 22px;
  color: var(--muted);
  max-width: 520px;
}
.hero .cta-area {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.hero .note {
  font-size: 0.78rem;
  color: var(--muted);
}

/* signature: split panel work × play */
.split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 340px;
}
.pane {
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  position: relative;
}
.pane .tag {
  font-family: var(--num);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: #fff;
  line-height: 1;
  margin: 0;
}
.pane h3 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.4;
}
.pane p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.7;
}
.pane.work {
  background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0) 100%),
    url('../img/left_img.jpg') no-repeat center/cover;
}
.pane.play {
  background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%),
    url('../img/right_img.jpg') no-repeat center/cover;
}
.pane.play .tag {
  color: #ffd9e8;
}
.collab-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 20px;
  font-family: var(--num);
  font-weight: 800;
  font-size: 0.85rem;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.collab-badge .x {
  color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  margin: 0 0.3em;
}

/* ===== Concept ===== */
.concept {
  border-top: 1px solid var(--line);
}
.concept-in {
  max-width: 720px;
}
.voice {
  margin-top: 26px;
  display: grid;
  gap: 12px;
}
.voice blockquote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--text);
}
.voice blockquote::before {
  content: '“';
  font-family: var(--num);
  font-size: 1.4rem;
  color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  margin-right: 0.35em;
  font-weight: 800;
}
.concept .answer {
  margin-top: 24px;
}

/* ===== Features ===== */
.features {
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.feat-grid {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}
.feat {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feat .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--grad);
  display: grid;
  place-items: center;
  flex: none;
}
.feat .icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feat .label {
  font-family: var(--num);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.feat h3 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1.6;
}
.feat p {
  font-size: 0.86rem;
  color: var(--muted);
}

/* ===== Pricing ===== */
.price-card {
  margin-top: 38px;
  border-radius: 24px;
  padding: 2px;
  background: var(--grad);
}
.price-card-in {
  background: var(--surface);
  border-radius: 22px;
  padding: 36px 26px;
}
.price-head {
  text-align: center;
}
.price-head .plan {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 1.05rem;
}
.price-num {
  font-family: var(--num);
  font-weight: 800;
  font-size: clamp(3rem, 9vw, 4.4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
}
.price-num small {
  font-size: 0.32em;
  letter-spacing: 0.05em;
}
.price-tax {
  color: var(--muted);
  font-size: 0.82rem;
}
.included {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}
.included li {
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 0.88rem;
}
.included .check {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--grad);
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.included .check svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.compare {
  margin-top: 28px;
  overflow-x: auto;
}
.compare table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.83rem;
  min-width: 480px;
}
.compare th,
.compare td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.compare th:first-child,
.compare td:first-child {
  text-align: left;
  color: var(--muted);
}
.compare thead th {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 0.85rem;
}
.compare .new-col {
  background: rgba(255, 77, 141, 0.07);
}
.compare .new-col strong {
  color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
}
.compare .ok {
  color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 800;
}
.compare .no {
  color: var(--muted);
}
.price-note {
  margin-top: 16px;
  font-size: 0.76rem;
  color: var(--muted);
}
.premium-benefits {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.benefits-label {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.benefits-list {
  list-style: none;
  display: grid;
  gap: 8px;
}
.benefits-list li a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.benefits-list li a:hover {
  color: var(--text);
  border-color: var(--lm-b);
}
.benefits-list .b-no {
  flex: none;
  font-family: var(--num);
  font-weight: 800;
  font-size: 0.72rem;
  color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
}
.benefits-list li.highlight {
  border: 1px solid transparent;
  border-radius: 12px;
}
.benefits-list .benefit-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--lm-b);
  background: rgba(255, 77, 141, 0.08);
}
.benefits-list .tag-new {
  margin-left: auto;
  flex: none;
  font-family: var(--num);
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--grad);
  padding: 3px 9px;
  border-radius: 999px;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .benefit-row {
    flex-wrap: wrap;
  }
  .benefit-row .tag-new {
    margin-left: 0;
    width: 100%;
  }
}

/* ===== Steps ===== */
.steps {
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.step-grid {
  display: grid;
  gap: 0;
  margin-top: 38px;
  position: relative;
}
.step {
  position: relative;
  padding: 0 0 34px 58px;
}
.step:last-child {
  padding-bottom: 0;
}
.step::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 44px;
  bottom: -4px;
  width: 2px;
  background: var(--line);
}
.step:last-child::before {
  display: none;
}
.step-no {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad);
  display: grid;
  place-items: center;
  font-family: var(--num);
  font-weight: 800;
  color: #fff;
  font-size: 0.95rem;
}
.step h3 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 1.05rem;
  padding-top: 6px;
}
.step p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 6px;
}

/* ===== FAQ ===== */
.faq-list {
  margin-top: 38px;
  display: grid;
  gap: 12px;
}
details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 52px 20px 22px;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
  line-height: 1.7;
}
summary::-webkit-details-marker {
  display: none;
}
summary::before {
  content: 'Q';
  font-family: var(--num);
  font-weight: 800;
  color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  margin-right: 0.8em;
}
summary::after {
  content: '';
  position: absolute;
  right: 22px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s;
}
details[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}
.faq-a {
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 0.88rem;
  border-top: 1px dashed var(--line);
  padding-top: 16px;
  margin: 0 22px 22px;
  padding-inline: 0;
}

/* ===== Final CTA ===== */
.final {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 26px 0 20px 0;
}
.final::before {
  content: '';
  position: absolute;
  inset: -40% -20% auto;
  height: 120%;
  background: var(--grad);
  filter: blur(140px);
  opacity: 0.14;
  pointer-events: none;
}
.final h2 {
  font-size: clamp(1.5rem, 4vw, 2.3rem);
}
.final .btn {
  margin-top: 34px;
}

/* ===== Footer ===== */
footer {
  border-top: 1px solid var(--line);
  padding: 34px 0 34px;
  color: var(--muted);
  font-size: 0.75rem;
}
.footer-in {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}

/* ===== Mobile sticky CTA ===== */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(14, 15, 19, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
}
.sticky-cta .btn {
  width: min(520px, 100%);
  padding: 15px 20px;
  font-size: 0.92rem;
}

@media (min-width: 820px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
  .feat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .sticky-cta {
    display: none;
  }
  footer {
    padding-bottom: 34px;
  }
  section {
    padding: 96px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto;
  }
}
@media screen and (max-width: 767px) {
  .hero {
    padding: 0px 0 40px;
  }
  .btn {
    padding: 12px 16px;
  }
  .header-in {
    min-height: 60px;
    height: auto;
    padding: 10px 0;
    flex-wrap: wrap;
    row-gap: 8px;
  }
  .header-cta {
    display: none;
  }
  .header-right {
    gap: 10px;
  }
  .lang-switch {
    font-size: 0.64rem;
    gap: 5px;
  }
  .brand img {
    width: 170px !important;
  }
}

/* CTA */
.bizspotBanner {
  z-index: 3;
  background: #16181f;
  width: 100%;
  position: sticky;
  bottom: 0;
  padding: 20px 0;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.75);
}

.contentsDiv {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  box-sizing: border-box;
  padding-left: 10px;
  padding-right: 10px;
}

.ut_contentsArea {
  display: flex;
}
.ut_leftArea {
  width: 55%;
  display: flex;
}
.ut_dlBtnArea {
  display: flex;
  width: 45%;
  max-width: 600px;
  margin: 0 auto;
  box-sizing: border-box;
  align-items: center;
}

.ut_icons {
  width: 160px;
  text-align: center;
}
.ut__logoIcon {
  width: 80px;
  margin-bottom: 10px;
}
.ut__logoMoji {
  width: 130px;
}
.ut_texts {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ut__txtLead {
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 5px;
}
.ut__txt {
  font-size: 18px;
  font-weight: bold;
}
.af__txt {
  color: #462200;
  font-size: 18px;
  font-weight: bold;
}
.ut_dlBtnArea--ip {
  flex: 0 0 38%;
  padding: 0 10px;
  box-sizing: border-box;
}

.ut_dlBtnArea--ad {
  flex: 0 0 33%;
  padding: 0 10px;
  box-sizing: border-box;
}
.ut_dlBtnArea--qr {
  flex: 0 0 26%;
  padding: 0 10px;
  box-sizing: border-box;
}

.ut__fDlBtn--gp {
  border: 2px solid #8d8d8d;
  border-radius: 4px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .ut__logoIcon {
    width: 60px;
  }

  .ut__logoMoji {
    width: 110px;
  }
  .ut__txtLead {
    font-size: 18px;
  }
  .ut__txt {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .ut_contentsArea {
    flex-direction: column;
  }
  .ut_leftArea {
    width: auto;
    flex-direction: column;
  }
  .ut_dlBtnArea {
    width: auto;
    justify-content: center;
  }

  .ut_icons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    margin-bottom: 10px;
  }
  .ut_texts {
    margin-bottom: 10px;
    text-align: center;
  }
  .ut__logoIcon {
    width: 70px;
  }
  .ut__logoMoji {
    width: 100px;
  }
  .ut__txtLead {
    font-size: 16px;
    text-align: center;
  }
  .ut__txt {
    font-size: 12px;
    text-align: center;
  }

  .ut_dlBtnArea--ip {
    padding: 0 10px;
  }

  .ut_dlBtnArea--ad {
    padding: 0 10px;
  }
}

.ut__logoIcon2 {
  width: 80px;
  margin-top: 7px;
}

@media screen and (max-width: 1024px) {
  .ut__logoIcon2 {
    width: 60px;
  }
}
@media screen and (max-width: 767px) {
  .ut__logoIcon2 {
    width: 70px;
    margin-top: 0;
    margin-bottom: 10px;
  }
}
.ut__txtLead2 {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 5px;
}
.ut__txtLead3 {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #b8193f;
}
.ut__txt2 {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3;
}
.ut_dlBtnArea--ip2 {
  flex: 0 0 33%;
  padding: 0 10px;
  box-sizing: border-box;
}

.ut_dlBtnArea--ad2 {
  flex: 0 0 28%;
  padding: 0 10px;
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .ut__txtLead2 {
    font-size: 16px;
  }
  .ut__txt2 {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .ut__txtLead2 {
    font-size: 16px;
    text-align: center;
  }
  .ut__txt2 {
    font-size: 12px;
    text-align: center;
  }
  .sp_none {
    display: none;
  }
  .img-responsive {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
  }
  .bizspotBanner {
    position: static;
    bottom: auto;
    right: auto;
    padding: 20px 0;
  }
}
