:root {
  --black: #050507;
  --ink: #101014;
  --panel: #17181d;
  --panel-2: #202228;
  --line: rgba(255, 255, 255, .14);
  --text: #f4f5f7;
  --muted: #a9adb7;
  --red: #4FDEE4;
  --red-dark: #149aa3;
  --silver: #d8dde5;
  --yellow: #f3c24c;
  --shadow: 0 28px 70px rgba(0, 0, 0, .42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--black);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.85;
}

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

img {
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.sp {
  display: none;
}

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

.narrow {
  width: min(860px, calc(100% - 48px));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(5, 5, 7, .08);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  display: block;
  width: auto;
  height: 44px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--silver);
  font-size: 14px;
  font-weight: 700;
}

.header-nav a:last-child {
  padding: 9px 18px;
  background: var(--red);
  color: #fff;
}

.hero {
  position: relative;
  margin-top: 79px;
  overflow: hidden;
  background: #07070a;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .12em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.25;
}

.confirm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 14px 34px rgba(79, 222, 228, .24);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, .32);
  color: var(--text);
  background: rgba(255, 255, 255, .06);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d0e12;
}

.quick-info div {
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}

.quick-info span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.quick-info strong {
  display: block;
  margin-top: 4px;
  font-size: 22px;
}

.quick-info .quick-inline {
  display: flex;
  align-items: baseline;
  gap: .04em;
  white-space: nowrap;
}

.text-accent {
  color: var(--red);
}

.salary-accent {
  color: var(--red) !important;
  font-size: 1.7em !important;
  line-height: 1;
	display: inline-block
}

.section,
.section-dark {
  padding: 110px 0;
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(79, 222, 228, .08), transparent 34%),
    #0b0c10;
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 64px;
  align-items: start;
}

.section-title h2,
.section-heading h2,
.video-section h2,
.form-layout h2,
.confirm-page h1 {
  margin-bottom: 24px;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 900;
}

.section-title h2 {
  font-size: clamp(34px, 3.6vw, 52px);
}

.copy-block p,
.video-section p,
.form-layout > div > p {
  color: var(--silver);
  font-size: 17px;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 48px;
}

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

.merit-card {
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel), #111216);
  box-shadow: var(--shadow);
}

.merit-card.accent {
  color: #fff;
  background: linear-gradient(160deg, var(--red), #0b3f45);
}

.merit-card span {
  display: block;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, .42);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
}

.merit-card h3 {
  margin-bottom: 14px;
  font-size: 24px;
}

.merit-card p,
.work-list p,
.timeline span,
.manga-view figcaption,
.confirm-lead {
  color: var(--muted);
}

.work-section {
  background: #08090c;
}

.work-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.work-list article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: 15px;
  background: var(--panel);
}

.work-list article > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background:
    linear-gradient(135deg, rgba(79, 222, 228, .22), rgba(0, 0, 0, 0)),
    #1a1c22;
}

.work-list article > div {
  padding: 28px;
}

.work-list h3 {
  margin-bottom: 14px;
  font-size: 26px;
}

.job-detail-section {
  background:
    linear-gradient(135deg, rgba(79, 222, 228, .08), transparent 42%),
    #0b0c10;
}

.job-detail {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 54px;
  align-items: center;
}

.job-detail-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.job-detail-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.job-detail-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 900;
}

.job-detail-copy p {
  color: var(--silver);
  font-size: 17px;
}

.job-detail-copy ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.job-detail-copy li {
  position: relative;
  padding: 13px 16px 13px 42px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  color: var(--silver);
  font-weight: 700;
}

.job-detail-copy li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 17px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  transform: translateY(-50%);
}

.media-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 54px;
  align-items: center;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, .16);
  background: #000;
  box-shadow: var(--shadow);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.manga-section {
  background:
    linear-gradient(180deg, #0c0d11, #060608);
}

.manga-view {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--shadow);
}

.manga-view img {
  width: 100%;
  min-height: 240px;
  border-radius: 10px;
  object-fit: contain;
  background:
    repeating-linear-gradient(135deg, #f0f0f0 0 12px, #e1e1e1 12px 24px);
}

.manga-view figcaption {
  margin-top: 12px;
  color: #555;
  font-size: 13px;
  text-align: center;
}

.schedule-section {
  background: #0d0e12;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.timeline time {
  display: block;
  margin-bottom: 24px;
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.timeline strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.timeline span {
  display: block;
  font-size: 14px;
}

.wide-photo {
  width: 100%;
  background: #050507;
}

.wide-photo img {
  width: 100%;
  height: min(58vw, 620px);
  min-height: 300px;
  object-fit: cover;
}

.photo-section {
  background: #0b0c10;
}

.photo-swiper {
  position: relative;
  padding: 0 0 48px;
  overflow: hidden;
}

.photo-swiper figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background:
    linear-gradient(135deg, rgba(79, 222, 228, .18), rgba(255, 255, 255, .04)),
    #16181d;
}

.photo-swiper img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-swiper .swiper-button-prev,
.photo-swiper .swiper-button-next {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  color: #fff;
  background: rgba(5, 5, 7, .72);
  backdrop-filter: blur(10px);
}

.photo-swiper .swiper-button-prev::after,
.photo-swiper .swiper-button-next::after {
  font-size: 17px;
  font-weight: 900;
}

.photo-swiper .swiper-pagination {
  bottom: 0;
}

.photo-swiper .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, .6);
  opacity: 1;
}

.photo-swiper .swiper-pagination-bullet-active {
  background: var(--red);
}

.recruit-section,
.company-section {
  background: #07080a;
}

.recruit-tables {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.recruit-tables article {
  padding: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #191a20, #101115);
}

.recruit-tables h3 {
  margin-bottom: 18px;
  color: var(--red);
  font-size: 28px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  vertical-align: top;
}

th {
  width: 180px;
  color: #fff;
  text-align: left;
  background: rgba(255, 255, 255, .04);
}

td {
  color: var(--silver);
}

.detail-table {
  border: 1px solid var(--line);
  background: var(--panel);
}

.cta-band {
  position: relative;
  margin-top: 44px;
  padding: 0;
  overflow: visible;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .26), rgba(0, 0, 0, .06)),
    linear-gradient(135deg, #18595b, #0b3f42);
}

.cta-band .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 360px;
}

.cta-band p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .78);
  font-weight: 700;
}

.cta-band h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 44px);
}

.cta-copy {
  position: relative;
  z-index: 2;
  width: min(44%, 560px);
  min-width: 0;
}

.cta-person {
  position: absolute;
  left: 55%;
  bottom: 0;
  z-index: 1;
  width: min(30vw, 430px);
  max-height: 420px;
  object-fit: contain;
  object-position: bottom center;
  transform: translateX(-50%);
  pointer-events: none;
}

.cta-band .btn {
  position: relative;
  z-index: 2;
}

.cta-tel {
  display: block;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 800;
  line-height: 1;
}

.cta-hours {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  font-weight: 700;
}

.form-section {
  background:
    linear-gradient(135deg, rgba(79, 222, 228, .12), transparent 40%),
    #0b0c10;
}

.form-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 54px;
  align-items: start;
}

.tel-box {
  margin-top: 32px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
}

.tel-box span,
.tel-box small {
  display: block;
  color: var(--muted);
}

.tel-box a {
  display: block;
  margin: 4px 0;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
}

.entry-form {
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.entry-form label {
  display: block;
  margin-bottom: 20px;
}

.entry-form label span {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-weight: 900;
}

.entry-form em {
  padding: 2px 7px;
  color: #fff;
  background: var(--red);
  font-size: 11px;
  font-style: normal;
  line-height: 1.4;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 0;
  background: #0b0c10;
  color: #fff;
  outline: none;
}

input,
select {
  height: 52px;
  padding: 0 14px;
}

textarea {
  padding: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.map-section {
  padding: 90px 0 0;
  background: #07080a;
}

.map-section .section-heading {
  margin-bottom: 34px;
}

.map-section .section-heading p:last-child {
  color: var(--silver);
  font-weight: 700;
}

.map-frame {
  width: 100%;
  height: 470px;
  border-top: 1px solid var(--line);
  background: #111216;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.error {
  display: block;
  margin-top: 6px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: #030304;
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin-bottom: 6px;
}

.site-footer strong {
  color: #fff;
}

.sub-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(79, 222, 228, .16), transparent 40%),
    var(--black);
}

.confirm-page {
  padding-top: 40px;
}

.confirm-actions {
  margin-top: 30px;
}

.thanks-box {
  padding: 56px;
  border: 1px solid var(--line);
  background: var(--panel);
}

@media (max-width: 1024px) {
  .site-header {
    padding: 12px 20px;
  }

  .header-nav {
    gap: 14px;
  }

  .quick-info,
  .merit-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .media-grid,
  .job-detail,
  .form-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 767px) {
  .sp {
    display: block;
  }

  .inner,
  .narrow {
    width: min(100% - 28px, 560px);
  }

  .site-header {
    position: fixed;
    padding: 12px 14px;
  }

  .hero {
    margin-top: 65px;
  }

  .header-nav a:not(:last-child) {
    display: none;
  }

  .header-nav a:last-child {
    padding: 8px 12px;
    font-size: 13px;
  }

  .brand img {
    height: 38px;
  }

  .confirm-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .quick-info,
  .merit-grid,
  .work-list,
  .timeline,
  .recruit-tables {
    grid-template-columns: 1fr;
  }

  .photo-swiper .swiper-button-prev,
  .photo-swiper .swiper-button-next {
    display: none;
  }

  .quick-info div {
    padding: 20px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-info strong {
    font-size: 20px;
  }

  .section,
  .section-dark {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .merit-card {
    min-height: 0;
  }

  .merit-card span {
    margin-bottom: 22px;
  }

  .media-grid {
    gap: 28px;
  }

  .timeline li {
    min-height: 0;
  }

  th,
  td {
    display: block;
    width: 100%;
    padding: 14px;
  }

  th {
    border-bottom: 0;
  }

  .cta-band .inner {
    display: block;
    min-height: 360px;
  }

  .cta-band .btn {
    margin-top: 24px;
  }

  .cta-copy {
    width: min(72%, 420px);
    max-width: none;
    padding-top: 54px;
  }

  .cta-person {
    right: -18px;
    left: auto;
    bottom: 0;
    width: min(46vw, 250px);
    max-height: 310px;
    transform: none;
    opacity: .88;
  }

  .cta-tel {
    margin-top: 6px;
  }

  .entry-form {
    padding: 22px;
  }

  .tel-box a {
    font-size: 36px;
  }

  .thanks-box {
    padding: 32px 22px;
  }
}
