@charset "UTF-8";
html {
  scroll-padding-top: 110px;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  line-height: 1.93;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 1.6;
  }
}
a {
  color: inherit;
}
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid #2b62ca;
  outline-offset: 2px;
}
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}
.sp {
  display: none;
}
@media (max-width: 767px) {
  .sp {
    display: block;
  }
}
.section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  max-width: 1350px;
  margin: 0 auto 55px;
  padding: 0 75px;
}
@media (max-width: 767px) {
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 40px;
    margin-bottom: 35px;
  }
}
.section-heading::before {
  content: "";
  flex-shrink: 0;
  width: 85px;
  height: 69px;
  background: url("../media/images/img_logo.png") no-repeat center / contain;
  position: absolute;
  left: 16px;
  top: -13px;
}
@media (max-width: 767px) {
  .section-heading::before {
    width: 45px;
    height: 40px;
    top: -2px;
  }
}
.section-heading__en {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 80px;
  background: linear-gradient(103deg, #2d44cb, #00c7d9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.5;
  letter-spacing: -1.3px;
  z-index: 1;
}
@media (max-width: 767px) {
  .section-heading__en {
    font-size: 50px;
  }
}
.section-heading__ja {
  font-size: 18px;
  font-weight: 700;
  color: #7a7a7a;
  padding: 28px 0 0 10px;
}
@media (max-width: 767px) {
  .section-heading__ja {
    font-size: 15px;
    padding: 0;
  }
}
.header {
  position: fixed;
  top: 20px;
  left: 23px;
  right: 23px;
  height: 75px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  z-index: 100;
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .header {
    left: 12px;
    right: 12px;
    top: 12px;
    height: 70px;
  }
}
.header.is-hidden {
  transform: translateY(calc(-100% - 20px));
}
.header__inner {
  margin: 0 auto;
  padding: 0 18px 0 37px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 767px) {
  .header__inner {
    padding: 0 24px;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .header__logo {
    gap: 8px;
  }
}
.header__logo-image {
  width: 160px;
}
@media (max-width: 767px) {
  .header__logo-image {
    width: 120px;
  }
}
.header__logo-text {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #2b62ca;
  margin-top: 11px;
}
@media (max-width: 767px) {
  .header__logo-text {
    font-size: 13px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  max-width: 780px;
  justify-content: space-between;
  gap: 25px;
  width: 100%;
}
@media (max-width: 1024px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -24px;
    z-index: 2;
    width: 280px;
    max-width: 80%;
    height: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 95px 0 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -8px 0 12px rgba(0, 0, 0, 0.06);
    justify-content: flex-start;
  }
}
.header__nav-list {
  display: flex;
  width: 100%;
  max-width: 540px;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .header__nav-list {
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 1024px) {
  .header__nav-item {
    border-bottom: 1px solid #d9d9d9;
  }
}
.header__nav-link {
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .header__nav-link {
    position: relative;
  }
  .header__nav-link:after {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background: #333333;
    position: absolute;
    bottom: -6px;
    left: 0;
    transform: scale(0, 1);
    transition: 0.3s;
  }
  .header__nav-link:hover:after {
    transform: scale(1, 1);
  }
}
@media (max-width: 1024px) {
  .header__nav-link {
    display: block;
    padding: 16px 32px;
  }
  .header__nav-link:after {
    content: none;
  }
}
.header__entry {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  background: linear-gradient(103deg, #2d44cb, #00c7d9);
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  padding: 8px 31px;
  border-radius: 999px;
  white-space: nowrap;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .header__entry:hover {
    opacity: 0.8;
  }
}
@media (max-width: 1024px) {
  .header__entry {
    margin: 16px 32px 0;
  }
}
.header__toggle {
  display: none;
  position: relative;
  z-index: 3;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.header__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #333333;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (max-width: 1024px) {
  .header__toggle {
    display: flex;
  }
}
.header.is-open .header__nav {
  transform: translateX(-24px);
}
.header.is-open .header__toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header.is-open .header__toggle span:nth-child(2) {
  opacity: 0;
}
.header.is-open .header__toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.header-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgba(51, 51, 51, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.header-nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
body.has-open-nav {
  overflow: hidden;
}
.kv-message-bg {
  background-image: url("../media/images/bg.webp");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
@media (max-width: 1024px) {
  .kv-message-bg {
    margin-bottom: 40px;
  }
}
.kv {
  position: relative;
}
.kv__bg-image {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .kv__bg-image {
    object-position: 65% center;
    object-fit: cover;
    height: 500px;
  }
}
.kv__copy {
  position: absolute;
  left: 4.3%;
  top: 56.2%;
  z-index: 2;
  transform: rotate(-5.6deg);
  font-style: italic;
  font-size: 78px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.35;
  letter-spacing: -0.8px;
}
@media (max-width: 1024px) {
  .kv__copy {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .kv__copy {
    font-size: 30px;
    left: 6%;
    top: 50%;
  }
}
.kv__copy .adjust {
  display: block;
  margin-left: -9px;
}
.kv__copy .mask-text {
  display: block;
  clip-path: inset(0 100% 0 0);
}
.kv__copy .hand-drawn-line-wrap {
  display: block;
  margin: -9px 0 0 198px;
  transform: rotate(5.6deg);
}
@media (max-width: 1024px) {
  .kv__copy .hand-drawn-line-wrap {
    margin: 10px 0 0 80px;
  }
}
@media (max-width: 767px) {
  .kv__copy .hand-drawn-line-wrap {
    margin: 9px 0 0 70px;
  }
}
.kv__copy .hand-drawn-line-wrap svg {
  width: 269px;
  height: 88px;
}
@media (max-width: 1024px) {
  .kv__copy .hand-drawn-line-wrap svg {
    width: 185px;
    height: 55px;
  }
}
@media (max-width: 767px) {
  .kv__copy .hand-drawn-line-wrap svg {
    width: 100px;
    height: 37px;
  }
}
.kv__copy .hand-drawn-line path {
  clip-path: inset(0 100% 0 0);
  fill: #fff;
}
.kv .kv-main {
  aspect-ratio: 1.5053763441;
}
@media (max-width: 767px) {
  .kv .kv-main {
    width: 100%;
    aspect-ratio: 1;
  }
}
.kv .kv-main::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../media/images/kv_grd.webp) no-repeat top center / cover;
  width: 100%;
  z-index: 1;
  clip-path: inset(0 100% 0 0);
}
.kv .kv-main .movie_base {
  position: relative;
  z-index: 2;
  mask: url(../media/images/kv_mask.png) no-repeat top center / cover;
  -webkit-mask: url(../media/images/kv_mask.png) no-repeat top center / cover;
  width: 100%;
  aspect-ratio: 1.6847172082;
  pointer-events: none;
  overflow: hidden;
}
@media (max-width: 767px) {
  .kv .kv-main .movie_base {
    aspect-ratio: 1.1;
  }
}
.kv .kv-main .movie_base::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #C7C7C7;
  mix-blend-mode: multiply;
}
.kv .kv-main .movie_base iframe, .kv .kv-main .movie_base video {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.kv .kv-main .movie_base iframe {
  width: 120%;
  height: 120%;
}
@media (max-width: 767px) {
  .kv .kv-main .movie_base iframe {
    width: 175%;
    height: 135%;
  }
}
.kv .kv-main .movie_base video {
  width: 106%;
  height: auto;
}
@media (max-width: 767px) {
  .kv .kv-main .movie_base video {
    width: 163%;
  }
}
@keyframes drawLine {
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes kv-title-anime {
  to {
    clip-path: inset(-10px -10px -10px -10px);
  }
}
.kv.movie-playing .kv-main::after {
  animation: drawLine 0.8s ease-in 1s forwards;
}
.kv.movie-playing .kv__copy .mask-text {
  animation: kv-title-anime 0.5s ease-out 1.5s forwards;
}
.kv.movie-playing .kv__copy .hand-drawn-line path {
  animation: drawLine 0.25s ease-out 2s forwards;
}
.kv__banner {
  position: fixed;
  right: 0;
  top: auto;
  bottom: calc((100vh - 345px) / 2);
  z-index: 95;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.kv__banner.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.kv__banner-item {
  writing-mode: vertical-rl;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  border-radius: 10px 0 0 10px;
  width: 70px;
  display: flex;
  gap: 8px;
  align-items: center;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .kv__banner-item:hover {
    opacity: 0.8;
  }
}
@media (max-width: 767px) {
  .kv__banner-item {
    font-size: 12px;
    width: 45px;
  }
}
.kv__banner-item:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 999px;
}
.kv__banner-item--requirements {
  background: linear-gradient(135deg, #02b772, #15ed7d);
  padding: 20px 18px 22px;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .kv__banner-item--requirements {
    padding: 14px;
  }
}
.kv__banner-item--requirements:after {
  background: #ffffff url(../media/images/icon_arrow_green.svg) center/4px no-repeat;
}
.kv__banner-item--casual {
  background: linear-gradient(135deg, #ff591d, #fe883a);
  padding: 16px 14px 20px;
  line-height: 1.2;
  letter-spacing: -0.7px;
  gap: 13px;
}
@media (max-width: 767px) {
  .kv__banner-item--casual {
    padding: 14px;
    letter-spacing: inherit;
  }
}
.kv__banner-item--casual::after {
  background: #ffffff url(../media/images/icon_arrow_orange.svg) center/4px no-repeat;
}
.message {
  position: relative;
  padding: 102px 0 320px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .message {
    padding-bottom: 200px;
  }
}
@media (max-width: 767px) {
  .message {
    padding: calc(350/375*100vw) 0;
    position: relative;
  }
}
.message__inner {
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
}
@media (max-width: 767px) {
  .message__inner {
    position: unset;
    padding-bottom: 45px;
  }
}
.message__heading {
  margin: 0 auto 58px;
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  background: linear-gradient(103deg, #2d44cb, #00c7d9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.7;
  letter-spacing: 1.2px;
  width: fit-content;
}
@media (max-width: 1024px) {
  .message__heading {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .message__heading {
    font-size: 24px;
    margin: 0 auto 38px;
  }
}
.message__content {
  text-align: center;
}
.message__collage-item {
  position: absolute;
  border-radius: 10px;
}
.message__collage-item:nth-child(1) {
  left: -14.3%;
  top: 1%;
  width: 34%;
}
.message__collage-item:nth-child(2) {
  left: -1.1%;
  top: 42.6%;
  width: 17%;
  z-index: 1;
}
.message__collage-item:nth-child(3) {
  left: -17%;
  top: 48.3%;
  width: 30%;
}
.message__collage-item:nth-child(4) {
  left: 0.6%;
  top: 92.6%;
  width: 25.3%;
}
.message__collage-item:nth-child(5) {
  right: -6%;
  top: 4.5%;
  width: 25.3%;
}
.message__collage-item:nth-child(6) {
  right: 2.7%;
  top: 79.5%;
  top: 44%;
  width: 17.9%;
}
.message__collage-item:nth-child(7) {
  right: -14.5%;
  top: 75%;
  width: 30.2%;
  z-index: 1;
}
.message__collage-item:nth-child(8) {
  right: 11.7%;
  top: 98%;
  width: 13.5%;
}
@media (max-width: 1024px) {
  .message__collage-item:nth-child(4) {
    left: -5.4%;
  }
  .message__collage-item:nth-child(8) {
    right: 10%;
    top: 90%;
  }
}
@media (max-width: 767px) {
  .message__collage-item:nth-child(1) {
    left: calc(-17/375*100vw);
    top: unset;
    width: calc(200/375*100vw);
    bottom: calc(217/375*100vw);
  }
  .message__collage-item:nth-child(2) {
    left: calc(150/375*100vw);
    top: unset;
    width: calc(120/375*100vw);
    bottom: calc(72/375*100vw);
  }
  .message__collage-item:nth-child(3) {
    left: calc(108/375*100vw);
    top: unset;
    width: calc(80/375*100vw);
    bottom: calc(57/375*100vw);
  }
  .message__collage-item:nth-child(4) {
    left: calc(284/375*100vw);
    top: unset;
    width: calc(100/375*100vw);
    bottom: calc(181/375*100vw);
  }
  .message__collage-item:nth-child(5) {
    right: calc(13/375*100vw);
    top: calc(10/375*100vw);
    width: calc(200/375*100vw);
  }
  .message__collage-item:nth-child(6) {
    right: calc(-7/375*100vw);
    top: calc(215/375*100vw);
    width: calc(150/375*100vw);
  }
  .message__collage-item:nth-child(7) {
    right: calc(236/375*100vw);
    top: calc(140/375*100vw);
    width: calc(130/375*100vw);
  }
  .message__collage-item:nth-child(8) {
    right: calc(312/375*100vw);
    top: calc(210/375*100vw);
    width: calc(77/375*100vw);
  }
}
.message__text {
  line-height: 2.85;
  margin-bottom: 24px;
  font-size: 19px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .message__text {
    font-size: 14px;
    line-height: 2.2;
  }
}
.message__text:last-child {
  margin-bottom: 0;
}
.strengths {
  padding-bottom: 172px;
  background-image: url("../media/images/bg01.webp");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-position: top 300px center;
}
@media (max-width: 767px) {
  .strengths {
    background-position: top 160px center;
    padding-bottom: 80px;
  }
}
.strengths__visual {
  position: relative;
  z-index: 30;
  height: 300px;
  margin-bottom: 155px;
}
.strengths__visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 50px;
  width: 89.2%;
  height: 298px;
  background: linear-gradient(111deg, #AAAFEC, #93E2EA);
}
@media (max-width: 767px) {
  .strengths__visual::after {
    top: 30px;
    height: 160px;
  }
}
@media (max-width: 767px) {
  .strengths__visual {
    height: 160px;
    margin-bottom: 80px;
  }
}
.strengths__visual-bg {
  width: 89.3%;
  margin: -50px 0 0 auto;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 767px) {
  .strengths__visual-bg {
    margin-top: -30px;
  }
}
.strengths__inner {
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 16px;
}
.strengths__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .strengths__list {
    gap: 8px;
  }
}
@media (max-width: 767px) {
  .strengths__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}
.strengths__item {
  position: relative;
  z-index: 0;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding-bottom: 30px;
}
.strengths__heading {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  padding: 26px 24px 15px;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .strengths__heading {
    font-size: 17px;
    padding-left: 6px;
  }
}
.strengths__number {
  position: absolute;
  z-index: -1;
  top: -16px;
  left: 5px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 115px;
  line-height: 1;
  color: rgba(200, 218, 243, 0.5);
  position: absolute;
}
@media (max-width: 1024px) {
  .strengths__number {
    font-size: 100px;
  }
}
@media (max-width: 767px) {
  .strengths__number {
    top: -11px;
    font-size: 84px;
  }
}
.strengths__text {
  position: relative;
  z-index: 2;
  font-size: 15px;
  line-height: 1.8;
  padding: 0 25px;
  color: #333333;
}
@media (max-width: 1024px) {
  .strengths__text {
    padding: 0 20px;
    font-size: 14px;
  }
}
.business {
  position: relative;
  padding-top: 131px;
}
.business__visual {
  position: absolute;
  top: 0;
  width: 100%;
  height: 270px;
}
@media (max-width: 767px) {
  .business__visual {
    height: 160px;
  }
}
.business__visual-bg {
  position: absolute;
  width: 100%;
  height: auto;
  height: 300px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .business__visual-bg {
    height: 160px;
  }
}
.business__visual-people {
  position: absolute;
  left: 0;
  width: 433px;
  z-index: 2;
  top: -83px;
}
@media (max-width: 767px) {
  .business__visual-people {
    width: 270px;
    top: -30px;
  }
}
.business__body {
  position: relative;
  z-index: 30;
  border-radius: 0 152px 0 0;
  background: #ffffff;
  padding-bottom: 93px;
  padding-top: 43px;
}
@media (max-width: 767px) {
  .business__body {
    border-radius: 0 70px 0 0;
    margin-top: -30px;
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .business__body {
    padding-bottom: 60px;
  }
}
.business__body::after {
  content: "";
  display: block;
  position: absolute;
  width: 527px;
  height: 133px;
  background: url("../media/images/img_marker01.png") no-repeat center / contain;
  top: 44.5%;
  left: -2px;
}
@media (max-width: 1024px) {
  .business__body::after {
    width: 335px;
    height: 85px;
    top: 46%;
  }
}
@media (max-width: 767px) {
  .business__body::after {
    width: 250px;
    height: 63px;
    top: 33%;
  }
}
.business__inner {
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 16px;
}
.business .section-heading {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .business .section-heading {
    margin-bottom: 35px;
  }
}
.business__row {
  display: flex;
  gap: 8px;
  margin-bottom: 73px;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .business__row {
    gap: 0;
  }
}
@media (max-width: 767px) {
  .business__row {
    flex-direction: column;
    gap: 90px;
    margin-bottom: 33px;
  }
}
.business__intro {
  flex: 0 0 400px;
  margin: 40px 0 0 14px;
}
@media (max-width: 1024px) {
  .business__intro {
    margin: 30px 0 0;
  }
}
@media (max-width: 767px) {
  .business__intro {
    margin: 0;
    flex: unset;
  }
}
.business__intro-heading {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .business__intro-heading {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
.business__intro-text {
  font-size: 18px;
  color: #333333;
  font-weight: 700;
  line-height: 2.2;
}
@media (max-width: 767px) {
  .business__intro-text {
    font-size: 16px;
    line-height: 1.8;
  }
}
.business__diagram {
  width: 100%;
  max-width: 806px;
  margin-right: -30px;
}
@media (max-width: 1024px) {
  .business__diagram {
    margin: 30px 0 0;
  }
}
@media (max-width: 767px) {
  .business__diagram {
    margin: 0;
  }
}
.business__slider {
  position: relative;
  overflow: hidden;
  height: 460px;
}
@media (max-width: 767px) {
  .business__slider {
    padding: 0 16%;
    height: 420px;
  }
}
.business__track {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 60px;
  will-change: transform;
}
@media (max-width: 767px) {
  .business__track {
    gap: 16px;
  }
}
.business__arrows .business__arrow {
  position: absolute;
  top: 50%;
  width: 63px;
  height: 63px;
  background: #333333;
  opacity: 1;
  z-index: 3;
  border: 3px solid #ffffff;
  border-radius: 999px;
  transform: translateY(-42px);
  transition: 0.3s;
  padding-top: 10px;
}
@media (max-width: 767px) {
  .business__arrows .business__arrow {
    width: 43px;
    height: 43px;
  }
}
.business__arrows .business__arrow--prev {
  left: 98px;
}
@media (max-width: 767px) {
  .business__arrows .business__arrow--prev {
    left: 28px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.business__arrows .business__arrow--prev svg {
  transform: rotate(90deg);
}
.business__arrows .business__arrow--next {
  right: 98px;
}
@media (max-width: 767px) {
  .business__arrows .business__arrow--next {
    right: 28px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.business__arrows .business__arrow--next svg {
  transform: rotate(-90deg);
}
.business__arrows .business__arrow svg {
  fill: #ffffff;
  width: 12px;
  height: auto;
}
@media (max-width: 767px) {
  .business__arrows .business__arrow svg {
    width: 8px;
  }
}
.business__dots {
  display: flex;
  justify-content: center;
  gap: 11px;
}
.business__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #C6C6C6;
}
.business__dot.is-active {
  background: #333333;
  scale: 1.5;
  transition: 0.3s;
}
.business__card {
  position: relative;
  flex-shrink: 0;
  height: auto;
  overflow: hidden;
  transition: 0.6s;
  cursor: pointer;
}
@media (min-width: 768px) {
  .business__card:hover {
    opacity: 0.8;
  }
}
@media (max-width: 767px) {
  .business__card {
    width: 100%;
  }
}
.business__card.is-active {
  z-index: 2;
}
.business__card.is-active .business__card-image {
  height: 265px;
}
@media (max-width: 767px) {
  .business__card.is-active .business__card-image {
    min-height: 220px;
  }
}
.business__card.is-active .business__card-content {
  padding: 14px 18px 15px;
}
.business__card.is-active .business__card-tag {
  font-size: 22px;
}
@media (max-width: 767px) {
  .business__card.is-active .business__card-tag {
    font-size: 19px;
    margin-bottom: 4px;
  }
}
.business__card.is-active .business__card-heading {
  font-size: 19px;
}
@media (max-width: 767px) {
  .business__card.is-active .business__card-heading {
    font-size: 15px;
  }
}
.business__card.is-active .business__card-more {
  top: 20px;
}
.business__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.6s;
}
@media (max-width: 767px) {
  .business__card-image {
    min-height: 170px;
  }
}
.business__card-content {
  position: relative;
  padding: 8px 16px 15px;
  transition: 0.6s;
}
.business__card--sales .business__card-content {
  background: linear-gradient(123.28deg, #225AC4 11.65%, #4996ED 91.17%);
}
.business__card--training .business__card-content {
  background: linear-gradient(152.28deg, #00A4EB 21.86%, #45C8FD 72.69%);
}
.business__card--recruitment .business__card-content {
  background: linear-gradient(155.67deg, #0FA34D 22.73%, #49C071 79.22%);
}
.business__card--support .business__card-content {
  background: linear-gradient(153.83deg, #FE7E4B 17.44%, #FF9C77 77.63%);
}
.business__card--pr .business__card-content {
  background: linear-gradient(144.85deg, #EC4747 18.69%, #EA7373 67.15%);
}
.business__card-tag {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
  transition: 0.6s;
}
@media (max-width: 767px) {
  .business__card-tag {
    font-size: 15px;
    margin-bottom: 4px;
  }
}
.business__card-heading {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.7;
  transition: 0.6s;
}
.business__card-more {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  font-size: 16px;
  font-weight: 700;
  transition: 0.6s;
}
.business__card--sales .business__card-more {
  color: #2b62ca;
}
.business__card--training .business__card-more {
  color: #00a4eb;
}
.business__card--recruitment .business__card-more {
  color: #1eaa59;
}
.business__card--support .business__card-more {
  color: #ff7442;
}
.business__card--pr .business__card-more {
  color: #e34242;
}
@media (max-width: 767px) {
  .business__card-more {
    width: 24px;
    height: 24px;
    font-size: 17px;
    top: 13px;
    line-height: 24px;
  }
}
.itv {
  padding: 76px 0 140px;
  background-image: url("../media/images/bg02.webp");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  border-radius: 152px 0 0 0;
}
@media (max-width: 767px) {
  .itv {
    border-radius: 70px 0 0 0;
    padding: 43px 0 30px;
  }
}
.itv__inner {
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 16px;
}
.itv .section-heading {
  margin-bottom: 46px;
}
.itv__intro {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .itv__intro {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.itv__slider {
  position: relative;
  overflow: hidden;
  padding: 40px 0 110px;
}
.itv__track {
  display: flex;
  gap: 60px;
  will-change: transform;
}
@media (max-width: 767px) {
  .itv__track {
    gap: 16px;
  }
}
.itv__card {
  position: relative;
  flex-shrink: 0;
  width: 370px;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  transition: 0.3s;
  cursor: pointer;
}
@media (max-width: 767px) {
  .itv__card {
    width: 255px;
  }
}
.itv__card:nth-child(even) {
  transform: translateY(80px);
}
@media (min-width: 768px) {
  .itv__card--sales:hover {
    overflow: visible;
  }
  .itv__card--sales:hover .itv__card-person {
    transform: scale(1.15) translateX(-44%);
  }
  .itv__card--recruitment:hover {
    margin-right: 47px;
    overflow: visible;
  }
  .itv__card--recruitment:hover .itv__card-person {
    transform: scale(1.15) translateX(-38.4%);
  }
  .itv__card--support:hover {
    margin-right: 73px;
    overflow: visible;
  }
  .itv__card--support:hover .itv__card-person {
    transform: scale(1.15) translateX(-38.4%);
  }
  .itv__card--pr:hover {
    margin-right: 73px;
    overflow: visible;
  }
  .itv__card--pr:hover .itv__card-person {
    transform: scale(1.15) translateX(-35.5%);
  }
}
.itv__card-photo {
  position: relative;
  height: 400px;
}
@media (max-width: 767px) {
  .itv__card-photo {
    height: 280px;
  }
}
.itv__card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.itv__card-person {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transform-origin: center bottom;
  width: auto;
  transition: 0.3s;
}
.itv__card--support .itv__card-person {
  left: 56%;
}
.itv__card-tag {
  display: inline-block;
  margin: 16px 0 0 19px;
  padding: 2px;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  min-width: 190px;
  text-align: center;
}
@media (max-width: 767px) {
  .itv__card-tag {
    margin-left: 16px;
  }
}
.itv__card--sales .itv__card-tag {
  background: #2b62ca;
}
.itv__card--recruitment .itv__card-tag {
  background: #1eaa59;
}
.itv__card--support .itv__card-tag {
  background: #ff7442;
}
.itv__card--pr .itv__card-tag {
  background: #e34242;
}
.itv__card-heading {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
  padding: 14px 20px 0;
}
@media (max-width: 767px) {
  .itv__card-heading {
    font-size: 16px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.itv__card-meta {
  font-size: 15px;
  color: #7c7c7c;
  padding: 12px 20px 0;
  font-weight: 700;
}
@media (max-width: 767px) {
  .itv__card-meta {
    font-size: 13px;
  }
}
.itv__card-name {
  font-size: 19px;
  font-weight: 700;
  padding: 0 20px 18px;
}
@media (max-width: 767px) {
  .itv__card-name {
    font-size: 16px;
  }
}
.itv__card-more {
  position: absolute;
  right: 21px;
  bottom: 31px;
  width: 33px;
  height: 33px;
  border-radius: 999px;
  background: #333333;
  color: #ffffff;
  font-size: 20px;
  line-height: 0;
}
.requirements {
  position: relative;
  padding-top: 160px;
}
@media (max-width: 767px) {
  .requirements {
    padding-top: 130px;
  }
}
.requirements__visual {
  position: absolute;
  width: 100%;
  height: 270px;
  top: 0;
  z-index: 30;
}
@media (max-width: 767px) {
  .requirements__visual {
    height: 160px;
  }
}
.requirements__visual-bg {
  position: absolute;
  width: 100%;
  height: auto;
  height: 300px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .requirements__visual-bg {
    height: 160px;
  }
}
.requirements__visual-people {
  position: absolute;
  left: 64px;
  width: 425px;
  z-index: 2;
  top: -86px;
}
@media (max-width: 767px) {
  .requirements__visual-people {
    width: 250px;
    left: 10px;
    top: -30px;
  }
}
.requirements__body {
  position: relative;
  z-index: 30;
  border-radius: 0 152px 0 0;
  padding-bottom: 220px;
  padding-top: 55px;
  background-image: url("../media/images/bg03.webp");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
@media (max-width: 767px) {
  .requirements__body {
    border-radius: 0 70px 0 0;
    margin-top: -30px;
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .requirements__body {
    padding-bottom: 100px;
  }
}
.requirements__inner {
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 16px;
}
.requirements .section-heading {
  margin-bottom: 45px;
}
.requirements__intro {
  text-align: center;
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 20px;
  font-weight: 700;
  background: #fff;
  border-radius: 15px;
  padding: 20px;
}
@media (max-width: 767px) {
  .requirements__intro {
    font-size: 15px;
    text-align: left;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 10px;
  }
}
.requirements__apply {
  max-width: 1020px;
  margin: 0 auto 20px;
}
@media (max-width: 767px) {
  .requirements__apply {
    margin: 0 auto 10px;
  }
}
.requirements__panel {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.requirements__tabs {
  display: flex;
  gap: 8px;
}
@media (max-width: 767px) {
  .requirements__tabs {
    gap: 2px;
  }
}
.requirements__tab {
  flex: 1;
  padding: 16px;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  background: #9CB3CD;
  border-radius: 10px 10px 0 0;
}
.requirements__tab.sales.is-active {
  background: #2b62ca;
}
.requirements__tab.training.is-active {
  background: #00a4eb;
}
.requirements__tab.recruitment.is-active {
  background: #1eaa59;
}
.requirements__tab.support.is-active {
  background: #ff7442;
}
.requirements__tab.pr.is-active {
  background: #e34242;
}
@media (max-width: 767px) {
  .requirements__tab {
    font-size: 13px;
    padding: 10px 6px;
  }
}
.requirements__content {
  display: none;
  background: #ffffff;
  padding: 45px 60px 70px;
  border-radius: 0 0 12px 12px;
}
@media (max-width: 767px) {
  .requirements__content {
    padding: 32px 16px;
  }
}
.requirements__content.is-active {
  display: block;
}
.requirements__title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 29px;
}
@media (max-width: 767px) {
  .requirements__title {
    font-size: 22px;
    margin-bottom: 2px;
  }
}
.requirements__row {
  display: flex;
  gap: 40px;
  padding: 24px 0;
  border-bottom: 1px dotted #d9d9d9;
}
.requirements__row a {
  color: #2b62ca;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .requirements__row a:hover {
    color: #0093d9;
    transition: 0.3s;
  }
}
.requirements__row:last-child {
  border: none;
}
@media (max-width: 767px) {
  .requirements__row {
    flex-direction: column;
    gap: 6px;
    padding: 12px 0;
  }
}
.requirements__term {
  flex: 0 0 150px;
  font-size: 15px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .requirements__term {
    flex-basis: auto;
    font-size: 14px;
  }
}
.requirements__term2 {
  flex: 0 0 170px;
  font-size: 15px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .requirements__term2 {
    flex-basis: auto;
    font-size: 14px;
  }
}
.requirements__desc {
  flex: 1;
  font-size: 15px;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .requirements__desc {
    font-size: 14px;
    line-height: 1.6;
  }
}
.requirements__desc p + p {
  margin-top: 26px;
}
@media (max-width: 767px) {
  .requirements__desc p + p {
    margin-top: 14px;
  }
}
.requirements__flow li {
  position: relative;
  padding-left: 20px;
}
.requirements__flow li + li {
  margin-top: 10px;
}
.requirements__flow li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #333333;
}
.requirements__document {
  margin-top: 10px;
}
.requirements__document li {
  position: relative;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .requirements__document li {
    font-size: 14px;
  }
}
.requirements__document li + li {
  margin-top: 3px;
}
.requirements__document li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #333333;
}
.requirements__step {
  font-weight: 700;
  margin-right: 18px;
}
@media (max-width: 767px) {
  .requirements__step {
    display: block;
  }
}
.requirements__cap {
  font-size: 12px;
}
.requirements__caution {
  color: #e34242;
  display: block;
  padding-top: 5px;
  font-weight: 700;
}
.requirements__link {
  font-weight: 700;
  color: #495ed6;
  border-bottom: 2px solid;
}
.requirements__note {
  text-align: center;
  font-size: 13px;
  color: #7c7c7c;
  margin-top: 24px;
}
.entry {
  padding-bottom: 120px;
  background-image: url("../media/images/bg04.webp");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-position: top 350px center;
}
@media (max-width: 767px) {
  .entry {
    background-position: top 160px center;
    padding-bottom: 70px;
  }
}
.entry__visual {
  position: relative;
  z-index: 30;
  width: 100%;
  height: 350px;
  margin-bottom: 115px;
}
.entry__visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 50px;
  width: 89.2%;
  height: 350px;
  background: linear-gradient(111deg, #AAAFEC, #93E2EA);
}
@media (max-width: 767px) {
  .entry__visual::after {
    top: 30px;
    height: 160px;
  }
}
@media (max-width: 767px) {
  .entry__visual {
    height: 160px;
    margin-bottom: 80px;
  }
}
.entry__visual-bg {
  width: 89.3%;
  margin: -50px 0 0 auto;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 767px) {
  .entry__visual-bg {
    margin-top: -30px;
  }
}
.entry__inner {
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 16px;
}
.entry .section-heading {
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .entry .section-heading {
    margin-bottom: 25px;
  }
}
.entry__intro {
  text-align: center;
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 53px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .entry__intro {
    font-size: 16px;
    text-align: left;
    margin-bottom: 32px;
  }
}
.entry__panel {
  background: #ffffff;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  padding: 13px 0 100px;
}
@media (max-width: 767px) {
  .entry__panel {
    padding: 24px 0 34px;
  }
}
.entry fieldset {
  border: none;
}
.entry input[type="file"] {
  width: 100%;
  max-width: 320px;
  font-size: 12px;
}
.entry input[type="file"]::file-selector-button, .entry input[type="file"]::-webkit-file-upload-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid #BDBDBD;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  background: #f0f0f0;
  width: 170px;
  position: relative;
  margin-right: 12px;
}
.entry .reserve-calendar {
  display: none;
}
.entry .input-form, .entry .alert {
  max-width: 782px;
  margin: 20px auto 15px;
  padding: 0 16px;
}
@media (max-width: 767px) {
  .entry .input-form, .entry .alert {
    padding: 14px 16px;
  }
}
.entry .form-group {
  padding: 25px 0;
  border-top: 1px dotted #d9d9d9;
}
@media (max-width: 767px) {
  .entry .form-group {
    padding: 15px 0;
  }
}
.entry .form-group:first-child {
  border: none;
}
.entry .form-group.type-19 .controls .input {
  display: flex;
  gap: 10px;
}
.entry .form-group.type-19 .controls .input > span {
  flex: 1 1 0;
  min-width: 0;
}
.entry .form-group.type-8 .controls .input {
  display: flex;
  align-items: center;
  gap: 8px;
}
.entry .form-group.type-8 .controls .input > span[class^="phone"] {
  flex: 1 1 0;
  min-width: 0;
}
.entry .form-group.type-14 + .form-group.type-14 {
  border-top: none;
  padding-top: 0;
}
.entry .form-group.type-14 .controls .help {
  order: 0;
  margin: 30px 0 0;
}
@media (max-width: 767px) {
  .entry .form-group.type-14 .controls .help {
    margin-top: 16px;
  }
}
.entry .form-group.type-14 .controls .input {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
}
.entry .form-group.type-14 .controls .input > label {
  position: relative;
  display: block;
  width: 100%;
  max-width: 320px;
}
.entry .form-group.type-14 .controls .input > label::after {
  position: absolute;
  content: "＋";
  display: block;
  top: 50%;
  left: 138px;
  transform: translateY(-50%);
  pointer-events: none;
}
.entry .form-group.type-14 .controls .input .remove-file {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 170px;
  padding: 5px;
  border: 1px solid #e34242;
  border-radius: 6px;
  background: #e34242;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .entry .form-group.type-14 .controls .input .remove-file:hover {
    opacity: 0.8;
  }
}
.entry .form-group.type-14 .controls .input .file-name {
  font-size: 12px;
  word-break: break-all;
}
.entry .form-group.type-18 {
  border-top: none;
  padding-bottom: 0;
}
.entry .form-group.type-18 .rules .entry__checkbox--agree {
  display: none;
}
.entry .form-group.type-18 .check {
  text-align: center;
}
.entry .form-group.type-18 .check label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .entry .form-group.type-18 .check label {
    margin-bottom: 0;
  }
}
.entry .control-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}
.entry .control-label .icon {
  order: -1;
  display: flex;
  align-items: center;
}
.entry .control-label .title:only-child {
  display: flex;
  align-items: center;
  gap: 8px;
}
.entry .control-label .title:only-child::before {
  content: "任意";
  padding: 4px 10px;
  border-radius: 999px;
  background: #739caf;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.entry .required {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 999px;
  line-height: 1;
  background: #e34242;
}
.entry .error {
  width: 100%;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.3;
  color: #e34242;
}
.entry .help {
  order: -1;
  font-size: 12px;
  color: #7c7c7c;
  line-height: 1.3;
  width: 100%;
  margin: 0 0 14px;
}
.entry .help p {
  white-space: pre-line;
}
.entry .controls {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 500;
}
.entry .controls > div {
  width: 100%;
}
.entry fieldset.confirm .type-19 .first {
  margin-left: 0.4em;
}
.entry .radios {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}
@media (max-width: 767px) {
  .entry .radios {
    gap: 6px 24px;
  }
}
.entry .radios .item label {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.entry__checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}
.entry input[type="checkbox"], .entry input[type="radio"] {
  accent-color: #495ED6;
}
.entry input[type="text"], .entry input[type="email"], .entry textarea {
  width: 100%;
  border-radius: 8px;
  padding: 14px;
  font-size: 14px;
  font-family: inherit;
  background: #f0f0f0;
  color: #333333;
}
.entry input[type="text"]::placeholder, .entry input[type="email"]::placeholder, .entry textarea::placeholder {
  color: #B6B6B6;
}
.entry textarea {
  min-height: 200px;
  resize: vertical;
}
.entry__privacy {
  padding-top: 21px;
  text-align: center;
}
.entry__privacy-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .entry__privacy-heading {
    margin-bottom: 10px;
  }
}
.entry__privacy-box-wrap {
  position: relative;
  margin-bottom: 31px;
}
@media (max-width: 767px) {
  .entry__privacy-box-wrap {
    margin-bottom: 20px;
  }
}
.entry__privacy-box {
  height: 222px;
  overflow-y: auto;
  text-align: left;
  font-size: 14px;
  border-radius: 8px;
  padding: 0 40px 25px 25px;
  border: 1px solid #B8B8B8;
  line-height: 1.86;
  scrollbar-width: none;
}
@media (max-width: 767px) {
  .entry__privacy-box {
    padding: 24px 16px;
  }
}
.entry__privacy-box::-webkit-scrollbar {
  display: none;
}
.entry__privacy-box .head {
  font-size: 16px;
  font-weight: 500;
  margin-top: 25px;
}
.entry__privacy-box p:not(:last-child) {
  margin-bottom: 8px;
}
.entry__privacy-scrollbar {
  position: absolute;
  top: 12px;
  bottom: 12px;
  right: 10px;
  width: 8px;
}
.entry__privacy-scrollbar-thumb {
  position: absolute;
  left: 0;
  width: 100%;
  background: #d9d9d9;
  border-radius: 999px;
}
.entry__checkbox--agree {
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  width: fit-content;
  margin: 0 auto 20px;
}
@media (max-width: 767px) {
  .entry__checkbox--agree {
    margin-bottom: 0;
  }
}
.entry .submit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media (max-width: 767px) {
  .entry .submit {
    flex-direction: column;
  }
}
.entry button.confirm, .entry button.modify, .entry button.send, .entry .modify span {
  display: block;
  width: 250px;
  padding: 14px;
  border: none;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  background: linear-gradient(103deg, #2d44cb, #00c7d9);
  transition: 0.3s;
}
.entry button.confirm:disabled, .entry button.modify:disabled, .entry button.send:disabled, .entry .modify span:disabled {
  opacity: 0.4;
}
@media (min-width: 768px) {
  .entry button.confirm:not(:disabled):hover, .entry button.modify:not(:disabled):hover, .entry button.send:not(:disabled):hover, .entry .modify span:not(:disabled):hover {
    opacity: 0.7;
  }
}
.entry .modify {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .entry .modify {
    margin-top: 12px;
  }
}
.entry .modify span {
  margin: 0 auto;
  padding: 13px;
  border: 1px solid #333333;
  background: #ffffff;
  color: #333333;
}
.footer {
  position: relative;
  background: #ffffff;
  padding: 50px 0;
}
.footer__inner {
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 767px) {
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer__left {
  flex-shrink: 0;
}
.footer__logo {
  width: 200px;
  margin-bottom: 22px;
}
@media (max-width: 767px) {
  .footer__logo {
    width: 150px;
  }
}
.footer__info {
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .footer__info .adjust {
    display: block;
  }
}
.footer__right {
  text-align: right;
}
@media (max-width: 767px) {
  .footer__right {
    text-align: left;
  }
}
.footer__links {
  display: flex;
  justify-content: flex-end;
  gap: 19px;
  font-size: 12px;
  margin-bottom: 16px;
  font-weight: 500;
}
.footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
@media (min-width: 768px) {
  .footer__links a {
    position: relative;
  }
  .footer__links a:after {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background: #333333;
    position: absolute;
    bottom: -6px;
    left: 0;
    transform: scale(0, 1);
    transition: 0.3s;
  }
  .footer__links a:hover:after {
    transform: scale(1, 1);
  }
}
@media (max-width: 767px) {
  .footer__links {
    justify-content: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}
.footer__link-icon {
  width: 12px;
  height: 12px;
}
.footer__copyright {
  font-size: 11px;
  color: #888888;
  font-weight: 500;
}
.pagetop {
  position: fixed;
  right: 16px;
  bottom: 30px;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 90;
  padding-top: 7px;
  border: 3px solid #ffffff;
  box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  .pagetop {
    bottom: 14px;
    width: 60px;
    height: 60px;
  }
}
.pagetop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (min-width: 768px) {
  .pagetop {
    /*
		&.is-docked {
		position: absolute;
		right: 106px;
		bottom: calc(100% - 53px);
	}
		*/
  }
  .pagetop.is-visible:hover {
    opacity: 0.8;
  }
}
.pagetop__chara {
  position: absolute;
  top: -36px;
  width: 46px;
  height: auto;
  left: 20px;
}
@media (max-width: 767px) {
  .pagetop__chara {
    width: 37px;
    left: 11px;
  }
}
.pagetop__text {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 767px) {
  .pagetop__text {
    font-size: 12px;
  }
}
body.has-open-modal {
  overflow: hidden;
}
.card-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(51, 51, 51, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.card-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.card-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.card-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.card-modal__frame {
  position: relative;
  z-index: 1;
  width: 91%;
  max-width: 1100px;
}
.card-modal__panel {
  max-height: 85vh;
  overflow-y: auto;
  overscroll-behavior: none;
  background: #ffffff;
  border-radius: 20px;
  isolation: isolate;
  scrollbar-width: none;
}
.card-modal__panel::-webkit-scrollbar {
  display: none;
}
.card-modal__scrollbar {
  position: absolute;
  top: 110px;
  bottom: 12px;
  right: 4px;
  width: 8px;
  z-index: 2;
}
.card-modal:has(.itv-modal) .card-modal__scrollbar {
  top: 280px;
}
.card-modal__scrollbar-thumb {
  position: absolute;
  left: 0;
  width: 100%;
  background: #d9d9d9;
  border-radius: 999px;
}
.card-modal__close {
  position: absolute;
  top: -30px;
  right: -30px;
  z-index: 2;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #333333;
  color: #ffffff;
  font-size: 27px;
  line-height: 1;
  border: 3px solid #ffffff;
}
@media (max-width: 767px) {
  .card-modal__close {
    top: -23px;
    right: -12px;
    width: 40px;
    height: 40px;
    font-size: 21px;
  }
}
.business-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 51px 12px;
  letter-spacing: 2px;
}
@media (max-width: 767px) {
  .business-modal__header {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.business-modal--sales .business-modal__header {
  background: #2b62ca;
}
.business-modal--training .business-modal__header {
  background: #00a4eb;
}
.business-modal--recruitment .business-modal__header {
  background: #1eaa59;
}
.business-modal--support .business-modal__header {
  background: #ff7442;
}
.business-modal--pr .business-modal__header {
  background: #e34242;
}
.business-modal__title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
}
@media (max-width: 767px) {
  .business-modal__title {
    font-size: 24px;
  }
}
.business-modal__title-en {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 40px;
  font-style: italic;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
}
@media (max-width: 767px) {
  .business-modal__title-en {
    font-size: 18px;
  }
}
.business-modal__body {
  padding: 31px 52px 40px;
}
@media (max-width: 1024px) {
  .business-modal__body {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.business-modal__heading {
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding-bottom: 13px;
  margin: 0 0 32px 0;
  border-bottom: 1px solid #d9d9d9;
}
@media (max-width: 767px) {
  .business-modal__heading {
    font-size: 18px;
    margin: 0 0 24px;
  }
}
.business-modal__content {
  display: flex;
  gap: 41px;
  margin-bottom: 53px;
}
@media (max-width: 1024px) {
  .business-modal__content {
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .business-modal__content {
    flex-direction: column;
    gap: 24px;
  }
}
.business-modal__text {
  flex: 1;
  min-width: 0;
}
.business-modal__text-block:not(:last-child) {
  margin-bottom: 22px;
}
.business-modal__text-block h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 0.2px;
}
@media (max-width: 767px) {
  .business-modal__text-block h5 {
    font-size: 15px;
    letter-spacing: 0;
  }
}
.business-modal__text-block p {
  font-size: 14px;
  line-height: 1.97;
  letter-spacing: 0.4px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .business-modal__text-block p {
    font-size: 13px;
    letter-spacing: 0;
  }
}
.business-modal__tasks {
  flex: 0 0 440px;
  padding: 19px;
  background: #f1f1f1;
  border-radius: 10px;
}
@media (max-width: 1024px) {
  .business-modal__tasks {
    flex: 0 0 310px;
  }
}
@media (max-width: 767px) {
  .business-modal__tasks {
    flex-basis: auto;
    padding: 16px;
  }
}
.business-modal__tasks-title {
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}
.business-modal--sales .business-modal__tasks-title {
  color: #2b62ca;
}
.business-modal--training .business-modal__tasks-title {
  color: #00a4eb;
}
.business-modal--recruitment .business-modal__tasks-title {
  color: #1eaa59;
}
.business-modal--support .business-modal__tasks-title {
  color: #ff7442;
}
.business-modal--pr .business-modal__tasks-title {
  color: #e34242;
}
.business-modal__tasks-list li {
  display: flex;
  gap: 7px;
  background: #ffffff;
  border-radius: 12px;
  padding: 9px 16px 13px;
}
.business-modal__tasks-list li:not(:last-child) {
  margin-bottom: 20px;
}
.business-modal__tasks-list.training li {
  min-height: 100px;
}
.business-modal__tasks-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 6px;
  border-radius: 50%;
  position: relative;
}
.business-modal--sales .business-modal__tasks-icon {
  background: #2b62ca;
}
.business-modal--training .business-modal__tasks-icon {
  background: #00a4eb;
}
.business-modal--recruitment .business-modal__tasks-icon {
  background: #1eaa59;
}
.business-modal--support .business-modal__tasks-icon {
  background: #ff7442;
}
.business-modal--pr .business-modal__tasks-icon {
  background: #e34242;
}
.business-modal__tasks-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 5px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translate(-50%, -65%) rotate(-45deg);
}
.business-modal__tasks-heading {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding-bottom: 5px;
}
@media (max-width: 767px) {
  .business-modal__tasks-heading {
    font-size: 15px;
    letter-spacing: 0;
  }
}
.business-modal--sales .business-modal__tasks-heading {
  color: #2b62ca;
}
.business-modal--training .business-modal__tasks-heading {
  color: #00a4eb;
}
.business-modal--recruitment .business-modal__tasks-heading {
  color: #1eaa59;
}
.business-modal--support .business-modal__tasks-heading {
  color: #ff7442;
}
.business-modal--pr .business-modal__tasks-heading {
  color: #e34242;
}
.business-modal__tasks-desc {
  font-size: 13px;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.4px;
}
.business-modal__images {
  display: flex;
  gap: 40px;
}
@media (max-width: 767px) {
  .business-modal__images {
    flex-direction: column;
    gap: 12px;
  }
}
.business-modal__images img {
  flex: 1;
  min-width: 0;
  aspect-ratio: 1.5;
  object-fit: cover;
  border-radius: 10px;
}
.itv-modal {
  position: relative;
}
.itv-modal__banner {
  position: relative;
  padding: 45px 47px 42px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 20px 20px 0 0;
  min-height: 240px;
  gap: 32px;
  background-image: url(../media/images/bg_logo_small.png);
  background-position: right -67px center;
  background-size: 360px;
}
@media (max-width: 1024px) {
  .itv-modal__banner {
    min-height: 260px;
  }
}
@media (max-width: 767px) {
  .itv-modal__banner {
    min-height: auto;
    padding: 24px 16px;
    gap: 16px;
    background-size: 240px;
  }
}
.itv-modal--sales .itv-modal__banner {
  background-color: #2b62ca;
}
.itv-modal--recruitment .itv-modal__banner {
  background-color: #1eaa59;
}
.itv-modal--support .itv-modal__banner {
  background-color: #ff7442;
}
.itv-modal--pr .itv-modal__banner {
  background-color: #e34242;
}
.itv-modal--recruitment .itv-modal__banner {
  padding-right: 23px;
  align-items: end;
  background-position: left -67px center;
}
@media (max-width: 1024px) {
  .itv-modal--recruitment .itv-modal__banner {
    align-items: flex-start;
  }
}
.itv-modal--support .itv-modal__banner {
  padding-right: 23px;
  align-items: end;
  background-position: left -67px center;
}
@media (max-width: 1024px) {
  .itv-modal--support .itv-modal__banner {
    align-items: flex-start;
  }
}
.itv-modal__heading {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.44;
  letter-spacing: 1.5px;
  max-width: calc(100% - 400px);
  width: 100%;
}
@media (max-width: 1024px) {
  .itv-modal__heading {
    max-width: none;
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .itv-modal__heading {
    font-size: 22px;
  }
}
.itv-modal__heading .adjust {
  display: block;
}
.itv-modal--sales .itv-modal__heading {
  max-width: calc(100% - 330px);
}
@media (max-width: 1024px) {
  .itv-modal--sales .itv-modal__heading {
    max-width: none;
  }
}
.itv-modal--recruitment .itv-modal__heading {
  font-size: 38px;
  margin-top: 2px;
  line-height: 1.55;
}
@media (max-width: 1024px) {
  .itv-modal--recruitment .itv-modal__heading {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .itv-modal--recruitment .itv-modal__heading {
    font-size: 22px;
    margin: 0;
    line-height: 1.44;
  }
}
.itv-modal--support .itv-modal__heading {
  max-width: calc(100% - 380px);
  font-size: 38px;
  margin-top: 2px;
  line-height: 1.55;
}
@media (max-width: 1024px) {
  .itv-modal--support .itv-modal__heading {
    font-size: 28px;
    max-width: none;
  }
}
@media (max-width: 767px) {
  .itv-modal--support .itv-modal__heading {
    font-size: 22px;
    margin: 0;
  }
}
.itv-modal--pr .itv-modal__heading {
  max-width: calc(100% - 388px);
}
@media (max-width: 1024px) {
  .itv-modal--pr .itv-modal__heading {
    max-width: none;
  }
}
.itv-modal__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: calc(100% - 400px);
  width: 100%;
}
@media (max-width: 1024px) {
  .itv-modal__meta {
    max-width: none;
  }
}
@media (max-width: 767px) {
  .itv-modal__meta {
    gap: 4px 12px;
  }
}
.itv-modal--support .itv-modal__meta {
  max-width: calc(100% - 380px);
}
@media (max-width: 1024px) {
  .itv-modal--support .itv-modal__meta {
    max-width: none;
  }
}
.itv-modal__meta-tag {
  padding: 0 22px;
  background: #ffffff;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
}
.itv-modal--sales .itv-modal__meta-tag {
  color: #2b62ca;
}
.itv-modal--recruitment .itv-modal__meta-tag {
  color: #1eaa59;
}
.itv-modal--support .itv-modal__meta-tag {
  color: #ff7442;
}
.itv-modal--pr .itv-modal__meta-tag {
  color: #e34242;
}
.itv-modal__meta-dept, .itv-modal__meta-name {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
}
@media (max-width: 767px) {
  .itv-modal .adjust {
    width: 100%;
  }
}
.itv-modal__meta-dept {
  display: flex;
  align-items: center;
  gap: 18px;
}
.itv-modal__meta-dept::after {
  content: "";
  display: block;
  width: 1px;
  height: 17px;
  background: #ffffff;
}
.itv-modal__person {
  position: absolute;
  z-index: 2;
  height: auto;
}
.itv-modal--sales .itv-modal__person {
  width: 274px;
  right: 105px;
  top: 52px;
}
.itv-modal--recruitment .itv-modal__person {
  width: 350px;
  top: 96px;
  left: 51px;
}
.itv-modal--support .itv-modal__person {
  width: 361px;
  left: 51px;
  top: 98px;
}
.itv-modal--pr .itv-modal__person {
  width: 357px;
  right: 44px;
  top: 78px;
}
@media (max-width: 1024px) {
  .itv-modal--sales .itv-modal__person, .itv-modal--recruitment .itv-modal__person, .itv-modal--support .itv-modal__person, .itv-modal--pr .itv-modal__person {
    width: 200px;
    left: 12px;
    top: 400px;
  }
  .itv-modal--pr .itv-modal__person, .itv-modal--sales .itv-modal__person {
    left: unset;
    right: 17px;
  }
}
@media (max-width: 767px) {
  .itv-modal--sales .itv-modal__person, .itv-modal--recruitment .itv-modal__person, .itv-modal--support .itv-modal__person, .itv-modal--pr .itv-modal__person {
    position: static;
    display: block;
    width: 160px;
    margin: 30px auto 0;
  }
}
.itv-modal__body {
  padding: 47px 51px 81px 49px;
}
@media (max-width: 1024px) {
  .itv-modal__body {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 1024px) {
  .itv-modal__body {
    padding-top: 20px;
  }
}
.itv-modal__qa {
  max-width: calc(100% - 400px);
}
@media (max-width: 1024px) {
  .itv-modal__qa {
    max-width: calc(100% - 208px);
  }
}
@media (max-width: 767px) {
  .itv-modal__qa {
    max-width: none;
  }
}
.itv-modal--recruitment .itv-modal__qa {
  margin-left: auto;
}
.itv-modal--support .itv-modal__qa {
  margin-left: auto;
}
.itv-modal__qa dt {
  position: relative;
  padding-left: 29px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.itv-modal__qa dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 19px;
  height: 19px;
  border-radius: 50%;
}
.itv-modal__qa dt:not(:first-child) {
  margin-top: 29px;
}
.itv-modal--sales .itv-modal__qa dt {
  color: #2b62ca;
}
.itv-modal--sales .itv-modal__qa dt::before {
  background: radial-gradient(circle, #2b62ca 0%, #2b62ca 21%, #e9f4ff 21%, #e9f4ff 100%);
}
.itv-modal--recruitment .itv-modal__qa dt {
  color: #1eaa59;
}
.itv-modal--recruitment .itv-modal__qa dt::before {
  background: radial-gradient(circle, #1eaa59 0%, #1eaa59 21%, #dcefe4 21%, #dcefe4 100%);
}
.itv-modal--support .itv-modal__qa dt {
  color: #ff7442;
}
.itv-modal--support .itv-modal__qa dt::before {
  background: radial-gradient(circle, #ff7442 0%, #ff7442 21%, #ffeadf 21%, #ffeadf 100%);
}
.itv-modal--pr .itv-modal__qa dt {
  color: #e34242;
}
.itv-modal--pr .itv-modal__qa dt::before {
  background: radial-gradient(circle, #e34242 0%, #e34242 21%, #ffeeee 21%, #ffeeee 100%);
}
.itv-modal__qa dd {
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}
.itv-modal__qa dd mark {
  background: #fff58a;
  color: inherit;
}
.itv-modal__photos {
  display: flex;
  gap: 38px;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .itv-modal__photos {
    margin-top: 34px;
  }
}
.itv-modal--support .itv-modal__photos {
  margin-top: 54px;
}
@media (max-width: 767px) {
  .itv-modal--support .itv-modal__photos {
    margin-top: 34px;
  }
}
@media (max-width: 767px) {
  .itv-modal__photos {
    flex-direction: column;
    gap: 12px;
  }
}
.itv-modal__photos img {
  flex: 1;
  min-width: 0;
  aspect-ratio: 1.5;
  object-fit: cover;
  border-radius: 10px;
}
.itv-modal__schedule {
  margin-top: 50px;
  padding: 34px 44px 46px;
  border-radius: 10px;
}
@media (max-width: 1024px) {
  .itv-modal__schedule {
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 30px;
    padding-bottom: 34px;
  }
}
.itv-modal--sales .itv-modal__schedule {
  background: #e9f4ff;
}
.itv-modal--recruitment .itv-modal__schedule {
  background: #dcefe4;
}
.itv-modal--support .itv-modal__schedule {
  background: #ffeadf;
}
.itv-modal--pr .itv-modal__schedule {
  background: #ffeeee;
}
.itv-modal__schedule-title {
  padding: 6px;
  background: #ffffff;
  border-radius: 999px;
  text-align: center;
  font-size: 19px;
  font-weight: 700;
}
.itv-modal__schedule-list {
  display: flex;
  position: relative;
  margin-top: 33px;
  margin-left: -10px;
  margin-right: -10px;
}
@media (max-width: 767px) {
  .itv-modal__schedule-list {
    flex-direction: column;
    padding-left: 6px;
    margin: 32px 0 0;
  }
}
.itv-modal--recruitment .itv-modal__schedule-list {
  margin-left: 8px;
  margin-right: -23px;
}
@media (max-width: 1024px) {
  .itv-modal--recruitment .itv-modal__schedule-list {
    margin-left: 0;
    margin-right: 0;
  }
}
.itv-modal--recruitment .itv-modal__schedule-list li:first-child .itv-modal__schedule-desc {
  margin-left: -20px;
}
@media (max-width: 767px) {
  .itv-modal--recruitment .itv-modal__schedule-list li:first-child .itv-modal__schedule-desc {
    margin-left: 0;
  }
}
.itv-modal__schedule-list li {
  position: relative;
  flex: 1;
  text-align: center;
}
@media (max-width: 1024px) {
  .itv-modal__schedule-list li {
    padding: 0 8px;
  }
  .itv-modal__schedule-list li:first-child {
    padding-left: 0;
  }
  .itv-modal__schedule-list li:last-child {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .itv-modal__schedule-list li {
    text-align: left;
    display: flex;
    align-items: flex-start;
    padding: 0 0 12px 12px;
    gap: 4px;
  }
  .itv-modal__schedule-list li:last-child, .itv-modal__schedule-list li:first-child {
    padding: 0 0 12px 12px;
  }
}
.itv-modal__schedule-list li::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 39px;
  height: 1px;
  z-index: 0;
}
.itv-modal--sales .itv-modal__schedule-list li::after {
  background: #2b62ca;
}
.itv-modal--recruitment .itv-modal__schedule-list li::after {
  background: #1eaa59;
}
.itv-modal--support .itv-modal__schedule-list li::after {
  background: #ff7442;
}
.itv-modal--pr .itv-modal__schedule-list li::after {
  background: #e34242;
}
@media (max-width: 767px) {
  .itv-modal__schedule-list li::after {
    left: 0;
    top: 9px;
    bottom: -24px;
    width: 1px;
    height: 100%;
  }
}
.itv-modal__schedule-list li:first-child::after {
  left: 50%;
}
@media (max-width: 767px) {
  .itv-modal__schedule-list li:first-child::after {
    left: 0;
  }
}
.itv-modal__schedule-list li:last-child::after {
  right: 50%;
}
@media (max-width: 767px) {
  .itv-modal__schedule-list li:last-child::after {
    display: none;
  }
}
.itv-modal__schedule-list li::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 33px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  transform: translateX(-50%);
}
.itv-modal--sales .itv-modal__schedule-list li::before {
  background: #2b62ca;
}
.itv-modal--recruitment .itv-modal__schedule-list li::before {
  background: #1eaa59;
}
.itv-modal--support .itv-modal__schedule-list li::before {
  background: #ff7442;
}
.itv-modal--pr .itv-modal__schedule-list li::before {
  background: #e34242;
}
@media (max-width: 767px) {
  .itv-modal__schedule-list li::before {
    left: -5px;
    top: 5px;
    transform: none;
  }
}
.itv-modal__schedule-time {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 46px;
}
@media (max-width: 1024px) {
  .itv-modal__schedule-time {
    font-size: 18px;
  }
}
.itv-modal--sales .itv-modal__schedule-time {
  color: #2b62ca;
}
.itv-modal--recruitment .itv-modal__schedule-time {
  color: #1eaa59;
}
.itv-modal--support .itv-modal__schedule-time {
  color: #ff7442;
}
.itv-modal--pr .itv-modal__schedule-time {
  color: #e34242;
}
@media (max-width: 767px) {
  .itv-modal__schedule-time {
    font-size: 16px;
    margin: 0;
    min-width: 80px;
    min-width: 70px;
    width: 70px;
  }
}
.itv-modal__schedule-desc {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
}
@media (max-width: 767px) {
  .itv-modal__schedule-desc {
    font-size: 13px;
  }
}
.itv-modal__schedule-desc .small {
  font-weight: 500;
  font-size: 13px;
  display: block;
  margin-top: 10px;
  line-height: 1.33em;
}
@media (max-width: 1024px) {
  .itv-modal__schedule-desc .small {
    font-size: 11px;
    line-height: 1.6em;
  }
}
@media (max-width: 767px) {
  .itv-modal__schedule-desc .small {
    margin-top: 3px;
  }
}
.itv-modal__schedule-desc .adjust {
  display: block;
}
@media (max-width: 767px) {
  .itv-modal__schedule-desc .adjust {
    display: inline;
  }
}
.itv-modal__holiday {
  display: flex;
  gap: 39px;
  margin-top: 49px;
  padding: 30px 28px 32px;
  border-radius: 10px;
  border: 2px solid;
}
@media (max-width: 767px) {
  .itv-modal__holiday {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    margin-top: 30px;
  }
}
.itv-modal--sales .itv-modal__holiday {
  border-color: #2b62ca;
}
.itv-modal--recruitment .itv-modal__holiday {
  border-color: #1eaa59;
}
.itv-modal--support .itv-modal__holiday {
  border-color: #ff7442;
}
.itv-modal--pr .itv-modal__holiday {
  border-color: #e34242;
}
.itv-modal__holiday img {
  flex: 0 0 260px;
  width: 260px;
  border-radius: 10px;
  height: 100%;
}
@media (max-width: 767px) {
  .itv-modal__holiday img {
    width: 100%;
    flex-basis: auto;
  }
}
.itv-modal__holiday-heading {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 5px;
}
.itv-modal--sales .itv-modal__holiday-heading {
  color: #2b62ca;
}
.itv-modal--recruitment .itv-modal__holiday-heading {
  color: #1eaa59;
}
.itv-modal--support .itv-modal__holiday-heading {
  color: #ff7442;
}
.itv-modal--pr .itv-modal__holiday-heading {
  color: #e34242;
}
.itv-modal__holiday-text {
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
}
@media (max-width: 767px) {
  .itv-modal__holiday-text {
    font-size: 14px;
    line-height: 1.7;
  }
}
/* 強みカード スクロールでフェードイン */
.strengths__item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.strengths__item.is-shown {
  opacity: 1;
  transform: translateY(0);
}
.strengths__item:nth-child(2) {
  transition-delay: 0.15s;
}
.strengths__item:nth-child(3) {
  transition-delay: 0.3s;
}
/* 英字見出し スクロールで左から伸びる */
.section-heading__en {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.section-heading__en.is-shown {
  transform: scaleX(1);
}
/* メッセージ コラージュ画像 スクロールでふわっと拡大 */
.message__collage-item {
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.2, 1), transform 0.8s cubic-bezier(0.25, 0.1, 0.2, 1);
  will-change: transform, opacity;
}
.message__collage-item.is-shown {
  opacity: 1;
  transform: scale(1);
}
.complete {
  padding: 180px 30px 140px;
  background-image: url(../media/images/bg04.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
@media (max-width: 767px) {
  .complete {
    padding: 140px 30px 90px;
  }
}
.complete .inner {
  margin: 0 auto;
  padding: 30px;
  max-width: 1100px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  background-color: #fff;
}
@media (max-width: 767px) {
  .complete .inner {
    padding: 24px;
  }
}
.complete .title {
  margin: 0 auto 30px;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #2b62ca;
  line-height: 1.7;
  letter-spacing: 1.2px;
}
@media (max-width: 767px) {
  .complete .title {
    font-size: 24px;
  }
}
.complete p {
  text-align: center;
}
/*# sourceMappingURL=./style.css.map */