@charset "UTF-8";

:root {
  /* Black & White */
  --Color-Black: #000000;
  --Color-White: #ffffff;

  /* Gray Scale */
  --Color-Gray-800: #343434;
  --Color-Gray-500: #949494;
  --Color-Gray-200: #dfdfdf;
  --Color-Gray-50: #f4f4f4;

  /* Page Color - 社会人ページ */
  --PageColor-Aisumi: #3e3a39;
  --PageColor-Fukamidori: #004824;
  --PageColor-Tokiwa: #086936;
  --PageColor-Midori: #31b06c;
  --PageColor-Wakakusa: #75ae43;
  --PageColor-Moegi: #8eb73b;
  --PageColor-Turquoise: #0099a9;
  --PageColor-Asagi: #25a8be;
  --PageColor-Konpeki: #107dbc;
  --PageColor-Yanagicha: #a7a675;
  --PageColor-Canary: #f2bf5f;
  --PageColor-Karashi: #ddbd74;
  --PageColor-Torinoko: #d6ceb0;
  --PageColor-Ecru: #eae2d5;
  --PageColor-OysterWhite: #f0ede2;
  --PageColor-PearlWhite: #f7f5ef;
  --PageColor-Gold: #fbcf21;

  --inner-width: 1000px;
  --inner-width02: 1100px;
  --inner-padding-pc: 3.0769%;
  --inner-padding-sp: 5.625%;

  /* Font */
  --Font-NotoSansJP: "Noto Sans JP", sans-serif;
  --Font-NotoSerifJP: "Noto Serif JP", serif;
  --Font-Oswald: "Oswald", sans-serif;
}

/* common */
.ce-main {
  overflow: clip;
  letter-spacing: 0;
  color: var(--Color-Gray-800);
}
.ce-main a {
  text-decoration: none;
}

.ce-main *,
.ce-main *:before,
.ce-main *:after {
  box-sizing: border-box;
}

.ce-sp-hidden {
  @media (max-width: 740px) {
    display: none;
  }
}
.ce-pc-hidden {
  @media (min-width: 741px) {
    display: none;
  }
}
.ce-tab-hidden {
  @media (max-width: 1100px) {
    display: none;
  }
}

.ce-sp-visible {
  @media (min-width: 741px) {
    display: none;
  }
}
.ce-pc-visible {
  @media (max-width: 740px) {
    display: none;
  }
}
.ce-tab-visible {
  display: none;
  @media (max-width: 1100px) {
    display: block;
  }
}

.ce-color-green {
  color: var(--PageColor-Fukamidori);
}

.ce-heading {
  position: relative;
  max-width: var(--inner-width);
  margin: auto;
  padding: 0 var(--inner-padding-pc);
  z-index: 2;
}
.ce-heading::after {
  content: "";
  position: absolute;
  inset: auto auto -100px 50%;
  width: 1px;
  height: 52px;
  background-color: var(--Color-Gray-800);
  @media (max-width: 740px) {
    height: calc(32 / 320 * 100vw);
    inset: auto auto calc(-56 / 320 * 100vw) 50%;
  }
}
.ce-heading::before {
  content: "";
  position: absolute;
  inset: -58px auto auto calc(50% - 50vw);
  width: calc(50vw - 130px);
  height: 24px;
  background-color: var(--PageColor-Yanagicha);
  z-index: -1;
  @media (max-width: 740px) {
    inset: calc(-22 / 320 * 100vw) auto auto 0;
    width: calc(228 / 320 * 100vw);
    height: calc(12 / 320 * 100vw);
  }
}
.ce-heading__title {
  text-align: center;
  color: var(--Color-Gray-800);
  font-weight: 600;
  font-family: var(--Font-NotoSerifJP);
  line-height: 1.2;
}
.ce-heading__title.js-title-animation {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transform: translateY(20px);
}
.ce-heading__title.js-title-animation.is-active {
  opacity: 1;
  transform: translateY(0);
}
.ce-heading__title-main {
  font-size: clamp(3.2rem, calc(48 / 1100 * 100vw), 4.8rem);
  line-height: 1.2;
  display: block;
  @media (max-width: 740px) {
    font-size: calc(20 / 320 * 100vw);
  }
}
.ce-heading__title-sub {
  font-size: clamp(3.8rem, calc(56 / 1100 * 100vw), 5.6rem);
  margin-top: 4px;
  letter-spacing: calc(-1.3 / 56 * 1em);
  display: block;
  @media (max-width: 740px) {
    font-size: calc(24 / 320 * 100vw);
  }
}
.ce-vertical-text {
  writing-mode: vertical-rl;
  display: grid;
  gap: 10px;
  height: max-content;
  @media (max-width: 740px) {
    gap: calc(3 / 320 * 100vw);
  }
}
.ce-vertical-text__line {
  font-family: var(--Font-NotoSansJP);
  font-weight: 700;
  font-size: clamp(3.4rem, calc(46 / 1100 * 100vw), 4.6rem);
  line-height: calc(50 / 46);
  color: var(--Color-White);
  padding: 4px 2px 10px 0;
  background-color: var(--PageColor-Tokiwa);
  letter-spacing: 0;
  height: fit-content;
  @media (max-width: 740px) {
    font-size: calc(20 / 320 * 100vw);
    padding: calc(4 / 320 * 100vw) 0;
  }
}
.ce-vertical-text__line.js-title-animation {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.8s cubic-bezier(0.11, 0, 0.5, 0);
}
.ce-vertical-text__line.js-title-animation.is-active {
  clip-path: inset(0 0 0 0);
}
.ce-vertical-text__line:last-child {
  margin-top: 36px;
  @media (max-width: 740px) {
    margin-top: calc(12 / 320 * 100vw);
  }
}

.ce-com-button {
  text-align: center;
  position: relative;
  z-index: 1;
}
.ce-com-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--Color-White);
  text-decoration: none;
  padding: 15px 17px;
  border-radius: 8px;
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid transparent;
  transition: color 0.3s ease, background 0.3s, border-color 0.3s;
  z-index: 0;
  position: relative;
  @media (max-width: 740px) {
    max-width: calc(360 / 320 * 100vw);
    padding: calc(10 / 320 * 100vw) calc(12 / 320 * 100vw);
    border-radius: calc(6 / 320 * 100vw);
  }
}
.ce-com-button__link::before {
  content: "";
  position: absolute;
  background: var(--Gradation-Fukamidori, linear-gradient(273deg, #004824 0%, #04592d 20%, #007b43 100%));
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  inset: -1px auto auto -1px;
  display: block;
  z-index: -1;
  opacity: 1;
  transition: opacity 0.3s;
  border-radius: 8px;
  @media (max-width: 740px) {
    border-radius: calc(6 / 320 * 100vw);
  }
}
.ce-com-button__link::after {
  content: "";
  position: absolute;
  background-color: white;
  width: 100%;
  height: 100%;
  display: block;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 8px;
  @media (max-width: 740px) {
    border-radius: calc(6 / 320 * 100vw);
  }
}
a.ce-com-button__link:hover {
  color: var(--PageColor-Fukamidori);
  background: white;
  opacity: 1 !important;
  border-color: var(--PageColor-Fukamidori);
}
a.ce-com-button__link:hover::before {
  opacity: 0;
}
a.ce-com-button__link:hover::after {
  opacity: 1;
}
.ce-com-button__text {
  font-family: var(--Font-NotoSansJP);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: -0.04em;
  @media (max-width: 740px) {
    font-size: calc(14 / 320 * 100vw);
  }
}
.ce-com-button__arrow {
  mask-image: url(../img/pages/career-enhancement/button_arrow.svg);
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: white;
  width: 22px;
  height: 5px;
  position: absolute;
  inset: 50% 16px auto auto;
  translate: 0 -50%;
  display: block;
  transition: background-color 0.3s;
  @media (max-width: 740px) {
    width: calc(17 / 320 * 100vw);
    height: calc(4 / 320 * 100vw);
    inset: 50% calc(10 / 320 * 100vw) auto auto;
  }
}
a.ce-com-button__link:hover .ce-com-button__arrow {
  background-color: var(--PageColor-Fukamidori);
}

.ce-com-button.-blue .ce-com-button__link::before {
  background: linear-gradient(273deg, #107dbc 0%, #1a8cc9 20%, #25a8be 100%);
}
.ce-com-button.-blue .ce-com-button__link:hover {
  color: var(--PageColor-Konpeki);
  border-color: var(--PageColor-Konpeki);
}
.ce-com-button.-blue .ce-com-button__link:hover .ce-com-button__arrow {
  background-color: var(--PageColor-Konpeki);
}

/* MV */
.ce-mv {
  background-color: var(--PageColor-Fukamidori);
  padding: 24px 0 40px;
  overflow: hidden;
  position: relative;
  @media (max-width: 740px) {
    padding: calc(12 / 320 * 100vw) 0 calc(20 / 320 * 100vw);
  }
}
.ce-mv__copy {
  position: absolute;
  left: 100px;
  top: 95px;
  z-index: 10;
  @media (max-width: 1100px) {
    left: 24px;
  }
  @media (max-width: 740px) {
    top: 70px;
    left: 0;
  }
}
.ce-mv__copy-line {
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  background-color: rgba(8, 105, 54, 0.9);
  width: fit-content;
  opacity: 0;
  @media (max-width: 740px) {
    margin-bottom: calc(8 / 320 * 100vw);
  }
}
.ce-mv__copy-line.is-animated {
  opacity: 1;
}
.ce-mv__copy-line:last-child {
  margin-bottom: 0;
}
.ce-mv__copy-text {
  color: var(--Color-White);
  font-family: var(--Font-NotoSerifJP);
  font-weight: 600;
  font-size: 7.4rem;
  line-height: 1.2;
  padding: 0 5px;
  display: inline-block;
  overflow: hidden;
  @media (max-width: 740px) {
    font-size: calc(32 / 320 * 100vw);
    padding: 0 calc(2 / 320 * 100vw);
  }
}
.ce-mv__copy-char {
  display: inline-block;
}
.ce-mv__copy-text.-small {
  font-size: 5.2rem;
  padding: 0;
  @media (max-width: 740px) {
    font-size: calc(22 / 320 * 100vw);
  }
}
.ce-mv__copy-text.-slash {
  font-size: 5.8rem;
  padding: 0;
  position: relative;
  top: -10px;
  @media (max-width: 740px) {
    font-size: calc(24 / 320 * 100vw);
    top: calc(-5 / 320 * 100vw);
  }
}
.ce-mv__point {
  text-align: center;
}
.ce-mv__point img {
  max-width: 100%;
  height: auto;
  position: absolute;
  inset: auto 76px 63px auto;
  @media (max-width: 740px) {
    max-width: calc(138 / 320 * 100vw);
    inset: auto 0 calc(27 / 320 * 100vw) auto;
  }
}

/* MV Slider */
.ce-mv__slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.ce-mv__slider-item {
  margin-bottom: 16px;
  @media (max-width: 740px) {
    margin-bottom: calc(10 / 320 * 100vw);
  }
}
.ce-mv__slider-item:last-child {
  margin-bottom: 0;
}
.ce-mv__slider .splide__list {
  align-items: center;
}
.ce-mv__slider .splide__slide {
  width: auto;
}
.ce-mv__slider .splide__slide img {
  height: 200px;
  width: auto;
  border-radius: 24px;
  display: block;
  @media (max-width: 740px) {
    height: calc(114 / 320 * 100vw);
  }
}

/* Career Section */
.ce-career {
  position: relative;
  margin-top: -1px;
}
.ce-career::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--PageColor-Fukamidori);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.ce-career__body {
  background-color: var(--PageColor-PearlWhite);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
  border-radius: 300px 0 0 0;
  z-index: 0;

  @media (max-width: 740px) {
    border-radius: calc(150 / 320 * 100vw) 0 0 0;
  }
}
.ce-career__inner {
  max-width: calc(var(--inner-width02) + var(--inner-padding-pc) * 2);
  margin: 0 auto;
  padding: 0 var(--inner-padding-pc);
  position: relative;
}
.ce-career__background {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.6;
}
.ce-career__background img {
  width: auto;
  height: 600px;
  display: block;
}
.ce-career__content {
  align-items: center;
  display: grid;
  grid-template-columns: auto 1fr;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}
.ce-career__text {
  max-width: 510px;
}
.ce-career__title {
  margin-top: 8px;
}
.ce-career__title-line {
  color: var(--PageColor-Fukamidori);
  font-family: var(--Font-NotoSerifJP);
  font-weight: 600;
  font-size: 6rem;
  line-height: 1;
  display: block;
}
.ce-career__title-line:last-child {
  margin-left: 120px;
}
.ce-career__subtitle {
  margin-top: 16px;
}
.ce-career__subtitle-line {
  display: flex;
  align-items: baseline;
  margin-bottom: 0;
}
.ce-career__subtitle-text {
  color: var(--Color-Gray-800);
  font-family: var(--Font-NotoSerifJP);
  font-weight: 600;
  line-height: 1.2;
}
.ce-career__subtitle-text.-large {
  font-size: 3.2rem;
  font-feature-settings: "palt" 1;
}
.ce-career__subtitle-text.-small {
  font-size: 2.4rem;
}
.ce-career__description {
  color: var(--Color-Gray-800);
  font-family: var(--Font-NotoSansJP);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
  margin-top: 18px;
  letter-spacing: -0.02em;
}
.ce-career__description p {
  margin-bottom: 0;
}
.ce-career__image {
  max-width: min(calc(400 / 1100 * 100vw), 400px);
}
.ce-career__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* 740px以下のレスポンシブ対応 */
@media (max-width: 740px) {
  .ce-career__body {
    padding: calc(40 / 320 * 100vw) 0 calc(50 / 320 * 100vw);
  }
  .ce-career__inner {
    padding: 0 calc(18 / 320 * 100vw);
  }
  .ce-career__background {
    max-width: 100%;
  }
  .ce-career__background img {
    height: auto;
    width: 100%;
  }
  .ce-career__content {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "image title"
      "image subtitle"
      "description description";
    gap: 0;
  }
  .ce-career__image {
    max-width: 100%;
    width: calc(100 / 320 * 100vw);
    align-self: end;
    grid-area: image;
  }
  .ce-career__text {
    max-width: 100%;
    display: contents;
  }
  .ce-career__title {
    margin-top: 0;
    grid-area: title;
    font-size: calc(26 / 320 * 100vw);
    margin-left: calc(-10 / 320 * 100vw);
  }
  .ce-career__title-line {
    font-size: calc(26 / 320 * 100vw);
    text-align: left;
  }
  .ce-career__title-line:last-child {
    margin-left: calc(50 / 320 * 100vw);
  }
  .ce-career__subtitle {
    margin-top: calc(12 / 320 * 100vw);
    grid-area: subtitle;
    margin-left: calc(-10 / 320 * 100vw);
  }
  .ce-career__subtitle-text.-large {
    font-size: calc(18 / 320 * 100vw);
    letter-spacing: calc(-2 / 18 * 1em);
  }
  .ce-career__subtitle-text.-small {
    font-size: calc(14 / 320 * 100vw);
  }
  .ce-career__description {
    grid-area: description;
    font-size: calc(12 / 320 * 100vw);
    margin-top: calc(12 / 320 * 100vw);
    line-height: 1.6;
    padding-inline: calc(12 / 320 * 100vw);
  }
  .ce-career__description span + span {
    margin-top: calc(4 / 320 * 100vw);
    display: block;
  }
}

/* Pickup */
.ce-pickup {
  background-color: var(--PageColor-OysterWhite);
  padding: 56px 0 40px;
  position: relative;
}
.ce-pickup__title {
  color: var(--Color-Gray-800);
  font-family: var(--Font-NotoSerifJP);
  font-weight: 600;
  font-size: 4rem;
  text-align: center;
  letter-spacing: 0.02em;
}
.ce-pickup__slider-wrapper {
  position: relative;
  margin: 28px auto 0;
}

/* Pickup Slider */
.ce-pickup__slider {
  position: relative;
}
.ce-pickup__slider .splide__slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.ce-pickup__slider .splide__arrow {
  opacity: 1;
  background-image: url("../img/pages/career-enhancement/slick-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 0;
  width: 33px;
  height: 33px;
  background-color: transparent;
  @media (max-width: 740px) {
    width: calc(28 / 320 * 100vw);
    height: calc(28 / 320 * 100vw);
  }
}
.ce-pickup__slider .splide__arrow svg {
  display: none;
}
.ce-pickup__slider .splide__arrow--prev {
  left: 51px;
  translate: 0 -100%;
  rotate: 180deg;
}
.ce-pickup__slider .splide__arrow--next {
  right: 51px;
}
.ce-pickup__slider.splide:not(.is-overflow) .splide__pagination {
  display: flex;
}
.ce-pickup__slider .splide__pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  list-style: none;
  padding: 0;
  position: static;
}
.ce-pickup__slider .splide__pagination__page {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--Color-Gray-200);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  opacity: 1;
}
.ce-pickup__slider .splide__pagination__page.is-active {
  background-color: var(--PageColor-Midori);
  transform: scale(1);
}
.ce-pickup__slider .splide__pagination__page:hover {
  opacity: 0.7;
}
@media (max-width: 740px) {
  .ce-pickup {
    padding: calc(33 / 320 * 100vw) 0 calc(33 / 320 * 100vw);
  }
  .ce-pickup__title {
    font-size: calc(24 / 320 * 100vw);
  }
  .ce-pickup__slider-wrapper {
    margin: calc(20 / 320 * 100vw) auto 0;
  }
  .ce-pickup__slider .splide__arrow--prev {
    left: calc(11 / 320 * 100vw);
  }
  .ce-pickup__slider .splide__arrow--next {
    right: calc(11 / 320 * 100vw);
  }
  .ce-pickup__slider .splide__pagination {
    margin-top: calc(10 / 320 * 100vw);
  }
  .ce-pickup__slider .splide__pagination__page {
    width: calc(10 / 320 * 100vw);
    height: calc(10 / 320 * 100vw);
    margin: 0;
  }
}

/* ce-reason */
.ce-reason {
  background-color: var(--PageColor-PearlWhite);
  padding: 80px 0;
  position: relative;
}
.ce-reason__inner {
  max-width: calc(var(--inner-width02) + var(--inner-padding-pc) * 2);
  margin: 0 auto;
  padding: 0 var(--inner-padding-pc);
}
.ce-reason__header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  margin-inline: auto;
  width: fit-content;
}
.ce-reason__badge {
  width: clamp(140px, calc(232 / 1100 * 100vw), 232px);
  height: clamp(140px, calc(232 / 1100 * 100vw), 232px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--PageColor-Fukamidori) 0%, var(--PageColor-Tokiwa) 100%);
  color: var(--Color-White);
  font-family: var(--Font-NotoSerifJP);
  text-align: center;
  font-weight: 600;
  display: grid;
  place-items: center;
}
.ce-reason__badge-inner {
  display: grid;
  place-items: center;
  width: fit-content;
  height: fit-content;
  grid-template-areas:
    "badge01 badge01 badge01 badge02"
    "badge03 badge03 badge03 badge03"
    "badge04 badge04 badge05 badge05";
  margin-top: -22px;
  line-height: 1;
}
.ce-reason__badge01 {
  grid-area: badge01;
  font-size: clamp(4.6rem, calc(77.33 / 1100 * 100vw), 7.733rem);
}
.ce-reason__badge02 {
  grid-area: badge02;
  font-size: clamp(2.3rem, calc(39 / 1100 * 100vw), 3.9rem);
  align-self: end;
  margin-bottom: 8px;
}
.ce-reason__badge03 {
  grid-area: badge03;
  font-size: clamp(1.4rem, calc(24.06 / 1100 * 100vw), 2.406rem);
  margin-top: 4px;
  margin-bottom: 4px;
}
.ce-reason__badge04 {
  grid-area: badge04;
  font-size: clamp(2.1rem, calc(36.09 / 1100 * 100vw), 3.609rem);
}
.ce-reason__badge05 {
  grid-area: badge05;
  font-size: clamp(1.4rem, calc(24.06 / 1100 * 100vw), 2.406rem);
  align-self: end;
}
.ce-reason__title {
  color: var(--Color-Gray-800);
}
.ce-reason__title-main {
  font-family: var(--Font-NotoSerifJP);
  font-weight: 600;
  font-size: clamp(2.4rem, calc(42 / 1100 * 100vw), 4.2rem);
  line-height: 1.2;
  display: block;
}
.ce-reason__title-sub {
  font-family: var(--Font-NotoSerifJP);
  font-weight: 600;
  font-size: clamp(2.6rem, calc(48 / 1100 * 100vw), 4.8rem);
  line-height: 1.2;
  color: var(--Color-Gray-800);
  margin-bottom: 0;
}
.ce-reason__content {
  position: relative;
  max-width: 860px;
  margin: 40px auto 0;
}
.ce-reason__points {
  background-color: var(--Color-White);
  border-radius: 16px;
  padding: 20px 36px 18px 72px;
  display: grid;
  @media (max-width: 1100px) {
    padding: 20px 24px 18px 24px;
  }
}
.ce-reason__point {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  position: relative;
  min-height: 71px;
  max-width: 660px;
  padding-block: 14px;
}
.ce-reason__point:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, var(--Color-Gray-500) 4px, transparent 4px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  background-position: bottom;
}
.ce-reason__point-number {
  position: relative;
  text-align: center;
}
.ce-reason__point-label {
  font-family: var(--Font-NotoSerifJP);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--PageColor-Tokiwa);
  display: block;
  font-variation-settings: "wdth" 100;
}
.ce-reason__point-num {
  font-family: var(--Font-Oswald);
  font-weight: 500;
  font-size: 6.4rem;
  line-height: 1;
  color: var(--Color-Gray-800);
  display: block;
}
.ce-reason__point-text {
  font-family: var(--Font-NotoSansJP);
  font-weight: 600;
  font-size: clamp(2.4rem, calc(30 / 1100 * 100vw), 3rem);
  line-height: 1.3;
  color: var(--Color-Gray-800);
  letter-spacing: calc(-1.4 / 30 * 1em);
  z-index: 0;
}
.ce-reason__point-circle {
  position: relative;
  z-index: -1;
}
.ce-reason__point-circle::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  display: block;
  width: 85px;
  height: 65px;
  background-image: url("../img/pages/career-enhancement/sign@2x.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
.ce-reason__image {
  width: 220px;
  position: absolute;
  inset: auto -71px -39px auto;
  @media (max-width: 1100px) {
    inset: auto 0 -24px auto;
    width: calc(220 / 1100 * 100vw);
  }
}
.ce-reason__image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 740px) {
  .ce-reason {
    padding: 40px 0;
  }
  .ce-reason__inner {
    padding: 0 var(--inner-padding-sp);
  }
  .ce-reason__header {
    grid-template-columns: 1fr;
    gap: calc(16 / 320 * 100vw);
  }
  .ce-reason__badge {
    width: calc(140 / 320 * 100vw);
    height: calc(140 / 320 * 100vw);
    justify-self: center;
  }
  .ce-reason__badge-inner {
    grid-template-areas:
      "badge01 badge01 badge01 badge02"
      "badge03 badge03 badge03 badge03"
      "badge04 badge04 badge05 badge05";
    margin-top: calc(-2 / 320 * 100vw);
  }
  .ce-reason__badge01 {
    font-size: calc(46 / 320 * 100vw);
  }
  .ce-reason__badge02 {
    font-size: calc(23 / 320 * 100vw);
    margin-bottom: calc(8 / 320 * 100vw);
  }
  .ce-reason__badge03 {
    font-size: calc(14 / 320 * 100vw);
    margin-top: calc(4 / 320 * 100vw);
    margin-bottom: calc(4 / 320 * 100vw);
  }
  .ce-reason__badge04 {
    font-size: calc(21 / 320 * 100vw);
  }
  .ce-reason__badge05 {
    font-size: calc(14 / 320 * 100vw);
  }
  .ce-reason__title-main {
    font-size: calc(24 / 320 * 100vw);
    text-align: center;
  }
  .ce-reason__title-sub {
    font-size: calc(32 / 320 * 100vw);
    text-align: center;
    display: block;
  }
  .ce-reason__content {
    margin: calc(16 / 320 * 100vw) auto 0;
  }
  .ce-reason__points {
    border-radius: calc(16 / 320 * 100vw);
    padding: calc(4 / 320 * 100vw) calc(12 / 320 * 100vw) calc(12 / 320 * 100vw);
  }
  .ce-reason__point {
    gap: calc(8 / 320 * 100vw);
    padding-block: calc(14 / 320 * 100vw);
  }
  .ce-reason__point-label {
    font-size: calc(12 / 320 * 100vw);
  }
  .ce-reason__point-num {
    font-size: calc(50 / 320 * 100vw);
  }
  .ce-reason__point-text {
    font-size: calc(18 / 320 * 100vw);
    letter-spacing: calc(-2 / 30 * 1em);
  }
  .ce-reason__point-circle::before {
    width: calc(42 / 320 * 100vw);
    height: calc(40 / 320 * 100vw);
  }
  .ce-reason__image {
    position: static;
    width: calc(240 / 320 * 100vw);
    display: block;
    margin: calc(16 / 320 * 100vw) auto 0;
  }
}

/* ce-student */
.ce-student {
  padding: 140px 0 0;
  position: relative;
  z-index: 0;
  @media (max-width: 740px) {
    padding: calc(60 / 320 * 100vw) 0 0;
  }
}
.ce-student::after {
  content: "";
  position: absolute;
  inset: 286px auto auto calc(50% - 70px);
  width: 720px;
  height: 448px;
  background: var(--PageColor-OysterWhite);
  z-index: -1;
  @media (max-width: 740px) {
    inset: calc(156) auto auto calc(50% - 70px);
  }
}
.ce-student .ce-heading::after {
  @media (max-width: 740px) {
    height: calc(52 / 320 * 100vw);
    inset: auto auto calc(-80 / 320 * 100vw) 50%;
  }
}
.ce-student__vertical-text {
  position: absolute;
  inset: 10px auto auto -80px;
  @media (max-width: 1200px) {
    inset: 10px auto auto 0;
  }
  @media (max-width: 740px) {
    inset: calc(80 / 320 * 100vw) auto auto calc(30 / 320 * 100vw);
  }
}
.ce-student-br {
  display: none;
  @media (max-width: 1200px) {
    display: block;
  }
}
.ce-student__list {
  position: relative;
  max-width: calc(var(--inner-width) + var(--inner-padding-pc) * 2);
  margin: 0 auto;
  padding: 0 var(--inner-padding-pc);
  display: grid;
  gap: 18px;
  margin-top: 134px;
  @media (max-width: 740px) {
    margin-top: calc(94 / 320 * 100vw);
    padding: 0 var(--inner-padding-sp);
    gap: calc(12 / 320 * 100vw);
  }
}
.ce-student__item {
  position: relative;
  overflow: hidden;
  display: block;
}
.ce-student__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: var(--PageColor-Tokiwa);
  z-index: 1;
  @media (max-width: 740px) {
    height: calc(4 / 320 * 100vw);
  }
}
.ce-student__item-image {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  @media (max-width: 740px) {
    height: calc(180 / 320 * 100vw);
  }
}
.ce-student__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ce-student__item-content {
  position: absolute;
  inset: auto 46px 109px auto;
  z-index: 2;
  color: var(--Color-White);
  width: fit-content;
  @media (max-width: 740px) {
    inset: calc(8 / 320 * 100vw) calc(20 / 320 * 100vw) auto auto;
  }
}
.ce-student__item:nth-child(2) .ce-student__item-content,
.ce-student__item:nth-child(3) .ce-student__item-content {
  left: 56px;
  @media (max-width: 740px) {
    inset: calc(8 / 320 * 100vw) auto auto calc(20 / 320 * 100vw);
  }
}
.ce-student__item-age-num {
  font-family: var(--Font-Oswald);
  font-weight: 500;
  font-size: 16.6rem;
  line-height: 1.2;
  display: inline;
  letter-spacing: -0.02em;
  @media (max-width: 740px) {
    font-size: calc(64 / 320 * 100vw);
  }
}
.ce-student__item-age {
  @media (max-width: 740px) {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: end;
    margin-left: auto;
    width: fit-content;
  }
}
.ce-student__item:nth-child(2) .ce-student__item-age,
.ce-student__item:nth-child(3) .ce-student__item-age {
  @media (max-width: 740px) {
    margin-left: 0;
  }
}
.ce-student__item-age-text {
  font-family: var(--Font-NotoSansJP);
  font-weight: 600;
  font-size: 9.2rem;
  line-height: 1;
  display: inline;
  letter-spacing: -0.02em;
  @media (max-width: 740px) {
    font-size: calc(24 / 320 * 100vw);
    position: relative;
    top: calc(-8 / 320 * 100vw);
  }
}
.ce-student__item-age-text02 {
  @media (max-width: 740px) {
    font-size: calc(16 / 320 * 100vw);
    display: block;
  }
}
.ce-student__item-info {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 6px;
  width: fit-content;
  letter-spacing: -0.02em;
  font-family: var(--Font-NotoSansJP);
  @media (max-width: 740px) {
    gap: calc(12 / 320 * 100vw);
    padding: calc(3 / 320 * 100vw);
  }
}
.ce-student__item:nth-child(1) .ce-student__item-info {
  background-color: var(--PageColor-Turquoise);
  margin-left: auto;
}
.ce-student__item:nth-child(2) .ce-student__item-info,
.ce-student__item:nth-child(3) .ce-student__item-info {
  background-color: var(--PageColor-Wakakusa);
}
.ce-student__item-name {
  font-weight: 500;
  font-size: 3rem;
  line-height: 1;
  position: relative;
  @media (max-width: 740px) {
    font-size: calc(10 / 320 * 100vw);
  }
}
.ce-student__item-name::after {
  content: "";
  position: absolute;
  inset: 50% -12px auto auto;
  translate: 0 calc(-50% + 3px);
  width: 3px;
  height: 28.762px;
  background-color: var(--Color-White);
  display: block;
  @media (max-width: 740px) {
    height: calc(10 / 320 * 100vw);
    width: calc(2 / 320 * 100vw);
    inset: 50% calc(-5 / 320 * 100vw) auto auto;
    translate: 0 calc(-50%);
  }
}
.ce-student__item-major {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  @media (max-width: 740px) {
    font-size: calc(10 / 320 * 100vw);
  }
}
.ce-student__item-desc {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.3;
  margin-top: 14px;
  letter-spacing: -0.02em;
  @media (max-width: 740px) {
    font-size: calc(12 / 320 * 100vw);
    margin-top: calc(4 / 320 * 100vw);
  }
}
.ce-student__item:nth-child(1) .ce-student__item-desc {
  text-align: right;
}
.ce-student__item-link {
  position: absolute;
  bottom: 44px;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1px 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--Color-White);
  @media (max-width: 740px) {
    right: calc(20 / 320 * 100vw);
    bottom: calc(19 / 320 * 100vw);
  }
}
.ce-student__item:nth-child(1) .ce-student__item-link {
  right: 40px;
  @media (max-width: 740px) {
    right: calc(20 / 320 * 100vw);
  }
}
.ce-student__item:nth-child(2) .ce-student__item-link,
.ce-student__item:nth-child(3) .ce-student__item-link {
  right: auto;
  left: 56px;
  @media (max-width: 740px) {
    left: calc(20 / 320 * 100vw);
  }
}
.ce-student__item-link > span {
  font-family: var(--Font-NotoSansJP);
  font-weight: 500;
  font-size: 2.653rem;
  line-height: 1;
  letter-spacing: -0.08em;
  @media (max-width: 740px) {
    font-size: calc(12 / 320 * 100vw);
  }
}
.ce-student__item-link img {
  width: 33px;
  height: 10px;
  @media (max-width: 740px) {
    width: calc(22 / 320 * 100vw);
    height: calc(6 / 320 * 100vw);
  }
}
.ce-student__button {
  margin-top: 60px;
  @media (max-width: 740px) {
    margin-top: calc(28 / 320 * 100vw);
    padding: 0 var(--inner-padding-sp);
  }
}

/* ce-contact */
.ce-contact {
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  @media (max-width: 740px) {
    margin-top: calc(40 / 320 * 100vw);
    padding: 0 var(--inner-padding-sp);
  }
}
.ce-contact.-last {
  margin-bottom: 80px;
  @media (max-width: 740px) {
    margin-top: calc(36 / 320 * 100vw);
    margin-bottom: calc(20 / 320 * 100vw);
  }
}
.ce-contact .ce-heading__title-main {
  @media (max-width: 740px) {
    font-size: calc(22 / 320 * 100vw);
  }
}
.ce-contact__heading {
  margin-bottom: 40px;
  @media (max-width: 740px) {
    margin-bottom: calc(16 / 320 * 100vw);
  }
}
.ce-contact__inner {
  position: relative;
  width: 100%;
  height: 320px;
  max-width: 1200px;
  margin: 0 auto;
  @media (max-width: 740px) {
    height: calc(280 / 320 * 100vw);
    padding-top: calc(40 / 320 * 100vw);
  }
}
.ce-contact__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.ce-contact__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ce-contact__content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 var(--inner-padding-pc);
}
.ce-contact__title {
  text-align: center;
  color: var(--Color-White);
  font-family: var(--Font-NotoSerifJP);
  font-weight: 600;
}
.ce-contact__title-line {
  display: block;
  font-size: 4rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
  @media (max-width: 740px) {
    font-size: calc(22 / 320 * 100vw);
    line-height: 1.25;
  }
}
.ce-contact__buttons {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 726px;
  width: 100%;
  @media (max-width: 740px) {
    grid-template-columns: 1fr;
    gap: calc(12 / 320 * 100vw);
    margin-top: calc(6 / 320 * 100vw);
    margin-inline: auto;
    width: fit-content;
  }
}
.ce-contact__buttons .ce-com-button {
  max-width: 348px;
  width: 100%;
  @media (max-width: 740px) {
    width: calc(240 / 320 * 100vw);
    max-width: calc(348 / 320 * 100vw);
  }
}
.ce-contact__buttons .ce-com-button__link {
  padding: 12px 18px;
  @media (max-width: 740px) {
    padding: calc(9 / 320 * 100vw) calc(12 / 320 * 100vw);
    font-size: calc(14 / 320 * 100vw);
  }
}

/* ce-point */
.ce-point {
  position: relative;
  margin-top: 235px;
  @media (max-width: 740px) {
    margin-top: calc(60 / 320 * 100vw);
  }
}
.ce-point__inner {
  max-width: calc(var(--inner-width02) + var(--inner-padding-pc) * 2);
  margin: 0 auto;
  padding: 0 var(--inner-padding-pc);
  position: relative;
  @media (max-width: 740px) {
    padding: 0 var(--inner-padding-sp);
  }
}
.ce-point__title {
  position: relative;
  z-index: 1;
  color: var(--Color-Gray-800);
  display: grid;
  grid-template-areas:
    ". main main number"
    ". sub sub number";
  align-items: center;
  justify-items: center;
  font-family: var(--Font-NotoSerifJP);
  width: fit-content;
  margin-inline: auto;
}
.ce-point .ce-heading::after {
  @media (max-width: 740px) {
    height: calc(32 / 320 * 100vw);
    inset: auto auto calc(-65 / 320 * 100vw) 50%;
  }
}
.ce-point__title-main {
  grid-area: main;
  font-weight: 600;
  font-size: 5.6rem;
  line-height: 1.2;
  justify-self: end;
  @media (max-width: 740px) {
    font-size: calc(24 / 320 * 100vw);
  }
}
.ce-point__title-sub {
  grid-area: sub;
  font-weight: 600;
  font-size: 5.6rem;
  line-height: 1.2;
  @media (max-width: 740px) {
    font-size: calc(24 / 320 * 100vw);
  }
}
.ce-point__title-number {
  grid-area: number;
  font-family: var(--Font-Oswald);
  font-weight: 500;
  font-size: 12.8rem;
  line-height: 1;
  @media (max-width: 740px) {
    font-size: calc(56 / 320 * 100vw);
  }
}
.ce-point__title-sen {
  font-weight: 800;
  font-size: 5.8rem;
  line-height: 1;
  position: relative;
  bottom: 4px;
  @media (max-width: 740px) {
    font-size: calc(26 / 320 * 100vw);
  }
}
.ce-point__content {
  position: relative;
  margin-top: 136px;
  @media (max-width: 740px) {
    margin-top: calc(80 / 320 * 100vw);
  }
}
.ce-point__content::before {
  content: "";
  position: absolute;
  inset: -115px 0 auto calc(50% - 70px);
  width: 720px;
  height: 420px;
  background-color: var(--PageColor-OysterWhite);
  z-index: 0;
  display: block;
  @media (max-width: 740px) {
    inset: calc(-69 / 320 * 100vw) auto auto calc(50% - 70px);
  }
}
.ce-point__content::after {
  content: "";
  position: absolute;
  inset: 410px auto auto calc(50% - 650px);
  width: 720px;
  height: 600px;
  background-color: var(--PageColor-Torinoko);
  z-index: 0;
  @media (max-width: 740px) {
    inset: calc(1320 / 320 * 100vw) auto auto calc(50% - 790px);
    height: calc(880 / 320 * 100vw);
  }
}
.ce-point__list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: subgrid;
  gap: 40px;
  @media (max-width: 1200px) {
    grid-template-columns: repeat(4, 1fr);
  }
  @media (max-width: 740px) {
    grid-template-columns: 1fr;
    grid-template-rows: unset;
    gap: calc(28 / 320 * 100vw) 0;
  }
}
.ce-point__item {
  background-color: var(--Color-White);
  border: 2px solid var(--Color-Gray-800);
  border-bottom: 6px solid var(--Color-Gray-800);
  padding: 10px 10px 32px;
  display: grid;
  /* grid-template-rows: subgrid; */
  /* grid-row: span 3; */
  gap: 0;
  grid-column: span 2;

  grid-template-columns: 100%;
  grid-template-rows: auto auto 1fr;
  @media (max-width: 740px) {
    grid-row: span 1;
    grid-template-rows: unset;
  }
}
.ce-point__item:nth-child(4) {
  grid-column: 2 / 4;
  @media (max-width: 1200px) {
    grid-column: 3 / 5;
  }
  @media (max-width: 740px) {
    grid-column: 1;
  }
}
.ce-point__item:nth-child(5) {
  grid-column: 4 / 6;
  @media (max-width: 1200px) {
    grid-column: 1 / 3;
  }
  @media (max-width: 740px) {
    grid-column: 1;
  }
}
.ce-point__item-image {
  width: 100%;
  height: auto;
  aspect-ratio: 320 / 240;
  @media (max-width: 740px) {
    height: auto;
  }
}
.ce-point__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ce-point__item-header {
  gap: 0 8px;
  align-items: center;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "label title"
    "number title";
  padding-inline: 16px 8px;
  margin-top: 12px;
}
.ce-point__item-label {
  grid-area: label;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--PageColor-Fukamidori);
  letter-spacing: -0.02em;
  margin-top: 6px;
  font-family: var(--Font-NotoSerifJP);
  @media (max-width: 740px) {
    font-size: calc(13.3 / 320 * 100vw);
    margin-top: calc(8 / 320 * 100vw);
  }
}
.ce-point__item-number {
  grid-area: number;
  font-family: var(--Font-Oswald);
  font-weight: 500;
  font-size: 5.6rem;
  line-height: 1;
  color: var(--Color-Gray-800);
  text-align: center;
  align-self: start;
  @media (max-width: 740px) {
    font-size: calc(46 / 320 * 100vw);
  }
}
.ce-point__item-title {
  grid-area: title;
  font-family: var(--Font-NotoSansJP);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.25;
  color: var(--Color-Gray-800);
  letter-spacing: calc(-0.72 / 24 * 1em);
  position: relative;
  z-index: 1;
  height: 90px;
  align-self: center;
  place-content: center;
  @media (max-width: 740px) {
    font-size: calc(20 / 320 * 100vw);
  }
}
.ce-point__item-circle {
  position: relative;
  z-index: -1;
}
.ce-point__item-circle::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  display: block;
  width: 66px;
  height: 53px;
  background-image: url("../img/pages/career-enhancement/point_circle@2x.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  @media (max-width: 740px) {
    width: calc(55 / 320 * 100vw);
    height: calc(42 / 320 * 100vw);
  }
}
.ce-point__item-text {
  font-family: var(--Font-NotoSansJP);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.3;
  color: var(--Color-Gray-800);
  text-align: justify;
  padding: 8px 18px 0;
  letter-spacing: 0;
  @media (max-width: 740px) {
    font-size: calc(12 / 320 * 100vw);
    padding: calc(14 / 320 * 100vw) calc(14 / 320 * 100vw) 0;
  }
}
.ce-point__banner {
  margin-top: 80px;
  max-width: 1000px;
  margin-inline: auto;
  @media (max-width: 740px) {
    margin-top: calc(40 / 320 * 100vw);
  }
}
.e-point__banner-image {
  display: block;
}

/* ce-course */
.ce-course {
  position: relative;
  margin-top: 140px;
  @media (max-width: 740px) {
    margin-top: calc(60 / 320 * 100vw);
  }
}
.ce-course__inner {
  margin: 0 auto;
  position: relative;
}
.ce-course .ce-course__vertical-text {
  position: absolute;
  inset: 10px auto auto calc(50% - 50vw + 80px);
  z-index: 1;
  @media (max-width: 1200px) {
    inset: 10px auto auto 0;
  }
  @media (max-width: 740px) {
    inset: calc(60 / 320 * 100vw) auto auto calc(20 / 320 * 100vw);
  }
}
.ce-course__vertical-text .ce-vertical-text__line {
  font-size: 3.4rem;
  @media (max-width: 740px) {
    font-size: calc(20 / 320 * 100vw);
  }
}
.ce-course__content {
  position: relative;
  margin-top: 123px;
  @media (max-width: 740px) {
    margin-top: calc(67 / 320 * 100vw);
  }
}
.ce-course__background {
  position: absolute;
  inset: -100px 0 auto calc(50% - 70px);
  width: 720px;
  height: 715px;
  background-color: var(--PageColor-OysterWhite);
  z-index: 0;
  @media (max-width: 740px) {
    inset: calc(-58 / 320 * 100vw) auto auto calc(50% - 70px);
  }
}
.ce-course__description {
  max-width: calc(720px + var(--inner-padding-pc) * 2);
  margin: auto;
  position: relative;
  z-index: 1;
  padding-inline: var(--inner-padding-pc);
  font-family: var(--Font-NotoSansJP);
  font-weight: 500;
  font-size: 2rem;
  line-height: 2;
  color: var(--Color-Gray-800);
  letter-spacing: -0.05em;
  @media (max-width: 1200px) {
    padding-inline: 120px var(--inner-padding-sp);
  }
  @media (max-width: 740px) {
    font-size: calc(12 / 320 * 100vw);
    line-height: calc(18 / 12);
    padding-inline: calc(110 / 320 * 100vw) calc(30 / 320 * 100vw);
  }
}
.ce-course__description span + span {
  @media (max-width: 740px) {
    margin-top: calc(8 / 320 * 100vw);
    display: block;
  }
}
.ce-course__departments {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  z-index: 1;
  margin-top: 24px;
  @media (max-width: 740px) {
    margin-top: calc(20 / 320 * 100vw);
  }
}
.ce-course__department {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding-bottom: 40px;
  aspect-ratio: 640 / 400;
  @media (max-width: 1200px) {
    aspect-ratio: unset;
  }
  @media (max-width: 740px) {
    padding-bottom: 0;
  }
}
.ce-course__department.-shinkyu {
  border-top: 8px solid var(--PageColor-Moegi);
  @media (max-width: 740px) {
    border-top: calc(4 / 320 * 100vw) solid var(--PageColor-Moegi);
  }
}
.ce-course__department.-judo {
  border-top: 8px solid var(--PageColor-Asagi);
  @media (max-width: 740px) {
    border-top: calc(4 / 320 * 100vw) solid var(--PageColor-Asagi);
  }
}
.ce-course__department-image {
  width: 100%;
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
  display: block;
  @media (max-width: 1000px) {
    position: relative;
  }
}
.ce-course__department-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ce-course__department-title {
  font-family: var(--Font-NotoSerifJP);
  font-weight: 600;
  font-size: 4.5rem;
  line-height: 1.2;
  color: var(--Color-White);
  z-index: 2;
  margin-top: 53px;
  @media (max-width: 1000px) {
    position: absolute;
    inset: 18% auto auto 50%;
    translate: -50% 0;
    width: 100%;
    text-align: center;
    z-index: 2;
    margin-top: 0;
  }
  @media (max-width: 740px) {
    font-size: calc(22 / 320 * 100vw);
    inset: calc(80 / 320 * 100vw) auto auto 50%;
  }
}
.ce-course__courses {
  display: flex;
  gap: 23px;
  z-index: 2;
  margin-top: 110px;
  @media (max-width: 1200px) {
    gap: 12px;
  }
  @media (max-width: 1000px) {
    flex-direction: column;
    margin-top: 0;
    width: 100%;
  }
  @media (max-width: 740px) {
    gap: calc(8 / 320 * 100vw);
    padding: calc(12 / 320 * 100vw) calc(14 / 320 * 100vw);
  }
}
.ce-course__department.-shinkyu .ce-course__courses {
  background-color: rgba(142, 183, 59, 0.5);
}
.ce-course__department.-judo .ce-course__courses {
  background-color: rgba(37, 168, 190, 0.5);
}
.ce-course__course-item {
  width: 168px;
  padding: 20px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  opacity: 0.8;
  @media (max-width: 1200px) {
    width: 140px;
  }
  @media (max-width: 1000px) {
    width: 100%;
  }
  @media (max-width: 740px) {
    padding: calc(4 / 320 * 100vw) calc(3 / 320 * 100vw);
    display: grid;
    grid-template-columns: auto auto;
    grid-template-areas:
      "name name"
      "day time";
    gap: calc(4 / 320 * 100vw) calc(2 / 320 * 100vw);
  }
}
.ce-course__course-item.-shinkyu {
  background-color: var(--PageColor-Moegi);
}
.ce-course__course-item.-judo {
  background-color: var(--PageColor-Asagi);
}
.ce-course__course-name {
  font-family: var(--Font-NotoSerifJP);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  color: var(--Color-White);
  text-align: center;
  height: 40px;
  @media (max-width: 1000px) {
    height: auto;
  }
  @media (max-width: 740px) {
    font-size: calc(12 / 320 * 100vw);
    letter-spacing: -0.02em;
    grid-area: name;
  }
}
.ce-course__course-days {
  display: flex;
  align-items: center;
  gap: 4px;
  @media (max-width: 740px) {
    gap: calc(1 / 320 * 100vw);
    grid-area: day;
  }
}
.ce-course__course-day {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--Color-White);
  font-family: var(--Font-NotoSansJP);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  @media (max-width: 740px) {
    width: calc(16 / 320 * 100vw);
    height: calc(16 / 320 * 100vw);
    font-size: calc(11 / 320 * 100vw);
  }
}
.ce-course__course-item.-shinkyu .ce-course__course-day {
  color: var(--PageColor-Moegi);
}
.ce-course__course-item.-judo .ce-course__course-day {
  color: var(--PageColor-Asagi);
}
.ce-course__course-separator {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--Color-White);
  @media (max-width: 740px) {
    font-size: calc(8 / 320 * 100vw);
  }
}
.ce-course__course-time {
  font-family: var(--Font-Oswald);
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--Color-Gray-800);
  text-align: center;
  letter-spacing: 0;
  @media (max-width: 740px) {
    font-size: calc(16 / 320 * 100vw);
    grid-area: time;
    letter-spacing: -0.06em;
  }
}

/* ce-night */
.ce-night {
  position: relative;
  margin-top: 140px;
  background-image: url("../img/pages/career-enhancement/night_background@2x.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 60px var(--inner-padding-pc);
  @media (max-width: 740px) {
    margin-top: calc(68 / 320 * 100vw);
    background-image: url("../img/pages/career-enhancement/night_background_sp@2x.webp");
    padding: calc(60 / 320 * 100vw) var(--inner-padding-sp) calc(53 / 320 * 100vw);
  }
}
.ce-night__inner {
  position: relative;
  max-width: calc(1300px + var(--inner-padding-pc) * 2);
  margin: 0 auto;
}
.ce-night__circle-image {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
}
.ce-night__circle-image.-left {
  width: 216px;
  top: 10px;
  left: calc(50% - 580px);
}
.ce-night__circle-image.-right {
  width: 160px;
  top: 140px;
  left: calc(50% + 390px);
}
.ce-night__circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ce-night__content {
  position: relative;
  z-index: 3;
  margin-inline: auto;
  max-width: 800px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: ". text badge";
  align-items: center;
  gap: 10px;
  @media (max-width: 740px) {
    grid-template-columns: 1fr;
    grid-template-areas: "text" "badge";
    gap: 0;
  }
}
.ce-night__text-area {
  grid-area: text;
  font-family: var(--Font-NotoSerifJP);
  color: var(--Color-White);
}
.ce-night__subtitle {
  font-weight: 500;
  font-size: clamp(2rem, calc(30 / 1100 * 100vw), 3rem);
  line-height: 1.3;
  letter-spacing: -0.06em;
  text-align: center;
  @media (max-width: 740px) {
    font-size: calc(16 / 320 * 100vw);
  }
}
.ce-night__title {
  font-weight: 600;
  font-size: clamp(4rem, calc(56 / 1100 * 100vw), 5.6rem);
  line-height: 1.2;
  margin-top: 16px;
  text-align: center;
  letter-spacing: -0.02em;
  @media (max-width: 740px) {
    font-size: calc(30 / 320 * 100vw);
  }
}
.ce-night__badge-area {
  grid-area: badge;
  @media (max-width: 740px) {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "badge image";
    align-items: center;
    gap: calc(10 / 320 * 100vw);
    margin-inline: auto;
    margin-top: calc(10 / 320 * 100vw);
  }
}
.ce-night__badge-image {
  display: none;
  @media (max-width: 740px) {
    display: block;
    grid-area: image;
    width: calc(104 / 320 * 100vw);
    height: calc(104 / 320 * 100vw);
  }
}
.ce-night__badge {
  grid-area: badge;
  text-align: center;
  position: relative;
  border-block: 1px solid var(--PageColor-Gold);
  width: fit-content;
  color: var(--PageColor-Gold);
  padding: 12px 4px 20px;
  @media (max-width: 740px) {
    padding: calc(8 / 320 * 100vw) calc(4 / 320 * 100vw) calc(8 / 320 * 100vw);
  }
}
.ce-night__badge::before,
.ce-night__badge::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background-color: var(--PageColor-Gold);
}
.ce-night__badge::before {
  top: -7px;
  @media (max-width: 740px) {
    top: calc(-5 / 320 * 100vw);
  }
}
.ce-night__badge::after {
  bottom: -7px;
  @media (max-width: 740px) {
    bottom: calc(-5 / 320 * 100vw);
  }
}
.ce-night__badge-title {
  font-family: var(--Font-NotoSansJP);
  font-weight: 600;
  font-size: 3rem;
  line-height: 1.2;
  @media (max-width: 740px) {
    font-size: calc(19 / 320 * 100vw);
  }
}
.ce-night__badge-content {
  position: relative;
  margin-top: 6px;
  display: flex;
  align-items: end;
  line-height: 0.8;
}
.ce-night__badge-num {
  font-family: var(--Font-Oswald);
  font-weight: 500;
  font-size: 5.8rem;
  @media (max-width: 740px) {
    font-size: calc(37 / 320 * 100vw);
  }
}
.ce-night__badge-percent {
  font-family: var(--Font-Oswald);
  font-weight: 500;
  font-size: 3.3rem;
  @media (max-width: 740px) {
    font-size: calc(21.2 / 320 * 100vw);
  }
}
.ce-night__badge-text {
  font-family: var(--Font-NotoSansJP);
  font-weight: 700;
  font-size: 3rem;
  margin-left: 4px;
  @media (max-width: 740px) {
    font-size: calc(19.1 / 320 * 100vw);
  }
}
.ce-night__buttons {
  margin-top: 24px;
  gap: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  z-index: 3;
  max-width: 670px;
  margin-inline: auto;
  @media (max-width: 740px) {
    grid-template-columns: 1fr;
    gap: calc(18 / 320 * 100vw);
    margin-top: calc(20 / 320 * 100vw);
    max-width: calc(240 / 320 * 100vw);
  }
}
.ce-night__button .ce-com-button__link {
  padding: 24px 24px;
  @media (max-width: 740px) {
    padding: calc(4 / 320 * 100vw);
    border-radius: calc(6 / 320 * 100vw);
  }
}
.ce-night__button .ce-com-button__text {
  line-height: 1.4;
  text-align: center;
  @media (max-width: 740px) {
    font-size: calc(14 / 320 * 100vw);
    line-height: 1.25;
  }
}
/* .ce-night__button-link {
  gap: 12px;
  color: var(--Color-White);
  text-decoration: none;
  padding: 24px 24px;
  border-radius: 8px;
  transition: opacity 0.3s;
  width: 100%;
  text-align: center;
  display: block;
  position: relative;
  @media (max-width: 740px) {
    padding: calc(4 / 320 * 100vw);
    border-radius: calc(6 / 320 * 100vw);
  }
}
.ce-night__button-link:hover {
  opacity: 0.8;
}
.ce-night__button-link.-green {
  background: linear-gradient(273deg, #004824 0%, #04592d 20%, #007b43 100%);
}
.ce-night__button-link.-blue {
  background: linear-gradient(273deg, #107dbc 0%, #1a8cc9 20%, #25a8be 100%);
}
.ce-night__button-text {
  font-family: var(--Font-NotoSansJP);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
  @media (max-width: 740px) {
    font-size: calc(14 / 320 * 100vw);
    line-height: 1;
  }
}
.ce-night__button-arrow {
  width: 24px;
  height: 7px;
  position: absolute;
  inset: 50% 16px auto auto;
  @media (max-width: 740px) {
    width: calc(18 / 320 * 100vw);
    height: calc(5 / 320 * 100vw);
  }
} */

/* ce-gallery */
.ce-gallery {
  position: relative;
  padding: 72px 0 68px;
  background-color: var(--PageColor-OysterWhite);
  @media (max-width: 740px) {
    padding: calc(47 / 320 * 100vw) 0 calc(47 / 320 * 100vw);
  }
}
.ce-gallery__text {
  color: var(--PageColor-Yanagicha);
  text-align: center;
  font-feature-settings: "palt" on;
  font-family: var(--Font-NotoSerifJP);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: calc(5.6 / 28 * 1em);
  margin-top: 18px;
  opacity: 0.5;
  @media (max-width: 740px) {
    font-size: calc(12 / 320 * 100vw);
    margin-top: calc(18 / 320 * 100vw);
  }
}
.ce-gallery__slider {
  width: 100%;
}
.ce-gallery__slider .splide__list {
  align-items: center;
}
.ce-gallery__slider .splide__slide {
  width: auto;
}
.ce-gallery__slider .splide__slide img {
  width: auto;
  max-width: 320px;
  border-radius: 16px;
  display: block;
  @media (max-width: 740px) {
    max-width: calc(152 / 320 * 100vw);
    border-radius: calc(9 / 320 * 100vw);
  }
}

/* ce-event */
.ce-event {
  padding-block: 70px 100px;
  @media (max-width: 1200px) {
    padding-block: 150px 100px;
  }
  @media (max-width: 740px) {
    padding-block: calc(96 / 320 * 100vw) calc(47 / 320 * 100vw);
  }
}
.ce-event__heading {
  position: relative;
}
.ce-event__vertical-text {
  position: absolute;
  inset: -40px auto auto -80px;
  z-index: 1;
  @media (max-width: 1200px) {
    grid-template-columns: 1fr 1fr;
    inset: -120px auto auto 0;
  }
  @media (max-width: 740px) {
    inset: calc(-70 / 320 * 100vw) auto auto 0;
  }
}
.ce-event__vertical-text .ce-vertical-text__line {
  font-size: 3.4rem;
  @media (max-width: 1200px) {
    writing-mode: horizontal-tb;
    font-size: 2.6rem;
    padding: 4px;
  }
  @media (max-width: 740px) {
    font-size: calc(20 / 320 * 100vw);
  }
}
.ce-event__vertical-text .ce-vertical-text__line.js-title-animation {
  @media (max-width: 740px) {
    clip-path: inset(0 100% 0 0);
  }
}
.ce-event__vertical-text .ce-vertical-text__line.js-title-animation.is-active {
  @media (max-width: 1200px) {
    clip-path: inset(0 0 0 0);
  }
}
.ce-event__vertical-text .ce-vertical-text__line:last-child {
  @media (max-width: 1200px) {
    margin-top: 0;
    width: fit-content;
    align-self: end;
  }
}
.ce-event .r4-top-section-title {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transform: translateY(20px);
}
.ce-event .r4-top-section-title.is-active {
  font-size: 5.6rem;
  opacity: 1;
  transform: translateY(0);
  @media (max-width: 740px) {
    font-size: calc(24 / 320 * 100vw);
  }
}
.ce-event .r4-top-section-title::after {
  @media (max-width: 740px) {
    height: calc(52 / 320 * 100vw);
  }
}

/* ce-banner */
.ce-banner {
  background-color: var(--PageColor-OysterWhite);
  padding: 56px var(--inner-padding-pc);
  position: relative;
  @media (max-width: 740px) {
    padding: calc(32 / 320 * 100vw) 0;
  }
}
.ce-banner__inner {
  max-width: calc(1000px + var(--inner-padding-pc) * 2);
  padding: 0 var(--inner-padding-pc);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  @media (max-width: 740px) {
    grid-template-columns: 1fr;
    gap: calc(16 / 320 * 100vw);
    padding: 0 var(--inner-padding-sp);
  }
}
.ce-banner__item {
  position: relative;
  display: block;
  height: 220px;
  overflow: hidden;
  text-decoration: none;
  transition: opacity 0.3s;
  @media (max-width: 740px) {
    height: calc(130 / 320 * 100vw);
  }
}
.ce-banner__item:hover {
  opacity: 0.8;
}
.ce-banner__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.ce-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ce-banner__content {
  position: relative;
  z-index: 3;
  padding: 26px 0 0 15px;
  color: var(--Color-White);
  height: 100%;
  @media (max-width: 740px) {
    padding: calc(16 / 320 * 100vw) 0 0 calc(8 / 320 * 100vw);
  }
}
.ce-banner__item:nth-child(2) .ce-banner__content {
  padding-left: 22px;
  @media (max-width: 740px) {
    padding-left: calc(13 / 320 * 100vw);
  }
}
.ce-banner__subtitle {
  font-family: var(--Font-NotoSerifJP);
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--PageColor-Karashi);
  margin-top: 0;
  @media (max-width: 740px) {
    font-size: calc(12 / 320 * 100vw);
  }
}
.ce-banner__subtitle-line {
  display: block;
}
.ce-banner__subtitle-line.-gold {
  color: var(--PageColor-Karashi);
}
.ce-banner__title {
  font-family: var(--Font-NotoSerifJP);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.2;
  color: var(--Color-White);
  margin-top: 6px;
  @media (max-width: 740px) {
    font-size: calc(15 / 320 * 100vw);
    margin-top: 0;
  }
}
.ce-banner__item:nth-child(2) .ce-banner__title {
  margin-top: 0;
}
.ce-banner__title-line {
  display: block;
}
.ce-banner__title-line.-gold {
  color: var(--PageColor-Karashi);
}
.ce-banner__and {
  font-family: var(--Font-NotoSerifJP);
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--Color-White);
  margin-left: 73px;
  display: block;
  margin-top: -4px;
  @media (max-width: 740px) {
    margin-left: calc(57 / 320 * 100vw);
    font-size: calc(13 / 320 * 100vw);
  }
}
.ce-banner__subtitle-second {
  font-family: var(--Font-NotoSerifJP);
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--Color-White);
  letter-spacing: 0;
  @media (max-width: 740px) {
    font-size: calc(9 / 320 * 100vw);
  }
}
.ce-banner__subtitle-second-main {
  font-family: var(--Font-NotoSerifJP);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.2;
  color: var(--Color-White);
  @media (max-width: 740px) {
    font-size: calc(15 / 320 * 100vw);
  }
}
.ce-banner__subtitle-second-gold {
  color: var(--PageColor-Karashi);
}
.ce-banner__button {
  position: absolute;
  left: 15px;
  bottom: 20px;
  background-color: var(--Color-Gray-800);
  border-radius: 4px;
  padding: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0;
  @media (max-width: 740px) {
    left: calc(11 / 320 * 100vw);
    bottom: calc(16 / 320 * 100vw);
    padding: calc(2 / 320 * 100vw) calc(2 / 320 * 100vw);
    border-radius: calc(2 / 320 * 100vw);
    gap: calc(2 / 320 * 100vw);
  }
}
.ce-banner__item:nth-child(2) .ce-banner__button {
  left: 22px;
  bottom: 27px;
  @media (max-width: 740px) {
    left: calc(13 / 320 * 100vw);
    bottom: calc(14 / 320 * 100vw);
  }
}
.ce-banner__button-text {
  font-family: var(--Font-NotoSansJP);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--Color-White);
  letter-spacing: 0;
  @media (max-width: 740px) {
    font-size: calc(8 / 320 * 100vw);
  }
}
.ce-banner__button img {
  width: 16px;
  height: 5px;
  @media (max-width: 740px) {
    width: calc(10 / 320 * 100vw);
    height: calc(3 / 320 * 100vw);
  }
}

/* ce-support */
.ce-support {
  position: relative;
  padding: 63px 0 50px;
  overflow: hidden;
  background-color: var(--PageColor-PearlWhite);
  @media (max-width: 740px) {
    padding: calc(100 / 320 * 100vw) 0 calc(40 / 320 * 100vw);
  }
}
.ce-support::before {
  content: "";
  position: absolute;
  inset: 56px auto auto calc(50% - 396px);
  width: 930px;
  height: 463px;
  background-image: url("../img/pages/career-enhancement/support_bg@2x.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}
.ce-support__inner {
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 0 var(--inner-padding-pc);
  position: relative;
  z-index: 1;
}
.ce-support__vertical01 {
  @media (max-width: 1200px) {
    display: none;
  }
}
.ce-support__vertical02 {
  display: none;
  @media (max-width: 1200px) {
    display: grid;
  }
}
.ce-support .ce-vertical-text {
  inset: -10px auto auto -122px;
  position: absolute;
  @media (max-width: 1200px) {
    inset: -10px auto auto 0;
  }
  @media (max-width: 740px) {
    inset: calc(-68 / 320 * 100vw) auto auto 0;
    grid-template-columns: auto auto;
  }
}
.ce-support .ce-vertical-text__line {
  font-size: 3.4rem;
  @media (max-width: 740px) {
    font-size: calc(20 / 320 * 100vw);
    writing-mode: horizontal-tb;
    width: fit-content;
    align-self: end;
    padding: calc(4 / 320 * 100vw);
  }
}
.ce-support .ce-vertical-text__line.js-title-animation {
  @media (max-width: 740px) {
    clip-path: inset(0 100% 0 0);
  }
}
.ce-support .ce-vertical-text__line.js-title-animation.is-active {
  @media (max-width: 740px) {
    clip-path: inset(0 0 0 0);
  }
}
.ce-support .ce-vertical-text__line:nth-child(2) {
  margin-top: 20px;
  @media (max-width: 740px) {
    margin-top: 0;
  }
}
.ce-support .ce-vertical-text__line:nth-child(3) {
  margin-top: 70px;
  margin-right: 12px;
}
.ce-support .ce-vertical-text__line:nth-child(4) {
  margin-top: 160px;
}
.ce-support .ce-heading {
}
.ce-support .ce-heading::after {
  content: none;
}
.ce-support .ce-heading::before {
  content: none;
}
.ce-support .ce-heading__title-sub {
  @media (max-width: 740px) {
    font-size: calc(32 / 320 * 100vw);
  }
}
.ce-support__content {
  margin-top: 20px;
  max-width: 560px;
  margin-inline: auto;
  position: relative;
}
.ce-support__list {
  display: grid;
  gap: 36px;
  @media (max-width: 740px) {
    gap: calc(16 / 320 * 100vw);
  }
}
.ce-support__item {
  position: relative;
  color: var(--Color-Gray-800);
}
.ce-support__item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--PageColor-Wakakusa);
  @media (max-width: 740px) {
    bottom: calc(-6 / 320 * 100vw);
    height: calc(2 / 320 * 100vw);
  }
}
.ce-support__item-text {
  font-family: var(--Font-NotoSerifJP);
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
  @media (max-width: 740px) {
    font-size: calc(14 / 320 * 100vw);
  }
}
.ce-support__item-emphasis {
  font-family: var(--Font-NotoSansJP);
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.2;
  @media (max-width: 740px) {
    font-size: calc(17 / 320 * 100vw);
  }
}
.ce-support__item-number {
  font-family: var(--Font-Oswald);
  font-weight: 500;
  font-size: 6rem;
  line-height: 1;
  @media (max-width: 740px) {
    font-size: calc(30 / 320 * 100vw);
  }
}
.ce-support__item-unit {
  font-family: var(--Font-NotoSansJP);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  @media (max-width: 740px) {
    font-size: calc(17 / 320 * 100vw);
  }
}
.ce-support__item-highlight {
  font-family: var(--Font-NotoSansJP);
  font-weight: 700;
  font-size: 4.2rem;
  line-height: 1;
  @media (max-width: 740px) {
    font-size: calc(21 / 320 * 100vw);
    margin-top: calc(16 / 320 * 100vw);
  }
}
.ce-support__image {
  margin-top: 30px;
  width: 500px;
  height: 160px;
  margin-inline: auto;
  @media (max-width: 740px) {
    width: calc(254 / 320 * 100vw);
    height: calc(82 / 320 * 100vw);
    margin-top: calc(16 / 320 * 100vw);
  }
}
.ce-support__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}
.ce-support__button {
  margin-top: 0;
  @media (max-width: 740px) {
  }
}
.ce-support__button .ce-com-button__link {
  max-width: 400px;
  @media (max-width: 740px) {
    max-width: calc(240 / 320 * 100vw);
    font-size: calc(14 / 320 * 100vw);
    line-height: 1;
    padding: calc(3 / 320 * 100vw) calc(12 / 320 * 100vw);
  }
}
.ce-support__button .ce-com-button__text {
  @media (max-width: 740px) {
    line-height: 1.1;
  }
}

/* ce-talk */
.ce-talk {
  position: relative;
  padding: 136px 0 100px;
  overflow: hidden;
  @media (max-width: 740px) {
    padding: calc(60 / 320 * 100vw) 0 calc(40 / 320 * 100vw);
  }
}
.ce-talk__inner {
  max-width: calc(var(--inner-width) + var(--inner-padding-pc) * 2);
  margin: 0 auto;
  padding: 0 var(--inner-padding-pc);
}
.ce-talk .ce-heading::after {
  content: none;
}
.ce-talk .ce-heading__title-sub .ce-color-green {
  @media (max-width: 740px) {
    color: var(--Color-Gray-800);
  }
}
.ce-talk .ce-vertical-text {
  position: absolute;
  inset: 20px auto auto 0;
  @media (max-width: 740px) {
    inset: calc(5 / 320 * 100vw) auto auto calc(20 / 320 * 100vw);
  }
}
.ce-talk .ce-vertical-text__line {
  font-size: 3.4rem;
  @media (max-width: 740px) {
    font-size: calc(20 / 320 * 100vw);
  }
}
.ce-talk__content {
  background: #eeebea;
  padding-block: 24px 35px;
  margin-top: 54px;
  @media (max-width: 740px) {
    padding-block: 16px;
    margin-top: 22px;
  }
}

/* ce-benefit */
.ce-benefit {
  position: relative;
  padding: 80px 0 100px;
  background-color: var(--PageColor-PearlWhite);
  overflow: hidden;
  @media (max-width: 740px) {
    padding: calc(80 / 320 * 100vw) 0 calc(54 / 320 * 100vw);
  }
}
.ce-benefit::before {
  content: "";
  position: absolute;
  inset: 50px auto auto 80px;
  width: 1200px;
  height: 625px;
  background-image: url("../img/pages/career-enhancement/benefit_bg@2x.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}
.ce-benefit__inner {
  max-width: calc(var(--inner-width) + var(--inner-padding-pc) * 2);
  margin: 0 auto;
  padding: 0 var(--inner-padding-pc);
  position: relative;
  z-index: 1;
  text-align: center;
  @media (max-width: 740px) {
    padding: 0 var(--inner-padding-sp);
  }
}
.ce-benefit__balloon {
  position: absolute;
  inset: -10px auto auto 80px;
  z-index: 2;
  @media (max-width: 1024px) {
    inset: -10px auto auto 10px;
  }
  @media (max-width: 740px) {
    inset: calc(-61 / 320 * 100vw) auto auto calc(36 / 320 * 100vw);
  }
}
.ce-benefit__balloon img {
  width: 156px;
  height: auto;
  display: block;
  @media (max-width: 1024px) {
    width: 130px;
  }
  @media (max-width: 740px) {
    width: calc(74 / 320 * 100vw);
  }
}
.ce-benefit__title {
  font-family: var(--Font-NotoSerifJP);
  font-weight: 600;
  font-size: 5.6rem;
  line-height: 1.2;
  color: var(--Color-Gray-800);
  letter-spacing: 0.02em;
  margin-top: 0;
  @media (max-width: 740px) {
    font-size: calc(32 / 320 * 100vw);
  }
}
.ce-benefit__amount {
  font-family: var(--Font-NotoSansJP);
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-areas:
    "text number badge"
    "text number unit";
  margin-inline: auto;
  width: fit-content;
  margin-top: 2px;
  line-height: 1;
  @media (max-width: 740px) {
    margin-top: calc(7 / 320 * 100vw);
  }
}
.ce-benefit__amount-text {
  grid-area: text;
  font-weight: 600;
  font-size: 4rem;
  line-height: 1;
  color: var(--PageColor-Fukamidori);
  writing-mode: vertical-rl;
  @media (max-width: 740px) {
    font-size: calc(22 / 320 * 100vw);
  }
}
.ce-benefit__amount-number {
  grid-area: number;
  font-family: var(--Font-Oswald);
  font-weight: 500;
  font-size: 10.8rem;
  line-height: 1;
  color: var(--Color-Gray-800);
  @media (max-width: 740px) {
    font-size: calc(60 / 320 * 100vw);
  }
}
.ce-benefit__amount-unit {
  grid-area: unit;
  font-weight: 600;
  font-size: 4.8rem;
  line-height: 1;
  color: var(--Color-Gray-800);
  margin-left: 8px;
  @media (max-width: 740px) {
    font-size: calc(26 / 320 * 100vw);
  }
}
.ce-benefit__amount-unit2 {
  font-family: var(--Font-NotoSerifJP);
  grid-area: unit;
  font-weight: 600;
  font-size: 4rem;
  line-height: 1;
  color: var(--Color-Gray-800);
  @media (max-width: 740px) {
    font-size: calc(20 / 320 * 100vw);
  }
}
.ce-benefit__amount-badge {
  grid-area: badge;
  display: inline-block;
  background-color: var(--PageColor-Canary);
  color: var(--Color-Gray-800);
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.2;
  padding: 2px 12px;
  align-self: center;
  margin-left: 16px;
  @media (max-width: 740px) {
    font-size: calc(13 / 320 * 100vw);
    padding: calc(2 / 320 * 100vw) calc(6 / 320 * 100vw);
  }
}
.ce-benefit__subtitle {
  font-family: var(--Font-NotoSansJP);
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 1.2;
  color: var(--Color-Gray-800);
  @media (max-width: 740px) {
    font-size: calc(18 / 320 * 100vw);
  }
}
.ce-benefit__courses-wrapper {
  border-radius: 32px;
  background: #fff;
  margin-top: 32px;
  padding: 32px;
  @media (max-width: 740px) {
    border-radius: calc(20 / 320 * 100vw);
    padding: calc(16 / 320 * 100vw) calc(16 / 320 * 100vw) calc(24 / 320 * 100vw);
    margin-top: calc(24 / 320 * 100vw);
  }
}
.ce-benefit__courses {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 10px;
  max-width: 840px;
  margin-inline: auto;
  @media (max-width: 740px) {
    gap: calc(6 / 320 * 100vw);
    margin-top: calc(6 / 320 * 100vw);
    grid-template-columns: 1fr;
  }
}
.ce-benefit__course {
  position: relative;
  overflow: hidden;
}
.ce-benefit__course-image {
  width: 100%;
  object-fit: cover;
  display: block;
}
.ce-benefit__course-overlay {
  position: absolute;
  inset: 50% auto auto 0;
  translate: 0 -50%;
  width: 100%;
  padding: 0 16px;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
}
.ce-benefit__course-overlay.-shinkyu {
  background: linear-gradient(90deg, rgba(142, 183, 59, 0) 0%, #8eb73b 50%, rgba(142, 183, 59, 0) 100%);
}
.ce-benefit__course-overlay.-judo {
  background: linear-gradient(90deg, rgba(37, 168, 190, 0) 0%, #25a8be 50%, rgba(37, 168, 190, 0) 100%);
}
.ce-benefit__course-title {
  font-family: var(--Font-NotoSerifJP);
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 1.2;
  color: var(--Color-White);
  @media (max-width: 740px) {
    font-size: calc(24 / 320 * 100vw);
  }
}
.ce-benefit__course-time {
  font-family: var(--Font-NotoSansJP);
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.2;
  margin-top: 8px;
  @media (max-width: 740px) {
    font-size: calc(14 / 320 * 100vw);
    margin-top: calc(4 / 320 * 100vw);
  }
}
.ce-benefit__button {
  margin-top: 20px;
  @media (max-width: 740px) {
    margin-top: calc(17 / 320 * 100vw);
  }
}
.ce-benefit__button .ce-com-button__link {
  max-width: 400px;
  @media (max-width: 740px) {
    max-width: calc(240 / 320 * 100vw);
  }
}

/* ce-faq */
.ce-faq {
  position: relative;
  padding: 130px 0 0;
  background-color: var(--Color-White);
  @media (max-width: 740px) {
    padding: calc(60 / 320 * 100vw) 0 0;
  }
}
.ce-faq__inner {
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 0 var(--inner-padding-pc);
  @media (max-width: 740px) {
    padding: 0 var(--inner-padding-sp);
  }
}
.ce-faq .ce-heading {
  margin-top: 0;
}
.ce-faq .ce-heading::after {
  @media (max-width: 740px) {
    height: calc(32 / 320 * 100vw);
    bottom: calc(-44 / 320 * 100vw);
  }
}
.ce-faq .ce-heading__title-main {
  @media (max-width: 740px) {
    font-size: calc(15 / 320 * 100vw);
  }
}
.ce-faq .ce-heading__title-sub {
  @media (max-width: 740px) {
    font-size: calc(24 / 320 * 100vw);
  }
}
.ce-faq__list {
  margin-top: 72px;
  display: grid;
  max-width: 800px;
  margin-inline: auto;
  @media (max-width: 740px) {
    margin-top: calc(34 / 320 * 100vw);
  }
}
.ce-faq__item {
  margin-top: 28px;
  display: grid;
  gap: 16px;
  opacity: 1;
  max-height: 1000px;
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.4s ease, margin-top 0.4s ease;
  position: relative;
  padding-bottom: 28px;
  @media (max-width: 740px) {
    margin-top: calc(20 / 320 * 100vw);
    gap: calc(10 / 320 * 100vw);
    padding-bottom: calc(16 / 320 * 100vw);
  }
}
.ce-faq__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, var(--Color-Gray-500) 4px, transparent 4px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  background-position: bottom;
}
.ce-faq__item.-hidden {
  opacity: 0;
  max-height: 0;
  margin-top: 0;
  pointer-events: none;
  padding-bottom: 0;
}
.ce-faq__separator {
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(
    to right,
    var(--Color-Gray-500) 0,
    var(--Color-Gray-500) 4px,
    transparent 4px,
    transparent 8px
  );
}
.ce-faq__question {
  display: flex;
  gap: 12px;
  align-items: center;
  @media (max-width: 740px) {
    gap: calc(10 / 320 * 100vw);
  }
}
.ce-faq__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--Font-Oswald);
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 1;
  flex-shrink: 0;
  @media (max-width: 740px) {
    width: calc(35 / 320 * 100vw);
    height: calc(35 / 320 * 100vw);
    font-size: calc(20 / 320 * 100vw);
  }
}
.ce-faq__icon.-question {
  background-color: var(--PageColor-Fukamidori);
  color: var(--Color-White);
}
.ce-faq__icon.-answer {
  background-color: var(--PageColor-Gold);
  color: var(--Color-Gray-800);
}
.ce-faq__question-text {
  font-family: var(--Font-NotoSansJP);
  /* font-weight: 500; */
  font-size: 2.4rem;
  line-height: 1.4;
  /* color: var(--Color-Gray-800); */
  color: var(--PageColor-Fukamidori);
  font-weight: bold;
  margin-top: 0;
  @media (max-width: 740px) {
    font-size: calc(14 / 320 * 100vw);
    line-height: 1.2;
  }
}
.ce-faq__answer {
  display: flex;
  gap: 12px;
  align-items: start;
  @media (max-width: 740px) {
    gap: calc(10 / 320 * 100vw);
  }
}
.ce-faq__answer-text {
  font-family: var(--Font-NotoSansJP);
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.4;
  color: var(--Color-Gray-800);
  margin-top: 0;
  @media (max-width: 740px) {
    font-size: calc(14 / 320 * 100vw);
    gap: calc(8 / 320 * 100vw);
    line-height: 1.25;
  }
}
.ce-faq__link {
  color: var(--PageColor-Konpeki);
  text-decoration: underline;
  transition: opacity 0.3s;
  display: inline-block;
  margin-top: 16px;
  @media (max-width: 740px) {
    margin-top: calc(8 / 320 * 100vw);
  }
}
.ce-faq__link:hover {
  opacity: 0.7;
}
.ce-faq__toggle {
  margin-top: 48px;
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.ce-faq__toggle::after,
.ce-faq__toggle::before {
  content: "";
  bottom: 0;
  left: 0;
  width: calc((100% - 360px) / 2);
  height: 2px;
  background-image: linear-gradient(to right, var(--PageColor-Fukamidori) 4px, transparent 4px);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  background-position: bottom;
  @media (max-width: 740px) {
    width: calc((100% - calc(204 / 320 * 100vw)) / 2);
  }
}
.ce-faq__toggle-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background-color: var(--PageColor-Fukamidori);
  border: none;
  color: var(--Color-White);
  padding: 18px;
  border-radius: 100vmax;
  font-family: var(--Font-NotoSansJP);
  font-weight: 500;
  font-size: 1.9rem;
  letter-spacing: 0;
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: -0.04em;
  position: relative;
  line-height: 1.25;
  @media (max-width: 740px) {
    font-size: calc(14 / 320 * 100vw);
    padding: calc(12 / 320 * 100vw) calc(16 / 320 * 100vw);
  }
}
.ce-faq__toggle-button:hover {
  opacity: 0.8;
}
.ce-faq__toggle-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
  transition: all 0.3s;
  flex-shrink: 0;
}
.ce-faq__toggle-button.-expanded .ce-faq__toggle-icon {
  transform: rotate(45deg);
}
