@charset "UTF-8";
/* =====================================
  Color Variables
===================================== */
/* =====================================
  Layout Variables
===================================== */
/* =====================================
  Font Variables
===================================== */
/* 日本語（見出し） */
/* 本文 */
/* 英字（装飾・見出し） */
/* =====================================
  Layout Mixins
===================================== */
/* =====================================
  Reset CSS
  ベース：モダンブラウザ + WordPress想定
===================================== */
/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* HTML / Body */
html {
  font-size: 100%;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Margin / Padding Reset */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
figure,
blockquote {
  margin: 0;
  padding: 0;
}

/* List */
ul,
ol {
  list-style: none;
}

/* Link */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Image */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* Form */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  border-radius: 0;
  outline: none;
}

button {
  cursor: pointer;
}

/* Table */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* HR */
hr {
  border: none;
  height: 1px;
  background-color: currentColor;
  opacity: 0.1;
}

/* Address */
address {
  font-style: normal;
}

.p-contents,
.l-main,
.p-article {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 24px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #0A0A12;
}

.grecaptcha-badge {
  visibility: hidden !important;
}

.p-404__content {
  padding: 160px 0;
}
.p-404__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #0A0A12;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}
.p-404__link {
  width: 220px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .p-404__content {
    padding: 80px 0;
  }
}
/* ==========================
  Typography : Heading (font only)
========================== */
/* 見出し本体（日本語） */
.c-heading {
  font-family: "toppan-bunkyu-midashi-go-std", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

/* 装飾用 英字 */
.c-heading__en {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
}

/* 日本語テキスト */
.c-heading__ja {
  font-family: "toppan-bunkyu-midashi-go-std", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
}

.u-pc_on {
  display: block;
}

.u-sp_on {
  display: none;
}

/* ======================
  Responsive
====================== */
@media screen and (max-width: 768px) {
  .u-pc_on {
    display: none;
  }
  .u-sp_on {
    display: block;
  }
}
.c-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 14px 28px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.c-btn::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid currentColor;
  transition: transform 0.3s ease;
}
.c-btn:hover::after {
  transform: translateX(4px);
}

.c-btn--white {
  color: #2222C9;
  background: #fff;
  border: 1px solid #2222C9;
}
.c-btn--white:hover {
  background: #2222C9;
  color: #fff;
}

.c-btn--blue {
  color: #fff;
  background: #2222C9;
  border: 1px solid #2222C9;
}
.c-btn--blue:hover {
  background: #fff;
  color: #2222C9;
}

.c-link_text {
  color: #0A0A12;
  border-bottom: 1px solid #0A0A12;
  transition: 0.3s;
}
.c-link_text:hover {
  opacity: 0.7;
}

.c-btn svg {
  color: inherit;
}

/* =====================
  共通 marquee
===================== */
.marquee {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}
.marquee__inner {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 8s linear infinite;
}
.marquee__inner span {
  display: inline-block;
  margin-right: 20px;
  flex-shrink: 0;
}
.marquee__inner img {
  display: block;
  width: auto;
}

.recruit-kv-textbg .marquee__inner img {
  height: 200px;
}

.recuit__member-textbg .marquee__inner img {
  height: 150px;
}

/* アニメーション */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .marquee__inner {
    animation-duration: 2s;
  }
  @keyframes marquee {
    to {
      transform: translateX(-600%);
    }
  }
}
.c-table {
  width: 100%;
  border-collapse: separate; /* 重要 */
  border-spacing: 16px 0; /* th と td の間だけ余白 */
}
.c-table__th {
  width: 20%;
  padding: 24px;
  border-bottom: solid 2px #2222c9;
  text-align: left;
  font-size: 16px;
  padding-right: 24px;
}
.c-table__td {
  width: 70%;
  padding: 24px;
  border-bottom: solid 1px #add1e7;
  text-align: left;
  font-weight: normal;
  font-size: 16px;
  padding-left: 24px;
}

@media screen and (max-width: 768px) {
  .c-table {
    width: 100%;
    border-collapse: collapse;
  }
  .c-table__tr {
    display: block;
  }
  .c-table__th,
  .c-table__td {
    display: block;
    width: 100%;
    padding: 16px;
  }
  .c-table__th {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .c-table__td {
    font-size: 16px;
    line-height: 1.8;
    border-bottom: none;
  }
}
/* =====================================
  Header Layout
===================================== */
/* 共通 inner */
.p-sub-mv__inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* =====================================
  Header
===================================== */
.header_wrapper.p-sub_pc_on {
  display: block;
}
.header_wrapper.p-sub_sp_on {
  display: none;
}

/* ヘッダー本体 */
.l-header {
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 10;
}

/* ヘッダー内側 */
.l-header-inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  height: 80px;
  background: #fff;
  border-radius: 5px;
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.l-header-inner.is-fixed {
  position: fixed;
  top: 2em;
}

/* ロゴ */
#header_logo a {
  display: flex;
  align-items: center;
}
#header_logo img {
  height: 40px;
  width: auto;
}

/* メニュー全体 */
.l-header_menu_wrapper {
  display: flex;
  align-items: center;
}

/* メニューリスト */
.l-header_menu_list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* メニューアイテム */
.l-header_menu_list_item .c-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.l-header_menu_list_item .c-btn::after {
  content: none;
}

.l-header_menu_list_item .c-btn svg {
  width: 16px;
  height: 16px;
  display: block;
}

/* メニューリンク */
.l-header_menu_link {
  font-size: 14px;
  font-weight: 700;
  color: #0A0A12;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.l-header_menu_link:hover {
  color: #2222C9;
}

/* =====================================
  Header Dropdown（採用情報）
===================================== */
.l-header_menu_list_item--dropdown {
  position: relative;
}

/* ドロップダウン本体 */
.l-header_dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 8px;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 2000;
}

/* 中身 */
.l-header_dropdown_item {
  background: transparent;
}

/* hover / focus */
.l-header_menu_list_item--dropdown:hover .l-header_dropdown,
.l-header_menu_list_item--dropdown:focus-within .l-header_dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ドロップダウン項目 */
.l-header_dropdown_item a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  color: #0A0A12;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.l-header_dropdown_item a:hover {
  background-color: rgba(34, 34, 201, 0.08);
  color: #2222C9;
}

/* お問い合わせボタン */
.contact-btn-item {
  margin-left: 16px;
}

.sp-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  border-radius: 50px 50px 0 0;
  display: flex;
  flex-direction: column;
  background-image: url("../img/bg-noise.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sp-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sp-menu__header {
  padding: 20px;
}

.sp-menu__header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sp-menu__logo {
  display: block;
}
.sp-menu__logo img {
  width: 140px;
  height: auto;
  display: block;
}

.sp-menu__close {
  position: relative;
  background: #fff;
  line-height: 1;
  border-radius: 50%;
  padding: 1em;
  width: 40px;
  height: 40px;
}

.sp-menu__close::before,
.sp-menu__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #2222C9;
}

.sp-menu__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.sp-menu__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.sp-menu__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 48px 20px 35px;
}

.sp-menu__catch img {
  width: 100%;
  max-width: 260px;
}

.sp-menu__nav {
  padding: 0 20px;
}

.sp-menu__nav-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}

.sp-menu__nav-list a,
.sp-menu__nav-label {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.sp-menu__nav-item.has-children {
  position: relative;
}

.sp-menu__nav-sublist {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 6px;
}
.sp-menu__nav-sublist li {
  font-size: 13px;
  position: relative;
  white-space: nowrap;
}
.sp-menu__nav-sublist li::before {
  content: "";
  position: absolute;
  left: 0;
}
.sp-menu__nav-sublist li + li {
  margin-top: 4px;
}

.sp-menu__privacy-list {
  padding: 24px 20px 32px;
  font-size: 13px;
  line-height: 2.8;
  list-style: none;
}

.sp-menu__privacy-list li + li {
  margin-top: 8px;
}

.sp-menu__nav-item.is-gaming {
  grid-column: 1;
  grid-row: 4;
}

.sp-menu__nav-item.is-entry {
  grid-column: 2;
  grid-row: 4;
}

/* =====================================
  Sub Page MV
===================================== */
.p-sub-mv {
  position: relative;
  width: 100%;
  height: 327px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  color: #fff;
}
.p-sub-mv__inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  padding-top: 52px;
}
.p-sub-mv__en-bg {
  position: absolute;
  top: 7rem;
  left: 24px;
  z-index: 1;
  font-size: 100px;
  font-weight: 700;
  letter-spacing: 0.12em;
  white-space: nowrap;
  font-family: "Orbitron", sans-serif;
  color: #2f2fac;
  line-height: 1;
  pointer-events: none;
}
.p-sub-mv__jp {
  position: relative;
  z-index: 2;
  margin-top: 8rem;
  margin-bottom: 12px;
  font-size: 40px;
  font-weight: 600;
  font-family: "toppan-bunkyu-midashi-go-std", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
}
.p-sub-mv__breadcrumb {
  position: relative;
  z-index: 2;
  font-size: 15px;
  opacity: 0.85;
}

/* =====================================
  SP
===================================== */
@media screen and (max-width: 768px) {
  .header_wrapper {
    position: static;
    left: 0;
    transform: none;
    width: 100%;
    z-index: 1000;
  }
  .header_wrapper.p-sub_pc_on {
    display: none;
  }
  .header_wrapper.p-sub_sp_on {
    display: block;
  }
  .l-header-inner {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
  }
  /* ======================
    Sub MV
  ====================== */
  .p-sub-mv {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 280px;
  }
  .p-sub-mv__inner {
    padding-top: 0;
  }
  .p-sub-mv__en-bg {
    top: -1rem;
    font-size: 1.8rem;
  }
  .p-sub-mv__jp {
    font-size: 36px;
  }
  /* ======================
    SP Header base
  ====================== */
  .p-sub_sp_on .l-header {
    position: fixed;
    top: 16px;
    left: 16px;
    right: 16px;
    width: auto;
    height: 64px;
    padding: 0 24px;
    background: #fff;
    z-index: 1000;
  }
  .p-sub_sp_on .is-fixed {
    position: static;
    top: 1em;
  }
  .l-header--sp {
    height: 64px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }
  /* ======================
    Logo
  ====================== */
  .l-header_logo_wrapper {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }
  .l-header_logo_wrapper img {
    height: 20px;
    width: auto;
    display: block;
  }
  /* ======================
    Right actions
  ====================== */
  .l-header_sp_actions {
    display: flex;
    align-items: center;
    gap: 7px;
  }
  /* ======================
    Contact button
  ====================== */
  .l-header_sp_contact {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 36px;
    padding: 0 16px;
    border: 1px solid #2b36d9;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    color: #2b36d9;
    text-decoration: none;
    white-space: nowrap;
  }
  .l-header_sp_contact__icon {
    display: flex;
    align-items: center;
  }
  .l-header_sp_contact__icon svg {
    width: 16px;
    height: auto;
    display: block;
  }
  /* ======================
    Hamburger
  ====================== */
  .l-header_hamburger {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2b36d9;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
  }
  .l-header_hamburger span {
    width: 18px;
    height: 2px;
    background: #fff;
    display: block;
  }
}
/* =====================================
  Footer
===================================== */
.l-footer {
  background-image: url("../img/bg-noise.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  position: relative;
  border-radius: 50px 50px 0 0;
}
.l-footer a {
  color: inherit;
  text-decoration: none;
}
.l-footer__inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 64px;
}
.l-footer {
  /* =====================
    左：情報エリア
  ===================== */
}
.l-footer__info {
  flex: 1.3;
}
.l-footer__info-logo {
  margin-bottom: 24px;
}
.l-footer__info-logo img {
  width: 160px;
  height: auto;
}
.l-footer__info-license {
  font-size: 13px;
  line-height: 1.8;
  font-weight: 900;
  margin-bottom: 24px;
  opacity: 0.8;
}
.l-footer__info-license li + li {
  margin-top: 4px;
}
.l-footer__info-catch {
  position: absolute;
  margin-top: 3rem;
}
.l-footer {
  /* =====================
    中央：区切り
  ===================== */
}
.l-footer__divider {
  width: 2px;
  background: linear-gradient(to bottom, #fff 0%, #fff 60%, #000 60%, #000 100%);
}
.l-footer {
  /* =====================
    右：ナビ
  ===================== */
}
.l-footer__nav {
  flex: 0.7;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}
.l-footer__nav-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  gap: 28px 73px;
}
.l-footer__nav-item {
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.l-footer__nav-item a {
  transition: opacity 0.2s ease;
}
.l-footer__nav-item a:hover {
  opacity: 0.7;
}
.l-footer__nav-item--company {
  grid-column: 1;
  grid-row: 1;
}
.l-footer__nav-item--features {
  grid-column: 1;
  grid-row: 2;
}
.l-footer__nav-item--gaming {
  grid-column: 1;
  grid-row: 3;
}
.l-footer__nav-item--contact {
  grid-column: 1;
  grid-row: 4;
}
.l-footer__nav-item--service {
  grid-column: 2;
  grid-row: 1;
}
.l-footer__nav-item--recruit {
  grid-column: 2;
  grid-row: 2;
  position: relative;
}
.l-footer__nav-item--entry {
  grid-column: 2;
  grid-row: 4;
  position: relative;
}
.l-footer__nav-item--has-children {
  grid-column: 2;
  grid-row: 2;
}
.l-footer__nav-sublist {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
}
.l-footer__nav-sublist li {
  font-size: 13px;
  padding-left: 1.7em;
  position: relative;
  white-space: nowrap;
}
.l-footer__nav-sublist li::before {
  content: "ー";
  position: absolute;
  left: 0;
}
.l-footer__nav-sublist li + li {
  margin-top: 4px;
}
.l-footer__privacy {
  display: flex;
  align-items: center;
  gap: 28px 120px;
}
.l-footer__privacy img {
  width: 72px;
  height: auto;
}
.l-footer__privacy-list {
  font-size: 12px;
}
.l-footer__privacy-list li + li {
  margin-top: 4px;
}
.l-footer__privacy-list a:hover {
  opacity: 0.7;
}
.l-footer {
  /* =====================
    下部コピーライト
  ===================== */
}
.l-footer__info-bottom {
  padding: 16px 24px;
  text-align: center;
}
.l-footer__info-bottom-copyright {
  font-size: 12px;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .l-footer {
    border-radius: 24px 24px 0 0;
  }
  .l-footer__inner {
    flex-direction: column;
    gap: 40px;
    padding: 48px 20px 32px;
  }
  .l-footer {
    /* ===== 左情報 ===== */
  }
  .l-footer__info {
    flex: none;
    text-align: left;
  }
  .l-footer__info-logo img {
    width: 140px;
  }
  .l-footer__info-license {
    font-size: 12px;
  }
  .l-footer__info-catch {
    position: static;
    margin-top: 24px;
  }
  .l-footer__info-catch img {
    width: 100%;
    max-width: 260px;
  }
  .l-footer {
    /* ===== 区切り消す ===== */
  }
  .l-footer__divider {
    display: none;
  }
  .l-footer {
    /* ===== ナビ ===== */
  }
  .l-footer__nav {
    align-items: stretch;
    gap: 32px;
  }
  .l-footer__nav-list {
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
  }
  .l-footer__nav-item {
    font-size: 14px;
  }
  .l-footer__nav-item--has-children {
    grid-column: 2;
  }
  .l-footer__nav-sublist {
    margin-top: 6px;
  }
  .l-footer__nav-sublist li {
    font-size: 13px;
    padding-left: 1.4em;
  }
  .l-footer {
    /* ===== Pマーク ===== */
  }
  .l-footer__privacy {
    align-items: flex-start;
  }
  .l-footer__privacy img {
    width: 56px;
  }
  .l-footer__privacy-list {
    font-size: 12px;
    line-height: 1.6;
  }
  .l-footer {
    /* ===== コピーライト ===== */
  }
  .l-footer__info-bottom {
    padding: 24px 0 0;
  }
}
/* =====================================
  INNER（全ページ共通）
===================================== */
.l-inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* =====================================
  HOME
===================================== */
html,
body {
  overflow-x: hidden;
}

body.home .p-home-message__text .c-btn,
body.home .p-home-service__action .c-btn,
body.home .p-home-recruit__action .c-btn,
body.home .p-home-news__btn .c-btn {
  padding-left: 60px;
  padding-right: 60px;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.08em;
  font-weight: 600;
}
body.home {
  /* =====================
    HERO
  ===================== */
}
body.home .p-home-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
body.home .p-home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
body.home .p-home-hero__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.home .p-home-hero__catch {
  position: absolute;
  left: 40%;
  top: 70%;
  transform: translate(-50%, -50%);
}
body.home .p-home-hero__recruit {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 900;
}
body.home {
  /* =====================
    MESSAGE
  ===================== */
}
body.home .p-home-message {
  position: relative;
  padding: 200px 0 704px;
  overflow: hidden;
  color: #fff;
  z-index: 2;
  /* 背景 */
}
body.home .p-home-message__bg {
  position: absolute;
  inset: 0;
  background: url("../img/message-bg.png") center/cover no-repeat;
  border-radius: 0 0 40px 40px;
}
body.home .p-home-message__bg-title {
  position: absolute;
  top: 80px;
  right: 0;
  z-index: 0;
  font-family: "Orbitron", sans-serif;
  font-size: 137px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #3232b1;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
body.home .p-home-message {
  /* inner */
}
body.home .p-home-message .l-inner {
  position: relative;
}
body.home .p-home-message {
  /* コンテンツ */
}
body.home .p-home-message__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
body.home .p-home-message {
  /* 左テキスト */
}
body.home .p-home-message__lead {
  margin-bottom: 40px;
  line-height: 1.4;
}
body.home .p-home-message__lead-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  font-family: "toppan-bunkyu-midashi-go-std", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  background: #fff;
  color: #000;
}
body.home .p-home-message__lead-main {
  display: inline-block;
  padding: 10px 16px;
  max-width: 560px;
  font-family: "toppan-bunkyu-midashi-go-std", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  background: #000;
  color: #fff;
}
body.home .p-home-message__desc {
  max-width: 466px;
  margin-bottom: 48px;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}
body.home .p-home-message {
  /* 右：画像 */
}
body.home .p-home-message__image01 {
  position: relative;
  width: 540px;
  height: 640px;
  aspect-ratio: 3/4;
  margin-top: 90px;
  background: url("../img/message-gallery01.png") center/cover no-repeat;
  border-radius: 32px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  transform: translateY(-40px);
}
body.home .p-home-message {
  /* 装飾画像 共通 */
}
body.home .p-home-message__image02, body.home .p-home-message__image03 {
  position: absolute;
  background-size: cover;
  background-position: center;
}
body.home .p-home-message__image02 {
  top: 560px;
  width: 394px;
  height: 458px;
  background-image: url("../img/message-gallery02.png");
  z-index: 0;
}
body.home .p-home-message__image03 {
  right: 0;
  top: 930px;
  width: 507px;
  height: 337px;
  background-image: url("../img/message-gallery03.png");
  z-index: 20;
}
body.home .p-home-message {
  /* ===== MESSAGE専用 流れるコピー ===== */
}
body.home .p-home-message__marquee {
  position: absolute;
  left: 0;
  right: 0;
  top: 60rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  pointer-events: none;
}
body.home .p-home-message__line {
  white-space: nowrap;
  font-family: "toppan-bunkyu-midashi-go-std", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 177px;
  font-weight: 900;
  line-height: 1.5;
  animation: message-marquee 40s linear infinite;
  position: relative;
  z-index: 30;
}
body.home .p-home-message__line--reverse {
  animation-direction: reverse;
  z-index: 10;
}
body.home .p-home-message__line .is-black {
  color: #000;
}
body.home .p-home-message__line .is-white {
  color: #fff;
}
body.home {
  /* MESSAGE専用アニメーション */
}
@keyframes message-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

.p-home-parallax {
  position: relative;
  height: 550px;
  overflow: hidden;
  z-index: 1;
  top: -50px;
}
.p-home-parallax__image {
  position: absolute;
  inset: 0;
  background: url("../img/parallax-image.jpg") center top/cover no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

/* =====================
  SERVICE
===================== */
/* 英字 */
.c-heading__en {
  font-family: "Orbitron", sans-serif;
  font-size: 150px;
  font-weight: 700;
  line-height: 1;
  color: #2222C9;
  white-space: nowrap;
}

/* 日本語 */
.c-heading__ja {
  margin-top: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
}

.p-home-service {
  position: relative;
  z-index: 2;
  /*  SERVICE本体　*/
}
.p-home-service__body {
  padding: 120px 0;
  position: relative;
  z-index: 2;
  background: url("../img/bg-service.png") center/cover no-repeat;
  top: -50px;
}
.p-home-service__head {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.p-home-service__title {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: flex;
  justify-content: flex-end;
  margin-bottom: 80px;
}
.p-home-service__title-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.p-home-service__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  -moz-column-gap: 48px;
       column-gap: 48px;
}
.p-home-service {
  /* コピー側 */
}
.p-home-service__copy {
  max-width: 570px;
}
.p-home-service__lead-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}
.p-home-service__lead-text {
  font-size: 16px;
  line-height: 1.9;
}
.p-home-service {
  /* ボタン側 */
}
.p-home-service__action {
  display: flex;
  align-items: flex-end;
}
.p-home-service__cards-wrap {
  position: relative;
  width: min(1405px, 100vw);
  margin-left: max((100vw - 1100px) / 2 + 100px, 0px);
  overflow-x: clip;
  margin-top: 80px;
  padding: 48px 0 40px;
  background: #e9e9f7;
  border-radius: 40px 0 0 40px;
  overflow: hidden;
}
.p-home-service__cards-inner {
  padding-left: 64px;
}
.p-home-service__cards {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.p-home-service__cards::-webkit-scrollbar {
  display: none;
}
.p-home-service {
  /* カード単体 */
}
.p-home-service__card {
  display: block;
  flex: 0 0 360px;
  min-width: 360px;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  scroll-snap-align: start;
  font-family: "Noto Sans JP";
}
.p-home-service__card h3 {
  margin-top: 16px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-family: "Noto Sans JP", sans-serif;
}
.p-home-service__card p {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #555;
  font-family: "Noto Sans JP", sans-serif;
}
.p-home-service {
  /* ← → ナビ */
}
.p-home-service__nav-wrap {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}
.p-home-service__nav {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.p-home-service__nav:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}
.p-home-service__nav::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}
.p-home-service__nav--prev::before {
  transform: rotate(-135deg);
}
.p-home-service__nav--next::before {
  transform: rotate(45deg);
}

/* =====================================
  FEATURES Section
===================================== */
.p-home-features {
  position: relative;
  padding: 160px 0 260px;
  overflow: hidden;
  /* 背景 */
}
.p-home-features::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/bg-features.png") center/cover no-repeat;
  z-index: 0;
}
.p-home-features {
  /* 子要素を前面に */
}
.p-home-features > * {
  position: relative;
  z-index: 1;
}
.p-home-features {
  /* =====================
    Head
  ===================== */
}
.p-home-features__head {
  margin-bottom: 80px;
}
.p-home-features__title {
  position: relative;
}
.p-home-features__title .c-heading__en {
  position: absolute;
  top: 0;
  left: 0;
}
.p-home-features__title .c-heading__ja {
  display: block;
  max-width: 1100px;
  margin: 0 auto;
  padding: 180px 40px 0;
}
.p-home-features {
  /* =====================
    Body
  ===================== */
}
.p-home-features__body {
  display: grid;
  grid-template-columns: 1fr 480px;
  -moz-column-gap: 50px;
       column-gap: 50px;
  align-items: start;
}
.p-home-features__lead {
  max-width: 520px;
  margin-bottom: 64px;
  font-family: "toppan-bunkyu-midashi-go-std", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 73px;
  font-weight: 700;
  line-height: 1.25;
  color: #2222C9;
}
.p-home-features {
  /* =====================
    List
  ===================== */
}
.p-home-features__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.p-home-features__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
}
.p-home-features__item {
  position: relative;
  padding-right: 48px;
  padding-bottom: 40px;
}
.p-home-features__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #2222C9;
}
.p-home-features__item-text {
  font-size: 24px;
  font-weight: 600;
}
.p-home-features__item-icon {
  position: relative;
  width: 53px;
  height: 53px;
  border-radius: 50%;
  background-color: #2222C9;
  flex-shrink: 0;
}
.p-home-features__item-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #fff;
}
.p-home-features {
  /* =====================
    Image
  ===================== */
}
.p-home-features__image {
  position: relative;
  border-radius: 16px;
  overflow: visible;
}
.p-home-features__image::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: #2222C9;
  transform: translate(16px, 16px);
  z-index: -10;
}
.p-home-features__image img {
  display: block;
  width: 100%;
  height: auto;
}

/* =====================================
  RECRUIT Section
===================================== */
.p-home-recruit {
  position: relative;
  padding-bottom: 80px;
  /* インナー */
}
.p-home-recruit .l-inner {
  position: relative;
  z-index: 1;
}
.p-home-recruit {
  /* =====================
    Background
  ===================== */
}
.p-home-recruit__bg {
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: calc(100% + 1rem);
  background: url("../img/bg-recruit.png") center/cover no-repeat;
  border-radius: 48px 48px 0 0;
  z-index: 0;
}
.p-home-recruit {
  /* 縦英字 */
}
.p-home-recruit__en {
  position: absolute;
  top: -130px;
  left: calc(50% - 550px);
  font-weight: 700;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  line-height: 1;
  white-space: nowrap;
}
.p-home-recruit {
  /* =====================
    Head
  ===================== */
}
.p-home-recruit__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 880px;
  margin: 0 0 56px auto;
}
.p-home-recruit__lead {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.8;
  color: #fff;
}
.p-home-recruit__action {
  flex-shrink: 0;
}
.p-home-recruit {
  /* =====================
    Main Image
  ===================== */
}
.p-home-recruit__image {
  margin-left: auto;
  max-width: 880px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
.p-home-recruit__image img {
  display: block;
  width: 100%;
}
.p-home-recruit {
  /* =====================
    Cards
  ===================== */
}
.p-home-recruit__cards {
  display: flex;
  gap: 32px;
  margin: 40px 0 120px auto;
  max-width: 878px;
}
.p-home-recruit__card {
  width: 423px;
  padding: 24px 24px 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
}
.p-home-recruit__card-en {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 700;
  color: #2222C9;
}
.p-home-recruit__card-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.p-home-recruit__card-desc {
  font-size: 14px;
  line-height: 1.6;
}
.p-home-recruit__card-icon, .p-home-news__icon {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2222C9;
  flex-shrink: 0;
}
.p-home-recruit__card-icon::before, .p-home-news__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #fff;
}

/* =====================================
  NEWS Section
===================================== */
.p-home-news {
  /* =====================
    Head
  ===================== */
}
.p-home-news__head {
  text-align: center;
  margin-bottom: 48px;
}
.p-home-news__title-en {
  margin-bottom: 8px;
}
.p-home-news__title-ja {
  font-size: 28px;
  font-weight: 700;
}
.p-home-news {
  /* =====================
    List
  ===================== */
}
.p-home-news__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-home-news__item {
  display: flex;
  justify-content: center;
}
.p-home-news {
  /* =====================
    Card
  ===================== */
}
.p-home-news__card {
  width: 100%;
  max-width: 840px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border: 1px solid #2222C9;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
}
.p-home-news__card-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.p-home-news {
  /* 日付 */
}
.p-home-news__date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  line-height: 1.3;
}
.p-home-news {
  /* タイトル */
}
.p-home-news__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #2222C9;
  text-decoration: underline;
}
.p-home-news {
  /* 右の丸矢印（RECRUIT流用） */
}
.p-home-news__icon {
  margin-left: 24px;
}
.p-home-news {
  /* =====================
    Button
  ===================== */
}
.p-home-news__btn {
  text-align: center;
  margin: 80px 0;
}

/* =====================
  HOME SP
===================== */
@media (max-width: 768px) {
  body.home {
    /* =====================
      HERO
    ===================== */
  }
  body.home .p-home-hero {
    height: 100svh;
    overflow: hidden;
  }
  body.home .p-home-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
  }
  body.home .p-home-hero__video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.home .p-home-hero {
    /* キャッチコピー */
  }
  body.home .p-home-hero__catch {
    top: 79%;
    width: 100%;
    padding: 0 50px;
    text-align: center;
  }
  body.home .p-home-hero {
    /* 採用ボタン：SPでは非表示 */
  }
  body.home .p-home-hero__recruit {
    display: none;
  }
  body.home {
    /* =====================
      MESSAGE
    ===================== */
  }
  body.home .p-home-message {
    padding: 120px 0 360px;
  }
  body.home .p-home-message__content {
    flex-direction: column;
    gap: 48px;
  }
  body.home .p-home-message__bg-title {
    font-size: 3rem;
    top: 50px;
  }
  body.home .p-home-message__lead-main {
    font-size: 20px;
    max-width: 100%;
  }
  body.home .p-home-message__desc {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.8;
  }
  body.home .p-home-message__image01 {
    width: 100%;
    height: auto;
    margin-top: 0;
    transform: none;
  }
  body.home .p-home-message__image02, body.home .p-home-message__image03 {
    display: none;
  }
  body.home .p-home-message__marquee {
    position: absolute;
    top: 77rem;
  }
  body.home .p-home-message__line {
    font-size: 60px;
    line-height: 1.2;
    white-space: nowrap;
  }
  body.home {
    /* =====================
      SERVICE PARALLAX
    ===================== */
  }
  body.home .p-home-service-parallax {
    height: 240px;
  }
  body.home .p-home-service-parallax__image {
    background-position: center;
  }
  body.home .p-home-parallax__image {
    background-attachment: scroll; /* or initial */
  }
  body.home {
    /* =====================
      SERVICE
    ===================== */
  }
  body.home .c-heading__en {
    font-size: 58px;
  }
  body.home .c-heading__ja {
    font-size: 32px;
  }
  body.home .p-home-service__body {
    padding: 80px 0;
    background: url("../img/bg-service-sp.png") center/cover no-repeat;
  }
  body.home .p-home-service__lead-title {
    font-size: 24px;
  }
  body.home .p-home-service__title {
    margin-bottom: 48px;
    justify-content: flex-start;
  }
  body.home .p-home-service__bottom {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  body.home .p-home-service__cards-wrap {
    width: 100%;
    margin-left: 4rem;
    border-radius: 24px;
  }
  body.home .p-home-service__cards-inner {
    padding-left: 24px;
  }
  body.home .p-home-service__card {
    min-width: 280px;
    flex: 0 0 280px;
  }
  body.home .p-home-service__nav-wrap {
    justify-content: flex-start;
    padding-left: 24px;
  }
  body.home {
    /* =====================
      FEATURES
    ===================== */
  }
  body.home .p-home-features {
    padding: 120px 0 160px;
  }
  body.home .p-home-features__body {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  body.home .p-home-features__lead {
    font-size: 24px;
    max-width: 100%;
  }
  body.home .p-home-features__item {
    padding-right: 0;
    padding-bottom: 10px;
  }
  body.home .p-home-features__item-text {
    font-size: 20px;
  }
  body.home .p-home-features__item-icon {
    width: 48px;
    height: 48px;
  }
  body.home .p-home-features__title .c-heading__ja {
    padding: 70px 20px 0;
  }
  body.home {
    /* =====================
      RECRUIT
    ===================== */
  }
  body.home .p-home-recruit {
    padding-bottom: 40px;
  }
  body.home .p-home-recruit__en {
    position: absolute;
    margin-bottom: 24px;
    top: -85px;
    transform: translateX(-50%);
    left: 50%;
    writing-mode: horizontal-tb;
    text-orientation: initial;
    white-space: nowrap;
    margin: 0;
  }
  body.home .p-home-recruit__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-left: 0;
  }
  body.home .p-home-recruit__lead {
    font-size: 18px;
  }
  body.home .p-home-recruit__image {
    max-width: 100%;
  }
  body.home .p-home-recruit__cards {
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
    margin-left: auto;
  }
  body.home .p-home-recruit__card {
    width: 100%;
  }
  body.home .p-home-recruit__card-icon, body.home .p-home-news__icon {
    margin-left: auto;
  }
  body.home {
    /* =====================
      NEWS
    ===================== */
  }
  body.home .p-home-news__card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  body.home .p-home-news__btn {
    margin: 48px 0;
  }
}
/* =====================================
  COMPANY
===================================== */
.p-company-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 160px;
}
.p-company-hero__title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.6;
  color: #2222C9;
  margin: 120px 0 80px;
  position: relative;
  z-index: 1;
}
.p-company-hero__text {
  font-size: 16px;
  line-height: 2;
  color: #0a0a12;
}
.p-company-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../img/bg-company-hero.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.p-company-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.p-company-greeting {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: url(../img/bg-company-greeting.png) center/cover no-repeat;
  position: relative;
}
.p-company-greeting__bg {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  z-index: 0;
  font-family: "Orbitron", sans-serif;
  font-size: 137px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #f5f5f5;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-align: left;
  padding-left: 0;
}
.p-company-greeting__bg.is-right {
  text-align: right;
  padding-right: 0;
}
.p-company-greeting__inner {
  padding: 160px 0;
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.p-company-greeting__title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.6;
  color: #2222C9;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  text-align: left;
}
.p-company-greeting__title__sub {
  font-size: 30px;
  text-align: left;
  margin-bottom: 40px;
}
.p-company-greeting__text {
  font-size: 16px;
  line-height: 2;
  color: #0a0a12;
  text-align: left;
}
.p-company-greeting__body {
  display: grid;
  grid-template-columns: 1fr 480px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  align-items: start;
}
.p-company-greeting__image {
  position: relative;
  border-radius: 16px;
  overflow: visible;
}
.p-company-greeting__image::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: #2222C9;
  transform: translate(16px, 16px);
  z-index: -10;
}
.p-company-greeting__youtube {
  margin-top: 80px;
}
.p-company-philosophy {
  position: relative;
}
.p-company-philosophy__bg {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  z-index: 0;
  font-family: "Orbitron", sans-serif;
  font-size: 137px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #f5f5f5;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-align: left;
  padding-left: 0;
}
.p-company-philosophy__bg.is-right {
  text-align: right;
  padding-right: 0;
}
.p-company-philosophy__title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.6;
  color: #2222C9;
  margin: 160px 0 80px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.p-company-philosophy__title__sub {
  font-size: 30px;
  text-align: center;
  margin-bottom: 80px;
}
.p-company-philosophy__gray {
  background-color: #f7f7f7;
  padding: 80px;
  border-radius: 30px;
}
.p-company-philosophy__gray-inner {
  display: grid;
  grid-template-columns: 410px 1fr;
  gap: 56px;
  align-items: start;
}
.p-company-philosophy__gray-item {
  display: flex;
  align-items: flex-start; /* 上揃え */
  gap: 57px; /* タイトルと文章の間隔 */
  border-bottom: solid 2px #2222C9;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.p-company-philosophy__gray-item-title {
  font-size: 36px;
  white-space: nowrap;
  color: #2222C9;
}
.p-company-philosophy__gray-item-text {
  font-size: 16px;
  max-width: 300px;
}
.p-company-guidelines {
  position: relative;
}
.p-company-guidelines__bg {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  z-index: 0;
  font-family: "Orbitron", sans-serif;
  font-size: 137px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #f5f5f5;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-align: left;
  padding-left: 0;
}
.p-company-guidelines__bg.is-right {
  text-align: right;
  padding-right: 0;
}
.p-company-guidelines__title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.6;
  color: #2222C9;
  margin: 160px 0 80px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.p-company-guidelines__title__sub {
  font-size: 30px;
  text-align: center;
  margin-bottom: 80px;
}
.p-company-guidelines__gray {
  background-color: #f7f7f7;
  padding: 80px;
  border-radius: 30px;
}
.p-company-guidelines__gray-inner {
  display: grid;
  grid-template-columns: 410px 1fr;
  gap: 56px;
  align-items: start;
}
.p-company-guidelines__gray-item {
  display: flex;
  align-items: flex-start; /* 上揃え */
  gap: 57px; /* タイトルと文章の間隔 */
  border-bottom: solid 2px #2222C9;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.p-company-guidelines__gray-item-title {
  font-size: 36px;
  white-space: nowrap;
  color: #2222C9;
}
.p-company-guidelines__gray-item-text {
  font-size: 16px;
  max-width: 300px;
}
.p-company-guidelines__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.p-company-guidelines__item {
  position: relative;
  display: grid;
  grid-template-columns: 330px 1fr;
  align-items: center;
  -moz-column-gap: 36px;
       column-gap: 36px;
  background: #fff;
  margin-bottom: 36px;
}
.p-company-guidelines__item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 6px;
  background: #2222C9;
}
.p-company-guidelines__item-title {
  position: relative;
  background: #2222C9;
  font-family: "Orbitron", sans-serif;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 24px 18px;
  border-radius: #2222C9;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: lowercase;
}
.p-company-guidelines__item-title::after {
  content: "";
  position: absolute;
  top: 0;
  right: -22px;
  width: 44px;
  height: 100%;
  background: #fff; /* 親背景と同色に */
  transform: skewX(-23deg);
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}
.p-company-guidelines__item-title span {
  font-weight: 900;
}
.p-company-guidelines__item-text {
  font-size: 14px;
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  padding-right: 14px; /* 右バーとの距離 */
}
.p-company-profile {
  position: relative;
}
.p-company-profile__bg {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  z-index: 0;
  font-family: "Orbitron", sans-serif;
  font-size: 137px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #f5f5f5;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-align: left;
  padding-left: 0;
}
.p-company-profile__bg.is-right {
  text-align: right;
  padding-right: 0;
}
.p-company-profile__title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.6;
  color: #2222C9;
  margin: 160px 0 80px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.p-company-profile__title__sub {
  font-size: 30px;
  text-align: center;
  margin-bottom: 80px;
}
.p-company-profile__gray {
  background-color: #f7f7f7;
  padding: 80px;
  border-radius: 30px;
}
.p-company-profile__gray-inner {
  display: grid;
  grid-template-columns: 410px 1fr;
  gap: 56px;
  align-items: start;
}

.p-company-hero.is-fullwidth {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

/* ======================
  Responsive
====================== */
@media screen and (max-width: 768px) {
  .p-company-hero__title {
    padding: 0 24px;
    margin: 80px 0 40px;
  }
  .p-company-hero__text {
    padding: 0 24px;
  }
  .p-company-greeting {
    background: url(../img/bg-company-greeting-sp.png) center/cover no-repeat;
  }
  .p-company-greeting__title {
    margin: 80px 0 40px;
  }
  .p-company-greeting__inner {
    padding: 80px 24px;
  }
  .p-company-greeting__body {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  .p-company-greeting__title {
    font-size: 32px;
  }
  .p-company-greeting__title__sub {
    font-size: 24px;
  }
  .p-company-philosophy__title {
    margin: 80px 0 40px;
  }
  .p-company-philosophy__title__sub {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .p-company-philosophy__gray {
    padding: 24px;
  }
  .p-company-philosophy__gray-inner {
    grid-template-columns: 1fr;
  }
  .p-company-guidelines__title {
    margin: 80px 0 40px;
  }
  .p-company-guidelines__gray {
    padding: 24px;
  }
  .p-company-guidelines__item {
    grid-template-columns: 1fr;
  }
  .p-company-guidelines__item-title::after {
    position: static;
  }
  .p-company-guidelines__item-text {
    font-size: 16px;
    padding: 16px;
  }
  .p-company-profile__title {
    margin: 80px 0 40px;
  }
  .p-company-profile__gray {
    padding: 24px;
  }
}
/* =====================================
  SERVICE
===================================== */
.p-service-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}
.p-service-hero__title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.6;
  color: #2222C9;
  margin: 120px 0 80px;
  position: relative;
  z-index: 1;
}
.p-service-hero__text {
  font-size: 16px;
  line-height: 2;
  color: #0a0a12;
  margin-bottom: 80px;
}
.p-service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../img/bg-service-hero.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.p-service-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
  padding-left: 24px;
  padding-right: 24px;
}
.p-service-hero__gray {
  background-color: #f7f7f7;
  padding: 80px;
  border-radius: 30px;
}
.p-service-link {
  margin-top: 80px;
}
.p-service-link__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.p-service-link__list-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-service-details__inner {
  padding: 80px 0;
  position: relative;
  z-index: 1;
  max-width: 1100px;
  padding-left: 24px;
  padding-right: 24px;
  margin: 0 auto;
  text-align: center;
}
.p-service-details__body {
  display: grid;
  grid-template-columns: 1fr 480px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  align-items: start;
  row-gap: 80px;
}
.p-service-details__image {
  margin-top: 80px;
}
.p-service-details__title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.6;
  color: #2222C9;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  text-align: left;
}
.p-service-details__title__sub {
  font-size: 24px;
  color: #2222C9;
  font-weight: bold;
  font-family: "Orbitron", sans-serif;
  text-align: left;
  margin-bottom: 16px;
  display: block;
}
.p-service-details__title02 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.6;
  color: #2222C9;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  text-align: left;
}
.p-service-details__text {
  font-size: 16px;
  line-height: 2;
  color: #0a0a12;
  text-align: left;
}
.p-service-details__image {
  position: relative;
  border-radius: 16px;
  overflow: visible;
}
.p-service-details__image::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: #2222C9;
  transform: translate(16px, 16px);
  z-index: -10;
}
.p-service-details__gray {
  background-color: #f7f7f7;
  padding: 24px;
  border-radius: 30px;
}
.p-service-details__gray-title {
  font-size: 24px;
  color: #2222C9;
  text-align: center;
  margin-bottom: 40px;
}
.p-service-details__gray-full {
  background-color: #f7f7f7;
  padding: 80px;
  border-radius: 30px;
  margin-bottom: 160px;
}
.p-service-details .service01 {
  margin-bottom: 160px;
}
.p-service-details .service02 {
  margin-bottom: 80px;
}
.p-service-details .service03 {
  margin-bottom: 80px;
}
.p-service-details .service04 {
  margin-bottom: 120px;
}
.p-service-details__3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px; /* 縦横の余白 */
  margin-bottom: 80px;
}
.p-service-details__3col-item {
  display: flex;
  flex-direction: column;
}
.p-service-details__3col-img {
  border-radius: 20px;
  overflow: hidden;
}
.p-service-details__3col-img img {
  width: 100%;
  display: block;
}
.p-service-details__3col-title {
  font-size: 24px;
  font-weight: bold;
  color: #2222C9;
  margin: 20px 0 10px;
  text-align: left;
}
.p-service-details__3col-text {
  line-height: 1.7;
  font-size: 16px;
  text-align: left;
}
.p-service-details__gray-2col {
  background-color: #f7f7f7;
  padding: 40px 80px;
  border-radius: 30px;
  margin-bottom: 80px;
}
.p-service-details__gray-2col-title {
  font-size: 24px;
  font-weight: bold;
  color: #2222C9;
  margin-bottom: 24px;
  text-align: center;
}
.p-service-details__gray-2col-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: start;
}
.p-service-details__gray-2col-grid-item {
  min-width: 0;
}
.p-service-details__gray-2col-grid-item-embed {
  height: 360px; /* ←ここを調整 */
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.p-service-details__gray-2col-grid-item-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.p-service-details__gray-2col-grid-item-embed iframe .tiktok-embed {
  margin: 0 !important;
  max-width: 100% !important;
  height: 100% !important;
}
.p-service-details__gray-2col-grid-item-sns {
  margin-bottom: 24px;
  text-align: left;
}
.p-service-details__banner {
  margin-bottom: 160px;
}

.p-service-hero.is-fullwidth {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

/* ======================
  Responsive
====================== */
@media screen and (max-width: 768px) {
  /* =====================
     HERO
  ===================== */
  .p-service-hero {
    padding-bottom: 40px;
  }
  .p-service-hero__title {
    font-size: 32px;
    margin: 80px 0 40px;
  }
  .p-service-hero__text {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .p-service-hero__gray {
    padding: 40px 24px;
    border-radius: 20px;
  }
  /* =====================
     LINK
  ===================== */
  .p-service-link {
    margin-top: 40px;
  }
  .p-service-link__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  /* =====================
     DETAILS 共通
  ===================== */
  .p-service-details__inner {
    padding: 80px 0 0 0;
  }
  .p-service-details__title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .p-service-details__title__sub {
    font-size: 20px;
    margin-bottom: 0;
  }
  .p-service-details__title02 {
    font-size: 24px;
  }
  .p-service-details__text {
    font-size: 16px;
  }
  .p-service-details__body {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
  .p-service-details__image {
    display: none;
  }
  .p-service-details {
    /* ===== サービスごとのmargin指定（変更反映） ===== */
  }
  .p-service-details__body.service01 {
    margin-bottom: 100px;
  }
  .p-service-details__body.service02 {
    margin-bottom: 40px;
  }
  .p-service-details__body.service03 {
    margin-bottom: 70px;
  }
  .p-service-details__body.service04 {
    margin-bottom: 70px;
  }
  .p-service-details__gray-full {
    padding: 40px 20px;
    border-radius: 20px;
    margin-bottom: 100px;
  }
  .p-service-details__gray-2col {
    padding: 32px 20px;
    margin-bottom: 60px;
  }
  .p-service-details__gray-2col-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .p-service-details__3col {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .p-service-details__banner {
    margin-bottom: 100px;
  }
}
/* =====================================
  features
===================================== */
.p-features-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 160px;
}
.p-features-hero__title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.6;
  color: #2222C9;
  margin: 120px 0 80px;
  position: relative;
  z-index: 1;
}
.p-features-hero__text {
  font-size: 16px;
  line-height: 2;
  color: #0a0a12;
}
.p-features-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../img/bg-features-hero.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.p-features-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.p-features-hero__img {
  position: absolute;
  top: -50px;
  z-index: 0;
}
.p-features-hero__img img {
  width: 100%;
  height: auto;
  display: block;
}
.p-features-hero__img.is-left {
  left: -260px;
  width: 340px;
}
.p-features-hero__img.is-right {
  right: -260px;
  width: 340px;
}
.p-features-curriculum {
  position: relative;
}
.p-features-curriculum__bg {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  z-index: 0;
  font-family: "Orbitron", sans-serif;
  font-size: 137px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #f5f5f5;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-align: left;
  padding-left: 0;
}
.p-features-curriculum__bg.is-right {
  text-align: right;
  padding-right: 0;
}
.p-features-curriculum__title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.6;
  color: #2222C9;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.p-features-curriculum__title__sub {
  font-size: 30px;
  text-align: center;
  margin-bottom: 80px;
}
.p-features-curriculum__gray {
  background-color: #f7f7f7;
  padding: 80px;
  border-radius: 30px;
}
.p-features-curriculum__gray-inner {
  display: grid;
  grid-template-columns: 410px 1fr;
  gap: 56px;
  align-items: start;
}
.p-features-curriculum__gray-item {
  display: flex;
  align-items: flex-start; /* 上揃え */
  gap: 57px; /* タイトルと文章の間隔 */
  border-bottom: solid 2px #2222C9;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.p-features-curriculum__gray-item-title {
  font-size: 36px;
  white-space: nowrap;
  color: #2222C9;
}
.p-features-curriculum__gray-item-text {
  font-size: 16px;
  max-width: 300px;
}
.p-features-skill {
  position: relative;
}
.p-features-skill__bg {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  z-index: 0;
  font-family: "Orbitron", sans-serif;
  font-size: 137px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #f5f5f5;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-align: left;
  padding-left: 0;
}
.p-features-skill__bg.is-right {
  text-align: right;
  padding-right: 0;
}
.p-features-skill__title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.6;
  color: #2222C9;
  margin: 160px 0 80px;
  position: relative;
  z-index: 1;
}
.p-features-skill__text {
  font-size: 16px;
  line-height: 2;
  color: #0a0a12;
}
.p-features-skill__inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.p-features-skill__body {
  display: grid;
  grid-template-columns: 1fr 480px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  align-items: start;
  row-gap: 80px;
}
.p-features-skill__body__image {
  position: relative;
  border-radius: 16px;
  overflow: visible;
}
.p-features-skill__body__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
  color: #2222C9;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  text-align: left;
}
.p-features-skill__body__text {
  font-size: 16px;
  line-height: 2;
  color: #0a0a12;
  text-align: left;
}
.p-features-skill__materials {
  margin-top: 40px;
}
.p-features-basics {
  position: relative;
}
.p-features-basics__bg {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  z-index: -100;
  font-family: "Orbitron", sans-serif;
  font-size: 137px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #f5f5f5;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-align: left;
  padding-left: 0;
}
.p-features-basics__bg.is-right {
  text-align: right;
  padding-right: 0;
}
.p-features-basics__inner {
  max-width: 1100px;
  margin-inline: auto;
}
.p-features-basics__title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.6;
  color: #2222C9;
  margin: 160px 0 80px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.p-features-basics__title__sub {
  font-size: 30px;
  text-align: center;
  margin-bottom: 80px;
}
.p-features-basics__body {
  display: grid;
  grid-template-columns: 1fr 480px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  align-items: start;
  row-gap: 80px;
}
.p-features-basics__body__image {
  position: relative;
  border-radius: 16px;
  overflow: visible;
}
.p-features-basics__body__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
  color: #2222C9;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  text-align: left;
}
.p-features-basics__body__text {
  font-size: 16px;
  line-height: 2;
  color: #0a0a12;
  text-align: left;
}
.p-features-environ {
  position: relative;
  padding-bottom: 160px;
}
.p-features-environ__bg {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  z-index: 0;
  font-family: "Orbitron", sans-serif;
  font-size: 137px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #f5f5f5;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-align: left;
  padding-left: 0;
}
.p-features-environ__bg.is-right {
  text-align: right;
  padding-right: 0;
}
.p-features-environ__title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.6;
  color: #2222C9;
  margin: 160px 0 80px;
  position: relative;
  z-index: 1;
}
.p-features-environ__text {
  font-size: 16px;
  line-height: 2;
  color: #0a0a12;
}
.p-features-environ__inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.p-features-environ__carousel {
  overflow: visible; /* まず検証用 */
  position: relative;
}
.p-features-environ__carousel__title {
  font-size: 22px;
  font-weight: 700;
  color: #2222C9;
  margin: 40px 0;
  position: relative;
  text-align: left;
  border-bottom: 2px solid #2222C9;
}
.p-features-environ__carousel__track {
  overflow-x: auto !important;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  /* スクロールバー消す */
  scrollbar-width: none;
}
.p-features-environ__carousel__track::-webkit-scrollbar {
  display: none;
}
.p-features-environ__carousel__slide {
  flex: 0 0 100%; /* 1枚ずつ表示 */
  scroll-snap-align: center; /* center or start */
}
.p-features-environ__carousel__slide img {
  width: 100%;
  height: auto;
  display: block;
}
.p-features-environ__carousel .carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #1f2bd6;
  background: #fff;
  color: #1f2bd6;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
}
.p-features-environ__carousel .carousel-arrow--prev {
  left: -32px;
}
.p-features-environ__carousel .carousel-arrow--next {
  right: -32px;
}

.p-features-hero.is-fullwidth {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

/* =====================================
  features - curriculum tabs
===================================== */
.p-features-curriculum {
  margin-top: 160px;
  /* ---------- Tabs ---------- */
}
.p-features-curriculum__tabs {
  display: flex;
  position: relative;
  z-index: 2;
}
.p-features-curriculum__tabs {
  display: flex;
  position: relative;
  z-index: 2;
}
.p-features-curriculum__tab {
  flex: 1;
  padding: 20px 0;
  font-size: 20px;
  font-weight: 700;
  background: #fff;
  color: #2222C9;
  border: 1px solid #2222C9;
  border-radius: 24px 24px 0 0;
  cursor: pointer;
  transition: opacity 0.25s ease;
}
.p-features-curriculum__tab:hover {
  background: rgba(34, 34, 201, 0.05);
}
.p-features-curriculum__tab.is-active {
  background: #2222C9;
  color: #fff;
  border-color: #2222C9;
}
.p-features-curriculum__accordion {
  width: 100%;
}
.p-features-curriculum__accordion__item {
  border-bottom: 1px solid #ddd;
}
.p-features-curriculum__accordion__summary {
  cursor: pointer;
  padding: 20px;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
  position: relative;
  background-color: #2222C9;
  color: #fff;
}
.p-features-curriculum__accordion__summary::-webkit-details-marker {
  display: none;
}
.p-features-curriculum__accordion__summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  transition: transform 0.3s ease;
}
.p-features-curriculum {
  /* ＋ → − */
}
.p-features-curriculum__accordion__item[open] .p-features-curriculum__accordion__summary::after {
  content: "−";
}
.p-features-curriculum {
  /* ===== アニメーション本体 ===== */
}
.p-features-curriculum__accordion__content {
  background-color: #f7f7f7;
  /* 閉じた状態 */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  /* paddingは閉じてる時0にする */
  padding: 0 24px;
  transition: max-height 0.4s ease, opacity 0.25s ease, padding 0.25s ease;
}
.p-features-curriculum {
  /* 開いた状態 */
}
.p-features-curriculum__accordion__item[open] .p-features-curriculum__accordion__content {
  max-height: 3160px;
  opacity: 1;
  padding: 24px;
}
.p-features-curriculum {
  /* ---------- Content Box（ふだ） ---------- */
}
.p-features-curriculum__panel {
  background-color: #f7f7f7;
  border-radius: 0 24px 24px 24px;
  padding: 56px 48px;
}
.p-features-curriculum__panel.is-hidden {
  display: none;
}
.p-features-curriculum {
  /* ---------- Inside Layout ---------- */
}
.p-features-curriculum__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.p-features-curriculum__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #2222C9;
  margin-bottom: 16px;
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 2px solid #2222C9;
}
.p-features-curriculum__main {
  display: flex;
  gap: 60px;
}
.p-features-curriculum__left {
  flex: 1;
  min-width: 0;
}
.p-features-curriculum__description {
  font-size: 16px;
  line-height: 2;
  color: #0a0a12;
  margin-bottom: 32px;
}
.p-features-curriculum__image {
  width: 430px;
  flex-shrink: 0;
  min-width: 0;
}
.p-features-curriculum__image img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* ===== esports courses ===== */
.p-esports-course {
  margin-top: 64px;
  display: block;
}
.p-esports-course__title {
  font-size: 20px;
  font-weight: 700;
  color: #2222C9;
  margin-bottom: 8px;
}
.p-esports-course__lead {
  font-size: 16px;
  margin-bottom: 24px;
}

.p-esports-steps {
  display: flex;
  gap: 25px;
  align-items: center;
  list-style: none;
  padding: 32px;
  background: #fff;
  border-radius: 16px;
}
.p-esports-steps li {
  position: relative;
  min-width: 120px;
  height: 88px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #0A0A12;
  line-height: 1.4;
  border-radius: 12px;
  background: #fff;
}
.p-esports-steps li + li::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 9px solid #dadadf;
}
.p-esports-steps {
  /* ===== color variations ===== */
}
.p-esports-steps.is-pink li, .p-esports-steps.is-purple li {
  flex: 1;
  min-width: 0;
}
.p-esports-steps.is-pink li {
  background: #fca3cc;
  border: 2px solid #f064a5;
}
.p-esports-steps.is-blue li {
  background: #9dbbfa;
  border: 2px solid #477ae8;
}
.p-esports-steps.is-purple li {
  background: #e2b8fd;
  border: 2px solid #c77df7;
}

/* ======================
  Responsive
====================== */
@media screen and (max-width: 768px) {
  .p-features-hero {
    padding-bottom: 40px;
  }
  .p-features-hero__title {
    font-size: 28px;
    text-align: left;
    margin: 80px 0 40px;
  }
  .p-features-hero__text {
    text-align: left;
  }
  .p-features-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../img/bg-features-hero.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 0;
  }
  .p-features-hero__inner {
    padding: 24px;
  }
  .p-features-hero__img.is-left {
    display: none;
  }
  .p-features-hero__img.is-right {
    display: none;
  }
  .p-features-curriculum {
    margin-top: 80px;
  }
  .p-features-curriculum__title {
    font-size: 32px;
    margin: 80px 0 40px;
  }
  .p-features-curriculum__panel {
    padding: 24px;
  }
  .p-features-curriculum__main {
    display: grid;
    flex-direction: column;
    gap: 24px;
  }
  .p-features-curriculum__image {
    width: 100%;
    flex-shrink: 1;
  }
  .p-features-skill__title {
    font-size: 32px;
    margin: 80px 0 40px;
  }
  .p-features-skill__body {
    grid-template-columns: 1fr;
  }
  .p-features-basics__title {
    font-size: 32px;
    margin: 80px 0 40px;
  }
  .p-features-basics__body {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  .p-features-environ {
    position: relative;
    padding-bottom: 80px;
  }
  .p-features-environ__title {
    font-size: 32px;
    margin: 80px 0 40px;
  }
  .p-features-environ__text {
    text-align: left;
  }
  .p-features-environ__inner {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
  }
  .p-features-environ__carousel .carousel-arrow {
    width: 56px;
    height: 56px;
  }
  .p-features-environ__carousel .carousel-arrow--prev {
    left: -16px;
  }
  .p-features-environ__carousel .carousel-arrow--next {
    right: -16px;
  }
  .p-esports-steps {
    display: grid;
  }
  .p-esports-steps li + li::before {
    content: "";
    position: absolute;
    left: 80px;
    top: -12%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 9px solid #dadadf;
  }
  .p-esports-course {
    margin-top: 24px;
  }
}
/* =====================================
  Recruit Hero
===================================== */
.p-recruit-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 160px;
}
.p-recruit-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/bg-recruit-hero.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.p-recruit-hero.is-fullwidth {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.p-recruit-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.p-recruit-hero__title {
  position: relative;
  z-index: 1;
  margin: 120px 0 80px;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.6;
  color: #2222C9;
}
.p-recruit-hero__title::before {
  content: "Reason";
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Orbitron", sans-serif;
  font-size: 180px;
  font-weight: 700;
  color: rgba(34, 34, 201, 0.09);
  white-space: nowrap;
  z-index: -1;
  pointer-events: none;
}
.p-recruit-hero__text {
  font-size: 16px;
  line-height: 2;
  color: #0A0A12;
}
.p-recruit-hero__text p {
  margin-bottom: 20px;
}
.p-recruit-hero__text p:last-child {
  margin-bottom: 0;
}
.p-recruit-hero__images {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.p-recruit-hero__images img {
  position: absolute;
  border-radius: 24px;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-recruit-hero__images::before {
  content: "";
  position: absolute;
  bottom: -48px;
  left: -200px;
  width: 260px;
  height: 290px;
  background: url("../img/recruit-hero-left.png") center/cover no-repeat;
  border-radius: 24px;
}
.p-recruit-hero__images::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -200px;
  width: 245px;
  height: 290px;
  background: url("../img/recruit-hero-right-top.png") center/cover no-repeat;
  border-radius: 24px;
}
.p-recruit-hero__images-bottom {
  position: absolute;
  right: -120px;
  bottom: -30px;
  width: 210px;
  height: 230px;
  background: url("../img/recruit-hero-right-bottom.png") center/cover no-repeat;
  border-radius: 24px;
  z-index: -1;
}

/* =====================================
  Recruit Jobs
===================================== */
.p-recruit-jobs {
  position: relative;
}
.p-recruit-jobs__bg {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  z-index: 0;
  font-family: "Orbitron", sans-serif;
  font-size: 137px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #f5f5f5;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-align: left;
  padding-left: 0;
}
.p-recruit-jobs__bg.is-right {
  text-align: right;
  padding-right: 0;
}
.p-recruit-jobs__link {
  display: flex;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.p-recruit-jobs__list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.p-recruit-jobs__item {
  width: 960px;
  margin-inline: auto;
  display: flex;
  align-items: stretch;
  background: #f3f5fb;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.p-recruit-jobs__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}
.p-recruit-jobs__image {
  width: 50%;
  flex-shrink: 0;
}
.p-recruit-jobs__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-recruit-jobs__content {
  width: 50%;
  padding: 65px 40px;
}
.p-recruit-jobs__name {
  font-size: 20px;
  font-weight: 700;
  color: #2222C9;
  margin-bottom: 16px;
}
.p-recruit-jobs__desc {
  font-size: 16px;
  line-height: 1.8;
}
.p-recruit-jobs__icon {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2222C9;
}
.p-recruit-jobs__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #fff;
}

.c-section-title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.6;
  color: #2222C9;
  margin: 160px 0 80px;
  position: relative;
  z-index: 1;
  text-align: center;
}

/* =====================================
  Recruit Flow
===================================== */
.p-recruit-flow {
  margin-top: 160px;
  position: relative;
}
.p-recruit-flow__image {
  margin-top: 80px;
  margin-bottom: 160px;
  text-align: center;
}
.p-recruit-flow__bg {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  z-index: 0;
  font-family: "Orbitron", sans-serif;
  font-size: 137px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #f5f5f5;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-align: left;
  padding-left: 0;
}
.p-recruit-flow__bg.is-right {
  text-align: right;
  padding-right: 0;
}
.p-recruit-flow__content {
  margin-bottom: 40px;
}
.p-recruit-flow__title {
  font-size: 24px;
  font-weight: bold;
  color: #2222c9;
  margin-bottom: 24px;
  text-align: left;
}
.p-recruit-flow__gray {
  background-color: #f7f7f7;
  padding: 80px;
  border-radius: 16px;
}
.p-recruit-flow__gray img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* ======================
  FAQ
====================== */
.p-recruit-faq {
  margin: 160px 0;
  position: relative;
}
.p-recruit-faq__bg {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  z-index: 0;
  font-family: "Orbitron", sans-serif;
  font-size: 137px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #f5f5f5;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-align: left;
  padding-left: 0;
}
.p-recruit-faq__bg.is-right {
  text-align: right;
  padding-right: 0;
}

.p-faq_accordion {
  margin-bottom: 40px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.p-faq_accordion[open] .p-faq_accordion-q::after {
  transform: translate(50%, -50%) scaleY(0);
  opacity: 0;
}
.p-faq_accordion {
  /* ---------- Q ---------- */
}
.p-faq_accordion-q {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 40px 56px 40px 90px;
  font-size: 16px;
  line-height: 1.6;
  cursor: pointer;
}
.p-faq_accordion-q-head {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 55px;
  height: 55px;
  line-height: 55px;
  font-size: 26px;
  background: #2222C9;
  color: #fff;
  border-radius: 50%;
  text-align: center;
}
.p-faq_accordion-q {
  /* ＋／− 共通 */
}
.p-faq_accordion-q::before, .p-faq_accordion-q::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translate(50%, -50%);
  background: #2222C9;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.p-faq_accordion-q {
  /* 横線（−） */
}
.p-faq_accordion-q::before {
  width: 16px;
  height: 2px;
}
.p-faq_accordion-q {
  /* 縦線（｜） */
}
.p-faq_accordion-q::after {
  width: 2px;
  height: 16px;
}
.p-faq_accordion {
  /* ---------- divider ---------- */
}
.p-faq_accordion-divider {
  display: block;
  margin: 0 56px 0 72px;
  height: 2px;
  background-image: repeating-linear-gradient(to right, #2222C9, #2222C9 2px, transparent 2px, transparent 8px);
}
.p-faq_accordion {
  /* ---------- A ---------- */
}
.p-faq_accordion-a {
  overflow: hidden;
  will-change: height;
}
.p-faq_accordion-a-inner {
  display: flex;
  gap: 20px;
  padding: 20px 56px 40px 20px;
  will-change: transform, opacity;
}
.p-faq_accordion-a-head {
  width: 55px;
  height: 55px;
  line-height: 50px;
  font-size: 26px;
  border: 2px solid #2222C9;
  color: #2222C9;
  border-radius: 50%;
  text-align: center;
  flex-shrink: 0;
}
.p-faq_accordion-a-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

/* =====================================
  Recruit Person Hero（Engineer / Designer 共通）
===================================== */
.p-recruit-engineer,
.p-recruit-designer {
  position: relative;
  overflow: hidden;
  padding-bottom: 160px;
}
.p-recruit-engineer::before,
.p-recruit-designer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/bg-recruit-person.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.p-recruit-engineer.is-fullwidth,
.p-recruit-designer.is-fullwidth {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.p-recruit-engineer .l-inner,
.p-recruit-designer .l-inner {
  position: relative;
  z-index: 1;
}
.p-recruit-engineer__wrap,
.p-recruit-designer__wrap {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  margin-top: 160px;
}
.p-recruit-engineer__content,
.p-recruit-designer__content {
  width: 45%;
}
.p-recruit-engineer__catch,
.p-recruit-designer__catch {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 32px;
  color: #fff;
}
.p-recruit-engineer__catch span,
.p-recruit-designer__catch span {
  display: inline-block;
  background: #2222C9;
  padding: 10px 20px;
  line-height: 1.4;
}
.p-recruit-engineer__catch span:not(:last-child),
.p-recruit-designer__catch span:not(:last-child) {
  margin-bottom: 8px;
}
.p-recruit-engineer__text,
.p-recruit-designer__text {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 40px;
}
.p-recruit-engineer__text p:not(:last-child),
.p-recruit-designer__text p:not(:last-child) {
  margin-bottom: 16px;
}
.p-recruit-engineer__button,
.p-recruit-designer__button {
  margin-top: 8px;
}
.p-recruit-engineer__image,
.p-recruit-designer__image {
  width: 60%;
}
.p-recruit-engineer__image img,
.p-recruit-designer__image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
}
.p-recruit-engineer__caption,
.p-recruit-designer__caption {
  margin-top: 16px;
  font-size: 16px;
  color: #2222C9;
  text-align: right;
  opacity: 0.85;
}

/* =====================================
  Recruit Curriculum Career path（Engineer / Designer 共通）
===================================== */
.p-recruit-curriculum,
.p-recruit-careerpath,
.p-recruit-schedule,
.p-recruit-recruitment {
  margin-top: 160px;
}
.p-recruit-curriculum .l-inner,
.p-recruit-careerpath .l-inner,
.p-recruit-schedule .l-inner,
.p-recruit-recruitment .l-inner {
  position: relative;
}
.p-recruit-curriculum,
.p-recruit-careerpath,
.p-recruit-schedule,
.p-recruit-recruitment {
  /* CAREER PATH ラベル */
}
.p-recruit-curriculum__label,
.p-recruit-careerpath__label,
.p-recruit-schedule__label,
.p-recruit-recruitment__label {
  font-family: "Orbitron", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #2222C9;
  margin-bottom: 12px;
}
.p-recruit-curriculum,
.p-recruit-careerpath,
.p-recruit-schedule,
.p-recruit-recruitment {
  /* セクションタイトル */
}
.p-recruit-curriculum__title,
.p-recruit-careerpath__title,
.p-recruit-schedule__title,
.p-recruit-recruitment__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
}
.p-recruit-curriculum,
.p-recruit-careerpath,
.p-recruit-schedule,
.p-recruit-recruitment {
  /* 背景ボックス */
}
.p-recruit-curriculum__box,
.p-recruit-careerpath__box,
.p-recruit-schedule__box,
.p-recruit-recruitment__box {
  position: relative;
  background: #f7f7f7;
  border-radius: 28px;
  padding: 40px;
  min-height: 500px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-recruit-curriculum,
.p-recruit-careerpath,
.p-recruit-schedule,
.p-recruit-recruitment {
  /* カリキュラム画像 */
}
.p-recruit-curriculum__image,
.p-recruit-careerpath__image,
.p-recruit-schedule__image,
.p-recruit-recruitment__image {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =====================================
  Recruit Engineer Interview
===================================== */
.p-recruit-engineer-interview {
  padding-top: 80px;
}
.p-recruit-engineer-interview .p-recruit-engineer__wrap {
  margin-top: 0;
}
.p-recruit-engineer-interview .p-recruit-engineer__image img {
  width: 100%;
  display: block;
  border-radius: 0;
}
.p-recruit-engineer-interview .p-recruit-engineer__catch {
  color: #2222C9;
}
.p-recruit-engineer-interview .p-recruit-engineer__catch span {
  background: none;
  padding: 0;
}

.p-recruit-designer-interview {
  padding-top: 80px;
}
.p-recruit-designer-interview .p-recruit-designer__wrap {
  margin-top: 0;
}

/* =====================================
  Recruit Schedule Timeline
===================================== */
.p-recruit-schedule__bg {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
  background-color: #f7f7f7;
  background-image: linear-gradient(#eeeeee 1px, transparent 1px), linear-gradient(90deg, #eeeeee 1px, transparent 1px);
  background-size: 40px 40px;
}
.p-recruit-schedule__list {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding-left: 40px;
}
.p-recruit-schedule__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 80px;
  padding-bottom: 40px;
  /* 2時間空く */
}
.p-recruit-schedule__item[data-gap="2"] {
  padding-bottom: 96px;
}
.p-recruit-schedule__item {
  /* 3時間空く */
}
.p-recruit-schedule__item[data-gap="3"] {
  padding-bottom: 144px;
}
.p-recruit-schedule__item {
  /* 最後だけ余白なし */
}
.p-recruit-schedule__item:last-child {
  padding-bottom: 0;
}
.p-recruit-schedule__item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 95px;
  width: 2px;
  height: 100%;
  background-color: #85a5d2;
}
.p-recruit-schedule__item:last-child::before {
  display: none;
}
.p-recruit-schedule {
  /* 時間 */
}
.p-recruit-schedule__time {
  flex-shrink: 0;
  font-family: "Orbitron", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #2222C9;
  letter-spacing: 0.05em;
}
.p-recruit-schedule {
  /* ドット */
}
.p-recruit-schedule__dot {
  position: absolute;
  left: 88px;
  top: 4px;
  width: 16px;
  height: 16px;
  background-color: #2222C9;
  border-radius: 50%;
  z-index: 2;
}
.p-recruit-schedule__dot::after {
  content: "";
  position: absolute;
  inset: 5px;
  background-color: #fff;
  border-radius: 50%;
}
.p-recruit-schedule {
  /* コンテンツ */
}
.p-recruit-schedule__content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 640px;
}
.p-recruit-schedule__name {
  width: 240px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  flex-shrink: 0;
}
.p-recruit-schedule__text {
  font-size: 16px;
  font-weight: 400;
  color: #0A0A12;
}

/* =====================================
  Recruit Recruitment
===================================== */
.p-recruit-recruitment__head {
  margin-bottom: 48px;
}
.p-recruit-recruitment {
  /* ---------- Tabs ---------- */
}
.p-recruit-recruitment__tabs {
  display: flex;
  position: relative;
  z-index: 2;
}
.p-recruit-recruitment__tab {
  flex: 1;
  padding: 20px 0;
  font-size: 20px;
  font-weight: 700;
  background: #fff;
  color: #2222C9;
  border: 1px solid #2222C9;
  border-radius: 24px 24px 0 0;
  cursor: pointer;
  transition: opacity 0.25s ease;
}
.p-recruit-recruitment__tab:hover {
  background: rgba(34, 34, 201, 0.05);
}
.p-recruit-recruitment__tab.is-active {
  background: #2222C9;
  color: #fff;
  border-color: #2222C9;
}
.p-recruit-recruitment {
  /* ---------- Content Box ---------- */
}
.p-recruit-recruitment__gray {
  background-color: #f7f7f7;
  border-radius: 0 0 24px 24px;
  padding: 56px 48px;
  margin-bottom: 160px;
}
.p-recruit-recruitment__gray.is-hidden {
  display: none;
}

#recruit-curriculum-engineer,
#recruit-curriculum-designer {
  scroll-margin-top: 120px;
}

.p-recruit-entry-btn {
  margin: 82px 0 40px;
  text-align: center;
}
.p-recruit-entry-btn .c-btn--blue {
  min-width: 300px;
  padding: 18px 87px;
  font-size: 16px;
}

/* ======================
  Responsive
====================== */
@media screen and (max-width: 768px) {
  .c-section-title {
    margin: 80px 0 40px;
  }
  .p-recruit-hero {
    padding-bottom: 80px;
  }
  .p-recruit-hero__title {
    font-size: 28px;
    margin: 80px 0 40px;
  }
  .p-recruit-hero__title::before {
    font-size: 80px;
    top: -80px;
  }
  .p-recruit-hero__text {
    font-size: 16px;
    line-height: 1.8;
  }
  .p-recruit-hero__text p {
    margin-bottom: 16px;
  }
  .p-recruit-hero__images, .p-recruit-hero__images-bottom {
    display: none;
  }
  .p-recruit-hero__inner {
    padding: 0 24px;
  }
  .p-recruit-jobs__bg {
    font-size: 80px;
  }
  .p-recruit-jobs__list {
    gap: 40px;
  }
  .p-recruit-jobs__item {
    flex-direction: column;
    width: 100%;
    margin: 0;
    border-radius: 20px;
  }
  .p-recruit-jobs__item:hover {
    transform: none;
    box-shadow: none;
  }
  .p-recruit-jobs__link {
    display: block;
    width: 100%;
    text-decoration: none;
    color: inherit;
  }
  .p-recruit-jobs__image {
    width: 100%;
    height: auto;
  }
  .p-recruit-jobs__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px 20px 0 0;
  }
  .p-recruit-jobs__content {
    width: 100%;
    padding: 24px;
    display: block;
  }
  .p-recruit-jobs__name {
    font-size: 18px;
    margin-bottom: 12px;
    display: block;
  }
  .p-recruit-jobs__desc {
    font-size: 16px;
    line-height: 1.6;
    display: block;
  }
  .p-recruit-jobs__icon {
    right: 16px;
    bottom: 16px;
    width: 28px;
    height: 28px;
  }
  .p-recruit-jobs__icon::before {
    border-width: 5px 0 5px 7px;
  }
  .p-recruit-flow {
    margin-top: 80px;
  }
  .p-recruit-flow__bg {
    font-size: 80px;
  }
  .p-recruit-flow__content {
    margin-bottom: 32px;
  }
  .p-recruit-flow__gray {
    padding: 32px;
  }
  .p-recruit-flow__title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .p-recruit-faq {
    margin: 80px 0;
  }
  .p-recruit-faq__bg {
    font-size: 80px;
  }
  .p-recruit-faq__list dl {
    margin-bottom: 24px;
  }
  .p-recruit-faq .p-faq_accordion-q {
    padding: 24px 40px 24px 70px;
    font-size: 16px;
  }
  .p-recruit-faq .p-faq_accordion-q-head {
    width: 45px;
    height: 45px;
    font-size: 22px;
    line-height: 45px;
  }
  .p-recruit-faq .p-faq_accordion-divider {
    margin: 0 40px 0 56px;
  }
  .p-recruit-faq .p-faq_accordion-a-inner {
    padding: 16px 40px 24px 16px;
    gap: 16px;
  }
  .p-recruit-faq .p-faq_accordion-a-head {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 22px;
  }
  .p-recruit-faq .p-faq_accordion-a-text {
    font-size: 14px;
  }
  .p-recruit-engineer,
  .p-recruit-designer {
    padding-bottom: 80px;
  }
  .p-recruit-engineer__wrap,
  .p-recruit-designer__wrap {
    flex-direction: column;
    gap: 32px;
    margin-top: 100px;
  }
  .p-recruit-engineer__content,
  .p-recruit-designer__content {
    width: 100%;
    order: 2;
  }
  .p-recruit-engineer__image,
  .p-recruit-designer__image {
    width: 100%;
    order: 1;
  }
  .p-recruit-engineer__catch,
  .p-recruit-designer__catch {
    font-size: 22px;
    line-height: 1.6;
  }
  .p-recruit-engineer__catch span,
  .p-recruit-designer__catch span {
    padding: 8px 14px;
  }
  .p-recruit-engineer__text,
  .p-recruit-designer__text {
    font-size: 14px;
    line-height: 1.9;
  }
  .p-recruit-curriculum,
  .p-recruit-careerpath {
    margin-top: 60px;
  }
  .p-recruit-curriculum__title,
  .p-recruit-careerpath__title {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .p-recruit-curriculum__box,
  .p-recruit-careerpath__box {
    padding: 24px;
    min-height: auto;
    border-radius: 20px;
  }
  .p-recruit-engineer-interview,
  .p-recruit-designer-interview {
    padding: 0;
  }
  .p-recruit-engineer-interview .p-recruit-engineer__wrap,
  .p-recruit-engineer-interview .p-recruit-designer__wrap,
  .p-recruit-designer-interview .p-recruit-engineer__wrap,
  .p-recruit-designer-interview .p-recruit-designer__wrap {
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
  }
  .p-recruit-engineer-interview .p-recruit-engineer__content,
  .p-recruit-engineer-interview .p-recruit-designer__content,
  .p-recruit-engineer-interview .p-recruit-engineer__image,
  .p-recruit-engineer-interview .p-recruit-designer__image,
  .p-recruit-designer-interview .p-recruit-engineer__content,
  .p-recruit-designer-interview .p-recruit-designer__content,
  .p-recruit-designer-interview .p-recruit-engineer__image,
  .p-recruit-designer-interview .p-recruit-designer__image {
    width: 100%;
  }
  .p-recruit-schedule {
    margin-top: 80px;
  }
  .p-recruit-schedule__list {
    padding: 0 24px;
  }
  .p-recruit-schedule__item {
    gap: 24px;
    padding-bottom: 32px;
    flex-direction: column;
  }
  .p-recruit-schedule__item[data-gap="2"], .p-recruit-schedule__item[data-gap="3"] {
    padding-bottom: 32px;
  }
  .p-recruit-schedule__item::before {
    left: 20px;
  }
  .p-recruit-schedule__dot {
    left: 13px;
  }
  .p-recruit-schedule__content {
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
  }
  .p-recruit-schedule__name {
    width: 100%;
    font-size: 16px;
    padding-left: 40px;
  }
  .p-recruit-schedule__text {
    font-size: 14px;
    padding-left: 40px;
  }
  .p-recruit-schedule__time {
    font-size: 16px;
    padding-left: 40px;
  }
  .p-recruit-recruitment {
    margin-top: 80px;
  }
  .p-recruit-recruitment__tabs {
    display: flex;
  }
  .p-recruit-recruitment__tab {
    font-size: 16px;
    padding: 14px 0;
    flex: 1;
    padding: 18px 0;
    font-size: 18px;
    font-weight: 700;
    border-radius: 20px 20px 0 0;
  }
  .p-recruit-recruitment__gray {
    padding: 32px 20px;
    margin-bottom: 100px;
  }
  .c-table {
    width: 100%;
    border-collapse: collapse;
  }
  .c-table__tr {
    display: block;
    margin-bottom: 32px;
  }
  .c-table__th,
  .c-table__td {
    display: block;
    width: 100%;
  }
  .c-table__th {
    font-weight: 700;
    margin-bottom: 8px;
  }
  .c-table__td {
    font-size: 14px;
    line-height: 1.8;
    border-bottom: none;
  }
}
/* ===========================
  PRIVACY POLICY
=========================== */
#privacy-policy,
#privacy-management {
  padding: 80px 0;
  color: #0A0A12;
}
#privacy-policy .p-privacy_inner,
#privacy-management .p-privacy_inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
#privacy-policy,
#privacy-management {
  /* ヘッダーテキスト */
}
#privacy-policy .p-privacy-policy_head_text,
#privacy-management .p-privacy-policy_head_text {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 60px;
  opacity: 0.9;
}
#privacy-policy,
#privacy-management {
  /* 各ブロック */
}
#privacy-policy .p-privacy-policy_text_wrapper,
#privacy-management .p-privacy-policy_text_wrapper {
  margin-bottom: 56px;
}
#privacy-policy .p-privacy-policy_text_wrapper:last-child,
#privacy-management .p-privacy-policy_text_wrapper:last-child {
  margin-bottom: 0;
}
#privacy-policy,
#privacy-management {
  /* タイトル */
}
#privacy-policy .p-privacy-policy_title,
#privacy-management .p-privacy-policy_title {
  font-size: 24px;
  font-weight: 600;
  color: #2222C9;
  margin-bottom: 20px;
  line-height: 1.4;
}
#privacy-policy,
#privacy-management {
  /* 本文 */
}
#privacy-policy .p-privacy-policy_text,
#privacy-management .p-privacy-policy_text {
  font-size: 16px;
  line-height: 2;
  opacity: 0.9;
}
#privacy-policy .p-privacy-policy_text a,
#privacy-management .p-privacy-policy_text a {
  color: #3498ff;
  text-decoration: underline;
}
#privacy-policy .p-privacy-policy_text a:hover,
#privacy-management .p-privacy-policy_text a:hover {
  opacity: 0.7;
}

/* ======================
  Responsive
====================== */
/* =====================================
  CONTACT
===================================== */
/* =========================
  CF7 共通（フォーム部品の見た目）
========================= */
.wpcf7 {
  /* input / textarea / select 共通 */
}
.wpcf7 input:not([type=submit]):not([type=checkbox]):not([type=radio]),
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: #f5f5f5;
  color: #707171;
  border: 1px solid transparent;
  border-radius: 6px;
}
.wpcf7 input:not([type=submit]):not([type=checkbox]):not([type=radio])::-moz-placeholder, .wpcf7 textarea::-moz-placeholder, .wpcf7 select::-moz-placeholder {
  font-size: 14px;
  color: #999;
}
.wpcf7 input:not([type=submit]):not([type=checkbox]):not([type=radio])::placeholder,
.wpcf7 textarea::placeholder,
.wpcf7 select::placeholder {
  font-size: 14px;
  color: #999;
}
.wpcf7 input:not([type=submit]):not([type=checkbox]):not([type=radio]) {
  padding: 0.5rem 1rem;
}
.wpcf7 textarea {
  padding: 0.5rem 1rem;
  resize: vertical;
  min-height: 160px;
}
.wpcf7 textarea::-moz-placeholder {
  font-size: 15px;
}
.wpcf7 textarea::placeholder {
  font-size: 15px;
}
.wpcf7 select {
  height: 48px;
  line-height: 1.2;
  padding: 0 2.5rem 0 1rem;
  font-size: 16px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}
.wpcf7 .wpcf7-not-valid-tip {
  position: static !important;
  display: block;
  margin-top: 6px;
  background: transparent !important;
  padding: 0 !important;
  line-height: 1.4;
  font-size: 13px;
  min-height: 1.4em;
}

/* =========================
  セクション共通
========================= */
#contact,
#entry {
  padding: 80px 0;
  color: #0A0A12;
}

/* =========================
  CONTACT レイアウト（#contact）
========================= */
#contact .p-contact_content_list_item {
  display: grid;
  grid-template-columns: 260px 1fr;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  align-items: start;
  margin-bottom: 2rem;
}
#contact .p-contact_text {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  font-size: 18px !important;
  font-weight: bold;
  line-height: 1.5 !important;
  margin: 0 !important;
}
#contact .p-contact_sub_text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2222C9;
  color: #fff;
  border-radius: 5px;
  font-size: 13px;
  padding: 0.3rem 0.9rem;
  min-width: 44px;
  line-height: 1;
  margin-left: 0 !important;
}
#contact .p-contact_sub_text.any {
  background: #b4b7bc;
}
#contact .p-contact_input {
  width: 100%;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 16px;
  color: #707171 !important;
}
#contact {
  /* 年齢など：入力 + 単位 */
}
#contact .p-contact_input--unit {
  display: flex;
  align-items: center;
  gap: 8px;
}
#contact .p-contact_input--unit .wpcf7-form-control {
  flex: 1;
  min-width: 0;
}

/* =========================
  CONTACT 外枠（見た目）
========================= */
.p-contact {
  background: #fff;
  border-radius: 30px;
  padding: 3rem 5rem;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}
.p-contact_inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-contact_bg {
  background: #fff;
}
.p-contact_head {
  text-align: center;
  margin-bottom: 3rem;
}
.p-contact_head_text {
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  text-align: center;
}
.p-contact_content_list {
  width: 100%;
  background: #fff;
  border-radius: 30px;
  padding: 3rem 5rem;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}
.p-contact_content_footer {
  text-align: center;
  padding: 80px 0;
}
.p-contact_text_sub {
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
}
.p-contact_btn {
  margin-top: 40px;
}
.p-contact_link {
  width: 220px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

/* =========================
  ENTRY（今回は触らない最小限）
========================= */
.p-entry {
  background: #fff;
  border-radius: 30px;
  padding: 3rem 5rem;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}
.p-entry_inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-entry_bg {
  background: #fff;
}
.p-entry_head {
  text-align: center;
  margin-bottom: 3rem;
}
.p-entry_head_text {
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  text-align: center;
}

#contact .p-contact_btn {
  display: flex;
  justify-content: center;
  width: 240px;
  gap: 0;
  text-align: center;
  margin: 40px auto 0;
}
#contact .p-contact_btn .contact_submit {
  margin: 0 20px;
}

.wpcf7-spinner {
  width: 0;
  margin: 0;
}

/* =========================
  CONTACT Responsive
========================= */
@media screen and (max-width: 768px) {
  #contact .p-contact_content_list_item {
    grid-template-columns: 1fr;
    row-gap: 12px;
    margin-bottom: 1.5rem;
  }
  #contact .p-contact_text {
    font-size: 16px !important;
  }
  .p-contact {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }
  .p-contact_content_list {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }
  .p-contact_content_footer {
    padding: 40px 0;
  }
  .p-contact_text_sub {
    font-size: 14px;
    line-height: 1.8;
  }
}
/* =====================================
  CTA Section
===================================== */
.p-sub-mv__inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.c-cta {
  width: 100%;
  padding: 80px 0;
  background-image: url("../img/cta-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.c-cta__inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.c-cta__content {
  position: relative;
  background-image: url("../img/cta-card.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  padding: 72px 40px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.c-cta__en {
  font-family: "Orbitron", sans-serif;
  font-size: 66px;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.c-cta__text {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 700;
  margin-bottom: 32px;
}
.c-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background-color: #2222C9;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}
.c-cta__note {
  margin-top: 16px;
  font-size: 12px;
  opacity: 0.85;
  font-weight: 700;
}

.c-cta__btn-icon {
  display: flex;
  align-items: center;
}
.c-cta__btn-icon svg {
  width: 24px;
  height: auto;
  display: block;
}

.c-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 5px 40px;
  background: linear-gradient(90deg, #2222C9);
  color: #fff;
}

/* ======================
  Responsive
====================== */
@media screen and (max-width: 768px) {
  .c-cta {
    padding: 60px 0;
  }
  .c-cta__content {
    padding: 48px 24px;
    border-radius: 24px;
    background-position: right;
  }
  .c-cta__en {
    font-size: 40px;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
  }
  .c-cta__text {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 28px;
  }
  .c-cta__btn {
    width: 100%;
    max-width: 320px;
    height: 56px;
    padding: 0 24px;
    font-size: 15px;
  }
  .c-cta__note {
    margin-top: 18px;
    font-size: 14px;
  }
}