/* ============================================================
   PRIVACY POLICY PAGE
============================================================ */

#rspp-page {
  --rspp-bg: #020912;
  --rspp-bg-deep: #01060c;

  --rspp-panel: rgba(3, 22, 34, 0.84);
  --rspp-panel-light: rgba(5, 35, 50, 0.72);

  --rspp-cyan: #24dff2;
  --rspp-cyan-soft: rgba(36, 223, 242, 0.16);
  --rspp-cyan-line: rgba(36, 223, 242, 0.34);

  --rspp-text: #f2f8fb;
  --rspp-text-soft: #b4c7d0;
  --rspp-text-dim: #7f98a5;

  --rspp-warning: #f3c867;
  --rspp-container: 1180px;

  position: relative;
  overflow: hidden;

  color: var(--rspp-text);

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(0, 159, 214, 0.10),
      transparent 32%
    ),
    linear-gradient(
      180deg,
      var(--rspp-bg) 0%,
      var(--rspp-bg-deep) 100%
    );

  font-family:
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    Meiryo,
    sans-serif;
}

#rspp-page,
#rspp-page * {
  box-sizing: border-box;
}

#rspp-page a {
  color: inherit;
}

.rspp-container {
  width: min(
    calc(100% - 48px),
    var(--rspp-container)
  );

  margin-inline: auto;
}


/* ============================================================
   HERO
============================================================ */

.rspp-hero {
  position: relative;
  min-height: 430px;

  display: flex;
  align-items: center;

  padding: 150px 0 80px;

  overflow: hidden;
  isolation: isolate;

  border-bottom: 1px solid rgba(36, 223, 242, 0.18);

  background:
    linear-gradient(
      180deg,
      rgba(0, 22, 35, 0.92),
      rgba(1, 9, 17, 0.98)
    );
}

.rspp-hero__grid {
  position: absolute;
  inset: 0;
  z-index: -2;

  opacity: 0.18;

  background-image:
    linear-gradient(
      rgba(36, 223, 242, 0.12) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(36, 223, 242, 0.12) 1px,
      transparent 1px
    );

  background-size: 72px 72px;

  mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent
    );
}

.rspp-hero__glow {
  position: absolute;
  top: -260px;
  left: 50%;
  z-index: -1;

  width: 760px;
  height: 760px;

  transform: translateX(-50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(0, 201, 255, 0.14),
      transparent 67%
    );

  filter: blur(15px);
}

.rspp-hero__inner {
  position: relative;
  padding-left: 32px;
}

.rspp-hero__inner::before {
  content: "";

  position: absolute;
  top: -15px;
  bottom: -15px;
  left: 0;

  width: 1px;

  background:
    linear-gradient(
      180deg,
      transparent,
      var(--rspp-cyan),
      transparent
    );

  box-shadow:
    0 0 12px rgba(36, 223, 242, 0.55);
}

.rspp-kicker {
  margin: 0 0 18px;

  color: var(--rspp-cyan);

  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.rspp-hero__title {
  margin: 0;

  font-size: clamp(38px, 5vw, 66px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.rspp-hero__lead {
  margin: 18px 0 0;

  color: #dfeef4;

  font-size: 21px;
  font-weight: 700;
}

.rspp-hero__description {
  max-width: 760px;

  margin: 25px 0 0;

  color: var(--rspp-text-soft);

  font-size: 14px;
  line-height: 2;
}


/* ============================================================
   CONTENT
============================================================ */

.rspp-content {
  position: relative;

  padding: 80px 0 120px;
}

.rspp-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: start;
  gap: 56px;
}


/* ============================================================
   TABLE OF CONTENTS
============================================================ */

.rspp-toc {
  position: sticky;
  top: 125px;
}

.rspp-toc__inner {
  padding: 24px 22px;

  border: 1px solid var(--rspp-cyan-line);

  background:
    linear-gradient(
      145deg,
      rgba(3, 31, 45, 0.82),
      rgba(1, 14, 23, 0.9)
    );

  box-shadow:
    inset 0 0 26px rgba(0, 150, 195, 0.05);
}

.rspp-toc__label {
  margin: 0 0 20px;

  color: var(--rspp-cyan);

  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.rspp-toc__list {
  display: grid;
  gap: 0;

  margin: 0;
  padding: 0;

  list-style: none;
}

.rspp-toc__list li {
  border-top:
    1px solid rgba(36, 223, 242, 0.10);
}

.rspp-toc__list li:last-child {
  border-bottom:
    1px solid rgba(36, 223, 242, 0.10);
}

.rspp-toc__list a {
  position: relative;

  display: block;

  padding: 13px 6px 13px 18px;

  color: var(--rspp-text-soft);

  font-size: 12px;
  line-height: 1.6;

  text-decoration: none;

  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}

.rspp-toc__list a::before {
  content: "";

  position: absolute;
  top: 50%;
  left: 2px;

  width: 6px;
  height: 1px;

  background: var(--rspp-cyan);

  transform: translateY(-50%);
}

.rspp-toc__list a:hover {
  padding-left: 23px;
  color: var(--rspp-cyan);
}


/* ============================================================
   DOCUMENT
============================================================ */

.rspp-document {
  min-width: 0;
}

.rspp-document__intro {
  margin-bottom: 36px;
  padding: 32px 34px;

  border: 1px solid var(--rspp-cyan-line);

  background:
    linear-gradient(
      145deg,
      rgba(3, 29, 42, 0.86),
      rgba(1, 15, 24, 0.92)
    );
}

.rspp-document__intro p {
  margin: 0;

  color: var(--rspp-text-soft);

  font-size: 14px;
  line-height: 2.05;
}

.rspp-document__intro p + p {
  margin-top: 18px;
}

.rspp-provisional-note {
  padding: 16px 18px;

  border-left:
    3px solid var(--rspp-warning);

  color: #eadfbf !important;

  background:
    rgba(134, 96, 24, 0.13);
}


/* ============================================================
   POLICY SECTION
============================================================ */

.rspp-policy-section {
  scroll-margin-top: 130px;

  margin-top: 24px;
  padding: 36px 38px 40px;

  border:
    1px solid rgba(36, 223, 242, 0.20);

  background:
    linear-gradient(
      150deg,
      rgba(3, 24, 36, 0.78),
      rgba(1, 12, 20, 0.88)
    );

  box-shadow:
    inset 0 0 36px rgba(0, 139, 184, 0.035);
}

.rspp-policy-section--highlight {
  border-color:
    rgba(36, 223, 242, 0.48);

  box-shadow:
    inset 0 0 45px rgba(0, 173, 219, 0.06),
    0 0 30px rgba(0, 142, 190, 0.05);
}

.rspp-policy-section__header {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: center;
  gap: 16px;

  margin-bottom: 27px;
  padding-bottom: 20px;

  border-bottom:
    1px solid rgba(36, 223, 242, 0.16);
}

.rspp-policy-section__number {
  color: var(--rspp-cyan);

  font-family: Arial, sans-serif;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.rspp-policy-section__header h2 {
  margin: 0;

  font-size: 23px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.035em;
}

.rspp-policy-section__body {
  color: var(--rspp-text-soft);

  font-size: 14px;
  line-height: 2.05;
}

.rspp-policy-section__body p {
  margin: 0;
}

.rspp-policy-section__body p + p {
  margin-top: 16px;
}

.rspp-policy-section__body h3 {
  margin: 34px 0 13px;

  color: var(--rspp-text);

  font-size: 16px;
  line-height: 1.7;
}

.rspp-policy-section__body h3:first-child {
  margin-top: 0;
}


/* ============================================================
   LISTS
============================================================ */

.rspp-list,
.rspp-number-list {
  display: grid;
  gap: 11px;

  margin: 21px 0 0;
  padding: 0;

  list-style: none;

  counter-reset: rspp-counter;
}

.rspp-list li,
.rspp-number-list li {
  position: relative;

  padding-left: 25px;
}

.rspp-list li::before {
  content: "";

  position: absolute;
  top: 0.91em;
  left: 2px;

  width: 7px;
  height: 1px;

  background: var(--rspp-cyan);

  box-shadow:
    0 0 6px rgba(36, 223, 242, 0.45);
}

.rspp-number-list {
  counter-reset: rspp-number;
}

.rspp-number-list li {
  padding-left: 39px;

  counter-increment: rspp-number;
}

.rspp-number-list li::before {
  content: counter(rspp-number, decimal-leading-zero);

  position: absolute;
  top: 0;
  left: 0;

  color: var(--rspp-cyan);

  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.04em;
}


/* ============================================================
   DRAFT BOX
============================================================ */

.rspp-draft-box {
  margin-top: 24px;
  padding: 18px 20px;

  border:
    1px solid rgba(243, 200, 103, 0.28);

  background:
    rgba(129, 91, 20, 0.10);
}

.rspp-draft-box__label {
  margin: 0 0 8px !important;

  color: var(--rspp-warning);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.rspp-draft-box p:not(.rspp-draft-box__label) {
  color: #d8cfb6;

  font-size: 12.5px;
  line-height: 1.9;
}


/* ============================================================
   COMPANY BOX
============================================================ */

.rspp-company-box {
  overflow: hidden;

  border:
    1px solid rgba(36, 223, 242, 0.20);

  background:
    rgba(2, 17, 27, 0.62);
}

.rspp-company-box dl {
  margin: 0;
}

.rspp-company-box dl > div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);

  border-top:
    1px solid rgba(36, 223, 242, 0.12);
}

.rspp-company-box dl > div:first-child {
  border-top: 0;
}

.rspp-company-box dt,
.rspp-company-box dd {
  margin: 0;
  padding: 17px 20px;
}

.rspp-company-box dt {
  color: var(--rspp-text);

  font-size: 13px;
  font-weight: 700;

  background:
    rgba(7, 42, 56, 0.40);
}

.rspp-company-box dd {
  color: var(--rspp-text-soft);

  font-size: 13px;
  line-height: 1.9;
}

.rspp-company-box a {
  color: var(--rspp-cyan) !important;

  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ============================================================
   DOCUMENT FOOTER
============================================================ */

.rspp-document__footer {
  margin-top: 40px;
  padding-top: 28px;

  border-top:
    1px solid rgba(36, 223, 242, 0.20);

  text-align: right;
}

.rspp-document__footer p {
  margin: 6px 0 0;

  color: var(--rspp-text-dim);

  font-size: 12px;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1000px) {

  .rspp-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .rspp-toc {
    position: relative;
    top: auto;
  }

  .rspp-toc__list {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 767px) {

  .rspp-container {
    width: min(
      calc(100% - 28px),
      var(--rspp-container)
    );
  }


  /* HERO */

  .rspp-hero {
    min-height: 360px;

    padding: 120px 0 60px;
  }

  .rspp-hero__inner {
    padding-left: 20px;
  }

  .rspp-kicker {
    font-size: 10px;
  }

  .rspp-hero__title {
    font-size: 34px;
  }

  .rspp-hero__lead {
    margin-top: 15px;

    font-size: 17px;
  }

  .rspp-hero__description {
    margin-top: 20px;

    font-size: 12.5px;
    line-height: 1.9;
  }


  /* CONTENT */

  .rspp-content {
    padding: 45px 0 80px;
  }

  .rspp-toc__inner {
    padding: 20px 17px;
  }

  .rspp-toc__list {
    grid-template-columns: 1fr;
  }

  .rspp-document__intro {
    padding: 24px 20px;
  }

  .rspp-document__intro p {
    font-size: 13px;
  }

  .rspp-policy-section {
    margin-top: 16px;
    padding: 26px 20px 30px;
  }

  .rspp-policy-section__header {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;

    margin-bottom: 21px;
    padding-bottom: 16px;
  }

  .rspp-policy-section__number {
    font-size: 15px;
  }

  .rspp-policy-section__header h2 {
    font-size: 19px;
  }

  .rspp-policy-section__body {
    font-size: 13px;
    line-height: 2;
  }

  .rspp-policy-section__body h3 {
    font-size: 15px;
  }

  .rspp-list li,
  .rspp-number-list li {
    padding-left: 23px;
  }

  .rspp-number-list li {
    padding-left: 34px;
  }

  .rspp-company-box dl > div {
    grid-template-columns: 1fr;
  }

  .rspp-company-box dt {
    padding-bottom: 7px;
  }

  .rspp-company-box dd {
    padding-top: 7px;
  }

  .rspp-document__footer {
    text-align: left;
  }

}


/* ============================================================
   TRANSPARENT FIXED HEADER
   他の採用サイト固定ページと同じ仕様
============================================================ */

body.page-template-page-privacy-policy #header,
body.page-template-page-privacy-policy .l-header,
body.page-template-page-privacy-policy .header {
  position: fixed !important;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 10000;

  background: transparent !important;

  box-shadow: none !important;
  border-bottom: 0 !important;
}

body.admin-bar.page-template-page-privacy-policy #header,
body.admin-bar.page-template-page-privacy-policy .l-header,
body.admin-bar.page-template-page-privacy-policy .header {
  top: 32px;
}

body.page-template-page-privacy-policy #header_inner,
body.page-template-page-privacy-policy .header_inner,
body.page-template-page-privacy-policy .l-header__inner,
body.page-template-page-privacy-policy #header_top {
  background: transparent !important;

  box-shadow: none !important;
  border: 0 !important;
}

body.page-template-page-privacy-policy #header::before,
body.page-template-page-privacy-policy #header::after,
body.page-template-page-privacy-policy .l-header::before,
body.page-template-page-privacy-policy .l-header::after {
  background: transparent !important;

  box-shadow: none !important;
}


/* WordPress管理バーのスマホ位置 */
@media screen and (max-width: 782px) {

  body.admin-bar.page-template-page-privacy-policy #header,
  body.admin-bar.page-template-page-privacy-policy .l-header,
  body.admin-bar.page-template-page-privacy-policy .header {
    top: 46px;
  }

}