@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:900,400,500,700");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
html,
body {
  margin: 0px;
  height: 100%;
}
/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}
main {
    background-color: #fcfcfc;
    overflow: hidden;
    width: 100%;
    /* min-width: 1440px; */
    /* min-height: 18546px; */
    position: relative;
}
*:focus {
    outline: none;
}

  /* header */

  header.navbar {
    position: fixed;
    /* top: 32px; */
    /* left: 80px; */
    max-width: 1040px;
    height: 80px;
    display: flex;
    margin: 0 auto;
    inset: 32px 0 auto 0;
    background-color: #ffffff;
    border-radius: 50px;
    z-index: 20;
    box-shadow: 0px 6px 48px #60a8943e;
  }
  @media screen and (max-width: 1079px) {
    header.navbar {
      margin: 0 20px;
    }
  }
  @media screen and (max-width: 959px) {
    header.navbar {
      margin: 0 20px;
      height: 48px;
    }
  }
  
  .navbar_wrap {
    width: 100%;
    height: auto;
    margin-right: 40px;
    margin-left: 40px;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
    padding: 16px;
  }
  @media screen and (max-width: 959px) {
    .navbar_wrap {
      margin-left: 32px;
      padding: 10px 12px 8px;
    }
  }

  .nav-logo {
    height: 40px;
    width: auto;
  }

  @media screen and (max-width: 959px) {
    .nav-logo {
      width: auto;
      height: 24px;
    }
  }

  .nav_inner {
    display: flex;
    align-items: center;
  }

  .nav_list {
    display: flex;
    flex-direction: row;
    margin-right: 30px;
    margin-left: 70px;
    height: 80px;
    justify-content: space-around;
  }
  @media screen and (max-width: 1079px) {
    .nav_list {
      margin-right: 30px;
      margin-left: 20px;
    }
  }
  
  .nav_item a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 80px;
    /* margin-left: 242px; */
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    color: #1b1b1b;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0;
    /* line-height: 24px; */
    white-space: nowrap;
    border-bottom: solid 4px #fff;
    transition: cubic-bezier(0.23, 1, 0.32, 1) 0.4s;
    transition-property: border-color, color;
  }
  @media screen and (max-width: 1079px) {
    .nav_list a {
      width: 90px;
    }
  }

  .nav_item a:hover {
    border-bottom: solid 4px #6cbba5;
    color: #6cbba5;
  }
  
  .navbar_entry a {
    width: 148px;
    height: 50px;
    background-color: #6cbba5;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    letter-spacing: 0;
    line-height: 24px;
    white-space: nowrap;
    transition: cubic-bezier(0.23, 1, 0.32, 1) 0.4s;
    transition-property: background-color, border-color, color;
  }

  .navbar_entry a:hover {
    background-color: #fff;
    border: 1px solid #6cbba5;
    color: #6cbba5;
  }

  /* hamburger menu */

  @media only screen and (max-width: 959px) {
    .nav_inner {
      position: fixed;
      right: -320px;
      top: 0;
      width: 300px;
      height: 100vh;
      padding-top: 100px;
      background-color: #fff;
      transition: all .3s;
      z-index: 200;
      overflow-y: auto;
      display: block;
    }
    nav {
      height: auto;
    }
    .hamburger {
      position: absolute;
      right: 32px;
      top: 4px;
      width: 40px; /* クリックしやすい幅 */
      height: 40px; /* クリックしやすい高さ */
      cursor: pointer;
      z-index: 300;
    }
    .nav_list {
      margin: 0;
      padding: 0;
      list-style: none;
      flex-direction: column;
      height: auto;
    }
    .nav_item {
      text-align: center;
      padding: 0 14px;
    }
    .nav_item a {
      display: flex;
      align-items: center;
      padding: 8px 0;
      border-bottom: 1px solid #eee;
      text-decoration: none;
      color: #333;
      width: 100%;
    }
    .nav_item a:hover {
      background-color: #fff;
      border-bottom: solid 1px #eee;
    }
    .navbar_entry a {
      width: 80%;
      margin: 40px auto;
    }
    .hamburger_border {
      position: absolute;
      left: 11px;
      width: 18px;
      height: 2px;
      background-color: #333;
      transition: all .3s;
    }
    .hamburger_border_top {
      top: 14px;
    }
    .hamburger_border_center {
      top: 20px;
    }
    .hamburger_border_bottom {
      top: 26px;
    }
    .black_bg {
      position: fixed;
      left: 0;
      top: 0;
      width: 100vw;
      height: 100vh;
      z-index: 100;
      background-color: #333;
      opacity: 0;
      visibility: hidden;
      transition: all .3s;
      cursor: pointer;
    }
  
    /* 表示された時用のCSS */
    .nav-open .nav_inner {
      right: 0;
    }
    .nav-open .black_bg {
      opacity: .8;
      visibility: visible;
    }
    .nav-open .hamburger_border_top {
      transform: rotate(45deg);
      top: 20px;
    }
    .nav-open .hamburger_border_center {
      width: 0;
      left: 50%;
    }
    .nav-open .hamburger_border_bottom {
      transform: rotate(-45deg);
      top: 20px;
    }
  }

  /* fv */

  .fv-wrap {
    background-color: #eefaf6;
  }

  #fv {
    width: 100%;
    max-width: 1800px;
    height: auto;
    margin: 0 auto;
    background-color: #eefaf6;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
  }
  @media screen and (max-width: 768px) {
    #fv {
      flex-direction: column-reverse;
      align-items: flex-start;
      margin: 0 auto -280px 19%;
    }
  }
  
  .fv-message {
    width: 640px;
    height: 640px;
    background-color: #6cbba5;
    border-radius: 336px;
    position: relative;
    /* top: -20px; */
    /* left: 6%; */
    z-index: 8;
    margin-right: -12%;
    margin-left: 10%;
    margin-top: -40px;
  }
  @media screen and (max-width: 1399px) {
    .fv-message {
      margin-right: 4%;
      margin-left: -6%;
      margin-top: -40px;
    }
  }
  @media screen and (max-width: 768px) {
    .fv-message {
      width: 320px;
      height: 320px;
      border-radius: 230px;
      top: -440px;
      left: -20%;
      /* margin-left: 0; */
    }
  }
  @media screen and (max-width: 479px) {
    .fv-message {
      width: 320px;
      height: 320px;
      border-radius: 230px;
      top: -440px;
      left: -24%;
      /* margin-left: 0; */
    }
  }

  .fv-message::after {
    content: '';
    display: block;
    position: absolute;
    top: 48px;
    left: 32px;
    width: 640px;
    height: 640px;
    background-color: #fff;
    border-radius: 336px;
  }
  @media screen and (max-width: 768px) {
    .fv-message::after {
      width: 320px;
      height: 320px;
      border-radius: 230px;
      top: 28px;
    }
  }

  .fv-message_section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 640px;
    height: 640px;
    z-index: 5;
    margin-top: 22px;
    margin-left: 42px;
  }
  @media screen and (max-width: 768px) {
    .fv-message_section {
      width: auto;
      height: 320px;
      border-radius: 230px;
      margin-left: 78px;
      align-items: flex-start;
    }
  }
  
  .fv-message_section h1 {
    width: 500px;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 900;
    color: #6cbba5;
    font-size: 48px;
    letter-spacing: 0;
    line-height: 72px;
  }
  @media screen and (max-width: 768px) {
    .fv-message_section h1 {
      width: auto;
      font-size: 22px;
      line-height: 1.5;
    }
  }
  
  .fv-message_section p {
    width: 500px;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    color: #1b1b1b;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 1.6;
    margin-top: 24px;
  }

  @media screen and (max-width: 768px) {
    .fv-message_section p {
      width: auto;
      font-size: 10px;
    }
  }

  .fv-image {
    width: 1208px;
    height: 1155px;
    position: relative;
    top: -60px;
  }
  @media screen and (max-width: 768px) {
    .fv-image {
      top: -10px;
      left: -20%;
      /* transform: translate(-50%, -50%); */
    }
  }

  .fv-image::after {
    content: '';
    display: block;
    position: absolute;
    top: 56px;
    left: 40px;
    width: 1100px;
    height: 1100px;
    background-color: #8cc7b0;
    border-radius: 550px;
    z-index: 0;
  }
  @media screen and (max-width: 768px) {
    .fv-image::after {
      width: 700px;
      height: 700px;
      border-radius: 350px;
    }
  }

  .fv-image.swiper {
    width: 1208px;
    height: 1155px;
    margin-bottom: 60px;
    margin-left: -4%;
  }
  /* @media screen and (max-width: 1620px) {
    .fv-image.swiper {
      margin-left: -100px;
    }
  }
  @media screen and (max-width: 1520px) {
    .fv-image.swiper {
      margin-left: -200px;
    }
  } */
  @media screen and (max-width: 1399px) {
    .fv-image.swiper {
      margin-left: -18%;
    }
  }
  @media screen and (max-width: 1280px) {
    .fv-image.swiper {
      margin-left: -30%;
    }
  }
  @media screen and (max-width: 959px) {
    .fv-image.swiper {
      margin-left: -50%;
    }
  }
  @media screen and (max-width: 768px) {
    .fv-image.swiper {
      width: auto;
      height: 760px;
      /* left: 17%; */
      margin-left: 10%;
    }
  }
  @media screen and (max-width: 479px) {
    .fv-image.swiper {
      width: auto;
      height: 760px;
      /* left: -20%; */
      margin-left: -100px;
    }
  }
  
  .fv-image_list.swiper-wrapper {
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    position: relative;
    width: 1100px;
    height: 1100px;
    overflow: hidden;
    /* background-color: #8cc7b0; */
    border-radius: 550px;
  }
  @media screen and (max-width: 768px) {
    .fv-image_list.swiper-wrapper {
      width: 800px;
      height: 700px;
      border-radius: 350px;
    }
  }

  .fv-image_list img {
    position: relative;
    display: block;
    z-index: 6;
  }
  
  .fv-image_list_item {
    /* position: absolute; */
    /* top: 103px; */
    /* left: 107px; */
    width: 1100px;
    height: 1100px;
    overflow: hidden;
    /* background-position: center; */
    /* background-size: cover; */
  }
  @media screen and (max-width: 768px) {
    .fv-image_list_item {
      width: 700px;
      height: 700px;
      border-radius: 350px;
    }
  }

  .fv-image_list_item img {
    display: block;
    width: 1100px;
    height: auto;
    margin: 0;
    padding: 0;
    object-fit: cover;
  }
  @media screen and (max-width: 768px) {
    .fv-image_list_item img {
      width: 700px;
      height: 700px;
      border-radius: 350px;
    }
  }

  /* fv-menu */

  .fv-menu {
    /* position: absolute; */
    width: 100%;
    height: auto;
    background-color: #eefaf6;
    padding-bottom: 400px;
  }
  @media screen and (max-width: 1079px) {
    .fv-menu {
      width: 100%;
      padding-bottom: 400px;
    }
  }

  .fv-menu_list-entry {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1060px;
    width: 100%;
    /* width: 100%; */
    margin: 0 auto;
  }
  .fv-menu_list-2 {
    max-width: none;
    display: grid;
    justify-items: normal;
    justify-content: space-between;
    grid-template-columns: 49% 49%;
    grid-template-rows: 200px 200px;
    gap: 12px;
    max-width: 1060px;
    width: 100%;
    margin: 0 auto 12px;
  }
  .fv-menu_list-3 {
    max-width: none;
    display: grid;
    justify-items: normal;
    justify-content: space-between;
    grid-template-columns: 32% 32% 32%;
    grid-template-rows: 200px;
    gap: 12px;
    max-width: 1060px;
    width: 100%;
    margin: 0 auto 12px;
  }
  @media screen and (max-width: 959px) {
    .fv-menu_list-2, .fv-menu_list-3, .fv-menu_list-entry {
      max-width: none;
      width: auto;
      margin: 0 20px 12px;
    }
  }
  @media screen and (max-width: 768px) {
    .fv-menu_list-2 {
      max-width: none;
      display: grid;
      justify-items: normal;
      grid-template-columns: 49% 49%;
      grid-template-rows: 200px 200px;
      gap: 12px;
      margin: 0 20px;
    }
    .fv-menu_list-3 {
      max-width: none;
      display: grid;
      justify-items: normal;
      grid-template-columns: 32% 32% 32%;
      grid-template-rows: 200px;
      gap: 12px;
      margin: 12px 20px;
    }
    .fv-menu_list-entry {
      margin: 0 20px;
    }
  }

  .fv-menu_list-2 li {
    /* max-width: 565px; */
    width: 100%;
    margin-right: 18px;
    margin-bottom: 18px;
  }
  /* @media screen and (max-width: 1440px) {
    .fv-menu_list-2 li {
      max-width: none;
      width: 100%;
      margin: 0;
    }
  } */
  @media screen and (max-width: 768px) {
    .fv-menu_list-2 li {
      max-width: none;
      width: 100%;
    }
  }

  /* .fv-menu_list-2 li:nth-child(2n) {
    margin-right: 0;
  } */

  .fv-menu_list-3 li {
    /* max-width: 370px; */
    width: 100%;
    margin-right: 18px;
    margin-bottom: 18px;
  }
  /* @media screen and (max-width: 1440px) {
    .fv-menu_list-3 li {
      max-width: none;
    }
  } */
  @media screen and (max-width: 768px) {
    .fv-menu_list-3 li {
      max-width: none;
      width: 100%;
    }
  }

  /* .fv-menu_list-3 li:last-child {
    margin-right: 0;
  } */

  .polygon-wrapper {
    position: relative;
    width: 36px;
    height: 36px;
    background-color: #6cbba5;
    border-radius: 18px;
  }
  
  .polygon-wrapper::after {
    content: '';
    position: absolute;
    top: 11px;
    left: 10px;
    width: 12px;
    height: auto;
    display: block;
    inline-size: 1rem;
    aspect-ratio: 1;
    background: #fff;
    rotate: 90deg;
    clip-path: polygon(25% 10%, 25% 90%, 75% 50%);
  }

  .fv-menu_text {
    position: relative;
    flex: 1;
    margin-top: -1.00px;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 400;
    color: #032841;
    font-size: 20px;
    letter-spacing: 0;
    /* line-height: 20px; */
  }
  
  .fv-menu_text_en {
    font-weight: 600;
    line-height: 26px;
    color: #7bd4bc;
  }
  @media screen and (max-width: 768px) {
    .fv-menu_text_en {
      font-size: 12px;
    line-height: 1.6;
    }
  }
  
  .fv-menu_text_jp {
    font-weight: 700;
    font-size: 32px;
    line-height: 41.6px;
  }
  @media screen and (max-width: 768px) {
    .fv-menu_text_jp {
      font-size: 20px;
      line-height: 1.4;
    }
    .fv-menu_text_jp span {
      display: block;
    }
  }

  .fv-menu_company {
    display: flex;
    flex-direction: column;
    /* max-width: 565px; */
    width: 100%;
    height: 200px;
    align-items: flex-end;
    justify-content: center;
    gap: 53px;
    padding: 45px 38px 45px 40px;
    /* position: absolute; */
    /* top: 0; */
    /* left: 2px; */
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0px 5px 26px #60a8943e;
    transition: cubic-bezier(0.23, 1, 0.32, 1) 0.4s;
    transition-property: background-color;
  }
  /* @media screen and (max-width: 1440px) {
    .fv-menu_company {
      max-width: none;
    }
  } */
  @media screen and (max-width: 768px) {
    .fv-menu_company {
      max-width: none;
      padding: 16px;
    }
  }

  .fv-menu_benefit {
    display: flex;
    flex-direction: column;
    /* max-width: 565px; */
    width: 100%;
    height: 200px;
    align-items: flex-end;
    justify-content: center;
    gap: 53px;
    padding: 45px 38px 45px 40px;
    /* position: absolute; */
    /* top: 0; */
    /* left: 585px; */
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0px 5px 26px #60a8943e;
    transition: cubic-bezier(0.23, 1, 0.32, 1) 0.4s;
    transition-property: background-color;
  }
  /* @media screen and (max-width: 1440px) {
    .fv-menu_benefit {
      max-width: none;
    }
  } */
  @media screen and (max-width: 768px) {
    .fv-menu_benefit {
      max-width: none;
      padding: 16px;
    }
  }
  
  .fv-menu_list_li_wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    gap: 24px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
  }
  @media screen and (max-width: 768px) {
    .fv-menu_list_li_wrap {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  
  .fv-menu_enmish-data {
    display: flex;
    flex-direction: column;
    /* max-width: 565px; */
    width: 100%;
    height: 200px;
    align-items: flex-end;
    justify-content: center;
    gap: 53px;
    padding: 45px 38px 45px 40px;
    /* position: absolute; */
    /* top: 218px; */
    /* left: 2px; */
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0px 5px 26px #60a8943e;
    transition: cubic-bezier(0.23, 1, 0.32, 1) 0.4s;
    transition-property: background-color;
  }
  /* @media screen and (max-width: 1440px) {
    .fv-menu_enmish-data {
      max-width: none;
    }
  } */
  @media screen and (max-width: 768px) {
    .fv-menu_enmish-data {
      max-width: none;
      padding: 16px;
    }
  }

  .fv-menu_our-culture {
    display: flex;
    flex-direction: column;
    /* max-width: 565px; */
    width: 100%;
    height: 200px;
    align-items: flex-end;
    justify-content: center;
    gap: 53px;
    padding: 45px 38px 45px 40px;
    /* position: absolute; */
    /* top: 218px; */
    /* left: 585px; */
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0px 5px 26px #60a8943e;
    transition: cubic-bezier(0.23, 1, 0.32, 1) 0.4s;
    transition-property: background-color;
  }
  /* @media screen and (max-width: 1440px) {
    .fv-menu_our-culture {
      max-width: none;
    }
  } */
  @media screen and (max-width: 768px) {
    .fv-menu_our-culture {
      max-width: none;
      padding: 16px;
    }
  }
  
  .fv-menu_interview {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 200px;
    align-items: flex-end;
    justify-content: center;
    gap: 53px;
    padding: 45px 38px 45px 40px;
    /* position: absolute; */
    /* top: 436px; */
    /* left: 2px; */
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0px 5px 26px #60a8943e;
    transition: cubic-bezier(0.23, 1, 0.32, 1) 0.4s;
    transition-property: background-color;
  }
  @media screen and (max-width: 768px) {
    .fv-menu_interview {
      max-width: none;
      width: auto;
      padding: 16px;
    }
  }
  
  .fv-menu_job-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 200px;
    align-items: flex-end;
    justify-content: center;
    gap: 53px;
    padding: 45px 38px 45px 40px;
    /* position: absolute; */
    /* top: 436px; */
    /* left: 391px; */
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0px 5px 26px #60a8943e;
    transition: cubic-bezier(0.23, 1, 0.32, 1) 0.4s;
    transition-property: background-color;
  }
  @media screen and (max-width: 768px) {
    .fv-menu_job-list {
      max-width: none;
      width: auto;
      padding: 16px;
    }
  }
  
  .fv-menu_qa {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 200px;
    align-items: flex-end;
    justify-content: center;
    gap: 53px;
    padding: 45px 38px 45px 40px;
    /* position: absolute; */
    /* top: 436px; */
    /* left: 780px; */
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0px 5px 26px #60a8943e;
    transition: cubic-bezier(0.23, 1, 0.32, 1) 0.4s;
    transition-property: background-color;
  }
  @media screen and (max-width: 768px) {
    .fv-menu_qa {
      max-width: none;
      width: auto;
      padding: 16px;
    }
  }

  .fv-menu_company:hover,
  .fv-menu_benefit:hover,
  .fv-menu_enmish-data:hover,
  .fv-menu_our-culture:hover,
  .fv-menu_interview:hover,
  .fv-menu_job-list:hover,
  .fv-menu_qa:hover {
    background-color: #6cbba5;
    border-radius: 20px;
    box-shadow: 0px 5px 26px #60a8943e;
  }

  .fv-menu_company:hover .fv-menu_text_en,
  .fv-menu_benefit:hover .fv-menu_text_en,
  .fv-menu_enmish-data:hover .fv-menu_text_en,
  .fv-menu_our-culture:hover .fv-menu_text_en,
  .fv-menu_interview:hover .fv-menu_text_en,
  .fv-menu_job-list:hover .fv-menu_text_en,
  .fv-menu_qa:hover .fv-menu_text_en,
  .fv-menu_company:hover .fv-menu_text_jp,
  .fv-menu_benefit:hover .fv-menu_text_jp,
  .fv-menu_enmish-data:hover .fv-menu_text_jp,
  .fv-menu_our-culture:hover .fv-menu_text_jp,
  .fv-menu_interview:hover .fv-menu_text_jp,
  .fv-menu_job-list:hover .fv-menu_text_jp,
  .fv-menu_qa:hover .fv-menu_text_jp {
    color: #fff;
  }

  .fv-menu_company:hover .polygon-wrapper,
  .fv-menu_benefit:hover .polygon-wrapper,
  .fv-menu_enmish-data:hover .polygon-wrapper,
  .fv-menu_our-culture:hover .polygon-wrapper,
  .fv-menu_interview:hover .polygon-wrapper,
  .fv-menu_job-list:hover .polygon-wrapper,
  .fv-menu_qa:hover .polygon-wrapper {
    background-color: #fff;
  }

  .fv-menu_company:hover .polygon-wrapper::after,
  .fv-menu_benefit:hover .polygon-wrapper::after,
  .fv-menu_enmish-data:hover .polygon-wrapper::after,
  .fv-menu_our-culture:hover .polygon-wrapper::after,
  .fv-menu_interview:hover .polygon-wrapper::after,
  .fv-menu_job-list:hover .polygon-wrapper::after,
  .fv-menu_qa:hover .polygon-wrapper::after {
    background-color: #6cbba5;
  }

  .fv-menu_entry {
    /* position: absolute; */
    /* top: 654px; */
    /* left: 0; */
    display: flex;
    align-items: center;
    /* width: 1148px; */
    width: 100%;
    height: 130px;
    padding: 0 80px 0 0;
    border-radius: 20px;
    box-shadow: 0px 5px 26px #60a8943e;
    background: linear-gradient(
      90deg,
      rgba(108, 187, 165, 1) 0%,
      rgba(96, 168, 148, 1) 100%
    );
  }
  @media screen and (max-width: 768px) {
    .fv-menu_entry {
      max-width: none;
      width: 100%;
      height: auto;
      margin: auto;
      padding: 0 20px 0 0;
    }
  }

  /* .fv-menu_entry::after {
    content: url('../images/_link_blank-w.svg');
    display: block;
    width: 28px;
    height: 28px;
  } */

  .fv-menu_list-entry_text {
    /* position: absolute; */
    /* top: 24px; */
    /* left: 87px; */
    width: 100%;
    height: 78px;
    display: flex;
    gap: 20px;
    /* margin-left: 80px; */
    margin: 0 0 0 80px;
    align-items: center;
    justify-content: flex-start;
  }
  @media screen and (max-width: 768px) {
    .fv-menu_list-entry_text {
      flex-direction: column;
      width: 80%;
      height: 100%;
      margin: 16px 0 16px 24px;
      gap: 4px;
    }
  }
  
  .fv-menu_list-entry_text .entry {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 184px;
    height: 78px;
    font-family: "Helvetica Neue-Bold", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 54px;
    letter-spacing: 0;
    line-height: 54px;
  }
  @media screen and (max-width: 768px) {
    .fv-menu_list-entry_text .entry {
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
      height: auto;
      font-size: 36px;
      line-height: 1.2;
    }
  }
  
  .fv-menu_list-entry_text .entry-text {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    /* margin-top: 27px; */
    width: 432px;
    height: 28px;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 500;
    color: #ffffff;
    font-size: 24px;
    letter-spacing: 0;
    line-height: 24px;
    white-space: nowrap;
  }
  @media screen and (max-width: 768px) {
    .fv-menu_list-entry_text .entry-text {
      flex-direction: column;
      width: 100%;
      font-size: 16px;
    }
  }

  /* message */
  #message {
    /* position: absolute; */
    /* top: 1996px; */
    /* left: -804px; */
    position: relative;
    width: 100%;
    height: auto;
    z-index: 0;
    padding-top: 80px;
    margin: -200px auto 200px;
  }

  #message::after {
    content:'';
    position: absolute;
    display: flex;
    justify-content: center;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3048px;
    height: 1531px;
    margin: 0 auto;
    background-color: #6cbba5;
    border-radius: 3000px 3000px 0px 0px;
    z-index: -1;
  }

  .message-top {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    margin: 200px auto;
  }
  @media screen and (max-width: 1079px) {
    .message-top {
      flex-direction: column;
      align-items: center;
      margin: 160px auto;
    }
  }
  @media screen and (max-width: 768px) {
    .message-top {
      flex-direction: column;
      align-items: center;
      margin: 100px auto;
    }
  }
  
  .message-top_img {
    width: 660px;
    height: 660px;
    overflow: hidden;
    border-radius: 330px;
  }
  @media screen and (max-width: 768px) {
    .message-top_img {
      width: 480px;
      height: 480px;
      border-radius: 240px;
    }
  }

  .message-top_img img {
    width: 660px;
    height: 660px;
    transition: scale 1.6s cubic-bezier(0.19, 1, 0.22, 1);
    scale: 1.2;
  }
  @media screen and (max-width: 768px) {
    .message-top_img img {
      width: 480px;
      height: 480px;
      border-radius: 240px;
    }
  }
  
  .message-top_text {
    display: flex;
    flex-direction: column;
    width: 600px;
    align-items: flex-end;
    justify-content: center;
    gap: 53px;
    padding: 45px 38px;
    /* position: absolute; */
    /* position: relative; */
    /* top: 279px; */
    /* left: 480px; */
    background-color: #f6f6f6;
    border-radius: 40px;
    margin-bottom: -100px;
    /* margin-right: 200px; */
    margin-left: -200px;
    z-index: 1;
  }
  @media screen and (max-width: 1079px) {
    .message-top_text {
      align-items: flex-end;
      margin-top: -160px;
      margin-right: 0;
      margin-left: 0;
    }
  }
  @media screen and (max-width: 768px) {
    .message-top_text {
      width: auto;
      margin-right: 20px;
      margin-bottom: 0;
      margin-left: 20px;
    }
  }

  .frame-76::before {
    content:'';
    position: absolute;
    width: 160px;
    left: -160px;
  }
  
  .element-6 {
    position: relative;
    align-self: stretch;
    margin-top: -1.00px;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 500;
    color: #032841;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 1.5;
  }
  @media screen and (max-width: 768px) {
    .element-6  {
      font-size: 16px;
      line-height: 1.8;
    }
  }
  
  .frame-77 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    flex: 0 0 auto;
  }
  @media screen and (max-width: 768px) {
    .frame-77  {
      display: flex;
      width: 100%;
      justify-content: flex-end;
      text-align: end;
    }
  }
  
  .div-2 {
    position: relative;
    width: 166px;
    /* height: 73px; */
    margin-top: -1.00px;
    font-family: "Noto SansJP", Helvetica;
    font-weight: 600;
    color: transparent;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 18px;
  }
  
  .text-wrapper-76 {
    font-weight: 500;
    color: #032841;
    line-height: 0.1px;
  }
  
  .text-wrapper-77 {
    font-family: "Noto Serif JP", Helvetica;
    font-weight: 700;
    color: #032841;
    font-size: 36px;
    line-height: 1.6;
  }
  @media screen and (max-width: 768px) {
    .text-wrapper-77  {
      font-size: 28px;
    }
  }
  
  .company-message {
    display: flex;
    flex-direction: column;
    max-width: 1080px;
    height: auto;
    align-items: center;
    gap: 39px;
    padding: 68px 60px;
    /* position: absolute; */
    /* top: 1084px; */
    /* left: 984px; */
    background-color: #ffffff;
    border-radius: 40px;
    margin: 100px auto;
  }
  @media screen and (max-width: 1280px) {
    .company-message {
      width: 80%;
    }
  }
  @media screen and (max-width: 768px) {
    .company-message {
      width: auto;
      margin-right: 20px;
      margin-left: 20px;
      padding: 36px 32px;
    }
  }
  
  .company-message_heading {
    /* position: relative; */
    align-self: stretch;
    margin-top: -1.00px;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    color: #60a894;
    font-size: 40px;
    letter-spacing: 0;
    line-height: 60px;
  }
  .company-message_heading span {
    display: block;
  }
  @media screen and (max-width: 768px) {
    .company-message_heading {
      font-size: 26px;
      line-height: 1.5;
    }
    .company-message_heading span {
      display: inline;
    }
  }
  
  .DX-salesforce-saas {
    /* position: relative; */
    align-self: stretch;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 500;
    color: #1b1b1b;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 30.6px;
  }
  @media screen and (max-width: 768px) {
    .DX-salesforce-saas {
      font-size: 16px;
      line-height: 1.8;
    }
  }
  
  .company-message_slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0px 60px;
    margin: 60px auto;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
  }
  @media screen and (max-width: 768px) {
    .company-message_slide {
      padding: 0;
      margin: 36px auto;
    }
  }
  
  .company-message_slide img {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  
  
  /* .text-wrapper-78 {
    font-weight: 500;
    color: #032841;
    font-size: 36px;
    line-height: 46.8px;
  } */

  /* benefit */
  #benefit {
    /* position: absolute; */
    /* top: 4167px; */
    /* left: -343px; */
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 0;
  }
  @media screen and (max-width: 1079px) {
    #benefit {
      width: auto;
      margin: 0 20px;
    }
  }

  #benefit::after {
    content:'';
    position: absolute;
    display: block;
    justify-content: center;
    top: -4%;
    left: -30%;
    width: 1338px;
    height: 1338px;
    background-color: #eefaf6;
    border-radius: 669px;
    z-index: -1;
    margin: 0 auto;
  }
  
  /* .benefit-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 1338px;
    height: 1338px;
    background-color: #eefaf6;
    border-radius: 669px;
  } */

  /* .benefit-ttl {
    position: absolute;
    top: 108px;
    left: 476px;
    width: 1199px;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    color: #032841;
    font-size: 48px;
    letter-spacing: 0;
    line-height: 48px;
    white-space: nowrap;
    margin: 60px auto;
  } */

  .benefit-ttl {
    max-width: 1000px;
    width: auto;
    /* height: auto; */
    position: relative;
    margin: 100px auto 80px auto;
    z-index: 5;
  }
  @media screen and (max-width: 768px) {
    .benefit-ttl {
      width: auto;
      margin-right: 20px;
      margin-left: 20px;
    }
  }

  .benefit-ttl h2 {
    position: relative;
    /* top: 45px; */
    /* left: 0; */
    max-width: 1000px;
    width: auto;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    color: #1b1b1b;
    font-size: 39px;
    letter-spacing: 0;
    line-height: 39px;
    /* white-space: nowrap; */
  }
  @media screen and (max-width: 768px) {
    .benefit-ttl h2 {
      width: auto;
      line-height: 1.4;
      font-size: 32px;
    }
  }
  @media screen and (max-width: 479px) {
    .benefit-ttl h2 {
      width: auto;
      line-height: 1.4;
      font-size: 32px;
    }
    .benefit-ttl h2 span {
      display: block;
    }
  }

  .benefit-ttl h2::before {
    content: 'Benefit';
    position: absolute;
    /* top: 0; */
    /* left: 0; */
    /* width: 1199px; */
    font-family: "Helvetica Neue-Bold", Helvetica;
    font-weight: 700;
    color: #0328411a;
    font-size: 64px;
    letter-spacing: 0;
    /* line-height: 96px; */
    white-space: nowrap;
    display: inline-block;
    margin-top: -16px;
  }
  @media screen and (max-width: 768px) {
    .benefit-ttl h2::before {
      margin-top: -32px;
    }
  }
  @media screen and (max-width: 479px) {
    .benefit-ttl h2::before {
      font-size: 52px;
    }
  }

  .benefit-1 {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    width: auto;
    align-items: center;
    gap: 48px;
    margin: 0 auto 80px;
  }
  @media screen and (max-width: 768px) {
    .benefit-1 {
      width: auto;
      margin-right: 20px;
      margin-left: 20px;
    }
  }
  
  .frame-70 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
  }
  @media screen and (max-width: 768px) {
    .frame-70  {
      width: auto;
    }
  }
  
  .group-wrapper {
    position: relative;
    max-width: 1000px;
    width: 100%;
    height: 85px;
    background-color: #6cbba5;
    border-radius: 50px;
  }
  @media screen and (max-width: 768px) {
    .group-wrapper  {
      width: 100%;
      height: auto;
      border-radius: 28px;
    }
  }
  
  .group-2 {
    position: relative;
    top: 13px;
    left: 22px;
    width: auto;
    display: flex;
    gap: 20px;
  }
  @media screen and (max-width: 768px) {
    .group-2  {
      flex-direction: column;
      align-items: center;
      width: auto;
      height: auto;
      top: 0;
      left: 0;
      gap: 12px;
      margin: 20px 24px;
    }
  }
  
  .group-3 {
    width: 62px;
    height: 60px;
    position: relative;
  }
  
  .benefit_ttl {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .benefit_ttl_num {
    /* position: absolute; */
    top: 0;
    left: 5px;
    width: 49px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Helvetica Neue-Bold", Helvetica;
    font-weight: 700;
    color: #6cbba5;
    font-size: 44px;
    text-align: center;
    letter-spacing: 0;
    line-height: 66px;
    white-space: nowrap;
  }
  
  .benefit_ttl_text {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    margin-top: 7px;
    width: auto;
    height: 40px;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 28px;
    letter-spacing: 0;
    line-height: 1.6;
    /* white-space: nowrap; */
  }
  @media screen and (max-width: 768px) {
    .benefit_ttl_text  {
      width: auto;
      height: auto;
      font-size: 25px;
      line-height: 1.5;
    }
  }
  
  .benefit-1_text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
  }
  
  .benefit-1_text p {
    position: relative;
    max-width: 920px;
    width: 100%;
    height: auto;
    /* margin-top: -1.00px; */
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 500;
    color: #1b1b1b;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 1.5;
  }
  @media screen and (max-width: 768px) {
    .benefit-1_text p  {
      width: auto;
      height: auto;
      font-size: 16px;
      line-height: 1.8;
      margin: 0 8px;
    }
  }
  
  .benefit-1_skill-1 {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    position: relative;
    max-width: 920px;
    width: 100%;
  }
  @media screen and (max-width: 768px) {
    .benefit-1_skill-1  {
      width: 100%;
      height: auto;
    }
  }
  
  .benefit-1_skill-1 section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 30px 49px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    background-color: #ffffff;
    border-radius: 40px;
    border: 1px solid;
    border-color: #8cc7b0;
  }
  @media screen and (max-width: 768px) {
    .benefit-1_skill-1 section  {
      gap: 8px;
      padding: 24px 32px;
      align-items: center;
    }
  }
  
  .benefit-1_skill-1_num {
    /* position: relative; */
    width: 100px;
    /* height: 38px; */
    background-color: #6cbba5;
    border-radius: 4px;
    display: inline-block;
  }
  
  .benefit-1_skill-1_num span {
    display: inline-block;
    width: 100px;
    height: 100%;
    padding: 10px 0;
    color: #ffffff;
    font-size: 18px;
    /* line-height: 27px; */
    white-space: nowrap;
    /* position: absolute; */
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    letter-spacing: 0;
    text-align: center;
  }
  @media screen and (max-width: 768px) {
    .benefit-1_skill-1  {
      width: auto;
      height: auto;
    }
  }
  
  .benefit-1_skill-1 h4 {
    position: relative;
    width: 100%;
    /* height: 49px; */
    margin: 4px 0;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    color: #60a894;
    font-size: 28px;
    letter-spacing: 0;
    line-height: 1.5;
    /* white-space: nowrap; */
  }
  @media screen and (max-width: 768px) {
    .benefit-1_skill-1 h4  {
      width: auto;
      height: auto;
      font-size: 24px;
    }
  }
  
  .benefit-1_skill-1 section p {
    position: relative;
    width: 100%;
    /* height: 54px; */
    margin: 4px 0;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 500;
    color: #1b1b1b;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 27px;
  }
  @media screen and (max-width: 768px) {
    .benefit-1_skill-1 section p  {
      width: auto;
      height: auto;
      font-size: 16px;
      line-height: 1.8;
    }
  }
  
  .benefit-2 {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    width: auto;
    align-items: center;
    gap: 48px;
    margin: 0 auto 80px;
  }
  @media screen and (max-width: 768px) {
    .benefit-2 {
      width: auto;
      margin-right: 20px;
      margin-left: 20px;
    }
  }
  
  /* .frame-53 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 85px;
    background-color: #6cbba5;
    border-radius: 50px;
  } */

  .benefit-2_list {
    display: grid;
    grid-template-columns: 49% 49%;
    grid-template-rows: 528px;
    flex-direction: row;
    /* flex-wrap: wrap; */
    max-width: 920px;
    height: auto;
    gap: 18px;
    /* position: absolute; */
    /* top: 117px; */
    /* left: 51px; */
  }
  @media screen and (max-width: 768px) {
    .benefit-2_list {
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
      width: 100%;
      margin-right: 20px;
      margin-left: 20px;
      gap: 10px;
    }
  }
  
  .benefit-2_list li {
    /* position: relative; */
    /* grid-row: 1 / 2; */
    /* grid-column: 1 / 2; */
    width: 100%;
    height: 528px;
    /* margin: 0 18px 18px 0; */
    background-color: #ffffff;
    border-radius: 40px;
    border: 1px solid;
    border-color: #8cc7b0;
  }
  @media screen and (max-width: 768px) {
    .benefit-2_list li {
      width: 100%;
      height: auto;
      margin: 0 0 8px 0;
      border-radius: 30px;
    }
  }

  .benefit-2_list li:nth-child(2n) {
    margin-right: 0;
  }
  
  .benefit-2_list_wrap {
    /* position: absolute; */
    /* top: 288px; */
    /* left: 44px; */
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 24px;
  }
  @media screen and (max-width: 959px) {
    .benefit-2_list_wrap {
      width: auto;
      height: auto;
      margin: 32px 24px;
    }
  }

  .benefit-2_list_img {
    width: 400px;
    height: 225px;
    border-radius: 12px;
    overflow: hidden;
  }
  @media screen and (max-width: 959px) {
    .benefit-2_list_img {
      width: 100%;
      height: auto;
      aspect-ratio: 16 / 9;
    }
  }

  .benefit-2_list_img img {
    /* position: absolute; */
    /* top: 43px; */
    /* left: 40px; */
    width: 400px;
    height: 225px;
    display: block;
    margin: 0 auto;
    transition: scale 1.6s cubic-bezier(0.19, 1, 0.22, 1);
    scale: 1.2;
  }
  @media screen and (max-width: 959px) {
    .benefit-2_list_img img {
      width: 100%;
      height: auto;
      aspect-ratio: 16 / 9;
    }
  }

  .benefit-2_list_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
  }
  
  .benefit-2_list_text h4 {
    width: 400px;
    /* height: 29px; */
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    color: #60a894;
    font-size: 24px;
    letter-spacing: 0;
    line-height: 36px;
    /* white-space: nowrap; */
  }
  @media screen and (max-width: 959px) {
    .benefit-2_list_text h4  {
      width: auto;
      height: auto;
      font-size: 24px;
    }
  }
  
  .benefit-2_list_text p {
    height: 90px;
    font-weight: 500;
    color: #1b1b1b;
    font-size: 20px;
    line-height: 1.5;
    font-family: "Noto Sans JP", Helvetica;
    letter-spacing: 0;
  }
  @media screen and (max-width: 768px) {
    .benefit-2_list_text p  {
      height: auto;
      font-size: 16px;
      line-height: 1.8;
    }
  }
  
  .frame-68 {
    /* position: absolute; */
    top: 288px;
    left: 40px;
    width: 399px;
    height: 187px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .text-wrapper-66 {
    height: 138px;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 500;
    color: #1b1b1b;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 30px;
  }
  
  .benefit-3 {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    width: auto;
    align-items: center;
    gap: 48px;
    margin: 0 auto 80px;
  }
  @media screen and (max-width: 768px) {
    .benefit-3 {
      width: auto;
      margin-right: 20px;
      margin-left: 20px;
    }
  }
  
  .benefit-3_list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(1, minmax(0, 1fr));
    width: auto;
    max-width: 920px;
    height: 383px;
    gap: 18px;
    /* position: absolute; */
    /* top: 117px; */
    /* left: 54px; */
  }
  @media screen and (max-width: 768px) {
    .benefit-3_list {
      width: 100%;
      height: auto;
      margin-right: 20px;
      margin-left: 20px;
      gap: 18px;
      display: flex;
      flex-direction: column;
    }
  }
  
  .benefit-3_list li {
    /* position: relative; */
    /* grid-row: 1 / 2; */
    /* grid-column: 1 / 2; */
    width: 100%;
    height: 383px;
    background-color: #ffffff;
    border-radius: 40px;
    border: 1px solid;
    border-color: #8cc7b0;
  }
  @media screen and (max-width: 768px) {
    .benefit-3_list li {
      width: auto;
      height: auto;
      gap: 18px;
      display: flex;
      flex-direction: column;
      border-radius: 30px;
      margin-right: 20px;
      margin-left: 20px;
    }
  }
  
  .benefit-3_list_wrap {
    /* position: absolute; */
    /* top: 219px; */
    /* left: 32px; */
    /* width: 249px; */
    /* height: 134px; */
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 40px 24px;
  }
  @media screen and (max-width: 768px) {
    .benefit-3_list_wrap {
      width: auto;
      height: auto;
      margin-right: 20px;
      margin-left: 20px;
      gap: 18px;
      align-items: center;
    }
  }

  .benefit-3_list_wrap img {
    /* position: absolute; */
    /* top: 50px; */
    /* left: 55px; */
    width: 200px;
    height: 133px;
    display: block;
    margin: 0 auto;
  }
  
  .benefit-3_list_wrap h4 {
    /* height: 29px; */
    height: auto;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    color: #60a894;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 30px;
    white-space: nowrap;
  }
  @media screen and (max-width: 768px) {
    .benefit-3_list_wrap h4 {
      height: auto;
      font-size: 24px;
    }
  }
  
  .benefit-3_list_wrap p {
    height: 89px;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 500;
    color: #1b1b1b;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 1.6;
  }
  @media screen and (max-width: 768px) {
    .benefit-3_list_wrap p {
      height: auto;
      font-size: 16px;
      line-height: 1.8;
    }
  }
  
  /* .frame-58 {
    position: relative;
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    width: 311px;
    height: 383px;
    background-color: #ffffff;
    border-radius: 40px;
    border: 1px solid;
    border-color: #8cc7b0;
  } */
  
  /* .frame-59 {
    position: absolute;
    top: 219px;
    left: 31px;
    width: 249px;
    height: 134px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  } */
  
  /* .frame-60 {
    position: relative;
    grid-row: 1 / 2;
    grid-column: 3 / 4;
    width: 311px;
    height: 383px;
    background-color: #ffffff;
    border-radius: 40px;
    border: 1px solid;
    border-color: #8cc7b0;
  } */
  
  .frame-61 {
    /* position: absolute; */
    top: 50px;
    left: 56px;
    width: 200px;
    height: 133px;
  }


  /* enmish-data */
  #enmish-data {
    /* position: absolute; */
    /* top: 7557px; */
    /* left: 0; */
    width: 100%;
    /* height: 2689px; */
    /* display: flex; */
    /* flex-direction: column; */
    /* gap: 66px; */
    background-color: #eefaf6;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 80px;
  }
  @media screen and (max-width: 768px) {
    #enmish-data {
      width: 100%;
      display: flex;
      flex-direction: column;
      background-color: #eefaf6;
      margin: 0 auto;
    }
  }

  .enmish-data-ttl {
    max-width: 1000px;
    width: auto;
    position: relative;
    margin: 100px auto 80px auto;
    z-index: 5;
  }
  @media screen and (max-width: 768px) {
    .enmish-data-ttl {
      width: auto;
      margin-right: 20px;
      margin-left: 20px;
    }
  }

  .enmish-data-ttl h2 {
    position: relative;
    max-width: 1000px;
    width: auto;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    color: #1b1b1b;
    font-size: 39px;
    letter-spacing: 0;
    line-height: 39px;
  }
  @media screen and (max-width: 768px) {
    .enmish-data-ttl h2 {
      width: auto;
      line-height: 1.4;
      font-size: 32px;
    }
  }
  @media screen and (max-width: 479px) {
    .enmish-data-ttl h2 {
      width: auto;
      line-height: 1.4;
      font-size: 32px;
    }
  }

  .enmish-data-ttl h2::before {
    content: 'Enmish Data';
    position: absolute;
    /* top: 0; */
    /* left: 0; */
    /* width: 1199px; */
    font-family: "Helvetica Neue-Bold", Helvetica;
    font-weight: 700;
    color: #0328411a;
    font-size: 64px;
    letter-spacing: 0;
    /* line-height: 96px; */
    white-space: nowrap;
    display: inline-block;
    margin-top: -16px;
  }
  @media screen and (max-width: 768px) {
    .enmish-data-ttl h2::before {
      margin-top: -32px;
    }
  }
  @media screen and (max-width: 479px) {
    .enmish-data-ttl h2::before {
      font-size: 52px;
    }
    .enmish-data-ttl h2 span {
      display: block;
    }
  }
  
  .enmish-data-list {
    display: flex;
    max-width: 1040px;
    width: 100%;
    height: 100%;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin: 80px auto;
  }
  @media screen and (max-width: 1079px) {
    .enmish-data-list {
      width: auto;
      margin: 80px 20px;
    }
  }
  @media screen and (max-width: 768px) {
    .enmish-data-list {
      width: auto;
      margin-top: 0;
      margin-right: 20px;
      margin-left: 20px;
    }
  }
  
  .enmish-data-list-2 {
    display: grid;
    grid-template-columns: 49% 49%;
    grid-template-rows: auto;
    height: auto;
    gap: 18px;
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 100%;
    max-width: 1040px;
  }
  @media screen and (max-width: 768px) {
    .enmish-data-list-2 {
      display: flex;
      flex-direction: column;
      width: 100%;
      height: auto;
    }
  }
  
  .enmish-data-list-2 li {
    width: 100%;
    height: auto;
    background-color: #ffffff;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
  }
  @media screen and (max-width: 768px) {
    .enmish-data-list-2 li {
      width: 100%;
      align-items: center;
      padding-bottom: 0;
    }
  }
  
  .enmish-data-list-2 li h3 {
    /* position: absolute; */
    /* top: 30px; */
    /* left: 56px; */
    /* width: 100%; */
    margin: 28px auto 28px 50px;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    color: #6cbba5;
    font-size: 28px;
    letter-spacing: 0;
    /* line-height: 28px; */
  }
  @media screen and (max-width: 768px) {
    .enmish-data-list-2 li h3 {
      font-size: 24px;
      text-align: center;
      margin: 28px auto 12px;
    }
  }
  
  .enmish-data-list-2 li img {
    width: auto;
    max-width: 450px;
    height: auto;
    max-height: 360px;
    display: block;
    object-fit: cover;
    margin: 0 auto;
  }
  @media screen and (max-width: 959px) {
    .enmish-data-list-2 li img {
      width: 100%;
      max-width: 300px;
      height: auto;
      margin: 40px auto;
    }
  }
  @media screen and (max-width: 768px) {
    .enmish-data-list-2 li img {
      max-width: 300px;
    }
  }
  
  .frame-42 {
    position: relative;
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    width: 579px;
    height: 476px;
    background-color: #ffffff;
    border-radius: 40px;
  }
  
  .image-2 {
    /* position: absolute; */
    top: 91px;
    left: 61px;
    width: 454px;
    height: 358px;
    object-fit: cover;
  }
  
  .frame-43 {
    position: relative;
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    width: 579px;
    height: 476px;
    background-color: #ffffff;
    border-radius: 40px;
  }
  
  .image-3 {
    /* position: absolute; */
    top: 160px;
    left: 22px;
    width: 538px;
    height: 216px;
    object-fit: cover;
  }
  
  .frame-44 {
    position: relative;
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    width: 579px;
    height: 476px;
    background-color: #ffffff;
    border-radius: 40px;
  }
  
  .image-4 {
    /* position: absolute; */
    top: 88px;
    left: 43px;
    width: 486px;
    height: 360px;
    object-fit: cover;
  }
  
  .frame-45 {
    position: relative;
    grid-row: 3 / 4;
    grid-column: 1 / 2;
    width: 579px;
    height: 476px;
    background-color: #ffffff;
    border-radius: 40px;
  }
  
  .text-wrapper-46 {
    /* position: absolute; */
    top: 30px;
    left: 56px;
    width: 440px;
    font-weight: 700;
    color: #6cbba5;
    font-size: 28px;
    line-height: 28px;
    font-family: "Noto Sans JP", Helvetica;
    letter-spacing: 0;
  }
  
  /* .image-5 {
    position: absolute;
    top: 86px;
    left: 69px;
    width: 460px;
    height: 362px;
    object-fit: cover;
  } */
  
  /* .frame-46 {
    position: relative;
    grid-row: 3 / 4;
    grid-column: 2 / 3;
    width: 579px;
    height: 476px;
    background-color: #ffffff;
    border-radius: 40px;
  } */
  
  .trading-results {
    /* position: absolute; */
    /* top: 102px; */
    /* left: 96px; */
    width: 288px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto 40px;
  }
  @media screen and (max-width: 768px) {
    .trading-results {
      width: 50%;
      height: auto;
      margin-bottom: 12px;
    }
  }

  .trading-results::before {
    content: url('../images/enmish-data/trading-results_before.svg');
    display: block;
    height: 140px;
  }

  .trading-results::after {
    content: url('../images/enmish-data/trading-results_after.svg');
    display: block;
    height: 140px;
  }

  
  .trading-results p {
    /* position: absolute; */
    /* top: 15px; */
    /* left: 47px; */
    width: 288px;
    height: 96px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-family: "Helvetica Neue-Bold", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 100px;
    text-align: center;
    letter-spacing: 0;
    line-height: 100px;
    white-space: nowrap;
    margin: 0 auto;
  }
  @media screen and (max-width: 768px) {
    .trading-results p {
      width: 100%;
      height: auto;
    }
  }
  
  .trading-results_num {
    font-weight: 700;
    color: #b59318;
  }
  @media screen and (max-width: 768px) {
    .trading-results_num {
      width: 100%;
      height: auto;
      font-size: 80px;
    }
  }
  
  .trading-results_text {
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    color: #b59318;
    font-size: 36px;
    line-height: 36px;
  }
  
  /* .enmish-data-list-2 li img.layer-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 83px;
    height: 140px;
  } */
  
  /* .enmish-data-list-2 li img.layer-3 {
    position: absolute;
    top: 0;
    left: 305px;
    width: 82px;
    height: 140px;
  } */
  
  .frame-48 {
    /* position: absolute; */
    top: 282px;
    left: 54px;
    width: 472px;
    height: 152px;
  }
  
  .frame-49 {
    position: relative;
    grid-row: 4 / 5;
    grid-column: 1 / 2;
    width: 579px;
    height: 476px;
    background-color: #ffffff;
    border-radius: 40px;
  }
  
  .image-6 {
    /* position: absolute; */
    top: 116px;
    left: 78px;
    width: 415px;
    height: 310px;
    object-fit: cover;
  }
  
  .frame-50 {
    position: relative;
    grid-row: 4 / 5;
    grid-column: 2 / 3;
    width: 579px;
    height: 476px;
    background-color: #ffffff;
    border-radius: 40px;
  }
  
  .image-7 {
    /* position: absolute; */
    top: 86px;
    left: 45px;
    width: 481px;
    height: 350px;
    object-fit: cover;
  }
  
  .enmish-data-list-3 {
    display: grid;
    grid-template-columns: 32% 32% 32%;
    grid-template-rows: auto;
    height: auto;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    max-width: 1040px;
  }
  @media screen and (max-width: 768px) {
    .enmish-data-list-3 {
      display: flex;
      align-items: center;
      flex-direction: column;
      gap: 18px;
      position: relative;
      align-self: stretch;
      width: 100%;
      height: auto;
      flex: 0 0 auto;
    }
  }
  
  .enmish-data-list-3 li {
    position: relative;
    /* width: 380px; */
    width: 100%;
    height: 280px;
    background-color: #ffffff;
    border-radius: 40px;
  }
  @media screen and (max-width: 768px) {
    .enmish-data-list-3 li {
      width: 100%;
      border-radius: 30px;
    }
  }
  
  .enmish-data-list-3 p {
    /* position: absolute; */
    /* top: 153px; */
    /* left: 31px; */
    width: 330px;
    height: 96px;
    margin: 40px auto 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-family: "Helvetica Neue-Bold", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 120px;
    text-align: center;
    line-height: 120px;
    white-space: nowrap;
    letter-spacing: 0;
  }
  @media screen and (max-width: 768px) {
    .enmish-data-list-3 p {
      width: auto;
      height: auto;
    }
  }
  
  /* .text-wrapper-49 {
    font-weight: 700;
    color: #60a894;
  } */
  
  .text-wrapper-50 {
    font-weight: 700;
    color: #60a894;
    letter-spacing: 0;
  }
  
  .text-wrapper-51 {
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    color: #60a894;
    font-size: 50px;
    letter-spacing: 0;
    line-height: 50px;
  }
  
  .enmish-data-list-3 li h3 {
    /* position: absolute; */
    /* top: 31px; */
    /* left: 48px; */
    margin: 28px auto 28px;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    color: #6cbba5;
    font-size: 28px;
    text-align: center;
    letter-spacing: 0;
    line-height: 28px;
  }
  @media screen and (max-width: 768px) {
    .enmish-data-list-3 li h3 {
      font-size: 24px;
    }
  }
  
  /* .text-wrapper-53 {
    font-weight: 700;
    color: #60a894;
    letter-spacing: 2.88px;
  } */
  
  /* .text-wrapper-54 {
    position: absolute;
    top: 31px;
    left: 48px;
    width: 284px;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    color: #6cbba5;
    font-size: 28px;
    text-align: center;
    letter-spacing: 0;
    line-height: 28px;
    white-space: nowrap;
  } */
  
  /* .element-5 {
    position: absolute;
    top: 153px;
    left: 31px;
    width: 330px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Helvetica Neue-Bold", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 120px;
    text-align: center;
    letter-spacing: 0;
    line-height: 120px;
    white-space: nowrap;
  } */
  
  /* .text-wrapper-55 {
    font-weight: 700;
    color: #60a894;
  } */

  /* .text-wrapper-56 {
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    color: #60a894;
    font-size: 50px;
    line-height: 50px;
  } */

  /* image01 */
  .bg {
    /* position: absolute; */
    /* top: 9877px; */
    /* left: 0; */
    width: 100%;
    height: 487px;
    overflow: hidden;
  }

  .bg img {
    width: 100%;
    height: 487px;
    object-fit: cover;
    transition: scale 1.6s cubic-bezier(0.19, 1, 0.22, 1);
    scale: 1.2;
  }


  /* our-culture */
  #our-culture {
    width: 100%;
    height: auto;
    background-color: #6cbba5;
    margin-top: -80px;
    padding-top: 20px;
    padding-bottom: 80px;
    z-index: 6;
    position: relative;
    border-radius: 80px 80px 0 0;
  }
  @media screen and (max-width: 768px) {
    #our-culture {
      display: flex;
      flex-direction: column;
      width: auto;
      border-radius: 40px 40px 0 0;
    }
  }

  .our-culture-ttl {
    max-width: 1000px;
    width: auto;
    position: relative;
    margin: 100px auto 80px auto;
    z-index: 5;
  }
  @media screen and (max-width: 768px) {
    .our-culture-ttl {
      width: auto;
      margin-right: 20px;
      margin-left: 20px;
    }
  }

  .our-culture-ttl h2 {
    position: relative;
    max-width: 1000px;
    width: auto;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    color: #fff;
    font-size: 39px;
    letter-spacing: 0;
    line-height: 39px;
  }
  @media screen and (max-width: 768px) {
    .our-culture-ttl h2 {
      width: auto;
      line-height: 1.2;
      font-size: 34px;
    }
  }
  @media screen and (max-width: 479px) {
    .our-culture-ttl h2 {
      width: auto;
      line-height: 1.4;
      font-size: 32px;
    }
  }

  .our-culture-ttl h2::before {
    content: 'Our Culture';
    position: absolute;
    font-family: "Helvetica Neue-Bold", Helvetica;
    font-weight: 700;
    color: #ffffff1a;
    font-size: 64px;
    letter-spacing: 0;
    white-space: nowrap;
    display: inline-block;
    margin-top: -16px;
  }
  @media screen and (max-width: 768px) {
    .our-culture-ttl h2::before {
      margin-top: -32px;
    }
  }
  @media screen and (max-width: 479px) {
    .our-culture-ttl h2::before {
      font-size: 52px;
    }
  }
  
  .our-culture-ttl p {
    max-width: 1000px;
    width: auto;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 500;
    color: #ffffff;
    font-size: 24px;
    letter-spacing: 0;
    line-height: 36px;
    /* white-space: nowrap; */
    margin-top: 28px;
  }
  @media screen and (max-width: 768px) {
    .our-culture-ttl p {
      width: 100%;
      font-size: 20px;
      line-height: 1.6;
    }
  }
  
  /* .text-wrapper-29 {
    position: absolute;
    top: 53px;
    left: 0;
    width: 521px;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 48px;
    letter-spacing: 0;
    line-height: 48px;
    white-space: nowrap;
  } */
  
  .our-culture-list {
    display: flex;
    /* margin-left: 133px; */
    max-width: 1040px;
    width: 100%;
    height: auto;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    margin: 0 auto;
  }
  @media screen and (max-width: 1079px) {
    .our-culture-list {
      width: auto;
      margin: 0 20px;
    }
  }
  @media screen and (max-width: 768px) {
    .our-culture-list {
      width: auto;
      align-items: center;
      margin: 0 20px;
    }
  }
  
  .our-culture-list li {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: auto;
    /* height: 361px; */
    background-color: #eefaf6;
    border-radius: 40px;
  }
  
  .our-culture-list_wrap-1 {
    /* position: relative; */
    /* top: 35px; */
    /* left: 63px; */
    width: auto;
    height: auto;
    display: flex;
    justify-content: space-between;
    margin: 48px 60px;
  }
  @media screen and (max-width: 768px) {
    .our-culture-list_wrap-1 {
      width: 100%;
      flex-direction: column-reverse;
      margin: 48px auto;
      align-items: center;
      gap: 32px;
    }
  }
  
  .our-culture-list_wrap-1 section {
    width: 80%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  @media screen and (max-width: 768px) {
    .our-culture-list_wrap-1 section {
      width: auto;
      margin: 0 28px;
    }
  }
  
  .our-culture-list_wrap-1 h3 {
    height: auto;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    color: #60a894;
    font-size: 32px;
    letter-spacing: 0;
    line-height: 36px;
    /* white-space: nowrap; */
  }
  @media screen and (max-width: 768px) {
    .our-culture-list_wrap-1 h3 {
      height: auto;
      line-height: 1.5;
      font-size: 28px;
      text-align: center;
    }
  }
  @media screen and (max-width: 479px) {
    .our-culture-list_wrap-1 h3 span {
      display: block;
    }
  }
  
  .our-culture-list_wrap-1 p {
    width: 100%;
    height: auto;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 500;
    color: #1b1b1b;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 1.6;
  }
  @media screen and (max-width: 768px) {
    .our-culture-list_wrap-1 p {
      width: 100%;
      font-size: 16px;
      line-height: 1.8;
    }
  }

  .our-culture-list_wrap-1 img {
    height: 200px;
    width: auto;
  }
  @media screen and (max-width: 768px) {
    .our-culture-list_wrap-1 img {
      width: 50%;
      height: 50%;
    }
  }
  
  .our-culture-list_wrap-2 {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 48px 60px;
  }
  @media screen and (max-width: 768px) {
    .our-culture-list_wrap-2 {
      width: 100%;
      height: auto;
      margin: 48px 0;
    }
  }
  
  .our-culture-list_wrap-2_ttl {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  @media screen and (max-width: 768px) {
    .our-culture-list_wrap-2_ttl  {
      width: 100%;
      height: auto;
    }
  }
  
  .our-culture-list_wrap-2_ttl h3 {
    width: auto;
    height: auto;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    color: #60a894;
    font-size: 32px;
    letter-spacing: 0;
    line-height: 36px;
    /* white-space: nowrap; */
  }
  @media screen and (max-width: 768px) {
    .our-culture-list_wrap-2_ttl h3  {
      width: auto;
      height: auto;
      margin: 0 24px;
      font-size: 28px;
    }
  }
  @media screen and (max-width: 479px) {
    .our-culture-list_wrap-2_ttl h3 {
      text-align: center;
    }
    .our-culture-list_wrap-2_ttl h3 span {
      display: block;
    }
  }
  
  .our-culture-list_wrap-2_ttl p {
    width: auto;
    height: auto;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 500;
    color: #1b1b1b;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 1.6;
  }
  @media screen and (max-width: 768px) {
    .our-culture-list_wrap-2_ttl p  {
      width: auto;
      height: auto;
      margin: 0 24px;
      font-size: 16px;
      line-height: 1.8;
    }
  }
  
  .our-culture-list_wrap-2_case {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
  
  .our-culture-list_wrap-2_case li {
    width: auto;
    height: auto;
    display: flex;
    background-color: #ffffff;
    border-radius: 20px;
  }
  @media screen and (max-width: 768px) {
    .our-culture-list_wrap-2_case li {
      margin: 0 20px;
    }
  }
  
  .our-culture-list_wrap-2_case_item {
    /* margin-top: 36px; */
    width: 100%;
    height: auto;
    /* margin-left: 48px; */
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 36px;
  }
  @media screen and (max-width: 768px) {
    .our-culture-list_wrap-2_case_item {
      gap: 12px;
      padding: 24px;
    }
  }
  
  /* .frame-35 {
    height: 159px;
    position: relative;
  } */
  
  .our-culture-list_wrap-2_case_item h4 {
    /* position: absolute; */
    /* top: 33px; */
    /* left: 0; */
    width: auto;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    color: #1b1b1b;
    font-size: 26px;
    letter-spacing: 0;
    line-height: 39px;
    /* white-space: nowrap; */
  }
  @media screen and (max-width: 768px) {
    .our-culture-list_wrap-2_case_item h4 {
      font-size: 22px;
      line-height: 1.5;
    }
  }
  
  .our-culture-list_wrap-2_case_item_num {
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    width: auto;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    color: #6cbba5;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 30px;
    /* white-space: nowrap; */
  }
  @media screen and (max-width: 768px) {
    .our-culture-list_wrap-2_case_item_num  {
      font-size: 12px;
      line-height: 0;
      margin-top: 12px;
    }
  }
  
  .our-culture-list_wrap-2_case_item_text {
    /* position: absolute; */
    /* top: 88px; */
    /* left: 0; */
    width: auto;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 500;
    color: #1b1b1b;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 33px;
  }
  @media screen and (max-width: 768px) {
    .our-culture-list_wrap-2_case_item_text  {
      font-size: 16px;
      line-height: 1.8;
    }
  }

  .our-culture-list_wrap-2_case_item_img {
    width: 80%;
    margin: 40px auto;
  }
  @media screen and (max-width: 768px) {
    .our-culture-list_wrap-2_case_item_img  {
      width: 100%;
    }
  }

  .our-culture-list_wrap-2_case_item_img img {
    display: block;
    margin: 0 auto;
    width: 80%;
    height: auto;
  }
  @media screen and (max-width: 768px) {
    .our-culture-list_wrap-2_case_item_img img  {
      width: 100%;
    }
  }


  /* interview */
  #interview {
    /* position: absolute; */
    /* top: 13628px; */
    /* left: 133px; */
    width: 100%;
    height: auto;
    position: relative;
    z-index: 0;
  }
  @media screen and (max-width: 768px) {
    #interview {
      width: auto;
      display: flex;
      flex-direction: column;
    }
  }

  #interview::before {
    content:'';
    position: absolute;
    display: block;
    justify-content: center;
    top: -24%;
    left: -10%;
    width: 1434px;
    height: 1434px;
    background-color: #eefaf6;
    border-radius: 717px;
    z-index: -2;
    margin: 0 auto;
  }

  #interview::after {
    content:'';
    position: absolute;
    display: block;
    justify-content: center;
    top: 8%;
    right: -10%;
    width: 1048px;
    height: 1048px;
    background-color: #8cc7b0;
    border-radius: 524px;
    z-index: -1;
    margin: 0 auto;
  }

  .interview-ttl {
    max-width: 1000px;
    width: auto;
    position: relative;
    margin: 100px auto 80px auto;
    z-index: 5;
  }
  @media screen and (max-width: 768px) {
    .interview-ttl {
      width: auto;
      margin-right: 20px;
      margin-left: 20px;
    }
  }

  .interview-ttl h2 {
    position: relative;
    /* top: 45px; */
    /* left: 0; */
    width: auto;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    color: #1b1b1b;
    font-size: 39px;
    letter-spacing: 0;
    line-height: 39px;
    white-space: nowrap;
  }
  @media screen and (max-width: 768px) {
    .interview-ttl h2 {
      width: auto;
      line-height: 1.2;
      font-size: 34px;
    }
  }
  @media screen and (max-width: 479px) {
    .interview-ttl h2 {
      width: auto;
      line-height: 1.4;
      font-size: 32px;
    }
  }

  .interview-ttl h2::before {
    content: 'Interview';
    position: absolute;
    /* top: 0; */
    /* left: 0; */
    /* width: 1199px; */
    font-family: "Helvetica Neue-Bold", Helvetica;
    font-weight: 700;
    color: #0328411a;
    font-size: 64px;
    letter-spacing: 0;
    /* line-height: 96px; */
    white-space: nowrap;
    display: inline-block;
    margin-top: -16px;
  }
  @media screen and (max-width: 768px) {
    .interview-ttl h2::before {
      margin-top: -32px;
    }
  }
  @media screen and (max-width: 479px) {
    .interview-ttl h2::before {
      font-size: 52px;
    }
  }
  
  .interview-btn {
    width: 252px;
    height: 132px;
  }

  .swiper {
    display: flex;
    width: 100%;
    max-width: 1208px;
    margin: 0 auto 100px;
  }
  @media screen and (max-width: 768px) {
    .swiper {
      width: 90%;
    }
  }

  .interview_list.swiper-wrapper {
    margin: 0 auto 40px 0;
  }
  
  .interview_list.swiper-wrapper li {
    /* position: relative; */
    width: 100%;
    /* height: 581px; */
    height: auto;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0px 5px 26px #60a8943e;
  }
  @media screen and (max-width: 768px) {
    .interview_list.swiper-wrapper li {
      height: auto;
    }
  }

  .interview_list .swiper-slide_img {
    overflow: hidden;
    height: auto;
    border-radius: 40px 40px 0 0;
  }

  .interview_list.swiper-wrapper li img {
    transition: transform .2s ease;
  }

  .interview_list.swiper-wrapper li:hover img {
    transform: scale(1.1);
  }

  .interview_list.swiper-wrapper li a {
    display: block;
    width: 100%;
    height: 100%;
  }

  .interview_list_item_thumbnail {
    width: 100%;
    height: auto;
  }
  
  .interview_list_item_wrap {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 54px;
    margin: 24px 24px 36px;
  }
  @media screen and (max-width: 768px) {
    .interview_list_item_wrap {
      gap: 40px;
    }
  }
  
  .interview_list_item_wrap h3 {
    height: 102px;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    color: #60a894;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 1.6;
  }
  
  .interview_list_item_text {
    height: 62px;
    /* position: relative; */
    display: flex;
    align-items: center;
  }
  @media screen and (max-width: 768px) {
    .interview_list_item_text {
      justify-content: space-between;
    }
  }

  .interview_list_item_text::after {
    content: url('https://c.animaapp.com/mg4u5pw1jk7CnL/img/interface---external-link.svg');
    display: block;
  }
  
  .interview_list_item_text p {
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 301px;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 400;
    color: #1b1b1b;
    font-size: 15px;
    letter-spacing: 0;
    line-height: 15px;
  }
  
  .interview_list_item_text_post {
    font-weight: 500;
    line-height: 22.4px;
  }
  
  .interview_list_item_text_name {
    font-weight: 700;
    font-size: 24px;
    line-height: 33.6px;
  }

  .swiper-controller {
    display: flex;
    gap: 2.6rem;
    align-items: center;
    justify-content: flex-end;
    margin-top: 80px;
  }
  @media screen and (max-width: 768px) {
    .swiper-controller {
      flex-direction: column;
      margin-top: 20px;
    }
  }

  .swiper-controller_btn {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-around;
    width: 25%;
  }
  @media screen and (max-width: 768px) {
    .swiper-controller_btn  {
      width: 100%;
      margin-top: 40px;
    }
  }

  .swiper-horizontal>.swiper-scrollbar,
  .swiper-scrollbar.swiper-scrollbar-horizontal {
    position: absolute;
    left: 1%;
    bottom: 14px;
    z-index: 50;
    height: 4px;
    width: 68%;
  }

  .swiper .swiper-controller > .swiper-scrollbar {
    width: 70%;
    margin-bottom: 30px;
  }
  @media screen and (max-width: 768px) {
    .swiper .swiper-controller > .swiper-scrollbar {
      width: 100%;
      margin-bottom: 110px;
    }
  }

  .swiper-scrollbar > .swiper-scrollbar-drag {
    height: 100%;
    width: 12.1153846154%;
    position: relative;
    background: linear-gradient(#1b9db8 0, #009e8c 100%);
    background: #6cbba5;
    border-radius: 2px;
    left: 0;
    top: 0;
  }

  .swiper-button-next.swiper-button-disabled,
  .swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none;
  }

  .swiper .swiper-controller .swiper-controller_btn > .swiper-button-next,
  .swiper .swiper-controller .swiper-controller_btn > .swiper-button-prev {
    position: relative;
    flex-shrink: 0;
    margin: 0;
    width: 80px;
    height: 80px;
    border-radius: 80px;
    background: #e7f5f7;
  }

  .swiper-button-prev:after,
  .swiper-button-next:after {
    position: absolute;
    content: "";
    top: 50%;
    display: block;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
  }

  .swiper-button-prev:after {
    aspect-ratio: 4.8 / 12;
    background: #6cbba5;
    clip-path: polygon(85% 10%, 85% 90%, 0% 50%);
  }

  .swiper-button-next:after {
    aspect-ratio: 4.8 / 12;
    background: #6cbba5;
    clip-path: polygon(15% 10%, 15% 90%, 100% 50%);
  }

  .swiper-button-disabled {
    pointer-events: none;
    opacity: .5;
  }
  

  /* job-list */
  #job-list {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #6cbba5;
    z-index: 2;
    padding-top: 20px;
    padding-bottom: 80px;
  }
  @media screen and (max-width: 768px) {
    #job-list {
      display: flex;
      flex-direction: column;
    }
  }

  .job-list-ttl {
    width: auto;
    max-width: 1000px;
    position: relative;
    margin: 100px auto 80px auto;
    z-index: 5;
  }
  @media screen and (max-width: 768px) {
    .job-list-ttl {
      width: auto;
      margin-right: 20px;
      margin-left: 20px;
    }
  }

  .job-list-ttl h2 {
    position: relative;
    width: auto;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    color: #fff;
    font-size: 39px;
    letter-spacing: 0;
    line-height: 39px;
    white-space: nowrap;
  }
  @media screen and (max-width: 768px) {
    .job-list-ttl h2 {
      width: auto;
      line-height: 1.2;
      font-size: 34px;
    }
  }
  @media screen and (max-width: 479px) {
    .job-list-ttl h2 {
      width: auto;
      line-height: 1.4;
      font-size: 32px;
    }
  }

  .job-list-ttl h2::before {
    content: 'Job List';
    position: absolute;
    font-family: "Helvetica Neue-Bold", Helvetica;
    font-weight: 700;
    color: #ffffff1a;
    font-size: 64px;
    letter-spacing: 0;
    white-space: nowrap;
    display: inline-block;
    margin-top: -16px;
  }
  @media screen and (max-width: 768px) {
    .job-list-ttl h2::before {
      margin-top: -32px;
    }
  }
  @media screen and (max-width: 479px) {
    .job-list-ttl h2::before {
      font-size: 52px;
    }
  }
  
  .job-list-ttl p {
    width: auto;
    max-width: 1000px;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 500;
    color: #ffffff;
    font-size: 24px;
    letter-spacing: 0;
    line-height: 36px;
    white-space: nowrap;
    margin-top: 28px;
  }
  @media screen and (max-width: 768px) {
    .job-list-ttl p {
      width: 100%;
      font-size: 20px;
      line-height: 1.6;
    }
  }

  
  .job-list_list {
    display: grid;
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
    height: auto;
    position: relative;
    grid-template-columns: 49% 49%;
    grid-template-rows: auto;
    gap: 20px 22px;
  }
  @media screen and (max-width: 768px) {
    .job-list_list {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      width: auto;
      height: auto;
      margin: 0 20px 80px;
    }
  }
  
  .list-wrapper {
    /* position: relative; */
    /* grid-row: 1 / 2; */
    /* grid-column: 1 / 2; */
    width: auto;
    height: 117px;
    /* background-color: #ffffff; */
    /* border-radius: 20px; */
    /* box-shadow: 0px 5px 26px #60a8943e; */
  }
  @media screen and (max-width: 768px) {
    .list-wrapper {
      width: 100%;
      height: auto;
    }
  }
  
  /* .frame-8 {
    position: relative;
    top: 41px;
    left: 49px;
    width: 486px;
    display: flex;
    gap: 21px;
  } */

  .job-list_list li {
    /* position: relative; */
    /* top: 38px; */
    /* left: 49px; */
    width: auto;
    height: 117px;
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 21px;
    border-radius: 20px;
    box-shadow: 0px 5px 26px #0000001a;
    padding: 0 32px;
    transition: cubic-bezier(0.23, 1, 0.32, 1) 0.4s;
    transition-property: background-color;
  }
  @media screen and (max-width: 768px) {
    .job-list_list li {
      width: 100%;
      /* height: 96px; */
      padding: 24px 32px;
    }
  }

  .job-list_list li::after {
    content: url('../images/link_blank-g.svg');
    /* margin-top: 4px; */
    display: block;
    width: 24px;
    height: 24px;
    margin: 0;
    padding: 0;
  }

  .job-list_list li:hover {
    background-color: #6cbba5;
  }

  .job-list_list li:hover::after {
    content: url('../images/link_blank-w.svg');
    width: 24px;
    height: 24px;
    margin: 0;
    padding: 0;
  }
  
  .job-list_list_job-name {
    width: 100%;
    height: auto;
    font-weight: 700;
    color: #1b1b1b;
    font-size: 22px;
    line-height: 36px;
    /* white-space: nowrap; */
    font-family: "Noto Sans JP", Helvetica;
    letter-spacing: 0;
  }
  @media screen and (max-width: 768px) {
    .job-list_list_job-name {
      width: 100%;
      height: auto;
      font-size: 18px;
      line-height: 1.5;
    }
  }

  .job-list_list li:hover .job-list_list_job-name {
    color: #fff;
  }


  /* qa */
  #qa {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }

  #qa::after {
    content: '';
    position: absolute;
    width: 3000px;
    height: 1500px;
    background-color: #fcfcfc;
    border-radius: 0 0 3000px 3000px;
    z-index: 1;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
  }

  .qa-ttl {
    position: relative;
    margin-left: 133px;
    width: auto;
    max-width: 1000px;
    margin: 100px auto 80px auto;
    z-index: 5;
  }
  @media screen and (max-width: 768px) {
    .qa-ttl {
      width: auto;
      margin-right: 20px;
      margin-left: 20px;
    }
  }

  .qa-ttl h2 {
    position: relative;
    width: auto;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    color: #1b1b1b;
    font-size: 39px;
    letter-spacing: 0;
    line-height: 39px;
    white-space: nowrap;
  }
  @media screen and (max-width: 768px) {
    .qa-ttl h2 {
      width: auto;
      line-height: 1.2;
      font-size: 34px;
    }
  }
  @media screen and (max-width: 479px) {
    .qa-ttl h2 {
      width: auto;
      line-height: 1.4;
      font-size: 32px;
    }
  }
  
  .qa-ttl h2::before {
    content: 'Q&A';
    position: absolute;
    font-family: "Helvetica Neue-Bold", Helvetica;
    font-weight: 700;
    color: #0328411a;
    font-size: 64px;
    letter-spacing: 0;
    white-space: nowrap;
    display: inline-block;
    margin-top: -16px;
  }
  @media screen and (max-width: 768px) {
    .qa-ttl h2::before {
      margin-top: -32px;
    }
  }
  @media screen and (max-width: 479px) {
    .qa-ttl h2::before {
      font-size: 52px;
    }
  }

  
  .qa-list {
    position: relative;
    width: auto;
    max-width: 1000px;
    height: auto;
    display: flex;
    margin: 40px auto 80px;
    z-index: 5;
  }
  @media screen and (max-width: 768px) {
    .qa-list {
      width: 100%;
    }
  }
  
  .qa-list_wrap {
    /* margin-top: -32px; */
    width: 100%;
    height: 718px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  @media screen and (max-width: 768px) {
    .qa-list_wrap {
      width: 100%;
      height: auto;
    }
  }
  
  .qa-list_content {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0 24px;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    border-bottom: #ccc solid 1px;
  }
  @media screen and (max-width: 768px) {
    .qa-list_content {
      width: 100%;
      height: auto;
    }
  }

  .qa-list_content:after {
    content: '';
    position: absolute;
    inset-block-start: 1.75rem;
    inset-inline-end: 1.75rem;
    display: block;
    inline-size: 1rem;
    aspect-ratio: 1;
    background: #666;
    overflow: hidden;
    rotate: 0deg;
    transition: rotate 0.4s 0s ease;
    clip-path: polygon(25% 10%, 25% 90%, 75% 50%);
  }
  @media screen and (max-width: 479px) {
    .qa-list_content:after {
      inset-block-start: 1.5rem;
    }
  }

  .qa-list_content[open]:after {
    rotate: 90deg;
  }

  .faq-content[open] .qa-list_content-q:after {
    content: '';
    position: absolute;
    inset: 0;
    display: block;
  }
  
  .qa-list_content-q {
    margin-left: 3px;
    width: 100%;
    display: flex;
    gap: 14px;
    outline: none;
  }
  @media screen and (max-width: 768px) {
    .qa-list_content-q {
      width: 100%;
      height: auto;
      margin-left: 20px;
    }
  }
  .qa-list_content-q:focus {
    outline: none;
  }

  .qa-list_content-q::-webkit-details-marker {
    display: none;
  }
  .qa-list_content-q h3 {
    width: 100%;
    height: 38px;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    color: #1b1b1b;
    font-size: 24px;
    letter-spacing: 0;
    line-height: 32px;
    /* white-space: nowrap; */
  }
  @media screen and (max-width: 768px) {
    .qa-list_content-q h3 {
      width: 80%;
      height: auto;
      font-size: 16px;
    }
  }
  .qa-list_content-q h3:hover {
    color: #6cbba5;
  }
  /* .qa-list_content-q:before {
    content: '';
    display: block;
    color: #6cbba5;
    font-size: var(--v-rythm);
  } */

  .qa-list_content-a {
    width: auto;
    margin: 0 54px;
    display: flex;
    gap: var(--gap);
    /* padding: 0 1.5rem 1rem; */
    padding-top: 16px;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 500;
    color: #1b1b1b;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 1.5;
  }
  @media screen and (max-width: 768px) {
    .qa-list_content-a {
      width: auto;
      height: auto;
      margin: 0 32px 0 54px;
      font-size: 14px;
    }
  }

  .qa-list_content-a:before {
    content: '';
    font-weight: bold;
    color: var(--accent-color);
    font-size: var(--v-rythm);
  }
  

  /* entry-btn */
  .entry-btn {
    position: relative;
    /* top: 17043px; */
    /* left: 180px; */
    width: 100%;
    max-width: 900px;
    height: auto;
    display: flex;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 0px 5px 26px #60a8943e;
    background: linear-gradient(
      90deg,
      rgba(108, 187, 165, 1) 0%,
      rgba(96, 168, 148, 1) 100%
    );
    margin: 0 auto;
    z-index: 5;
  }
  @media screen and (max-width: 768px) {
    .entry-btn {
      width: auto;
      height: auto;
      margin: 0 20px;
    }
  }
  
  .entry-btn_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 130px;
    border-radius: 20px;
    padding: 0 80px;
    box-shadow: 0px 5px 26px #60a8943e;
    background: linear-gradient(
      90deg,
      rgba(108, 187, 165, 1) 0%,
      rgba(96, 168, 148, 1) 100%
    );
  }
  @media screen and (max-width: 768px) {
    .entry-btn_wrap {
      max-width: none;
      width: 100%;
      height: auto;
      padding: 0 40px 0 20px;
    }
  }

  .entry-btn_wrap::after {
    content: url('../images/_link_blank-w.svg');
    display: block;
    width: 28px;
    height: 28px;
  }

  .entry-btn_text {
    width: 100%;
    height: 78px;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
  }
  @media screen and (max-width: 768px) {
    .entry-btn_text {
      flex-direction: column;
      justify-content: center;
      width: 80%;
      height: 100%;
      margin: 16px 0 16px 24px;
      gap: 4px;
    }
  }
  
  .entry-btn_text .entry {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 184px;
    height: 78px;
    font-family: "Helvetica Neue-Bold", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 54px;
    letter-spacing: 0;
    line-height: 54px;
  }
  @media screen and (max-width: 768px) {
    .entry-btn_text .entry {
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
      height: auto;
      font-size: 36px;
      line-height: 1.2;
    }
  }
  
  .entry-btn_text .entry-text {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    /* margin-top: 27px; */
    width: 432px;
    height: 28px;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 500;
    color: #ffffff;
    font-size: 24px;
    letter-spacing: 0;
    line-height: 24px;
    white-space: nowrap;
  }
  @media screen and (max-width: 768px) {
    .entry-btn_text .entry-text {
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      width: 100%;
      font-size: 16px;
    }
  }


  /* footer */
  .footer {
    position: relative;
    /* top: 16959px; */
    /* left: 0; */
    width: 100%;
    /* height: 703px; */
    /* display: flex; */
    background-color: #eefaf6;
    z-index: 0;
    padding-top: 320px;
  }

  .footer_wrap {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
  }

  .footer_breadcrumbsList {
    font-size: 0.75rem;
    padding: 17px 24px;
    background-color: #8cc7b0;
    display: flex;
    flex-wrap: wrap;
    font-weight: 700;
    line-height: 1.75;
  }

  .footer_breadcrumbsList li {
    margin-right: 12px;
    display: flex;
    flex-direction: row;
    color: #fff;
  }

  .footer_breadcrumbsList li:first-child::after {
    content: '';
    width: 12px;
    height: auto;
    display: block;
    inline-size: 1rem;
    aspect-ratio: 1;
    background: #fff;
    clip-path: polygon(25% 10%, 25% 70%, 65% 40%);
    margin-left: 16px;
    margin-top: 3px;
  }

  .footer_breadcrumbsList a {
    color: #fff;
    font-weight: 500;
  }

  .footer_breadcrumbsList li:first-child a {
    font-weight: 700;
  }

  /* .div {
    margin-top: 411px;
    width: 1280px;
    height: 243px;
    margin-left: 80px;
    position: relative;
  } */

  .footer_main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 80px 0;
  }
  @media screen and (max-width: 768px) {
    .footer_main {
      flex-direction: column;
      width: auto;
      margin: 0 24px;
      padding: 40px 0;
      gap: 12px;
    }
  }

  .footer_head {
    display: flex;
    flex-direction: column;
    width: 35%;
  }
  @media screen and (max-width: 768px) {
    .footer_head {
      width: 100%;
    }
  }

  .footer_head_logo {
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    width: 159px;
    height: 47px;
    margin-bottom: 16px;
  }
  
  .footer_head_name {
    /* position: absolute; */
    /* top: 72px; */
    /* left: 0; */
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    color: #31594e;
    font-size: 14px;
    letter-spacing: 0;
    line-height: normal;
  }

  .footer_head address {
    /* position: absolute; */
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 500;
    color: #31594e;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 18px;
    margin-bottom: 16px;
  }

  .footer_head_sns {
    display: flex;
    flex-direction: row;
    gap: 8px;
  }

  .footer_head_sns img {
    width: 36px;
    height: 36px;
  }

  .footer_nav {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    width: 65%;
    gap: 40px;
  }
  @media screen and (max-width: 768px) {
    .footer_nav {
      width: 100%;
      flex-direction: column;
      gap: 20px;
    }
  }

  .footer_nav_list li {
    margin-top: 10px;
  }

  .footer_nav_list a {
    color: #31594e;
  }

  .footer_nav_list a span {
    position: relative;
    padding-bottom: 2px;
    background-image: linear-gradient(#427567, #427567);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: 0 1px;
    display: inline;
    transition: cubic-bezier(0.23, 1, 0.32, 1) 0.4s;
    transition-property: background-size, color;
    transition-duration: 0.25s;
  }

  .footer_nav_list a:hover span {
    color: #31594e;
    background-position: 0 100%;
    background-size: 100% 1px;
  }

  .footer_nav_list > li > a {
    font-size: 0.9rem;
    font-weight: 700;
  }

  .footer_nav_list-sublist {
    margin-left: 8px;
    padding-top: 2px;
  }
  
  .footer_nav_list {
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 13px;
    letter-spacing: 0;
    line-height: normal;
  }
  
  .footer_foot {
    /* position: absolute; */
    /* top: 225px; */
    /* left: 0; */
    /* line-height: 18px; */
    white-space: nowrap;
    width: 100%;
    background-color: #60a894;
    padding: 16px 0;
  }

  .footer_foot_wrap {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
  }

  .footer_foot_content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  @media screen and (max-width: 768px) {
    .footer_foot_content {
      flex-direction: column;
      gap: 24px;
      margin-top: 8px;
    }
  }

  .footer_foot_content p {
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 500;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0;
  }

  .footer_foot_content_isms img {
    height: 80px;
    width: auto;
  }

  

  
  /* job-description */
  #job-description {
    /* position: absolute; */
    /* top: 1996px; */
    /* left: -804px; */
    position: relative;
    width: 100%;
    height: auto;
    z-index: 0;
    padding-top: 80px;
    margin: 200px auto;
  }

  #job-description::after {
    content:'';
    position: absolute;
    display: flex;
    justify-content: center;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3048px;
    height: 1531px;
    margin: 0 auto;
    background-color: #6cbba5;
    border-radius: 3000px 3000px 0px 0px;
    z-index: -1;
  }

  .job-description_wrap {
    display: flex;
    flex-direction: column;
    max-width: 1080px;
    height: auto;
    align-items: center;
    gap: 39px;
    padding: 68px 60px;
    /* position: absolute; */
    /* top: 1084px; */
    /* left: 984px; */
    background-color: #ffffff;
    border-radius: 40px;
    margin: 100px auto;
  }
  @media screen and (max-width: 1280px) {
    .job-description_wrap {
      width: 80%;
      margin: 80px auto 100px;
    }
  }
  @media screen and (max-width: 768px) {
    .job-description_wrap {
      width: auto;
      margin-right: 20px;
      margin-left: 20px;
      padding: 36px 32px;
      margin: 0 20px 100px;
    }
  }
  
  .job-description_ttl {
    /* position: relative; */
    align-self: stretch;
    margin-top: -1.00px;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    color: #60a894;
    font-size: 40px;
    letter-spacing: 0;
    line-height: 60px;
  }
  .job-description_ttl span {
    display: block;
  }
  @media screen and (max-width: 768px) {
    .job-description_ttl {
      font-size: 26px;
      line-height: 1.5;
    }
    .job-description_ttl span {
      display: inline;
    }
  }
  
  .job-description_text {
    /* position: relative; */
    align-self: stretch;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 500;
    color: #1b1b1b;
    font-size: 24px;
    letter-spacing: 0;
    line-height: 30.6px;
  }
  @media screen and (max-width: 768px) {
    .job-description_text {
      font-size: 16px;
      line-height: 1.8;
    }
  }

  .job-description_list {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .job-description_list_item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: auto;
    margin: 16px auto;
  }

  .job-description_list_item dt {
    width: 30%;
    line-height: 1.6;
    font-family: "Noto Sans JP", Helvetica;
  }
  @media screen and (max-width: 768px) {
    .job-description_list_item dt {
      width: 29%;
    }
  }

  .job-description_list_item dd {
    width: 70%;
    line-height: 1.6;
    margin-left: 8px;
    font-family: "Noto Sans JP", Helvetica;
  }
  @media screen and (max-width: 768px) {
    .job-description_list_item dd {
      width: 69%;
      margin-left: 0;
    }
  }

  /* entry-form */
  #entry-form {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    background-color: #eefaf6;
  }

  /* #entry-form::after {
    content: '';
    position: absolute;
    width: 3000px;
    height: 1500px;
    background-color: #fcfcfc;
    border-radius: 0 0 3000px 3000px;
    z-index: 1;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
  } */

  .entry-form-ttl {
    position: relative;
    margin-left: 133px;
    width: auto;
    max-width: 1000px;
    margin: 100px auto 80px auto;
    z-index: 5;
  }
  @media screen and (max-width: 959px) {
    .entry-form-ttl {
      width: auto;
      margin-right: 20px;
      margin-left: 20px;
    }
  }

  .entry-form-ttl h2 {
    position: relative;
    width: auto;
    font-family: "Noto Sans JP", Helvetica;
    font-weight: 700;
    color: #1b1b1b;
    font-size: 39px;
    letter-spacing: 0;
    line-height: 39px;
    white-space: nowrap;
  }
  @media screen and (max-width: 959px) {
    .entry-form-ttl h2 {
      width: auto;
      line-height: 1.2;
      font-size: 34px;
    }
  }
  @media screen and (max-width: 479px) {
    .entry-form-ttl h2 {
      width: auto;
      line-height: 1.4;
      font-size: 32px;
    }
  }
  
  .entry-form-ttl h2::before {
    content: 'Entry Form';
    position: absolute;
    font-family: "Helvetica Neue-Bold", Helvetica;
    font-weight: 700;
    color: #0328411a;
    font-size: 64px;
    letter-spacing: 0;
    white-space: nowrap;
    display: inline-block;
    margin-top: -16px;
  }
  @media screen and (max-width: 959px) {
    .entry-form-ttl h2::before {
      margin-top: -32px;
    }
  }
  @media screen and (max-width: 479px) {
    .entry-form-ttl h2::before {
      font-size: 52px;
    }
  }

  
  .entry-form_wrap {
    position: relative;
    width: auto;
    max-width: 1000px;
    height: auto;
    display: flex;
    padding: 40px 60px;
    margin: 0 auto;
    z-index: 5;
    background-color: #fff;
  }
  @media screen and (max-width: 768px) {
    .entry-form_wrap {
      width: auto;
      margin: 0 20px;
      max-width: none;
      padding: 0 20px;
    }
  }

  .entry-form_wrap .wpcf7 {
    margin: 0 auto;
  }
  
  .entry-form_item {
    margin: 24px auto;
    width: auto;
  }

  .entry-form_item dt {
    font-size: 18px;
    margin-bottom: 8px;
    font-family: "Noto Sans JP", Helvetica;
  }

  .entry-form_item dd {
    font-size: 18px;
    font-family: "Noto Sans JP", Helvetica;
  }

  .entry-form_item dd input[type="submit"],
  .entry-form_item dd input[type="text"],
  .entry-form_item dd input[type="email"],
  .entry-form_item dd input[type="tel"],
  .entry-form_item dd select,
  .entry-form_item dd textarea,
  .entry-form_item dd button {
    width: 100%;
    /* -moz-appearance: none; */
    /* -webkit-appearance: none; */
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    border: none;
  }

  .entry-form_item dd input[type="text"],
  .entry-form_item dd input[type="email"],
  .entry-form_item dd input[type="tel"],
  .entry-form_item dd textarea {
    background: #f8f8f8;
    display: block;
    font-size: 16px;
    padding: 12px 15px;
    width: 100%;
    border-radius: 0;
  }

  .entry-form_item dd input[type="text"]:focus,
  .entry-form_item dd input[type="email"]:focus,
  .entry-form_item dd input[type="tel"]:focus,
  .entry-form_item dd textarea:focus {
    background: #e9f5fb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }

  .entry-form_item dd input::placeholder,
  .entry-form_item dd textarea::placeholder {
    color: #ccc;
  }

  .entry-form_item dd.entry-form_item_select span.wpcf7-form-control-wrap {
    display: inline-flex;
    align-items: center;
    position: relative;
  }

  .entry-form_item dd.entry-form_item_select span.wpcf7-form-control-wrap::after {
    position: absolute;
    right: 15px;
    width: 10px;
    height: 7px;
    background-color: #535353;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    pointer-events: none;
  }

  .entry-form_item dd.entry-form_item_select select {
    appearance: none;
    min-width: 230px;
    height: 2.8em;
    padding: .4em calc(.8em + 30px) .4em .8em;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    background-color: #fff;
    color: #333333;
    font-size: 1em;
    cursor: pointer;
  }

  .entry-form_submit {
    display: flex;
    justify-content: center;
  }

  .entry-form_submit input[type="submit"]{
    width: auto;
    border-radius: 16px;
    padding: 20px 80px;
    margin: 20px auto;
    box-shadow: 0px 5px 26px #60a8943e;
    background: linear-gradient(90deg, rgba(108, 187, 165, 1) 0%, rgba(96, 168, 148, 1) 100%);
    border: none;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
  }
  @media screen and (max-width: 768px) {
    .entry-form_submit {
      display: flex;
      justify-content: center;
    }
    .entry-form_submit input[type="submit"] {
      padding: 20px 60px;
    }
  }
  
  .entry-form_note {
    width: 100%;
    font-size: 10px;
    margin: 20px auto;
  }

  .entry-form_required {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    padding: 4px 8px;
    margin-left: 8px;
    background-color: #e75c5c;
    border-radius: 4px;
    vertical-align: middle;
  }


  /* スクロールアニメーション */
  .fade-base {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .fade-base.show {
    opacity: 1;
    transform: translateY(0);
  }

  .fade-base.show img {
    scale: 1;
  }
  


  /* Original CSS code should be injected here */
  
  /* Enhanced semantic and accessibility styles */
  details[open] .text-wrapper-15 {
    transform: rotate(180deg);
  }
  
  details summary {
    cursor: pointer;
    list-style: none;
  }
  
  details summary::-webkit-details-marker {
    display: none;
  }
  
  /* Focus styles for better accessibility */
  a:focus,
  button:focus,
  details summary:focus {
    outline: 2px solid #6cbba5;
    outline-offset: 2px;
  }
  
  /* Hover states for interactive elements */
  .frame-wrapper:hover,
  .div-wrapper:hover,
  .frame-10:hover,
  .frame-11:hover,
  .frame-12:hover,
  .frame-13:hover,
  .frame-14:hover,
  .frame-15:hover,
  .frame-16:hover,
  .frame-17:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease;
  }
  
  .entry-btn_wrap:hover,
  .fv-menu_entry:hover {
    transform: scale(1.02);
    transition: transform 0.2s ease;
  }
  
  .interview-btn:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease;
  }
  
  /* Ensure proper heading hierarchy */
  h1 {
    font-size: 48px;
    line-height: 72px;
  }
  
  h2 {
    font-size: 39px;
    line-height: 39px;
  }
  
  h3 {
    font-size: 32px;
    line-height: 32px;
  }
  
  h4 {
    font-size: 28px;
    line-height: 42px;
  }
  
  /* Screen reader only content */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  