.page_title {
  display: none;
}

.application_login {
  width: 27.5rem;
  margin: 0 auto;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .application_login {
    width: 100%;
  }
}
.application_login h3 {
  font-size: 2.25rem;
  line-height: 3rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
@media only screen and (max-width: 1023px) {
  .application_login h3 {
    font-size: 1.625rem;
    line-height: 2.25rem;
    margin-bottom: 0.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .application_login h3 {
    font-size: 1.375rem;
    line-height: 2rem;
    margin-bottom: 0.25rem;
  }
}
.application_login span {
  display: block;
  margin-bottom: 2.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #767676;
}
@media only screen and (max-width: 1023px) {
  .application_login span {
    font-size: 0.875rem;
    line-height: 1.375rem;
    margin-bottom: 1.25rem;
  }
}
.application_login form p {
  text-align: left;
}
.application_login form p + p {
  margin-top: 1.25rem;
}
.application_login form p label, .application_login form p input {
  display: block;
  width: 100%;
}
.application_login form p label {
  font-size: 1.125rem;
  line-height: 1.625rem;
  margin-bottom: 0.25rem;
}
@media only screen and (max-width: 1023px) {
  .application_login form p label {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 0.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .application_login form p label {
    font-size: 0.875rem;
    line-height: 1.375rem;
  }
}
.application_login form p input {
  height: 3.5rem;
  border-radius: 0.25rem;
  border: 1px solid #E1E1E4;
}
@media only screen and (max-width: 1023px) {
  .application_login form p input {
    height: 2.875rem;
  }
}
.application_login form p input:focus {
  outline: none;
}
.application_login form p input#pa_password {
  -webkit-text-security: disc;
}
.application_login form button {
  margin-top: 2.5rem;
  padding: 0.9375rem 1.8125rem;
  border-radius: 0.25rem;
  background: #00AB4E;
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.625rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  z-index: 0;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 1023px) {
  .application_login form button {
    margin-top: 1.25rem;
    padding: 0.6875rem 2.125rem;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .application_login form button {
    margin-top: 1rem;
    padding: 0.6875rem 2.5rem;
    font-size: 0.875rem;
    line-height: 1.375rem;
  }
}
.application_login form button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: left;
  opacity: 1;
  background-color: #038F43;
  width: 0;
  height: 100%;
  border-radius: 0.25rem;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
.application_login form button:hover {
  color: #FFFFFF;
}
.application_login form button:hover::after {
  width: 100%;
}

.application_list {
  position: relative;
}
.application_list h3 {
  font-size: 2.25rem;
  line-height: 3rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .application_list h3 {
    font-size: 1.625rem;
    line-heihgt: 2.25rem;
    margin-bottom: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .application_list h3 {
    font-size: 1.375rem;
    line-heihgt: 2rem;
  }
}
.application_list .table {
  border-top: 3px solid #111111;
  border-bottom: 1px solid #111111;
}
.application_list .table li {
  display: grid;
  grid-template-columns: 50rem repeat(5, 6.25rem);
  gap: 1.25rem;
  height: 8.375rem;
  padding: 1.6875rem 0;
}
@media only screen and (max-width: 1023px) {
  .application_list .table li {
    grid-template-columns: 16rem repeat(5, 4rem);
    height: 5rem;
    padding: 0.9375rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .application_list .table li {
    display: grid;
    grid-template-columns: repeat(3, 3rem);
    grid-template-rows: repeat(3);
    height: auto;
    padding: 0.625rem 0.3125rem;
    grid-template-areas: "a a a a a a a a" "b b c c c c c c" "d d e e . . . ." "f f f f f f f f";
  }
  .application_list .table li .a {
    grid-area: a;
  }
  .application_list .table li .b {
    grid-area: b;
  }
  .application_list .table li .c {
    grid-area: c;
  }
  .application_list .table li .d {
    grid-area: d;
  }
  .application_list .table li .e {
    grid-area: e;
  }
  .application_list .table li .f {
    grid-area: f;
  }
}
.application_list .table li + li {
  border-top: 1px solid #E1E1E4;
}
.application_list .table li.table-title {
  height: 5rem;
  background: #F8F8FA;
  color: #505050;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.625rem;
}
.application_list .table li.table-title + li {
  border-top: 1px solid #999999;
}
@media only screen and (max-width: 1023px) {
  .application_list .table li.table-title {
    font-size: 0.875rem;
    line-height: 1.625rem;
  }
}
@media only screen and (max-width: 767px) {
  .application_list .table li.table-title {
    display: none;
  }
}
.application_list .table li div {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .application_list .table li div {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.application_list .table li div:not(.table .table-title > div) {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #767676;
}
@media only screen and (max-width: 1023px) {
  .application_list .table li div:not(.table .table-title > div) {
    font-size: 0.875rem;
    line-height: 1.375rem;
  }
}
@media only screen and (max-width: 767px) {
  .application_list .table li div:not(.table .table-title > div) {
    font-size: 0.75rem;
    line-height: 1.25rem;
    width: -moz-max-content;
    width: max-content;
  }
  .application_list .table li div:not(.table .table-title > div):not(:first-of-type)::before {
    content: attr(data-label);
    width: -moz-fit-content;
    width: fit-content;
    display: inline-block;
    margin-right: 0.125rem;
    padding-right: 0.125rem;
  }
  .application_list .table li div:not(.table .table-title > div):not(:first-of-type)::after {
    display: inline-block;
    content: "/";
    margin-inline: 0.5rem;
    width: 0.5rem;
    height: 1rem;
    color: #E1E1E4;
  }
}
.application_list .table li div:nth-of-type(1) {
  justify-content: flex-start;
}
.application_list .table li div:nth-of-type(1) a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  text-align: left;
}
.application_list .table li div:nth-of-type(1) a .img {
  width: 5.5rem;
  height: 5rem;
  background: #000;
  border-radius: 0.25rem;
  margin-right: 1.25rem;
}
@media only screen and (max-width: 1023px) {
  .application_list .table li div:nth-of-type(1) a .img {
    width: 3.4375rem;
    height: 3.125rem;
    margin-right: 0.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .application_list .table li div:nth-of-type(1) a .img {
    width: 3.1875rem;
    height: 2.875rem;
  }
}
.application_list .table li div:nth-of-type(1) a .img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.application_list .table li div:nth-of-type(1) a strong {
  display: block;
  width: calc(100% - 6.75rem);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.625rem;
  color: #111;
}
@media only screen and (max-width: 1023px) {
  .application_list .table li div:nth-of-type(1) a strong {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .application_list .table li div:nth-of-type(1) a strong {
    font-size: 0.875rem;
    line-height: 1.375rem;
    width: auto;
  }
}
.application_list .table li .status_0 > span {
  display: inline-block;
  border: 0.0625rem solid #98A4AE;
  border-radius: 0.25rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.125rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.375rem;
  font-weight: 500;
  color: #505050;
}
@media only screen and (max-width: 767px) {
  .application_list .table li .status_0 > span {
    font-size: 0.75rem;
    line-height: 1.375rem;
  }
}
.application_list .table li .status_1 > span {
  display: inline-block;
  border: 0.0625rem solid #98A4AE;
  border-radius: 0.25rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.125rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.375rem;
  font-weight: 500;
  color: #505050;
}
@media only screen and (max-width: 767px) {
  .application_list .table li .status_1 > span {
    font-size: 0.75rem;
    line-height: 1.375rem;
  }
}
.application_list .table li .status_2 > span {
  display: inline-block;
  border: 0.0625rem solid #98A4AE;
  border-radius: 0.25rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.125rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.375rem;
  font-weight: 500;
  color: #505050;
}
@media only screen and (max-width: 767px) {
  .application_list .table li .status_2 > span {
    font-size: 0.75rem;
    line-height: 1.375rem;
  }
}
.application_list .table li .status_3 > span {
  display: inline-block;
  border: 0.0625rem solid #98A4AE;
  border-radius: 0.25rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.125rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.375rem;
  font-weight: 500;
  color: #505050;
}
@media only screen and (max-width: 767px) {
  .application_list .table li .status_3 > span {
    font-size: 0.75rem;
    line-height: 1.375rem;
  }
}
.application_list .table li .status_1 > span {
  color: #1E7F4B;
  border: 0.0625rem solid #00AB4E;
}
.application_list .table li .status_2 > span {
  color: #DE0E0E;
  border: 0.0625rem solid #F23F5C;
}
.application_list .table li .status_3 > span {
  color: #1F499F;
  border: 0.0625rem solid #0E93C7;
}
.application_list .cookieout {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #00AB4E;
  color: #FFFFFF;
  padding: 0.625rem;
  border-radius: 0.3125rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .application_list .cookieout {
    font-size: 0.75rem;
    line-height: 1.25rem;
    padding: 0.5rem;
    top: 0.625rem;
  }
}

li:has(.disabled) {
  color: #999;
  text-decoration: none;
  background-color: #eee;
}