@charset "UTF-8";
/*
@mixin flex-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  @mixin flex-left {
    display: flex;
    flex-wrap: wrap;
  }

  @mixin flex-left-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }

  @mixin flex-top-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }

  @mixin flex-left-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-end;
  }

  @mixin flex-right-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-end;
  }

  @mixin flex-top-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }

  @mixin flex-right-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
  }

  @mixin flex-between-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  @mixin flex-between-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  @mixin flex-between-end {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
  }



  @mixin box-width {
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
  }

  @mixin transition-base {
    transition: all 0.3s ease-in-out;
  }

  @mixin ico-size-sm {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 15px;
    height: 100%;
    left: 15px;
  }

  @mixin ico-size-lsm {
    top: 50%;
    transform: translateY(-50%);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 17px;
    height: 100%;
    left: 15px;
  }

  @mixin ico-size-md {
    top: 50%;
    transform: translateY(-50%);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 23px;
    height: 100%;
    left: 15px;
  }


  @mixin ico-size-lmd {
    top: 50%;
    transform: translateY(-50%);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 100%;
    left: 15px;
  }
*/
body {
  font-family: "Roboto Condensed", "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 0;
  color: #333333;
  font-weight: 500;
}

a {
  color: #000000;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

li, ul, h1, h2, h3, h4, h5, div, p {
  list-style: none;
  margin: 0;
  padding: 0;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.modal .modal-wrap {
  position: relative;
  width: auto;
  display: block;
  height: 100%;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
}
.modal .modal-wrap.detail-iframe-wrap {
  background-color: #ffffff;
  height: 100%;
  overflow: hidden;
}
.modal .modal-wrap .iframe-detail-html {
  width: 100%;
  height: 100%;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.modal .modal-content {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 0;
  width: 100%;
}
.modal .modal-content.size-sm {
  width: auto;
}
.modal .modal-content.size-md {
  max-width: 720px;
}
.modal .modal-content.size-lg {
  width: auto;
}
.modal .modal-content.size-xl {
  width: auto;
}
.modal .modal-content.size-full {
  width: auto;
}
.modal .modal-close {
  position: absolute;
  top: 40px;
  right: 20px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
.modal .modal-title {
  text-align: left;
  font-size: 20px;
  color: #1571DA;
}
.modal .modal-card {
  background-color: #ffffff;
  padding: 50px 60px;
  border-radius: 8px;
  width: 100%;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.modal .modal-card .modal-card-head {
  width: 100%;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal .modal-card .modal-card-head.text-center {
  text-align: center;
}
.modal .modal-card .modal-card-headh2,
.modal .modal-card .modal-card-head h2 {
  line-height: 1;
  font-size: 20px;
  color: #1571DA;
}
.modal .modal-card .modal-card-body {
  width: 100%;
  position: relative;
}
.modal .modal-step {
  display: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal .modal-step .entered-email-text {
  font-size: 22px;
  width: 100%;
  text-align: center;
}
.modal .modal-step .label-modal-step-01 {
  font-size: 25px;
  line-height: 1;
  margin-bottom: 5px;
  width: 100%;
}
.modal .modal-step .label-modal-step-02 {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 5px;
}
.modal .modal-step .modal-step-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 450px;
  margin-top: 10px;
}
.modal .modal-step .modal-step-col.size-md {
  width: 100%;
  max-width: 150px;
}
.modal .modal-step#step-1 {
  display: block;
}
.modal .modal-step.active {
  display: block;
}
.modal .form-group-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
.modal .form-group label {
  width: 90px;
  font-size: 14px;
}
.modal .form-group label.size-sm {
  width: 60px;
}
.modal .form-group label.size-lg {
  width: 150px;
}
.modal .form-group label.size-auto {
  width: auto;
}
.modal .form-group.project-id {
  margin-left: 100px;
}
.modal .form-group.project-id label {
  width: 60px;
}
.modal .grid-gap {
  display: grid;
  gap: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.modal .modal-actions {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
.modal .w-100 {
  width: 100%;
}
.modal .limit-word-count-box {
  width: 100%;
  text-align: right;
}
.modal .confirm-complete-text {
  width: 100%;
  color: #1571DA;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-top: 40px;
}

.is-body-fix {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.l-header {
  width: 100%;
  height: 80px;
  border-bottom: solid 1px #707070;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}
.l-header .header-inner {
  width: 100%;
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-header .nav-btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.l-header .nav-btn-list .nav-btn-item {
  width: 170px;
  height: 100%;
  position: relative;
}
.l-header .nav-btn-list .nav-btn-item:after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(112, 112, 112, 0.25);
  position: absolute;
  top: 0;
  right: 0;
}
.l-header .nav-btn-list .nav-btn-item .nav-btn-item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 80px;
  background-color: #ffffff;
  font-size: 18px;
  color: #000000;
  font-weight: 400;
  text-decoration: none;
}
.l-header .nav-btn-list .nav-btn-item .nav-btn-item-link:hover {
  font-weight: 700;
  background-color: rgba(204, 204, 204, 0.25);
}
.l-header .nav-btn-list .nav-btn-item .nav-btn-item-link.is-active {
  font-weight: 700;
  background-color: rgba(204, 204, 204, 0.25);
  pointer-events: none;
}
.l-header .nav-other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 120px;
}
.l-header .nav-other .user-name-block {
  font-size: 18px;
  font-weight: 400;
  width: 170px;
  text-align: center;
}
.l-header .nav-other .btn-logout {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.l-header .nav-other .btn-logout:hover {
  opacity: 0.7;
}
.l-header .common-logo {
  width: 185px;
  position: absolute;
  top: 0;
  right: -120px;
  z-index: 2;
}

.l-footer .footer-wrap {
  background-color: #222222;
  padding: 35px 0;
}
.l-footer .text-copyright {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: #ffffff;
}

.l-main {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px;
}
.l-main.full {
  padding: 0;
}
.l-main .l-pagebody {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.l-main .l-pagebody.box {
  width: 1000px;
}

.row-base {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.row-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.w-100 {
  width: 100%;
}

.gap-xs {
  gap: 5px;
}

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.ml-1 {
  margin-left: 10px;
}

.ml-2 {
  margin-left: 20px;
}

#loading-spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7); /* 背景を半透明に */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 99999999; /* 最前面に表示 */
}

/* スピナー自体のスタイル */
.spinner {
  border: 8px solid #f3f3f3; /* 薄いグレー */
  border-top: 8px solid #000000; /* 青色 */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* アニメーション定義 */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.login-container {
  width: 100%;
  height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.login-container img {
  width: 100%;
}
.login-container .login-card {
  max-width: 480px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.login-container .login-card .login-logo {
  max-width: 200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
.login-container .login-card .login-head {
  font-size: 30px;
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .login-container .login-card .login-head {
    font-size: 30px;
  }
}
.login-container .login-card .login-head:after {
  content: "";
  background-color: #333333;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -10px;
  z-index: 2;
  width: 50px;
  height: 2px;
}
.login-container .login-card .login-body .mail-col {
  margin-bottom: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
.login-container .login-card .login-body .password-col {
  margin-bottom: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
.login-container .login-card .login-body label {
  font-size: 25px;
  line-height: 1;
  margin-bottom: 5px;
}
.login-container .login-card .login-body .login-foot {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.login-container .login-card .login-body .login-foot .forgot-password {
  font-size: 13px;
  cursor: pointer;
}

.login-password-field {
  position: relative;
}
.login-password-field .toggle-eye {
  position: absolute;
  z-index: 5;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 40px;
  width: 30px;
  height: auto;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: 1;
}
.login-password-field .toggle-eye img {
  width: 100%;
  line-height: 1;
  vertical-align: bottom;
  opacity: 0.8;
}

.password-field {
  position: relative;
}
.password-field .toggle-eye {
  position: absolute;
  z-index: 5;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
  width: 30px;
  height: auto;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: 1;
}
.password-field .toggle-eye img {
  width: 100%;
  line-height: 1;
  vertical-align: bottom;
  opacity: 0.8;
}

.project-search,
.applicant-search {
  margin-bottom: 20px;
  padding: 30px 0;
}
.project-search .headding-02,
.applicant-search .headding-02 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1;
}
.project-search .search-form-contents,
.applicant-search .search-form-contents {
  border: solid 1px #707070;
  border-radius: 10px;
  padding: 20px 30px;
  margin-bottom: 30px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.project-search .data-row,
.applicant-search .data-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.project-search .data-row .between-text,
.applicant-search .data-row .between-text {
  padding: 0 5px;
}
.project-search .search-form,
.applicant-search .search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  gap: 15px;
}
.project-search .search-form .form-actions,
.applicant-search .search-form .form-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
}
.project-search .search-form .fixed-display,
.applicant-search .search-form .fixed-display {
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.project-actions,
.applicant-action {
  margin-bottom: 20px;
  width: 100%;
}

.action-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.bulk-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.project-list .project-count,
.project-list .applicant-count,
.applicant-list .project-count,
.applicant-list .applicant-count {
  font-size: 12px;
  width: 100%;
  text-align: right;
  margin-bottom: 10px;
}
.project-list .project-table,
.project-list .applicant-table,
.applicant-list .project-table,
.applicant-list .applicant-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.project-list .project-table th, .project-list .project-table td,
.project-list .applicant-table th,
.project-list .applicant-table td,
.applicant-list .project-table th,
.applicant-list .project-table td,
.applicant-list .applicant-table th,
.applicant-list .applicant-table td {
  padding: 10px 5px;
  text-align: center;
}
.project-list .project-table th,
.project-list .applicant-table th,
.applicant-list .project-table th,
.applicant-list .applicant-table th {
  background-color: #C5C5C5;
  font-weight: 700;
  font-size: 13px;
  color: #212329;
}
.project-list .project-table td,
.project-list .applicant-table td,
.applicant-list .project-table td,
.applicant-list .applicant-table td {
  background-color: #ffffff;
  font-size: 14px;
  border-bottom: solid 1px #2D8FD5;
}
.project-list .project-table td:first-child,
.project-list .applicant-table td:first-child,
.applicant-list .project-table td:first-child,
.applicant-list .applicant-table td:first-child {
  text-align: right;
}
.project-list .project-table td .operation-row,
.project-list .applicant-table td .operation-row,
.applicant-list .project-table td .operation-row,
.applicant-list .applicant-table td .operation-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.project-list .project-table .td-content.Unconfirmed,
.project-list .applicant-table .td-content.Unconfirmed,
.applicant-list .project-table .td-content.Unconfirmed,
.applicant-list .applicant-table .td-content.Unconfirmed {
  color: red;
}
.project-list .project-table .td-content.Confirmed,
.project-list .applicant-table .td-content.Confirmed,
.applicant-list .project-table .td-content.Confirmed,
.applicant-list .applicant-table .td-content.Confirmed {
  color: #00CE8F;
}
.project-list .pagination,
.applicant-list .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.project-list .pagination .page-link,
.applicant-list .pagination .page-link {
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffffff;
  border: solid 1px #E5E5E5;
  color: #000000;
  text-decoration: none;
  width: 30px;
  height: 30px;
}
.project-list .pagination .page-link.is-active,
.applicant-list .pagination .page-link.is-active {
  background-color: #1571DA;
  border: solid 1px #1571DA;
  color: #ffffff;
}
.project-list .pagination .page-link:hover,
.applicant-list .pagination .page-link:hover {
  background-color: #1571DA;
  border: solid 1px #1571DA;
  color: #ffffff;
}
.project-list .pagination .ico-pagination-arrow img,
.applicant-list .pagination .ico-pagination-arrow img {
  width: 12px;
}
.project-list .pagination .ico-pagination-arrow.prev img,
.applicant-list .pagination .ico-pagination-arrow.prev img {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.applicant-url {
  background-color: #EEEEEE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: solid 2px #707070;
  border-bottom: solid 1px #707070;
  padding: 12px 25px;
  margin-bottom: 30px;
}
.applicant-url .applicant-url-title {
  margin-right: 40px;
  font-size: 18px;
}
.applicant-url .copy-block {
  background-color: #ffffff;
  padding: 5px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
  border: solid #7D7D7D 1px;
  margin-right: 20px;
}
.applicant-url .copy-block .copy-text {
  font-size: 14px;
}

.section-applicant-header {
  background-color: #EEEEEE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: solid 2px #707070;
  border-bottom: solid 2px #707070;
  padding: 12px 25px;
  margin-bottom: 0;
}

.applicant-detail-page {
  margin-bottom: 20px;
  padding: 30px 0;
}
.applicant-detail-page .applicant-detail-page-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}

.applicant-detail-section {
  width: 100%;
  position: relative;
}

.info-table-wrap {
  width: 100%;
  position: relative;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}
.info-table th, .info-table td {
  padding: 10px 10px;
  text-align: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: solid 1px #707070;
  line-height: 1.5;
  position: relative;
  width: 30%;
}
.info-table th {
  background-color: #2D8FD5;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  text-align: left;
  width: 20%;
}
.info-table th.th-gray {
  background-color: #CCCCCC;
  color: #212529;
}
.info-table th.th-secondary {
  background-color: #00CE8F;
  color: #ffffff;
}
.info-table td {
  width: 28%;
  background-color: #ffffff;
  font-size: 16px;
}
.info-table .documents-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.action-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.btn-applicant-detail-wrap {
  width: 100%;
  position: relative;
  margin-top: 60px;
}
.btn-applicant-detail-wrap .action-buttons {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.btn-applicant-detail-modal-wrap {
  width: 100%;
  border-top: solid 1px #cccccc;
  margin-top: 30px;
  padding-top: 30px;
}
.btn-applicant-detail-modal-wrap .btn-applicant-detail-wrap {
  margin-top: 0;
}

.status-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  margin-top: 20px;
  gap: 10px;
}

.modal-img-file {
  width: 100%;
  height: 100dvh;
  max-height: 100dvh;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal-img-file .modal-img-file-inner {
  max-width: 500px;
  width: 100%;
  height: auto;
}
.modal-img-file .modal-img-file-inner img {
  width: 100%;
  height: auto;
}

.modal-img-file-close {
  background-color: #6C757E;
  color: #ffffff;
  width: 80px;
  height: 40px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 40px;
  border-radius: 4px;
  z-index: 11;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
}

.project-search .project-list .project-table {
  width: 100%;
}
.project-search .project-list .project-table th, .project-search .project-list .project-table td {
  word-wrap: break-word;
}
.project-search .project-list .project-table th {
  text-align: center !important;
}
.project-search .project-list .project-table td:nth-child(1) {
  min-width: 50px;
  width: 50px;
}
.project-search .project-list .project-table td:nth-child(2) {
  min-width: 80px;
  width: 80px;
  text-align: right;
  font-size: 12px;
}
.project-search .project-list .project-table td:nth-child(3) {
  min-width: 70px;
  width: 70px;
}
.project-search .project-list .project-table td:nth-child(4) {
  text-align: left;
  font-size: 12px;
}
.project-search .project-list .project-table td:nth-child(5) {
  min-width: 50px;
  width: 50px;
  text-align: right;
}
.project-search .project-list .project-table td:nth-child(6) {
  min-width: 50px;
  width: 50px;
  text-align: right;
}
.project-search .project-list .project-table td:nth-child(7) {
  min-width: 70px;
  width: 70px;
  text-align: right;
}
.project-search .project-list .project-table td:nth-child(8) {
  min-width: 200px;
  width: 200px;
}

.project-list .project-table {
  width: 100%;
}
.project-list .project-table th, .project-list .project-table td {
  word-wrap: break-word;
  text-align: center;
}
.project-list .project-table th {
  text-align: center !important;
}
.project-list .project-table td:nth-child(1), .project-list .project-table th:nth-child(1) {
  min-width: 50px;
  width: 50px;
}
.project-list .project-table td:nth-child(2), .project-list .project-table th:nth-child(2) {
  min-width: 80px;
  width: 90px;
  text-align: right;
  font-size: 12px;
}
.project-list .project-table td:nth-child(3), .project-list .project-table th:nth-child(3) {
  min-width: 70px;
  width: 70px;
}
.project-list .project-table td:nth-child(4), .project-list .project-table th:nth-child(4) {
  text-align: left;
  font-size: 12px;
  width: auto;
}
.project-list .project-table td:nth-child(5), .project-list .project-table th:nth-child(5) {
  min-width: 50px;
  width: 50px;
  text-align: right;
}
.project-list .project-table td:nth-child(6), .project-list .project-table th:nth-child(6) {
  min-width: 50px;
  width: 50px;
  text-align: right;
}
.project-list .project-table td:nth-child(7), .project-list .project-table th:nth-child(7) {
  min-width: 70px;
  width: 70px;
  text-align: right;
}
.project-list .project-table td:nth-child(8), .project-list .project-table th:nth-child(8) {
  min-width: 200px;
  width: 200px;
}

.applicant-list .applicant-table {
  width: 100%;
}
.applicant-list .applicant-table th, .applicant-list .applicant-table td {
  word-wrap: break-word;
  text-align: center;
}
.applicant-list .applicant-table td:nth-child(1), .applicant-list .applicant-table th:nth-child(1) {
  min-width: 30px;
  width: 30px;
  text-align: left;
}
.applicant-list .applicant-table td:nth-child(1) .td-content, .applicant-list .applicant-table th:nth-child(1) .td-content {
  text-align: left;
}
.applicant-list .applicant-table td:nth-child(2), .applicant-list .applicant-table th:nth-child(2) {
  min-width: 60px;
  width: 60px;
  text-align: right;
}
.applicant-list .applicant-table td:nth-child(3), .applicant-list .applicant-table th:nth-child(3) {
  min-width: 60px;
  width: 60px;
  text-align: right;
}
.applicant-list .applicant-table td:nth-child(4), .applicant-list .applicant-table th:nth-child(4) {
  min-width: 60px;
  width: 60px;
  font-size: 12px;
}
.applicant-list .applicant-table td:nth-child(5), .applicant-list .applicant-table th:nth-child(5) {
  min-width: 60px;
  width: 60px;
}
.applicant-list .applicant-table td:nth-child(6), .applicant-list .applicant-table th:nth-child(6) {
  text-align: left;
  font-size: 12px;
}
.applicant-list .applicant-table td:nth-child(7), .applicant-list .applicant-table th:nth-child(7) {
  min-width: 70px;
  width: 70px;
}
.applicant-list .applicant-table td:nth-child(8), .applicant-list .applicant-table th:nth-child(8) {
  min-width: 80px;
  width: 80px;
}
.applicant-list .applicant-table td:nth-child(9), .applicant-list .applicant-table th:nth-child(9) {
  min-width: 100px;
  width: 100px;
}
.applicant-list .applicant-table td:nth-child(10), .applicant-list .applicant-table th:nth-child(10) {
  min-width: 200px;
  width: 200px;
}
.applicant-list .applicant-table td:nth-child(8) {
  font-size: 12px;
}
.applicant-list .applicant-table td:nth-child(9) {
  font-size: 12px;
}

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

.input-common,
.select-common,
.textarea-common {
  padding: 0.6rem 0.6rem;
  font-size: 16px;
  border: 1px solid #9D9D9E;
  border-radius: 5px;
  background-color: #FAFAFA;
  outline: none;
  -webkit-transition: border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: border-color 0.3s, box-shadow 0.3s;
  transition: border-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  box-sizing: border-box;
  min-height: 43px;
}
.input-common:focus,
.select-common:focus,
.textarea-common:focus {
  border-color: #007BFF;
  -webkit-box-shadow: 0 0 4px rgba(0, 123, 255, 0.6);
          box-shadow: 0 0 4px rgba(0, 123, 255, 0.6);
}
.input-common:disabled,
.select-common:disabled,
.textarea-common:disabled {
  background-color: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}
.input-common::-webkit-input-placeholder, .select-common::-webkit-input-placeholder, .textarea-common::-webkit-input-placeholder {
  color: #aaa;
}
.input-common::-moz-placeholder, .select-common::-moz-placeholder, .textarea-common::-moz-placeholder {
  color: #aaa;
}
.input-common:-ms-input-placeholder, .select-common:-ms-input-placeholder, .textarea-common:-ms-input-placeholder {
  color: #aaa;
}
.input-common::-ms-input-placeholder, .select-common::-ms-input-placeholder, .textarea-common::-ms-input-placeholder {
  color: #aaa;
}
.input-common::placeholder,
.select-common::placeholder,
.textarea-common::placeholder {
  color: #aaa;
}

.input-xs,
.select-xs,
.textarea-xs {
  width: 80px;
}

.input-sm,
.select-sm,
.textarea-sm {
  width: 100px;
}

.input-md,
.select-md,
.textarea-md {
  width: 180px;
}

.input-lmd,
.select-lmd,
.textarea-lmd {
  width: 220px;
}

.input-lg,
.select-lg,
.textarea-lg {
  width: 250px;
}

.input-llg,
.select-llg,
.textarea-llg {
  width: 350px;
}

.input-xl,
.select-xl,
.textarea-xl {
  width: 400px;
}

.input-xxl,
.select-xxl,
.textarea-xxl {
  width: 615px;
}

.input-full,
.select-full,
.textarea-full,
.select-auto {
  width: 100%;
}

.input-auto,
.select-auto,
.textarea-auto {
  width: auto;
}

.input-size-sm {
  width: 100%;
  max-width: 100px;
}

.input-size-md {
  width: 100%;
  max-width: 150px;
}

.input-size-lg {
  width: 100%;
  max-width: 450px;
}

.input-size-xl {
  width: 100%;
  max-width: 1000px;
}

.input-size-full {
  width: 100%;
}

input[type=datetime-local] {
  font-family: "Noto Sans JP", sans-serif;
}

.form-font-xs {
  font-size: 12px;
}

.form-font-sm {
  font-size: 12px;
}

.form-font-md {
  font-size: 14px;
}

.form-font-lmd {
  font-size: 16px;
}

.btn-wrap {
  width: 100%;
  margin-top: 40px;
}

.btn-reset {
  all: unset;
  display: inline-block;
  cursor: pointer;
}

.btn-common {
  font-size: 14px !important;
  padding: 0.8rem 1rem !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
}
.btn-common:hover {
  text-decoration: none;
}

.btn-send:disabled {
  background-color: #f5f5f5 !important;
  opacity: 0.5 !important;
  color: #999999 !important;
  cursor: not-allowed;
}

.is-btn-active {
  opacity: 1;
  pointer-events: auto;
}

.btn-xs {
  font-size: 14px !important;
  padding: 0.6rem 0.6rem !important;
}

.btn-sm {
  font-size: 16px !important;
  padding: 0.6rem 1rem !important;
  min-height: 43px;
}

.btn-md {
  font-size: 18px !important;
  padding: 0.8rem 1.2rem !important;
}

.btn-lg {
  font-size: 20px !important;
  padding: 1rem 1.2rem !important;
  width: 220px;
}

.btn-xl {
  font-size: 24px !important;
  padding: 1rem 1.5rem !important;
}

.btn-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn-ico {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
}

.ico-search {
  width: 19px;
  margin-right: 5px;
}

.btn-primary {
  background-color: #2D8FD5;
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  font-size: 16px;
  position: relative;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  line-height: 1;
  -webkit-transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.btn-primary:hover {
  background-color: #2373ad;
}
.btn-primary:disabled {
  background-color: #f5f5f5;
  opacity: 0.7;
  color: #999999;
  cursor: not-allowed;
}
.btn-primary.is-disabled {
  background-color: #CCCCCC;
  pointer-events: none;
}

.btn-secondary {
  background-color: #00CE8F;
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  font-size: 16px;
  position: relative;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  line-height: 1;
  -webkit-transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.btn-secondary:hover {
  background-color: #009b6c;
}
.btn-secondary:disabled {
  background-color: #f5f5f5;
  opacity: 0.7;
  color: #999999;
  cursor: not-allowed;
}

.btn-red {
  background-color: #F94B4B;
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  font-size: 16px;
  position: relative;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  line-height: 1;
  -webkit-transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.btn-red:hover {
  background-color: #f71a1a;
}
.btn-red:disabled {
  background-color: #f5f5f5;
  opacity: 0.7;
  color: #999999;
  cursor: not-allowed;
}

.btn-danger {
  background-color: #F94B4B;
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  font-size: 16px;
  position: relative;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  line-height: 1;
  -webkit-transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.btn-danger:hover {
  background-color: #f71a1a;
}
.btn-danger:disabled {
  background-color: #f5f5f5;
  opacity: 0.7;
  color: #999999;
  cursor: not-allowed;
}

.btn-black {
  background-color: #000000;
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  font-size: 16px;
  position: relative;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  line-height: 1;
  -webkit-transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.btn-black:hover {
  background-color: black;
}
.btn-black:disabled {
  background-color: #f5f5f5;
  opacity: 0.7;
  color: #999999;
  cursor: not-allowed;
}

.btn-clear {
  background-color: #E9E9E9;
  color: #000000;
  padding: 0.8rem 1.5rem;
  font-size: 16px;
  position: relative;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  line-height: 1;
  -webkit-transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.btn-clear:hover {
  background-color: #d0d0d0;
}
.btn-clear:disabled {
  background-color: #f5f5f5;
  opacity: 0.7;
  color: #999999;
  cursor: not-allowed;
}

.btn-neutral-300 {
  background-color: #888888;
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  font-size: 16px;
  position: relative;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  line-height: 1;
  -webkit-transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.btn-neutral-300:hover {
  background-color: #6f6f6f;
}
.btn-neutral-300:disabled {
  background-color: #f5f5f5;
  opacity: 0.7;
  color: #999999;
  cursor: not-allowed;
}

.btn-neutral-500 {
  background-color: #6C757E;
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  font-size: 16px;
  position: relative;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  line-height: 1;
  -webkit-transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.btn-neutral-500:hover {
  background-color: #545c63;
}
.btn-neutral-500:disabled {
  background-color: #f5f5f5;
  opacity: 0.7;
  color: #999999;
  cursor: not-allowed;
}

.checkbox-common {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #DBDBDB;
  border-radius: 50%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  border-radius: 2px;
}
.checkbox-common:checked {
  background-color: #007BFF;
  border-color: #007BFF;
}

.radio-group.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.radio-group.height-md {
  height: 45px;
}
.radio-group .radio-common {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #DBDBDB;
  border-radius: 50%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  border-radius: 50%;
  position: relative;
}
.radio-group .radio-common:checked {
  background-color: #007BFF;
  border-color: #007BFF;
}
.radio-group .radio-common::after {
  content: "";
  background-color: #ffffff;
  width: 6px;
  height: 6px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50rem;
}
.radio-group .radio-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.radio-group .radio-label .radio-inner-text {
  margin-left: 3px;
}

.error-message {
  font-size: 12px;
  color: red;
  display: none;
  margin-top: 5px;
}
.error-message.is-error-active {
  display: block;
}

.note-message {
  font-size: 12px;
  display: block;
  margin-top: 5px;
}

.form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.form-group .label-title {
  margin-right: 20px;
}
.form-group.row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form-group.row-top {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.form-group.row-bottom {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.form-group.row-center {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form-group label {
  position: relative;
}

.text-required {
  position: absolute;
  width: 45px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 3px;
  background-color: #F98115;
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  padding: 0;
  left: 0;
  bottom: -25px;
}

.text-public {
  position: absolute;
  width: 45px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 3px;
  background-color: #F9DB15;
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  padding: 0;
  left: 0;
  bottom: -25px;
}

.text-confirmed {
  color: #00CE8F;
}

.text-unconfirmed {
  color: red;
}

.confirm-status-text {
  margin-left: 20px;
}

#identity_verification {
  margin-right: 10px;
}