@charset "UTF-8";
:root {
  --color-orange: #FF9914;
}

/* ========== ========== ==========
個別部
========== ========== ========== */
.body {
  position: relative;
  display: flex;
  justify-content: center;
}

.background {
  position: fixed;
  inset: 0;
  z-index: -1;
}
.background_image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100vh;
}

.mainContent {
  max-width: 600px;
  width: 100%;
  background-color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 1600px) {
  .mainContent {
    box-sizing: content-box;
    margin-left: clamp(100px, 35.7142857143vw, 500px);
  }
}
@media screen and (max-width: 1200px) {
  .mainContent {
    margin-left: auto;
  }
}
@media screen and (max-width: 1100px) {
  .mainContent {
    box-sizing: border-box;
    margin-left: 0;
  }
}

.sectionWrap {
  padding-inline: clamp(10px, 6.1333333333vw, 23px);
}
@media screen and (max-width: 350px) {
  .sectionWrap {
    padding-inline: 15px;
  }
}

.header {
  background-color: #0275D9;
  color: white;
  padding-block: 7px;
}
.header_title {
  font-size: clamp(15px, 4vw, 20px);
  font-weight: bold;
  text-align: center;
}

.FV {
  position: relative;
}
.FV_image {
  width: 100%;
}
.FV_btn {
  position: absolute;
  bottom: 19px;
  right: 11px;
  width: 213px;
  width: clamp(213px, 56.8vw, 350px);
}

.BlockTexts {
  background-color: var(--color-orange);
  color: white;
  text-align: center;
  padding-top: clamp(20px, 4vw, 30px);
  position: relative;
  line-height: 1.2;
}
.BlockTexts::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  height: 39px;
  width: 110%;
  max-width: initial;
  bottom: 0;
  background-color: var(--color-orange);
  -webkit-clip-path: polygon(0 7px, 100% 7px, 50% 100%);
          clip-path: polygon(0 7px, 100% 7px, 50% 100%);
  transform: translate(-50%, calc(100% - 8px));
  z-index: 1;
}
.BlockTexts_text1 {
  font-size: clamp(14px, 3.7333333333vw, 20px);
  letter-spacing: 0.02em;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 8px;
}
.BlockTexts_text1::before, .BlockTexts_text1::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  background-color: white;
}
.BlockTexts_text1::before {
  left: 0;
  transform: rotate(-23deg);
}
.BlockTexts_text1::after {
  right: 0;
  transform: rotate(23deg);
}
.BlockTexts_text2 {
  font-size: clamp(24px, 6.4vw, 30px);
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-top: clamp(1px, 0.2666666667vw, 3px);
}
.BlockTexts_text2_span {
  font-weight: 500;
  font-size: clamp(22px, 5.8666666667vw, 28px);
}

.manga {
  position: relative;
}
.manga::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  transform: translate(0, 98%);
  height: 39px;
  width: 100%;
  background-color: #D9EBFF;
  -webkit-clip-path: polygon(0 0px, 100% 0px, 50% 100%);
          clip-path: polygon(0 0px, 100% 0px, 50% 100%);
}

.introduction {
  padding-top: 76px;
  background-image: url("../../img/job_service/introduction_back.jpg");
  background-size: cover;
  padding-bottom: clamp(100px, 26.6666666667vw, 150px);
}
.introduction_title {
  color: #0375D9;
  margin-bottom: 21px;
}
.introduction_title_div {
  font-size: clamp(18px, 6.1333333333vw, 32px);
  display: block;
  font-weight: bold;
  background-color: white;
  padding: clamp(8px, 2.1333333333vw, 10px) clamp(7px, 1.8666666667vw, 15px);
  line-height: 1.5;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.introduction_title_div:not(:last-of-type) {
  margin-bottom: 12px;
}
.introduction_title_span {
  font-size: 18px;
  font-weight: bold;
}
.introduction_ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 16px;
}
.introduction_li {
  width: calc(50% - 8px);
  background-color: white;
}
.introduction_li_texts {
  padding: clamp(4px, 1.0666666667vw, 8px) clamp(8px, 2.1333333333vw, 16px) clamp(10px, 2.6666666667vw, 20px);
}
.introduction_li_title {
  font-size: clamp(14px, 3.7333333333vw, 18px);
  text-decoration: underline;
  margin-bottom: 6px;
  line-height: 1.6666666667;
  letter-spacing: 0.4px;
}
.introduction_li_li {
  font-size: clamp(12px, 3.2vw, 14px);
  display: flex;
  align-items: center;
  line-height: 1.5714285714;
}
.introduction_li_li::before {
  content: "";
  display: inline-block;
  width: clamp(8px, 2.1333333333vw, 12px);
  height: clamp(8px, 2.1333333333vw, 12px);
  background-color: #90CBFF;
  border-radius: 99px;
  margin-right: clamp(4px, 1.0666666667vw, 6px);
  flex-shrink: 0;
}

.form {
  margin-top: 0;
  width: 100%;
  position: relative;
  z-index: 1;
  background-color: white;
  border-radius: 5px;
}
.formWrap2 {
  position: relative;
  padding-top: 5px;
  padding-bottom: 42px;
}
.formWrap2_back {
  position: absolute;
  inset: 0;
  top: clamp(-100px, -40px - 4vw, -67px);
  height: calc(100% + clamp(85px, 22.6666666667vw, 120px));
  max-height: initial;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  -webkit-clip-path: polygon(0 8%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 8%, 100% 0%, 100% 100%, 0% 100%);
}
@media screen and (min-width: 401px) {
  .formWrap2_back {
    top: clamp(-100px, -50px - 8vw, -67px);
  }
}
.formWrap2_head {
  position: relative;
  z-index: 1;
  display: flex;
}
.formWrap2_head_title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  text-align: center;
  font-size: clamp(18px, 5.6vw, 34px);
  font-weight: bold;
  letter-spacing: 0.19em;
  color: #0174D9;
  margin-bottom: 15px;
}
.formWrap2_head_title span {
  display: block;
  font-size: clamp(12px, 3.2vw, 20px);
  letter-spacing: 0.03em;
  font-weight: bold;
}
.formWrap2_head_title .BlockTexts_text1 {
  background: linear-gradient(to bottom, #0375D9, #90CBFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.formWrap2_head_title .BlockTexts_text1::before, .formWrap2_head_title .BlockTexts_text1::after {
  background-color: transparent;
  background: linear-gradient(to bottom, #0375D9, #90CBFF);
  top: initial;
  bottom: 1px;
  height: 80%;
}
.formWrap2_head_title .BlockTexts_text1::before {
  transform: rotate(-40deg);
  left: -3px;
}
.formWrap2_head_title .BlockTexts_text1::after {
  transform: rotate(40deg);
  right: 3px;
}
.formWrap2_inner {
  position: relative;
}
.form_image {
  width: clamp(106px, 28.2666666667vw, 170px);
  position: absolute;
  top: 19px;
  left: -29px;
  transform: translate(0, -100%);
  z-index: 1;
}

.worries {
  background-color: #ECF5FF;
  padding-bottom: 11px;
}
.worries_title {
  background-color: #AF8859;
  color: white;
  font-size: clamp(20px, 5.3333333333vw, 30px);
  letter-spacing: 0.05em;
  text-align: center;
  padding-block: 13px;
  line-height: 1.2;
  position: relative;
}
.worries_title::after {
  content: "";
  position: absolute;
  background-color: #AF8859;
  display: block;
  bottom: 0;
  left: 50%;
  width: 25px;
  height: 25px;
  -webkit-clip-path: polygon(0 0px, 100% 0px, 50% 100%);
          clip-path: polygon(0 0px, 100% 0px, 50% 100%);
  transform: translate(-50%, 98%);
}
.worries_images {
  position: relative;
  margin-bottom: 18px;
}
.worries_images_block01, .worries_images_block02, .worries_images_block03, .worries_images_block04 {
  position: absolute;
  width: 136px;
  width: clamp(136px, 36.2666666667vw, 250px);
  aspect-ratio: 1/1;
}
.worries_images_block01 {
  top: 17px;
  left: clamp(10px, 11.4666666667vw, 50px);
}
@media screen and (max-width: 350px) {
  .worries_images_block01 {
    left: 7px;
  }
}
.worries_images_block02 {
  top: 17px;
  right: clamp(10px, 11.4666666667vw, 43px);
}
@media screen and (max-width: 350px) {
  .worries_images_block02 {
    right: 7px;
  }
}
.worries_images_block03 {
  bottom: 98px;
  left: 7px;
}
@media screen and (max-width: 350px) {
  .worries_images_block03 {
    bottom: 140px;
  }
}
.worries_images_block04 {
  bottom: 98px;
  right: 7px;
}
@media screen and (max-width: 350px) {
  .worries_images_block04 {
    bottom: 140px;
  }
}
.worries_images_text {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: clamp(15px, 4vw, 24px);
  font-weight: bold;
  letter-spacing: 0.02em;
}
.worries_images_person {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translate(-56%, 0);
  width: clamp(120px, 51.4666666667vw, 280px);
}
.worries_images_back {
  min-height: 400px;
  width: 100%;
}
@media screen and (max-width: 350px) {
  .worries_images_back {
    height: 450px;
  }
}
.worries_texts {
  position: relative;
}
.worries_text1 {
  position: absolute;
  width: clamp(86px, 22.9333333333vw, 120px);
  aspect-ratio: 1/1;
  background-color: var(--color-orange);
  font-size: clamp(14px, 3.7333333333vw, 20px);
  font-weight: bold;
  line-height: 1.2142857143;
  border-radius: 99px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translate(0, -60px);
  top: 0;
  left: 4px;
}
@media screen and (min-width: 430px) {
  .worries_text1 {
    top: -15px;
    left: 15px;
  }
}
@media screen and (min-width: 480px) {
  .worries_text1 {
    top: -30px;
    left: 20px;
  }
}
@media screen and (min-width: 550px) {
  .worries_text1 {
    left: 40px;
  }
}
.worries_text1::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -7px;
  right: 27px;
  height: 18px;
  width: 2px;
  background-color: var(--color-orange);
  transform: rotate(-26deg);
}
.worries_text2, .worries_text3 {
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.03em;
}
.worries_text2 {
  font-size: clamp(19px, 5.0666666667vw, 24px);
}
.worries_text3 {
  font-size: clamp(21px, 5.6vw, 28px);
}

.support {
  background-image: url("../../img/job_service/support_back.jpg");
  background-size: cover;
  padding-bottom: clamp(47px, 12.5333333333vw, 65px);
  position: relative;
}
.support_title {
  background-color: var(--color-orange);
  color: white;
  text-align: center;
  font-size: clamp(17px, 4.5333333333vw, 24px);
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
}
.support_title_span {
  font-size: 15px;
}
.support_body {
  display: flex;
  justify-content: flex-end;
  position: relative;
  padding-block: clamp(8px, 2.1333333333vw, 20px) 53px;
}
.support_image {
  position: absolute;
  display: block;
  width: clamp(320px, 98.6666666667vw, 500px);
  -o-object-fit: cover;
     object-fit: cover;
  left: calc(clamp(70px, 26.4vw, 130px) * -1);
  bottom: calc(clamp(200px, 82.6666666667vw, 450px) * -1);
  -o-object-position: top;
     object-position: top;
  max-height: initial;
}
@media screen and (max-width: 350px) {
  .support_image {
    bottom: calc(clamp(200px, 72.8571428571vw, 500px) * -1);
  }
}
@media screen and (min-width: 430px) {
  .support_image {
    bottom: calc(clamp(200px, 95vw, 500px) * -1);
  }
}
@media screen and (min-width: 540px) {
  .support_image {
    bottom: calc(clamp(200px, 82.6666666667vw, 450px) * -1);
  }
}
.support_ul {
  position: relative;
  z-index: 1;
  margin-right: clamp(7px, 1.8666666667vw, 30px);
}
.support_li:not(:last-of-type) {
  margin-bottom: 10px;
}
.support_li_point {
  width: clamp(64px, 17.0666666667vw, 100px);
  margin-bottom: 5px;
  margin-left: 2px;
}
.support_li_texts {
  width: clamp(188px, 50.1333333333vw, 260px);
  border: solid 1px #C6C6C6;
  position: relative;
}
.support_li_texts::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  top: -3px;
  left: -3px;
  background-color: white;
  z-index: -1;
}
.support_li_text {
  text-align: center;
  padding: clamp(17px, 4.5333333333vw, 25px) clamp(13px, 3.4666666667vw, 20px);
  font-size: clamp(14px, 3.7333333333vw, 20px);
  letter-spacing: 0.02em;
}
.support_li_text_span {
  color: var(--color-orange);
  font-weight: 500;
}
.support_li_text_span.-font-size20 {
  font-size: clamp(20px, 5.3333333333vw, 26px);
  line-height: 1.1;
}
.support_li_text_span.-font-size19 {
  font-size: clamp(19px, 5.0666666667vw, 25px);
  line-height: 1.1578947368;
}
.support_li_text_span.-font-size18 {
  font-size: clamp(18px, 4.8vw, 24px);
  line-height: 1.2222222222;
}
.support_li_text_span.-font-size17 {
  font-size: clamp(17px, 4.5333333333vw, 23px);
  line-height: 1.2941176471;
}
.support_li_text_span.-font-size16 {
  font-size: clamp(16px, 4.2666666667vw, 22px);
  line-height: 1.375;
}

.side {
  position: fixed;
  left: 3.7698412698vw;
  top: 80px;
  width: 401px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 2px 2px 10px 3px rgba(51, 51, 51, 0.2);
  padding: 30px;
}
@media screen and (max-width: 1600px) {
  .side {
    left: clamp(100px, 8.3333333333vw, 200px);
  }
}
@media screen and (max-width: 1200px) {
  .side {
    left: clamp(50px, 8.3333333333vw, 100px);
  }
}
@media screen and (max-width: 1100px) {
  .side {
    display: none;
  }
}
.side_head {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}
.side_text1 {
  background-color: #0375D9;
  color: white;
  border-radius: 5px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 22px;
}
.side_text2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 2.15;
  margin-bottom: 21px;
}
.side_text2_link {
  text-decoration: none;
  display: block;
  color: #333;
}
.side_btn_image {
  display: block;
  width: 214px;
  margin-inline: auto;
}

.form {
  padding: 23px clamp(10px, 5.0666666667vw, 19px) 16px;
}
@media screen and (max-width: 350px) {
  .form {
    padding-inline: 15px;
  }
}

.form_input:not(:last-of-type) {
  margin-bottom: 26px;
}

.form_input_title {
  font-size: clamp(10px, 3.2vw, 16px);
  font-weight: bold;
  margin-left: 4px;
}
.form_input_title::before {
  content: "";
  background-image: url("../../img/job_service/icon_charactor.png");
  background-size: contain;
  display: block;
  width: 25px;
  height: 25px;
  margin-right: 6px;
}

.form_input_required {
  font-size: clamp(10px, 2.9333333333vw, 14px);
  padding: 3px clamp(5px, 2.9333333333vw, 11px);
  margin-left: 5px;
}

select {
  font-size: 13px;
  font-weight: bold;
}

.wpcf7-not-valid-tip {
  font-size: 13px !important;
}

.form :is(select, input[type=text], input[type=tel], input[type=email]) {
  height: 44px;
  padding: 10px;
  font-weight: bold;
  font-size: clamp(14px, 3.7333333333vw, 18px);
}

.wpcf7-radio,
.wpcf7-checkbox {
  row-gap: clamp(3px, 1.3333333333vw, 5px);
}

.wpcf7-list-item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.wpcf7-list-item .wpcf7-list-item-label {
  padding-inline: clamp(10px, 2.9333333333vw, 11px);
}

.wpcf7-list-item.first .wpcf7-list-item-label {
  padding-inline: clamp(10px, 5.8666666667vw, 22px);
}

.wpcf7-list-item-label {
  font-size: clamp(10px, 2.9333333333vw, 18px);
  padding-block: 9px 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/* Contact Form 7 送信ボタンを画像化 */
.wpcf7 .btn-img {
  background: url("../../img/job_service/btn_image.png") no-repeat center/contain;
  width: clamp(187px, 49.8666666667vw, 250px);
  height: clamp(70px, 18.6666666667vw, 100px);
  border: none;
  color: transparent;
  /* テキストは残して不可視化 */
  text-indent: -9999px;
  /* スクリーンリーダー対策 */
  cursor: pointer;
}

.wpcf7 .btn-img:hover {
  opacity: 0.8;
}

.wpcf7-submit {
  background-color: transparent !important;
  border: none !important;
  margin-inline: auto;
}

.form_submit {
  margin-top: 37px;
}

.wpcf7-form-control-wrap:has(select)::after {
  display: none;
}

.footer_bottom {
  margin-bottom: 20px;
}

.footer_upper {
  padding-inline: clamp(10px, 4.8vw, 18px);
}

.footer_upper span {
  margin-top: 8px;
  margin-left: 0;
}

.footer_middle {
  padding-inline: clamp(10px, 4.8vw, 18px);
  padding-block: 19px;
}

.form_recaptcha {
  position: absolute;
  z-index: 1;
  font-size: clamp(8px, 2.6666666667vw, 10px);
  text-align: right;
  color: #aaa;
  bottom: 0;
  right: clamp(10px, 6.1333333333vw, 23px);
}
.form_recaptcha a {
  text-decoration: none;
  color: rgb(83, 83, 201);
}

.grecaptcha-badge {
  z-index: 100;
  visibility: hidden;
}

/* 個別部ここまで
---------- ---------- */