.visualBlock {
  position: relative;
  inline-size: 100%;
  min-height: 100vh;
  --frameP: 0;
  --blurP: 0;
  --frameColor: 255, 255, 255;
  --frameW: calc(var(--frameP) * 16px);
  --blurAmt: calc(var(--blurP) * 12px);
}

@media screen and (max-width: 767px) {
  .visualBlock {
    width: 100%;
    min-height: 100svh;
    border-width: var(--frameW);
  }
}

.visualBlock__media {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100svh;
  margin-top: -100svh;
  width: 100%;
  overflow: clip;
  z-index: 1;
}

.visualBlock__media img {
  width: auto;
  height: 100vh;
  min-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  -webkit-filter: blur(var(--blurAmt));
  filter: blur(var(--blurAmt));
  will-change: filter;
}

.visualBlock__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.2);
  border-color: rgb(var(--frameColor));
  border-width: var(--frameW);
  border-style: solid;
}

@media screen and (max-width: 767px) {
  .visualBlock__media::after {
    border-width: var(--frameW) var(--frameW) 0 var(--frameW);
  }
}

.visualBlock .copyWrap {
  height: 100svh;
  position: relative;
}

.visualBlock .copyWrap__main {
  z-index: 2;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2.7777777778vw;
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
  text-align: center;
  font-family: "reiher-headline", "ryo-display-plusn", serif;
  font-weight: 500;
  font-style: normal;
}

@media screen and (max-width: 767px) {
  .visualBlock .copyWrap__main {
    font-size: 5.3333333333vw;
    padding-right: 0;
  }
}

.visualBlock .copyWrap__title {
  max-width: 480px;
  margin-inline: auto;
}

.visualBlock .copyWrap__title img {
  width: 100%;
  height: auto;
  display: block;
}

.visualBlock .copyWrap__title::after {
  content: "";
  width: 1.6666666667vw;
  height: 2px;
  background: #fff;
  display: block;
  margin: 3.3333333333vw auto 2.3vw;
}

@media screen and (max-width: 767px) {
  .visualBlock .copyWrap__title::after {
    margin: 5vw auto 3.5vw auto;
  }
}

.visualBlock .copyWrap .line {
  position: relative;
  display: inline-block;
}

.visualBlock .copyWrap .line::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 4.8611111111vw;
  height: 2px;
  background: #fff;
  margin-left: 0.25em;
}

@media screen and (max-width: 767px) {
  .visualBlock .copyWrap .line::after {
    width: 9.3333333333vw;
    height: 1px;
  }
}

.visualBlock__spacer {
  height: 20svh;
}

.visualBlock .leadArea {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .visualBlock .leadArea {
    font-size: 4.2666666667vw;
    padding: max(16px, 4.2666666667vw) max(16px, 4.2666666667vw)
      max(32px, 8.5333333333vw) max(16px, 4.2666666667vw);
  }
}

.visualBlock .leadArea__title {
  font-size: 1.3888888889vw;
  line-height: 2.4;
  font-weight: 600;
  margin-bottom: 6.6666666667vw;
}

@media screen and (max-width: 767px) {
  .visualBlock .leadArea__title {
    font-size: 4.2666666667vw;
    margin-bottom: 25.6vw;
  }
}

.visualBlock .leadArea__text {
  font-size: 0.9722222222vw;
  line-height: 2.4;
  font-weight: 400;
  max-width: 50vw;
  margin: 0 auto;
  padding-bottom: 8.3333333333vw;
}

@media screen and (max-width: 767px) {
  .visualBlock .leadArea__text {
    font-size: 3.2vw;
    padding-bottom: 32vw;
    max-width: 100%;
  }
}

.aboutBlock {
  padding: 0 5.5555555556vw;
}

@media screen and (max-width: 767px) {
  .aboutBlock {
    padding: 0 4.2666666667vw;
  }
}

@media screen and (min-width: 768px) {
  .aboutBlock__wrap {
    display: grid;
    grid-template-areas: "img title" "img body";
    margin-inline: auto;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    max-width: 83.3333333333vw;
    -webkit-column-gap: clamp(24px, 5vw, 72px);
    -moz-column-gap: clamp(24px, 5vw, 72px);
    column-gap: clamp(24px, 5vw, 72px);
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "img title" "img body";
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
  }
}

.aboutBlock__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .aboutBlock__title {
    gap: 0.8333333333vw;
    margin-bottom: 3.8888888889vw;
    grid-area: title;
    align-self: end;
  }
}

@media screen and (max-width: 767px) {
  .aboutBlock__title {
    margin: 0 auto 8.5333333333vw;
    width: 100%;
    gap: 3.2vw;
  }
}

.aboutBlock__title h2 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .aboutBlock__title h2 {
    font-size: 18px;
  }
}

.aboutBlock__title span {
  font-family: var(--sub-font);
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  margin-left: 0.25em;
}

.aboutBlock__text {
  grid-area: body;
  align-self: start;
  color: #000;
}

.aboutBlock__text h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 1.6666666667vw;
}

@media screen and (max-width: 767px) {
  .aboutBlock__text h3 {
    font-size: 4.2666666667vw;
    margin-bottom: 6.4vw;
  }
}

.aboutBlock__text p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .aboutBlock__text p {
    font-size: 2.9333333333vw;
  }
}

.aboutBlock__image {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .aboutBlock__image {
    grid-area: img;
    height: auto;
    grid-row: 1/-1;
    aspect-ratio: 3/2;
  }
}

@media screen and (max-width: 767px) {
  .aboutBlock__image {
    margin-bottom: 6.4vw;
  }
}

.aboutBlock__image img {
  display: block;
}

.ourJobBlock {
  padding-bottom: 5.5555555556vw;
}

@media screen and (max-width: 767px) and (max-width: 767px) {
  .ourJobBlock {
    padding: 0 4.2666666667vw 25.6vw;
  }
}

.ourJobBlock__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.8333333333vw;
  width: 83.3333333333vw;
  margin: 0 auto 2.2222222222vw;
}

@media screen and (max-width: 767px) {
  .ourJobBlock__title {
    margin: 0 auto 8.5333333333vw;
    width: 100%;
    gap: 3.2vw;
  }
}

.ourJobBlock__title h2 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .ourJobBlock__title h2 {
    font-size: 18px;
  }
}

.ourJobBlock__title span {
  font-family: var(--sub-font);
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  margin-left: 0.25em;
}

.ourJobBlock .listWrap {
  max-width: 83.3333333333vw;
  display: grid;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media screen and (min-width: 768px) {
  .ourJobBlock .listWrap {
    gap: 5.5555555556vw;
    padding-bottom: 2.2222222222vw;
    margin: 0 auto;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .ourJobBlock .listWrap {
    max-width: 100%;
    grid-template-columns: repeat(1, 1fr);
    gap: 6.1333333333vw;
  }
}

.ourJobBlock .itemWrap {
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .ourJobBlock .itemWrap {
    grid-template-columns: 35% auto;
    gap: 1.1111111111vw;
  }
}

@media screen and (max-width: 767px) {
  .ourJobBlock .itemWrap {
    grid-template-columns: 38.4vw auto;
    gap: 4.2666666667vw;
  }
}

.ourJobBlock .itemWrap__image {
  width: 100%;
  min-height: 13.8888888889vw;
  overflow: hidden;
  aspect-ratio: 3/5;
}

@media screen and (max-width: 767px) {
  .ourJobBlock .itemWrap__image {
    height: 64vw;
  }
}

.ourJobBlock .itemWrap__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.ourJobBlock .itemWrap__text h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 1.1111111111vw;
}

@media screen and (max-width: 767px) {
  .ourJobBlock .itemWrap__text h3 {
    font-size: 3.2vw;
    margin-bottom: 4.2666666667vw;
  }
}

.ourJobBlock .itemWrap__text p {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 1.3888888889vw;
}

@media screen and (max-width: 767px) {
  .ourJobBlock .itemWrap__text p {
    font-size: 2.9333333333vw;
    margin-bottom: 4.2666666667vw;
  }
}

.ourJobBlock .itemWrap__text a {
  display: inline-block;
  font-size: 0.8333333333vw;
  font-weight: 400;
  color: #fff;
  background: #000;
  padding: 0.8333333333vw 1.8055555556vw 0.8333333333vw 1.1111111111vw;
  border-radius: 3px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .ourJobBlock .itemWrap__text a {
    font-size: 2.9333333333vw;
    padding: 3.2vw 6.9333333333vw 3.2vw 4.2666666667vw;
  }
}

.ourJobBlock .itemWrap__text a::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 7px;
  right: 1.1111111111vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3 7" fill="none"><path d="M3 3.49072L3.02841e-07 6.49072L0 0.490723L3 3.49072Z" fill="%23999"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .ourJobBlock .itemWrap__text a::after {
    width: 0.8vw;
    height: 1.8666666667vw;
    right: 4.2666666667vw;
  }
}



.photoBlock__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.8333333333vw;
  width: 83.3333333333vw;
  margin: 0 auto 2.2222222222vw;
}

@media screen and (max-width: 767px) {
  .photoBlock__title {
    margin: 0 4.2666666667vw 8.5333333333vw;
    width: calc(100% - 8.5333333333vw);
    gap: 3.2vw;
  }
}

.photoBlock__title h2 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .photoBlock__title h2 {
    font-size: 18px;
  }
}

.photoBlock__title span {
  font-family: var(--sub-font);
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  margin-left: 0.25em;
}

@media screen and (max-width: 500px) {
  .photoList__item {
    width: 80vw;
  }
}
.photoBlock .swiper-wrapper{
width:31vw;
}
@media screen and (max-width: 500px) {
  .photoBlock .swiper-wrapper{
  width:80vw;
  }
}
.photoBlock img{
  width:100%;
}

.photoBlock p {
  padding: 0 10px;
}

/*
.photoBlock .photoList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.photoBlock .photoList__item {
  width: 16.6666666667vw;
  position: relative;
  overflow: visible;
  margin-right: 0.5555555556vw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (max-width: 767px) {
  .photoBlock .photoList__item {
    margin-right: 2.1333333333vw;
    width: 49.0666666667vw;
  }
}

.photoBlock .photoList__item p {
  font-size: 12px;
  padding-top: 0.5555555556vw;
  white-space: wrap;
}

@media screen and (max-width: 767px) {
  .photoBlock .photoList__item p {
    font-size: 3.2vw;
    padding-top: 2.1333333333vw;
  }
}

.photoBlock .photoList__item .imageWrap {
  width: 100%;
  height: 100%;
  aspect-ratio: 1080/1920;
}

.photoBlock .photoList__item .imageWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.photoBlock .photoList .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
*/

.modalBlock {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 99;
  background: rgb(0, 0, 0);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  height: 100%;
}

.modalBlock.is-open {
  display: block;
}

.modalBlock .videoBlock {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .modalBlock .videoBlock {
    height: 100vh;
    padding: 9.6vw 0;
    gap: 4.4444444444vw;
  }
}

@media screen and (max-width: 767px) {
  .modalBlock .videoBlock {
    height: 100%;
    min-height: 100vh;
    gap: 3.2vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 8.5333333333vw 4.2666666667vw;
  }
}

.modalBlock .videoBlock__video {
  height: 85.5vh;
  border-radius: 3px;
  overflow: hidden;
  background: #000;
  z-index: 2;
  aspect-ratio: 1080/1920;
}

.modalBlock .btnArea {
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
}

.modalBlock .btnArea__follow {
  font-size: 12px;
  width: 240px;
  margin: 3.3333333333vw auto 0;
}

@media screen and (max-width: 767px) {
  .modalBlock .btnArea__follow {
    font-size: 3.2vw;
    width: 64vw;
    margin: 10.6666666667vw auto 0;
  }
}

.modalBlock .btnArea__follow a {
  color: #fff;
  border-radius: 56px;
  border: solid 1px #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 17px;
}

@media screen and (max-width: 767px) {
  .modalBlock .btnArea__follow a {
    padding: 4.5333333333vw;
  }
}

.modalBlock .btnArea__close {
  color: #666;
  font-size: 11px;
  cursor: pointer;
}

.noteBlock {
  padding-bottom: 8.3333333333vw;
}

.noteBlock__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.8333333333vw;
  width: 83.3333333333vw;
  margin: 0 auto 2.2222222222vw;
}

@media screen and (max-width: 767px) {
  .noteBlock__title {
    margin: 0 4.2666666667vw 8.5333333333vw;
    width: calc(100% - 8.5333333333vw);
    gap: 3.2vw;
  }
}

.noteBlock__title h2 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .noteBlock__title h2 {
    font-size: 18px;
  }
}

.noteBlock__title span {
  font-family: var(--sub-font);
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  margin-left: 0.25em;
}

.noteBlock__btn {
  font-size: 12px;
  width: 240px;
  margin: 3.3333333333vw auto 0;
}

@media screen and (max-width: 767px) {
  .noteBlock__btn {
    font-size: 3.2vw;
    width: 64vw;
    margin: 10.6666666667vw auto 0;
  }
}

.noteBlock__btn a {
  border-radius: 56px;
  border: solid 1px #bbb;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 17px;
}

@media screen and (max-width: 767px) {
  .noteBlock__btn a {
    padding: 4.5333333333vw;
  }
}

.noteBlock__btn svg {
  width: 10px;
}

@media screen and (max-width: 767px) {
  .noteBlock__btn svg {
    width: 2.6666666667vw;
  }
}

.noteBlock__btn span {
  margin-left: 6px;
}

@media screen and (max-width: 767px) {
  .noteBlock__btn span {
    margin-left: 1.6vw;
  }
}

.noteBlock .image {
  margin-bottom: 1.1111111111vw;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .noteBlock .image {
    margin-bottom: 4.2666666667vw;
  }
}

.noteBlock .noteList {
  display: grid;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .noteBlock .noteList {
    width: 83.3333333333vw;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 2.7777777778vw;
    -moz-column-gap: 2.7777777778vw;
    column-gap: 2.7777777778vw;
    row-gap: 2.2222222222vw;
  }
}

@media screen and (max-width: 767px) {
  .noteBlock .noteList li + li {
    padding-top: 8.5333333333vw;
  }
}

@media screen and (max-width: 767px) {
  .noteBlock .noteList .detailWrap {
    margin-inline: 4.2666666667vw;
  }
}

.noteBlock .noteList .detailWrap__text {
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 0.8333333333vw;
}

@media screen and (max-width: 767px) {
  .noteBlock .noteList .detailWrap__text {
    font-size: 3.2vw;
    margin-bottom: 3.2vw;
  }
}

.noteBlock .noteList .detailWrap__name {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.noteBlock .noteList .detailWrap__name .shop {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #666;
  font-size: 10px;
}

.noteBlock .noteList .detailWrap__name .shop::before {
  content: "";
  display: inline-block;
  background-image: url(/jobfind-pc/original/images/icon_note.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

@media screen and (max-width: 767px) {
  .noteBlock .noteList .detailWrap__name .shop::before {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
    margin-right: 1.0666666667vw;
  }
}

@media screen and (max-width: 767px) {
  .noteBlock .noteList .detailWrap__name .shop {
    font-size: 2.6666666667vw;
  }
}

.noteBlock .noteList .detailWrap__name .staff {
  color: #666;
  font-size: 10px;
}

.noteBlock .noteList .detailWrap__name .staff::before {
  content: "/";
  display: inline-block;
  font-size: 10px;
  margin: 0 4px;
}

.typeBlock {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .typeBlock {
    margin: 0 4.2666666667vw;
    width: calc(100% - 8.5333333333vw);
  }
}

.typeBlock__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.8333333333vw;
  margin-bottom: 2.2222222222vw;
}

@media screen and (max-width: 767px) {
  .typeBlock__title {
    margin-bottom: 8.5333333333vw;
    gap: 3.2vw;
  }
}

.typeBlock__title h2 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .typeBlock__title h2 {
    font-size: 18px;
  }
}

.typeBlock__title span {
  font-family: var(--sub-font);
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  margin-left: 0.25em;
}

.typeBlock .tabWrap {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 16px;
  border-bottom: solid 1px #bbb;
  margin: 0 auto 2.2222222222vw;
}

@media screen and (max-width: 767px) {
  .typeBlock .tabWrap {
    width: 100%;
    margin: 0 0 8.5333333333vw 0;
    gap: 4.2666666667vw;
  }
}

.typeBlock .tabWrap__item {
  position: relative;
  cursor: pointer;
  padding: 8px 16px 16px;
  font-weight: 600;
  color: #bbb;
  font-size: 12px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .typeBlock .tabWrap__item {
    width: 90px;
  }
}

@media screen and (max-width: 767px) {
  .typeBlock .tabWrap__item {
    padding: 2.1333333333vw 4.2666666667vw 4.2666666667vw;
  }
}

.typeBlock .tabWrap__item.is-active {
  color: #000;
}

.typeBlock .tabWrap__item.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: #000;
}

.typeBlock .listWrap {
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  font-size: 13px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .typeBlock .listWrap {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 1px;
    border-radius: 3px;
    overflow: hidden;
    font-size: 3.2vw;
  }
}

.typeBlock .listWrap.is-active {
  display: grid;
  opacity: 1;
}

.typeBlock .listWrap__item {
  position: relative;
  background: #ececec;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.typeBlock .listWrap__item::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 7px;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3 7" fill="none"><path d="M3 3.49072L3.02841e-07 6.49072L0 0.490723L3 3.49072Z" fill="%23999"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .typeBlock .listWrap__item::after {
    width: 0.8vw;
    height: 1.8666666667vw;
    right: 4.2666666667vw;
  }
}

.typeBlock .listWrap__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  gap: 3px;
  padding: 0.9722222222vw 1.1111111111vw;
}

@media screen and (max-width: 767px) {
  .typeBlock .listWrap__item a {
    gap: 0.8vw;
    padding: 3.7333333333vw 4.2666666667vw;
  }
}

@media screen and (min-width: 768px) {
  .typeBlock .listWrap__item {
    border-radius: 3px;
  }
}

.typeBlock__btn {
  font-size: 12px;
  width: 240px;
  margin: 3.3333333333vw auto 0;
}

@media screen and (max-width: 767px) {
  .typeBlock__btn {
    font-size: 3.2vw;
    width: 64vw;
    margin: 10.6666666667vw auto 0;
  }
}

.typeBlock__btn a {
  border-radius: 56px;
  border: solid 1px #bbb;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 17px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .typeBlock__btn a {
    padding: 4.5333333333vw;
  }
}

.typeBlock__btn a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 1.1111111111vw;
  background: no-repeat center/contain;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 7 11" fill="none"><path d="M3 7.37988L0 4.37988L6 4.37988L3 7.37988Z" fill="%23AAAAAA"/></svg>');
  width: 0.4861111111vw;
  height: 0.7638888889vw;
}

@media screen and (max-width: 767px) {
  .typeBlock__btn a::after {
    width: 1.8666666667vw;
    height: 2.9333333333vw;
    right: 4.2666666667vw;
  }
}

.typeBlock__btn svg {
  width: 10px;
}

@media screen and (max-width: 767px) {
  .typeBlock__btn svg {
    width: 2.6666666667vw;
  }
}

.typeBlock__btn span {
  margin-left: 6px;
}

@media screen and (max-width: 767px) {
  .typeBlock__btn span {
    margin-left: 1.6vw;
  }
}

.typeBlock .typeItem01 svg {
  width: 15px;
  height: 17px;
}

@media screen and (max-width: 767px) {
  .typeBlock .typeItem01 svg {
    width: 4vw;
    height: 4.5333333333vw;
  }
}

.typeBlock .typeItem02 svg {
  width: 25px;
  height: 29px;
}

@media screen and (max-width: 767px) {
  .typeBlock .typeItem02 svg {
    width: 6.6666666667vw;
    height: 7.7333333333vw;
  }
}

.typeBlock .typeItem03 svg {
  width: 19px;
  height: 17px;
}

@media screen and (max-width: 767px) {
  .typeBlock .typeItem03 svg {
    width: 5.0666666667vw;
    height: 4.5333333333vw;
  }
}

.typeBlock .typeItem04 svg {
  width: 18px;
  height: 17px;
}

@media screen and (max-width: 767px) {
  .typeBlock .typeItem04 svg {
    width: 4.8vw;
    height: 4.5333333333vw;
  }
}

.typeBlock .typeItem05 svg {
  width: 19px;
  height: 15px;
}

@media screen and (max-width: 767px) {
  .typeBlock .typeItem05 svg {
    width: 5.0666666667vw;
    height: 4vw;
  }
}

.typeBlock .typeItem06 svg {
  width: 15px;
  height: 17px;
}

@media screen and (max-width: 767px) {
  .typeBlock .typeItem06 svg {
    width: 4vw;
    height: 4.5333333333vw;
  }
}

.attributeBlock {
  padding-top: 0;
  width: 83.3333333333vw;
}

@media screen and (max-width: 767px) {
  .attributeBlock {
    width: calc(100% - 8.5333333333vw);
  }
}

.attributeBlock__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.8333333333vw;
  margin-bottom: 2.2222222222vw;
}

@media screen and (max-width: 767px) {
  .attributeBlock__title {
    margin-bottom: 8.5333333333vw;
    gap: 3.2vw;
  }
}

.attributeBlock__title h2 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .attributeBlock__title h2 {
    font-size: 18px;
  }
}

.attributeBlock__title span {
  font-family: var(--sub-font);
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  margin-left: 0.25em;
}

.attributeBlock .tabWrap {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 16px;
  border-bottom: solid 1px #bbb;
  margin: 0 auto 2.2222222222vw;
}

@media screen and (max-width: 767px) {
  .attributeBlock .tabWrap {
    width: 100%;
    margin: 0 0 8.5333333333vw 0;
    gap: 4.2666666667vw;
  }
}

.attributeBlock .tabWrap__item {
  position: relative;
  cursor: pointer;
  padding: 8px 16px 16px;
  font-weight: 600;
  color: #bbb;
  font-size: 12px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .attributeBlock .tabWrap__item {
    width: 90px;
  }
}

@media screen and (max-width: 767px) {
  .attributeBlock .tabWrap__item {
    padding: 2.1333333333vw 4.2666666667vw 4.2666666667vw;
  }
}

.attributeBlock .tabWrap__item.is-active {
  color: #000;
}

.attributeBlock .tabWrap__item.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: #000;
}

.attributeBlock .listWrap {
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.attributeBlock .listWrap.is-active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

@media screen and (max-width: 767px) {
  .attributeBlock .listWrap.is-active {
    gap: 2.6666666667vw;
  }
}

.attributeBlock .listWrap__item {
  position: relative;
}

.attributeBlock .listWrap__item a {
  background: #ececec;
  border-radius: 62px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  padding: 12px 30px 12px 12px;
}

@media screen and (max-width: 767px) {
  .attributeBlock .listWrap__item a {
    border-radius: 16.5333333333vw;
    font-size: 2.9333333333vw;
    gap: 2.1333333333vw;
    padding: 3.2vw 8vw 3.2vw 3.2vw;
  }
}

.attributeBlock .listWrap__item .icon {
  width: 28px;
  height: 28px;
}

.attributeBlock .listWrap__item .icon img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .attributeBlock .listWrap__item .icon {
    width: 7.4666666667vw;
    height: 7.4666666667vw;
  }
}

.attributeBlock .listWrap__item::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 7px;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3 7" fill="none"><path d="M3 3.49072L3.02841e-07 6.49072L0 0.490723L3 3.49072Z" fill="%23999"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .attributeBlock .listWrap__item::after {
    width: 0.8vw;
    height: 1.8666666667vw;
    right: 4.2666666667vw;
  }
}

.listBlock {
  width: 83.3333333333vw;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .listBlock {
    width: calc(100% - 8.5333333333vw);
    margin: 0 auto;
  }
}

.listBlock__title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.075em;
  margin-bottom: 2.2222222222vw;
}

@media screen and (max-width: 767px) {
  .listBlock__title {
    font-size: 3.2vw;
    margin-bottom: 6.4vw;
  }
}

@media screen and (min-width: 768px) {
  .listBlock__list {
    width: 83.3333333333vw;
    margin-bottom: 4.4444444444vw;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 3.3333333333vw;
    -moz-column-gap: 3.3333333333vw;
    column-gap: 3.3333333333vw;
    row-gap: 10px;
  }
}

@media screen and (max-width: 767px) {
  .listBlock__list {
    margin-bottom: 12.8vw;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2.6666666667vw;
  }
}

.listBlock__list li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  height: 2em;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .listBlock__list li a {
    gap: 2.1333333333vw;
    font-size: 2.6666666667vw;
  }
}

.listBlock__list li a img {
  width: 18px;
  height: auto;
}

@media screen and (min-width: 768px) {
  .listBlock--type .listBlock__list {
    row-gap: 20px;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .listBlock--type .listBlock__list {
    gap: 3.2vw;
    margin-bottom: 0;
  }
}

.listBlock--type .listBlock__list li a {
  position: relative;
  height: 1em;
}

.listBlock--type .listBlock__list li a::before {
  content: "";
  width: 6px;
  height: 1px;
  background: #bbb;
  display: block;
}

@media screen and (min-width: 768px) {
  .faqBlock {
    width: 83.3333333333vw;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 8.3333333333vw;
  }
}

@media screen and (max-width: 767px) {
  .faqBlock {
    width: calc(100% - 8.5333333333vw);
    margin: 0 auto 21.3333333333vw;
  }
}

.faqBlock__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.8333333333vw;
}

@media screen and (max-width: 767px) {
  .faqBlock__title {
    margin-bottom: 8.5333333333vw;
    gap: 3.2vw;
  }
}

.faqBlock__title h2 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .faqBlock__title h2 {
    font-size: 18px;
  }
}

.faqBlock__title span {
  font-family: var(--sub-font);
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  margin-left: 0.25em;
}

@media screen and (min-width: 768px) {
  .faqBlock__list {
    width: 62.5vw;
  }
}

.faqBlock__list li + li {
  padding-top: 8px;
}

@media screen and (max-width: 767px) {
  .faqBlock__list li + li {
    padding-top: 2.1333333333vw;
  }
}

.faqBlock__question {
  width: 100%;
  background: #ececec;
  color: #000;
  border-radius: 3px;
  border: 0;
  font-size: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 1.6666666667vw 1.1111111111vw;
  position: relative;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .faqBlock__question {
    padding: 6.4vw 4.2666666667vw;
    font-size: 3.2vw;
    line-height: 1.8;
  }
}

.faqBlock__question::before {
  content: "Q.";
  font-size: 12px;
  font-family: var(--sub-font);
  font-weight: 600;
  margin-right: 0.5em;
  letter-spacing: 0.075em;
}

@media screen and (max-width: 767px) {
  .faqBlock__question::before {
    font-size: 3.2vw;
  }
}

.faqBlock__question::after {
  content: "";
  position: absolute;
  display: block;
  right: 1.1111111111vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 11 12" fill="none"><path d="M5 0.0195312H6V11.0195H5V0.0195312Z" fill="%23AAAAAA"/><path d="M0 5.01953H11V6.01953H0V5.01953Z" fill="%23AAAAAA"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 11px;
  height: 12px;
}

@media screen and (max-width: 767px) {
  .faqBlock__question::after {
    right: 4.2666666667vw;
    width: 2.9333333333vw;
    height: 3.2vw;
  }
}

.faqBlock__question.is-open {
  border-radius: 3px 3px 0 0;
}

.faqBlock__question.is-open::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 11 12" fill="none"><path d="M0 5.01953H11V6.01953H0V5.01953Z" fill="%23AAAAAA"/></svg>');
}

.faqBlock .answerWrap {
  background: #fafafa;
  border-right: solid 1px #eee;
  border-left: solid 1px #eee;
  border-bottom: solid 1px #eee;
  border-radius: 0 0 3px 3px;
  font-size: 12px;
  padding: 1.6666666667vw 1.1111111111vw;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .faqBlock .answerWrap {
    padding: 6.4vw 4.2666666667vw;
    font-size: 3.2vw;
  }
}

.faqBlock .answerWrap__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.faqBlock .answerWrap__inner::before {
  content: "A.";
  font-size: 12px;
  font-family: var(--sub-font);
  font-weight: 600;
  letter-spacing: 0.075em;
}

@media screen and (max-width: 767px) {
  .faqBlock .answerWrap__inner::before {
    font-size: 3.2vw;
  }
}

.faqBlock .answerWrap__item dl + dl {
  padding-top: 1.35em;
}

.faqBlock .answerWrap__item dd {
  -webkit-margin-start: 0.5em;
  margin-inline-start: 0.5em;
}

.faqBlock .answerWrap__item small {
  color: #666;
  font-size: 10px;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .faqBlock .answerWrap__item small {
    font-size: 2.6666666667vw;
  }
}

.areaBlock {
  display: block;
}

@media screen and (min-width: 768px) {
  .photoBlock__list {
    max-width: 83.3333333333vw;
    margin: 0 auto;
  }
}

.photoBlock .caption {
  max-width:83.3333333333vw;
  margin:0 auto;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
.photoBlock .caption {
  max-width:100%;
}
}


.photoBlock__list img {
  max-width: 100%;
  width: 100%;
}

.blockWrap {
  padding-top: 8.3333333333vw;
  margin-top: 0;
}

.blockWrap--bottom {
  padding-bottom: 8.3333333333vw;
}

@media screen and (max-width: 767px) {
  .blockWrap {
    padding-top: 21.3333333333vw;
    margin-top: 0;
  }

  .blockWrap--bottom {
    padding-bottom: 21.3333333333vw;
  }
}

.employmentTypeBlock ul.listWrap {
  display: grid;
  opacity: 1;
}

.workBlock__main {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.workBlock__main .background {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: #000;
}

.workBlock__main .background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.7;
}

.workBlock__main ul {
  position: relative;
  z-index: 1;
}

.workBlock__main {
  text-align: center;
  padding-top: 8vw;
}

.workBlock__main li.list {
  padding: 0 15px 8vw 15px;
}

.workBlock__main li.list .text {
  white-space: unset;
}

.backWhite {
  padding: 1px 0;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .workBlock__main {
    padding-top: 30vw;
  }

  .workBlock__main li.list {
    padding: 0 15px 30vw 15px;
  }
}
