@charset "UTF-8";

:root {
  --cr-black: #2b2b2b;
  --cr-white: #fff;
  --cr-blue: #428fac;
  --cr-blue-light: #f1f6f8;
  --cr-blue-light2: #f8fbfb;
  --cr-orange: #e57045;
  --cr-green: #7fb069;
  --cr-brown: #d1a25e;
  --cr-gray-5: #f9f9f9;
  --cr-gray-20: #e0e0e0;
  --cr-gray-30: #b2b2b2;
  --cr-gray-40: #6e777a;
  --cr-gray-50: #606060;
  --cr-font-w3: "FP-こぶりなゴシック StdN W3", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --cr-font-w6: "FP-こぶりなゴシック StdN W6", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --cr-font-en: neulis-neue, sans-serif;
}

/* ===== Reset for career page ===== */
.cr-page {
  background: var(--cr-white);
  color: var(--cr-black);
  font-family: var(--cr-font-w3);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0;
}

.cr-page *,
.cr-page *::before,
.cr-page *::after {
  box-sizing: border-box;
}

.cr-page [id] {
  scroll-margin-top: calc(var(--header-pc-height, 90px) + 20px);
}

.pc_only {
  display: inline;
}

.sp_only {
  display: none;
}

br.pc_only {
  display: inline;
}

br.sp_only {
  display: none;
}

.cr-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ===== Hero Section ===== */
.cr-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--header-pc-height, 90px) + 60px) 24px 0;
}

.cr-hero__title {
  font-family: var(--cr-font-w6);
  font-size: 60px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--cr-black);
  margin: 0;
}

.cr-hero__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  background: var(--cr-blue-light);
  border-radius: 20px;
  padding: 40px 60px;
  margin-top: 40px;
}

.cr-hero__nav-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--cr-black);
  font-family: var(--cr-font-w6);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  transition: color 0.2s ease;
}

.cr-hero__nav-item:hover {
  color: var(--cr-black);
}

.cr-hero__nav-text {
  position: relative;
  padding-bottom: 2px;
  font-weight: 600;
}

.cr-hero__nav-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.cr-hero__nav-item:hover .cr-hero__nav-text::after {
  transform: scaleX(1);
}

.cr-hero__nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.cr-hero__nav-icon svg {
  width: 12px;
  height: 13px;
}

.cr-hero__lead {
  margin-top: 60px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--cr-black);
}

.cr-hero__lead p + p {
  margin-top: 0;
}

/* ===== Button Link ===== */
.cr-button-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 40px 60px;
  border-radius: 20px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  width: 100%;
}

.cr-button-link.--gray {
  background: var(--cr-gray-40);
  color: var(--cr-white);
}

.cr-button-link.--gray:hover {
  background: var(--cr-white);
  color: var(--cr-gray-40);
  outline: 2px solid var(--cr-gray-40);
  outline-offset: -2px;
}

.cr-button-link.--gray-light {
  background: var(--cr-gray-5);
  color: var(--cr-black);
}

.cr-button-link.--gray-light:hover {
  background: #6e777a;
  color: var(--cr-white);
}

.cr-button-link__content {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 40px;
  min-width: 0;
}

.cr-button-link__label {
  font-family: var(--cr-font-w6);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  flex-shrink: 0;
  width: 200px;
  font-weight: 600;
}

.cr-button-link__desc {
  font-family: var(--cr-font-w3);
  font-size: 14px;
  line-height: 1.7;
  flex: 1;
  min-width: 0;
}

.cr-button-link__action {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.cr-button-link__action-label {
  font-family: var(--cr-font-en);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  white-space: nowrap;
}

.cr-button-link.--gray .cr-button-link__action-label {
  color: var(--cr-white);
  transition: color 0.2s ease;
}

.cr-button-link.--gray:hover .cr-button-link__action-label {
  color: var(--cr-gray-40);
}

.cr-button-link.--gray-light .cr-button-link__action-label {
  color: var(--cr-blue);
  transition: color 0.2s ease;
}

.cr-button-link.--gray-light:hover .cr-button-link__action-label {
  color: var(--cr-white);
}

.cr-button-link__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cr-blue);
  flex-shrink: 0;
}

.cr-button-link__arrow img,
.cr-button-link__arrow svg {
  width: 17px;
  height: 16px;
}

.cr-hero__cta {
  margin-top: 60px;
}

/* ===== Section Heading ===== */
.cr-section-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cr-section-heading__title {
  font-family: var(--cr-font-w6);
  font-size: 40px;
  font-weight: 600;
  margin: 0;
  line-height: 1.6;
  color: var(--cr-black);
}

.cr-section-heading__sub {
  font-family: var(--cr-font-en);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--cr-gray-40);
}

.cr-section-heading.--h3 .cr-section-heading__title {
  font-size: 32px;
}

.cr-section-heading.--h3 .cr-section-heading__sub {
  font-size: 16px;
}

/* ===== Interview Section ===== */
.cr-interview {
  background: var(--cr-blue-light);
  border-radius: 100px 0 100px 0;
  padding: 100px 24px;
  margin-top: 120px;
}

.cr-interview__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cr-interview__slider {
  margin-top: 60px;
  overflow: visible;
}

.cr-interview__slider .swiper-wrapper {
  display: flex;
}

.cr-interview__card {
  width: 269px;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--cr-black);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cr-interview__card:hover .cr-interview__card-img img {
  transform: scale(1.05);
}

.cr-interview__card-img {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
}

.cr-interview__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.cr-interview__card-tag {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: var(--cr-white);
  border: 1px solid var(--cr-blue);
  border-radius: 20px;
  padding: 4px 12px;
  font-family: var(--cr-font-w6);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.8;
  color: var(--cr-blue);
  white-space: nowrap;
}

.cr-interview__card-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cr-interview__card-title {
  font-family: var(--cr-font-w6);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--cr-black);
  font-weight: 600;
}

.cr-interview__card-name {
  font-family: var(--cr-font-w3);
  font-size: 14px;
  line-height: 1.7;
  color: var(--cr-gray-40);
}

.cr-interview__controller {
  align-items: center;
  column-gap: 15px;
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.cr-interview__controller .swiper-pagination {
  column-gap: 10px;
  display: flex;
}

.cr-interview__controller .swiper-pagination-bullet {
  background-color: var(--cr-gray-20);
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  height: 8px;
  width: 8px;
  transition: background-color 0.2s ease;
}

.cr-interview__controller .swiper-pagination-bullet-active {
  background-color: var(--cr-blue);
}

.cr-interview__controller .swiper-button-next,
.cr-interview__controller .swiper-button-prev {
  align-items: center;
  border: 1px solid var(--cr-gray-30);
  border-radius: 50%;
  display: grid;
  height: 36px;
  width: 36px;
  place-items: center;
  transition: opacity 0.2s ease;
  cursor: pointer;
  background: none;
  padding: 0;
}

.cr-interview__controller .swiper-button-next:after,
.cr-interview__controller .swiper-button-prev:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%226%22%20height%3D%228%22%20viewBox%3D%220%200%206%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1%201L4%203.7874L1%207%22%20stroke%3D%22%23B2B2B2%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 8px;
  width: 6px;
}

.cr-interview__controller .swiper-button-prev:after {
  scale: -1;
}

.cr-interview__controller .swiper-button-disabled {
  border-color: var(--cr-gray-20);
  cursor: default;
}

.cr-interview__controller .swiper-button-disabled:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%226%22%20height%3D%228%22%20viewBox%3D%220%200%206%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1%201L4%203.7874L1%207%22%20stroke%3D%22%23E0E0E0%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
}

/* ===== Work Style Section ===== */
.cr-workstyle {
  max-width: 1200px;
  margin: 120px auto 0;
  padding: 0 24px;
}

.cr-feature-cards {
  display: flex;
  gap: 40px;
  margin-top: 60px;
}

.cr-feature-card {
  flex: 1;
  border: 1px solid var(--cr-gray-20);
  border-radius: 40px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cr-feature-card__icon {
  width: 100%;
  aspect-ratio: 360 / 160;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cr-feature-card__icon img,
.cr-feature-card__icon svg {
  max-height: 100px;
  width: auto;
}

.cr-feature-card__title {
  font-family: var(--cr-font-w6);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--cr-black);
}

.cr-feature-card__desc {
  font-family: var(--cr-font-w3);
  font-size: 14px;
  line-height: 1.7;
  color: var(--cr-black);
}

/* Sub sections */
.cr-workstyle__section {
  display: flex;
  gap: 40px;
  margin-top: 100px;
}

.cr-workstyle__section-heading {
  flex-shrink: 0;
  width: 373px;
}

.cr-workstyle__section-heading .cr-section-heading__title {
  font-size: 32px;
}

.cr-workstyle__section-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-width: 0;
}

.cr-workstyle__text {
  font-size: 16px;
  line-height: 1.7;
}

.cr-workstyle__list-box {
  border: 1px solid var(--cr-gray-20);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cr-workstyle__list-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cr-workstyle__list-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cr-workstyle__list-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #428FAC;
  flex-shrink: 0;
}

.cr-workstyle__list-name {
  font-family: var(--cr-font-w6);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
}

.cr-workstyle__list-desc {
  font-size: 14px;
  line-height: 1.7;
}

.cr-workstyle__note {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.8);
}

.cr-workstyle__image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.cr-workstyle__image img {
  width: 100%;
  height: auto;
  display: block;
}

.cr-workstyle__cta {
  margin-top: 100px;
}

/* ===== Data Section ===== */
.cr-data {
  background: var(--cr-blue-light);
  border-radius: 100px 0 100px 0;
  padding: 100px 24px;
  margin-top: 120px;
}

.cr-data__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cr-data__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 60px;
}

.cr-data__card {
  background: var(--cr-white);
  border-radius: 20px;
  padding: 20px;
  width: calc((100% - 80px) / 3);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cr-data__card-title {
  font-family: var(--cr-font-w6);
  font-size: 16px;
  line-height: 1.7;
  color: var(--cr-black);
  font-weight: 600;
}

.cr-data__card-value {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  align-content: center;
  justify-content: center;
  overflow: hidden;
}

.cr-data__card-value img {
  max-width: 100%;
  height: auto;
}

.cr-data__card-value .cr-data__number {
  font-family: var(--cr-font-en);
  font-size: 72px;
  font-weight: 700;
  color: var(--cr-blue);
  line-height: 1;
}

.cr-data__card-value .cr-data__unit {
  font-family: var(--cr-font-w6);
  font-size: 24px;
  font-weight: 600;
  color: var(--cr-blue);
  margin-left: 4px;
}

.cr-data__more {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--cr-white);
  border-radius: 15px;
  padding: 20px 32px;
  margin: 60px auto 0;
  text-decoration: none;
  color: var(--cr-black);
  font-family: var(--cr-font-w6);
  font-size: 20px;
  font-weight: 600;
  transition: color 0.2s ease;
  width: fit-content;
}

.cr-data__more:hover {
  color: var(--cr-orange);
}

.cr-data__more:hover .cr-data__more-arrow {
  background: var(--cr-orange);
}

.cr-data__more-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cr-blue);
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}

/* ===== Flow Section ===== */
.cr-flow {
  max-width: 1200px;
  margin: 120px auto 0;
  padding: 0 24px;
}

.cr-flow__inner {
  display: flex;
  gap: 40px;
}

.cr-flow__heading {
  flex: 1;
}

.cr-flow__steps {
  max-width: 800px;
  flex: 1 1 800px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cr-flow__step {
  display: flex;
  align-items: center;
  gap: 40px;
}

.cr-flow__step-label {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 260px;
  flex-shrink: 0;
  line-height: 1.6;
}

.cr-flow__step-num {
  font-family: var(--cr-font-en);
  font-size: 14px;
  font-weight: 600;
  color: var(--cr-blue);
  width: 57px;
  flex-shrink: 0;
}

.cr-flow__step-name {
  font-family: var(--cr-font-w6);
  font-size: 20px;
  font-weight: 600;
  color: var(--cr-black);
  white-space: nowrap;
}

.cr-flow__step-detail {
  flex: 1;
  font-size: 16px;
  line-height: 1.7;
}

.cr-flow__step-detail .cr-flow__step-note {
  font-size: 12px;
  line-height: 1.8;
  margin-top: 8px;
}

.cr-flow__separator {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cr-flow__separator-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cr-flow__separator-icon img,
.cr-flow__separator-icon svg {
  width: 24px;
  height: 24px;
}

.cr-flow__separator-line {
  flex: 1;
  height: 1px;
  background: var(--cr-gray-20);
}

/* ===== FAQ Section ===== */
.cr-faq {
  background: var(--cr-blue-light);
  border-radius: 100px 0 0 0;
  margin-top: 120px;
  padding-bottom: 80px;
}

.cr-faq__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
}

.cr-faq__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 60px;
}

.cr-faq__item {
  border: none;
}

.cr-faq__item[open] .cr-faq__question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.cr-faq__item.is-opened .cr-faq__question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.cr-faq__item.is-opened .cr-faq__q-icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.cr-faq__question {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px;
  background: var(--cr-white);
  border-radius: 20px;
  cursor: pointer;
  list-style: none;
  transition: border-radius 0.3s ease;
}

.cr-faq__question::-webkit-details-marker {
  display: none;
}

.cr-faq__q-text {
  display: flex;
  flex: 1;
  gap: 12px;
  align-items: flex-start;
}

.cr-faq__q-mark {
  font-family: var(--cr-font-en);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--cr-blue);
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.cr-faq__q-label {
  font-family: var(--cr-font-w3);
  font-size: 16px;
  line-height: 1.7;
  color: var(--cr-black);
  flex: 1;
}

.cr-faq__q-icon {
  width: 36px;
  height: 36px;
  background: var(--cr-blue);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.cr-faq__q-icon::after,
.cr-faq__q-icon::before {
  content: "";
  position: absolute;
  background: var(--cr-white);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.cr-faq__q-icon::after {
  width: 16px;
  height: 2px;
}

.cr-faq__q-icon::before {
  width: 2px;
  height: 16px;
}

.cr-faq__answer-wrap {
  overflow: hidden;
}

.cr-faq__answer {
  display: flex;
  gap: 12px;
  padding: 20px;
  background: var(--cr-blue-light2);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.cr-faq__a-mark {
  font-family: var(--cr-font-en);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--cr-blue);
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.cr-faq__a-text {
  font-family: var(--cr-font-w3);
  font-size: 16px;
  line-height: 1.7;
  color: var(--cr-black);
  flex: 1;
}

.cr-faq__a-body {
  flex: 1;
}

.cr-faq__a-body--ratio {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cr-faq__a-body--ratio .cr-faq__a-text {
  flex: none;
}

.cr-faq__ratio-table-wrap {
  max-width: 730px;
  width: 100%;
}

.cr-faq__ratio-table-wrap--sp {
  display: none;
}

.cr-faq__ratio-table {
  width: 100%;
  border: 1px solid var(--cr-gray-20);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cr-white);
}

.cr-faq__ratio-table th,
.cr-faq__ratio-table td {
  padding: 16px 12px;
  border-right: 1px solid var(--cr-gray-20);
  border-bottom: 1px solid var(--cr-gray-20);
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
  vertical-align: middle;
}

.cr-faq__ratio-table thead th,
.cr-faq__ratio-table tbody th {
  background: #f9f9f9;
  font-family: var(--cr-font-w6);
  font-weight: 600;
  color: #393732;
}

.cr-faq__ratio-table td {
  background: var(--cr-white);
  font-family: var(--cr-font-w3);
  font-weight: 300;
  color: var(--cr-black);
}

.cr-faq__ratio-table tr > *:last-child {
  border-right: none;
}

.cr-faq__ratio-table tbody tr:last-child > * {
  border-bottom: none;
}

.cr-faq__ratio-table thead th:first-child {
  width: 124px;
}

.cr-faq__ratio-table thead th:not(:first-child),
.cr-faq__ratio-table tbody td {
  width: calc((100% - 104px) / 5);
}

/* ===== Career Links ===== */
.cr-career-links {
  margin-top: 40px;
}

.cr-career-links__divider {
  height: 1px;
  background: var(--cr-gray-20);
}

.cr-career-links__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 40px;
  overflow: hidden;
}

.cr-career-links__row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.cr-career-links__card {
  flex: 1 1 280px;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px clamp(24px, 4vw, 60px);
  background: var(--cr-white);
  border-radius: 20px;
  color: var(--cr-black);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.cr-career-links__card.--wide {
  flex-basis: 100%;
}

.cr-career-links__card:hover {
  background: var(--cr-brown);
  color: var(--cr-white);
}

.cr-career-links__card-content {
  flex: 1;
  min-width: 0;
}

.cr-career-links__card.--wide .cr-career-links__card-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 40px;
}

.cr-career-links__card-title {
  max-width: 200px;
  font-family: var(--cr-font-w6);
  font-size: 20px;
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 12px;
}

.cr-career-links__card-desc {
  flex: 1 1 0%;
  min-width: 0;
  font-family: var(--cr-font-w3);
  font-size: 14px;
  line-height: 1.7;
}

.cr-career-links__card-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-shrink: 0;
}

.cr-career-links__card.--wide .cr-career-links__card-action {
  flex-direction: row;
  gap: 16px;
}

.cr-career-links__card-label {
  font-family: var(--cr-font-en);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--cr-brown);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.cr-career-links__card:hover .cr-career-links__card-label {
  color: var(--cr-white);
}

.cr-career-links__card-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cr-brown);
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}

.cr-career-links__card:hover .cr-career-links__card-arrow {
  background: var(--cr-white);
}

.cr-career-links__card-arrow svg path {
  transition: fill 0.2s ease;
}

.cr-career-links__card:hover .cr-career-links__card-arrow svg path {
  fill: var(--cr-brown);
}

.cr-career-links__card-arrow svg {
  width: 17px;
  height: 16px;
}

/* ===== Entry Section ===== */
.cr-entry {
  margin-top: -80px;
  background: var(--cr-gray-40);
  padding: 100px 24px;
  border-radius: 100px 0 0 0;
}

.cr-entry__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.cr-entry__content {
  flex: 1;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cr-entry__heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--cr-white);
}

.cr-entry__title {
  font-family: var(--cr-font-en);
  font-size: 62px;
  font-weight: 700;
  line-height: 1.2;
}

.cr-entry__subtitle {
  font-family: var(--cr-font-w6);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.6;
}

.cr-entry__desc {
  font-family: var(--cr-font-w3);
  font-size: 16px;
  line-height: 1.7;
  color: var(--cr-white);
}

.cr-entry__button {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 76px;
  background: var(--cr-white);
  border-radius: 15px;
  padding: 20px 32px;
  text-decoration: none;
  color: var(--cr-black);
  transition: opacity 0.2s ease;
  width: fit-content;
  flex-shrink: 0;
}

.cr-entry__button:hover {
  opacity: 0.8;
}

.cr-entry__button-label {
  font-family: var(--cr-font-w6);
  font-size: 20px;
  font-weight: 600;
}

.cr-entry__button-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cr-blue);
  flex-shrink: 0;
}

/* ===== SP Styles (max-width: 767px) ===== */
@media screen and (max-width: 767px) {

  .pc_only {
    display: none;
  }

  .sp_only {
    display: inline;
  }

  br.pc_only {
    display: none;
  }

  br.sp_only {
    display: inline;
  }

  .cr-page [id] {
    scroll-margin-top: calc(var(--header-sp-height, 72px) + 20px);
  }

  /* Hero */
  .cr-hero {
    padding: calc(var(--header-sp-height, 72px) + 40px) 24px 0;
  }

  .cr-hero__title {
    font-size: 40px;
    line-height: 1.6;
  }

  .cr-hero__nav {
    padding: 40px 24px;
    gap: 20px;
  }

  .cr-hero__lead {
    margin-top: 60px;
  }

  .cr-hero__cta {
    margin-top: 60px;
  }

  /* Button Link SP */
  .cr-button-link {
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    align-items: flex-start;
  }

  .cr-button-link__content {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .cr-button-link__label {
    font-size: 16px;
    width: auto;
  }

  .cr-button-link.--gray .cr-button-link__label {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }

  .cr-button-link__desc {
    font-size: 14px;
    margin-top: 16px;
  }

  .cr-button-link__action {
    gap: 8px;
  }

  .cr-button-link__action-label {
    font-size: 12px;
  }

  .cr-button-link.--gray {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "label action"
      "desc desc";
    gap: 16px 8px;
    align-items: start;
  }

  .cr-button-link.--gray .cr-button-link__content {
    display: contents;
  }

  .cr-button-link.--gray .cr-button-link__label {
    grid-area: label;
    display: block;
    font-size: 16px;
    width: 100%;
    align-self: center;
  }

  .cr-button-link.--gray .cr-button-link__desc {
    grid-area: desc;
    font-size: 14px;
    margin-top: 0;
  }

  .cr-button-link.--gray .cr-button-link__action {
    grid-area: action;
    align-self: center;
    gap: 8px;
  }

  .cr-button-link.--gray-light {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "label action"
      "desc desc";
    gap: 16px 8px;
    align-items: start;
  }

  .cr-button-link.--gray-light .cr-button-link__content {
    display: contents;
  }

  .cr-button-link.--gray-light .cr-button-link__label {
    grid-area: label;
    display: block;
    font-size: 16px;
    width: 100%;
    align-self: center;
  }

  .cr-button-link.--gray-light .cr-button-link__desc {
    grid-area: desc;
    font-size: 14px;
    margin-top: 0;
  }

  .cr-button-link.--gray-light .cr-button-link__action {
    grid-area: action;
    align-self: center;
    gap: 8px;
  }

  /* Section Heading SP */
  .cr-section-heading__title {
    font-size: 32px;
  }

  .cr-section-heading__sub {
    font-size: 16px;
  }

  .cr-section-heading.--h3 .cr-section-heading__title {
    font-size: 24px;
  }

  .cr-section-heading.--h3 .cr-section-heading__sub {
    font-size: 14px;
  }

  /* Interview SP */
  .cr-interview {
    border-radius: 60px 0 60px 0;
    padding: 80px 24px;
    margin-top: 60px;
    overflow: hidden;
  }

  .cr-interview__slider {
    margin-top: 40px;
    overflow: visible;
  }

  .cr-interview__card {
    width: 229px;
  }

  .cr-interview__card-img {
    height: 187px;
  }

  .cr-interview__card-body {
    gap: 12px;
    overflow: hidden;
  }

  .cr-interview__card-name {
    font-size: 12px;
    line-height: 1.8;
  }

  .cr-interview__controller {
    column-gap: 15px;
    justify-content: flex-start;
  }

  .cr-interview__controller .swiper-pagination-bullet {
    height: 6px;
    width: 6px;
  }

  .cr-interview__controller .swiper-button-next,
  .cr-interview__controller .swiper-button-prev {
    height: 30px;
    width: 30px;
  }

  /* Work Style SP */
  .cr-workstyle {
    padding: 0 24px;
    margin-top: 60px;
  }

  .cr-feature-cards {
    flex-direction: column;
    gap: 20px;
    margin-top: 60px;
  }

  .cr-feature-card {
    border-radius: 20px;
    padding: 24px;
    gap: 12px;
  }

  .cr-workstyle__section {
    flex-direction: column;
    gap: 20px;
    margin-top: 60px;
    border-top: 1px solid var(--cr-gray-20);
    padding-top: 60px;
  }

  .cr-workstyle__section-heading {
    width: 100%;
  }

  .cr-workstyle__list-box {
    padding: 24px;
    gap: 24px;
  }

  .cr-workstyle__cta {
    margin-top: 60px;
  }

  .cr-button-link.--gray-light {
    padding: 24px;
  }

  .cr-button-link.--gray-light .cr-button-link__content {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .cr-button-link.--gray-light .cr-button-link__label {
    font-size: 16px;
    width: 100%;
  }

  .cr-button-link.--gray-light .cr-button-link__desc {
    font-size: 14px;
    margin-top: 16px;
  }

  /* Data SP */
  .cr-data {
    border-radius: 60px 0 60px 0;
    padding: 80px 24px;
    margin-top: 100px;
  }

  .cr-data__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .cr-data__card {
    width: 100%;
    min-height: 111px;
    padding: 12px;
    gap: 12px;
  }

  .cr-data__card-title {
    font-size: 14px;
    font-weight: 600;
  }

  .cr-data__card:nth-child(3),
  .cr-data__card:nth-child(4) {
    grid-column: 1 / -1;
    min-height: 234px;
    padding: 20px;
  }

  .cr-data__card:nth-child(5),
  .cr-data__card:nth-child(6) {
    min-height: 151px;
  }

  .cr-data__card-value {
    overflow: visible;
  }

  .cr-data__card:nth-child(1) .cr-data__card-value {
    align-content: flex-end;
  }

  .cr-data__card-value .cr-data__number {
    font-size: 53px;
  }

  .cr-data__card-value .cr-data__unit {
    font-size: 18px;
  }

  .cr-data__card:nth-child(3) .cr-data__card-value img {
    width: 245px;
    max-width: 100%;
  }

  .cr-data__card:nth-child(4) .cr-data__card-value img {
    width: 213px;
    max-width: 100%;
  }

  .cr-data__card:nth-child(5) .cr-data__card-value {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 4px;
  }

  .cr-data__card:nth-child(5) .cr-data__card-value .cr-data__unit {
    margin-left: 0;
    line-height: 1.4;
  }

  .cr-data__card:nth-child(6) .cr-data__card-value img {
    width: 129px;
    max-width: 100%;
  }

  .cr-data__more {
    width: 280px;
    min-height: 69px;
    justify-content: space-between;
    font-size: 16px;
    padding: 16px 24px;
    margin-top: 40px;
  }

  .cr-data__more span:first-child {
    flex: 1;
    text-align: center;
    line-height: 1.7;
  }

  /* Flow SP */
  .cr-flow {
    padding: 0 24px;
    margin-top: 100px;
  }

  .cr-flow__inner {
    flex-direction: column;
    gap: 60px;
  }

  .cr-flow__steps {
    width: 100%;
    gap: 40px;
  }

  .cr-flow__step {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .cr-flow__step-label {
    width: 100%;
    gap: 20px;
  }

  .cr-flow__step-num {
    width: 60px;
  }

  .cr-flow__step-name {
    font-size: 16px;
  }

  .cr-flow__step-detail {
    font-size: 14px;
    width: 100%;
    padding-left: 80px;
  }

  .cr-flow__step-detail p {
    line-height: 1.7;
  }

  .cr-flow__step-detail .cr-flow__step-note {
    margin-top: 4px;
  }

  .cr-flow__separator {
    gap: 20px;
  }

  /* FAQ SP */
  .cr-faq__inner {
    padding: 80px 24px;
  }

  .cr-faq__list {
    gap: 12px;
    margin-top: 40px;
  }

  .cr-faq__question {
    gap: 12px;
    padding: 20px 12px;
  }

  .cr-faq__q-icon {
    width: 26px;
    height: 26px;
  }

  .cr-faq__q-icon::after {
    width: 12px;
  }

  .cr-faq__q-icon::before {
    height: 12px;
  }

  .cr-faq__q-label {
    font-size: 12px;
    line-height: 1.8;
  }

  .cr-faq__a-text {
    font-size: 12px;
    line-height: 1.8;
  }

  .cr-faq__answer {
    padding: 20px 12px;
  }

  .cr-faq__a-body--ratio {
    gap: 12px;
  }

  .cr-faq__ratio-table th,
  .cr-faq__ratio-table td {
    padding: 12px;
    font-size: 12px;
    line-height: 1.8;
  }

  .cr-faq__ratio-table-wrap--pc {
    display: none;
  }

  .cr-faq__ratio-table-wrap--sp {
    display: block;
  }

  .cr-faq__ratio-table--sp thead th,
  .cr-faq__ratio-table--sp tbody th,
  .cr-faq__ratio-table--sp td {
    width: 50%;
  }

  .cr-career-links {
    margin-top: 24px;
  }

  .cr-career-links__list {
    gap: 20px;
    padding-top: 24px;
  }

  .cr-career-links__row {
    flex-direction: column;
    gap: 20px;
  }

  .cr-career-links__card,
  .cr-career-links__card.--wide {
    flex: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "title action"
      "desc desc";
    align-items: start;
    gap: 16px 8px;
    padding: 24px;
    width: 100%;
  }

  .cr-career-links__card-content,
  .cr-career-links__card.--wide .cr-career-links__card-content {
    display: contents;
  }

  .cr-career-links__card-title {
    grid-area: title;
    width: 100%;
    max-width: none;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
    align-self: center;
  }

  .cr-career-links__card-desc {
    grid-area: desc;
    font-size: 14px;
    line-height: 1.7;
  }

  .cr-career-links__card-action,
  .cr-career-links__card.--wide .cr-career-links__card-action {
    grid-area: action;
    flex-direction: row;
    gap: 8px;
    align-self: center;
  }

  .cr-career-links__card-label {
    font-size: 12px;
  }

  /* Entry SP */
  .cr-entry {
    border-radius: 60px 0 0 0;
    padding: 60px 24px;
  }

  .cr-entry__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .cr-entry__content {
    max-width: none;
    width: 100%;
    gap: 40px;
  }

  .cr-entry__title {
    font-size: 32px;
  }

  .cr-entry__subtitle {
    font-size: 20px;
  }

  .cr-entry__desc {
    font-size: 14px;
  }

  .cr-entry__button {
    height: auto;
    padding: 20px 24px;
  }

  .cr-entry__button-label {
    font-size: 16px;
  }

  .cr-entry__button-arrow {
    width: 26px;
    height: 26px;
  }
}

/* ===== PC Styles (min-width: 768px) ===== */
@media screen and (min-width: 768px) {
  .cr-interview__slider .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    transform: translate3d(0, 0, 0) !important;
  }

  .cr-interview__slider.swiper {
    overflow: visible;
  }

  .cr-interview__controller {
    display: none;
  }

  .cr-interview__card {
    width: calc((100% - 120px) / 4);
  }

  .cr-workstyle__section-body .cr-workstyle__image {
    max-width: 787px;
  }

  .cr-workstyle__section-body .cr-workstyle__image img {
    aspect-ratio: 787 / 524;
    object-fit: cover;
  }

  .cr-workstyle__section-body .cr-workstyle__image.--hr {
    max-width: 100%;
    border-radius: 0;
  }

  .cr-workstyle__section-body .cr-workstyle__image.--hr img {
    aspect-ratio: 1574 / 683;
  }
}
