@charset "UTF-8";
.kv-wrapper,
.kv-bg-wrapper {
  height: max(calc(908 / 1440 * 100vw), 908px);
}

.lead-movie {
  width: min(800px, calc(100% - 20px));
  margin: 24px auto 0;
  text-align: center;
}

.purpose-box {
  padding: 40px;
  background: center / cover no-repeat url(/recruit/purpose/images/bg_purpose_box_pc.png);
}

.purpose-heading {
  margin-bottom: 16px;
}

.purpose-message {
  margin-bottom: 24px;
  color: #242424;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.533;
  letter-spacing: 0.45px;
}

.purpose-box .text:not(:first-child) {
  margin-top: 8px;
}

@media not all and (min-width: 769px) {
  .kv-wrapper {
    height: calc(749 / 375 * 100vw);
  }
  .kv-bg-wrapper {
    height: calc(631 / 375 * 100vw);
  }
  .kv-catchcopy {
    width: calc(100% - (26 / 375 * 100vw));
  }
  .content-lead {
    padding-bottom: var(--40px);
  }
  .lead-movie {
    width: 100%;
    margin-top: var(--16px);
  }
  .lead-movie img {
    width: auto;
    height: var(--180px);
  }
  .purpose-box {
    padding: var(--32px) var(--8px);
    background-image: url(/recruit/purpose/images/bg_purpose_box_sp.png);
  }
  .purpose-heading {
    margin-bottom: var(--16px);
  }
  .purpose-message {
    font-size: var(--26px);
    font-weight: 700;
    line-height: 1.692;
    letter-spacing: 0.45px;
  }
  .purpose-box .text:not(:first-child) {
    margin-top: var(--16px);
  }
}

/**************************\
  Basic Modal Styles
\**************************/
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}
.modal__container {
  padding: 30px;
  max-width: 1026px;
  max-height: 100vh;
  overflow-y: auto;
}
.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal__close {
  width: 32px;
  height: 32px;
  margin-right: 8px;
  margin-left: auto;
  position: relative;
}
.modal__close::before,
.modal__close::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  background-color: var(--bg-color-white);
}
.modal__close::before {
  transform: rotate(-45deg);
}
.modal__close::after {
  transform: rotate(45deg);
}
.modal__content {
  margin-top: 8px;
}

[data-micromodal-trigger] img {
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  [data-micromodal-trigger] img:hover {
    opacity: 0.6;
  }
}

@media not all and (min-width: 769px) {
  .modal__container {
    padding: var(--16px);
  }
  .modal__close {
    width: var(--24px);
    height: var(--24px);
    margin-right: var(--12px);
  }
  .modal__content {
    margin-top: var(--12px);
  }
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.youtube {
  display: flex;
}
.youtube::before {
  content: "";
  display: inline-block;
  padding-top: 56.25%;
  pointer-events: none;
}
.youtube iframe {
  max-width: 100%;
  height: auto;
}