@charset "UTF-8";
.contact_section {
  background-image: url(../img/contact_bg_img.png);
}

.contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.form-wrapper {
  background-color: #fff;
  border-radius: 24px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 990px;
  padding: 100px 120px;
  margin-block: 100px;
}

.form-wrapper h3 {
  text-align: center;
  font-size: 35px;
  margin-bottom: 50px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.form-wrapper .lead {
  text-align: center;
  font-size: 18px;
  margin-bottom: 50px;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.form-item {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.form-item_last {
  margin-bottom: 50px;
}

.form-item label {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 15px;
  letter-spacing: 0.04em;
}

.form-item .req {
  color: #FF0000;
  margin-left: 4px;
}

input,
select,
textarea,
option {
  padding: 12px 12px;
  border: 1px solid #838F9B;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: rgb(0, 0, 0);
  background-color: #fafafa;
  outline: none;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

.form-item select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fafafa url("../img/contact_arrow.png") no-repeat right 12px center/28px auto;
  border: 1px solid #838F9B;
  border-radius: 8px;
  padding: 12px 12px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.04em;
}

::-webkit-input-placeholder {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #838F9B;
}

::-moz-placeholder {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #838F9B;
}

:-ms-input-placeholder {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #838F9B;
}

::-ms-input-placeholder {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #838F9B;
}

::placeholder {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #838F9B;
}

textarea {
  resize: none;
  width: 100%;
  height: 300px;
}

.privacy-box {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  background-color: #fff;
  margin-top: 10px;
  height: 252px;
}

.privacy-content {
  height: 220px;
  overflow-y: scroll;
  padding-right: 10px;
}

/* スクロールバーのデザイン（任意） */
.privacy-content::-webkit-scrollbar {
  width: 7px;
}

.privacy-content::-webkit-scrollbar-thumb {
  background: #c7c7c7;
  border-radius: 17px;
}

.privacy-content::-webkit-scrollbar-track {
  background: #f5f5f5;
}

.privacy-title {
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  font-weight: bold;
  margin-bottom: 20px;
}

.article_title {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.04em;
}

.intro,
.article_content {
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  font-weight: 400;
  line-height: 1.6;
}

.intro,
.article {
  margin-bottom: 20px;
}

.agree {
  text-align: center;
  margin-bottom: 24px;
  margin-top: 50px;
}
.agree .agree_caution {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
.agree .agree_caution br {
  display: none;
}
.agree label {
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.04em;
}

/* ブラウザデフォルトのチェックボックスを消す */
.agree label input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 25px;
  /* サイズ */
  height: 25px;
  border: 1px solid #838F9B;
  /* 枠だけ表示 */
  border-radius: 4px;
  position: relative;
  vertical-align: middle;
  margin-right: 8px;
  cursor: pointer;
}

/* チェックマークだけ表示 */
.agree label input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 4px;
  width: 6px;
  height: 12px;
  border: solid #0A6DFF;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.form-submit {
  text-align: center;
}

.form-submit button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  width: 100%;
  max-width: 326px;
  background-color: var(--btn-blue);
  color: #fff;
  border: none;
  border-radius: 38px;
  padding: 12px 30px;
  font-size: 19px;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.form-submit button:hover {
  background-color: #6FC0E9;
}

.form-submit button::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../img/btn_arrow_right.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 768px) {
  .form-wrapper {
    background-color: #fff;
    border-radius: unset;
    -webkit-box-shadow: unset;
            box-shadow: unset;
    width: 100%;
    max-width: unset;
    padding: 60px 5.3%;
    margin-block: unset;
  }
  .form-wrapper h3 {
    font-size: clamp(1.25rem, 0.355rem + 3.82vw, 2.188rem);
    margin-bottom: 30px;
    letter-spacing: 0.03em;
  }
  .form-item {
    margin-bottom: 32px;
  }
  .form-wrapper .lead {
    font-size: clamp(0.875rem, 0.636rem + 1.02vw, 1.125rem);
    letter-spacing: 0.02em;
    line-height: 1.8;
    text-align: left;
  }
  .form-item label {
    font-size: clamp(0.875rem, 0.756rem + 0.51vw, 1rem);
    margin-bottom: 7px;
    letter-spacing: 0.02em;
  }
  .form-item select {
    border-radius: 8px;
    padding: 12px 12px;
    font-size: clamp(0.875rem, 0.756rem + 0.51vw, 1rem);
    letter-spacing: 0.02em;
    background: #fafafa url("../img/contact_arrow.png") no-repeat right 12px center/23px auto;
    border: 1px solid #838F9B;
  }
  ::-webkit-input-placeholder {
    font-size: clamp(0.875rem, 0.756rem + 0.51vw, 1rem);
    letter-spacing: 0.02em;
  }
  ::-moz-placeholder {
    font-size: clamp(0.875rem, 0.756rem + 0.51vw, 1rem);
    letter-spacing: 0.02em;
  }
  :-ms-input-placeholder {
    font-size: clamp(0.875rem, 0.756rem + 0.51vw, 1rem);
    letter-spacing: 0.02em;
  }
  ::-ms-input-placeholder {
    font-size: clamp(0.875rem, 0.756rem + 0.51vw, 1rem);
    letter-spacing: 0.02em;
  }
  ::placeholder {
    font-size: clamp(0.875rem, 0.756rem + 0.51vw, 1rem);
    letter-spacing: 0.02em;
  }
  .privacy-box {
    padding: 30px clamp(0.875rem, 0.756rem + 0.51vw, 1rem) 0px;
    background-color: #fff;
    margin-top: 10px;
    height: 300px;
  }
  .privacy-content {
    height: 260px;
  }
  .privacy-title {
    font-size: clamp(1rem, 0.761rem + 1.02vw, 1.25rem);
    letter-spacing: 0.02em;
    margin-bottom: 10px;
  }
  .article_title {
    font-size: clamp(0.875rem, 0.756rem + 0.51vw, 1rem);
    letter-spacing: 0.02em;
  }
  .intro,
  .article_content {
    font-size: clamp(0.75rem, 0.631rem + 0.51vw, 0.875rem);
    letter-spacing: 0.02em;
    line-height: 1.7;
  }
  .intro,
  .article {
    margin-bottom: 10px;
  }
  .agree {
    margin-bottom: 30px;
    margin-top: clamp(0.625rem, -1.76rem + 10.18vw, 3.125rem);
  }
  .agree .agree_caution {
    font-size: clamp(0.75rem, 0.631rem + 0.51vw, 0.875rem);
    letter-spacing: 0.02em;
    margin-bottom: clamp(0.625rem, 0.029rem + 2.54vw, 1.25rem);
  }
  .agree label {
    font-size: clamp(0.875rem, 0.636rem + 1.02vw, 1.125rem);
    letter-spacing: 0.02em;
  }
  .agree label input[type=checkbox] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 21px !important;
    height: 21px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    -webkit-box-sizing: border-box !important;
            box-sizing: border-box !important;
    display: inline-block !important;
    border: 1px solid #838F9B !important;
    margin-right: 12px;
  }
  .agree label input[type=checkbox]:checked::after {
    left: 8px;
    top: 3px;
  }
  .form-submit button {
    gap: clamp(1rem, 0.165rem + 3.56vw, 1.875rem);
    padding: 12px 27px;
    font-size: clamp(0.938rem, 0.699rem + 1.02vw, 1.188rem);
    max-width: 280px;
  }
  .form-submit button::after {
    width: clamp(1.563rem, 1.264rem + 1.27vw, 1.875rem);
    height: clamp(1.563rem, 1.264rem + 1.27vw, 1.875rem);
  }
}
@media screen and (max-width: 480px) {
  .form-wrapper .lead br {
    display: none;
  }
  .agree .agree_caution br {
    display: block;
  }
}
input.error, select.error, textarea.error {
  border: 2px solid #e74c3c;
  background: #fff5f5;
}

.error-msg {
  color: #e74c3c;
  font-size: 0.9em;
  margin-top: 0.3rem;
}

#thanks {
  text-align: center;
  padding-block: 100px;
}
#thanks .thanks_msg {
  font-size: clamp(1.25rem, 0.92rem + 1.41vw, 2.188rem);
  font-weight: bold;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}
#thanks .thanks_msg .thanks_br {
  display: none;
}
#thanks .thanks_img {
  width: clamp(20.938rem, 15.595rem + 22.8vw, 36.125rem);
  margin-bottom: 40px;
}
#thanks .thanks_text1,
#thanks .thanks_text2 {
  font-size: clamp(0.875rem, 0.787rem + 0.38vw, 1.125rem);
  margin-bottom: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
#thanks .mail {
  font-size: clamp(1rem, 0.912rem + 0.38vw, 1.25rem);
  font-weight: bold;
  margin-bottom: 50px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #444444;
  display: inline-block;
}
#thanks .btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#thanks .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--btn-blue);
  padding-block: clamp(0.844rem, 0.822rem + 0.09vw, 0.906rem);
  padding-right: clamp(2.344rem, 2.223rem + 0.52vw, 2.688rem);
  padding-left: 34px;
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: clamp(0.938rem, 0.85rem + 0.38vw, 1.188rem);
  border-radius: 38px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  gap: clamp(1rem, 0.692rem + 1.31vw, 1.875rem);
}
#thanks .btn::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../img/btn_arrow_left.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#thanks .btn::after {
  display: none;
}
#thanks .btn:hover {
  background-color: #6FC0E9;
}

@media screen and (max-width: 768px) {
  #thanks .thanks_msg {
    line-height: 2.3rem;
  }
}
@media screen and (max-width: 600px) {
  #thanks {
    padding-inline: 5.33%;
    padding-block: 60px;
  }
  #thanks .thanks_msg .thanks_br {
    display: block;
  }
  #thanks .thanks_text1,
  #thanks .thanks_text2 {
    text-align: left;
    line-height: 1.8;
    letter-spacing: 0.02em;
  }
}
@media screen and (max-width: 375px) {
  #thanks .thanks_img {
    width: 280px;
  }
}
.about_section {
  background-image: url(../img/about_top_bg.png);
}

#vision {
  padding-right: 93px;
  max-width: 1440px;
  margin: 0 auto;
  padding-block: 100px;
  padding-inline: 192px;
  position: relative;
}
#vision .vision_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#vision .vision_text_container {
  margin-top: 50px;
}
#vision .vision_text_container .vision_top_text {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-bottom: 30px;
}
#vision .vision_text_container .vision_text1,
#vision .vision_text_container .vision_text2 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.7;
}
#vision .vision_text_container .vision_text1 {
  margin-bottom: 30px;
}
#vision .vision_flex_left {
  width: 43%;
}
#vision .strength {
  width: 495px;
}
#vision .vision_bg1 {
  position: absolute;
  width: 4.927vw;
  top: 1px;
  left: 1px;
}
#vision .vision_bg2 {
  position: absolute;
  width: 8.674vw;
  bottom: -16px;
  left: 247px;
}

@media screen and (max-width: 1245px) {
  #vision .vision_bg1 {
    position: absolute;
    width: 4.927vw;
    top: 1px;
    left: 1px;
  }
  #vision .vision_bg2 {
    position: absolute;
    width: 8.674vw;
    bottom: -16px;
    left: 247px;
  }
}
@media screen and (max-width: 768px) {
  #vision .vision_bg1 {
    position: absolute;
    width: 12.927vw;
    top: 9px;
    left: -11px;
  }
  #vision .vision_bg2 {
    position: absolute;
    width: 13.674vw;
    bottom: unset;
    left: unset;
    top: 87px;
    right: -9px;
  }
}
#vison_service {
  text-align: center;
  max-width: 1440px;
  margin: 0 auto;
  padding-block: 100px;
  padding-inline: 197px;
  position: relative;
}
#vison_service .service_bg1 {
  position: absolute;
  width: 20.124vw;
  top: 1px;
  right: -85px;
}
#vison_service .service_detail_container {
  margin-top: 97px;
}
#vison_service .service_detail_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 75px;
}
#vison_service .service_detail_flex3 {
  margin-bottom: 0;
}
#vison_service .flex_reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#vison_service .about_service {
  width: 392px;
}
#vison_service .service_detail_left {
  position: relative;
}
#vison_service .number {
  position: absolute;
  width: 77px;
  top: -32px;
  right: -31px;
  z-index: 900;
}
#vison_service .number01 {
  width: 67px;
  top: -23px;
  right: -28px;
}
#vison_service .about_service_icon {
  position: absolute;
  width: 187px;
  bottom: -41px;
  left: -91px;
  z-index: 900;
}
#vison_service .service_detail_right {
  text-align: left;
  width: 49%;
}
#vison_service .service_detail_title {
  font-size: 35px;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-bottom: 30px;
}
#vison_service .service_detail_text {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

@media screen and (max-width: 1245px) {
  #vision {
    padding-inline: 13%;
  }
  #vision .h2_container {
    text-align: center;
  }
  #vision .vision_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #vision .vision_flex_left {
    width: 100%;
  }
  #vision .vision_text_container {
    width: 80%;
    margin: 50px auto 0;
  }
  #vison_service {
    padding-inline: 13%;
  }
  #vison_service .service_detail_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #vison_service .service_detail_title {
    text-align: center;
    margin-top: 40px;
  }
  #vison_service .service_detail_right {
    width: 100%;
  }
  #vison_service .service_detail_text {
    width: 80%;
    margin: 0 auto;
  }
  #vison_service .number01 {
    left: 363px;
  }
  #vison_service .number {
    top: -20px;
    left: 363px;
  }
  #vison_service .service_detail_left {
    margin: 0 auto;
    width: 392px;
  }
}
@media screen and (max-width: 768px) {
  #vision {
    padding-inline: 5.33%;
    padding-block: 60px;
  }
  #vision .vision_flex_left {
    margin-bottom: 40px;
  }
  #vision .vision_text_container {
    width: 100%;
    margin: clamp(1.875rem, 0.682rem + 5.09vw, 3.125rem) auto 0;
  }
  #vision .vision_text_container .vision_text1,
  #vision .vision_text_container .vision_text2 {
    font-size: clamp(0.875rem, 0.636rem + 1.02vw, 1.125rem);
    letter-spacing: 0.02em;
    line-height: 1.8;
  }
  #vision .vision_text_container .vision_text1 {
    margin-bottom: clamp(0.813rem, -0.201rem + 4.33vw, 1.875rem);
  }
  #vision .vision_text_container .vision_top_text {
    font-size: clamp(1rem, 0.761rem + 1.02vw, 1.25rem);
    letter-spacing: 0.02em;
    margin-bottom: clamp(0.813rem, -0.201rem + 4.33vw, 1.875rem);
  }
  #vision .strength {
    width: clamp(20.938rem, 11.396rem + 40.71vw, 30.938rem);
  }
  #vison_service {
    padding-inline: 5.33%;
    padding-block: 60px;
  }
  #vison_service .service_bg1 {
    width: 30vw;
    top: 1px;
    right: -41px;
  }
  #vison_service .service_detail_container {
    margin-top: 50px;
  }
  #vison_service .service_detail_left {
    width: clamp(16.875rem, 9.599rem + 31.04vw, 24.5rem);
  }
  #vison_service .about_service {
    width: clamp(16.875rem, 9.599rem + 31.04vw, 24.5rem);
  }
  #vison_service .number {
    width: clamp(3.625rem, 2.492rem + 4.83vw, 4.813rem);
    left: clamp(14.375rem, 6.443rem + 33.84vw, 22.688rem);
  }
  #vison_service .number01 {
    width: clamp(3rem, 1.867rem + 4.83vw, 4.188rem);
  }
  #vison_service .about_service_icon {
    width: clamp(6.188rem, 0.939rem + 22.39vw, 11.688rem);
    left: unset;
    right: clamp(13.563rem, 9.149rem + 18.83vw, 18.188rem);
  }
  #vison_service .service_detail_title {
    font-size: clamp(1.25rem, 0.355rem + 3.82vw, 2.188rem);
    letter-spacing: 0.03em;
  }
  #vison_service .service_detail_text {
    font-size: clamp(0.875rem, 0.636rem + 1.02vw, 1.125rem);
    line-height: 1.8;
    letter-spacing: 0.02em;
  }
}
#works {
  background-color: #E6F3F8;
  padding-top: 100px;
  padding-bottom: 160px;
  /* 左矢印：中央カードの左余白あたり */
  /* 右矢印：中央カードの右余白あたり */
  /* タブレット・スマホ: 左右端に配置 */
}
#works h2 {
  text-align: center;
  margin-bottom: 50px;
}
#works .work-content {
  background-color: #ffffff;
  border-radius: 0 0 30px 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#works .work-label {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.08em;
  border-radius: 0 16px 0 0;
  color: #ffffff;
  padding: 7px 16px 7px 8px;
  width: 180px;
  margin-top: -40px;
  z-index: 400;
  position: relative;
}
#works .orange {
  background-color: #F08300;
}
#works .blues {
  background-color: #009CDA;
}
#works .purple {
  background-color: #7785E2;
}
#works .work_container {
  padding: 30px 26px 23px;
}
#works .work-company {
  font-size: 1rem;
  letter-spacing: 0.04em;
  margin-bottom: 15px;
}
#works .work-title {
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 0.04em;
  border-bottom: 5px solid #CFF1FF;
  display: inline;
}
#works .work-text {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-top: 22px;
}
#works .test__container {
  padding-top: 30px;
  padding-bottom: 30px;
}
#works .test-slick {
  width: 100%;
}
#works .test-slick__item {
  background-color: #ffffff;
  border-radius: 36px;
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
#works .test-slick .slick-list {
  overflow: visible;
}
#works .test-slick__item .img img {
  height: auto;
  width: 100%;
}
#works .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#works .slick-slide {
  height: auto !important;
}
#works .test-slick .slick-slide {
  margin: 0 36px;
}
#works .test-slick .slick-list {
  margin: 0 -36px;
  /* 画面の左右余白を打ち消す */
}
#works .slick-prev,
#works .slick-next {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 200;
}
#works .slick-prev {
  left: calc(33.333% - 40px);
}
#works .slick-next {
  right: calc(33.333% - 40px);
}
#works .slick-prev,
#works .slick-next {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}
#works .slick-prev:before,
#works .slick-next:before {
  content: none !important;
}
#works .slick-dots {
  bottom: -70px;
}
#works .slick-dots li button:before {
  font-size: 14px;
  color: #D9D9D9;
  opacity: 1;
}
#works .slick-dots li.slick-active button:before {
  color: #009CDA;
}
@media screen and (max-width: 1024px) {
  #works .slick-prev {
    left: 0;
  }
  #works .slick-next {
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  #works {
    padding-top: 60px;
    padding-bottom: 100px;
    /* スライダー全体の左右余白 */
    /* スライド間のマージン */
    /* 矢印を左右端に配置 */
  }
  #works .test-slick .slick-list {
    margin: 0 -12px;
    /* 余白を少なくして端から少し内側に */
  }
  #works .test-slick .slick-slide {
    margin: 0 clamp(2.188rem, 0.518rem + 7.12vw, 3.938rem);
  }
  #works .slick-prev {
    left: 0;
  }
  #works .slick-next {
    right: 0;
  }
  #works .slick-next,
  #works .slick-prev {
    width: clamp(2.438rem, 1.185rem + 5.34vw, 3.75rem);
    height: clamp(2.438rem, 1.185rem + 5.34vw, 3.75rem);
  }
  #works .slick-dots li button:before {
    font-size: 8px;
  }
}

#about_contact {
  padding-inline: 120px;
  background-image: url(../img/recruit_contact_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  padding-bottom: 100px;
  padding-top: 100px;
}
#about_contact .about_for_company {
  text-align: center;
}
#about_contact .about_target_container {
  background-color: #ffffff;
  border-radius: 50px;
  max-width: 872px;
  margin: 0 auto 40px;
  padding-block: 60px;
  position: relative;
  padding-inline: 2%;
}
#about_contact .about_target_container .about_target_title {
  font-weight: bold;
  font-size: clamp(1.625rem, 0.983rem + 1.34vw, 2.188rem);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
#about_contact .about_target_container .about_target_title br {
  display: none;
}
#about_contact .about_target_container p {
  font-size: clamp(0.875rem, 0.59rem + 0.59vw, 1.125rem);
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0 auto 30px;
}
#about_contact .about_contact_img1 {
  position: absolute;
  width: 170px;
  bottom: 225px;
  right: -56px;
}
#about_contact .about_contact_img2 {
  position: absolute;
  width: 165px;
  bottom: -17px;
  left: -47px;
}
#about_contact .about_target_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--btn-blue);
  padding-block: clamp(0.844rem, 0.822rem + 0.09vw, 0.906rem);
  padding-right: clamp(1rem, -0.284rem + 2.67vw, 2.125rem);
  padding-left: clamp(1rem, -0.426rem + 2.97vw, 2.25rem);
  color: #ffffff;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: clamp(0.875rem, 0.518rem + 0.74vw, 1.188rem);
  border-radius: 38px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  line-height: 1;
}
#about_contact .about_target_btn:hover {
  background-color: #6FC0E9;
}
#about_contact .about_target_btn::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../img/btn_arrow_right.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: clamp(0.5rem, -1.073rem + 3.27vw, 1.875rem);
}

@media screen and (max-width: 768px) {
  #about_contact {
    padding-bottom: 60px;
    padding-top: 60px;
    padding-inline: 5.33%;
  }
  #about_contact .about_target_container .about_target_title {
    font-size: clamp(1.25rem, 0.833rem + 1.78vw, 1.688rem);
  }
  #about_contact .about_target_container .about_target_title br {
    display: block;
  }
  #about_contact .about_target_btn {
    padding-right: 27px;
    padding-left: 31px;
  }
  #about_contact .about_contact_img1 {
    width: clamp(5.625rem, 0.854rem + 20.36vw, 10.625rem);
    bottom: 237px;
    right: unset;
    left: clamp(16.875rem, -0.778rem + 75.32vw, 35.375rem);
  }
  #about_contact .about_contact_img2 {
    width: clamp(5.875rem, 1.641rem + 18.07vw, 10.313rem);
    bottom: -17px;
    left: -47px;
  }
}
#company {
  padding-top: 80px;
  padding-inline: clamp(2rem, -4.276rem + 13.08vw, 7.5rem);
  padding-bottom: 100px;
}
#company .h2_container {
  padding-top: 100px;
  padding-bottom: 50px;
  text-align: center;
}
#company .company_btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 48px;
}
#company .company_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--btn-blue);
  padding-block: clamp(0.844rem, 0.822rem + 0.09vw, 0.906rem);
  padding-right: clamp(2.344rem, 2.223rem + 0.52vw, 2.688rem);
  padding-left: 34px;
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: clamp(0.938rem, 0.85rem + 0.38vw, 1.188rem);
  border-radius: 38px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  gap: clamp(1rem, 0.692rem + 1.31vw, 1.875rem);
}
#company .company_btn::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../img/btn_arrow_left.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#company .company_btn::after {
  display: none;
}
#company .company_btn:hover {
  background-color: #6FC0E9;
}

.company-info {
  max-width: 990px;
  margin: 0 auto;
}

.company-info dl {
  margin: 0;
}

.company-info .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 10px 0;
}

.company-info dt {
  padding-left: clamp(0.313rem, -0.017rem + 1.41vw, 1.25rem);
  padding-bottom: 20px;
  font-size: clamp(0.875rem, 0.787rem + 0.38vw, 1.125rem);
  font-weight: bold;
  width: clamp(6.813rem, 2.613rem + 17.92vw, 18.75rem);
  border: none;
  border-bottom: 3px solid transparent;
  background-image: -webkit-gradient(linear, left top, right top, from(#36B4E6), to(#98DAF3));
  background-image: linear-gradient(to right, #36B4E6 0%, #98DAF3 100%);
  background-repeat: no-repeat;
  background-size: 100% 3px;
  background-position: left bottom;
}

.company-info dd {
  padding-left: 20px;
  padding-bottom: 15px;
  font-weight: 500;
  font-size: clamp(0.875rem, 0.787rem + 0.38vw, 1.125rem);
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1.6;
  border-bottom: 3px solid #EDEDED;
}

.company-info .address,
.company-info .content {
  padding-bottom: 78px;
}

@media (max-width: 1266px) {
  .company-info .address,
  .company-info .content {
    padding-bottom: 76px;
  }
}
@media screen and (max-width: 768px) {
  #company {
    padding-inline: 12px;
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .company-info .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .company-info .row:nth-of-type(n + 2) {
    margin-top: 15px;
  }
  .company-info dt,
  .company-info dd {
    width: 100%;
  }
  .company-info dd {
    padding-top: 15px;
  }
  .company-info .address,
  .company-info .content {
    padding-bottom: 15px;
  }
}
/* 基本要素 */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body,
html {
  overflow-x: hidden;
  /* 横スクロールを消す */
}

html {
  font-size: 100%;
}

body {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  color: var(--text-color);
  background-color: #fafafa;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  font-size: 1rem;
  text-decoration: none;
  color: var(--text-color);
  display: block;
}

:root {
  --btn-blue: #36B4E6;
  --text-blue: #0A6DFF;
  --text-color: #444444;
  --text-emphasis: Josefin Sans, sans-serif;
}

h1 {
  width: clamp(11.25rem, 9.605rem + 3.42vw, 12.688rem);
}

@media screen and (max-width: 768px) {
  h1 {
    width: clamp(7.813rem, 4.532rem + 13.99vw, 11.25rem);
  }
}
/* ================================
   Header Base
================================ */
#header {
  position: fixed;
  width: 100%;
  z-index: 999;
  height: 80px;
  padding-inline: 2.775%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-shadow: 0px 6px 12px 0px rgba(152, 152, 152, 0.08);
          box-shadow: 0px 6px 12px 0px rgba(152, 152, 152, 0.08);
  background-color: #ffffff;
  z-index: 10000;
}

@media screen and (max-width: 768px) {
  #header {
    padding-inline: 4.26%;
    -webkit-box-shadow: unset;
            box-shadow: unset;
    height: 65px;
  }
}
/* ================================
   Layout
================================ */
/* PC用メニュー */
#header .flex_right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1rem, -1.789rem + 5.8vw, 3.438rem);
}

@media screen and (max-width: 768px) {
  #header .flex_right ul {
    display: none;
  }
}
/* メニューリンク */
#header .flex_right ul a {
  position: relative;
  font-weight: bold;
  font-size: clamp(1rem, 0.857rem + 0.3vw, 1.125rem);
  letter-spacing: 0.04em;
}

#header .menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: var(--text-color);
  height: 1px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  visibility: hidden;
}

#header .menu a:hover::after {
  visibility: visible;
  width: 100%;
}

/* Contactボタン */
#header .contact_btn a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  letter-spacing: 0.05em;
  font-size: clamp(1.063rem, 0.919rem + 0.3vw, 1.188rem);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  background-color: var(--btn-blue);
  padding: 14px clamp(1.125rem, -0.019rem + 2.38vw, 2.125rem);
  gap: 12px;
  border-radius: 36px;
}

#header .contact_btn a::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url("../img/mail_icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ================================
   ハンバーガーメニュー
================================ */
#header .toggle_btn {
  width: 47px;
  height: 47px;
  position: relative;
  z-index: 2001;
  cursor: pointer;
  display: none;
  border-radius: 50%;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(152, 152, 152, 0.35);
          box-shadow: 0px 0px 6px 0px rgba(152, 152, 152, 0.35);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  #header .toggle_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
#header .toggle_btn span {
  position: absolute;
  width: 18.5px;
  height: 2px;
  background-color: var(--text-color);
  border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#header .toggle_btn span:nth-child(1) {
  top: 17px;
}

#header .toggle_btn span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#header .toggle_btn span:nth-child(3) {
  bottom: 17px;
}

/* ================================
   背景マスク
================================ */
#header .mask {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 1000;
  cursor: pointer;
}

/* ================================
   スマホメニュー本体
================================ */
#header .sp_menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1001;
  text-align: center;
  overflow-y: auto;
  padding: 30px;
}

.sp_menu_logo_container {
  margin-bottom: 28px;
}
.sp_menu_logo_container .sp_menu_logo {
  width: 125px;
}

#header .sp_menu li {
  margin-bottom: 28px;
}
#header .sp_menu li a {
  position: relative;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.04em;
}

#header .sp_menu .contact_btn {
  margin-bottom: unset;
}

/* ================================
   open状態
================================ */
#header.open .mask {
  opacity: 1;
  visibility: visible;
}

#header.open .sp_menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  text-align: left;
}

#header.open .toggle_btn span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

#header.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}

#header.open .toggle_btn span:nth-child(3) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

#header.open .toggle_btn {
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

/* ================================
   PC非表示設定
================================ */
@media screen and (min-width: 769px) {
  #header .sp_menu,
  #header .mask {
    display: none;
  }
}
/* ================================
  footer
================================ */
#footer {
  background-color: #444444;
}
#footer .footer_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 8.237%;
  padding-block: 40px;
}
#footer .footer_logo {
  font-size: clamp(1.5rem, 1.071rem + 0.89vw, 1.875rem);
  letter-spacing: 0.05em;
}
#footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1rem, -1.432rem + 5.06vw, 3.125rem);
}
#footer a {
  font-size: clamp(0.875rem, 0.732rem + 0.3vw, 1rem);
}
#footer a,
#footer p {
  color: #ffffff;
  letter-spacing: 0.04em;
  font-weight: 500;
}
#footer .copyright {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  padding-bottom: 20px;
}

@media screen and (max-width: 640px) {
  #footer .footer_logo {
    margin-inline: auto;
    font-size: 18px;
    margin-bottom: 20px;
  }
  #footer .footer_wrapper,
  #footer ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #footer .footer_wrapper {
    padding-block: 30px;
  }
  #footer ul {
    gap: 26px;
  }
  #footer a {
    text-align: center;
    font-size: 12px;
  }
}
/* ================================
TOPタイトルセクション
================================ */
#title_section {
  padding-top: 80px;
}

.bg_img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #title_section {
    padding-top: 65px;
  }
  .bg_img {
    height: 269px;
  }
}
h2 {
  font-size: 3.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #ffffff;
  font-weight: bold;
  gap: 16px;
  font-family: var(--text-emphasis);
  line-height: 1;
  letter-spacing: 0.02em;
}
h2 .ja {
  font-size: 1rem;
  letter-spacing: 0.05em;
}

#about h2,
#service h2,
#vision h2,
#vison_service h2,
#works h2,
#company h2 {
  color: #444444;
}

@media screen and (max-width: 480px) {
  #title_section {
    padding-top: 12px;
  }
  h2 {
    font-size: 1.75rem;
    gap: 8px;
  }
  h2 .ja {
    font-size: 0.875rem;
  }
}
/* ================================
section h2
================================ */
.section_h2 {
  font-size: clamp(1.75rem, 1.156rem + 2.53vw, 3.438rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #ffffff;
  font-weight: bold;
  gap: clamp(0rem, -0.352rem + 1.5vw, 1rem);
  font-family: var(--text-emphasis);
  line-height: 1;
  letter-spacing: 0.02em;
  z-index: 1000;
  position: relative;
}
.section_h2 .ja {
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .section_h2 {
    text-align: center;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 375px) {
  .ja {
    letter-spacing: 0.03em;
  }
}
/* ================================
  topページ
================================ */
#top {
  padding-top: 80px;
  padding-bottom: 83px;
}
#top .top_flex {
  padding-left: 6.662%;
  padding-right: 3.886%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(0.75rem, 0.486rem + 1.13vw, 1.5rem);
  margin-top: clamp(3.75rem, 0.46rem + 6.85vw, 6.625rem);
  position: relative;
}
#top h2 {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  color: #444444;
  font-size: clamp(1.375rem, 0.088rem + 2.68vw, 2.5rem);
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 42px;
  line-height: 1.56;
}
#top .top_img {
  width: clamp(20.125rem, -1.975rem + 45.98vw, 39.438rem);
}
#top .bg_images {
  position: absolute;
  top: 0;
  left: 0;
  width: 140%;
  /* 動かす分だけ余裕を持たせる */
  height: 100%;
  overflow: visible;
  /* 背景ははみ出してもOK */
  z-index: 1;
}
#top .top_bg1 {
  width: 14.988vw;
  position: absolute;
  top: -35%;
  left: -5%;
}
#top .top_bg2 {
  width: 21.89vw;
  position: absolute;
  top: 75%;
  left: -4%;
}
#top .top_bg3 {
  width: 13vw;
  position: absolute;
  top: -13%;
  right: 25%;
}
#top .top_bg4 {
  width: 4.92vw;
  position: absolute;
  top: -8%;
  right: 70%;
}
#top .top_bg5 {
  width: 8.119vw;
  position: absolute;
  top: 98%;
  right: 63%;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--btn-blue);
  padding-block: clamp(0.844rem, 0.822rem + 0.09vw, 0.906rem);
  padding-right: clamp(1.875rem, 1.589rem + 0.6vw, 2.125rem);
  padding-left: clamp(1.563rem, 0.776rem + 1.64vw, 2.25rem);
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: clamp(0.938rem, 0.85rem + 0.38vw, 1.188rem);
  border-radius: 38px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  line-height: 1;
  z-index: 500;
}

.btn::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url("../img/mail_icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 12px;
}

.btn::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../img/btn_arrow_right.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: clamp(0.5rem, -1.073rem + 3.27vw, 1.875rem);
}

.btn:hover {
  background-color: #6FC0E9;
}

.bg_images_sp {
  display: none;
}

@media screen and (max-width: 768px) {
  #top {
    padding-top: 65px;
    padding-bottom: 111px;
  }
  #top .top_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: clamp(2.5rem, 1.307rem + 5.09vw, 3.75rem);
    gap: 30px;
  }
  #top .top_img {
    width: clamp(20.563rem, 7.383rem + 56.23vw, 34.375rem);
  }
  #top h2 {
    font-size: clamp(1.25rem, 0.057rem + 5.09vw, 2.5rem);
  }
  #top .bg_images {
    display: none;
  }
  .bg_images_sp {
    display: block;
  }
  .top_bg1_sp {
    width: 27.93vw;
    position: absolute;
    top: 0%;
    right: -9%;
  }
  .top_bg2_sp {
    width: 40.2vw;
    position: absolute;
    top: 105%;
    left: -9%;
  }
  .top_bg3_sp {
    width: 23.5vw;
    position: absolute;
    top: -9%;
    left: -8%;
  }
  .top_bg4_sp {
    width: 14.3vw;
    position: absolute;
    top: 120%;
    right: 1%;
  }
  .top_bg5_sp {
    width: 13.33vw;
    position: absolute;
    top: 54%;
    right: -3%;
    -webkit-transform: rotate(85deg);
            transform: rotate(85deg);
  }
  .btn-wrapper {
    text-align: center;
  }
}
#about {
  padding-inline: 120px;
  padding-top: 100px;
  padding-bottom: 36px;
  max-width: 1440px;
  margin: 0 auto;
}
#about .about_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#about .about_img {
  width: 311px;
  margin-left: 29%;
}
#about .about_text {
  width: 59.5%;
}
#about .about_text p {
  font-size: clamp(0.875rem, 0.787rem + 0.38vw, 1.125rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.7;
  margin-bottom: 30px;
  margin-top: -87px;
}
#about .about_text .text_empahsis {
  font-weight: bold;
}

.link_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.link_title a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--text-blue);
  font-size: clamp(0.875rem, 0.787rem + 0.38vw, 1.125rem);
  font-weight: bold;
  position: relative;
  letter-spacing: 0.04em;
}
.link_title a span {
  font-size: clamp(0.75rem, 0.706rem + 0.19vw, 0.875rem);
  font-style: var(--text-emphasis);
  letter-spacing: 0.08em;
}

.link_arrow {
  width: clamp(2.25rem, 2.052rem + 0.84vw, 2.813rem);
}

.about_bg_images_sp {
  display: none;
}

.about_bg_images {
  position: relative;
}

.about_bg1 {
  width: 24vw;
  position: absolute;
  top: 32px;
  left: -18%;
}

.about_bg2 {
  width: 8.674vw;
  position: absolute;
  top: 38px;
  right: -9%;
}

@media screen and (max-width: 1280px) {
  #about .about_img {
    margin-left: unset;
  }
}
@media screen and (max-width: 900px) {
  #about .about_text p {
    margin-top: -72px;
  }
}
@media screen and (max-width: 768px) {
  #about {
    padding-bottom: 30px;
    padding-inline: 5.33%;
    padding-top: 60px;
  }
  #about .about_img {
    width: clamp(15.688rem, 12.109rem + 15.27vw, 19.438rem);
    margin-left: unset;
  }
  #about .about_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #about .about_text {
    width: 100%;
  }
  #about .about_text p {
    margin-top: unset;
  }
  #about .link_area {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #about .about_bg_images {
    display: none;
  }
  #about .about_bg_images_sp {
    display: block;
    position: relative;
  }
  .about_bg1_sp {
    width: 37.86vw;
    position: absolute;
    top: -21px;
    left: -21%;
  }
  .about_bg2_sp {
    width: 12.26vw;
    position: absolute;
    top: -193px;
    right: -8%;
    z-index: -100;
  }
}
@media screen and (max-width: 375px) {
  .link_title {
    letter-spacing: 0.02em;
  }
  span {
    letter-spacing: 0.06em;
  }
}
#service {
  text-align: center;
  padding-top: 100px;
  padding-bottom: 160px;
}
#service .service_text {
  font-size: clamp(0.875rem, 0.787rem + 0.38vw, 1.125rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  margin-top: 50px;
  margin-bottom: 30px;
}
#service .link_area {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 70px;
}

.service-container {
  max-width: 1224px;
  padding-inline: 1%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(1.438rem, -1.201rem + 5.5vw, 3.75rem);
}

@media screen and (max-width: 1280px) {
  .service-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.service-card {
  width: clamp(14.375rem, 5.246rem + 19.02vw, 22.375rem);
  background-color: #fff;
  border-radius: 60px;
  text-align: center;
  padding: 30px 8px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 2px solid transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service-card h3 {
  font-size: clamp(1.563rem, 0.849rem + 1.49vw, 2.188rem);
  margin-bottom: 4px;
  font-weight: bold;
  letter-spacing: 0.04em;
}

.service-card p {
  font-size: clamp(0.875rem, 0.59rem + 0.59vw, 1.125rem);
  font-weight: 500;
  color: #444444;
  margin-bottom: 30px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.service_img {
  width: clamp(12.063rem, 4.574rem + 15.6vw, 18.625rem);
  margin-bottom: 30px;
}

.purple .service_img {
  width: clamp(12.063rem, 7.569rem + 9.36vw, 16rem);
}

.service_link_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service_link_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: clamp(0.875rem, 0.59rem + 0.59vw, 1.125rem);
  font-weight: bold;
  position: relative;
  letter-spacing: 0.04em;
}

.service_link_arrow {
  width: clamp(2.25rem, 2.052rem + 0.84vw, 2.813rem);
}

.blue {
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
}

/* カラーごとの枠線・文字色 */
.service-card.orange {
  border-color: #F08300;
  color: #F08300;
}

.service-card.blue {
  border-color: #009CDA;
  color: #009CDA;
}

.service-card.purple {
  border-color: #7583E2;
  color: #7583E2;
}

.recruit_bg_images_sp {
  display: none;
}

@media screen and (max-width: 768px) {
  #service {
    padding-inline: 5.33%;
  }
  .service-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 25px;
  }
  .blue {
    -webkit-transform: unset;
            transform: unset;
  }
  .service-card {
    width: 300px;
  }
  /* 順番を変更 */
  .service-card.blue {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .service-card.orange {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .service-card.purple {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media screen and (max-width: 540px) {
  #service .service_text {
    text-align: left;
  }
}
@media screen and (max-width: 376px) {
  #service {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
#recruit {
  padding-inline: 120px;
  padding-top: 100px;
  padding-bottom: 75px;
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}
#recruit .btn {
  font-size: clamp(0.813rem, 0.385rem + 0.89vw, 1.188rem);
  padding-left: clamp(0.5rem, -1.5rem + 4.17vw, 2.25rem);
  padding-right: clamp(0.5rem, -1.357rem + 3.87vw, 2.125rem);
}
#recruit .btn::before {
  margin-right: clamp(0.375rem, -0.054rem + 0.89vw, 0.75rem);
}
#recruit .btn::after {
  margin-left: clamp(0.375rem, -1.339rem + 3.57vw, 1.875rem);
}

.recruit_title {
  color: #444444;
  font-size: clamp(1.25rem, 0.18rem + 2.23vw, 2.188rem);
  font-weight: bold;
  letter-spacing: 0.05em;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  margin-bottom: 40px;
}
.recruit_title br {
  display: none;
}

.recruit_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3%;
}

.recruit_img_container {
  width: 521px;
  z-index: 300;
}

.recruit_text {
  font-size: clamp(0.875rem, 0.787rem + 0.38vw, 1.125rem);
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.recruit_text p {
  margin-bottom: clamp(0.938rem, 0.581rem + 0.74vw, 1.25rem);
}
.recruit_text .contact_msg {
  margin-bottom: clamp(1.25rem, -0.176rem + 2.97vw, 2.5rem);
}

.recruit_bg1 {
  width: 17.55vw;
  position: absolute;
  top: 0px;
  right: 0px;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  #recruit {
    padding-inline: 5.33%;
  }
  .recruit_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3%;
  }
  .recruit_title {
    line-height: 1.8;
    letter-spacing: 0.03em;
    font-size: clamp(1.25rem, 0.707rem + 2.43vw, 1.875rem);
  }
  .recruit_title br {
    display: block;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .recruit_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .recruit_text_btn {
    display: contents;
    width: 100%;
  }
  .recruit_text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    font-size: clamp(0.875rem, 0.766rem + 0.49vw, 1rem);
  }
  .recruit_img_container {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
  .btn-wrapper {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    margin-top: 30px;
  }
  .recruit_bg1 {
    display: none;
  }
  .recruit_bg_images_sp {
    display: block;
  }
  .recruit_bg1_sp {
    position: absolute;
    width: 21.33vw;
    top: -22px;
    right: -27px;
  }
  .recruit_bg2_sp {
    position: absolute;
    width: 26vw;
    right: -26px;
    top: 400px;
  }
}
@media screen and (max-width: 376px) {
  #recruit {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}
#recruit_contact {
  padding-inline: 120px;
  background-image: url(../img/recruit_contact_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  padding-bottom: 100px;
  padding-top: 100px;
}

.recruit_contact_h2_container {
  text-align: center;
  margin-bottom: 40px;
}
.recruit_contact_h2_container .recruit_contact_h2 {
  color: #ffffff;
  font-weight: bold;
  font-size: 35px;
  letter-spacing: 0.05em;
  gap: 10px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  margin-bottom: 50px;
}
.recruit_contact_h2_container .recruit_contact_h2 span {
  color: #ffffff;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.04em;
}
.recruit_contact_h2_container p {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #ffffff;
}

.target_container {
  background-color: #ffffff;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  max-width: 984px;
  margin: 0 auto 40px;
  padding-block: 40px;
}
.target_container .for_company,
.target_container .for_engineer {
  text-align: center;
  position: relative;
  width: 50%;
}
.target_container .for_company::before {
  content: "";
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 100%;
  width: 1px;
  background-color: var(--btn-blue);
}
.target_container .target_title {
  font-weight: bold;
  font-size: clamp(1.563rem, 1.206rem + 0.74vw, 1.875rem);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.target_container .target_img {
  width: 144px;
  margin-bottom: 10px;
}
.target_container p {
  font-size: clamp(0.875rem, 0.59rem + 0.59vw, 1.125rem);
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0 auto 30px;
}

.target_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--btn-blue);
  padding-block: clamp(0.844rem, 0.822rem + 0.09vw, 0.906rem);
  padding-right: clamp(1rem, -0.284rem + 2.67vw, 2.125rem);
  padding-left: clamp(1rem, -0.426rem + 2.97vw, 2.25rem);
  color: #ffffff;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: clamp(0.875rem, 0.518rem + 0.74vw, 1.188rem);
  border-radius: 38px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  line-height: 1;
}

.target_btn:hover {
  background-color: #6FC0E9;
}

.target_btn::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 12px;
}

.for_business_btn::before {
  content: "";
  background-image: url("../img/people_icon.png");
}

.for_engineer_btn::before {
  content: "";
  background-image: url("../img/pc_icon.png");
}

.target_btn::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../img/btn_arrow_right.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: clamp(0.5rem, -1.073rem + 3.27vw, 1.875rem);
}

.for_engineer_btn {
  padding-right: clamp(0.5rem, -1.357rem + 3.87vw, 2.125rem);
  padding-left: clamp(0.5rem, -1.5rem + 4.17vw, 2.25rem);
}

.line_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  background-color: #04C755;
  border-radius: 50px;
  border: 2px solid #ffffff;
  max-width: 984px;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-block: 40px;
  padding-inline: 1%;
  gap: clamp(0.625rem, -2.228rem + 5.94vw, 3.125rem);
}

.smartphone {
  width: clamp(6.25rem, 4.681rem + 3.27vw, 7.625rem);
}

.line_title {
  color: #ffffff;
  font-size: clamp(1.5rem, 1.072rem + 0.89vw, 1.875rem);
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-bottom: 5px;
}
.line_title br {
  display: none;
}
.line_title .title_line {
  font-weight: 900;
  font-size: clamp(2.625rem, 1.912rem + 1.49vw, 3.25rem);
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-right: 10px;
}
.line_title .title_easy {
  color: #F9E203;
  font-weight: bold;
  letter-spacing: 0.04em;
  font-size: clamp(1.875rem, 1.304rem + 1.19vw, 2.375rem);
  margin-inline: 6px;
}

.line_caution {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-bottom: clamp(0.938rem, -0.132rem + 2.23vw, 1.875rem);
}

.line_qr {
  width: clamp(5.625rem, 4.555rem + 2.23vw, 6.563rem);
  position: absolute;
  top: clamp(6.125rem, 5.126rem + 2.08vw, 7rem);
  right: clamp(0.938rem, -5.838rem + 14.12vw, 6.875rem);
}

.line_contact_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffffff;
  padding-block: clamp(0.844rem, 0.822rem + 0.09vw, 0.906rem);
  padding-right: clamp(1.875rem, 1.589rem + 0.6vw, 2.125rem);
  padding-left: clamp(1.563rem, 0.776rem + 1.64vw, 2.25rem);
  color: #04C755;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: clamp(0.938rem, 0.85rem + 0.38vw, 1.188rem);
  border-radius: 38px;
  text-decoration: none;
  opacity: 1;
  cursor: pointer;
  position: relative;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  line-height: 1;
}
.line_contact_btn::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url("../img/msg_icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 12px;
}
.line_contact_btn::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../img/recruit_contact_arrow_green.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: clamp(0.5rem, -1.073rem + 3.27vw, 1.875rem);
}

.line_contact_btn:hover {
  opacity: 0.9;
}

@media screen and (max-width: 768px) {
  #recruit_contact {
    padding-top: clamp(3.75rem, 1.365rem + 10.18vw, 6.25rem);
    padding-bottom: clamp(3.75rem, 1.365rem + 10.18vw, 6.25rem);
    padding-inline: 5.33%;
  }
  .recruit_contact_h2_container {
    margin-bottom: clamp(1.875rem, 1.279rem + 2.54vw, 2.5rem);
  }
  .recruit_contact_h2_container .recruit_contact_h2 {
    font-size: clamp(1.25rem, 0.355rem + 3.82vw, 2.188rem);
    letter-spacing: 0.03em;
    margin-bottom: clamp(1.875rem, 0.682rem + 5.09vw, 3.125rem);
  }
  .recruit_contact_h2_container .recruit_contact_h2 span {
    font-size: clamp(0.875rem, 0.517rem + 1.53vw, 1.25rem);
    letter-spacing: 0.02em;
  }
  .recruit_contact_h2_container p {
    font-size: clamp(0.875rem, 0.636rem + 1.02vw, 1.125rem);
    letter-spacing: 0.02em;
    line-height: 1.8;
  }
  .target_container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .target_container .for_company,
  .target_container .for_engineer {
    width: 87%;
    margin: 0 auto;
  }
  .target_container .for_company {
    border-bottom: 1px solid var(--btn-blue);
    display: inline-block;
    padding-bottom: 30px;
  }
  .target_container .for_engineer {
    padding-top: 30px;
  }
  .target_container .for_company::before {
    display: none;
  }
  .target_container .target_title {
    font-size: clamp(1.25rem, 0.952rem + 1.27vw, 1.563rem);
    letter-spacing: 0.03em;
    margin-bottom: 10px;
  }
  .target_container .target_img {
    width: clamp(8.375rem, 7.779rem + 2.54vw, 9rem);
    margin-bottom: 10px;
  }
  .target_container p {
    font-size: clamp(0.875rem, 0.59rem + 0.59vw, 1.125rem);
    line-height: 1.8;
    letter-spacing: 0.02em;
    margin: 0 auto 30px;
  }
  .target_btn {
    padding-right: 27px;
    padding-left: 27px;
  }
  .target_btn::before {
    width: clamp(1.25rem, 0.952rem + 1.27vw, 1.563rem);
    height: clamp(1.25rem, 0.952rem + 1.27vw, 1.563rem);
  }
  .target_btn::after {
    width: clamp(1.563rem, 1.264rem + 1.27vw, 1.875rem);
    height: clamp(1.563rem, 1.264rem + 1.27vw, 1.875rem);
    margin-left: 16px;
  }
  .smartphone {
    width: clamp(5rem, 3.807rem + 5.09vw, 6.25rem);
  }
  .line_title {
    font-size: clamp(1.25rem, 1.011rem + 1.02vw, 1.5rem);
    letter-spacing: 0.03em;
  }
  .line_title .title_line {
    font-size: clamp(2.188rem, 1.77rem + 1.78vw, 2.625rem);
    margin-right: 6px;
  }
  .line_title .title_easy {
    letter-spacing: 0.04em;
    font-size: clamp(1.875rem, 1.304rem + 1.19vw, 2.375rem);
    margin-inline: 6px;
  }
  .line_caution {
    font-size: clamp(0.75rem, 0.392rem + 1.53vw, 1.125rem);
    letter-spacing: 0.02em;
  }
  .line_qr {
    display: none;
  }
  #recruit_contact .line_flex_right .btn-wrapper {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    margin-top: 0;
  }
  .line_contact_btn {
    padding-right: clamp(1.125rem, 0.409rem + 3.05vw, 1.875rem);
    padding-left: clamp(1.125rem, 0.708rem + 1.78vw, 1.563rem);
    letter-spacing: 0.03em;
    font-size: clamp(0.813rem, 0.693rem + 0.51vw, 0.938rem);
  }
  .line_contact_btn::before {
    width: clamp(1.25rem, 0.952rem + 1.27vw, 1.563rem);
    height: clamp(1.25rem, 0.952rem + 1.27vw, 1.563rem);
    margin-right: clamp(0.375rem, 0.017rem + 1.53vw, 0.75rem);
  }
  .line_contact_btn::after {
    width: clamp(1.75rem, 1.631rem + 0.51vw, 1.875rem);
    height: clamp(1.75rem, 1.631rem + 0.51vw, 1.875rem);
    margin-left: clamp(0.5rem, -1.073rem + 3.27vw, 1.875rem);
  }
}
@media screen and (max-width: 376px) {
  .line_contact {
    padding-left: 26px;
  }
  .smartphone {
    width: 47px;
  }
  .line_title br {
    display: block;
  }
  .line_caution {
    margin-left: -53px;
  }
  #recruit_contact .line_flex_right .btn-wrapper {
    margin-left: -32px;
  }
  .line_contact_btn {
    padding-right: 17px;
    padding-left: 15px;
    font-size: 14px;
  }
  .line_contact_btn::before {
    width: 22px;
    height: 22px;
  }
  .line_contact_btn::after {
    width: 25px;
    height: 25px;
  }
}