body.is-modal-open {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .page-lower .outer {
    padding-inline: 32px;
  }
}
.page-lower .fv-wrap {
  padding-top: 200px;
}

main {
  min-height: 100vh;
}

.sec-fv {
  position: relative;
  margin-bottom: 72px;
}
@media screen and (max-width: 768px) {
  .sec-fv {
    margin-bottom: 24px;
  }
}
.sec-fv .fv-title__block {
  position: relative;
  grid-area: 1/1;
  justify-content: center;
  gap: 4px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sec-fv .fv-title__block {
    grid-area: 2;
    margin-top: 58px;
  }
}
.sec-fv .fv-text {
  margin-bottom: 8px;
}
.sec-fv .fv-note {
  font-size: 1.2rem;
  font-weight: 800;
}

.content {
  margin-inline: auto;
  margin-bottom: 142px;
  background: var(--white);
  border-radius: 64px 8px 64px 8px;
  padding: 7cqw 8.4cqw;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .content {
    padding: 32px 24px;
  }
}

.sec-content + .sec-content {
  margin-top: 106px;
}
@media screen and (max-width: 768px) {
  .sec-content + .sec-content {
    margin-top: 56px;
  }
}
.sec-content .content-intro {
  margin-bottom: 48px;
}
.sec-content .content-intro__head {
  margin-bottom: 30px;
}
.sec-content .content-intro__head span {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.sec-content .content-modal__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .sec-content .content-modal__list {
    grid-template-columns: 1fr;
  }
}
.sec-content .content-modal__item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 16px 24px 0 0;
}
@media (any-hover: hover) {
  .sec-content .content-modal__item:hover .content-modal__img img {
    scale: 1.1;
  }
}
.sec-content .content-modal__img {
  display: block;
}
.sec-content .content-modal__img img {
  display: block;
  width: 100%;
  height: auto;
  transition: ease 300ms all;
}
.sec-content .content-modal__voice {
  position: absolute;
  top: 1.3cqw;
  left: 1.6cqw;
  width: 10.7cqw;
  aspect-ratio: 107/28;
  border-radius: 16px;
  border: 2px solid var(--blue-main);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  filter: brightness(1.12);
}
@media screen and (max-width: 768px) {
  .sec-content .content-modal__voice {
    top: 8px;
    left: 8px;
    width: 107px;
  }
}
.sec-content .content-modal__voice img {
  width: 14px;
  aspect-ratio: 1;
}
.sec-content .content-modal__voice p {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-main);
}
.sec-content .content-modal__tag {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 4px 4px 4px 8px;
  background: var(--white);
  border-radius: 0 8px 0 0;
  font-size: 1.4cqw;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--blue-main);
}
@media screen and (max-width: 768px) {
  .sec-content .content-modal__tag {
    left: initial;
    right: 0;
    border-radius: 8px 0 0 0;
    font-size: 1.2rem;
  }
}

.modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 100;
  display: none;
}
.modal.is-open {
  display: block;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 53, 146, 0.9);
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 0;
  cursor: pointer;
}

.modal-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 992px;
  width: 80cqw;
  max-height: calc(100vh - 40px);
  padding-inline: 32px;
  overflow: hidden;
  container-type: inline-size;
}
@media screen and (max-width: 768px) {
  .modal-wrap {
    width: 100%;
    max-height: calc(100vh - 40px);
    max-height: calc(100dvh - 40px);
    box-sizing: border-box;
  }
}

.modal-outer {
  position: relative;
  max-width: 824px;
  width: 68vw;
  aspect-ratio: 824/495;
  max-height: calc(100vh - 40px);
  min-height: 0;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  gap: 1px;
}
@media screen and (max-width: 768px) {
  .modal-outer {
    flex-direction: column-reverse;
    width: 100%;
    max-height: 80vh;
    max-height: 80dvh;
    aspect-ratio: initial;
  }
}

.modal-dialog {
  width: calc(100% - 50px);
  box-sizing: border-box;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .modal-dialog {
    width: calc(100% - 24px);
  }
}

.modal-viewport {
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  width: 67vw;
  padding: 6.5cqw 4.7cqw 4cqw 4cqw;
  background: var(--white);
  border-radius: 8px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .modal-viewport {
    width: 100%;
    padding: 32px 24px;
  }
}

.modal-dialog__sub {
  width: 48px;
  border-radius: 8px;
  padding: 14px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .modal-dialog__sub {
    width: 100%;
    height: 48px;
    box-sizing: border-box;
  }
}
.modal-dialog__sub span {
  font-family: var(--mont);
  font-size: 1.2rem;
  font-weight: 800;
  writing-mode: vertical-lr;
  color: var(--blue-main);
}
@media screen and (max-width: 768px) {
  .modal-dialog__sub span {
    writing-mode: initial;
  }
}

.modal-close,
.modal-prev,
.modal-next {
  position: absolute;
  z-index: 2;
  border: 0;
  background: #fff;
  cursor: pointer;
}

.modal-close {
  position: relative;
  margin-inline: auto;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  color: var(--blue-main);
  font-family: var(--mont);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .modal-close {
    bottom: -40px;
  }
}
.modal-close::before {
  content: "";
  position: absolute;
  background: var(--blue-main);
  width: 32px;
  height: 2px;
  top: -5px;
  left: 2px;
  rotate: 30deg;
}
.modal-close::after {
  content: "";
  position: absolute;
  background: var(--blue-main);
  width: 32px;
  height: 2px;
  top: -5px;
  left: 2px;
  rotate: -30deg;
}

.modal-prev,
.modal-next {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 6.4cqw;
  aspect-ratio: 1;
  margin-top: 0;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--white);
  transition: background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  z-index: 1;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .modal-prev,
.modal-next {
    width: 32px;
  }
}
.modal-prev::before,
.modal-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 14px;
  height: 12px;
  background: url(/recruit/fresh/assets/img/common/arrow_w.svg) no-repeat;
  background-size: contain;
}

.modal-prev {
  left: 0;
}
@media screen and (max-width: 768px) {
  .modal-prev {
    left: 8px;
  }
}
.modal-prev::before {
  rotate: -180deg;
}

.modal-next {
  right: 0;
}
@media screen and (max-width: 768px) {
  .modal-next {
    right: 8px;
  }
}

.swiper-wrapper {
  align-items: flex-start;
}

.modal-swiper {
  width: 100%;
  height: 100%;
  min-height: 0;
  height: auto;
}

.modal-slide {
  height: auto;
  box-sizing: border-box;
}

.modal-layout {
  display: flex;
  gap: 3.2cqw;
}
@media screen and (max-width: 768px) {
  .modal-layout {
    flex-direction: column-reverse;
  }
}

.modal-layout__image {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 182px;
  width: 20cqw;
}
@media screen and (max-width: 768px) {
  .modal-layout__image {
    width: 100%;
    margin-inline: auto;
  }
}
.modal-layout__image img {
  display: block;
  height: auto;
  margin-bottom: 16px;
}
.modal-layout__image span {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  width: fit-content;
  margin-inline: auto;
}

.modal-layout__content {
  position: relative;
  flex: 1;
  margin-bottom: 74px;
}
@media screen and (max-width: 768px) {
  .modal-layout__content {
    margin-bottom: 16px;
  }
}
.modal-layout__content::before {
  content: "";
  position: absolute;
  background: url(/recruit/fresh/assets/img/work/region/double-quotes.svg) no-repeat;
  background-size: contain;
  width: 114px;
  aspect-ratio: 1;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .modal-layout__content::before {
    bottom: -48px;
  }
}

.modal-layout__tag {
  font-size: 1.6cqw;
}

.modal-layout__title {
  font-size: 2.8cqw;
  font-weight: 800;
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .modal-layout__title {
    font-size: 2.4rem;
    margin-bottom: 16px;
  }
}

.modal-layout__text {
  font-size: 1.6cqw;
}