:root {
  --design-width: 1440; /* PCデザインの基準幅 */
  --root-font-size: 16; /* ルートフォントサイズ */
}

body {
  color: #272727;
}

/************
BG
************/

svg#bg {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
}

.c-sunBg {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}
.c-sunCircle {
  transform-origin: 50% 50%;
  transform: translate(0px, -60vh) scale(0.8);
}
.s .c-sunCircle {
  transform: translate(0px, -52vh) scale(1);
}

.c-sunNoise {
  mix-blend-mode: lighten;
  transform-origin: 50% 50%;
  transform: translate(0px, -60vh) scale(0.8);
}
.s .c-sunNoise {
  transform: translate(0px, -52vh) scale(1);
}

/* common fixed */
.header-recruitLink > a {
  color: #000 !important;
}

.header-old {
  color: #000 !important;
}

._hide {
  opacity: 0 !important;
  pointer-events: none;
}

/* background */
.c-page {
  position: relative;
  background-image: url("../../images/common/bg-top.webp"), url("../../images/common/bg-bottom.webp");
  background-repeat: no-repeat, no-repeat;
  background-position:
    top center,
    bottom center;
  background-size: contain, contain;
  padding-bottom: 112px;
  overflow: hidden;
}

.c-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background-image: url("../../images/common/bg-noise.webp");
  background-repeat: repeat;
  background-position: center center;
  mix-blend-mode: multiply;
  opacity: 0.15;
}

/* ========== header ========== */

.s .header-old {
  display: none;
}

/* ========== breadcrumb ========== */

.c-pageInner {
  position: relative;
  z-index: 3;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 600px, rgba(255, 255, 255, 0.9) 15%, rgba(255, 255, 255, 0.9) 85%, rgba(255, 255, 255, 0) 100%);
}

.s .c-pageInner {
  position: relative;
  z-index: 3;
  background: linear-gradient(to bottom, rgba(242, 242, 242, 0) 0%, rgba(242, 242, 242, 0) 0%, rgba(242, 242, 242, 0.9) 15%, rgba(242, 242, 242, 0.9) 85%, rgba(242, 242, 242, 0) 100%);
}

.c-breadcrumb {
  list-style: none;
  display: flex;
  gap: 27px;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  align-items: baseline;
}

.c-breadcrumb-item {
  white-space: nowrap;
}

.c-breadcrumb-item[aria-current="page"] {
  white-space: normal;
}

.c-breadcrumb a {
  color: inherit;
}

.c-breadcrumb a:hover {
  text-decoration: none;
}

.c-breadcrumb-wrap {
  width: 100%;
  padding: 116.5px 72px 0;
  font-size: 12px;
}

.c-breadcrumb [aria-current="page"] {
  opacity: 0.3;
}

/* ========== container ========== */
.c-container {
  max-width: 1048px;
  margin: 0 auto;
  padding: 80px 24px 0;
}

/* ========== title ========== */
.c-title {
  text-align: center;
  margin-top: 10px;
}

.c-title-inner {
  width: 100%;
}

.c-title-main {
  margin: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
}

.c-title-main span {
  display: block;
  white-space: nowrap;
  font-size: clamp(48px, 9vw, 120px);
}

.c-title-sub {
  font-size: 32px;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1;
  margin-top: 15px;
}

.c-cover-img-pc {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  object-fit: cover;
  display: block;
  padding-top: 75px;
}

.c-cover-img-sp {
  display: none;
}

.c-side-menu {
  position: absolute;
  top: 330px;
  right: 70px;
  z-index: 2;
  width: 100%;
  max-width: 188px;
  background-color: #272727;
  border-radius: 12px;
}

.c-side-menu ul {
  list-style: none;
  text-align: left;
  margin: 0;
  padding: 0;
}

.c-side-menu li {
  position: relative;
  list-style: none;
}

.c-side-menu li:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

.c-side-menu a {
  display: block;
  padding: 15px 50px 15px 20px;
  color: #fff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  position: relative;
}

.c-side-menu a::after {
  content: url("../../images/common/icon-arrow-down.svg");
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}

.c-side-menu a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ========== content / block ========== */
.c-content {
  margin-top: 24px;
}

.c-block {
  margin-top: 80px;
}

.c-block:first-child {
  margin-top: 100px;
}

.c-block-title {
  margin: 0;
  font-size: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 15px;
}

.c-block-title::after {
  content: attr(data-sub);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.c-block-body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-top: 32px;
}

.c-lead {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  font-size: 40px;
  padding: 0 8px;
  line-height: 1.2;
  margin-top: 18px;
}

.c-lead-red {
  background: #fd0200;
}

.c-text {
  margin-top: 32px;
  font-size: 20px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 180%;
  color: #272727;
}

/* ========== subtitle (icon + text) ========== */
.c-subtitle {
  display: grid;
  grid-template-columns: 18px 1fr;
  column-gap: 10px;
  align-items: start;
}

.c-subtitle-icon {
  width: 14px;
  height: auto;
  margin: auto;
}

.c-subtitle-title,
.c-subtitle-desc {
  margin: 0;
}

.c-subtitle-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}

.c-subtitle-desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

/* subtitle variations */
.c-subtitle-title-only .c-subtitle-desc {
  display: none;
}

/* ========== media grid ========== */
.c-media-grid {
  margin-top: 36px;
  display: grid;
  gap: 18px;
}

.c-media-grid img {
  width: 100%;
  height: auto;
  display: block;
}

.c-media-grid figcaption {
  font-size: 14px;
  margin-top: 5px;
}

.s .c-media-grid figcaption {
  font-size: 12px;
}

.c-media-grid-1 {
  grid-template-columns: 1fr;
}
.c-media-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.c-media-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.c-media-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.c-media-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.c-media-center {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* ========== cta ========== */
.c-cta {
  margin: 0 auto;
  padding: 278px 71px 0;
  max-width: 1960px;
}

.c-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 26px;
}

.c-cta-card {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 24px 20px 20px 37px;
  background: url(../../images/common/cta/bg_noise.webp) center center no-repeat;
  background-size: cover;
  color: white;
  text-decoration: none;
  min-height: 240px;
  position: relative;
}
.c-cta-card:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(251, 0, 0, 0.8);
  z-index: 0;
}

.c-cta-card:hover {
  opacity: 1 !important;
}

.c-cta-content {
  position: relative;
  z-index: 1;
}

.c-cta-content h3 {
  margin: 0;
  font-size: 40px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
}

.c-cta-content p {
  margin-top: 6px;
  font-size: 20px;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.c-cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 60px;
  border: #fff solid 1px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.c-cta-arrow:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 1);
}

.c-cta-card-full {
  grid-column: 1 / -1;
  min-height: 160px;
}

.c-cta-card .c-cta-arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1;
}

.c-cta-card-full .c-cta-arrow {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

.c-cta-card-full .c-cta-arrow:hover {
  transform: translateY(calc(-50% - 4px));
}

/* ========== scrollbar ========== */
.c-scrollbar {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 50;
}

.c-scrollbar-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
}

.c-scrollbar-track {
  width: 2px;
  height: 114px;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.c-scrollbar-thumb {
  animation: moveThumb infinite 2s;
  border-radius: 16px;
  position: absolute;
  left: 0;
  width: 100%;
  height: 30px;
  top: -30px;
  background: rgba(0, 0, 0, 0.75);
}

@keyframes moveThumb {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(144px);
  }
}

/* ========== sp画面 ========== */
.s .c-page {
  background-size:
    100% 250px,
    100% 500px;
  padding-bottom: 60px;
}

.s .c-breadcrumb {
  font-size: 12px;
  gap: 16px;
}

.s .c-breadcrumb [aria-current="page"] {
  opacity: 0.6;
}

.s .c-breadcrumb-wrap {
  padding: 89px 17px 0;
}

.s .c-container {
  padding: 16px 17px 0;
}

.s .c-title-sub {
  font-size: 20px;
  margin-top: 7px;
}

.s .c-cover-img-pc {
  display: none;
}

.s .c-cover-img-sp {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  object-fit: cover;
  display: block;
  padding-top: 20px;
}

.s .c-side-menu {
  position: unset;
  transform: none;
  margin: 35px auto;
}

.s .c-block {
  margin-top: 60px;
}

.s .c-block-title {
  font-size: 40px;
  gap: 12px;
  padding-bottom: 23px;
}

.s .c-block:first-child {
  margin-top: 65px;
}

.s .c-block-body {
  margin-top: 22px;
}

.s .c-lead {
  font-size: 24px;
  margin-top: 8px;
}

.s .c-text {
  margin-top: 15px;
  font-size: 14px;
}

.s .c-subtitle {
  grid-template-columns: 14px 1fr;
  column-gap: 8px;
  row-gap: 7px;
}

.s .c-subtitle-title {
  font-size: 16px;
}

.s .c-subtitle-desc {
  font-size: 14px;
  line-height: 180%;
}

.s .c-media-grid {
  margin-top: 26px;
  gap: 16px;
}

.s .c-cta {
  margin: 142px 17px 0;
  padding: 0;
}

.s .c-cta-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}

.s .c-cta-content h3 {
  font-size: 22px;
  font-weight: 700;
}

.s .c-cta-content p {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 700;
}

.s .c-cta-arrow {
  width: 80px;
  height: 40px;
  background: white;
}

.s .c-cta-card {
  min-height: 125px;
  padding: 12px 20px;
}

.s .c-cta-card-full {
  min-height: 89px;
}

.s .c-scrollbar {
  right: 7px;
}
