@charset "UTF-8";
html {
  font-size: 10px;
  margin: 0;
  padding: 0;
  overflow-x: hidden; }

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #3c3c3c;
  background-color: #F3F3F3;
  background-image: linear-gradient(white 1px, transparent 1px), linear-gradient(90deg, white 1px, transparent 1px);
  background-size: 50px 50px; }

:root {
  --black:#3c3c3c;
  --gradation:linear-gradient(90deg,rgba(128, 0, 255, 1) 0%, rgba(255, 82, 125, 1) 50%, rgba(255, 166, 98, 1) 100%);
  --gradationtate:linear-gradient(0deg,rgba(128, 0, 255, 1) 0%, rgba(255, 82, 125, 1) 50%, rgba(255, 166, 98, 1) 100%);
  --bold:700;
  --sbold:600;
  --rbold:700;
  --ebold:800;
  --sh:0px 0px 15px 0px rgba(136,164,202,0.3); }

.roboto {
  font-family: "roboto", sans-serif;
  font-weight: 300;
  font-style: normal; }

a {
  text-decoration: none;
  color: var(--black);
  cursor: pointer;
  transition: all .3s; }
  a:hover {
    opacity: .6; }

ul {
  list-style-type: none;
  margin: 0;
  padding: 0; }

p {
  margin: 0;
  padding: 0; }

h1, h2, h3, h4, h5 {
  margin: 0; }

.pc_only {
  display: none; }

/*トップに戻るの設定*/
.totop {
  width: 30px;
  height: 35px;
  position: fixed;
  bottom: 80px;
  right: 20px;
  cursor: pointer;
  transition: all .3s; }
  .totop:hover {
    opacity: .6; }
  .totop img {
    width: 100%;
    height: auto; }

@media screen and (min-width: 1024px) {
  .totop {
    right: 50px; } }
/*ナビゲーションの設定（メディアクエリも設定）*/
nav {
  width: 100%;
  height: 70px;
  padding: 0 20px;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); }

.logo_set {
  width: 260px;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 30px;
  cursor: pointer; }

.nav_title_c {
  font-size: 1rem;
  font-weight: var(--bold); }

.nav_title_r {
  font-size: 2rem;
  font-weight: var(--sbold); }

h1 {
  width: 70px;
  height: auto; }
  h1 img {
    width: 100%;
    height: auto; }

.hamburger {
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100;
  position: relative; }

.hamburger span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradation);
  transition: all 0.4s;
  border-radius: 1px; }

.hamburger span:nth-child(1) {
  top: 0px; }

.hamburger span:nth-child(2) {
  top: 12px; }

.hamburger span:nth-child(3) {
  top: 24px; }

.hamburger.open span:nth-child(1) {
  transform: translateY(10px) rotate(-45deg); }

.hamburger.open span:nth-child(2) {
  opacity: 0;
  /* 真ん中の線を消す */ }

.hamburger.open span:nth-child(3) {
  transform: translateY(-14px) rotate(45deg); }

.navigation {
  position: fixed;
  top: -100vh;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 90;
  transition: all 0.5s ease;
  padding: 0 20px;
  box-sizing: border-box;
  opacity: 0; }

.open-nav {
  top: 0;
  visibility: visible;
  opacity: 1; }

.navigation ul {
  list-style: none;
  text-align: center;
  margin-top: 0;
  padding: 0;
  margin-bottom: 20px; }

.navigation ul li a {
  font-size: 2rem;
  color: var(--black);
  text-decoration: none;
  display: block;
  margin: 60px;
  font-weight: var(--ebold);
  transition: all .3s;
  cursor: pointer; }
  .navigation ul li a:hover {
    opacity: .6; }

.sp_nav_cta {
  width: 100%;
  max-width: 400px;
  height: 100px;
  border-radius: 10px;
  border: solid 2px #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: all .3s;
  cursor: pointer;
  box-shadow: var(--sh);
  position: relative;
  background: linear-gradient(to right, #3c3c3c 50%, transparent 50%), var(--gradation);
  background-size: 200% 100%, 100% 100%;
  background-position: right bottom, center center;
  background-repeat: no-repeat; }
  .sp_nav_cta:hover {
    opacity: 1;
    background-position: left bottom, center center; }
  .sp_nav_cta::before {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url("../img/arrow_wh.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 40px;
    right: 20px; }

.sp_cta_p1 {
  font-size: 2rem; }

.sp_cta_p2 {
  font-size: 2.4rem;
  font-weight: var(--bold); }

#sp_nav_sns {
  width: 100%;
  max-width: 300px;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px; }
  #sp_nav_sns li {
    width: 40px;
    height: 40px; }
    #sp_nav_sns li a {
      width: 100%;
      height: 100%;
      margin: 0; }
      #sp_nav_sns li a img {
        width: 100%;
        height: auto; }

.tab_nav_cta {
  display: none; }

.tab_only {
  display: contents; }

@media screen and (min-width: 768px) {
  nav {
    padding-right: 0;
    height: 100px; }

  .logo_set {
    gap: 20px; }

  .hamburger {
    display: none; }

  .tab_only {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 70%;
    max-width: 830px;
    height: 100%; }

  .navigation {
    position: static;
    height: 100%;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    z-index: 0;
    padding: 0;
    opacity: 1;
    width: 90%;
    max-width: 556px;
    background-color: transparent;
    margin-right: 40px; }

  .navigation ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 0;
    width: 100%; }

  .navigation ul li {
    display: inline-block; }

  .navigation ul li a {
    font-size: 1.6rem;
    color: var(--black);
    margin: 0; }

  .sp_nav_cta {
    display: none; }

  #sp_nav_sns {
    display: none; }

  .tab_nav_cta {
    width: 30%;
    max-width: 230px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 2rem;
    font-weight: var(--sbold);
    cursor: pointer;
    transition: all .3s;
    background: linear-gradient(to right, #3c3c3c 50%, transparent 50%), var(--gradation);
    background-size: 200% 100%, 100% 100%;
    background-position: right bottom, center center;
    background-repeat: no-repeat; }
    .tab_nav_cta:hover {
      background-position: left bottom, center center;
      opacity: 1; } }
@media screen and (min-width: 1024px) {
  .logo_set {
    gap: 20px;
    width: 350px; }

  h1 {
    width: 100px; }

  .nav_title_c {
    font-size: 1.2rem; }

  .nav_title_r {
    font-size: 2.8rem; } }
/*コンテンツ共通設定（メディアクエリも設定）*/
.common_cap {
  font-size: 3.6rem;
  background: var(--gradation);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  margin-bottom: 3px; }

.cap_p {
  font-size: 1.8rem;
  font-weight: var(--sbold);
  margin-bottom: 24px; }

.common_h3 {
  font-size: 2.3rem;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 20px; }

.common_p {
  font-size: 1.4rem;
  line-height: 2.2; }

@media screen and (min-width: 768px) {
  body {
    background-size: 60px 60px; }

  .sp_only {
    display: none; }

  .common_cap {
    font-size: 4.4rem;
    background: var(--gradation);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    margin-bottom: 3px; }

  .common_h3 {
    font-size: 3.6rem;
    line-height: 1.6;
    font-weight: bold;
    margin-bottom: 50px; }

  .common_p {
    font-size: 1.8rem;
    line-height: 2.2; } }
@media screen and (min-width: 1024px) {
  .common_cap {
    font-size: 6rem;
    margin-bottom: 0; }

  .pc_only {
    display: block; }

  .cap_wrap {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px; }

  .cap_p {
    margin-bottom: 0;
    font-size: 3rem; }

  .common_h3 {
    margin-bottom: 30px; } }
/*CTAセクションの設定（メディアクエリも設定）*/
.cta {
  width: 100%;
  max-width: 400px;
  margin: 100px auto;
  padding: 0 20px;
  box-sizing: border-box; }

.bottom_cta {
  margin: 0 auto; }

@media screen and (min-width: 768px) {
  .cta {
    width: 100%;
    max-width: 550px;
    margin: 130px auto;
    padding: 0 20px;
    box-sizing: border-box; }

  .bottom_cta {
    display: flex;
    margin: 0 auto;
    height: 145px;
    max-width: 550px; }
    .bottom_cta::before {
      content: "";
      width: 20px;
      height: 26px;
      background-image: url("../img/arrow_wh.png");
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      position: absolute;
      top: 77px;
      right: 40px; }

  .bottom_cta_p1 {
    font-size: 2.4rem; }

  .bottom_cta_p2 {
    font-size: 3.6rem; } }
/*フッターの設定(メディアクエリも設定)*/
footer {
  width: 100%;
  padding: 20px 20px 40px 20px;
  background-color: #fff;
  box-sizing: border-box; }

.footer_wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }

.footer_sns {
  width: 100%;
  max-width: 300px;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px auto; }
  .footer_sns li {
    width: 40px;
    height: 40px; }
    .footer_sns li a {
      width: 100%;
      height: 100%;
      margin: 0; }
      .footer_sns li a img {
        width: 100%;
        height: auto; }

.footer_logo_set {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 40px auto; }
  .footer_logo_set img {
    width: 70px;
    height: auto; }
  .footer_logo_set .footer_title_c {
    font-size: 1rem; }
  .footer_logo_set .footer_title_r {
    font-weight: var(--sbold);
    font-size: 2rem; }

.com_link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px; }
  .com_link p {
    font-size: 1.6rem;
    font-weight: var(--bold); }
  .com_link img {
    width: 20px;
    height: auto; }

small {
  font-size: 1rem;
  text-align: center;
  display: block; }

@media screen and (min-width: 1024px) {
  footer {
    padding: 60px 50px; }

  .footer_wrap {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 60px; }

  .footer_logo_set {
    order: -1;
    width: auto;
    margin: 0; }

  .footer_sns {
    margin: 0; }

  .com_link {
    margin: 0; } }
/*ここまで共通記述*/
/*ファーストビューの設定*/
.fv {
  width: 100%;
  height: 650px;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative; }

.fv_deco {
  width: 890px;
  height: auto;
  position: absolute;
  top: 60px;
  left: -290px; }

.fv_deco_pc {
  display: none; }

.fv_cap {
  position: absolute;
  top: 120px;
  left: 20px;
  font-size: 5rem;
  font-weight: var(--sbold); }

.fv_p1 {
  font-size: 1.8rem;
  font-weight: var(--bold);
  position: absolute;
  top: 190px;
  left: 20px; }

.fv_menu {
  height: auto;
  position: absolute;
  top: 240px;
  left: 20px;
  font-size: 1.4rem;
  font-weight: var(--bold);
  display: flex;
  flex-direction: column; }
  .fv_menu a {
    display: flex;
    margin-bottom: 10px;
    gap: 8px; }
    .fv_menu a .tri {
      width: 0;
      height: 0;
      border-style: solid;
      border-right: 7px solid transparent;
      border-left: 7px solid transparent;
      border-top: 12px solid var(--black);
      border-bottom: 0;
      margin-top: 5px; }

.fv_image_1 {
  width: 270px;
  height: 180px;
  border-radius: 10px;
  background-color: #9E9E9E;
  position: absolute;
  top: 240px;
  right: -70px;
  overflow: hidden;
  opacity: .8; }
  .fv_image_1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left; }

.fv_image_2 {
  width: 225px;
  height: 150px;
  border-radius: 10px;
  background-color: #9E9E9E;
  position: absolute;
  top: 390px;
  right: 120px;
  overflow: hidden;
  opacity: .8; }
  .fv_image_2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }

/*サービスの設定*/
.service {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative; }
  .service::before {
    content: "";
    width: 900px;
    height: 300px;
    background-image: url("../img/SP_bgGradation.webp");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -130px;
    right: -440px;
    z-index: -1; }

.service_flex {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px; }

.service_img {
  width: 100%;
  max-width: 400px;
  height: auto; }

.service_br {
  display: none; }

.service_item_flex {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 40px; }

.flex_1 {
  margin-bottom: 60px; }

.service_item_flex_doc_item {
  margin-bottom: 30px; }
  .service_item_flex_doc_item h4 {
    font-size: 2rem;
    font-weight: var(--bold);
    line-height: 1;
    margin-bottom: 20px; }
    .service_item_flex_doc_item h4 .h4_border {
      display: inline-block;
      border-right: solid 2px var(--black);
      padding-right: 10px;
      margin-right: 10px; }
  .service_item_flex_doc_item p {
    font-size: 1.4rem;
    line-height: 1.8; }

.service_image_wrap {
  width: 100%;
  max-width: 350px;
  height: 210px;
  position: relative; }

.service_image_1 {
  width: 186px;
  height: 144px;
  background-color: #9E9E9E;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden; }
  .service_image_1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }

.service_image_2 {
  width: 186px;
  height: 144px;
  background-color: #9E9E9E;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  right: 0;
  overflow: hidden; }
  .service_image_2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }

/*職種の設定*/
.job_type {
  width: 100%;
  max-width: 500px;
  margin: 90px auto 140px auto;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative; }
  .job_type::before {
    content: "";
    width: 900px;
    height: 300px;
    background-image: url("../img/SP_bgGradation.webp");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -100px;
    left: -350px;
    z-index: -1; }

.job_wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin: 30px auto; }

.job_items_a {
  display: flex;
  width: 100%;
  height: auto;
  padding: 30px 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: var(--sh);
  box-sizing: border-box; }
  .job_items_a h4 {
    font-size: 2rem;
    font-weight: var(--bold);
    text-align: left;
    display: block;
    width: 100%;
    border-bottom: 2px solid transparent;
    border-image: var(--gradation);
    border-image-slice: 1;
    padding-bottom: 4px;
    margin-bottom: 18px; }
  .job_items_a p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 18px; }

.job_items_inner_wrap {
  width: 100%; }

.job_items_img {
  width: 100%;
  height: 175px;
  background-color: #8C8C8C;
  border-radius: 10px;
  margin-bottom: 30px;
  overflow: hidden; }
  .job_items_img img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.job_items_a_wrap {
  display: flex;
  flex-direction: column;
  align-items: center; }

.job_items_button {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #fff;
  border: 2px solid transparent;
  border-radius: 20px;
  background-image: linear-gradient(#fff, #fff), var(--gradation);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding: 4px 16px;
  box-sizing: border-box;
  box-shadow: var(--sh);
  font-size: 1.4rem;
  font-weight: var(--bold);
  margin-bottom: 16px;
  transition: all .3s ease;
  overflow: hidden;
  position: relative;
  z-index: 0; }
  .job_items_button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3c3c3c;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
    z-index: -1; }
  .job_items_button:hover {
    color: #fff;
    opacity: 1;
    border: 2px solid var(--black); }
    .job_items_button:hover::after {
      transform: scaleX(1); }
    .job_items_button:hover img {
      filter: brightness(0) invert(1); }

.arrow_b {
  width: 10px;
  height: auto; }

@media screen and (min-width: 500px) {
  /*ファーストビューの設定*/
  .fv_image_1 {
    top: 240px;
    right: 20px; }

  .fv_image_2 {
    top: 390px;
    right: 220px; } }
@media screen and (min-width: 768px) {
  /*ファーストビューの設定*/
  .fv_deco {
    display: none; }

  .fv_deco_pc {
    display: block;
    width: 2200px;
    height: auto;
    position: absolute;
    top: -360px;
    left: -810px; }

  .fv_menu {
    top: 240px;
    left: 20px;
    font-size: 1.4rem;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px; }
    .fv_menu a {
      display: flex;
      margin-bottom: 10px;
      gap: 8px; }
      .fv_menu a .tri {
        width: 0;
        height: 0;
        border-style: solid;
        border-right: 7px solid transparent;
        border-left: 7px solid transparent;
        border-top: 12px solid var(--black);
        border-bottom: 0;
        margin-top: 5px; }

  .fv_image_1 {
    width: 390px;
    height: 240px;
    border-radius: 10px;
    background-color: #9E9E9E;
    position: absolute;
    top: 130px;
    right: -30px; }

  .fv_image_2 {
    width: 285px;
    height: 180px;
    border-radius: 10px;
    background-color: #9E9E9E;
    position: absolute;
    top: 330px;
    right: 280px; }

  /*サービスの設定*/
  .service {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box; }
    .service::before {
      content: "";
      width: 2300px;
      height: 800px;
      background-image: url("../img/bgGradation.webp");
      background-position: center;
      background-size: contain;
      background-repeat: no-repeat;
      position: absolute;
      bottom: -220px;
      right: -1210px;
      z-index: -1; }

  .service_flex {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 100px; }

  .service_img {
    width: 40%;
    max-width: 300px;
    height: auto; }

  .service_br {
    display: block; }

  .service_item_flex {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 40px;
    gap: 30px; }

  .flex_1 {
    margin-bottom: 90px; }

  .service_item_flex_doc_item {
    margin-bottom: 50px; }
    .service_item_flex_doc_item h4 {
      font-size: 2.8rem;
      font-weight: var(--bold);
      line-height: 1;
      margin-bottom: 20px; }
      .service_item_flex_doc_item h4 .h4_border {
        display: inline-block;
        border-right: solid 2px var(--black);
        padding-right: 10px;
        margin-right: 10px; }
    .service_item_flex_doc_item p {
      font-size: 1.8rem;
      line-height: 1.8; }

  .service_image_wrap {
    width: 100%;
    max-width: 380px;
    height: 300px;
    position: relative; }

  .service_image_1 {
    width: 210px;
    height: 170px;
    background-color: #9E9E9E;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0; }

  .service_image_2 {
    width: 210px;
    height: 170px;
    background-color: #9E9E9E;
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    right: 0; }

  .order {
    order: -1;
    margin-top: -60px; }

  /*職種の設定*/
  .job_type {
    width: 100%;
    max-width: 1160px;
    margin: 70px auto 170px auto;
    padding: 0 20px;
    box-sizing: border-box; }
    .job_type::before {
      content: "";
      width: 2300px;
      height: 800px;
      background-image: url("../img/bgGradation.webp");
      background-position: center;
      background-size: contain;
      background-repeat: no-repeat;
      position: absolute;
      bottom: -180px;
      left: -850px;
      z-index: -1; }

  .job_wrap {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;
    justify-content: space-around;
    margin: 50px auto; }

  .job_items {
    width: 48%;
    display: flex; }

  .job_items_a {
    display: flex;
    width: 100%;
    height: 100%;
    height: auto;
    padding: 30px 20px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: var(--sh);
    box-sizing: border-box; }
    .job_items_a h4 {
      font-size: 2.4rem;
      font-weight: var(--bold);
      text-align: left;
      display: block;
      width: 100%;
      border-bottom: 2px solid transparent;
      border-image: var(--gradation);
      border-image-slice: 1;
      padding-bottom: 4px;
      margin-bottom: 18px; }
    .job_items_a p {
      font-size: 1.6rem;
      line-height: 1.6;
      margin-bottom: 18px; }

  .job_items_inner_wrap {
    width: 100%; }

  .job_items_img {
    width: 100%;
    height: 210px;
    background-color: #8C8C8C;
    border-radius: 10px;
    margin-bottom: 30px; }

  .job_items_a_wrap {
    display: flex;
    flex-direction: column;
    align-items: center; }

  .job_items_button {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #fff;
    border: 2px solid transparent;
    border-radius: 20px;
    background-image: linear-gradient(#fff, #fff), var(--gradation);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    padding: 4px 16px;
    box-sizing: border-box;
    box-shadow: var(--sh);
    font-size: 1.4rem;
    font-weight: var(--bold);
    margin-bottom: 16px; }

  .arrow_b {
    width: 10px;
    height: auto; } }
@media screen and (min-width: 1024px) {
  /*ファーストビューの設定*/
  .fv_cap {
    left: 50px;
    font-size: 6rem; }

  .fv_p1 {
    top: 200px;
    left: 50px; }

  .fv_menu {
    top: 250px;
    left: 50px; }

  .fv_image_1 {
    width: 600px;
    height: 300px;
    border-radius: 20px;
    background-color: #9E9E9E;
    position: absolute;
    top: 130px;
    right: -30px; }

  .fv_image_2 {
    width: 330px;
    height: 210px;
    border-radius: 20px;
    background-color: #9E9E9E;
    position: absolute;
    top: 330px;
    right: 510px; }

  /*サービスの設定*/
  .service {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    box-sizing: border-box; }

  .service_flex {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 60px; }

  .service_img {
    width: 40%;
    max-width: 400px;
    height: auto; }

  .service_br {
    display: block; }

  .service_item_flex {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 40px;
    gap: 50px; }

  .flex_1 {
    margin-bottom: 90px; }

  .service_item_flex_doc_item {
    margin-bottom: 100px; }
    .service_item_flex_doc_item h4 {
      font-size: 2.8rem;
      font-weight: var(--bold);
      line-height: 1;
      margin-bottom: 20px; }
      .service_item_flex_doc_item h4 .h4_border {
        display: inline-block;
        border-right: solid 2px var(--black);
        padding-right: 10px;
        margin-right: 10px; }
    .service_item_flex_doc_item p {
      font-size: 1.8rem;
      line-height: 1.8; }

  .service_image_wrap {
    width: 100%;
    max-width: 523px;
    height: 510px;
    position: relative; }

  .service_image_1 {
    width: 367px;
    height: 280px;
    background-color: #9E9E9E;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0; }

  .service_image_2 {
    width: 367px;
    height: 280px;
    background-color: #9E9E9E;
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    right: 0; }

  .order {
    order: -1;
    margin-top: -70px; }

  /*職種の設定*/
  .job_type {
    width: 100%;
    max-width: 1160px;
    margin: 70px auto;
    padding: 0 20px;
    box-sizing: border-box; }

  .job_wrap {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;
    justify-content: space-around;
    margin: 70px auto; }

  .job_items {
    width: 48%;
    display: flex; }

  .job_items_a {
    display: flex;
    width: 100%;
    height: 100%;
    height: auto;
    padding: 30px 40px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: var(--sh);
    box-sizing: border-box; }
    .job_items_a h4 {
      font-size: 2.4rem;
      font-weight: var(--bold);
      text-align: left;
      display: block;
      width: 100%;
      border-bottom: 2px solid transparent;
      border-image: var(--gradation);
      border-image-slice: 1;
      padding-bottom: 4px;
      margin-bottom: 18px; }
    .job_items_a p {
      font-size: 1.6rem;
      line-height: 1.6;
      margin-bottom: 18px;
      height: 105px; }

  .job_items_inner_wrap {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between; }

  .job_items_img {
    width: 260px;
    height: 155px;
    margin-bottom: 0; }

  .job_items_a_wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    order: -1; }

  .job_items_button {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #fff;
    border: 2px solid transparent;
    border-radius: 20px;
    background-image: linear-gradient(#fff, #fff), var(--gradation);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    padding: 4px 16px;
    box-sizing: border-box;
    box-shadow: var(--sh);
    font-size: 1.4rem;
    font-weight: var(--bold);
    margin-bottom: 16px; }

  .job_items_button:nth-child(2) {
    margin-bottom: 0; }

  .arrow_b {
    width: 10px;
    height: auto; } }
@media screen and (min-width: 1200px) {
  /*ファーストビューの設定*/
  .fv {
    height: 900px; }

  .fv_cap {
    position: absolute;
    top: 190px;
    left: 50px;
    font-size: 7rem;
    font-weight: var(--sbold); }

  .fv_p1 {
    font-size: 1.8rem;
    font-weight: var(--bold);
    position: absolute;
    top: 280px;
    left: 50px; }

  .fv_deco_pc {
    display: block;
    width: 2200px;
    height: auto;
    position: absolute;
    top: -250px;
    left: -780px; }

  .fv_menu {
    top: 340px;
    left: 50px;
    font-size: 1.6rem;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px; }
    .fv_menu a {
      display: flex;
      margin-bottom: 10px;
      gap: 8px; }
      .fv_menu a .tri {
        width: 0;
        height: 0;
        border-style: solid;
        border-right: 7px solid transparent;
        border-left: 7px solid transparent;
        border-top: 12px solid var(--black);
        border-bottom: 0;
        margin-top: 8px; }

  .fv_image_1 {
    width: 755px;
    height: 414px;
    border-radius: 20px;
    background-color: #9E9E9E;
    position: absolute;
    top: 190px;
    right: -30px; }

  .fv_image_2 {
    width: 390px;
    height: 250px;
    border-radius: 20px;
    background-color: #9E9E9E;
    position: absolute;
    top: 530px;
    right: 610px; }

  .service {
    padding: 0 0px; }

  .job_type {
    padding: 0 0px; } }
@media screen and (min-width: 1500px) {
  .fv_image_1 {
    width: 800px;
    height: 420px;
    right: calc(50% - 770px); }

  .fv_image_2 {
    right: calc(50% - 100px); } }
