@charset "UTF-8";

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif !important;
}

.container {
  max-width: 1000px !important;
  margin: 0 auto;
  --bs-gutter-x: 0 !important;
}

.bg-haken {
  background: #0fa8fb !important;
}

.color-haken {
  color: #0fa8fb !important;
}

.bg-outsourcing {
  background: #1ac17e !important;
}

.color-outsourcing {
  color: #1ac17e !important;
}

.sp-only {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .sp-only {
    display: block !important;
  }

  .pc-only {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .container {
    max-width: 92% !important;
    padding: 0 !important;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 122px;
  position: relative;
  z-index: 99;
}

.header-left {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.header-left__logo {
  display: flex;
  align-items: center;
  gap: 9px;
  height: 100%;
}

.header-left__logo>p {
  margin-bottom: 0;
  color: #333;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.header-left__logo img {
  width: 100%;
  height: 100%;
  max-width: 257px;
  max-height: 56px;
  object-fit: cover;
}

.header-left-nav ul {
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
}

.header-left-nav ul li {
  list-style: none;
  display: flex;
  width: fit-content;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 5px 5px 0px 0px;
  background: #fff;
  transition: all 0.3s linear;
  padding: 0 20px;
  position: relative;
}

.header-left-nav ul li.active {
  background: #0fa8fb;
}

.header-left-nav ul li.active a {
  color: #fff;
}

.header-left-nav ul li a {
  color: #0fa8fb;
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
}

.header-left-nav ul li a.has-bookmark {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-left-nav ul li.mark-default {
  background: #0fa8fb;
}

.header-left-nav ul li.mark-default a {
  color: #fff;
}

.header-left-nav ul li.has-line::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 50%;
  right: 0;
  background-color: #969393;
}

.header-left-nav ul li.has-line::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 50%;
  left: 0;
  background-color: #969393;
}

.header-left-nav ul li.active::after,
.header-left-nav ul li.active::before {
  content: none;
}

.header-left-nav ul .has-submenu {
  position: relative;
}

.header-left-nav ul .has-submenu .sub-menu {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  display: none;
  flex-direction: column;
  z-index: 50;
}

.header-left-nav ul .has-submenu .sub-menu li {
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  padding-left: 15px;
  gap: 13px;
  border-radius: 0px;
}

.header-left-nav ul .has-submenu .sub-menu li a {
  color: #333;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.header-left-nav ul .has-submenu .sub-menu li i {
  color: #0fa8fb;
}

.header-left-nav ul .has-submenu .sub-menu li:hover {
  background: #0fa8fb;
}

.header-left-nav ul .has-submenu .sub-menu li:hover a {
  color: #fff;
}

.header-left-nav ul .has-submenu .sub-menu li:hover>i {
  color: #fff;
}

.header-left-nav ul .has-submenu:hover .sub-menu {
  display: flex;
}

.header-right {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-right img {
  width: 155px;
  height: 82px;
  object-fit: cover;
}

.header-right>i {
  display: none;
}

.header-hamburger-menu {
  display: none;
}

.has-submenu-icon {
  display: flex;
  align-items: center;
}

.has-submenu-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-right: 5px;
}

.sub-menu a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-right: 5px;
}

@media screen and (max-width: 768px) {
  .header-hamburger-menu {
    display: flex;
    justify-content: center;
    background-color: #F9F9F9;
    position: fixed;
    inset: 0;
    top: 50px;
    z-index: 99;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.3s linear;
    overflow: scroll;
  }

  .header-hamburger-menu>.menu-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: max-content;
    margin-bottom: 50px;
    padding-bottom: 0;
  }

  .header-hamburger-menu.active {
    opacity: 1;
    transform: translateX(0);
  }
}

.sticky {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  padding: 0px 15px;
  background: #fff;
  border-bottom: 1px solid #0fa8fb;
}

@media (max-width: 768px) {
  .header {
    height: 50px;
  }

  .header-left {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .header-left__logo {
    gap: 5px;
    padding: 0;
  }

  .header-left__logo>p {
    font-size: 12px;
  }

  .header-left__logo img {
    max-width: 120px;
    max-height: 26px;
  }

  .header-left-nav {
    display: none;
  }

  .header-right {
    height: 50px;
    display: flex;
    align-items: center;
    gap: 0px;
  }

  .header-right .bookmark-right {
    display: grid !important;
    text-align: center;
    align-items: center;
    padding: 5px !important;
    font-size: 10px;
  }

  .header-right .bookmark-right i {
    color: #0fa8fb;
    font-size: 24px;
    margin: 11px 0px 0px 0px;
  }

  .header-right .bookmark-right-home {
    display: grid !important;
    text-align: center;
    align-items: center;
    padding: 5px !important;
    font-size: 10px;
    width: 112px;
  }

  .header-right .bookmark-right-home i {
    color: #0fa8fb;
    font-size: 24px;
  }

  .header-right .bookmark-left-home {
    display: grid !important;
    text-align: left;
    align-items: center;
    padding: 5px !important;
    font-size: 10px;
    margin: 11px 0px 0px 0px;
  }

  .header-right .bookmark-left-home i {
    color: #0fa8fb;
    font-size: 24px;
  }

  .header-right .bookmark-right-icon-home {
    display: grid !important;
    text-align: center;
    align-items: center;
    padding: 5px !important;
    font-size: 10px;
    width: 112px;
    margin: 11px 0px 0px 0px;
  }

  .header-right .bookmark-right-icon-home i {
    color: #0fa8fb;
    font-size: 24px;
  }

  .header-right img {
    display: none;
  }

  .header-right>i {
    display: block;
    font-size: 24px;
    margin-right: 0;
    color: #333;
    height: 50px;
    margin-top: 20px;
  }

  .header-right>i.home {
    display: block;
    font-size: 24px;
    margin-right: 0;
    color: #333;
    height: 40px;
    margin-top: 20px;
  }
}

@media (min-width: 481px) and (max-width: 600px) {
  /* Code responsive */
}

@media (min-width: 601px) and (max-width: 768px) {
  /* Code responsive */
}

.banner {
  width: 100%;
  height: 251px;
  background-image: url("../image/FVBG.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner .container {
  position: relative;
  height: 100%;
  padding: 55px 0 24px;
}

.banner .container>p {
  padding: 0;
  margin: 0;
}

.banner-jp {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.banner-en {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 64px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.banner-image__img1 {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 212px;
  max-height: 226px;
  bottom: 0;
  right: 157px;
}

.banner-image__img2 {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 203px;
  max-height: 242px;
  bottom: 0;
  right: 65px;
}

.banner-filter {
  position: absolute;
  top: calc(100% - 42px);
  width: 100%;
  height: auto;
  border-radius: 5px;
  border: 1px solid #d9d9d9;
  background: linear-gradient(56deg, #fff 65.39%, rgba(255, 255, 255, 0.9) 101.48%);
  box-shadow: -4px 4px 4px 0px rgba(0, 0, 0, 0.15);
  padding: 0 0 15px;
}

.banner-filter__header {
  display: flex;
  align-items: center;
  gap: 69px;
  padding-left: 33px;
  height: 42px;
  margin-bottom: 23px;
  position: relative;
}

.banner-filter__header::after {
  position: absolute;
  content: "";
  width: 99%;
  height: 1px;
  background-color: #d9d9d9;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.banner-filter__header>p {
  color: #333;
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  padding: 0;
  position: relative;
  cursor: pointer;
}

.banner-filter__header>p:nth-child(1)::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 13px;
  background-color: #d9d9d9;
  right: -33px;
  top: 50%;
  transform: translateY(-50%);
}

.banner-filter__header>p.active {
  color: #0e9deb;
}

.banner-filter__header>p.active::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #0e9deb;
  bottom: -8px;
  left: 0;
  z-index: 5;
}

.banner-filter__form {
  padding: 0 33px;
}

.banner-filter__form form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 13px;
}

.banner-filter__form form .custom-select-wrapper {
  position: relative;
  display: inline-block;
  width: 200px;
}

.banner-filter__form form .custom-select-wrapper:nth-child(1),
.banner-filter__form form .custom-select-wrapper:nth-child(4) {
  width: 25%;
}

.banner-filter__form form .custom-select-wrapper:nth-child(2),
.banner-filter__form form .custom-select-wrapper:nth-child(3) {
  width: 15%;
}

.banner-filter__form form .custom-select-wrapper.custom-search-div-1,
.banner-filter__form form .custom-select-wrapper.custom-search-div-4 {
  width: 25%;
}

.banner-filter__form form .custom-select-wrapper.custom-search-div-2,
.banner-filter__form form .custom-select-wrapper.custom-search-div-3 {
  width: 15%;
}

.banner-filter__form form .custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: white;
  border: 1px solid #8b4c45;
  color: #333;
  font-size: 16px;
  padding: 9px 40px 10px 20px;
  width: 100%;
  border-radius: 4px;
  cursor: pointer;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: calc(1.6em + 19px);
  box-sizing: border-box;
}

.banner-filter__form form .custom-select:focus {
  outline: none;
}

.banner-filter__form form .custom-select-wrapper::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: url("../image/Vector.png") no-repeat center center;
  background-size: contain;
  pointer-events: none;
}

.banner-filter__form-btn {
  all: unset;
  width: 114px;
  height: 43px;
  border-radius: 3px;
  border: 1px solid #553030;
  background: #ff9b05;
  box-shadow: 0px 2px 4px 0px #fcfcfc inset;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  gap: 5px;
}

.banner-filter__form-matching-total {
  background: #f3f3f3;
  color: #333;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding-left: 23px;
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 13px;
}

.banner-filter__form-matching-total__number {
  color: #0e9deb;
  font-size: 26px;
  margin-right: 5px;
}

.banner-filter__form-matching-total::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #d9d9d9;
}

.banner-filter__form-popular-tag {
  color: #333;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.banner-filter__form-popular-tag__tag {
  color: #0e9deb;
  cursor: pointer;
}

.modal-footer-wrapper {
  display: flex;
  width: 33.5%;
  margin: 0 auto;
  height: 50px;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid #593d19;
  background: #ff9b05;
  box-shadow: 0px 4px 4px 0px rgba(255, 212, 105, 0.72) inset;
}

.modal-footer-wrapper>button {
  color: #fff;
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  width: 100%;
}

.modal-footer-wrapper>button:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .banner {
    background-image: url("../image/FVBG_sp.png");
    height: 145px;
  }

  .banner .container {
    padding: 0;
  }

  .banner .container>p {
    padding: 0;
    margin: 0;
  }

  .banner .container>p.banner-jp {
    padding-top: 20px;
  }

  .banner-jp {
    font-size: 16px;
    padding-top: 20px;
  }

  .banner-en {
    font-size: 28px;
  }

  .banner-en>span {
    font-size: 26px;
  }

  .banner-image {
    overflow: hidden;
    width: 108%;
    height: 100%;
    position: absolute;
    top: 0px;
    right: -4%;
  }

  .banner-image__img1 {
    max-width: 127px;
    max-height: 135px;
    right: 36px;
    z-index: 1;
  }

  .banner-image__img2 {
    max-width: 122px;
    max-height: 145px;
    right: -15px;
  }

  .banner-filter {
    top: calc(100% - 19px);
    width: 100%;
    padding: 0 0 7px;
    z-index: 2;
  }

  .banner-filter__header {
    gap: 36px;
    padding-left: 17px;
    height: 25px;
    margin-bottom: 7px;
  }

  .banner-filter__header::after {
    width: 98%;
  }

  .banner-filter__header>p {
    font-size: 14px;
  }

  .banner-filter__header>p:nth-child(1)::before {
    right: -18px;
  }

  .banner-filter__header>p.active::after {
    height: 2px;
    bottom: -3px;
  }

  .banner-filter__form {
    padding: 0 11px;
  }

  .banner-filter__form form.sp-only {
    display: flex !important;
    flex-wrap: wrap;
    margin-bottom: 10px;
    gap: 10px;
  }

  .banner-filter__form form.sp-only .custom-select-wrapper {
    position: relative;
    display: inline-flex;
    font-weight: bold;
  }

  .banner-filter__form form.sp-only .custom-select-wrapper:nth-child(1),
  .banner-filter__form form.sp-only .custom-select-wrapper:nth-child(2),
  .banner-filter__form form.sp-only .custom-select-wrapper:nth-child(3) {
    width: calc(33.3333333333% - 10px);
  }

  .banner-filter__form form.sp-only .custom-select-wrapper:nth-child(4) {
    width: calc(66.6666666667% - 6px);
  }

  .banner-filter__form form.sp-only .custom-select-wrapper.custom-search-div-1,
  .banner-filter__form form.sp-only .custom-select-wrapper.custom-search-div-2,
  .banner-filter__form form.sp-only .custom-select-wrapper.custom-search-div-3 {
    width: calc(33.3333333333% - 10px);
  }

  .banner-filter__form form.sp-only .custom-select-wrapper.custom-search-div-4 {
    width: calc(66.6666666667% - 6px);
  }

  .banner-filter__form form.sp-only .custom-select {
    color: #717171;
    font-size: 12px;
    padding: 0 30px 10px 0px;
    width: 100%;
    border-radius: 4px;
    line-height: 43px;
  }

  .banner-filter__form form.sp-only .custom-select::after {
    right: 10px;
    background-image: url("/public/image/Vector.png");
  }

  .banner-filter__form form.sp-only .custom-select-wrapper::after {
    display: none;
  }

  .banner-filter__form-btn {
    width: calc(33.333% - 11px);
    font-size: 15px;
  }

  .banner-filter__form-matching-total {
    font-size: 16px;
    padding-left: 11px;
    margin-bottom: 7px;
  }

  .banner-filter__form-popular-tag {
    font-size: 14px;
    padding-left: 5px;
    display: grid;
    grid-template-columns: auto auto;
  }

  .banner-filter__form-popular-tag__tag {
    color: #0e9deb;
  }

  .modal-footer-wrapper {
    width: 50%;
  }

  .modal-footer-wrapper>button {
    width: 100%;
    font-size: 20px;
  }
}

@media (min-width: 481px) and (max-width: 600px) {
  /* Code responsive */
}

@media (min-width: 601px) and (max-width: 768px) {
  /* Code responsive */
}

.banner_search {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner_search-dialog-title {
  border-radius: 5px 5px 0px 0px;
  background: var(--Linear, linear-gradient(90deg, #0fa8fb 0%, #3dc5e6 100%));
}

.banner_search-dialog-content {
  text-align: center;
}

.banner_search-dialog-header {
  color: #fff;
}

.banner_search-dialog-subtitle {
  background: #ff9b05;
}

.banner_search-dialog-subtitle_custom {
  color: #fff;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  height: 36px;
  line-height: 36px;
}

.banner_search .container {
  position: relative;
  height: 100%;
  /*padding: 30px 0 24px;*/
}

.banner_search .container>p {
  padding: 0;
  margin: 0;
}

.banner_search .container .custom-list-title {
  background-color: #f3f3f3;
  border-radius: 5px;
}

.banner_search .container .banner-search-title {
  color: #333;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  padding-left: 21px;
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 12px;
}

.banner_search .container .banner-search-title::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 8px;
  left: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #0fa8fb 0%, #80efc8 100%);
}

.banner_search-filter {
  width: 100%;
  padding: 5px 10px;
  height: auto;
  border-radius: 5px;
  border: 1px solid #d9d9d9;
  background: linear-gradient(56deg, #fff 65.39%, rgba(255, 255, 255, 0.9) 101.48%);
}

.banner_search-filter__header {
  display: flex;
  align-items: center;
  gap: 69px;
  padding-left: 33px;
  height: 42px;
  margin-bottom: 23px;
  position: relative;
}

.banner_search-filter__header::after {
  position: absolute;
  content: "";
  width: 99%;
  height: 1px;
  background-color: #d9d9d9;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.banner_search-filter__header>p {
  color: #333;
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  padding: 0;
  position: relative;
  cursor: pointer;
}

.banner_search-filter__header>p:nth-child(1)::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 13px;
  background-color: #d9d9d9;
  right: -33px;
  top: 50%;
  transform: translateY(-50%);
}

.banner_search-filter__header>p.active {
  color: #0e9deb;
}

.banner_search-filter__header>p.active::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #0e9deb;
  bottom: -8px;
  left: 0;
  z-index: 5;
}

.banner_search-filter__form {
  padding: 0 33px;
}

.banner_search-filter__form .custom-title-wrapper::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 20px;
  pointer-events: none;
  margin: 2px -25px;
  background: linear-gradient(180deg, #0fa8fb 0%, #80efc8 100%);
}

.banner_search-filter__form .custom-selected-wrapper {
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  gap: 15px;
  height: 32px;
  background-color: #0fa8fb;
  margin: 5px 0px 0px 0px;
}

.banner_search-filter__form .custom-selected-wrapper::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 27px;
  background: url("../image/ic_baseline-double-arrow.png") no-repeat center center;
  pointer-events: none;
  margin-right: 90px;
  background-color: #0fa8fb;
}

.banner_search-filter__form .custom-description-wrapper {
  margin-left: 40px !important;
}

.banner_search-filter__form .custom-description-wrapper::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 20px;
  pointer-events: none;
  margin: 2px 0px 0px -13px;
  background-color: #969393;
}

.banner_search-filter__form .custom-description-wrapper_sp {
  margin-left: 14px !important;
}

.banner_search-filter__form .custom-description-wrapper_sp::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  pointer-events: none;
  margin: 2px 0px 0px 0px;
  background-color: #969393;
  background: url(../image/vector_plus.png) no-repeat;
}

.banner_search-filter__form .custom-description-wrapper_sp::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 20px;
  pointer-events: none;
  margin: 2px 0px 0px -13px;
  background-color: #969393;
}

.banner_search-filter__form-matching-total {
  width: 100%;
  height: 48px;
  flex-shrink: 0;
  background: #f5fdff;
  color: #333;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 13px;
  margin-bottom: 13px;
  color: #333;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 5px 14px 5px 19px;
}

.banner_search-filter__form-matching-total__number {
  color: #0fa8fb;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-right: 0;
}

.banner_search-filter__form-matching-total::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #99dafd;
}

.banner_search-filter__form-matching-total_sp {
  gap: 0px;
  opacity: 0px;
  flex-shrink: 0;
  background: #f5fdff;
  color: #333;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 13px;
  margin-bottom: 13px;
  color: #333;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 0px 0px 0px 18px;
  font-family: Hiragino Kaku Gothic Pro;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  text-align: left;
}

.banner_search-filter__form-matching-total_sp__number {
  color: #0fa8fb;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-right: 5px;
}

.banner_search-filter__form-matching-total_sp::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 100%;
  top: 0;
  left: 0;
  background: #0fa8fb;
}

.banner_search-filter__form-matching-head-list {
  background: rgba(153, 218, 253, 0.4823529412);
  color: #333;
  display: flex;
  align-items: center;
  position: relative;
  height: 15px;
  box-shadow: -1px -1px 2px 0px rgba(0, 0, 0, 0.15);
  margin-top: 0px;
  margin-left: -13px;
  margin-right: -13px;
}

.banner_search-filter__form-matching-head-list::before {
  position: absolute;
  content: "";
  background-image: url("../image/rectangle_984.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 26px;
  left: 13px;
  top: 13px;
  transform: translateY(-50%);
}

.banner_search-filter__form-matching-feature-list {
  background: rgba(153, 218, 253, 0.4823529412);
  color: #333;
  display: flex;
  align-items: center;
  position: relative;
  height: 15px;
  box-shadow: -1px -1px 2px 0px rgba(0, 0, 0, 0.15);
  margin-top: 0px;
  margin-left: -13px;
  margin-right: -13px;
}

.banner_search-filter__form-matching-feature-list::before {
  position: absolute;
  content: "";
  background-image: url("../image/rectangle_991.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 26px;
  left: 13px;
  top: 13px;
  transform: translateY(-50%);
}

.banner_search-filter__form-matching-non-feature {
  background: rgba(153, 218, 253, 0.4823529412);
  color: #333;
  display: flex;
  align-items: center;
  position: relative;
  height: 15px;
  box-shadow: -1px -1px 2px 0px rgba(0, 0, 0, 0.15);
  margin-top: 0px;
  margin-left: -13px;
  margin-right: -13px;
}

/* search modal css start */
.search-head-btn_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.search-head-btn {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.search-head-btn_item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17.5%;
  height: 40px;
  border: 1px solid black;
  border-radius: 5px;
  color: #333;
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  background: white;
}

.search-head-btn__checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 17.5%;
  height: 40px;
  border: 1px solid black;
  border-radius: 5px;
  color: #333;
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  background: white;
  margin-bottom: 44px;
}

@media screen and (max-width: 1024px) {
  .search-head-btn {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
  }

  .search-head-btn_item {
    width: 100%;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .search-head-btn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
  }

  .search-head-btn_item {
    width: 100%;
    margin-bottom: 0;
  }
}

.search-head-btn_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 650px;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 30px;
}

.search-head-btn_grid>.form-check {
  border: 1px solid black;
  color: #333;
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  gap: 20px;
  height: 40px;
  cursor: pointer;
  position: relative;
  padding-left: 0;
}

.search-head-btn_grid>.form-check>input {
  width: 17px;
  height: 17px;
  border-radius: 3px;
  border: 1px solid #333;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  margin-left: 0;
  margin-top: 0;
}

.search-head-btn_grid>.form-check>label {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding-left: 20px;
}

.outsourcing_job-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
  margin: 0 auto;
  padding-top: 30px;
}

.outsourcing_job-type>button {
  width: 100%;
  height: 40px;
  border: 1px solid black;
  border-radius: 5px;
  color: #333;
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  background: white;
  cursor: pointer;
}

.outsourcing_job-type>button.text-18 {
  font-size: 18px;
}

.outsourcing_job-type_group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 30px;
  padding-bottom: 30px;
}

.outsourcing_job-type_group>button {
  width: 100%;
  height: 40px;
  border: 1px solid black;
  border-radius: 5px;
  color: #333;
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  background: white;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .search-head-btn_grid {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .search-head-btn_grid>.form-check>input {
    margin-top: 0;
  }

  .outsourcing_job-type {
    width: 100%;
  }

  .outsourcing_job-type>button {
    font-size: 14px;
  }

  .outsourcing_job-type>button.text-18 {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .search-head-btn_grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .search-head-btn_grid>.form-check>input {
    margin-top: 0;
  }

  .col-span-2 {
    order: 999;
  }

  .outsourcing_job-type {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .outsourcing_job-type>button {
    font-size: 14px;
  }

  .outsourcing_job-type>button.text-18 {
    font-size: 14px;
  }
}

.col-span-2 {
  grid-column: span 2;
}

.hidden {
  display: none;
}

.disabled-btn {
  background-color: gray;
  color: white;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .disabled-btn {
    background: #ff9b05;
  }
}

.disabled-btn-step {
  background-color: gray !important;
  color: white !important;
  pointer-events: none !important;
}

.choose-region {
  padding-top: 30px;
  padding-bottom: 30px;
}

.choose-region_title {
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid black;
  border-radius: 5px;
  width: 88%;
  margin: 0 auto;
  margin-bottom: 11px;
}

.choose-region_region {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px 30px;
  width: 88%;
  margin: 0 auto;
}

.choose-region_region-item {
  border: 1px solid black;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  height: 40px;
  cursor: pointer;
}

.choose-region_custom {
  display: flex;
  justify-content: center;
  align-items: center;
}

.choose-region_custom>button {
  width: 140px;
}

@media screen and (max-width: 1024px) {
  .choose-region_title {
    width: 100%;
  }

  .choose-region_region {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .choose-region_title {
    width: 100%;
  }

  .choose-region_region {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .choose-region_custom {
    flex-wrap: wrap;
  }

  .choose-region_custom>button {
    width: 50%;
  }
}

.grid-col-2 {
  grid-template-columns: 1fr 1fr !important;
}

.w-210 {
  width: 210px !important;
}

.w-240 {
  width: 240px !important;
}

.w-180 {
  width: 180px !important;
}

.w-fit {
  width: fit-content !important;
}

.flex-wrap {
  display: flex !important;
  flex-wrap: wrap;
}

.p-020040 {
  padding: 0 20px 0 40px;
}

.choose-conditions {
  padding-bottom: 30px;
}

.choose-conditions__item {
  margin-top: 30px;
  display: flex;
  gap: 40px;
  min-height: 100px;
}

.choose-conditions__item-title {
  color: #333;
  text-align: end;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  position: relative;
  min-width: 15%;
}

.choose-conditions__item-title::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 100px;
  border-radius: 16px;
  background: #d9d9d9;
  right: -24px;
  top: 0;
}

.choose-conditions__item-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 30px;
}

.choose-conditions__item-content_checkbox {
  width: 140px;
  height: 40px;
  border: 1px solid black;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.choose-conditions__item-content_checkbox>input {
  width: 17px;
  height: 17px;
  border-radius: 3px;
  border: 1px solid #333;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}

.choose-conditions__item-content_checkbox>.form-check-input {
  margin-top: 0;
}

.choose-conditions__item-content_checkbox>label {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.chose {
  background: #717171 !important;
  color: white !important;
}

.chose>.form-check-input {
  margin-top: 0 !important;
}

.chose>.form-check-input:checked {
  background-color: white;
  border: white;
}

.chose>.form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="black" viewBox="0 0 24 24"><path d="M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z"/></svg>');
}

.banner_search-page-conditions {
  padding: 0;
}

.search-page-conditions {
  display: flex;
  flex-direction: column;
  color: #000;
  font-family: "Hiragino Kaku Gothic Pro";
  line-height: normal;
  font-style: normal;
}

@media screen and (max-width: 768px) {
  .search-page-conditions {
    padding: 0;
  }
}

.search-page-conditions__item {
  display: grid;
  grid-template-columns: 20% 16% 1fr;
  border-bottom: 1px solid #d9d9d9;
  padding: 6px 0;
}

@media screen and (max-width: 768px) {
  .search-page-conditions__item {
    grid-template-columns: repeat(3, 1fr);
    background-color: #fff;
    border-radius: 5px;
    height: 50px;
    align-items: center;
    padding: 0 10px;
    position: relative;
    margin-bottom: 8px;
  }

  .search-page-conditions__item .plus-btn-search-conditions {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    cursor: pointer;
  }
}

.search-page-conditions__item:last-child {
  border-bottom: none;
}

.search-page-conditions__item__title {
  font-size: 18px;
  font-weight: 600;
  padding-left: 20px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .search-page-conditions__item__title {
    font-size: 16px;
  }
}

.search-page-conditions__item__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, #0fa8fb 0%, #80efc8 100%);
}

.search-page-conditions__item__selected {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  background: #0fa8fb;
  color: #fff;
  max-width: 123px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .search-page-conditions__item__selected {
    font-size: 14px;
    max-width: max-content;
    padding: 5px;
  }

  .search-page-conditions__item__selected>img {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }
}

.search-page-conditions__item__description {
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
  padding-left: 13px;
  padding-right: 15px;
}

.search-page-conditions__item__description::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 2px;
  height: 19px;
  background-color: #969393;
}

.search-page-jobs {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 9px;
}

@media screen and (max-width: 768px) {
  .search-page-jobs {
    grid-template-columns: 1fr;
  }

  .search-page-jobs .detail-screen__wrapper {
    padding: 0 10px;
  }
}

.search-page-jobs__content {
  display: grid;
  grid-template-columns: 8fr 0fr;
}

@media screen and (max-width: 768px) {
  .search-page-jobs__content {
    grid-template-columns: 1fr;
  }
}

.search-page-jobs .detail-screen_header {
  position: relative;
}

@media screen and (max-width: 768px) {
  .search-page-jobs .detail-screen_header {
    width: 100%;
    margin: 0;
  }
}

.search-page-jobs .detail-screen_header .detail-screen_header__title {
  width: 75%;
}

@media screen and (max-width: 768px) {
  .search-page-jobs .detail-screen_header .detail-screen_header__title {
    width: 100% !important;
  }
}

.search-page-jobs .detail-screen_header .detail-screen_header__tag {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.search-page-jobs .detail-screen_header .detail-screen_header__tag>span {
  display: inline-flex;
  height: 24px;
  line-height: 24px !important;
  padding: 0 5px;
}

@media screen and (max-width: 768px) {
  .search-page-jobs .detail-screen_header .detail-screen_header__tag {
    bottom: -18px;
    top: unset;
  }
}

.search-page-jobs .detail-screen_tag {
  width: 70%;
  flex-wrap: wrap;
  gap: 5px 13px;
}

.search-page-jobs .detail-screen_tag>span {
  width: max-content;
  padding: 0 5px;
}

@media screen and (max-width: 768px) {
  .search-page-jobs .detail-screen_tag {
    width: 100%;
  }
}

.search-page-jobs__content .detail-screen_point-pc-image>img {
  width: 100%;
  object-fit: contain;
}

.search-page-jobs__content .detail-screen_point-img__point-pccontent {
  padding-right: 10px;
}

.search-page-jobs__content .detail-screen_point-img__point-pic {
  height: 60px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-page-jobs__content .charm-point-sp {
  display: none;
  color: #fff;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 14px;
  font-style: normal;
  line-height: normal;
  padding: 3px;
  background-color: #0fa8fb;
  height: 54px;
  border-radius: 5px;
  margin-bottom: 4px;
}

@media screen and (max-width: 768px) {
  .search-page-jobs__content .charm-point-sp {
    display: grid;
    grid-template-columns: 1fr 3fr;
  }

  .search-page-jobs__content .charm-point-sp__title {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .search-page-jobs__content .charm-point-sp__content {
    border-radius: 3px;
    background-color: #fff;
  }

  .search-page-jobs__content .charm-point-sp__content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 5px;
  }

  .search-page-jobs__content .charm-point-sp__content-wrapper>p {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 3px;
    color: #333;
    width: 100%;
    text-align: center;
  }

  .search-page-jobs__content .charm-point-sp__content-wrapper>p:first-child {
    top: 33.3333333333%;
    height: 33.3333333333%;
  }

  .search-page-jobs__content .charm-point-sp__content-wrapper>p:nth-child(2) {
    top: 66.6666666667%;
    height: 33.3333333333%;
    border: none;
  }

  .search-page-jobs__content .charm-point-sp__content-wrapper>p:last-child {
    top: 100%;
    height: 33.3333333333%;
  }

  .search-page-jobs__content .charm-point-sp__content-wrapper>span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    z-index: 1;
    background: transparent;
    color: #333;
    padding: 0 5px;
  }
}

@media screen and (max-width: 768px) {
  .search-page-jobs .detail-screen_bookmark-list {
    margin-left: 0;
  }
}

@media screen and (max-width: 1024px) {
  .choose-conditions__item-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-col-2 {
    grid-template-columns: 1fr !important;
  }
}

@media screen and (max-width: 768px) {
  .choose-conditions__item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .choose-conditions__item-title {
    text-align: start;
  }

  .choose-conditions__item-title::before {
    left: 0;
    top: unset;
    bottom: -5px;
    width: 100px;
    height: 5px;
  }

  .choose-conditions__item-content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }

  .choose-conditions__item-content_checkbox {
    width: 100%;
  }

  .w-fit {
    width: 100% !important;
  }

  .w-180 {
    width: 100% !important;
  }

  .grid-col-2 {
    grid-template-columns: 1fr !important;
  }
}

/* search modal css end */
@media (max-width: 768px) {
  body {
    padding-right: 0 !important;
  }

  .sp-custom-selected-wrapper::before {
    content: "";
    position: absolute;
    background: url("/resources/image/ic_baseline-double-arrow.png") no-repeat center center;
    pointer-events: none;
    margin-right: 90px;
    background-color: #0fa8fb;
    width: 22.936px;
    height: 24px;
    flex-shrink: 0;
    margin: -1px 0px 0px -25px;
  }

  .jobs-content__list {
    display: inline-grid !important;
    gap: 15px;
  }

  .banner_search {
    width: 421px;
    height: 163px;
    flex-shrink: 0;
    background: rgba(153, 218, 253, 0.48);
    padding-top: 18px;
  }

  .banner_search .container {
    padding: 0;
  }

  .banner_search .container>p {
    padding: 0;
    margin: 0;
  }

  .banner_search .container>p.banner_search-jp {
    padding-top: 20px;
  }

  .banner_search-filter {
    top: calc(100% - 19px);
    width: 100%;
    padding: 8px 15px 10px;
    z-index: 2;
    background: rgba(153, 218, 253, 0.4823529412);
    border: none;
    border-radius: 0;
  }

  .banner_search-filter__form {
    padding: 0 33px;
    background: #fff;
    margin: 8px;
  }

  .banner_search-filter__form .custom-selected-wrapper {
    margin: 5px 0px 0px 0px;
    width: 100px;
    padding: 0px 0px 0px 20px;
  }

  .banner_search-filter__form .custom-description-wrapper {
    margin-left: 20px !important;
  }

  .banner_search-filter__form .custom-title {
    margin-top: 7px;
  }

  .banner_search-filter__form .custom-title-wrapper {
    width: 55px;
  }

  .banner_search-filter__form-matching-total_sp {
    padding: 0 17px;
    background: #fff;
    margin: 0;
  }

  .banner_search-filter__header {
    gap: 36px;
    padding-left: 17px;
    height: 25px;
    margin-bottom: 7px;
  }

  .banner_search-filter__header::after {
    width: 98%;
  }

  .banner_search-filter__header>p {
    font-size: 14px;
  }

  .banner_search-filter__header>p:nth-child(1)::before {
    right: -18px;
  }

  .banner_search-filter__header>p.active::after {
    height: 2px;
    bottom: -3px;
  }
}

.breadcrumb {
  margin-top: 2px;
  margin-bottom: 17px;
  font-size: 14px;
}

.breadcrumb a {
  color: #0e9deb;
  font-family: "Hiragino Kaku Gothic Pro";
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-decoration: none;
}

.breadcrumb-div {
  height: 25px;
  line-height: 25px;
  background-color: #f5fdff;
  width: 100%;
}

.detail-screen .row {
  padding: 5px;
}

.detail-screen {
  border: 1px solid #d9d9d9;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  margin-top: 15px;
  border: 1px solid #d9d9d9;
  margin-top: 0px;
  margin-bottom: 22px;
  width: fit-content;
}

.detail-screen_active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100% !important;
  z-index: 1000;
  display: flex !important;
  transform: translateY(-100%);
  transition: transform 0.7s ease-in-out;
  transform: translateY(0);
}

.detail-screen_inactive {
  top: 0;
  right: 0;
  position: fixed;
  left: 0;
  display: inline-flex !important;
  transform: translateY(-100%);
  transition: transform 0.7s ease-in-out;
}

.detail-screen .divider-2 {
  width: calc(100% - 20px);
  height: 2px;
  background-color: #d9d9d9;
  margin: 0 10px;
}

.detail-screen_header {
  color: #333;
  font-family: "Hiragino Kaku Gothic Pro";
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  justify-content: space-between;
  padding: 0 11px;
}

.detail-screen_header__title {
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 20px;
  font-weight: 600;
  line-height: 31.5px;
  text-align: left;
  padding: 5px;
  width: 75%;
  margin-bottom: 0;
}

.detail-screen_header-apply {
  width: 1000px;
  height: 72px;
  flex-shrink: 0;
  background: var(--Linear, linear-gradient(90deg, #0fa8fb 0%, #3dc5e6 100%));
  align-items: center;
  display: inline-flex;
}

.detail-screen_header__title-apply {
  width: 314px;
  color: #fff;
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.56px;
}

.detail-screen_header__title-apply::before {
  width: 8px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 12px;
  background: #fff;
}

.detail-screen_header__tag {
  color: #fff;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  padding: 5px;
}

.detail-screen_header__tag span {
  border-radius: 5px;
  line-height: 30px !important;
  padding: 5px;
}

.detail-screen_header__tag span:nth-child(1) {
  background-color: #e92542;
}

.detail-screen_header__tag span:nth-child(2) {
  background-color: #0fa8fb;
}

.detail-screen_header__tag-apply {
  font-size: 16px;
  color: #fff;
  width: 35% !important;
}

.detail-screen_header__tag-apply span {
  padding: 2px 7px;
  border-radius: 5px;
  line-height: 30px !important;
}

.detail-screen_header__tag-apply span:nth-child(1) {
  background-color: #e92542;
}

.detail-screen_header__tag-apply span:nth-child(2) {
  background-color: #0fa8fb;
}

.detail-screen_tag {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 13px;
  margin: 6px 0px 15px 10px;
}

.detail-screen_tag span {
  color: #0fa8fb;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  width: max-content;
  border: 1px solid #0fa8fb;
  border-radius: 3px;
  padding: 0 8px;
}

.detail-screen_content {
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.detail-screen_content-item {
  display: grid;
  grid-template-columns: 85px 1fr;
  gap: 15px;
  border-bottom: 1px solid #f5f5f5;
  padding: 6px 0;
}

.detail-screen_content-item__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #333;
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  background-color: #f5f5f5;
  border-radius: 6px;
}

.detail-screen_content-item__title span {
  font-size: 12px;
  width: 96px;
  height: 18px;
}

@media screen and (max-width: 768px) {
  .detail-screen_content-item__title.custom-bg {
    background-color: #fff;
  }
}

.detail-screen_content-item__text {
  display: flex;
  flex-direction: column;
  color: #000;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  padding: 6px 0;
}

.detail-screen_content-item__text-title {
  font-weight: 600;
  margin-bottom: 15px;
  display: none;
}

.detail-screen_content-item__text-desc_title {
  color: #333;
  font-size: 14px;
  font-weight: 600;
  background-color: rgba(153, 218, 253, 0.48);
  padding-left: 5px;
  margin-bottom: 15px;
}

.detail-screen_content-item__text-desc p {
  margin-bottom: 12px !important;
}

.detail-screen_content-item__text-desc p:last-child {
  margin-bottom: 0 !important;
}

.detail-screen_content-item__text-desc__img {
  display: none;
}

.detail-screen_content-item__text-desc__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.detail-screen_content-item__text>p {
  margin-bottom: 0;
}

.detail-screen_content-item__text.custom-color {
  color: #0fa8fb;
  font-weight: 600;
}

.detail-screen_content-other {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.detail-screen_content-other_employment-status,
.detail-screen_content-other_period,
.detail-screen_content-other_holidays,
.detail-screen_content-other_working-hours {
  display: flex;
  align-items: center;
  gap: 5px;
}

.detail-screen_content-other_employment-status .detail-screen_content-item__title,
.detail-screen_content-other_period .detail-screen_content-item__title,
.detail-screen_content-other_holidays .detail-screen_content-item__title,
.detail-screen_content-other_working-hours .detail-screen_content-item__title {
  width: 85px;
  word-break: keep-all;
  height: 100%;
}

.detail-screen_content-other_employment-status .detail-screen_content-item__text,
.detail-screen_content-other_period .detail-screen_content-item__text,
.detail-screen_content-other_holidays .detail-screen_content-item__text,
.detail-screen_content-other_working-hours .detail-screen_content-item__text {
  flex-direction: row;
  gap: 15px;
  font-weight: 600;
  max-width: 60%;
}

.detail-screen_point-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 0 12px;
  gap: 30px;
}

.detail-screen_point-img__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.detail-screen_point-img__image img {
  width: 100%;
  height: 100%;
}

.detail-screen_point-img__point {
  display: flex;
  flex-direction: column;
  background: #0fa8fb;
  padding: 0 4px 4px;
  border-radius: 5px 5px 5px 5px;
}

.detail-screen_point-img__point-title {
  color: #fff;
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  height: 58px;
  line-height: 58px;
}

.detail-screen_point-img__point-desc {
  color: #000;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  background-color: #fff;
  height: 100%;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.detail-screen_point-img__point-desc>p {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 3px;
  color: #333;
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.detail-screen_point-img__point-desc>p:first-of-type {
  top: 25%;
}

.detail-screen_point-img__point-desc>p:nth-of-type(2) {
  top: 50%;
}

.detail-screen_point-img__point-desc>p:nth-of-type(3) {
  top: 75%;
}

@media screen and (max-width: 768px) {
  .detail-screen_point-img__point-desc>p:first-of-type {
    top: 0;
  }

  .detail-screen_point-img__point-desc>p:nth-of-type(2) {
    top: 35%;
  }

  .detail-screen_point-img__point-desc>p:nth-of-type(3) {
    display: none;
  }
}

.detail-screen_point-img__point-desc>span {
  position: absolute;
  top: 0;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  z-index: 1;
  background: transparent;
  color: #333;
  line-height: 3;
  padding: 0 10px;
}

@media screen and (max-width: 768px) {
  .detail-screen_point-img__point-desc>span {
    line-height: 1.2;
  }
}

.detail-screen_point-img__point-pic {
  color: #000;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: -webkit-fill-available;
  gap: 2px;
  border-radius: 6px;
  padding: 0px 0px 10px 0px;
}

.detail-screen_point-img__point-pic>p {
  text-align: center;
  height: 0px;
  border: 1px solid #d9d9d9;
}

.detail-screen_point-img__point-pic>span {
  position: absolute;
  top: 0;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  z-index: 1;
  background: transparent;
  color: #333;
  line-height: 3;
  padding: 0 10px;
}

.detail-screen_point-img__point-pctitle {
  font-family: Hiragino Kaku Gothic Pro;
  font-size: 18px;
  font-weight: 600;
  line-height: 21px;
  text-align: center;
  height: 31px;
  padding: 5px;
  top: 794px;
  left: 882px;
  gap: 0px;
  border-radius: 5px 0px 0px 0px;
  color: #ffffff;
}

.detail-screen_point-img__point-pcimg {
  left: 880px;
  gap: 0px;
  border-radius: 5px 0px 0px 0px;
  opacity: 0px;
  width: 258px;
  top: 767px;
  left: 880px;
  gap: 0px;
  border-radius: 5px 0px 0px 0px;
  opacity: 0px;
  margin-top: 30px;
  background: #0fa8fb;
  color: #ffffff;
}

.detail-screen_point-img__point-pcimage {
  width: 100%;
  height: 100%;
  gap: 0px;
  opacity: 0px;
  margin-top: 15px;
}

.detail-screen_point-img__point-pccontent {
  display: inline-grid;
  flex-direction: column;
  gap: 9px;
  height: 102px;
  gap: 0px;
  border-radius: 5px 0px 0px 0px;
  opacity: 0px;
}

.detail-screen-dropbox {
  border: 1px solid #d9d9d9;
  max-width: 200px;
  height: 39px;
  gap: 0px;
  font-family: Hiragino Kaku Gothic Pro;
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  text-align: center;
  gap: 0px;
  border-radius: 3px 0px 0px 0px;
  width: 200px;
  gap: 0px;
  border: 1px 0px 0px 0px;
  opacity: 0px;
}

.detail-screen_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 23px 0;
  gap: 19px;
  background: #f5f5f5;
  width: -webkit-fill-available;
}

.detail-screen_btn-bookmark {
  color: #fff;
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 5px;
  border: 1px solid #593d19;
  background: #1ac17e;
  box-shadow: 0px 4px 4px 0px #1ee19c inset;
  width: 269px;
  height: 50px;
  line-height: 50px;
}

.detail-screen_btn-bookmark img {
  width: 20px;
  object-fit: contain;
}

.detail-screen_btn-list-bookmark {
  color: #000;
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 5px;
  width: 270px;
  height: 50px;
  line-height: 50px;
  text-decoration: none;
  background: url("../image/btn-job-detail.png") 50%/cover no-repeat;
  background-color: transparent;
}

.detail-screen_btn-list-bookmark img {
  width: 23px;
  object-fit: contain;
  margin: 10px;
}

.detail-screen_btn-apply {
  color: #fff;
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 5px;
  width: 269px;
  height: 50px;
  line-height: 50px;
  text-decoration: none;
  background: url("../image/btn-job-apply.png") 50%/cover no-repeat;
  background-color: transparent;
}

.detail-screen_btn-apply img {
  width: 23px;
  object-fit: contain;
}

.detail-screen_bookmark-list {
  background: #f9f9f9;
  margin: 0px 0px 80px 0px;
  padding: 5px;
}

.detail-screen_bookmark-list__title {
  color: #333;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 19px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 8px;
}

.detail-screen_bookmark-list__title img {
  width: 20px;
  object-fit: contain;
}

.detail-screen_bookmark-list__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  margin-bottom: 44px;
}

.detail-screen_bookmark-list__content-item {
  border-radius: 0px 0px 5px 5px;
  border: 1px solid #333;
  background: #fff;
  padding-bottom: 17px;
  position: relative;
}

.detail-screen_bookmark-list__content-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.detail-screen_bookmark-list__content-item__tag {
  position: relative;
  margin-bottom: 10px;
}

.detail-screen_bookmark-list__content-item__tag span {
  position: absolute;
  bottom: -5px;
  left: 17px;
  border-radius: 3px;
  padding: 2px 14px;
  color: #fff;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.detail-screen_bookmark-list__content-item__text {
  color: #000;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 4px;
  margin-left: 18px;
  margin-right: 18px;
}

.detail-screen_bookmark-list__content-item__icon {
  position: absolute;
  top: 14px;
  right: 6px;
}

.detail-screen_bookmark-list__content-item__icon img {
  width: 20px;
  object-fit: contain;
}

.detail-screen_bookmark-list__jobs {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 42px;
  margin-bottom: 44px;
}

.detail-screen_bookmark-list__jobs-item {
  border-radius: 0px 0px 5px 5px;
  border: 1px solid #333;
  background: #fff;
  padding-bottom: 17px;
  position: relative;
}

.detail-screen_bookmark-list__jobs-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.detail-screen_bookmark-list__jobs-item__tag {
  position: relative;
  margin-bottom: 10px;
}

.detail-screen_bookmark-list__jobs-item__tag span {
  position: absolute;
  bottom: -5px;
  left: 17px;
  border-radius: 3px;
  padding: 2px 14px;
  color: #fff;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.detail-screen_bookmark-list__jobs-item__text {
  color: #000;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 4px;
  margin-left: 18px;
  margin-right: 18px;
}

.detail-screen_bookmark-list__jobs-item__icon {
  position: absolute;
  top: 14px;
  right: 6px;
}

.detail-screen_bookmark-list__jobs-item__icon img {
  width: 20px;
  object-fit: contain;
}

.detail-screen_bookmark-list__link {
  display: flex;
  justify-content: center;
  align-items: center;
}

.detail-screen_bookmark-list__link a {
  text-decoration: none;
  color: #0fa8fb;
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.divider-20 {
  width: 100%;
  height: 20px;
  background-color: rgba(153, 218, 253, 0.48);
}

@media screen and (max-width: 768px) {
  .detail-screen {
    gap: 0px;
    width: fit-content;
  }

  .detail-screen_active {
    position: fixed;
    z-index: 999;
  }

  .detail-screen__wrapper>.divider-2 {
    display: none;
  }

  .detail-screen>.divider-2 {
    display: none;
  }

  .detail-screen_header {
    position: relative;
    margin: 5px 10px 5px 8px;
    padding: 0;
    flex-direction: column;
    padding-bottom: 6px;
    border-bottom: 1px solid #d9d9d9;
  }

  .detail-screen_header__title {
    width: 100%;
    font-family: "Hiragino Kaku Gothic Pro";
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
    padding: 10px 0px 10px 0px;
  }

  .detail-screen_header__tag {
    font-size: 14px;
    transform: unset !important;
    inset: unset !important;
    position: relative !important;
    text-align: start;
    padding: 0;
  }

  .detail-screen_header__tag span {
    padding: 2px 7px;
  }

  .detail-screen_tag {
    display: flex;
    gap: 9px;
    margin-top: 5px;
  }

  .detail-screen_tag span {
    font-size: 14px;
  }

  .detail-screen_tag.custom-tag {
    padding: 0;
    margin: 0;
    margin-bottom: 9px;
    margin-top: 5px;
  }

  .detail-screen_content {
    gap: 2px;
  }

  .detail-screen_content-item {
    grid-template-columns: 74px 1fr;
    padding-bottom: 6px;
  }

  .detail-screen_content-item__title span {
    font-size: 10px;
  }

  .detail-screen_content-item__text {
    font-size: 14px;
    padding: 0;
  }

  .detail-screen_content-item__text-title {
    margin-bottom: 0;
  }

  .detail-screen_content-item__text-desc_title {
    padding-left: 3px;
  }

  .detail-screen_content-item__text-desc__img {
    display: block;
  }

  .detail-screen_content-item__text-desc__img img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .detail-screen_content-other {
    grid-template-columns: 1fr;
    gap: 2px;
    border: none !important;
  }

  .detail-screen_content-other_employment-status,
  .detail-screen_content-other_period,
  .detail-screen_content-other_holidays,
  .detail-screen_content-other_working-hours {
    gap: 16px;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 3px;
  }

  .detail-screen_content-other_employment-status .detail-screen_content-item__title,
  .detail-screen_content-other_period .detail-screen_content-item__title,
  .detail-screen_content-other_holidays .detail-screen_content-item__title,
  .detail-screen_content-other_working-hours .detail-screen_content-item__title {
    width: 74px;
  }

  .detail-screen_content-other_employment-status .detail-screen_content-item__text,
  .detail-screen_content-other_period .detail-screen_content-item__text,
  .detail-screen_content-other_holidays .detail-screen_content-item__text,
  .detail-screen_content-other_working-hours .detail-screen_content-item__text {
    gap: 2px;
    display: flex;
    flex-direction: column;
  }

  .detail-screen_point-img {
    grid-template-columns: 1fr;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .detail-screen_point-img__image {
    display: none;
  }

  .detail-screen_point-img__point {
    flex-direction: row;
    gap: 10px;
    padding: 2px 3px 2px 11px;
    height: 54px;
    margin-top: -17px;
    width: 320px;
    top: 1157px;
    left: 30px;
    border-radius: 3px 3px 3px 3px;
  }

  .detail-screen_point-img__point-title {
    font-size: 14px;
    line-height: 1.3;
    width: 100px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
  }

  .detail-screen_point-img__point-desc {
    font-size: 14px;
    width: 100%;
  }

  .detail-screen_point-img__point-desc>p {
    height: 33.3333333333%;
    margin-bottom: 0;
  }

  .detail-screen_point-img__point-desc>p:nth-last-child(1) {
    border-bottom: none;
  }

  .detail-screen_btn {
    padding: 4px 12px;
    z-index: 998;
  }

  .detail-screen_btn-bookmark {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 34px;
    gap: 0;
    border-radius: 5px;
    line-height: 34px;
    letter-spacing: -1.92px;
  }

  .detail-screen_btn-bookmark img {
    width: 16px;
    height: 16px;
    margin: 0;
  }

  .detail-screen_btn-list-bookmark {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 34px;
    gap: 16px;
    border-radius: 5px;
    letter-spacing: -1.92px;
  }

  .detail-screen_btn-list-bookmark img {
    width: 16px;
    height: 16px;
    margin: 0;
  }

  .detail-screen_btn-apply {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 34px;
    gap: 16px;
    border-radius: 5px;
  }

  .detail-screen_btn-apply img {
    width: 16px;
    height: 16px;
    margin: 0;
  }

  .detail-screen-bookmark-header {
    display: inline;
  }

  .detail-screen_bookmark-list {
    padding: 20px;
    background-color: #f9f9f9;
  }

  .detail-screen_bookmark-list__title {
    margin-left: 0;
    width: max-content;
  }

  .detail-screen_bookmark-list__content {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-bottom: 18px;
  }

  .sp-justify-start {
    justify-content: flex-start;
  }

  .divider-20 {
    height: 10px;
  }
}

.list-group-item {
  position: relative;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 18px;
  font-weight: 600;
}

.menu-container .list-group-item>a {
  color: #333;
  text-decoration: none;
}

.list-group-item i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #0FA8FB;
}

.menu-container {
  width: 315px;
  top: 177px;
  left: 460px;
  background: #F9F9F9;
  padding: 15px;
  margin-bottom: 100px;
}

.list-group {
  width: 280px;
  gap: 0px;
  border: none;
  padding-left: 0;
  --bs-list-group-item-padding-x: 0.5rem;
}

.sub-menu .list-group-item {
  border-bottom: 1px solid #ddd;
  /* Bottom border for each list item */
  border-left: none;
  border-right: none;
  border-top: none;
}

.sub-menu .list-group-item:last-child {
  border-bottom: none;
  /* Optionally remove the bottom border from the last item */
}

.sub-menu .list-group-item:first-child {
  border-top: none;
  /* Optionally remove the bottom border from the last item */
}

.secondary-menu {
  margin-top: 15px;
}

.menu-icon {
  object-fit: fill;
  width: 46px;
  height: 46px;
  margin-right: 10px;
  /* Space between image and text */
}

.list-group-item {
  display: flex;
  align-items: center;
}

.list-group-item img {
  margin-right: 10px;
}

#toggle-icon {
  margin-left: auto;
  /* Push the icon to the right */
}

#toggle-icon-right {
  display: none;
}

.collapsed #toggle-icon-right {
  display: block;
}

.collapsed .fa-minus {
  display: none;
}

.collapse.show .fa-minus {
  display: none;
}

.collapse:not(.show) .fa-minus {
  display: block;
}

/* 
.collapse.show .fa-chevron-right {
    display: none;
} */
/* .collapse:not(.show) .fa-chevron-right {
    display: block;
} */
/* Styling for "新着求人をみる" */
.list-group-item.new-job {
  border-left: 5px solid #0FA8FB;
  /* 5px left border with the specified color */
}

/* Optional: Adjust padding and text styling */
.list-group-item.new-job img {
  margin-right: 5px;
  /* Space between the image and text */
}

.list-group-item.job-offer {
  border-left: 5px solid #0FA8FB;
  /* 5px left border with the specified color */
}

/* Optional: Adjust padding and text styling */
.list-group-item.job-offer img {
  margin-right: 5px;
  /* Space between the image and text */
}

.bookmark-breadcrumb-container {
  height: 25px;
  background: #F5FDFF;
  margin-bottom: 15px;
}

.divider-head {
  height: 2px;
  gap: 0px;
  opacity: 0px;
  border: 1px solid #0FA8FB;
  background: #0FA8FB;
}

.custom-select {
  width: 163px;
  height: 43px;
  gap: 0px;
  border-radius: 3px 0px 0px 0px;
  border: 1px solid #553030;
  text-align: center;
}

.custom-select::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: url("/public/image/Vector.png") no-repeat center center;
  background-size: contain;
  pointer-events: none;
}

.jobs-apply-main {
  width: 989px;
  height: auto;
  opacity: 0px;
  background: #fff;
  margin-top: 15px;
  margin-top: 0px;
  margin-bottom: 22px;
}

.jobs-apply {
  margin-bottom: 150px;
}

.jobs-apply_content {
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: normal;
}

.jobs-apply_content .items {
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 6px;
  display: inline-flex;
  gap: 15px;
  align-items: center;
}

.jobs-apply-custom-select {
  padding: 3px;
  height: 43px;
  gap: 0px;
  border-radius: 3px 0px 0px 0px;
  border: 1px 0px 0px 0px;
  opacity: 0px;
  border: 1px solid #553030;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  text-align: left;
  color: #757575;
  -webkit-appearance: none;
  padding: 10px;
  width: 163px !important;
  text-align: left;
  padding-left: 8px;
}

.jobs-apply-select-box::after {
  content: "";
  transform: translateY(-50%);
  position: absolute;
  width: 15px;
  height: 15px;
  background: url("/public/image/Vector.png") no-repeat center center;
  background-size: contain;
  pointer-events: none;
  margin: 21px 0px 0px -30px;
}

.jobs-apply .form-label {
  width: 153px;
}

.jobs-apply .form-label-term {
  width: 240px;
  height: 23px;
  font-family: Hiragino Kaku Gothic Pro;
  font-size: 15px;
  font-weight: 600;
  line-height: 22.5px;
  text-align: center;
  color: #717171;
  text-decoration: none;
}

.jobs-apply-btn-term-condition {
  color: #fff;
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  border-radius: 5px;
  background: #0FA8FB;
  line-height: 50px;
  text-decoration: none;
  width: 287px;
  height: 50px;
  gap: 0px;
  border: 1px solid #593D19;
}

.jobs-apply-btn-term-condition img {
  width: 23px;
  object-fit: contain;
}

.jobs-apply-header_title {
  width: 314px;
  color: #FFF;
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.56px;
}

.jobs-apply-header_title::before {
  width: 8px;
  height: 30px;
  top: 313px;
  left: 471px;
  gap: 0px;
  border-radius: 12px 0px 0px 0px;
  opacity: 0px;
  background: #FFFFFF;
}

.jobs-apply-input-item {
  width: 457px;
  height: 43px;
  top: 387px;
  left: 759px;
  gap: 0px;
  border-radius: 3px 0px 0px 0px;
  border: 1px solid #553030;
  opacity: 0px;
}

.jobs-apply-label-item {
  color: #FFF;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  flex-shrink: 0;
  border-radius: 5px;
  background: #E92542;
  width: 43px;
  height: 24px;
  text-align: center;
}

.jobs-apply_btn-apply {
  color: #fff;
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 5px;
  border: 1px solid #593d19;
  background: #ff9b05;
  width: 269px;
  height: 50px;
  line-height: 50px;
  text-decoration: none;
}

.jobs-apply_btn-apply img {
  vertical-align: middle;
  height: 24px;
  object-fit: contain;
  margin: 10px;
}

.jobs-apply-title-term-condition {
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  padding-left: 25px;
  text-align: left;
}

.btn-close::before,
.btn-close::after {
  background-color: white !important;
  /* Ensures close icon is white */
}

.btn-close {
  text-align: right;
  align-items: inherit;
  font-size: 14px;
  margin: 5px 0px 0px -41px;
  border: solid 1px black;
  padding: 10px;
  border-radius: 50%;
  position: relative;
  width: 10px;
  height: 10px;
  gap: 0px;
}

.jobs-apply-item__above-services-ln1 {
  width: 506px;
  color: #FFF;
  text-align: left;
  text-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: -307px;
  z-index: 3;
}

.jobs-apply-item__above-services-ln2 {
  width: 594px;
  height: 33px;
  background: #F5FDFF;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  text-align: left;
  margin-left: 2px;
  z-index: 3;
  margin-top: -234px;
  padding-left: 61px;
}

.jobs-apply-item__above-services-image {
  width: 179px;
  height: 233px;
  flex-shrink: 0;
  background: url("../image/23-3.png") 50%/cover no-repeat;
  z-index: 4;
  margin: -48px 0px 0px -179px;
}

.jobs-apply-item__above-services-btn {
  margin: 0px 0px 0px -17px;
  color: #096395;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 10px 26px;
  position: relative;
  text-decoration: none;
  display: inline-block;
  margin-top: 121px;
  margin-left: -339px;
  background: url("../image/btn_booking_interview.png") 50%/cover no-repeat;
  background-color: transparent;
  /* Ensure no background color is set */
}

.jobs-apply-services-intro-content {
  margin: -78px 0px 0px 190px;
  display: flex;
}

.jobs-apply-item__above-services {
  flex-shrink: 0;
  align-items: center;
  width: 637px;
  height: 233px;
}

.jobs-apply-item__above-services-left {
  width: 599px;
  height: 185px;
  top: 1078px;
  left: 642px;
  gap: 0px;
  border-radius: 14px;
  background: linear-gradient(180deg, #0FA8FB 0%, #3DC5E6 100%);
  border: 2px solid #969393;
  margin-top: 0px;
}

.jobs-apply-item__above-services-right {
  width: 368px;
  height: 181px;
  background: url("../image/rectangle_1368.png") 50%/cover no-repeat;
  margin-left: -371px;
  border-radius: 0px 10px 10px 0px;
  z-index: 1;
  margin-top: 0px;
}

.jobs-apply-header-apply {
  width: 100%;
  height: 72px;
  flex-shrink: 0;
  background: var(--Linear, linear-gradient(90deg, #0FA8FB 0%, #3DC5E6 100%));
  align-items: center;
  display: inline-flex;
  margin-bottom: 5px !important;
}

.jobs-apply-header_title::before {
  width: 8px;
  height: 30px;
  gap: 0px;
  border-radius: 12px 0px 0px 0px;
  opacity: 0px;
  background: #FFFFFF;
}

.jobs-apply-above-services {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .jobs-apply-main {
    width: fit-content;
    height: auto;
    gap: 0px;
  }

  .jobs-apply {
    margin-bottom: 15px;
  }

  .jobs-apply .form-label {
    width: 69px;
    gap: 0px;
    font-family: "Hiragino Kaku Gothic Pro";
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
  }

  .jobs-apply_content {
    gap: 2px;
    align-items: normal;
  }

  .jobs-apply_content .items {
    border-bottom: none;
    padding-bottom: 6px;
    display: inline-flex;
    gap: 15px;
    align-items: center;
  }

  .jobs-apply-input-item {
    width: 234px;
    height: 30px;
    top: 191px;
    left: 126px;
    gap: 0px;
    border-radius: 3px 0px 0px 0px;
    opacity: 0px;
    border: 1px solid #553030;
    font-family: Hiragino Kaku Gothic Pro;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    text-align: left;
  }

  .jobs-apply-custom-select {
    height: 30px;
    top: 356px;
    left: 126px;
    gap: 0px;
    border-radius: 3px 0px 0px 0px;
    opacity: 0px;
    border: 1px solid #553030;
    padding: 3px;
    font-family: "Hiragino Kaku Gothic Pro";
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: #757575;
    -webkit-appearance: none;
    width: 108px !important;
    text-align: left;
    padding-left: 8px;
  }

  .jobs-apply_btn-apply {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 34px;
    gap: 0px;
    border-radius: 5px 5px 5px 5px;
    margin-left: 40px;
  }

  .jobs-apply_btn-apply img {
    vertical-align: middle;
    height: 24px;
    object-fit: contain;
    margin: 10px;
  }

  .jobs-apply-select-box::after {
    content: "";
    transform: translateY(-50%);
    position: absolute;
    width: 15px;
    height: 15px;
    background: url("/public/image/Vector.png") no-repeat center center;
    background-size: contain;
    pointer-events: none;
    margin: 15px 0px 0px -21px;
  }

  .jobs-apply-btn-term-condition {
    color: #fff;
    font-style: normal;
    border-radius: 5px;
    background: #0FA8FB;
    text-decoration: none;
    border: 1px solid #593D19;
    width: 210px;
    height: auto;
    gap: 0px;
    font-family: Hiragino Kaku Gothic Pro;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
  }

  .jobs-apply-btn-term-condition img {
    object-fit: contain;
    width: 30px;
    height: 30px;
    padding: 4px 0px 4px 0px;
  }

  .jobs-apply-title-term-condition {
    font-family: "Hiragino Kaku Gothic Pro";
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
  }

  .btn-close::before,
  .btn-close::after {
    background-color: white !important;
    /* Ensures close icon is white */
  }

  .btn-close {
    text-align: right;
    align-items: inherit;
    font-size: 14px;
    margin: -40px 0px 0px -33px;
    border: solid 1px black;
    padding: 10px;
    border-radius: 50%;
    position: relative;
    width: 10px;
    height: 10px;
    background-color: lightgray;
  }

  .jobs-apply-header-apply {
    background: var(--Linear, linear-gradient(90deg, #0FA8FB 0%, #3DC5E6 100%));
    align-items: center;
    display: inline-flex;
    width: 100%;
    height: 28px;
    top: 137px;
    left: 15px;
    gap: 0px;
    font-family: Hiragino Kaku Gothic Pro;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.06em;
    text-align: center;
    margin-bottom: 5px !important;
  }

  .jobs-apply-label-item {
    color: #FFF;
    font-style: normal;
    flex-shrink: 0;
    background: #E92542;
    width: 26px;
    height: 14px;
    border-radius: 2px 0px 0px 0px;
    font-family: Hiragino Kaku Gothic Pro;
    font-size: 10px;
    font-weight: 600;
    line-height: 15px;
    text-align: center;
  }

  .jobs-apply-header_title {
    width: 202px;
    color: #FFF;
    text-align: center;
    font-family: "Hiragino Kaku Gothic Pro";
    font-size: 19px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -1.56px;
  }
}

.jobs {
  margin-top: 231px;
  margin-bottom: 70px;
}

.jobs-title {
  color: #333;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  padding-left: 21px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  margin: 5px 0px 5px 0px;
  font-weight: bold;
}

.jobs-title::before {
  position: absolute;
  content: "";
  height: 28px;
  width: 8px;
  left: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #0fa8fb 0%, #80efc8 100%);
}

.jobs-title__news-tag {
  color: #fff;
  -webkit-text-stroke-width: 0.200000003;
  -webkit-text-stroke-color: #d9d9d9;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 0 3px;
  background: linear-gradient(to right, #0fa8fb 0%, #80efc8 100%);
  margin-left: 13px;
}

.jobs-subtitle {
  color: #333;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 20px;
}

.jobs-subtitle__number {
  background: linear-gradient(106deg, #0fa8fb 70.52%, #1ee19c 87.61%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.jobs-subtitle__readmore {
  color: #0fa8fb;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-decoration: none;
  position: relative;
  margin-right: 15px;
}

.jobs-subtitle__readmore::before {
  position: absolute;
  content: "";
  background-image: url("../image/arrow-left.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
}

.jobs-subtitle__readmore_sp {
  color: #0fa8fb;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-decoration: none;
  position: relative;
  margin-right: 15px;
}

.jobs-subtitle__readmore_sp::before {
  position: absolute;
  content: "";
  background-image: url("../image/vector_plus.png");
  background-repeat: no-repeat;
  background-size: contain;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 13.38px;
  height: 14px;
  flex-shrink: 0;
}

.jobs-content {
  padding: 0 18px;
  position: relative;
}

.jobs-content__result-container {
  width: 1000px;
  height: 1570px;
  flex-shrink: 0;
}

.jobs-content__result-container_sp {
  width: 345px;
  height: 340px;
  flex-shrink: 0;
  border: 1px solid #D9D9D9;
  background: #FFF;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
}

.jobs-content__result-headline {
  display: inline-flex;
  width: 684px;
  margin-top: 15px;
}

.jobs-content__result-item {
  width: 684px;
  height: 512px;
  flex-shrink: 0;
}

.jobs-content__result-item__info {
  background: #D9D9D9;
  margin: 7px 0px 0px -3px;
  height: 2px;
  flex-shrink: 0;
  stroke-width: 2px;
  stroke: #D9D9D9;
}

.jobs-content__list {
  display: grid;
  gap: 15px;
}

.jobs-content__list-subtitle {
  text-align: center;
  padding: 15px;
}

.jobs-content__list-right-result {
  background-color: #F9F9F9;
  width: 309px;
  flex-shrink: 0;
}

.jobs-content__list-right-sp-result {
  margin-top: 40px;
  background-color: #F9F9F9;
  width: 375px;
  height: 660px;
  flex-shrink: 0;
  padding-left: 36px;
}

.jobs-content__list-title {
  color: #333;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 10px;
  padding: 5px 0px 5px 28px;
}

.jobs-content__list-title::before {
  position: absolute;
  content: "";
  background-image: url(../image/rectangle_991.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 26px;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}

.jobs-content__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.jobs-content__row-result-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 5px;
  border: 1px solid #212121;
  background: #fff;
}

.jobs-content__row-result-item__image {
  position: relative;
}

.jobs-content__row-result-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.jobs-content__row-result-item__image-result {
  position: absolute;
  bottom: -6px;
  left: 15px;
  padding: 3px;
  color: #fff;
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 4px;
}

.jobs-content__row-result-item__image-tag-line {
  position: absolute;
  content: "";
  background-image: url("../image/rectangle_991.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 26px;
  right: 6px;
  top: 15%;
  transform: translateY(-50%);
}

.jobs-content__row-result-item__image-tag {
  position: absolute;
  top: 0;
  right: 0;
  padding: 3px;
  color: #fff;
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 4px;
}

.jobs-content__row-result-item__image-logo {
  position: absolute;
  bottom: -31px;
  left: 0;
  background-color: #fff;
  width: 62px;
  height: 62px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  overflow: hidden;
  border: 1px solid #d9d9d9;
}

.jobs-content__row-result-item__image-logo img {
  width: 100%;
  object-fit: contain;
}

.jobs-content__row-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 5px;
  border: 1px solid #f3f3f3;
  background: #fff;
  box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.25);
  padding: 9px;
}

.jobs-content__row-item__spec {
  width: 96px;
  color: #333;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-align: center;
  margin-top: -13px;
}

.jobs-content__row-item__box-title {
  color: #FFF;
  text-align: left;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0px 5px 5px 5px;
}

.jobs-content__row-item__box-in {
  width: 251px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 5px;
  background: #FFF;
}

.jobs-content__row-item__headline {
  display: inline-flex !important;
  width: 684px !important;
  margin-top: 15px !important;
}

.jobs-content__row-item__lines {
  display: flex;
  margin: 0px 0px 10px -8px;
}

.jobs-content__row-item__box {
  width: 258px;
  height: 102px;
  flex-shrink: 0;
  border-radius: 5px;
  background: #0FA8FB !important;
}

.jobs-content__row-item__box-ln1 {
  width: 242px;
  height: 1px;
  background: #D9D9D9;
  margin: 26px 0px 0px 4px;
}

.jobs-content__row-item__box-ln2 {
  width: 242px;
  height: 1px;
  background: #D9D9D9;
  margin: 22px 0px 0px 4px;
}

.jobs-content__row-item__image {
  position: relative;
}

.jobs-content__row-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.jobs-content__row-item__image-result {
  position: absolute;
  bottom: -6px;
  left: 15px;
  padding: 3px;
  color: #fff;
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 4px;
}

.jobs-content__row-item__image-tag {
  position: absolute;
  top: 0;
  right: 0;
  padding: 3px;
  color: #fff;
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 4px;
}

.jobs-content__row-item__image-logo {
  position: absolute;
  bottom: -31px;
  left: 0;
  background-color: #fff;
  width: 62px;
  height: 62px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  overflow: hidden;
  border: 1px solid #d9d9d9;
}

.jobs-content__row-item__image-logo img {
  width: 100%;
  object-fit: contain;
}

.jobs-content__row-item__info {
  font-family: "Hiragino Kaku Gothic Pro";
  font-style: normal;
  line-height: normal;
}

.jobs-content__row-item__info-rtitle {
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0 14px;
  position: relative;
}

.jobs-content__row-item__info-title {
  font-size: 16px;
  font-weight: 600;
  margin: 5px 0 14px;
  display: inline-flex;
  text-decoration: none;
  position: relative;
}

.jobs-content__row-item__info-title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #d9d9d9;
  bottom: -3px;
  left: 0;
}

.jobs-content__row-item__info-subtitle {
  color: #333;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 8px;
}

.jobs-content__row-item__info-address,
.jobs-content__row-item__info-datetime,
.jobs-content__row-item__info-salary {
  color: #333;
  font-size: 14px;
  font-weight: 600;
  padding: 0 3px;
  margin-bottom: 5px;
}

.jobs-content__row-item__info-address img,
.jobs-content__row-item__info-datetime img,
.jobs-content__row-item__info-salary img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.jobs-content__row-item__result-link {
  color: #0FA8FB;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 5px;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid #0FA8FB;
  padding: 3px;
}

.jobs-content__row-item__result-btn-danger {
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 6px;
  box-shadow: -4px 4px 4px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #FFFFFF;
  gap: 15px;
  height: 28px;
  width: 43px;
  background-color: #E92542;
  margin-left: 0px;
}

.jobs-content__row-item__result-btn-primary {
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 6px;
  box-shadow: -4px 4px 4px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #FFFFFF;
  gap: 15px;
  height: 28px;
  width: 104px;
  background-color: #0FA8FB;
  margin-left: 8px;
}

.jobs-content__row-item__result-title {
  color: #333;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 19px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  width: 511px;
  display: flex;
}

.jobs-content__row-item__result-title__dots {
  justify-content: center;
  align-items: center;
  gap: 22px;
  font-size: 24px;
}

.jobs-content__row-item__result-list-first {
  width: 690px;
  height: 510px;
  flex-shrink: 0;
  border: 1px solid #D9D9D9;
  background: #FFF;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.15);
}

.jobs-content__row-item__result-list-second {
  height: max-content !important;
  border: 1px solid #D9D9D9;
  background: #FFF;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.15);
  margin-top: -85px;
}

.jobs-content__row-item__result-list {
  height: max-content !important;
  border: 1px solid #D9D9D9;
  background: #FFF;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.15);
  margin-top: 20px;
}

.jobs-content__row-item__result-line {
  margin-bottom: 0px;
  margin-left: -9px;
  width: 682px !important;
}

.jobs-content__row-item__result-line-search {
  margin-bottom: 0px;
  margin-left: -11px;
  width: min-content;
}

.jobs-content__row-item__result-btn-line {
  margin-bottom: 0px;
  margin-left: -15px;
  margin-top: -5px;
  box-shadow: 0px -10px 0px 0px #0FA8FB;
}

.jobs-content__row-item__result-item {
  align-items: center;
  text-decoration: none;
  gap: 15px;
  background-color: #F3F3F3 !important;
  border-radius: 5px;
  display: flex;
  width: 84px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  color: #333;
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.jobs-content__row-item__result-description {
  color: #333;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.jobs-content__row-item__result-highlight {
  color: #0FA8FB !important;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.jobs-content__row-item__result-image {
  color: #000;
  width: 258px;
  height: 188px;
  flex-shrink: 0;
}

.jobs-content__row-item__detail-link {
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 6px;
  border: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  text-decoration: none;
  color: #000;
  gap: 15px;
}

.jobs-content__row-item__btn-link {
  width: 269px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 5px;
  border: 1px solid #593D19;
  background: #FFF;
  box-shadow: 0px 4px 11.2px 0px rgba(89, 61, 25, 0.1) inset;
  color: #000;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 6px;
  border: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  text-decoration: none;
  color: #000;
  gap: 15px;
  width: 250px;
}

.jobs-content__row-item__btn-link::before {
  position: absolute;
  content: "";
  background-image: url("../image/lets-icons_check-fill.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 34px;
  height: 34px;
  margin: 32px 3px 0px -140px;
  transform: translateY(-50%);
}

.jobs-content__row-item__btn-y-link {
  width: 269px;
  height: 50px;
  flex-shrink: 0;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 6px;
  border: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  text-decoration: none;
  color: #fff;
  background-color: #FF9B05;
  gap: 15px;
  width: 250px;
  border-radius: 5px;
  border: 1px solid #593D19;
  background: #FF9B05;
  box-shadow: 0px 4px 4px 0px rgba(255, 212, 105, 0.72) inset;
}

.jobs-content__row-item__btn-y-link::before {
  position: absolute;
  content: "";
  background-image: url("../image/lets-icons_check-fill-y.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 34px;
  height: 34px;
  margin: 32px 3px 0px -140px;
  transform: translateY(-50%);
}

.jobs-content__row-item__btn-z-lines {
  color: #333;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  width: max-content;
}

.jobs-content__row-item__btn-box {
  background: #F5FDFF;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 67px;
  margin-top: 83px;
  height: 137px;
  gap: 44px;
}

.jobs-content__row-item__above-services {
  margin-top: -96px !important;
  width: 1000px;
  flex-shrink: 0;
  align-items: center;
}

.jobs-content__row-item__above-services-next {
  width: 599px;
  height: 185px;
  flex-shrink: 0;
}

.jobs-content__row-item__above-services-content {
  width: 599px;
  height: 185px;
  flex-shrink: 0;
  border-radius: 14px;
  border: 2px solid #969393;
  background: linear-gradient(180deg, #0FA8FB 0%, #3DC5E6 100%);
  position: relative;
  margin-top: 13px;
  margin-bottom: 13px;
  color: #333;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
}

.jobs-content__row-item__above-services-ln1 {
  width: 506px;
  color: #FFF;
  text-align: left;
  text-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-right: 70px;
}

.jobs-content__row-item__above-services-ln2 {
  width: 595px;
  height: 33px;
  flex-shrink: 0;
  background: #F5FDFF;
  margin-bottom: 19px;
}

.jobs-content__row-item__above-services-btn {
  flex-shrink: 0;
  border-radius: 30px;
  border: 2px solid #0E9DEB;
  background: #FFF;
  box-shadow: 1px -1px 2px 0px rgba(255, 255, 255, 0.3), -1px 1px 2px 0px rgba(205, 205, 205, 0.5), 13px -3px 6px 0px rgba(205, 205, 205, 0.2) inset, 11px 3px 4.6px 0px rgba(205, 205, 205, 0.2) inset, -3px 8px 6px 0px #F5FDFF inset, 3px -3px 8px 0px rgba(205, 205, 205, 0.9) inset;
  margin: 0px 0px 0px -17px;
  color: #096395;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 10px 26px;
  position: relative;
  text-decoration: none;
  display: inline-block;
}

.jobs-content__row-item__above-services-icon {
  display: inline-block;
  line-height: 8.039px;
  margin: 0px 3px !important;
  font-size: 16px;
}

.jobs-content__row-item__above-services-image {
  width: 179px;
  height: 233px;
  flex-shrink: 0;
  background: url("../image/23-3.png") 50%/cover no-repeat;
  z-index: 1;
  margin: -24px 0px 0px -166px;
}

.jobs-content__row-item__btn-z-link {
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FF9B05;
  gap: 17px;
  width: 306px;
  height: 58px;
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid #0FA8FB;
  background: #FFF;
  color: #0FA8FB;
}

.jobs-content__row-item-lnh1 {
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 36px;
  font-weight: 600;
  line-height: 54px;
  text-align: center;
}

.jobs-content__row-item-lnh2 {
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  text-align: center;
}

.jobs-content .jobs-carousel-arrow-btn {
  position: static;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 90px;
  margin-top: 40px;
}

.jobs-content .jobs-carousel-arrow-btn__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
}

.jobs-content .jobs-carousel-arrow-btn__dots>button {
  background-color: #d9d9d9;
  width: 13px;
  height: 13px;
  border: none;
  border-radius: 50%;
}

.jobs-content .carousel-control-next,
.jobs-content .carousel-control-prev {
  position: static;
  width: fit-content;
  width: 25px;
  height: 25px;
  color: #0fa8fb;
}

.jobs-content .carousel-control-prev-icon {
  background-image: url("../image/left_arrow_carousel.png");
  background-size: contain;
}

.jobs-content .carousel-control-next-icon {
  background-image: url("../image/right_arrow_carousel.png");
  background-size: contain;
}

.jobs-content .carousel-indicators {
  position: static;
  margin: 0;
}

.jobs-content .carousel-indicators .active {
  background-color: #0fa8fb !important;
}

.jobs-content .carousel-item {
  padding: 5px;
}

@media (max-width: 768px) {
  .jobs {
    margin-top: 251px;
    margin-bottom: 60px;
  }

  .jobs-title {
    margin-bottom: 5px;
    margin-top: 0 !important;
    font-size: 24px;
    font-weight: bold;
  }

  .jobs-title::before {
    width: 6px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
  }

  .jobs-title__news-tag {
    font-size: 12px;
  }

  .jobs-subtitle {
    font-size: 16px;
    padding-left: 21px;
  }

  .jobs-subtitle__readmore {
    margin-top: -65px;
  }

  .jobs-content {
    padding: 0;
    position: relative;
  }

  .jobs-content__result-container {
    margin-top: 60px;
    width: 397px;
    height: auto;
    flex-shrink: 0;
  }

  .jobs-content-item__info {
    background: #D9D9D9;
    margin: 7px 0px 0px -3px;
    width: 671.003px;
    height: 2px;
    flex-shrink: 0;
    stroke-width: 2px;
    stroke: #D9D9D9;
  }

  .jobs-content__row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }

  .jobs-content__row-result-item {
    flex-direction: column;
    align-items: center;
    padding: 1px;
    width: 300px;
    height: 260px;
    flex-shrink: 0;
    border-radius: 0px 0px 5px 5px;
    border: 1px solid #333;
    background: #FFF;
  }

  .jobs-content__row-item__result-list-first {
    border: 1px solid #D9D9D9;
    background: #FFF;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.15);
    width: 100% !important;
    flex-shrink: 0;
  }

  .jobs-content__row-item__result-line {
    margin-bottom: 0px;
    margin-left: -9px;
    width: 345px !important;
    height: auto;
  }

  .jobs-content__row-item__btn-z-link {
    margin-bottom: 0;
    width: 243px;
    height: 40px;
    top: 198px;
    left: 66px;
    gap: 0px;
    font-family: Hiragino Kaku Gothic Pro;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
  }

  .jobs-content__row-item__btn-y-link {
    font-family: "Hiragino Kaku Gothic Pro";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 26px;
    text-decoration: none;
    color: #fff;
    width: 150px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 5px;
    border: 1px solid #593D19;
    background: #FF9B05;
    box-shadow: 0px 4px 4px 0px rgba(255, 212, 105, 0.72) inset;
  }

  .jobs-content__row-item-lnh1 {
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    font-family: "Hiragino Kaku Gothic Pro";
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
  }

  .jobs-content__row-item-lnh2 {
    font-family: "Hiragino Kaku Gothic Pro";
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 0px 26px;
    text-decoration: none;
    color: #000;
    gap: 15px;
  }

  .jobs-content__row.jobs-content__row-item__btn-link {
    font-family: "Hiragino Kaku Gothic Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 6px;
    border: 1px solid #d9d9d9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 26px;
    text-decoration: none;
    color: #000;
    gap: 15px;
    width: 150px;
    height: 34px;
  }

  .jobs-content__row-item__btn-y-link::before {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    margin: 28px 3px 0px -113px;
  }

  .jobs-content__row-item__btn-link::before {
    width: 30px;
    height: 30px;
    margin: 30px 3px 0px -114px;
    transform: translateY(-50%);
  }

  .jobs-content__row-item__above-services {
    align-items: flex-start;
    width: 100% !important;
  }

  .jobs-content__row-item__above-services-content {
    flex-shrink: 0;
    background: var(--Linear, linear-gradient(90deg, #0FA8FB 0%, #40C7E5 58.7%, #0FA8FB 70.3%));
    position: relative;
    margin-top: 13px;
    margin-bottom: 13px;
    color: #333;
    font-family: "Hiragino Kaku Gothic Pro";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    width: auto !important;
    height: 130px !important;
    border: none;
    border-radius: inherit;
    margin-right: -20px;
    display: grid;
  }

  .jobs-content__row-item__above-services-content-sp {
    width: 216px;
    height: 29px;
    top: 2288px;
    left: 80px;
    gap: 0px;
    opacity: 0px;
    background: #fff;
    margin: 2px 0px 0px 84px;
  }

  .jobs-content__row-item__above-services-content-sp2 {
    width: 156px;
    height: 29px;
    top: 2288px;
    left: 80px;
    gap: 0px;
    opacity: 0px;
    background: #fff;
    margin: 5px 0px 0px 187px;
    padding-left: 7px;
  }

  .jobs-content__row-item__above-services-content-ln1 {
    margin: 0px 0px 0px 89px;
    z-index: 2;
    font-family: Noto Sans JP;
    font-size: 14px;
    font-weight: 700;
    line-height: 20.27px;
    text-align: left;
    color: #717171;
    margin-top: 5px;
  }

  .jobs-content__row-item__box-ln1 {
    width: 220px;
    height: 1px;
    background: #D9D9D9;
    margin: 0px 0px 0px 4px;
  }

  .jobs-content__row-item__box-ln2 {
    width: 220px;
    height: 1px;
    background: #D9D9D9;
    margin: 0px 0px 0px 4px;
  }

  .jobs-content__row-item__above-services-image {
    background: url("../image/20-16.png") 50%/cover no-repeat;
    z-index: 1;
    align-items: flex-start;
    width: 128px;
    height: 163px;
    margin: 0px 0px 0px 18px;
  }

  .jobs-content__row-item__above-services-next {
    width: 375px !important;
    height: 130px !important;
    flex-shrink: 0;
    margin: -156px 0px 0px 0px;
    width: 100% !important;
  }

  .jobs-content__row-item__above-services-btn {
    padding: 10px 26px;
    position: relative;
    text-decoration: none;
    border-radius: 38px;
    background: #FF9B05;
    width: 232px !important;
    box-shadow: none;
    margin: 0;
    width: 223px;
    height: 41px;
    opacity: 0px;
    font-family: Noto Sans JP;
    font-size: 16px;
    font-weight: 700;
    line-height: 23.17px;
    text-align: left;
    color: #FFF;
    margin: 0px 0px 0px 80px;
    z-index: 2;
  }

  .jobs-content__row-item__above-services {
    margin-top: 53px !important;
    flex-shrink: 0;
    align-items: center;
  }

  .jobs-content__row-item__above-services-ln1 {
    margin-right: 0;
    width: 185px;
    height: 31px;
    top: 2287px;
    left: 103px;
    gap: 0px;
    opacity: 0px;
    font-family: Noto Sans JP;
    font-size: 18px;
    font-weight: 900;
    line-height: 26.06px;
    text-align: left;
    color: #0E9DEB;
  }

  .jobs-content__row-item__above-services-ln2 {
    flex-shrink: 0;
    width: 273px;
    height: 23px;
    top: 2352px;
    left: 77px;
    gap: 0px;
    opacity: 0px;
    font-family: Noto Sans JP;
    font-size: 14px;
    font-weight: 700;
    line-height: 20.27px;
    text-align: left;
    margin-bottom: 0px;
    background: none;
  }

  .jobs-content__row-item__btn-link {
    width: 150px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 5px;
    border: 1px solid #593D19;
    background: #FFF;
    box-shadow: 0px 4px 11.2px 0px rgba(89, 61, 25, 0.1) inset;
    color: #333;
    text-align: center;
    font-family: "Hiragino Kaku Gothic Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }

  .jobs-content__row-item__result-link {
    width: 53px;
    height: 19px;
    flex-shrink: 0;
    color: #0FA8FB;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .jobs-content__row-item__lines {
    margin: 8px 0px 10px -8px;
    display: inline-block;
  }

  .jobs-content__row-item__result-title {
    color: #333;
    font-family: "Hiragino Kaku Gothic Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    width: 375px;
    margin: 11px 0px 0px 0px;
  }

  .jobs-content__row-item__headline {
    display: inline !important;
    margin-top: 15px !important;
    width: 100% !important;
  }

  .jobs-content .swiper {
    width: 100%;
    height: 100%;
    padding: 5px 0;
  }

  .jobs-content .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .jobs-content .swiper-slide {
    width: 65%;
  }

  .jobs-content .swiper-pagination {
    position: static;
    margin: 22px 0 0;
  }
}

@media (min-width: 481px) and (max-width: 600px) {
  /* Code responsive */
}

@media (min-width: 601px) and (max-width: 768px) {
  /* Code responsive */
}

.list {
  margin-bottom: 70px;
}

.list-title {
  color: #333;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  padding-left: 21px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.list-title::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 8px;
  left: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #0fa8fb 0%, #80efc8 100%);
}

.list-title__news-tag {
  color: #fff;
  -webkit-text-stroke-width: 0.200000003;
  -webkit-text-stroke-color: #d9d9d9;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 0 3px;
  background: linear-gradient(to right, #0fa8fb 0%, #80efc8 100%);
  margin-left: 13px;
}

.list-subtitle {
  color: #333;
  font-family: "Hiragino Kaku Gothic Pro";
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-left: 21px;
  display: flex;
  align-items: center;
}

.list-subtitle::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 8px;
  left: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #0fa8fb 0%, #80efc8 100%);
}

.list-subtitle__number {
  background: linear-gradient(106deg, #0fa8fb 70.52%, #1ee19c 87.61%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.list-subtitle__readmore {
  color: #0fa8fb;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-decoration: none;
  position: relative;
  margin-right: 15px;
}

.list-subtitle__readmore::before {
  position: absolute;
  content: "";
  background-image: url("../image/arrow-left.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
}

.list-content {
  padding: 0 18px;
  position: relative;
}

.list-content__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.list-content__row-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 5px;
  border: 1px solid #f3f3f3;
  background: #fff;
  box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.25);
  padding: 9px;
}

.list-content__row-item__image {
  position: relative;
}

.list-content__row-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.list-content__row-item__image-tag {
  position: absolute;
  top: 0;
  right: 0;
  padding: 3px;
  color: #fff;
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 4px;
}

.list-content__row-item__image-logo {
  position: absolute;
  bottom: -31px;
  left: 0;
  background-color: #fff;
  width: 62px;
  height: 62px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  overflow: hidden;
  border: 1px solid #d9d9d9;
}

.list-content__row-item__image-logo img {
  width: 100%;
  object-fit: contain;
}

.list-content__row-item__info {
  font-family: "Hiragino Kaku Gothic Pro";
  font-style: normal;
  line-height: normal;
}

.list-content__row-item__info-title {
  text-align: right;
  font-size: 16px;
  font-weight: 600;
  margin: 5px 0 14px;
  position: relative;
}

.list-content__row-item__info-title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #d9d9d9;
  bottom: -3px;
  left: 0;
}

.list-content__row-item__info-subtitle {
  color: #333;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 8px;
}

.list-content__row-item__info-address,
.list-content__row-item__info-datetime,
.list-content__row-item__info-salary {
  color: #333;
  font-size: 14px;
  font-weight: 600;
  padding: 0 3px;
  margin-bottom: 5px;
}

.list-content__row-item__info-address img,
.list-content__row-item__info-datetime img,
.list-content__row-item__info-salary img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.list-content__row-item__detail-link {
  color: #000;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 6px;
  border: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  text-decoration: none;
  color: #000;
  gap: 15px;
}

.list-content .list-carousel-arrow-btn {
  position: static;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 90px;
  margin-top: 40px;
}

.list-content .list-carousel-arrow-btn__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
}

.list-content .list-carousel-arrow-btn__dots>button {
  background-color: #d9d9d9;
  width: 13px;
  height: 13px;
  border: none;
  border-radius: 50%;
}

.list-content .carousel-control-next,
.list-content .carousel-control-prev {
  position: static;
  width: fit-content;
  width: 25px;
  height: 25px;
  color: #0fa8fb;
}

.list-content .carousel-control-prev-icon {
  background-image: url("../image/left_arrow_carousel.png");
  background-size: contain;
}

.list-content .carousel-control-next-icon {
  background-image: url("../image/right_arrow_carousel.png");
  background-size: contain;
}

.list-content .carousel-indicators {
  position: static;
  margin: 0;
}

.list-content .carousel-indicators .active {
  background-color: #0fa8fb !important;
}

.list-content .carousel-item {
  padding: 5px;
}

.above-services {
  margin-bottom: 22px;
}

.above-services-dots {
  margin-right: 20px !important;
}

@media (max-width: 768px) {
  .list {
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .list-title {
    margin-bottom: 0;
    font-size: 24px;
  }

  .list-title__news-tag {
    font-size: 12px;
  }

  .list-subtitle {
    font-size: 16px;
    padding-left: 21px;
  }

  .list-subtitle__readmore {
    margin-top: -65px;
  }

  .list-content {
    padding: 0;
    position: relative;
  }

  .list-content__row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }

  .list-content .swiper {
    width: 100%;
    height: 100%;
    padding: 5px 0;
  }

  .list-content .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .list-content .swiper-slide {
    width: 65%;
  }

  .list-content .swiper-pagination {
    position: static;
    margin: 22px 0 0;
  }
}

@media (min-width: 481px) and (max-width: 600px) {
  /* Code responsive */
}

@media (min-width: 601px) and (max-width: 768px) {
  /* Code responsive */
}

.search-title {
  color: #333;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  padding-left: 21px;
  margin-bottom: 56px;
  display: flex;
  align-items: center;
}

.search-title::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 8px;
  left: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #0fa8fb 0%, #80efc8 100%);
}

.search-title__search-tag {
  color: #fff;
  -webkit-text-stroke-width: 0.200000003;
  -webkit-text-stroke-color: #d9d9d9;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 0 20px;
  background: linear-gradient(to right, #0fa8fb 0%, #80efc8 100%);
  margin-left: 13px;
}

.search-content {
  display: flex;
  flex-wrap: wrap;
  gap: 31px;
  margin-bottom: 70px;
}

.search-content__item {
  position: relative;
}

.search-content__item:nth-child(1),
.search-content__item:nth-child(3),
.search-content__item:nth-child(4),
.search-content__item:nth-child(5),
.search-content__item:nth-child(6),
.search-content__item:nth-child(8) {
  width: calc(20% - 31px);
}

.search-content__item:nth-child(2),
.search-content__item:nth-child(7) {
  width: calc(40% - 31px);
}

.search-content__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-content__item::after {
  position: absolute;
  content: "ロゴ";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  font-weight: 600;
}

.search-page-box-area {
  width: 100%;
  height: 246px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #F5FDFF;
  gap: 16px;
}

.search-page-box-area>.jobs-content__row-item__btn-z-link {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .search-page-box-area {
    width: 108%;
    margin-left: -4%;
    margin-bottom: 21px;
  }
}

@media (max-width: 768px) {
  .search-title {
    font-size: 24px;
    margin-bottom: 69px;
    position: relative;
  }

  .search-title__search-tag {
    margin-left: 20px;
    font-size: 12px;
  }

  .search-title_wrapper {
    position: absolute;
    right: 17px;
    top: 33px;
  }

  .search-title__readmore {
    color: #0fa8fb;
    font-family: "Hiragino Kaku Gothic Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-decoration: none;
    position: relative;
  }

  .search-title__readmore::before {
    position: absolute;
    content: "";
    background-image: url("../image/arrow-left.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 10px;
    height: 10px;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
  }

  .search-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 75px;
  }

  .search-content__item {
    width: 100% !important;
    position: relative;
  }

  .search-content__item::after {
    font-size: 24px;
  }
}

@media (min-width: 481px) and (max-width: 600px) {
  /* Code responsive */
}

@media (min-width: 601px) and (max-width: 768px) {
  /* Code responsive */
}

.recommended-columns {
  margin-bottom: 78px;
}

.recommended-columns-title {
  color: #333;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  padding-left: 21px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  font-weight: bold;
}

.recommended-columns-title::before {
  position: absolute;
  content: "";
  height: 28px;
  width: 8px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 12px;
  background: linear-gradient(180deg, #0fa8fb 0%, #80efc8 100%);
}

.recommended-columns-title__tag {
  color: #fff;
  -webkit-text-stroke-width: 0.200000003;
  -webkit-text-stroke-color: #d9d9d9;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 0 20px;
  background: linear-gradient(to right, #0fa8fb 0%, #80efc8 100%);
  margin-left: 13px;
}

.recommended-columns-content__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.recommended-columns-content__row-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recommended-columns-content .recommended-columns-arrow-btn {
  position: static;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 90px;
  margin-top: 40px;
}

.recommended-columns-content .recommended-columns-arrow-btn__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
}

.recommended-columns-content .recommended-columns-arrow-btn__dots>button {
  background-color: #d9d9d9;
  width: 13px;
  height: 13px;
  border: none;
  border-radius: 50%;
}

.recommended-columns-content .carousel-control-next,
.recommended-columns-content .carousel-control-prev {
  position: static;
  width: fit-content;
  width: 25px;
  height: 25px;
  color: #0fa8fb;
}

.recommended-columns-content .carousel-control-prev-icon {
  background-image: url("../image/left_arrow_carousel.png");
  background-size: contain;
}

.recommended-columns-content .carousel-control-next-icon {
  background-image: url("../image/right_arrow_carousel.png");
  background-size: contain;
}

.recommended-columns-content .carousel-indicators {
  position: static;
  margin: 0;
}

.recommended-columns-content .carousel-indicators .active {
  background-color: #0fa8fb !important;
}

.recommended-columns-content .carousel-item {
  padding: 5px;
}

@media (max-width: 768px) {
  .recommended-columns {
    margin-bottom: 60px;
  }

  .recommended-columns-title {
    font-size: 24px;
    padding-left: 15px;
    position: relative;
    font-weight: bold;
  }

  .recommended-columns-title__tag {
    width: fit-content;
    font-size: 12px;
    position: absolute;
    bottom: -21px;
    left: 50%;
    transform: translateX(-50%);
  }

  .recommended-columns-content__row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .recommended-columns-content__row-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .recommended-columns-content .recommended-columns-arrow-btn {
    height: 8px;
    gap: 40px;
    margin-top: 22px;
  }

  .recommended-columns-content .recommended-columns-arrow-btn__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
  }

  .recommended-columns-content .recommended-columns-arrow-btn__dots>button {
    width: 8px;
    height: 8px;
  }
}

@media (min-width: 481px) and (max-width: 600px) {
  /* Code responsive */
}

@media (min-width: 601px) and (max-width: 768px) {
  /* Code responsive */
}

.services-intro {
  margin-bottom: 70px;
}

.services-intro-title {
  color: #333;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  padding-left: 21px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  font-weight: bold;
}

.services-intro-title::before {
  position: absolute;
  content: "";
  height: 28px;
  width: 8px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #0fa8fb 0%, #80efc8 100%);
}

.services-intro-title__tag {
  color: #fff;
  -webkit-text-stroke-width: 0.200000003;
  -webkit-text-stroke-color: #d9d9d9;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 0 20px;
  background: linear-gradient(to right, #0fa8fb 0%, #80efc8 100%);
  margin-left: 13px;
}

.services-intro-content {
  display: flex;
  gap: 100px;
}

.services-intro-content__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.services-intro-content__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-intro-content__item-link {
  color: #fff;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 3px;
  background: #1ac17f;
  text-decoration: none;
  padding: 12px 14px;
}

@media (max-width: 768px) {
  .services-intro {
    margin-bottom: 60px;
  }

  .services-intro-title {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: bold;
  }

  .services-intro-title::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 8px;
    left: 0;
    border-radius: 12px;
    background: linear-gradient(180deg, #0fa8fb 0%, #80efc8 100%);
  }

  .services-intro-title__tag {
    font-size: 12px;
    margin-left: 30px;
  }

  .services-intro-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services-intro-content__item {
    gap: 20px;
    align-items: start;
  }
}

@media (min-width: 481px) and (max-width: 600px) {
  /* Code responsive */
}

@media (min-width: 601px) and (max-width: 768px) {
  /* Code responsive */
}

.why-choose-us {
  margin-bottom: 70px;
}

.why-choose-us_title {
  color: #fff;
  background-color: #122d3c;
  text-align: center;
  font-family: "Hiragino Mincho ProN";
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  height: 63px;
  line-height: 63px;
}

.why-choose-us_content {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.why-choose-us_content__item {
  position: relative;
  position: relative;
}

.why-choose-us_content__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-choose-us_content__item-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f9f9f9;
  width: 42%;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.why-choose-us_content__item-content-title {
  border-radius: 30px;
  background: #096395;
  color: #fff;
  text-align: center;
  font-family: "Hiragino Mincho ProN";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  width: fit-content;
  padding: 3px 20px;
  margin-bottom: 7px;
}

.why-choose-us_content__item-content-subtitle {
  color: #096395;
  font-family: "Hiragino Mincho ProN";
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 33px;
}

.why-choose-us_content__item-content-subtitle>span {
  font-size: 26px;
  position: relative;
}

.why-choose-us_content__item-content-subtitle>span::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background-image: url("../image/point.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.why-choose-us_content__item-content-description {
  color: #4e5961;
  font-family: "Hiragino Mincho ProN";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.why-choose-us_content__item-content-description__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.why-choose-us_content__item-content-description__item img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

.why-choose-us_content__item-content-description__item-text {
  margin-top: 8px;
}

.why-choose-us_content__item-content-img1 {
  position: absolute;
  bottom: 0;
  left: 50px;
}

.why-choose-us_content__item-content-img1 img {
  width: 130px;
  height: 211px;
  object-fit: cover;
}

.why-choose-us_content__item-content-img2 {
  position: absolute;
  bottom: 0;
  right: 16px;
}

.why-choose-us_content__item-content-img2 img {
  width: 216px;
  height: 180px;
  object-fit: cover;
}

.why-choose-us_content__item-triangle {
  bottom: -11.1111111111px;
}

.why-choose-us_content__item-triangle {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.why-choose-us_content__item-triangle img {
  width: 180px;
  height: 74px;
  object-fit: cover;
}

.why-choose-us_bottom-row {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.why-choose-us_bottom-row__item {
  padding: 30px 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #4e5961;
  background-image: url("../image/mask_group.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 11px;
  width: 80%;
  gap: 18px;
}

.why-choose-us_bottom-row__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-choose-us_bottom-row__item-title {
  color: #fff;
  font-family: "Hiragino Mincho ProN";
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  position: relative;
}

.why-choose-us_bottom-row__item-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 1px;
  background-color: #fff;
}

.why-choose-us_bottom-row__item-text {
  color: #fff;
  font-family: "Hiragino Mincho ProN";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .why-choose-us_content__item-content-img1 {
    left: 27.7777777778px;
  }

  .why-choose-us_content__item-content-img1 img {
    width: 72.2222222222px;
    height: 117.2222222222px;
    object-fit: cover;
  }

  .why-choose-us_content__item-content-img2 {
    right: 8.8888888889px;
  }

  .why-choose-us_content__item-content-img2 img {
    width: 120px;
    height: 100px;
    object-fit: cover;
  }

  .why-choose-us_content__item-content-subtitle {
    margin-bottom: 0;
  }

  .why-choose-us_content__item-triangle {
    bottom: -11.1111111111px;
  }

  .why-choose-us_content__item-triangle img {
    width: 100px;
    height: 41.1111111111px;
    object-fit: cover;
  }
}

@media (min-width: 1024px) and (max-width: 1280px) {
  .why-choose-us_content__item-content-img1 {
    left: 27.7777777778px;
  }

  .why-choose-us_content__item-content-img1 img {
    width: 72.2222222222px;
    height: 117.2222222222px;
    object-fit: cover;
  }

  .why-choose-us_content__item-content-img2 {
    right: 8.8888888889px;
  }

  .why-choose-us_content__item-content-img2 img {
    width: 120px;
    height: 100px;
    object-fit: cover;
  }

  .why-choose-us_content__item-content-subtitle {
    margin-bottom: 0;
  }

  .why-choose-us_content__item-triangle {
    bottom: -11.1111111111px;
  }

  .why-choose-us_content__item-triangle img {
    width: 100px;
    height: 41.1111111111px;
    object-fit: cover;
  }
}

@media (min-width: 1280px) and (max-width: 1440px) {
  .why-choose-us_content__item-content-img1 {
    left: 27.7777777778px;
  }

  .why-choose-us_content__item-content-img1 img {
    width: 72.2222222222px;
    height: 117.2222222222px;
    object-fit: cover;
  }

  .why-choose-us_content__item-content-img2 {
    right: 8.8888888889px;
  }

  .why-choose-us_content__item-content-img2 img {
    width: 120px;
    height: 100px;
    object-fit: cover;
  }

  .why-choose-us_content__item-content-subtitle {
    margin-bottom: 0;
  }

  .why-choose-us_content__item-triangle {
    bottom: -11.1111111111px;
  }

  .why-choose-us_content__item-triangle img {
    width: 100px;
    height: 41.1111111111px;
    object-fit: cover;
  }
}

@media (min-width: 1440px) and (max-width: 1919px) {
  .why-choose-us_content__item-content-img1 {
    left: 33.3333333333px;
  }

  .why-choose-us_content__item-content-img1 img {
    width: 86.6666666667px;
    height: 140.6666666667px;
    object-fit: cover;
  }

  .why-choose-us_content__item-content-img2 {
    right: 10.6666666667px;
  }

  .why-choose-us_content__item-content-img2 img {
    width: 144px;
    height: 120px;
    object-fit: cover;
  }

  .why-choose-us_content__item-content-subtitle {
    margin-bottom: 22px;
  }

  .why-choose-us_content__item-triangle {
    bottom: -13.3333333333px;
  }

  .why-choose-us_content__item-triangle img {
    width: 120px;
    height: 49.3333333333px;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .why-choose-us {
    margin-bottom: 60px;
  }

  .why-choose-us_title {
    font-size: 24px;
  }

  .why-choose-us_content__item:nth-child(2) {
    height: 360px;
  }

  .why-choose-us_content__item-content {
    width: 92%;
    height: fit-content;
    padding: 27px 12px 72px;
  }

  .why-choose-us_content__item-content-subtitle {
    margin-bottom: 27px;
  }

  .why-choose-us_content__item-content-description {
    color: #4e5961;
    font-family: "Hiragino Mincho ProN";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }

  .why-choose-us_content__item-content-img1 {
    bottom: -21px;
    left: 34px;
  }

  .why-choose-us_content__item-content-img1 img {
    width: 55px;
    height: 90px;
  }

  .why-choose-us_content__item-content-img2 {
    bottom: -21px;
    right: 6px;
  }

  .why-choose-us_content__item-content-img2 img {
    width: 113px;
    height: 94px;
  }

  .why-choose-us_content__item-triangle {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }

  .why-choose-us_content__item-triangle img {
    width: 150px;
    height: 55px;
    object-fit: cover;
  }

  .why-choose-us_bottom-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-choose-us_bottom-row__item {
    margin: 0 auto;
  }

  .why-choose-us_bottom-row__item-title {
    font-size: 24px;
  }
}

@media (min-width: 481px) and (max-width: 600px) {
  /* Code responsive */
}

@media (min-width: 601px) and (max-width: 768px) {
  /* Code responsive */
}

.about-us {
  margin-bottom: 70px;
}

.about-us-title {
  color: #333;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  padding-left: 21px;
  margin-bottom: 75px;
  display: flex;
  align-items: center;
}

.about-us-title::before {
  position: absolute;
  content: "";
  height: 30px;
  width: 8px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #0fa8fb 0%, #80efc8 100%);
}

.about-us-title__tag {
  color: #fff;
  -webkit-text-stroke-width: 0.200000003;
  -webkit-text-stroke-color: #d9d9d9;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 0 20px;
  background: linear-gradient(to right, #0fa8fb 0%, #80efc8 100%);
  margin-left: 13px;
}

.about-us-content {
  display: flex;
  gap: 71px;
}

.about-us-content_row {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about-us-content_row__item {
  display: grid;
  grid-template-columns: minmax(0, 120px) minmax(0, 1fr);
}

.about-us-content_row__item-title {
  color: #fff;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  background-color: #0fa8fb;
  width: 76px;
  height: fit-content;
  text-align: center;
  border-radius: 5px;
  padding: 2px 5px;
}

.about-us-content_row__item-content {
  color: #333;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.about-us-content .w-fit {
  width: fit-content !important;
}

.about-us-content .fix-grid-template .about-us-content_row__item {
  grid-template-columns: minmax(0, 90px) minmax(0, 1fr);
}

@media (max-width: 480px) {
  .about-us {
    margin-bottom: 60px;
  }

  .about-us-title {
    font-size: 24px;
    margin-bottom: 33px;
  }

  .about-us-title__tag {
    font-size: 12px;
    margin-left: 20px;
  }

  .about-us-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .about-us-content_row {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .about-us-content_row__item {
    grid-template-columns: minmax(0, 110px) minmax(0, 1fr);
    align-items: center;
  }

  .about-us-content_row__item-title {
    font-size: 16px;
  }

  .about-us-content_row__item-content {
    font-size: 16px;
  }

  .about-us-content .fix-grid-template .about-us-content_row__item {
    grid-template-columns: minmax(0, 110px) minmax(0, 1fr);
  }
}

@media (min-width: 481px) and (max-width: 600px) {
  /* Code responsive */
}

@media (min-width: 601px) and (max-width: 768px) {
  /* Code responsive */
}

.footer {
  background-color: #1f2c5c;
}

.footer-top {
  display: flex;
  gap: 75px;
  align-items: center;
  padding: 16px 0 22px;
  position: relative;
  margin-bottom: 20px;
}

.footer-top img.footer-top-logo {
  width: 305px;
  height: 67px;
  object-fit: cover;
}

.footer-top-address {
  display: flex;
}

.footer-top-address img {
  width: 13px;
  height: 16px;
  object-fit: contain;
  margin-top: 4px;
}

.footer-top-address__text {
  color: #fff;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-left: 13px;
}

.footer-top-phone {
  display: flex;
  gap: 15px;
  margin-top: -16px;
  color: #fff;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.footer-top-phone img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  margin-top: 4px;
}

.footer-top::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding-bottom: 47px;
}

.footer-bottom a {
  text-decoration: none;
  color: #fff;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  position: relative;
}

.footer-bottom a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 2px;
  background-color: #687abc;
}

.footer-bottom a:hover {
  color: #687abc;
}

.footer-copyright {
  color: #333;
  text-align: center;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: start;
    gap: 15px;
    padding: 21px 0 11px 16px;
    margin-bottom: 15px;
  }

  .footer-top img.footer-top-logo {
    width: 174px;
    height: 38px;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 15px;
    padding-bottom: 16px;
    padding-left: 16px;
  }

  .footer-copyright {
    font-size: 12px;
  }
}

@media (min-width: 481px) and (max-width: 600px) {
  .footer-top {
    flex-direction: column;
    align-items: start;
    gap: 15px;
    padding: 21px 0 11px 16px;
    margin-bottom: 15px;
  }

  .footer-top img.footer-top-logo {
    width: 174px;
    height: 38px;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 15px;
    padding-bottom: 16px;
  }

  .footer-copyright {
    font-size: 12px;
  }
}

@media (min-width: 601px) and (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: start;
    gap: 15px;
    padding: 21px 0 11px 16px;
    margin-bottom: 15px;
  }

  .footer-top img.footer-top-logo {
    width: 174px;
    height: 38px;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 15px;
    padding-bottom: 16px;
  }

  .footer-copyright {
    font-size: 12px;
  }
}

.company-profile-banner {
  width: 100%;
  height: 265px;
  background: url("/public/image/company_profile_banner.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.company-profile-content {
  font-family: Hiragino Kaku Gothic Pro;
}

.company-profile-content_wrapper {
  padding: 30px 0 44px;
}

.company-profile-content__title {
  font-size: 30px;
  font-weight: 600;
  padding-left: 20px;
  position: relative;
}

.company-profile-content__title::before {
  position: absolute;
  content: "";
  height: 31px;
  width: 8px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 3px;
  background: linear-gradient(180deg, #0fa8fb 0%, #80efc8 100%);
}

.company-profile-content__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  font-family: Hiragino Kaku Gothic Pro;
}

.company-profile-content__info-item {
  display: grid;
  grid-template-columns: 1fr 3fr;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid #d9d9d9;
}

.company-profile-content__info-item__title {
  padding-left: 12px;
  width: 100%;
}

.company-profile-content__info-item__content {
  line-height: 27px;
}

.company-profile-content__info-item__content>img {
  width: 100%;
  object-fit: cover;
  margin-top: 8px;
}

.company-profile-content__info-item__br {
  display: none;
}

.company-profile-content_vision {
  width: 800px;
  margin: 0 auto;
  padding: 36px 30px 24px;
  background: #f9f9f9;
  display: flex;
  gap: 20px;
  margin-bottom: 77px;
  font-family: Hiragino Kaku Gothic Pro;
}

.company-profile-content_vision-text__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 48px;
  background: linear-gradient(90deg, #0fa8fb 0%, #3dc5e6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.company-profile-content_vision-text__content {
  font-size: 18px;
  line-height: 27px;
  margin-top: 30px;
}

.company-profile-content_vision-img {
  width: 44%;
}

.company-profile-content_vision-img>img {
  width: 100%;
  min-width: 320px;
  object-fit: cover;
}

.company-profile-content_ceo {
  background-color: #d9d9d9;
  padding: 38px 0 48px;
  font-family: Hiragino Kaku Gothic Pro;
}

.company-profile-content_ceo-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  position: relative;
  padding-left: 12px;
}

.company-profile-content_ceo-title::before {
  position: absolute;
  content: "";
  height: 24px;
  width: 6px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 3px;
  background: linear-gradient(180deg, #0fa8fb 0%, #80efc8 100%);
}

.company-profile-content_ceo-wrapper {
  display: flex;
  gap: 94px;
  margin-top: 25px;
}

.company-profile-content_ceo-text {
  font-size: 16px;
  line-height: 24px;
}

.company-profile-content_ceo-text>p>span {
  font-weight: 600;
}

.company-profile-content_ceo-img {
  width: 40%;
  min-width: 357px;
}

.company-profile-content_ceo-img>img {
  width: 100%;
  object-fit: cover;
}

.company-profile-content_ceo-img_alt {
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  text-align: center;
}

.company-profile-content_access {
  padding: 101px 0 95px;
  font-family: Hiragino Kaku Gothic Pro;
}

.company-profile-content_access-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 31px;
  position: relative;
  padding-left: 12px;
}

.company-profile-content_access-title::before {
  position: absolute;
  content: "";
  height: 24px;
  width: 6px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 3px;
  background: linear-gradient(180deg, #0fa8fb 0%, #80efc8 100%);
}

.company-profile-content_access-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.company-profile-content_access-text {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}

.company-profile-content_access-text__item {
  display: flex;
  gap: 6px;
  width: 100%;
  padding: 16px 20px 16px 27px;
}

.company-profile-content_access-text__item-img {
  width: 26px;
}

.company-profile-content_access-text__item-img>img {
  width: 100%;
  object-fit: cover;
}

.company-profile-content_access-text__item>p {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}

.company-profile-content_access-text__item.custom_phone {
  background-color: #f9f9f9;
  border-radius: 32px;
}

.company-profile-content_access-text__item.custom_phone span {
  background: linear-gradient(90deg, #0fa8fb 0%, #40c7e5 58.7%, #0fa8fb 70.3%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.company-profile-content_step {
  background: #f9f9f9;
  padding: 82px 0 47px;
}

.company-profile-content_step-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 90px 10px;
}

.company-profile-content_step-item__img {
  width: 100%;
  position: relative;
}

.company-profile-content_step-item__img>img {
  width: 100%;
  object-fit: cover;
}

.company-profile-content_step-item__img>span {
  position: absolute;
  top: -50px;
  left: 0;
  font-family: Futura;
  font-size: 64px;
  font-weight: 500;
  line-height: 85px;
  letter-spacing: -0.05em;
  background: linear-gradient(90deg, #0fa8fb 0%, #3dc5e6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.company-profile-content_step-item__img-start {
  position: absolute;
  top: -65px;
  right: 18px;
  display: flex;
  flex-direction: column;
}

.company-profile-content_step-item__img-start>span {
  font-family: Futura;
  font-size: 32px;
  font-style: italic;
  font-weight: 500;
  line-height: 42.58px;
  height: 42.58px;
  background: linear-gradient(90deg, #0fa8fb 0%, #3dc5e6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.company-profile-content_step-item__img-start>img {
  max-width: 124px;
  object-fit: contain;
}

.company-profile-content_step-item__img-start.goal {
  top: -45px;
  right: 50px;
}

.company-profile-content_step-item__text {
  font-family: Hiragino Kaku Gothic Pro;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 0.06em;
  margin-top: 20px;
}

@media screen and (max-width: 786px) {
  .company-profile-banner {
    height: 120px;
    background: url("/public/image/company_profile_banner_sp.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }

  .company-profile-content_wrapper {
    padding: 20px 0 0;
  }

  .company-profile-content__title {
    font-size: 24px;
  }

  .company-profile-content__title::before {
    height: 24px;
    width: 6px;
  }

  .company-profile-content__info {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .company-profile-content__info-item {
    grid-template-columns: 1fr 2fr;
    font-size: 16px;
  }

  .company-profile-content__info-item__content {
    line-height: 27px;
  }

  .company-profile-content__info-item__content>img {
    width: 110%;
    max-width: 278px;
    margin-left: -20%;
  }

  .company-profile-content__info-item__br {
    display: block;
  }

  .company-profile-content_vision {
    width: 100%;
    padding: 60px 15px 23px;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 0;
  }

  .company-profile-content_vision-text__title {
    font-size: 24px;
    line-height: 36px;
  }

  .company-profile-content_vision-text__content {
    font-size: 16px;
    line-height: 24px;
    margin-top: 0;
  }

  .company-profile-content_vision-text-ln1 {
    width: 345px;
    height: 30px;
    top: 1275px;
    left: 15px;
    gap: 0px;
    opacity: 0px;
    font-family: Hiragino Kaku Gothic Pro;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    text-align: left;
    background-color: white;
    margin-top: 19px;
  }

  .company-profile-content_vision-text-ln2 {
    width: 160px;
    height: 30px;
    top: 1275px;
    left: 15px;
    gap: 0px;
    opacity: 0px;
    font-family: Hiragino Kaku Gothic Pro;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    text-align: left;
    background-color: white;
    margin-top: 10px;
  }

  .company-profile-content_vision-img {
    width: 50%;
  }

  .company-profile-content_vision-img>img {
    width: 100%;
    min-width: 210px;
    object-fit: cover;
    margin-left: -34px;
  }

  .company-profile-content_vision>.sp-only p {
    font-size: 16px;
    line-height: 24px;
  }

  .company-profile-content_ceo {
    background-color: #fff;
    padding: 60px 0;
  }

  .company-profile-content_ceo-wrapper {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }

  .company-profile-content_ceo-text {
    order: 2;
  }

  .company-profile-content_ceo-img {
    width: 100%;
    min-width: unset;
    max-width: 230px;
    margin: 0 auto;
  }

  .company-profile-content_access {
    padding: 0 0 56px;
  }

  .company-profile-content_access-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 75px;
  }

  .company-profile-content_access-title {
    margin-bottom: 60px;
  }

  .company-profile-content_access-text {
    order: 2;
    font-size: 16px;
    line-height: 24px;
  }

  .company-profile-content_access-text__item {
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
  }

  .company-profile-content_access-text__item-img {
    width: 20px;
  }

  .company-profile-content_access-text__item:nth-child(3) {
    margin-top: 33px;
  }

  .company-profile-content_step {
    background: #fff;
    padding: 0 0 47px;
  }

  .company-profile-content_step-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 65px;
  }

  .company-profile-content_step-item__img {
    width: 59%;
    margin: 0 auto;
  }

  .company-profile-content_step-item__img-start {
    display: none;
  }

  .company-profile-content_step-item__text {
    width: 59%;
    margin: 0 auto;
    margin-top: 20px;
  }
}

.privacy-banner {
  width: 100%;
  height: 265px;
  background-image: url("/public/image/privacy_banner_pc.png");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.privacy-main-title {
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 30px;
  font-weight: 600;
  line-height: 45px;
  margin-top: 29px;
  padding-left: 20px;
  position: relative;
  margin-bottom: 22px;
}

.privacy-main-title::before {
  position: absolute;
  content: "";
  height: 31px;
  width: 8px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 3px;
  background: linear-gradient(180deg, #0fa8fb 0%, #80efc8 100%);
}

.privacy-main-text {
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 18px;
  line-height: 36px;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.privacy-main-text>span {
  display: inline-block;
}

.privacy-main-list {
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 18px;
  font-weight: 300;
  line-height: 36px;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.privacy-main-list>span {
  display: inline-block;
}

.privacy-main-subtitle {
  font-weight: 600;
}

.privacy-main-list-style {
  padding-left: 4px;
}

.privacy-main-time {
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 18px;
  font-weight: 300;
  line-height: 36px;
  margin-bottom: 45px;
  margin-top: 60px;
}

.privacy-main-link {
  color: #0fa8fb;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .privacy-banner {
    height: 120px;
    background-image: url("/public/image/privacy_banner_sp.png");
  }

  .privacy-main-title {
    font-family: "Hiragino Kaku Gothic Pro";
    font-size: 24px;
    font-weight: 600;
    line-height: 45px;
    margin-top: 29px;
    padding-left: 20px;
    position: relative;
    margin-bottom: 22px;
  }

  .privacy-main-text {
    font-family: "Hiragino Kaku Gothic Pro";
    font-size: 16px;
    line-height: 36px;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
  }

  .privacy-main-text>span {
    display: inline-block;
  }

  .privacy-main-list {
    font-family: "Hiragino Kaku Gothic Pro";
    font-size: 16px;
    font-weight: 300;
    line-height: 36px;
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
  }

  .privacy-main-list>span {
    display: inline-block;
  }

  .privacy-main-subtitle {
    font-weight: 600;
  }

  .privacy-main-list-style {
    padding-left: 4px;
  }

  .privacy-main-time {
    font-family: "Hiragino Kaku Gothic Pro";
    font-size: 16px;
    font-weight: 300;
    line-height: 36px;
    margin-bottom: 45px;
    margin-top: 60px;
  }

  .privacy-main-link {
    color: #0fa8fb;
    text-decoration: none;
  }
}

.sitemap-page {
  color: #333;
  font-family: "Hiragino Kaku Gothic Pro";
  font-style: normal;
  line-height: normal;
}

.sitemap-page-header {
  margin-top: 35px;
}

.sitemap-page-header__title {
  font-size: 24px;
  font-weight: 600;
  padding-left: 15px;
  position: relative;
}

.sitemap-page-header__title::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 6px;
  height: 24px;
  border-radius: 3px;
  background: var(--Linear, linear-gradient(180deg, #0fa8fb 0%, #80efc8 100%));
}

.sitemap-page-content {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 80px;
}

@media screen and (max-width: 768px) {
  .sitemap-page-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.sitemap-page-content_left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sitemap-page-content_left-page {
  margin-top: 17px;
}

.sitemap-page-content_left-page__title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  display: flex;
  gap: 20px;
  align-items: center;
  padding-left: 30px;
  margin-bottom: 12px;
  width: 360px;
  height: 42px;
  border-radius: 21px;
  background: var(--Linear, linear-gradient(90deg, #0fa8fb 0%, #3dc5e6 100%));
}

.sitemap-page-content_left-page__title>img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .sitemap-page-content_left-page__title {
    width: 100%;
    padding-left: 20px;
  }
}

.sitemap-page-content_left-page__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sitemap-page-content_left-page__content>ul {
  list-style: none;
}

.sitemap-page-content_left-page__content>ul li a {
  color: initial;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .sitemap-page-content_left-page__content>ul {
    padding-left: calc(2rem - 10px);
  }
}

.sitemap-page-content_left-occupations__title {
  font-size: 20px;
  font-weight: 600;
  color: #0fa8fb;
  padding-left: 15px;
  position: relative;
  height: 53px;
  line-height: 53px;
  margin-bottom: 10px;
}

.sitemap-page-content_left-occupations__title::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 6px;
  height: 24px;
  border-radius: 3px;
  background: #0fa8fb;
}

.sitemap-page-content_left-occupations__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 10px;
  width: 88%;
}

.sitemap-page-content_left-occupations__content-item {
  display: flex;
  justify-content: center;
  align-items: center;
  color: initial;
  text-decoration: none;
  height: 40px;
  border: 1px solid #333;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .sitemap-page-content_left-occupations__content {
    grid-template-columns: 1fr 1fr;
    width: 100%;
    padding-left: 15px;
  }
}

.sitemap-page-content_left-area__title {
  font-size: 20px;
  color: #0fa8fb;
  font-weight: 600;
  padding-left: 15px;
  position: relative;
  height: 53px;
  line-height: 53px;
  margin-bottom: 10px;
}

.sitemap-page-content_left-area__title::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 6px;
  height: 24px;
  border-radius: 3px;
  background: #0fa8fb;
}

.sitemap-page-content_left-area__content-title {
  height: 44px;
  line-height: 44px;
  font-size: 20px;
  font-weight: 600;
  background: rgba(153, 218, 253, 0.48);
  padding-left: 21px;
  margin-bottom: 20px;
}

.sitemap-page-content_left-area__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 17px;
}

@media screen and (max-width: 768px) {
  .sitemap-page-content_left-area__content-wrapper {
    width: 345px;
  }
}

.sitemap-page-content_left-area__content-item {
  padding-left: 18px;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 34px;
  font-size: 16px;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .sitemap-page-content_left-area__content-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-left: 0;
  }
}

.sitemap-page-content_left-area__content-item__title {
  font-weight: 600;
}

.sitemap-page-content_left-area__content-item__content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.sitemap-page-content_left-area__content-item__content>a {
  text-decoration: none;
  color: initial;
  padding: 0 6px 0 12px;
  position: relative;
}

.sitemap-page-content_left-area__content-item__content>a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -3px;
  width: 1px;
  height: 100%;
  background: #d9d9d9;
}

.sitemap-page-content_left-area__content-item__content>a:last-child::before {
  display: none;
}

.sitemap-page-content_left-area__content-item__content>a:nth-child(7n)::before {
  display: none;
}

@media screen and (max-width: 768px) {
  .sitemap-page-content_left-area__content-item__content>a {
    padding: 0 5px 0 10px;
  }

  .sitemap-page-content_left-area__content-item__content>a:first-child {
    padding-left: 0;
  }
}

.sitemap-page-content_left-area__content-item__content.custom-css-site-map {
  display: grid;
  grid-template-columns: repeat(5, fit-content(100%));
}

.sitemap-page-content_left-area__content-item__content.custom-css-site-map>a {
  margin-bottom: 5px;
}

.sitemap-page-content_left-area__content-item__content.custom-css-site-map>a:nth-child(5n)::before {
  display: none;
}

.sitemap-page-content_left-area__content-item__content.custom-css-site-map>a:nth-child(7n)::before {
  display: block;
}

@media screen and (max-width: 768px) {
  .sitemap-page-content_left-area__content-item__content.custom-css-site-map>a:nth-child(6n) {
    padding-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .sitemap-page-content_left-area__content-item__content.custom-sp>a:nth-child(8n) {
    padding-left: 0;
  }
}

.sitemap-page-content_left-area__content-item1 {
  padding-left: 18px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .sitemap-page-content_left-area__content-item1 {
    padding-left: 0;
  }
}

.sitemap-page-content_left-area__content-item1__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 0;
}

@media screen and (max-width: 768px) {
  .sitemap-page-content_left-area__content-item1__content {
    gap: 10px 30px;
  }
}

.sitemap-page-content_left-area__content-item1__content>a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 600;
}

.sitemap-page-content_left-appeals__title {
  font-size: 20px;
  color: #0fa8fb;
  font-weight: 600;
  padding-left: 15px;
  position: relative;
  height: 53px;
  line-height: 53px;
  margin-bottom: 10px;
}

.sitemap-page-content_left-appeals__title::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 6px;
  height: 24px;
  border-radius: 3px;
  background: #0fa8fb;
}

.sitemap-page-content_left-appeals__content-title {
  height: 44px;
  line-height: 44px;
  font-size: 20px;
  font-weight: 600;
  background: rgba(153, 218, 253, 0.48);
  padding-left: 21px;
  margin-bottom: 20px;
}

.sitemap-page-content_left-appeals__content-item1 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  padding-left: 18px;
}

.sitemap-page-content_left-appeals__content-item1>a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  width: max-content;
}

@media screen and (max-width: 768px) {
  .sitemap-page-content_left-appeals__content-item1 {
    padding-left: 0;
  }
}

.sitemap-page-content_left-appeals__content-item2 {
  padding-left: 18px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .sitemap-page-content_left-appeals__content-item2 {
    padding-left: 0;
  }
}

.sitemap-page-content_left-appeals__content-item2_wrapper {
  display: flex;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .sitemap-page-content_left-appeals__content-item2_wrapper {
    gap: 16px;
  }
}

.sitemap-page-content_left-appeals__content-item2__title {
  width: fit-content;
}

.sitemap-page-content_left-appeals__content-item2__content>a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  margin-left: 12px;
  color: #0fa8fb;
  transition: all 0.3s linear;
}

@media screen and (max-width: 768px) {
  .sitemap-page-content_left-appeals__content-item2__content>a {
    margin-left: 8px;
  }
}

.sitemap-page-content_left-appeals__content-item3 {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 20px;
  padding-left: 18px;
}

@media screen and (max-width: 768px) {
  .sitemap-page-content_left-appeals__content-item3 {
    padding-left: 0;
  }
}

.sitemap-page-content_left-appeals__content-item3_wrapper {
  display: grid;
  grid-template-columns: 17% 1fr;
}

@media screen and (max-width: 768px) {
  .sitemap-page-content_left-appeals__content-item3_wrapper {
    grid-template-columns: 1fr;
  }
}

.sitemap-page-content_left-appeals__content-item3__title {
  font-weight: 600;
  font-size: 16;
}

.sitemap-page-content_left-appeals__content-item3__content {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sitemap-page-content_left-appeals__content-item3__content>a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 300;
  padding: 0 6px;
  position: relative;
}

.sitemap-page-content_left-appeals__content-item3__content>a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -6px;
  width: 1px;
  height: 100%;
  background: #d9d9d9;
}

.sitemap-page-content_left-appeals__content-item3__content>a:last-child::before {
  display: none;
}

.sitemap-page-content_left-appeals__content-item4 {
  padding-left: 18px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .sitemap-page-content_left-appeals__content-item4 {
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
  }
}

.sitemap-page-content_left-appeals__content-item4>a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 300;
  margin-right: 30px;
  display: inline-block;
  margin-bottom: 8px;
  width: max-content;
}

@media screen and (max-width: 768px) {
  .sitemap-page-content_left-appeals__content-item4>a {
    width: max-content;
  }
}

.sitemap-page-content_right {
  font-family: "Hiragino Kaku Gothic Pro";
  font-style: normal;
  line-height: normal;
}

.sitemap-page-content_right-item__title {
  font-size: 20px;
  font-weight: 600;
  padding-left: 15px;
  color: #0fa8fb;
  position: relative;
  height: 53px;
  line-height: 53px;
}

.sitemap-page-content_right-item__title::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 6px;
  height: 24px;
  border-radius: 3px;
  background: #0fa8fb;
}

.sitemap-page-content_right-item__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sitemap-page-content_right-item__content>a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  width: max-content;
}

.sitemap-page-content_right-item__content>.sp-only img {
  width: 42%;
  object-fit: contain;
  margin: 10px 0;
}

@media screen and (max-width: 768px) {
  .sitemap-page-content_right {
    margin-bottom: 60px;
  }
}

.divider-header {
  width: 100%;
  height: 1px;
  background: transparent;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.15);
  display: none;
}

@media screen and (max-width: 768px) {
  .divider-header {
    display: block;
  }
}

/*# sourceMappingURL=app.css.map */