@charset "UTF-8";
/*base*/
html {
  font-size: 62.5%;
}

html:focus-within {
  scroll-behavior: auto;
}

body {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-y: scroll;
  min-height: 100vh;
  color: #1f3133;
  font-family: "Noto Sans JP", serif;
  font-size: 1.5em;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
}

:focus:not(:focus-visible) {
  outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a[href*="tel:"] {
  cursor: pointer;
}

img {
  height: auto;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol {
  margin: 0;
  padding-left: 0;
}

input,
select,
textarea {
  padding: 0;
  font-size: 1.5rem;
}

input::-ms-reveal {
  visibility: hidden;
}

input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
  cursor: pointer;
}

input[type=submit] {
  -webkit-appearance: none;
}

textarea {
  resize: none;
}

button {
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

select {
  cursor: pointer;
}

hr {
  border: none;
  border-top: 1px solid #35383a;
  margin: 1rem 0;
}

rt {
  padding: 0.2rem;
  text-align: center;
}

.l-body.is-no-scroll {
  overflow: hidden;
}

.c-box {
  border: 0.1rem solid #30abb8;
  border-radius: 1rem;
  background-color: #fff;
}
.c-box--first {
  padding-block: 2.4rem;
  padding-right: 0;
  padding-left: 2.4rem;
}
@media screen and (width >= 1280px) {
  .c-box--first {
    padding-block: 4.8rem;
    padding-right: 0;
    padding-left: 14rem;
  }
}
.c-box--second {
  padding: 1.6rem;
}
.c-box--third {
  border-width: 0.2rem;
  padding: 2.4rem;
}
@media screen and (width >= 1280px) {
  .c-box--pc-size-changed-first {
    padding: 2.4rem;
  }
}
@media screen and (width >= 1280px) {
  .c-box--pc-size-changed-second {
    padding: 3.2rem;
  }
}

.c-button {
  display: block;
  font-weight: bold;
  text-align: center;
}
.c-button--conversion {
  border: 0.1rem solid rgba(205, 131, 22, 0.5);
  border-radius: 100vmax;
  margin-inline: auto;
  padding: 1.5rem;
  width: 26rem;
  background: linear-gradient(-22deg, #e59a2c 0%, #e5ac2c 40%, #e5c52c 100%);
  background-size: 100% 8.4rem;
  color: #fff;
  font-size: 2rem;
  line-height: 1.35;
}
@media screen and (width >= 1280px) {
  .c-button--conversion {
    padding-inline: 9rem;
    max-width: 40rem;
    width: auto;
    font-size: 2.4rem;
  }
}
@media (any-hover: hover) {
  .c-button--conversion:hover {
    opacity: 0.7;
  }
}
.c-button--modal-close {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  border: 0.1rem solid #30abb8;
  border-radius: 100vmax;
  height: 3rem;
  width: 3rem;
  background-color: #fff;
  z-index: 900;
}
.c-button--modal-close::before, .c-button--modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 100vmax;
  height: 1.5rem;
  width: 0.2rem;
  background-color: #30abb8;
}
.c-button--modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-button--modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (any-hover: hover) {
  .c-button--modal-close:hover {
    background-color: #30abb8;
  }
  .c-button--modal-close:hover::before, .c-button--modal-close:hover::after {
    background-color: #fff;
  }
}
.c-button--modal-change-left, .c-button--modal-change-right {
  position: absolute;
  top: 50%;
  border-radius: 100vmax;
  height: 4rem;
  width: 4rem;
  background-color: #30abb8;
  z-index: 900;
}
.c-button--modal-change-left::before, .c-button--modal-change-left::after, .c-button--modal-change-right::before, .c-button--modal-change-right::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 100vmax;
  height: 1.4rem;
  width: 0.3rem;
  background-color: #fff;
}
@media screen and (width >= 1280px) {
  .c-button--modal-change-left, .c-button--modal-change-right {
    height: 8rem;
    width: 8rem;
  }
  .c-button--modal-change-left::before, .c-button--modal-change-left::after, .c-button--modal-change-right::before, .c-button--modal-change-right::after {
    height: 2.8rem;
    width: 0.3rem;
  }
}
@media (any-hover: hover) {
  .c-button--modal-change-left:hover, .c-button--modal-change-right:hover {
    border: 0.1rem solid #30abb8;
    background-color: #fff;
  }
  .c-button--modal-change-left:hover::before, .c-button--modal-change-left:hover::after, .c-button--modal-change-right:hover::before, .c-button--modal-change-right:hover::after {
    background-color: #30abb8;
  }
}
.c-button--modal-change-left {
  left: 10vw;
  transform: translate(-65%, -50%);
}
@media screen and (width >= 1280px) {
  .c-button--modal-change-left {
    left: calc(50% - 40rem);
    transform: translate(-50%, -50%);
  }
}
.c-button--modal-change-left::before {
  transform: translate(-50%, -12%) rotate(-45deg);
}
@media screen and (width >= 1280px) {
  .c-button--modal-change-left::before {
    transform: translate(-50%, -8%) rotate(-45deg);
  }
}
.c-button--modal-change-left::after {
  transform: translate(-50%, -70%) rotate(45deg);
}
@media screen and (width >= 1280px) {
  .c-button--modal-change-left::after {
    transform: translate(-50%, -74%) rotate(45deg);
  }
}
.c-button--modal-change-right {
  right: 10vw;
  transform: translate(65%, -50%);
}
@media screen and (width >= 1280px) {
  .c-button--modal-change-right {
    right: calc(50% - 40rem);
    transform: translate(50%, -50%);
  }
}
.c-button--modal-change-right::before {
  transform: translate(-50%, -12%) rotate(45deg);
}
@media screen and (width >= 1280px) {
  .c-button--modal-change-right::before {
    transform: translate(-50%, -8%) rotate(45deg);
  }
}
.c-button--modal-change-right::after {
  transform: translate(-50%, -70%) rotate(-45deg);
}
@media screen and (width >= 1280px) {
  .c-button--modal-change-right::after {
    transform: translate(-50%, -74%) rotate(-45deg);
  }
}
.c-button--position-adjust {
  right: 10vw;
  transform: translateX(50%);
}
@media screen and (width >= 1280px) {
  .c-button--position-adjust {
    right: calc(50% - 40rem);
    transform: translateX(50%);
  }
}
.c-button:hover, .c-button.is-hovered {
  transition: 0.15s linear;
}

.c-display-pc {
  display: none;
}
@media screen and (width >= 1280px) {
  .c-display-pc {
    display: inline-block;
  }
}

@media screen and (width >= 1280px) {
  .c-display-pc-none {
    display: none;
  }
}

.c-font-family--english {
  font-family: "Montserrat";
}

.c-font-size--lv1 {
  font-size: 1rem;
}
.c-font-size--lv2 {
  font-size: 1.1rem;
}
.c-font-size--lv3 {
  font-size: 1.2rem;
}
.c-font-size--lv4 {
  font-size: 1.3rem;
}
.c-font-size--lv5 {
  font-size: 1.4rem;
}
.c-font-size--lv7 {
  font-size: 1.8rem;
}
.c-font-size--lv9 {
  font-size: 2.4rem;
}
.c-font-size--lv11 {
  font-size: 3.2rem;
}
.c-font-size--lv13 {
  font-size: 4rem;
}
.c-font-size--lv14 {
  font-size: 4.5rem;
}
.c-font-size--lv16 {
  font-size: 5.6rem;
}
.c-font-size--inherit {
  font-size: 1.5rem;
}
@media screen and (width >= 1280px) {
  .c-font-size--pc-lv7 {
    font-size: 1.8rem;
  }
}
@media screen and (width >= 1280px) {
  .c-font-size--pc-lv13 {
    font-size: 4rem;
  }
}
@media screen and (width >= 1280px) {
  .c-font-size--pc-lv17 {
    font-size: 6.4rem;
  }
}
@media screen and (width >= 1280px) {
  .c-font-size--pc-inherit {
    font-size: 1.5rem;
  }
}

.c-font-weight--bold {
  font-weight: bold;
}
.c-font-weight--black {
  font-weight: 900;
}

.c-heading {
  font-weight: bold;
  text-align: center;
}
.c-heading--first {
  font-size: 1rem;
}
.c-heading--second {
  font-size: 1.3rem;
}
.c-heading--third {
  font-size: 1.6rem;
}
.c-heading--fourth {
  font-size: 1.8rem;
}
.c-heading--fifth {
  font-size: 3rem;
}
.c-heading--sixth {
  font-size: 3.2rem;
}
.c-heading--seventh {
  font-size: 6.4rem;
}
.c-heading--eighth {
  font-size: 1.4rem;
}
.c-heading--ninth {
  font-size: 2.4rem;
}
.c-heading--text-left {
  text-align: left;
}

.c-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(34, 34, 34, 0.3);
  opacity: 0;
  transition: opacity 0.15s linear, visibility 0.15s linear;
  visibility: hidden;
  z-index: 800;
}
.c-modal.is-modal-active {
  visibility: visible;
  opacity: 1;
}

.c-modal-content {
  position: relative;
  width: calc(100% - 3.2rem);
  max-height: 90dvh;
  margin-inline: 1.6rem;
}
.c-modal-content--small {
  min-height: 63dvh;
  width: calc(100% - 9rem);
}
@media screen and (width >= 1280px) {
  .c-modal-content {
    width: 80rem;
  }
}

.c-modal-content__main {
  position: relative;
  max-height: calc(90dvh - 3.2rem);
  padding-right: 2.4rem;
  overflow-y: auto;
}
.c-modal-content__main--spacing {
  padding-bottom: 1.6rem;
}
@media screen and (width >= 1280px) {
  .c-modal-content__main {
    max-height: calc(90dvh - 7.6rem);
    padding-right: 14rem;
  }
}

.c-modal-open,
.c-modal-close {
  cursor: pointer;
}

.c-movie {
  width: 100%;
}
@media screen and (width >= 1280px) {
  .c-movie {
    position: absolute;
    top: calc(100dvh - 3rem);
    right: 3rem;
    width: 25rem;
    background-color: #fff;
    box-shadow: 0 0.3rem 1rem rgba(24, 43, 81, 0.16);
    transform: translateY(-100%);
  }
}

.c-movie__play {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: center;
  padding: 1rem 2.7rem;
  background-color: #30abb8;
}
@media screen and (width >= 1280px) {
  .c-movie__play {
    align-items: flex-end;
    flex-direction: column;
    gap: 0;
    position: relative;
    border-top-right-radius: 0.5rem;
    border-top-left-radius: 0.5rem;
    padding: 1.6rem 0.3rem 0.5rem;
  }
}
@media (any-hover: hover) {
  .c-movie__play:hover {
    opacity: 0.7;
  }
}

@media screen and (width >= 1280px) {
  .c-movie__play-text {
    margin-inline: auto;
    margin-bottom: 0.6rem;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.2;
  }
}

.c-movie__play-icon {
  height: 2.6rem;
  width: 2.6rem;
}
@media screen and (width >= 1280px) {
  .c-movie__play-icon {
    height: 7rem;
    width: 7rem;
    margin-inline: auto;
    margin-bottom: 0.6rem;
  }
}

.c-movie-play-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 100vmax;
  padding: 0.3rem 0.8rem;
  background-color: #1f3133;
}
@media screen and (width >= 1280px) {
  .c-movie-play-time {
    width: fit-content;
    font-size: 1rem;
  }
}

.c-movie-play-time__double-speed {
  font-feature-settings: "palt";
}

.c-movie__change-speed {
  display: block;
  border-bottom: 0.1rem solid #30abb8;
  padding: 0.8rem;
  width: 100%;
  text-align: center;
}
@media screen and (width >= 1280px) {
  .c-movie__change-speed {
    border: 0.1rem solid #30abb8;
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    padding: 0.4rem;
    font-size: 1.1rem;
    line-height: 1.4;
  }
}
@media (any-hover: hover) {
  .c-movie__change-speed:hover {
    opacity: 0.7;
  }
}

.c-speech-ballon {
  display: flex;
  justify-content: center;
  position: relative;
  border: 0.2rem solid #182b51;
  border-radius: 100vmax;
}
.c-speech-ballon--first {
  height: 5.4rem;
  background-color: #fff;
}
.c-speech-ballon--first::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2.1rem;
  border-right: 0.2rem solid #182b51;
  border-bottom: 0.2rem solid #182b51;
  border-radius: 0 0 0.6rem 0;
  height: 4rem;
  width: 4rem;
  background-color: #fff;
  transform: scaleX(0.79) rotate(45deg);
}
@media screen and (width >= 1280px) {
  .c-speech-ballon--first {
    height: 12rem;
    width: 25rem;
    font-size: 2.4rem;
  }
  .c-speech-ballon--first::after {
    bottom: -3.8rem;
    border-top: 0.4rem solid #182b51;
    border-right: 0.4rem solid #182b51;
    border-bottom: none;
    height: 7rem;
    width: 7rem;
    transform: rotate(90deg) scale(1, 0.45) skewX(-45deg);
  }
}

.c-text-color--white {
  color: #fff;
}
.c-text-color--main {
  color: #30abb8;
}
.c-text-color--navy {
  color: #182b51;
}

.c-text-dot {
  background-position: top left;
  background-repeat: repeat-x;
}
.c-text-dot--first {
  background-size: 3.2rem 0.4rem;
  background-image: radial-gradient(0.2rem 0.2rem at center center, #30abb8, #30abb8 100%, transparent, transparent);
  padding-top: 0.1rem;
}

.c-text-link {
  color: #30abb8;
}
.c-text-link--bold {
  font-weight: bold;
}
.c-text-link:hover {
  text-decoration: underline;
}

.c-text-underline {
  border-bottom: 0.1rem solid;
}
.c-text-underline--first {
  border-color: #dce7e8;
}
.c-text-underline--second {
  border-color: #f9e65c;
}
.c-text-underline--third {
  border-color: #1f3133;
}
.c-text-underline--fourth {
  border-color: #b3ccce;
}
.c-text-underline--bold {
  border-width: 0.2rem;
}
@media screen and (width >= 1280px) {
  .c-text-underline--none-at-pc {
    border: none;
  }
}

.p-career-plan__heading {
  margin-bottom: 1.6rem;
}
@media screen and (width >= 1280px) {
  .p-career-plan__heading {
    margin-bottom: 3.2rem;
    font-size: 4.8rem;
  }
}

.p-career-plan__description {
  margin-bottom: 2.4rem;
}
@media screen and (width >= 1280px) {
  .p-career-plan__description {
    font-size: 1.6rem;
    text-align: center;
  }
}

.p-career-plan-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media screen and (width >= 1280px) {
  .p-career-plan-list {
    flex-direction: row;
    gap: 2.4rem;
    width: 100%;
  }
}

.p-career-plan-list-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 1rem;
  padding: 2.4rem;
  width: 100%;
  background-color: #fff;
}
@media screen and (width >= 1280px) {
  .p-career-plan-list-content {
    width: calc((100% - 7.2rem) / 4);
  }
}

.p-career-plan-list-content__heading {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}
@media screen and (width >= 1280px) {
  .p-career-plan-list-content__heading {
    font-size: 2.4rem;
  }
}

@media screen and (width >= 1280px) {
  .p-career-plan-list-content__heading-top {
    font-size: 3.4rem;
  }
}

.p-career-plan-list-content__icon {
  height: 16rem;
  width: 28.2rem;
  margin-bottom: 1.6rem;
}

@media screen and (width >= 1280px) {
  .p-career-plan-list-content__description {
    font-size: 1.6rem;
  }
}

.p-conversion {
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 0;
  left: 0;
  padding-block: 1.6rem;
  width: 100%;
  background-color: #fff;
  transform: translateY(100%);
  transition: transform 0.15s linear;
}
.p-conversion.is-visible {
  transform: translateY(0);
}
@media screen and (width >= 1280px) {
  .p-conversion {
    display: none;
  }
}

.p-entry__heading,
.p-entry__description {
  margin-inline: auto;
  margin-bottom: 2.4rem;
  text-align: center;
}
@media screen and (width >= 1280px) {
  .p-entry__heading,
  .p-entry__description {
    margin-bottom: 3.2rem;
  }
}

@media screen and (width >= 1280px) {
  .p-entry__heading {
    font-size: 4rem;
  }
}

@media screen and (width >= 1280px) {
  .p-entry__description {
    font-size: 1.6rem;
  }
}

.p-firstview {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (width >= 1280px) {
  .p-firstview {
    position: relative;
  }
}

.p-firstview__image {
  height: auto;
  max-width: 76.8rem;
  width: 100%;
  margin-inline: auto;
  margin-bottom: 1.6rem;
}
@media screen and (width >= 1280px) {
  .p-firstview__image {
    max-width: 100%;
    margin-bottom: 0;
  }
}

@media screen and (width >= 1280px) {
  .p-firstview__image-sp {
    height: 100dvh;
    object-fit: cover;
  }
}

@media screen and (width >= 1280px) {
  .p-firstview__chatchcopy-wrapper {
    position: absolute;
    top: calc(15rem + (100dvh - 15rem - 53.2rem) / 2);
    left: 6.4%;
  }
}

@media screen and (width >= 1280px) {
  .p-firstview__on-chatchcopy {
    display: none;
    margin-bottom: 0;
  }
}

.p-firstview__chatchcopy {
  margin-inline: auto;
  margin-bottom: 2.4rem;
  width: fit-content;
}
@media screen and (width >= 1280px) {
  .p-firstview__chatchcopy {
    margin: 0;
    padding-top: 0.8rem;
    padding-inline: 0.8rem;
    background-color: #fff;
    font-size: 4rem;
  }
}

.p-firstview__chatchcopy-text-large {
  margin-inline: 0.3rem;
  line-height: 1;
}
@media screen and (width >= 1280px) {
  .p-firstview__chatchcopy-text-large {
    font-size: 8.8rem;
  }
}

.p-firstview__description {
  display: block;
  margin-bottom: 2.4rem;
  margin-inline: auto;
  width: 29.8rem;
}
@media screen and (width >= 1280px) {
  .p-firstview__description {
    margin: 0;
    padding: 2rem 0.8rem 2.4rem;
    width: 44rem;
    background-color: #fff;
    font-size: 2rem;
  }
}

.p-firstview__button {
  margin-bottom: 3rem;
}
@media screen and (width >= 1280px) {
  .p-firstview__button {
    margin: 0;
    padding-inline: 0.8rem;
    width: fit-content;
    background-color: #fff;
  }
  .p-firstview__button > .c-button {
    margin: 0;
    font-size: 4rem;
  }
}

.p-footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 6.4rem 1.6rem var(--padding-bottom);
}
@media screen and (width >= 1280px) {
  .p-footer {
    padding: 10rem 20rem 4.8rem;
  }
}

.p-footer__logo {
  height: 4.6rem;
  width: 7.4rem;
  margin-bottom: 2.4rem;
  cursor: pointer;
}
@media screen and (width >= 1280px) {
  .p-footer__logo {
    margin-bottom: 3.2rem;
  }
}

.p-footer-contact {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 3.2rem;
}

.p-footer-contact__name {
  margin-bottom: 0.8rem;
}
@media screen and (width >= 1280px) {
  .p-footer-contact__name {
    font-size: 1.6rem;
  }
}

.p-footer-contact__addresses {
  padding-left: 1.5rem;
  margin-bottom: 0.4rem;
}
@media screen and (width >= 1280px) {
  .p-footer-contact__addresses {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    justify-content: center;
    font-size: 1.8rem;
  }
}

.p-footer-contact__addresses-email,
.p-footer-contact__addresses-tel {
  position: relative;
  padding-left: 0.8rem;
}
.p-footer-contact__addresses-email::before,
.p-footer-contact__addresses-tel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -2rem;
  height: 2rem;
  width: 2rem;
  background-size: 100% auto;
  transform: translateY(-50%);
}
@media screen and (width >= 1280px) {
  .p-footer-contact__addresses-email,
  .p-footer-contact__addresses-tel {
    padding-left: 1.2rem;
  }
  .p-footer-contact__addresses-email::before,
  .p-footer-contact__addresses-tel::before {
    height: 2.4rem;
    width: 2.4rem;
  }
}

.p-footer-contact__addresses-email {
  margin-bottom: 0.4rem;
}
.p-footer-contact__addresses-email::before {
  background-image: url(/assets/labnext/img/cmn/cmn_icon_email.svg);
}
@media screen and (width >= 1280px) {
  .p-footer-contact__addresses-email {
    display: flex;
    align-items: center;
    margin: 0;
  }
  .p-footer-contact__addresses-email::after {
    content: "";
    display: block;
    height: 1.5rem;
    width: 0.1rem;
    margin-inline: 1.6rem;
    background-color: #888;
  }
}

.p-footer-contact__addresses-tel::before {
  background-image: url(/assets/labnext/img/cmn/cmn_icon_tel.svg);
}
@media screen and (width >= 1280px) {
  .p-footer-contact__addresses-tel {
    padding-left: 1.2rem;
  }
  .p-footer-contact__addresses-tel::before {
    margin-left: 0.4rem;
  }
}

.p-footer-contact__caution {
  text-align: center;
}
@media screen and (width >= 1280px) {
  .p-footer-contact__caution {
    font-size: 1.2rem;
  }
}

.p-footer-nav {
  margin-bottom: 3rem;
}
@media screen and (width >= 1280px) {
  .p-footer-nav {
    margin-bottom: 3.2rem;
  }
}

.p-footer-nav-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  width: 32rem;
}
@media screen and (width >= 1280px) {
  .p-footer-nav-list {
    width: 100%;
  }
}

.p-footer-nav-list__content {
  display: flex;
  align-items: center;
  margin-bottom: 0.2rem;
}
.p-footer-nav-list__content::after {
  content: "";
  display: block;
  height: 1.3rem;
  width: 1.3rem;
  margin-left: 0.5rem;
  background-image: url(/assets/labnext/img/cmn/cmn_icon_external-site.svg);
}
.p-footer-nav-list__content:nth-child(even)::before {
  content: "";
  display: block;
  height: 1.5rem;
  width: 0.1rem;
  margin-right: 0.8rem;
  background-color: #888;
}
@media screen and (width >= 1280px) {
  .p-footer-nav-list__content:nth-child(odd):not(:first-child)::before {
    content: "";
    display: block;
    height: 1.5rem;
    width: 0.1rem;
    margin-right: 0.8rem;
    background-color: #888;
  }
}
.p-footer-nav-list__content:hover {
  text-decoration: underline;
}

.p-header {
  padding-top: 1.6rem;
  padding-inline: 1.6rem;
}
@media screen and (width >= 1280px) {
  .p-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 2rem;
    border-radius: 100vmax;
    margin-inline: 4rem;
    padding: 2rem 4rem;
    width: calc(100% - 8rem);
    background-color: #fff;
    box-shadow: 0 0.3rem 1rem rgba(24, 43, 81, 0.16);
    z-index: 400;
  }
}

.p-header-heading {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

@media screen and (width >= 1280px) {
  .p-header-heading__title {
    font-size: 1.8rem;
  }
}

.p-header-heading__logo {
  height: 2.5rem;
  width: 4rem;
  cursor: pointer;
}
@media screen and (width >= 1280px) {
  .p-header-heading__logo {
    height: 5rem;
    width: 8rem;
  }
}

.p-header__conversion {
  display: none;
}
@media screen and (width >= 1280px) {
  .p-header__conversion {
    display: flex;
  }
}

.p-introduction {
  padding: 4.8rem 3rem 4rem;
}
@media screen and (width >= 1280px) {
  .p-introduction {
    padding-top: 12rem;
    padding-bottom: 10rem;
  }
}

.p-introduction__heading {
  margin-bottom: 2.4rem;
}
@media screen and (width >= 1280px) {
  .p-introduction__heading {
    margin-bottom: 3.2rem;
    font-size: 6.4rem;
  }
}

.p-introduction__description {
  margin-bottom: 2.4rem;
  text-align: center;
  line-height: 2.5;
}
@media screen and (width >= 1280px) {
  .p-introduction__description {
    margin-bottom: 3.2rem;
    font-size: 1.8rem;
  }
}

.p-introduction-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: center;
}

.p-introduction-links__content {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: center;
}
.p-introduction-links__content:not(:last-child)::after {
  content: "";
  display: block;
  height: 1.2rem;
  width: 0.2rem;
  background-color: #dce7e8;
}
@media screen and (width >= 1280px) {
  .p-introduction-links__content {
    font-size: 1.6rem;
  }
}

.p-modal-wdb__heading,
.p-modal-wdb__logo,
.p-modal-wdb-scale__heading,
.p-modal-wdb-achievement__heading,
.p-modal-labnext__heading,
.p-modal-labnext__description:not(:last-of-type),
.p-modal-labnext__logo,
.p-modal-video-speed__heading,
.p-modal-video-speed__description,
.p-modal-video-speed__image {
  margin-bottom: 1.6rem;
}

@media screen and (width >= 1280px) {
  .p-modal-wdb__heading,
  .p-modal-labnext__heading,
  .p-modal-categories-main-content__heading,
  .p-modal-video-speed__heading {
    font-size: 2.4rem;
  }
}

.p-modal-wdb__logo,
.p-modal-labnext__logo {
  margin-inline: auto;
}

@media screen and (width >= 1280px) {
  .p-modal-labnext__description:not(:last-of-type),
  .p-modal-labnext__logo {
    margin-bottom: 2.4rem;
  }
}

@media screen and (width >= 1280px) {
  .p-modal-wdb-scale__heading,
  .p-modal-wdb-achievement__heading,
  .p-modal-wdb-scale-list-content__heading,
  .p-modal-wdb-achievement-list-content__heading {
    font-size: 1.8rem;
  }
}

.p-modal-wdb__logo {
  height: 6.3rem;
  width: 10rem;
}
@media screen and (width >= 1280px) {
  .p-modal-wdb__logo {
    margin: 0;
  }
}

.p-modal-wdb__description {
  margin-bottom: 3.2rem;
}
@media screen and (width >= 1280px) {
  .p-modal-wdb__description {
    margin: 0;
    width: 39.6rem;
  }
}

@media screen and (width >= 1280px) {
  .p-modal-wdb__logo-and-description {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3.2rem;
  }
}

.p-modal-wdb-scale-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  gap: 1.6rem;
  margin-bottom: 3.2rem;
}

.p-modal-wdb-scale-list-content:first-child {
  grid-area: 1/1/2/3;
}

@media screen and (width >= 1280px) {
  .p-modal-wdb-scale-list-content__heading,
  .p-modal-wdb-achievement-list-content__heading {
    text-align: left;
  }
}

.p-modal-wdb-scale-list-content__description,
.p-modal-wdb-achievement-list-content__description {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
}

@media screen and (width >= 1280px) {
  .p-modal-wdb-scale-list-content__description {
    max-width: 33.5rem;
  }
  .p-modal-wdb-scale-list-content__description--top {
    font-size: 1.5rem;
  }
}

@media screen and (width >= 1280px) {
  .p-modal-wdb-scale-list-content__description-top,
  .p-modal-wdb-achievement-list-content__description-top {
    line-height: 1.3;
  }
}

@media screen and (width >= 1280px) {
  .p-modal-wdb-scale-list-content__description-sub {
    margin-top: 1.2rem;
  }
}

@media screen and (width >= 1280px) {
  .p-modal-wdb-scale-list-content__description-position-adjust {
    position: absolute;
    top: -2.8rem;
    right: -1.6rem;
    transform: translateX(100%);
    line-height: 1;
    font-size: 8rem;
  }
}

.p-modal-wdb-scale-list-content__description-main {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  justify-content: center;
}

.p-modal-wdb-scale-list-content__description-main-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 7.2rem;
  padding-top: 1rem;
  line-height: 1.3;
}

.p-modal-wdb-achievement-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media screen and (width >= 1280px) {
  .p-modal-wdb-achievement-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }
}

@media screen and (width >= 1280px) {
  .p-modal-wdb-achievement-list-content {
    display: grid;
    align-items: start;
    gap: 0;
    grid-row: span 2;
    grid-template-areas: "heading" "description";
    grid-template-rows: subgrid;
  }
}

@media screen and (width >= 1280px) {
  .p-modal-wdb-achievement-list-content__heading {
    grid-area: heading;
  }
}

@media screen and (width >= 1280px) {
  .p-modal-wdb-achievement-list-content__description {
    grid-area: description;
  }
}

.p-modal-benefits__heading {
  margin-bottom: 0.8rem;
}
@media screen and (width >= 1280px) {
  .p-modal-benefits__heading {
    font-size: 1.8rem;
  }
}

.p-modal-categories {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
}

.p-modal-categories-main {
  display: flex;
  gap: 1.6rem;
  position: relative;
  padding-inline: calc(50% - 40vw);
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.p-modal-categories-main::-webkit-scrollbar {
  display: none;
}
@media screen and (width >= 1280px) {
  .p-modal-categories-main {
    gap: 10rem;
    padding-inline: calc(50% - 40rem);
  }
}

.p-modal-categories-main-content {
  flex-shrink: 0;
  width: 80vw;
  scroll-snap-align: center;
}
@media screen and (width >= 1280px) {
  .p-modal-categories-main-content {
    width: 80rem;
  }
}

.p-modal-categories-main-content__heading,
.p-modal-categories-main-content__logo,
.p-modal-categories-main-content-list:not(:last-of-type) {
  margin-bottom: 1.6rem;
}

.p-modal-categories-main-content__logo {
  margin-inline: auto;
}

.p-modal-categories-main-content__sub-heading {
  margin-bottom: 0.8rem;
}

@media screen and (width >= 1280px) {
  .p-modal-categories-main-content__sub-heading,
  .p-modal-categories-main-content-list__content {
    font-size: 1.6rem;
  }
}

.p-modal-categories-pagination-list {
  display: flex;
  gap: 1rem;
  justify-content: center;
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
}

.p-modal-categories-pagination-list__content {
  border-radius: 100vmax;
  height: 1rem;
  width: 1rem;
  background-color: #fff;
}
.p-modal-categories-pagination-list__content.is-color-changed {
  background-color: #30abb8;
}

.p-modal-video-speed__sub-heading {
  margin-bottom: 0.8rem;
}

.p-modal-video-speed__description-image {
  display: inline-block;
  margin: 0.2rem;
  vertical-align: text-bottom;
}

.p-modal-video-speed__image {
  width: 100%;
}

.p-recruit__heading {
  margin-bottom: 2.4rem;
}
@media screen and (width >= 1280px) {
  .p-recruit__heading {
    margin-bottom: 3.2rem;
    font-size: 4.8rem;
  }
}

.p-recruit-outline {
  margin-bottom: 8rem;
  width: 100%;
}

.p-recruit-outline__heading,
.p-recruit-flow__heading {
  margin-bottom: 2.4rem;
}
@media screen and (width >= 1280px) {
  .p-recruit-outline__heading,
  .p-recruit-flow__heading {
    font-size: 2.4rem;
  }
}

@media screen and (width >= 1280px) {
  .p-recruit-outline-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
}

.p-recruit-outline-list-content {
  width: 100%;
}

.p-recruit-outline-list-content__heading {
  border-radius: 0.5rem;
  padding: 1rem 0.8rem;
  background-color: #30abb8;
}
@media screen and (width >= 1280px) {
  .p-recruit-outline-list-content__heading {
    padding: 1.6rem;
    margin-bottom: 3.2rem;
    width: 18.2rem;
    font-size: 1.6rem;
  }
}

.p-recruit-outline-list-content__description {
  margin-bottom: 1.6rem;
  padding: 1rem 0.8rem;
}
@media screen and (width >= 1280px) {
  .p-recruit-outline-list-content__description {
    margin-bottom: 3.2rem;
    padding-inline: 1.6rem;
    width: 101.8rem;
    font-size: 1.6rem;
  }
}

@media screen and (width >= 1280px) {
  .p-recruit-outline-list-content__description-caution,
  .p-recruit-flow__caution {
    font-size: 1.3rem;
  }
}

.p-recruit-flow {
  width: 100%;
}

@media screen and (width >= 1280px) {
  .p-recruit-flow-list {
    display: flex;
    gap: 2.4rem;
    justify-content: center;
    margin-bottom: 1.6rem;
  }
}

.p-recruit-flow-list-content {
  display: flex;
  position: relative;
  justify-content: space-between;
  width: 100%;
}
.p-recruit-flow-list-content:not(:last-child) > .p-recruit-flow-list-content__step::after {
  content: "";
  display: block;
  position: absolute;
  top: 6.6rem;
  left: 2.1rem;
  height: var(--after-height);
  width: 0.2rem;
  background: linear-gradient(to bottom, #30abb8 0.2rem, transparent 0.2rem) 0% 0%/0.4rem 0.4rem;
}
@media screen and (width >= 1280px) {
  .p-recruit-flow-list-content {
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
    justify-content: flex-start;
  }
  .p-recruit-flow-list-content:not(:last-child) > .p-recruit-flow-list-content__step::after {
    top: 3.4rem;
    left: 10.4rem;
    height: 0.2rem;
    width: 11.5rem;
    background: linear-gradient(to right, #30abb8 0.2rem, transparent 0.2rem) 0% 0%/0.4rem 0.4rem;
  }
}

.p-recruit-flow-list-content__step {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: var(--set-width);
}

.p-recruit-flow-list-content__step-lower {
  padding-bottom: 1rem;
  line-height: 1;
}
@media screen and (width >= 1280px) {
  .p-recruit-flow-list-content__step-lower {
    padding: 0;
  }
}

.p-recruit-flow-list-content__text {
  padding-bottom: 1.8rem;
  width: calc(100% - 6.2rem);
}
@media screen and (width >= 1280px) {
  .p-recruit-flow-list-content__text {
    padding: 0;
    width: 15.1rem;
    font-size: 1.6rem;
  }
}

.p-recruit-flow-list-content__step-upper,
.p-recruit-flow-list-content__text {
  padding-top: 0.6rem;
}
@media screen and (width >= 1280px) {
  .p-recruit-flow-list-content__step-upper,
  .p-recruit-flow-list-content__text {
    padding: 0;
  }
}

.p-section {
  padding: 4rem 3rem;
}
.p-section--background-first {
  background-color: #30abb8;
}
.p-section--background-second {
  background-color: #dce7e8;
}
@media screen and (width >= 1280px) {
  .p-section {
    padding: 8rem calc((100% - 120rem) / 2);
  }
}

.p-strength-main-list-content {
  margin-bottom: 8rem;
}
.p-strength-main-list-content:last-child {
  margin: 0;
}

.p-strength-main-list-content-heading {
  margin-bottom: 1.6rem;
}
@media screen and (width >= 1280px) {
  .p-strength-main-list-content-heading {
    margin-bottom: 2.4rem;
    font-size: 4rem;
  }
}

.p-strength-main-list-content-heading__top {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.4rem;
  padding-bottom: 1.6rem;
  width: 100%;
  line-height: 1;
}
@media screen and (width >= 1280px) {
  .p-strength-main-list-content-heading__top {
    margin-bottom: 2.4rem;
    font-size: 8rem;
  }
}

@media screen and (width >= 1280px) {
  .p-strength-main-list-content__description--small {
    width: 70rem;
  }
}
@media screen and (width >= 1280px) {
  .p-strength-main-list-content__description {
    margin-bottom: 2.4rem;
    font-size: 1.6rem;
  }
}

.p-strength-main-list-content__sub-heading {
  margin-top: 1.6rem;
  margin-bottom: 0.4rem;
}

.p-strength-main-list-content-image-adjust {
  position: relative;
}

.p-strength-main-list-content__image {
  height: 20rem;
  width: 20rem;
  margin-top: 1.6rem;
  margin-inline: auto;
}
@media screen and (width >= 1280px) {
  .p-strength-main-list-content__image {
    position: absolute;
    top: 12rem;
    right: 7.6rem;
    height: 40rem;
    width: 40rem;
  }
}

.p-strength-main-list-content-salary-table {
  border-collapse: collapse;
  margin-top: 1.6rem;
  margin-bottom: 4rem;
  width: 100%;
}
@media screen and (width >= 1280px) {
  .p-strength-main-list-content-salary-table {
    font-size: 1.6rem;
  }
}

.p-strength-main-list-content-salary-table__content {
  border: 0.1rem solid #b3ccce;
  padding: 1rem;
}
.p-strength-main-list-content-salary-table__content:first-child {
  width: 26%;
  text-align: center;
}
@media screen and (width >= 1280px) {
  .p-strength-main-list-content-salary-table__content {
    text-align: center;
  }
  .p-strength-main-list-content-salary-table__content:first-child {
    width: 32%;
  }
}

.p-strength-main-list-content-salary-table__row:first-child {
  background-color: #30abb8;
  color: #fff;
  text-align: center;
}
.p-strength-main-list-content-salary-table__row:not(:first-child) > .p-strength-main-list-content-salary-table__content:first-child {
  background-color: #dce7e8;
}

.p-strength-main-list-content__about-belonging {
  display: flex;
  align-items: center;
  margin-top: 2.4rem;
  margin-bottom: 1.6rem;
}
.p-strength-main-list-content__about-belonging::before {
  content: "";
  display: block;
  height: 2rem;
  width: 0.5rem;
  margin-right: 0.5rem;
  background-color: #30abb8;
}
@media screen and (width >= 1280px) {
  .p-strength-main-list-content__about-belonging {
    margin-top: 3.2rem;
    margin-bottom: 2.4rem;
  }
  .p-strength-main-list-content__about-belonging::before {
    height: 2.6rem;
  }
}

@media screen and (width >= 1280px) {
  .p-strength-main-list-content__about-belonging-main {
    font-size: 2.4rem;
  }
}

@media screen and (width >= 1280px) {
  .p-strength-main-list-content__about-belonging-sub {
    font-size: 1.5rem;
  }
}

.p-strength-main-list-content-belonging-list {
  margin-top: 1.6rem;
}
@media screen and (width >= 1280px) {
  .p-strength-main-list-content-belonging-list {
    display: flex;
    flex-wrap: wrap;
    gap: 3.2rem;
    margin-bottom: 4rem;
  }
}

.p-strength-main-list-content-belonging-list__content {
  display: flex;
  gap: 1.6rem;
  margin-bottom: 2.4rem;
}
.p-strength-main-list-content-belonging-list__content:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (width >= 1280px) {
  .p-strength-main-list-content-belonging-list__content {
    margin-bottom: 0;
    width: calc(50% - 1.6rem);
  }
  .p-strength-main-list-content-belonging-list__content:nth-child(even) {
    flex-direction: row;
  }
}

.p-strength-main-list-content-belonging-list__content-icon {
  height: 8rem;
  width: 8rem;
}
@media screen and (width >= 1280px) {
  .p-strength-main-list-content-belonging-list__content-icon {
    height: 10rem;
    width: 10rem;
  }
}

.p-strength-main-list-content-belonging-list__content-text {
  width: calc(100% - 8rem - 1.6rem);
}
@media screen and (width >= 1280px) {
  .p-strength-main-list-content-belonging-list__content-text {
    width: 46rem;
    font-size: 1.6rem;
  }
}

.p-strength-main-list-content-belonging-list__content-text-heading {
  display: block;
  margin-bottom: 0.8rem;
  padding-bottom: 0.4rem;
  width: 100%;
}
@media screen and (width >= 1280px) {
  .p-strength-main-list-content-belonging-list__content-text-heading {
    margin-bottom: 0.4rem;
    padding-bottom: 0;
  }
}

.p-strength-main-list-content-belonging-list__content-text-main > div {
  display: inline-block;
}

.p-strength-main-list-content__about-work-location {
  margin-top: 1.6rem;
}
@media screen and (width >= 1280px) {
  .p-strength-main-list-content__about-work-location {
    margin: 0;
  }
}

.p-strength-main-list-content__about-work-location-position-adjust {
  position: relative;
}

@media screen and (width >= 1280px) {
  .p-strength-main-list-content__about-work-location-position-adjust-ballon {
    position: absolute;
    top: 2rem;
    left: 20rem;
  }
}

.p-strength-main-list-content__about-work-location-image {
  margin-top: 2.4rem;
  margin-inline: auto;
  width: 30rem;
}
@media screen and (width >= 1280px) {
  .p-strength-main-list-content__about-work-location-image {
    display: none;
  }
}

.p-strength-main-list-content__about-work-location-image-pc {
  display: none;
  margin-top: 3.2rem;
  margin-inline: auto;
  width: 55.2rem;
}
@media screen and (width >= 1280px) {
  .p-strength-main-list-content__about-work-location-image-pc {
    display: block;
    width: 57.8rem;
  }
}

.p-strength-main-box {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 3.2rem;
}

.p-strength-main-box-heading {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 1.6rem;
}

@media screen and (width >= 1280px) {
  .p-strength-main-box-heading__top {
    font-size: 1.5rem;
  }
}

@media screen and (width >= 1280px) {
  .p-strength-main-box-heading__bottom {
    font-size: 2.4rem;
  }
}

@media screen and (width >= 1280px) {
  .p-strength-main-box__description {
    font-size: 1.6rem;
    text-align: center;
  }
}

.p-strength-main-box__description-link {
  display: flex;
  align-items: center;
  width: 100%;
}
.p-strength-main-box__description-link::after {
  content: "";
  display: block;
  height: 1.3rem;
  width: 1.3rem;
  margin-left: 0.5rem;
  background-image: url(/assets/labnext/img/cmn/cmn_icon_external-site-green.svg);
}
@media screen and (width >= 1280px) {
  .p-strength-main-box__description-link {
    justify-content: center;
  }
}

.p-strength-outline-heading {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 2.4rem;
}

.p-strength-outline-heading__top {
  margin-bottom: 0.4rem;
}
@media screen and (width >= 1280px) {
  .p-strength-outline-heading__top {
    font-size: 2rem;
  }
}

.p-strength-outline-heading__main {
  line-height: 1.2;
}
@media screen and (width >= 1280px) {
  .p-strength-outline-heading__main {
    font-size: 4.8rem;
  }
}

.p-strength-outline-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  gap: 1.6rem;
}
@media screen and (width >= 1280px) {
  .p-strength-outline-list {
    display: flex;
    gap: 2.4rem;
  }
}

.p-strength-outline-list-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  border-radius: 1rem;
  padding: 2.4rem;
  background: linear-gradient(-45deg, #fff 0%, #fff 78%, #182b51 78%, #182b51 100%);
}
@media screen and (width >= 1280px) {
  .p-strength-outline-list-content {
    width: 28.2rem;
  }
}

.p-strength-outline-list-content__description {
  position: relative;
  height: 8rem;
  width: 8rem;
  margin-bottom: 0.8rem;
}
@media screen and (width >= 1280px) {
  .p-strength-outline-list-content__description {
    width: 12rem;
  }
}

.p-strength-outline-list-content__description-top {
  position: absolute;
  top: 2.2rem;
  left: 0;
  width: 100%;
  line-height: 1;
  text-align: center;
}

.p-strength-outline-list-content__description-main {
  position: absolute;
  bottom: 0.2rem;
  left: -0.2rem;
  line-height: 1;
}
@media screen and (width >= 1280px) {
  .p-strength-outline-list-content__description-main {
    font-size: 4.8rem;
  }
}

.p-strength-outline-list-content__heading {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (width >= 1280px) {
  .p-strength-outline-list-content__heading {
    font-size: 2.4rem;
  }
}

.p-strength-outline-list-content__heading-top {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  line-height: 1;
}

.p-strength-outline-list-content__lcon {
  height: 8rem;
  width: 8rem;
  margin-bottom: 0.8rem;
}
@media screen and (width >= 1280px) {
  .p-strength-outline-list-content__lcon {
    width: 12rem;
  }
}

.p-strength-outline-list-content__description {
  text-align: center;
}

@media screen and (width >= 1280px) {
  .p-strength-outline-list-content__heading-br {
    display: none;
  }
}

.p-video-modal {
  align-items: center;
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  height: 100dvh;
  width: 100%;
  overflow: hidden;
  z-index: 900;
}

.p-video-modal {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

.p-video-modal.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s, visibility 0.5s;
}

.p-video-modal-overlay {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0.7;
}

.p-video-modal-container {
  position: relative;
  margin: 0 auto;
  width: 90%;
  max-width: 100dvh;
}

/* PC表示 */
@media print, screen and (min-width: 1080px) {
  .p-video-modal-container {
    width: 70%;
    max-width: none;
  }
}
.p-video-modal-header {
  padding: 0.8rem 0;
  color: #fff;
  text-align: right;
}

/* MediaKind */
/* iPhoneの場合のみUI非表示 */
.bmpui-ui-controlbar.is-iphone,
.bmpui-ui-titlebar.is-iphone,
.bmpui-image.is-iphone {
  display: none;
}

/* iPhoneの場合のみ再生ボタンの範囲を調整（デフォルトUIのスキップが使えるように） */
.bmpui-container-wrapper .bmpui-ui-playbacktoggle-overlay.is-iphone,
.bmpui-container-wrapper .bmpui-ui-playbacktoggle-overlay.is-iphone .bmpui-ui-hugeplaybacktogglebutton {
  position: absolute;
  top: calc(50% - 2.5rem);
  left: calc(50% - 2.5rem);
  height: 5rem;
  width: 5rem;
}

.bitmovinplayer-container {
  margin: 0 auto !important;
  min-width: auto !important;
  min-height: auto !important;
}

@media print, screen and (min-width: 1080px) {
  .bitmovinplayer-container {
    max-width: none !important;
  }
}/*# sourceMappingURL=style.css.map */