/* CSS Document */
.jobnavi .sliderArea {
  position: relative;
  margin: 0 auto;
  max-width: 750px;
}

.jobnavi .swiper .swiper-slide {
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  padding: 0 30px 1.5rem;
}

.jobnavi .swiper .swiper-slide picture img {
  width: 100%;
}

.jobnavi .swiper-button-prev {
  left: 0;
  right: auto
}

.jobnavi .swiper-button-next {
  right: 0;
  left: auto
}

.jobnavi .swiper-button-next::after,
.jobnavi .swiper-button-prev::after {
  content: '';
  width: 20px;
  height: 30px;
  background: #f58a8a;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.jobnavi .swiper-button-prev::after {
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.marktext {
  position: relative;
}

.marktext p {
  color: #f58a8a;
  position: relative;
}

.badmark .marktext p::before,
.badmark .marktext p::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 1em;
  background: #f58a8a;
}

.badmark .marktext p::before {
  transform: translate(3px, -50%) rotate(45deg);
}

.badmark .marktext p::after {
  transform: translate(3px, -50%) rotate(-45deg);
}

.rightmark .marktext p::before {
  content: "";
  top: 50%;
  left: 0;
  width: 1em;
  height: 1em;
  border: solid 3px #f58a8a;
  border-radius: 50%;
  transform: translateY(-50%);
}

/*importantPoint -----*/
.importantPoint {
  margin-top: 5rem;
}

.importantPoint .midasinami {
  margin: 4em auto 2em;
  border: 2px solid #ffc65c;
  border-radius: 5px;
  padding: 0 1em 0.5em;
  position: relative;
}

.importantPoint p.midasinamiPoint {
  background: #ffc65c;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  padding: 0.5em 1em;
  position: relative;
  top: -18px;
  width: 98%;
  margin: 0 auto;
  text-align: center;
}

.importantPoint p.midasinamiPoint+p {
  margin: 0 auto 1em;
}

h3.subTtl {
  font-size: 1.8rem;
}

h3.subTtl+div p {
  margin: 1em auto;
}

h3.subTtl+div .pintext {
  font-weight: normal;
  text-align: left;
  margin-top: 0.5em;
  line-height: 2;
}

/*modal-----*/
.button {
  display: none;
  background: lightblue;
  color: #fff;
  padding: 0.5em;
  border: 0;
  width: 500px;
  height: 100px;
  font-size: 2rem;
  border-radius: 5px;
  font-weight: bold;
  position: relative;
  left: 30%;
  top: 10%;
}

.button:checked {
  border: solid red;
}

.button:hover {
  background: lightcoral;
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.btnArea {
  width: 50%;
  position: relative;
}

.btnArea label {
  background: #fff;
  border: 2px solid #f58a8a;
  border-radius: 3px;
  font-weight: bold;
  display: block;
  margin: 1em auto;
  padding: 1em;
  text-align: center;
}

.btnArea label:hover {
  background: #f58a8a;
  color: #fff;
}

.importantPoint .btnArea .head,
.importantPoint .btnArea .upper,
.importantPoint .btnArea .lower {
  position: relative;
}

.importantPoint .btnArea .upper {
  top: 15%;
}

.importantPoint .btnArea .lower {
  top: 20%;
}

.importantPoint .btnArea .head::before,
.importantPoint .btnArea .upper::before,
.importantPoint .btnArea .lower::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: -1.5em;
  width: 15px;
  height: 10px;
  border-top: 2px solid #f58a8a;
}

.importantPoint .btnArea .head::before {
  left: -3.5em;
  width: 4em;
}

/*女性イラスト書き直したら不要*/
.importantPoint .btnArea .head.long::before {
  left: -4.5em;
  width: 5em;
  top: 23px;
}

/*----------*/
.importantPoint .btnArea .upper::before {
  left: -2.5em;
  width: 3em;
}

.importantPoint .btnArea .lower::before {
  left: -3.5em;
  width: 4em;
}

.button:checked+div.modal {
  display: block;
}

.modal-content {
  background-color: #f4f4f4;
  /*
  margin: 20% auto;
*/
  width: 80%;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
  animation-name: modalopen;
  animation-duration: 1s;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes modalopen {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.modal-header h1 {
  margin: 1rem 0;
  color: #fff;
  font-weight: bold;
}

.modalClose {
  position: relative;
  display: inline-block;
  width: 34px;
  cursor: pointer;
}

.modalClose::before,
.modalClose::after {
  content: "";
  position: absolute;
  top: 1.2em;
  right: 0;
  width: 3px;
  /* 棒の幅（太さ） */
  height: 15px;
  /* 棒の高さ */
  background: #fff;
}

.modalClose::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modalClose::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}


.modal-header {
  background: #f58a8a;
  padding: 3px 15px;
  display: flex;
  justify-content: space-between;
}

.modalClose:hover {
  cursor: pointer;
}

.modal-body {
  padding: 10px 20px;
  color: black;
}

.modal-body P {
  margin: 1em auto;
}

/* miruPoint ----*/

.checkList {
  margin: 0 auto;
  padding: 1em 0.5em 1em 2em;
  max-width: 900px;
}

.checkList li {
  position: relative;
  margin: 1em;
  line-height: 1.2;
}

.checkList li:after {
  content: '';
  display: block;
  position: absolute;
  top: 0.2em;
  left: -2.5em;
  width: 26px;
  height: 38px;
  background: url('../../../img/page/jobnavi/attention_check.png') center center no-repeat;
  top: -0.7em;
  right: 33%;
  background-size: contain;
}

.internship {
  margin: 4em auto 2em;
  border: 2px solid #ffc65c;
  border-radius: 5px;
  padding: 0 1em 1em;
  position: relative;
}

.internship p.internshipTtl {
  background: #ffc65c;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  padding: 0.5em 1em;
  position: relative;
  top: -30px;
  width: 98%;
  margin: 0 auto;
  text-align: center;
}

.internship p.internshipTtl+p {
  margin: 0 auto 1em;
}


/*interviewPoint ----*/
.interviewPoint img {
  height: auto;
}

.interviewPointbg {
  background: #fff3f3;
  padding: 1em;
}

.firstStep,
.secondStep,
.thirdStep {
  margin: 0 auto 3rem;
}

.thirdStepPoint {
  margin: 0 auto 9rem;
  width: min(calc(100% - 3rem), 900px);
  border: solid 2px #f58a8a;
  border-radius: 1rem;
  padding: 2rem;
  background-color: #fff;
}

.firstSlider {
  margin-bottom: 3em;
}

.firstStep p {
  margin: 0 auto;
  padding: 0 1.25em;
  width: fit-content;
}

.interviewPoint h4 {
  margin: 0 auto 3rem;
  color: #333;
  font-size: 2rem;
  text-align: center;
  position: relative;
}

.interviewNo {
  background-color: #4096D3;
  padding: 1rem;
  margin-right: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.2rem;
  padding-bottom: 0.5rem;
  box-shadow: 5px 5px 0px 0 rgb(255, 255, 255);
  color: #fff;
}

.badPoint {
  margin: 2em auto;
}

.badPoint p {
  position: relative;
  margin: 0 auto 0.5rem;
  padding: 0 1.75em;
  width: fit-content;
  background: url('../../../img/page/jobnavi/interview/bad_batsu.png') left center / 1.25em auto no-repeat, url('../../../img/page/jobnavi/interview/bad_batsu.png') right center / 1.25em auto no-repeat;
  font-size: 1.8rem;
  text-align: center;
}

.badPoint ul {
  background: #fff;
  border-radius: 5px;
  padding: 1em 0.5em 1em 3em;
  margin: 0 auto;
  max-width: 900px;
}

.badPoint li {
  position: relative;
  margin: 0.5em auto;
  line-height: 1.2;
}

.badPoint li::before,
.badPoint li::after {
  content: "";
  position: absolute;
  top: 0.7em;
  left: -1em;
  width: 3px;
  /* 棒の幅（太さ） */
  height: 15px;
  /* 棒の高さ */
  background: #f58a8a;
}

.badPoint li::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.badPoint li::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.firstStep img {
  width: 90%;
  margin: 0 auto;
}

.secondStep .secondarea .stepNo span {
  border: 2px #333 solid;
  font-weight: bold;
  border-radius: 3px;
  padding: 0 0.5em;
}

.secondarea {
  background-color: #fff;
  padding: 1.5rem;
}

.thirdStep .secondarea {
  margin: 0 auto 1.5rem;
  width: min(750px, calc(100% - 60px));
}

.thirdStep img {
  height: auto;
}

.forthStep {
  margin-bottom: 2em;
}

.forthStep div p {
  text-align: left;
}


/*interviewMovie ----*/
.interviewMovie h4 {
  padding: 7rem 0 1.5rem;
  min-height: 12rem;
  background: url('../../../img/page/jobnavi/logo_shinrotv.svg') center 1rem / auto 5rem no-repeat, url('../../../img/page/jobnavi/interview/img_tv.png') center top / 13rem auto no-repeat;
  text-align: center;
  font-size: 1.8rem;
  position: relative;
  color: #333;
}

.interviewMovie .thmb{
  cursor: pointer;
  position: relative;
}

.interviewMovie .thmb::before {
  content: '';
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.1);
  border: solid 3px #fff;
  border-radius: 50%;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
  transform: translate(-50%, -50%);
}

.interviewMovie .thmb::after {
  content: '';
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 28px;
  border-color: transparent transparent transparent #fff;
  transform: translate(calc(-50% + 3px), -50%);
}

.jobnavi .interviewMovie .swiper .swiper-slide{
  padding: 0 10px;
}

.bg_pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ffe9a7;
  opacity: 0.4;
  z-index: -1;
}

.Diagonal_v3 {
  background-size: 20px 20px;
  background-image: repeating-linear-gradient(45deg, #ffc107 0, #ffc107 2px, #ffe9a7 0, #ffe9a7 50%);
}

.interviewMovie img {
  width: 70%;
  height: auto;
  margin: 0 auto;
}

.interviewMovie li p {
  text-align: center;
  margin: 1em 0;
}

h3.sawyou {
  position: relative;
  padding: 0.5rem 0;
  margin-bottom: 0.2rem;
  border-bottom: 3px solid;
  color: #4096D3;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}

h3.sawyou:before,
h3.sawyou:after {
  position: absolute;
  top: 100%;
  left: 50%;
  content: "";
  height: 0;
  width: 0;
}

h3.sawyou:before {
  border: 15px solid;
  border-color: transparent;
  border-top-color: #4096D3;
  margin-left: -15px;
}

h3.sawyou:after {
  border: 10px solid;
  border-color: transparent;
  border-top-color: white;
  margin-left: -10px;
}

.miruPoint {
  position: relative;
}

.miruPoint::before {
  content: '';
  background: url(../../../img/page/jobnavi/interview/h2_mirareteru_kazari.png)no-repeat left top;
  background-size: auto;
  background-size: auto;
  background-size: contain;
  width: 40px;
  height: 35px;
  right: 39%;
  top: -3%;
  transform: translate(-50%, 0%);
}

.badPoint p{
  font-size: 1.6rem;
}

.pointBg {
	margin: 0 auto 1rem;
	width: min(calc(100% - 3rem), 900px);
	background-color: #fff;
	padding: 1rem;
}

.interviewMovie .frameBox,
.frameBlue {
  position: relative;
  margin: 0 auto 1.5rem;
  padding: 3rem 1.5rem 1.5rem;
  max-width: 1000px;
}

.frameBox::before,
.frameBox::after,
.frameBlue::before,
.frameBlue::after {
  content: '';
  width: 5rem;
  height: 5rem;
  display: inline-block;
}

.frameBox::before,
.frameBlue::before {
  border-right: solid 1rem #d0eafa;
  border-top: solid 1rem #d0eafa;
  top: 0;
  right: 1rem;
}

.frameBox::after,
.frameBlue::after {
  border-left: solid 1rem #d0eafa;
  border-bottom: solid 1rem #d0eafa;
  bottom: 0;
  left: 1rem;
}

span.pink {
  color: #f58a8a;
}

.interviewMovie {
  padding: 6rem 1.5rem;
  background-color: #edfeff;
  background: radial-gradient(circle,
      transparent 20%,
      #fff 20%,
      #fff 80%,
      transparent 80%,
      transparent),
    radial-gradient(circle,
      transparent 20%,
      #fff 20%,
      #ffff 80%,
      transparent 80%,
      transparent) 40px 40px,
    linear-gradient(#efefef 3.2px, transparent 3.2px) 0 -1.6px,
    linear-gradient(90deg, #efefef 3.2px, #fff 3.2px) -1.6px 0;
  background-size: 80px 80px, 80px 80px, 40px 40px, 40px 40px;
}


/* --- ポップアップ用のスタイル --- */
.tvPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background: rgba(51, 51, 51, 0.75);
  pointer-events: none;
  opacity: 0;
  transition: all 0.5s 0s ease-out;
}

.tvPopup.open {
  pointer-events: auto;
  opacity: 1;
}

.tvPopup .wrap {
  position: absolute;
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 1000px) {
  .tvPopup .wrap {
    left: calc(50% - 500px);
    max-width: 1000px;
  }
}

.tvPopup .wrap.hide {
  display: none;
}

.tvPopup .wrap.open {
  opacity: 0;
  animation: 0.15s 0s ease-in forwards fadeIn;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.tvPopup .closeBtn {
  cursor: pointer;
  position: relative;
  z-index: 1000;
  justify-self: flex-end;
  margin-right: 15px;
  width: 34px;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

.tvPopup .closeBtn::before,
.tvPopup .closeBtn::after {
  content: '';
  width: 34px;
  height: 4px;
  background: #fff;
  transform-origin: center;
  transform: translate(0, 17px) rotate(45deg);
}

.tvPopup .closeBtn::after {
  transform: translate(0, 17px) rotate(-45deg);
}

.tvPopup .inner {
  padding: 5px 0 0;
  width: 100%;
  max-width: 960px;
  max-height: 75vh;
  text-align: center;
  overflow-y: auto;
  -webkit-appearance: none;
  appearance: none;
  scroll-behavior: smooth;
}

.tvPopup .inner::-webkit-scrollbar {
  width: 8px;
}

.tvPopup .inner::-webkit-scrollbar-track {
  margin: 5px 0 0;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 8px;
}

.tvPopup .inner::-webkit-scrollbar-thumb {
  background: rgb(var(--naviCream));
  border-radius: 8px;
  border: 1px solid rgb(var(--naviBlue));
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
  background-clip: padding-box;
}

.tvPopup iframe {
  display: block;
  width: 95vw;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  background: #fff;
  transform: scale(0, 0);
  opacity: 0;
  transition: all 0.15s 0s ease-in;
}

@media (orientation: landscape) {
  .tvPopup iframe {
    width: 100vh;
  }
}

.tvPopup.open iframe {
  opacity: 1;
  transform: scale(1, 1);
}

.tvPopup .figCaption {
  margin: 0 auto;
  padding: 5px;
  font-size: 2rem;
  line-height: 1.2;
  color: #fff;
  font-weight: bold;
  text-align: center;
}



/*  ----- PC.css ------  */
@media (min-width: 768px) {

  /*importantPoint ----*/
  .backbulue {
    padding: 3rem 0;
  }

  .importantPoint .midasinami {
    width: 70%;
  }

  .importantPoint .sliderArea li {
    margin: 2em 1em;
  }

  .modal-content {
    width: 50%;
  }

  .importantPoint .btnArea .head.long::before {
    left: -4.5em;
    width: 5em;
  }

  .importantPoint .btnArea .head.long::after {
    height: 1.5em;
    left: -4.5em;
  }

  .importantPoint .btnArea .head::before {
    left: -3em;
  }

  .PCsliderimg.forPc {
    width: min(80%, 900px);
    margin: 0 auto 3rem;
  }

  .imgcenterpc {
    width: 560px;
    margin: 5rem auto;
  }

  .jobvoteh2 {
    padding-right: 0;
  }

  /*miruPoint ----*/
  .miruPoint .internship {
    width: 70%;
  }

  .miruPoint::before {
    right: 47%;
  }

  /*firstStep ----*/
  .firstSlider {
    margin-bottom: 5em;
  }

  .marktext p {
    text-align: left;
  }

  /* sawyou */
  h3.sawyou {
    width: 81%;
    margin: 0 auto;
  }

  /*secondStep ----*/
  .secondStep .secondarea .stepNo {
    margin-top: 0;
  }

  .secondarea {
    padding: 1rem;
  }

  /*thirdStep ----*/
  .thirdStep .scroll {
    justify-content: center;
  }

  .thirdStep .scroll+p {
    width: 75%;
  }

  /*forthStep ----*/
  .fortharea {
    display: flex;
  }

  .forthStep div:first-child {
    margin-bottom: unset;
  }

  /*interviewMovie ----*/
  .interviewMovie ul {
    margin: 0 auto;
  }

  .interviewMovie img {
    width: 80%;
  }

  .interviewMovie {
    height: 616px;
  }
}

.sliderArea.noslide{
  margin: 0 auto;
}