@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
.sub_top_flex .sub_title {
  width: 50%;
}
.sub_top_flex .sub_title h1 span {
  font-family: "corporate-logo-ver2", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 800;
}

.map {
  position: relative;
  margin: 0 auto;
  margin-top: 50px;
  width: 1500px;
  max-width: 100%;
}

.company {
  position: absolute;
  top: 40%;
  left: 13%;
  width: 27%;
  cursor: pointer;
}
.company:hover {
  transform: scale(1.05, 1.05);
}

.sukesan {
  position: absolute;
  top: 17.5%;
  left: 41.3%;
  width: 22%;
  cursor: pointer;
}
.sukesan:hover {
  transform: scale(1.05, 1.05);
}

.office {
  position: absolute;
  top: 2.5%;
  left: 76.5%;
  width: 21%;
  cursor: pointer;
}
.office:hover {
  transform: scale(1.05, 1.05);
}

.map2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.sec .content {
  width: 1500px;
  max-width: 90%;
  margin: 100px auto;
}
.sec .content_flex {
  display: flex;
  margin: 50px auto;
  gap: 5%;
}
.sec h2 {
  font-size: 60px;
  font-family: "corporate-logo-ver2", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 800;
}
.sec h2 span {
  font-size: 150px;
  font-weight: 600;
}
.sec .left {
  width: 35%;
}
.sec .right {
  width: 60%;
}
.sec .card {
  display: flex;
  align-items: flex-end;
  border: solid 2px #222222;
  padding: 30px 50px;
  margin-bottom: 30px;
  cursor: pointer;
  clip-path: polygon(39px 0, 100% 0, 100% 100%, 0 100%, 0 39px);
}
.sec .card .left {
  width: calc(100% - 150px);
}
.sec .card .left h3 {
  display: inline-block;
  font-weight: 400;
  font-size: 23px;
  margin-bottom: 10px;
  line-height: 100%;
  margin-left: 30px;
}
.sec .card .right {
  width: 200px;
  text-align: right;
}
.sec .card .right .btn {
  display: flex;
  padding: 5px 20px;
  border-radius: 9999px;
  width: 150px;
  align-items: center;
  margin-left: auto;
  justify-content: center;
}
.sec .card .right .btn span {
  font-size: 20px;
  padding-left: 10px;
}

.card {
  position: relative;
}
.card::before {
  top: -2.2px;
  left: -2.2px;
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.card.pink::before {
  background-image: url("../../src/job/pink.webp");
}

.card.blue::before {
  background-image: url("../../src/job/blue.webp");
}

.card.green::before {
  background-image: url("../../src/job/green.webp");
}

.pink .btn {
  background: #ffdede;
}
.pink h3 {
  border-bottom: solid 2px #ffdede;
}

.blue .btn {
  background: #deefff;
}
.blue h3 {
  border-bottom: solid 2px #deefff;
}

.green .btn {
  background: #deffeb;
}
.green h3 {
  border-bottom: solid 2px #deffeb;
}

.sec2 .content_flex {
  flex-direction: row-reverse;
}

/* 背景 */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 10;
}

/* 表示 */
.overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* 詳細カード */
.detail-card {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #fff;
  padding: 50px 30px;
  width: 1000px;
  max-width: 90%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 11;
  border: solid 2px #222222;
}
.detail-card .detail_flex {
  display: flex;
  gap: 20px;
  align-items: center;
}
.detail-card h3 {
  font-size: 20px;
  line-height: 100%;
  display: inline-block;
  margin-left: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}
.detail-card h4 {
  font-size: 23px;
  margin-bottom: 20px;
}
.detail-card .text {
  width: calc(70% - 20px);
}
.detail-card .text p {
  font-size: 18px;
}
.detail-card .img {
  width: calc(30% - 0px);
  min-width: 200px;
}

/* 表示 */
.detail-card.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/* 閉じるボタン */
.detail-card .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 100%;
  border: solid 1px #707070;
  width: 60px;
  height: 60px;
  font-size: 50px;
  font-weight: 400;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: #707070;
  border-radius: 50%;
}

.detail-card {
  clip-path: polygon(39px 0, 100% 0, 100% 100%, 0 100%, 0 39px);
}
.detail-card::before {
  top: -2.2px;
  left: -2.2px;
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.detail-card.pink::before {
  background-image: url("../../src/job/pink.webp");
}

.detail-card.blue::before {
  background-image: url("../../src/job/blue.webp");
}

.detail-card.green::before {
  background-image: url("../../src/job/green.webp");
}

@media (max-width: 700px) {
  .content_flex2 {
    display: flex !important;
  }
  .sec2 .content_flex2 {
    flex-direction: row-reverse;
  }
  .sec2 .content_flex2 .right img {
    width: 70%;
    margin: 0 auto;
  }
  .sec3 .content_flex2 .right img {
    width: 70%;
    margin: 0 auto;
  }
  .sec h2 {
    line-height: 50%;
  }
  .sec h2 span {
    font-size: 70px;
    writing-mode: vertical-rl;
    letter-spacing: 0.8rem;
    line-height: 100%;
  }
  .sec h2 span.span_job {
    font-size: 25px;
    writing-mode: horizontal-tb;
    line-height: 100%;
    letter-spacing: 0rem;
  }
  .sec .content_flex {
    width: 100%;
  }
  .sec .left.pc {
    width: 0%;
  }
  .sec .right {
    width: 100%;
  }
  .sec .card {
    display: block;
    width: 100%;
    clip-path: polygon(27.5px 0, 100% 0, 100% 100%, 0 100%, 0 27.5px);
    border: solid 1px #222222;
    padding: 20px 20px 10px 20px;
  }
  .sec .card .left {
    width: 100%;
  }
  .sec .card .left h3 {
    margin-left: 20px;
    font-size: 20px;
  }
  .sec .card .left p {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .sec .card .right {
    width: 100%;
  }
  .sec .card .right .btn {
    padding: 4px 10px;
    width: 120px;
  }
  .sec .card .right .btn span {
    font-size: 15px;
  }
  .card::before {
    width: 30px;
    height: 30px;
  }
  .detail-card .detail_flex {
    flex-direction: column;
  }
  .detail-card {
    padding: 40px 20px;
  }
  .detail-card .text {
    width: 100%;
  }
  .detail-card .text h4 {
    font-size: 18px;
  }
  .detail-card .text p {
    font-size: 14px;
  }
  .detail-card .close {
    width: 40px;
    height: 40px;
    font-size: 30px;
  }
  .detail-card .img {
    width: 100%;
    min-width: auto;
  }
}/*# sourceMappingURL=job.css.map */