@charset "UTF-8";

@font-face {
  font-family: 'Rounded Mplus 1c';
  font-weight: 100;
  font-style: normal;
  src: url('/fonts/RoundedMplus1c-Thin.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Rounded Mplus 1c';
  font-weight: 300;
  font-style: normal;
  src: url('/fonts/RoundedMplus1c-Light.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Rounded Mplus 1c';
  font-weight: 400;
  font-style: normal;
  src: url('/fonts/RoundedMplus1c-Regular.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Rounded Mplus 1c';
  font-weight: 500;
  font-style: normal;
  src: url('/fonts/RoundedMplus1c-Medium.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Rounded Mplus 1c';
  font-weight: 700;
  font-style: normal;
  src: url('/fonts/RoundedMplus1c-Bold.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Rounded Mplus 1c';
  font-weight: 800;
  font-style: normal;
  src: url('/fonts/RoundedMplus1c-ExtraBold.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Rounded Mplus 1c';
  font-weight: 900;
  font-style: normal;
  src: url('/fonts/RoundedMplus1c-Black.woff2') format('woff2');
  font-display: swap;
}




* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --c_base1: #959595;
  --c_base2: #f2f2f2;
  --c_base3: #e4e4e4;
  --c_base4: #ffa758;
  --c_key1: #f15a24;
  --c_key2: #07aeb3;
}

body {
  overflow-x: hidden;
  background-color: #FFF7F5;
  line-height: 1.3;
  letter-spacing: 0.06px;
  margin: 0 auto;
  color: #333;
  font-family: 'Rounded Mplus 1c', sans-serif !important;
}

.wrap {
  margin: 0 auto;
  background-color: #fff;
}

.cv_area {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px 0;
}

.cv_area .basic_btn,
.cv_area .sub_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  width: 300px;
  max-width: 100%;
  margin: 16px 1% 0;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 30px;
  font-size: 17px;
}

.cv_area .basic_btn {
  background-color: var(--c_key2);
  color: #fff;
  border: 1px solid var(--c_key2);
}

.cv_area .sub_btn {
  background-color: #fff;
  color: var(--c_key1);
  border: 1px solid var(--c_key1);

}


/*==================================
page_top
=====================================*/
.page_top {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 350px;
  min-width: 80px;
  z-index: 100;
  max-width: 90%;
}

.page_top a {
  display: block;
}

.page_top:hover {
  opacity: 0.7;
}

.page_top img {
  width: 100%;
}

/*==================================
nav
=====================================*/
.sp_header {
  display: none;
}

.pc_header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 90px;
  background-color: #fff;
  z-index: 1000;
  box-shadow: #9a9a9a42 0 0 11px;
}

nav a {
  text-decoration: none;
  color: #333;
}

nav a:hover {
  opacity: 0.7;
}


.pc_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.nav_logo {
  display: block;
  width: 160px;
  margin-left: 3%;

}

.nav_logo img {
  width: 100%;
}

.pc_nav .nav_list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 77%;
  height: 100%;
}

.nav_item {
  width: 40%;
  height: 60%;
  border-left: 1px solid var(--c_base4);
}

.nav_item>a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 20px;
  text-align: center;
  font-weight: bold;
  height: 100%;
  flex-wrap: wrap;
  font-size: 19px;
}

.nav_item .small {
  display: block;
  width: 100%;
  line-height: 1;
  font-size: 13px;
  color: var(--c_base4);
}

.cv_btn {
  background-color: var(--c_key1);
  height: 100%;
}

.cv_btn a {
  color: #ffff;
  padding: 14px 20px;
}

.cv_btn a:hover {
  background-color: var(--c_key2);
  opacity: unset;
}

/*==================================
mv
=====================================*/
main {
  margin-top: 90px;
  width: 100%;
}

.mv {
  width: 100%;
  background-image: url(../img/mock_back.jpg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
}

.mv .inner {
  width: 100%;
  padding: 60px 2% 160px;
  overflow-x: hidden;
}

.mv_bk_sub01,
.mv_bk_sub02 {
  position: absolute;
}

.mv_bk_sub01 {
  top: 0;
  right: -70px;
  width: 35%;
  opacity: 0.5;
}


.mv_bk_sub02 {
  width: 40%;
  bottom: -15%;
  left: -3%;
  opacity: 0.5;
}


.mv_flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv_txt {
  text-align: center;
  width: 60%;
  max-width: 600px;
  margin-right: 4%;
}

.mv_txt img {
  max-width: 100%;
}

h1 {
  font-weight: bold;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

h1 img {
  width: 500px;
}

.mv_logo_txt_sp{
  display: none;
}

.mv_img {
  width: 50%;
  max-width: 300px;
  z-index: 0;
}

.mv_chef {
  width: 100%;
  aspect-ratio: 200 / 289;
}

.mv_comment {
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 20px;
}

.mv_cv_btn {
  display: block;
  background-color: #07aeb3;
  max-width: 500px;
  width: 86%;
  margin: 0 auto 20px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  padding: 20px 3%;
  font-size: 24px;
  letter-spacing: 1.2px;
  font-weight: bold;
  border-radius: 8px;
  position: relative;
  z-index: 10;
  transform: translateY(-10px);
}

.mv_cv_btn::after {
  width: 20px;
  display: inline-block;
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  content: url(../img/arr_wh.svg);
}

.mv_sub_tit {
  display: block;
  margin: 0 auto;
  width: 460px;
  max-width: 80%;
}



/*==================================
sec_what
=====================================*/

.check_list {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 1% 60px;
  position: relative;
}

.check_list li {
  width: 190px;
  margin: 0 2.5%;
}

.check_list img {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.sec_what {
  position: relative;
  padding: 70px 4%;
  background-color: #ffefe8;
}

.sec_what .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 0;
  border-radius: 12px;
}

.sec_what .sec_tit {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.sec_what .inner {
  padding: 100px 4%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: #fff;
}

.sec_what .sec_img {
  position: absolute;
  width: 45%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../img/logo.jpg?20202);
  background-size: 700px 520px;
  animation: bgiLoop 30s linear infinite;
  background-repeat: repeat;
  border-radius: 12px 0 0 12px;
}

@keyframes bgiLoop {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 800px -620px;
  }
}

.sec_what .sec_txt {
  width: 50%;
}

.sec_what .sec_txt p {
  font-size: 17px;
}

.sec_what .sec_txt .bold {
  color: var(--c_key1);
  font-weight: bold;
}


/*==================================
sec_worries
=====================================*/

.sec_worries {
  position: relative;
  padding: 0 4%;
  background-image: url(../img/text_area_bk.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}




.sec_worries .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 0;
}

.sec_worries .sec_tit {
  font-weight: bold;
  text-align: center;
  font-size: 32px;
  letter-spacing: 1.1px;
  color: #4e4e4e;
  margin-bottom: 4px;
}

.worries_img {
  width: 200px;
  display: block;
  margin: 0 auto 30px
}

.worries_list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}

.worries_list li {
  width: 49%;
  padding: 40px 20px 40px 60px;
  background-color: #FFF7F5;
  border-radius: 10px;
  border: 1px solid #f15a24;
  margin-bottom: 30px;
  color: #f15a24;
  font-size: 20px;
  position: relative;
}

.worries_list li::before {
  position: absolute;
  content: "";
  background-image: url(../img/ico_check.png);
  background-size: cover;
  width: 30px;
  height: 30px;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}


/*==================================
sec_solution
=====================================*/
.sec_solution {
  background-color: #E8F5F3;
  position: relative;
}

.sec_solution::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 70px 175px 0 175px;
  border-color: #fff transparent transparent transparent;
}


.sec_solution .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px 0;
}

.sec_solution .sec_tit {
  font-weight: bold;
  text-align: center;
  font-size: 32px;
  letter-spacing: 1.1px;
  color: #4e4e4e;
  margin-bottom: 40px;
}

.solution_list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.solution_list li {
  width: 50%;
  text-align: center;
  margin-bottom: 30px;
  padding: 30px 4%;
}

.solution_list li:nth-child(2) {
  margin-top: 100px;
}

.solution_list li:nth-child(3) {
  margin-top: -100px;
}

.solution_img {
  width: 100%;
  max-width: 380px;
  margin-bottom: 20px;
  aspect-ratio: 700 / 723;
}

.solution_list li h3 {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: bold;
  text-align: left;
}

.solution_txt {
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
}

.text_area {
  padding: 80px 4%;
  font-size: 26px;
  line-height: 1.9;
  text-align: center;
  font-weight: bold;
  background-image: url(../img/text_area_bk02.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.text_area img {
  width: 160px;
  vertical-align: middle;
  margin-right: 5px;
}


/*==================================
sec_solution
=====================================*/

.sec_introduction {
  background-color: #FFF7F5;
  padding: 100px 0;
}

.sec_introduction .sec_tit {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.slide {
  position: relative;
  padding: 30px 0;
  overflow: initial;
  max-width: 900px;
  transform: scale(.8);
  transition: transform .3s;
}

.slide.slick-center {
  transform: scale(1);
}

.slide_inner {
  position: relative;
  background-color: #fff;
  border: #f15a24 1px solid;
  position: relative;
  padding-bottom: 30px;
}

.job_type {
  padding: 10px 3%;
  background-color: #f15a24;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 20px;
}

.job_logo {
  width: 120px;
  position: absolute;
  right: 0;
  top: -30px;
  border-radius: 50%;
  border: #f15a24 1px solid;
}

.job_flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 30px;
}

.job_img {
  display: block;
  max-width: 49%;
  width: 360px;
  padding-left: 30px;
  aspect-ratio: 5 / 3;
}

.job_txt_area {
  padding: 20px 30px;
}

.job_company {
  font-weight: bold;
  color: var(--c_key1);
  font-size: 24px;
  margin-bottom: 20px;
}

.job_txt {
  font-size: 17px;
  margin-bottom: 16px;
}

.job_money {
  font-size: 28px;
  vertical-align: baseline;
  text-align: right;
  color: var(--c_key1);
  line-height: 0.7;
}

.job_money .num {
  font-size: 40px;
  font-weight: bold;
  vertical-align: baseline;
}

.job_money .small {
  font-size: 12px;
  color: var(--c_base1);
}


/*==================================
sec_process
=====================================*/
.sec_process {
  padding: 100px 4%;
  background-color: #fff;
  background-image: radial-gradient(#d9d9d9 8%, transparent 8%);
  background-size: 18px 18px;
  background-position: 50% 50%;
  border-radius: 50px;
}

.sec_process .inner {
  max-width: 1280px;
  margin: 0 auto;
}

.sec_process .sec_tit {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  color: var(--c_key1);
  margin-bottom: 20px;
}

.process {
  display: flex;
  align-items: flex-start;
}

.flow_desc {
  padding: 20px 0 80px;
  position: relative;
  width: 100%;
}


.flow_desc::before {
  content: "";
  position: absolute;
  left: -56px;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #ED7A00;
  z-index: 0;
}

.last .flow_desc:last-child::before {
  content: none;
}


.flow_desc p {
  line-height: 1.5;
  font-size: 17px;
  background-color: #FFF7F5;
  padding: 30px 3%;
  width: 100%;
  border-radius: 20px;
  box-shadow: #ffd7c6 4px 3px 0px;
}

.flow_desc a {
  color: var(--c_key1);
}

.flow_tit {
  font-weight: 600;
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.flow_icon {
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 50%;
  background-color: #F15A24;
  z-index: 1;
}

.flow_icon img {
  width: 50%;
}



/*==================================
sec_voice
=====================================*/

.sec_voice {
  background-color: #C5E5E4;
  padding: 100px 4%;
}

.sec_voice .inner {
  max-width: 1280px;
  margin: 0 auto;
}

.sec_voice .sec_tit {
  font-size: 40px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 50px;
  letter-spacing: 5px;
}

.sec_voice .sec_tit .small {
  font-size: 15px;
  color: #fff;
  display: block;
  background-color: var(--c_base4);
  max-width: 250px;
  margin: 0 auto 8px;
  padding: 8px 6px;
  border-radius: 10px;
  position: relative;
  letter-spacing: 1px;

}

.sec_voice .sec_tit .small::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -12px;
  border: 12px solid transparent;
  border-top: 12px solid var(--c_base4);
}


.voice_item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.voice_item:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
}

.voice_item:nth-child(even) p {
  text-align: left;
}

.voice_txt {
  padding: 20px 3%;
}

.voice_item img {
  width: 300px;
}

.voice_item h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.voice_comment {
  background-color: #fff;
  padding: 20px 3%;
  border-radius: 20px;
}

.voice_item h4 {
  font-size: 20px;
  font-weight: bold;
  color: #ED7A00;
  margin-bottom: 10px;
  text-align: center;
}

.voice_item p {
  font-size: 15px;
  line-height: 1.7;
}

/*==================================
sec_qa
=====================================*/
.sec_qa {
  padding: 100px 4%;
}

.sec_qa .inner {
  max-width: 1280px;
  margin: 0 auto;
}

.sec_qa .sec_txt {
  font-size: 18px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  color: #414141;
}

.sec_qa .sec_tit {
  color: #fd8f2f;
  font-weight: bold;
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
}

.qa_item {
  margin-bottom: 30px;
  border-radius: 20px;
  border: 1px solid var(--c_base4);
}

.qa_item .q {
  position: relative;
  padding: 30px 3%;
  padding-left: 100px;
  font-size: 18px;
  background-color: #ffe9d6;
  border-radius: 20px 20px 0 0;
}

.qa_item .q::before {
  content: "Q";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  margin: auto;
  background-color: var(--c_base4);
  font-size: 24px;
  color: #ffffff;
  border-radius: 50%;
}

.qa_item .a {
  padding: 30px 3%;
  font-size: 16px;
}

.qa_item a {
  color: #3640c5;
}


/*==================================
footer
=====================================*/

footer {
  padding: 30px 0 0;
  background-color: #e5e5e5;
}

footer .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 4%;
}

.gc_txt01 {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
}

.gc_txt02 {
  font-size: 14px;
  background-color: #fff;
  padding: 20px 3%;
  margin-bottom: 30px;
  line-height: 1.7;
  border-radius: 16px;
}

.gc_txt02 img {
  width: 120px;
  vertical-align: middle;
  margin-right: 5px;
}

.company_txt h2 {
  display: inline-block;
  margin-right: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.company_txt h2,
.gc_txt01 {
  font-size: 16px;
}

.company_txt p {
  font-size: 14px;
  background-color: #fff;
  padding: 20px 3%;
  border-radius: 16px;
}

.company_txt a {
  display: inline-block;
  padding: 10px 40px;
  margin: 0 1%;
  background-color: #fff;
  text-decoration: none;
  color: var(--c_key1);
  border: var(--c_key1) 1px solid;
  font-weight: bold;
  font-size: 15px;
  border-radius: 50px;
}

.footer_btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.copyright {
  font-size: 11px;
  text-align: center;
  background-color: var(--c_key1);
  color: #fff;
  padding: 8px 8px 80px;
}

@media screen and (max-width: 1280px) {

  /*==================================
mv
=====================================*/
  .mock02 {
    display: none;
  }

  .mock01 {
    width: clamp(520px, 46vw, 500px);
    left: 39%;
    bottom: 7%;
    transform: translateX(-50%);
    top: unset;
  }

  .mv_bk_sub02 {
    bottom: -60px;
    width: 460px;
  }

  .mv .inner {
    padding: 40px 2% 140px 4%;
  }
  
  h1 img {
  width: 400px;
}


  .mv_img {
    width: 46%;
    max-width: 260px;
  }

  /*==================================
sec_what
=====================================*/

  .sec_what {
    padding: 40px 4%;
  }

  /*==================================
sec_worries
=====================================*/

  .sec_worries .inner {
    padding: 70px 0 50px;
  }

  .sec_worries .sec_tit {
    font-size: 28px;
  }

  .worries_list li {
    font-size: 18px;
  }

  /*==================================
sec_solution
=====================================*/

  .sec_solution .inner {
    padding: 115px 0 60px;
  }

  .sec_solution .sec_tit {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .solution_list li {
    width: 46%;
  }

  .solution_list li h3 {
    font-size: 24px;
  }

  .solution_txt {
    font-size: 15px;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
  }

  .text_area {
    font-size: 17px;
  }

  .text_area img {
    width: 120px;

  }

  /*==================================
.sec_introduction
=====================================*/

  .sec_introduction {
    padding: 70px 0;
  }

  .sec_introduction .sec_tit {
    font-size: 28px;
  }

  .slide {
    max-width: 78vw !important;
  }

  .job_company {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .job_txt {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .job_img {
    padding-left: 20px;
  }

  .job_money {
    font-size: 20px;
  }

  .job_money .num {
    font-size: 30px;
  }

  .job_txt_area {
    padding: 20px;
  }

  /*==================================
sec_process
=====================================*/

  .sec_process {
    padding: 70px 4%;

  }

  .sec_process .sec_tit {
    font-size: 28px;
  }

  .flow_desc {
    padding: 14px 0 80px;
  }

  .flow_tit {
    font-size: 24px;
  }


  /*==================================
sec_voice
=====================================*/
  .sec_voice {
    padding: 70px 4%;
  }

  .sec_voice .sec_tit .small {
    font-size: 13px;
    max-width: 210px;
    width: fit-content;
    padding: 8px 10px;
    border-radius: 8px;
  }

  .sec_voice .sec_tit {
    font-size: 36px;
    letter-spacing: 0.09em;
  }

  .voice_item h4 {
    font-size: 18px;
  }

  .voice_item p {
    font-size: 14px;
  }

  .voice_comment {
    padding: 20px 5%;
  }

  /*==================================
sec_qa
=====================================*/
  .sec_qa {
    padding: 70px 4%;
  }

  .sec_qa .sec_tit {
    font-size: 28px;
  }

  .sec_qa .sec_txt {
    font-size: 15px;
  }

  .qa_item .q::before {
    width: 40px;
    height: 40px;
    font-size: 18px;

  }

  .qa_item .q {
    padding: 20px 3% 20px 86px;
    font-size: 16px;
  }

  .qa_item .a {
    padding: 20px 3%;
    font-size: 14px;
  }
}

@media screen and (max-width: 1024px) {

  main {
    margin-top: 82px;
  }

  /*==================================
header
=====================================*/

  .pc_header {
    display: none !important;
  }

  .sp_header {
    display: block !important;
    width: 100%;
    height: 60px;
    position: fixed;
    z-index: 60;
    top: 10px;
    right: 0;
    left: 0;
    transition: opacity 0.5s ease, top 0.5s ease;
  }

  .sp_header .inner {
    position: relative;
    padding: 10px 6%;
    height: 100%;
    width: 96%;
    margin: 0 auto;
    border-radius: 40px;
    background-color: #ffffffd7;
    box-shadow: #3a3a3a2b 2px 2px 4px;
  }

  .sp_header .header_logo {
    width: 140px;
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);

  }

  .sp_header .header_logo a {
    height: 100%;
  }

  .sp_header .header_logo img {
    max-width: 100%;
  }

  .hamburger {
    position: absolute;
    right: 5%;
    top: 50%;
    width: 30px;
    height: 60px;
    cursor: pointer;
    z-index: 300;
    transform: translateY(-50%);
  }


  .hamburger__line {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--c_key1);
    transition: all .6s;
  }

  .hamburger__line--1 {
    top: 20px;
  }

  .hamburger__line--2 {
    top: 30px;
  }

  .hamburger__line--3 {
    top: 40px;
  }

  .black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #ff9068;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }

  /* sp-nav*/

  .global-nav {
    position: fixed;
    right: -65vw;
    top: 0;
    width: 65vw;
    height: 100vh;
    padding-top: 70px;
    background-color: #fff;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto;
  }

  .nav-open .global-nav {
    right: 0;
  }

  .nav-open .black-bg {
    opacity: .85;
    visibility: visible;
  }

  .nav-open .hamburger__line--1 {
    transform: rotate(45deg);
    top: 20px;
  }

  .nav-open .hamburger__line--2 {
    width: 0;
    left: 50%;
  }

  .nav-open .hamburger__line--3 {
    transform: rotate(-45deg);
    top: 20px;
  }

  .sp_nav_list {
    background-color: #fff;
    border-bottom: 1px solid #e7e5e2;
  }

  .sp_nav_list>a {
    color: var(--c_key1);
    font-weight: 500;
    display: flex;
    justify-content: flex-start;
    align-items: baseline;

  }

  .sp_nav_list>a>img {
    margin-right: 5px;
  }

  .sp_nav_list a {
    text-decoration: none;
    height: 100%;
    padding: 15px;
    font-weight: bold;
    font-size: 14px;
  }

  .sp_nav_nest {
    display: none;
  }

  .sp_nav_nest li {
    border-top: 1px solid #e7e5e2;
    background-color: #f3f3f3;
    padding-left: 10px;
  }

  .sp_nav_nest a {
    color: #5e5e5e;
    display: flex;
    justify-content: space-between;
    align-items: center;

  }

  /*==================================
mv
=====================================*/

  .mv_img {
    width: 27%;
    max-width: 200px;
  }

  .mv_cv_btn {
    font-size: 20px;
  }

  .mv_bk_sub02 {
    bottom: 90px;
    width: 400px;
    left: -15%;
  }

  .check_list li {
    width: 160px;
  }



}

@media screen and (max-width: 768px) {

  /*==================================
header
=====================================*/
  .sp_header .header_logo {
    width: 120px;
  }


  /*==================================
mv
=====================================*/

  .mv {
    /* height: 600px; */
    min-height: unset;
  }

  .mv .inner {
    padding: 40px 2% 100px 4%;
  }

  .mock01 {
    width: clamp(400px, 100vw, 460px);
    bottom: 9%;
    transform: unset;
    left: unset;
    right: 3%;
    min-width: unset;

  }

  h1 img {
    width: 300px;
    max-width: 80% !important;
  }

  .mv_txt {
    width: 66%;
  }

  .mv_bk_sub02 {
    bottom: 1%;
    width: 300px;

    left: -15%;
  }

  /*==================================
sec_what
=====================================*/

  .check_list li {
    width: 140px;
  }

  .sec_what {
    padding: 30px 4%;
  }

  .sec_what .inner {
    padding: 40px 4%;
    position: relative;
    display: block;
    background-color: #fff;
  }

  .sec_what .sec_tit {
    font-size: 24px;
  }

  .sec_what .sec_txt p {
    font-size: 16px;
  }

  .sec_what .sec_txt {
    width: 100%;
    margin-top: 300px;
  }

  .sec_what .sec_img {
    width: 100%;
    height: 300px;
    background-size: 710px 614px;
    border-radius: 12px 12px 0 0;
  }


  /*==================================
sec_worries
=====================================*/
  .worries_list li {
    width: 500px;
    max-width: 100%;
    margin: 0 auto 16px;
    padding: 20px 3% 20px 50px;
    font-size: 16px;
  }

  .sec_worries .sec_tit {
    font-size: 24px;
  }

  .worries_list li::before {
    width: 20px;
    height: 20px;
    left: 20px;

  }

  /*==================================
sec_solution
=====================================*/
  .sec_solution .sec_tit {
    font-size: 24px;
  }

  .solution_list li {
    width: 100%;
  }

  .solution_img {
    width: 100%;
    max-width: 320px;

  }

  .solution_list li {
    margin: 0 !important;
  }

  .solution_list li h3 {
    font-size: 22px;
    text-align: center;
  }


  .text_area img {
    width: 90px;
  }

  /*==================================
sec_introduction
=====================================*/

  .sec_introduction .sec_tit {
    font-size: 24px;
  }

  .slide_inner {
    padding-bottom: 0;
  }

  .job_type {
    text-align: left;
    font-size: 16px;
    padding: 10px 20px;
  }

  .job_logo {
    width: 80px;
    top: -16px;
  }

  .job_company {
    text-align: center;
  }

  .job_img {
    padding: 20px;
    max-width: 100%;
  }

  .job_flex {
    margin-top: 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .job_txt_area {
    width: 100%;
    padding: 0 20px 20px;
  }

  /*==================================
sec_process
=====================================*/
  .sec_process .sec_tit {
    font-size: 24px;
  }


  .flow_desc {
    padding: 6px 0 28px;
  }

  .flow_icon {
    margin-right: 10px;
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .flow_desc::before {
    left: -36px;
  }

  .flow_tit {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .flow_desc p {
    font-size: 14px;
    padding: 20px 4%;
    border-radius: 10px;
  }

  /*==================================
sec_voice
=====================================*/
  .sec_voice .sec_tit .small {
    font-size: 12px;
  }

  .sec_voice .sec_tit {
    font-size: 32px;
  }

  .voice_item {
    flex-wrap: wrap;
  }

  .voice_txt {
    width: 100%;
  }

  .voice_item h4 {
    text-align: left;
  }

  /*==================================
sec_qa
=====================================*/
  .sec_qa .sec_tit {
    font-size: 24px;
  }

  .qa_item .q {
    font-size: 15px;
  }
}

@media screen and (max-width: 500px) {

  main {
    margin-top: 67px;
  }

  /*==================================
header
=====================================*/
  .sp_header {
    border-radius: 20px;
    height: 54px;

  }

  .sp_header .header_logo {
    width: 100px;

  }

  .sp_header .header_logo {
    left: 7%;
  }

  .hamburger {
    right: 6%;
  }

  .hamburger__line--1 {
    top: 20px;
  }

  .hamburger__line--2 {
    top: 28px;
  }

  .hamburger__line--3 {
    top: 36px;
  }


  /*==================================
mv
=====================================*/
  .mv {
    background-image: url(../img/mock_back_sp.jpg);
  }


  .mv_cv_btn {
    font-size: 16px;
    padding: 16px 3%;
  }

  .mv_logo_txt_sp{
    display: block;
    max-width: 100%!important;
  }

  .mv_logo_txt{
    display: none;
  }


  /*==================================
sec_what
=====================================*/

  .sec_what .inner {
    padding: 30px 4%;
  }

  .check_list {
    padding: 0 2% 30px;
  }

  .check_list li {
    margin: 0 3%;
  }

  .sec_what .sec_tit {
    font-size: 19px;
    margin-bottom: 10px;
  }

  .sec_what .sec_txt p {
    font-size: 14px;
  }

  .sec_what .sec_txt {
    margin-top: 230px;
  }

  .sec_what .sec_img {
    background-size: 500px 404px;
    height: 230px;
  }


  /*==================================
sec_worries
=====================================*/
  .sec_worries {
    background-image: url(../img/text_area_bk_sp.png);
    background-position: center bottom;
  }

  .sec_worries .inner {
    padding: 50px 0 20px;
  }

  .sec_worries .sec_tit {
    font-size: 21px;
  }

  .worries_img {
    width: 160px;
    margin-bottom: 24px;
  }

  .worries_list li {
    padding: 14px 3% 14px 38px;
    font-size: 14px;

  }

  .worries_list li::before {
    left: 10px;
  }

  /*==================================
sec_solution
=====================================*/

  .sec_solution::before {
    border-width: 70px 170px 0 170px;
  }

  .sec_solution .sec_tit {
    font-size: 19px;
  }

  .solution_img {
    width: 260px;
  }

  .solution_list li {
    padding: 20px 4%;
  }

  .solution_list li h3 {
    font-size: 17px;
  }

  .solution_txt {
    font-size: 14px;
    padding: 0 3%;
  }

  .text_area {
    font-size: 11px;
    padding: 40px 4%;

  }

  .text_area img {
    width: 60px;
  }


  /*==================================
sec_introduction
=====================================*/

  .sec_introduction {
    padding: 50px 0;
  }

  .sec_introduction .sec_tit {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .job_company {
    text-align: left;
    font-size: 16px;
  }

  .job_money {
    font-size: 15px;
    line-height: 1;
  }

  .job_money .num {
    font-size: 26px;
  }

  .job_money .small {
    font-size: 10px;
  }

  /*==================================
sec_process
=====================================*/
  .sec_process {
    padding: 50px 4%;
  }

  .sec_process .sec_tit {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .flow_desc {
    padding: 6px 0 28px;
  }

  .flow_icon {
    margin-right: 10px;
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .flow_desc::before {
    left: -31px;
  }

  .flow_tit {
    font-size: 16px;
  }

  .flow_desc p {
    font-size: 13px;
  }


  /*==================================
sec_voice
=====================================*/
  .sec_voice {
    padding: 50px 4% 20px;
  }

  .sec_voice .sec_tit {
    font-size: 28px;
    letter-spacing: unset;
    margin-bottom: 20px;
  }

  .voice_item h3 {
    font-size: 17px;
  }

  .voice_item h4 {
    font-size: 16px;
  }

  .voice_item p {
    font-size: 13px;
  }

  /*==================================
sec_qa
=====================================*/

  .sec_qa {
    padding: 50px 4% 20px;
  }

  .sec_qa .sec_tit {
    font-size: 19px;
  }

  .sec_qa .sec_txt {
    font-size: 13px;
  }

  .qa_item {
    border-radius: 12px;
  }

  .qa_item .q {
    font-size: 14px;
    padding: 14px 3% 14px 56px;
    border-radius: 12px 12px 0 0;
  }

  .qa_item .q::before {
    left: 15px;
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .qa_item .a {
    padding: 14px 3%;
    font-size: 14px;
  }

  /*==================================
footer
=====================================*/
  footer .inner {
    padding: 20px 4% 0;
  }

  .company_txt h2,
  .gc_txt01 {
    font-size: 14px;
  }

  .gc_txt02 {
    font-size: 13px;
    border-radius: 12px;
  }

  .gc_txt02 img {
    width: 80px;
  }

  .company_txt p {
    font-size: 13px;
    border-radius: 12px;
  }

  .footer_btn {
    flex-wrap: wrap;
  }

  .company_txt a {
    width: 90%;
    margin-bottom: 16px;
    text-align: center;
  }
}

@media screen and (max-width: 400px) {
  main {
    margin-top: 70px;
  }

  .sp_header {
    height: 50px;
  }

  .sp_header .inner {
    margin-top: 0;

  }

  /*==================================
mv
=====================================*/


  h1 {
    font-size: 16px;
  }

  h1 img {
    width: 240px;
  }

  .mock01 {
    width: 410px;
    right: -140px;
    bottom: 80px;
  }


  /*==================================
sec_worries
=====================================*/

  .worries_img {
    width: 120px;
    margin-bottom: 18px;
  }
}