.p-job__nav {
  width: 100%;
}
.p-job__nav-list {
  grid-gap: 20px;
  display: -ms-grid;
  display: grid;
  gap: 20px;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
.p-job__nav-link {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #e8f0f5;
  border-radius: 27px;
  color: #000000;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.6rem;
  text-decoration: none;
  min-height: 54px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.875;
  width: 100%;
  padding: 10px 15px;
  cursor: pointer;
}
.p-job__nav-link:hover,
.p-job__nav-link.active {
  background: #223a70;
  color: #FFF;
}
.p-job__nav-link:not(.active):hover {
  opacity: .7;
}
.p-job__list-box {
  margin-top: 30px;
  display: none;
}
.p-job__list-box.active {
  display: block;
}
.p-job__list-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 20px;
}
.p-job__list:last-child .p-job__list-item-ttl,
.p-job__list:last-child .p-job__list-item-content {
  border-bottom: 1px solid #cccccc;
}
.p-job__list-item-ttl {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #cccccc;
  color: #223a70;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.875;
  padding-block: 25px;
  width: 260px;
}
.p-job__list-item-content {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-top: 1px solid #cccccc;
  color: #1a1a1a;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1.6rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.875;
  padding-block: 20px;
}
.p-job__btnarea {
  margin: 60px auto 0;
}
.p-job__btnarea .gNavR__btn {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-job__nav {
    margin-top: 40px;
  }
  .p-job__nav-list {
    gap: 10px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .p-job__list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0 20px;
  }
  .p-job__list-item-ttl {
    padding-block: 15px 5px;
    padding-bottom: 10px;
    width: 100%;
  }
  .p-job__list-item-content {
    border-top: none;
    padding-bottom: 20px;
    padding-top: 0;
  }
  .p-job__list:last-child .p-job__list-item-content {
    border-bottom: none;
  }
  .p-job__btnarea {
    margin: 40px auto 0;
  }
}


.p-entry input:hover,
.p-entry input:focus,
.p-entry select:hover,
.p-entry select:focus {
  border: 2px solid #223a70;
  outline: none; /* デフォルトのアウトラインを消す */
}

.p-entry input,
.p-entry select {
  border: 2px solid #ccc;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}

.p-entry input:hover,
.p-entry select:hover {
  border-color: #223a70;
}

.p-entry__txt {
  font-size: 1.6rem;
  line-height: 1.3125;
}

.p-entry__box {
  border-bottom: 1px solid #cccccc;
  border-top: 1px solid #cccccc;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 60px;
}

.p-entry__list {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding-block: 20px;
}
.p-entry__list-ttl {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 260px;
}
.p-entry__list-ttl label,
.p-entry__list-ttl p {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.875;
}
.p-entry__list-ttl span {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #223a70;
  border-radius: 3px;
  color: #FFF;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.2rem;
  font-weight: 700;
  height: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 2.5;
  padding: 5px;
}

.p-entry__list-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-entry__list-body .select-wrapper {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  position: relative;
  width: 100%;
  width: 100%;
}
.p-entry__list-body .select-wrapper::after {
  color: black;
  content: "▼";
  font-size: 12px;
  pointer-events: none;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(calc(-50% + 1px));
          transform: translateY(calc(-50% + 1px));
}
.p-entry__list-body .select-wrapper.select-wrapper-birth::after {
  content: "";
}
.p-entry__list-body .select-wrapper select,
.p-entry__list-body .select-wrapper input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #FFF;
  border: 1px solid #cccccc;
  border-radius: 10px;
  color: black;
  font-size: 1.6rem;
  height: 54px;
  padding-inline: 10px 30px;
  width: 100%;
}
.p-entry__list-body .select-wrapper select:invalid,
.p-entry__list-body .select-wrapper input:invalid {
  color: #999;
}
.p-entry__list-body .select-wrapper select option[disabled],
.p-entry__list-body .select-wrapper input option[disabled] {
  display: none;
}
.p-entry__list-body .form-err {
  margin-top: 10px;
  color: #f00;
}
.p-entry__list + .p-entry__list {
  border-top: 1px solid #cccccc;
}

.input-wrapper input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #FFF;
  border: 1px solid #cccccc;
  border-radius: 10px;
  color: black;
  font-size: 1.6rem;
  height: 54px;
  padding-inline: 20px;
  width: 100%;
}
.input-wrapper input:invalid {
  color: #999;
}
.input-wrapper input option[disabled] {
  display: none;
}

.select-wrapper-birth-item {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  text-indent: -.5em;
  width: 120px !important;
}
.select-wrapper-birth-item::after {
  color: black;
  content: "▼";
  font-size: 12px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.select-wrapper-birth-item-txt {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.875;
  padding-left: 10px;
  padding-right: 20px;
}

.p-entry__file {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.p-entry__file button {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #e6e6e6;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 54px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 200px;
}

.p-entry .file-itm {
}
.p-entry .file-itm label .file-bt {
  width: 200px;
  height: 54px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  border-radius: 10px;
  background: #e6e6e6;
}
@media only screen and (max-width: 768px) {
  .p-entry .file-itm label .file-bt {
    width: 100%;
    margin-top: 10px;
  }
}
.p-entry .file-itm label .file {
  display: none;
}
.p-entry .file-itm label .filename {
  border: none;
  padding: 0 0 0 25px;
  background: none;
  font-size: 1.6rem;
  font-weight: 300;
  width: calc(100% - 230px);
  cursor: default;
}
@media only screen and (max-width: 768px) {
  .p-entry .file-itm label .filename {
    width: calc(100% - 30px);
    padding: 10px 0 0;
  }
}
.p-entry .file-itm label .filename::-webkit-input-placeholder {
  color: #282828;
  font-size: 1.6rem;
  font-weight: 300;
}
.p-entry .file-itm label .filename::-moz-placeholder {
  color: #282828;
  font-size: 1.6rem;
  font-weight: 300;
}
.p-entry .file-itm label .filename:-ms-input-placeholder {
  color: #282828;
  font-size: 1.6rem;
  font-weight: 300;
}
.p-entry .file-itm label .filename::-ms-input-placeholder {
  color: #282828;
  font-size: 1.6rem;
  font-weight: 300;
}
.p-entry .file-itm label .filename::placeholder {
  color: #282828;
  font-size: 1.6rem;
  font-weight: 300;
}
.p-entry .del-label {
  font-size: 2rem;
  vertical-align: middle;
}
.p-entry .del-label input[type=checkbox], .p-entry .del-label input[type=radio] {
  background-color: transparent;
  border-style: none;
  color: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .p-entry .del-label {
    margin-top: 10px;
    display: inline-block;
  }
}

.p-entry__caution {
  line-height: 1.875;
  margin-inline: auto;
  margin-top: 60px;
  text-align: center;
}
.p-entry__caution a {
  color: inherit;
  text-decoration: underline;
}
.p-entry__caution a:hover {
  text-decoration: none;
}

.entryForm__recaptcha {
  width: 100%;
  text-align: center;
  margin-top: 30px;
}
.entryForm__recaptcha .g-recaptcha {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.entryForm__recaptcha .form-err-recaptcha {
  margin-top: 10px;
  color: #f00;
  text-align: center;
}

.p-entry__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}

button.entry {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #223a70;
  border-radius: 28px;
  color: #FFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  font-weight: 700;
  height: 55px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
  width: 400px;
}

button.entry:hover {
  background-color: #fff;
  color: #223a70;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

button.entry:hover .rMoreBtn__icon02 {
  background: url(../img/recruit/icon_arrow_right_02.svg) no-repeat center center/cover;
}

a.back,
button.back {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #FFF;
  border: 1px solid #223a70;
  border-radius: 28px;
  color: #223a70;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  height: 55px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
  width: 300px;
}

a.back:hover,
button.back:hover {
  background-color: #223a70;
  color: #fff;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

button.back:hover .rMoreBtn__icon01 {
  background: url(../img/recruit/icon_arrow_right_01.svg) no-repeat center center/cover;
}

button.forward {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #223a70;
  border-radius: 28px;
  color: #FFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  font-weight: 700;
  height: 55px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
  width: 300px;
}

button.forward:hover {
  background-color: #fff;
  color: #223a70;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

button.forward:hover .rMoreBtn__icon02 {
  background-image: url(../img/recruit/icon_arrow_right_02.svg);
}

.rMoreBtn__icon01 {
  background: url(../img/recruit/icon_arrow_right_02.svg) no-repeat center center/cover;
  display: block;
  height: 5px;
  left: 20px;
  opacity: 1;
  position: absolute;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 15px;
}

.rMoreBtn__icon02 {
  background: url(../img/recruit/icon_arrow_right_01.svg) no-repeat center center/cover;
  display: block;
  height: 5px;
  position: absolute;
  right: 20px;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 15px;
}

.rMoreBtn__icon02:hover {
  background-image: url(../img/recruit/icon_arrow_right_02.svg);
}

.p-entry__btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-inline: auto;
  margin-top: 60px;
  width: 620px;
}

.rMoreBtn__icon {
  background: url(../img/recruit/icon_arrow_right_01.svg) no-repeat center center/cover;
  display: block;
  height: 5px;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 15px;
}


.p-entry__btn-wrap02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-entry__btn-wrap02 button {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #223a70;
  border-radius: 28px;
  color: #FFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  font-weight: 700;
  height: 55px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 25rem;
}

@media screen and (max-width: 768px) {
  .p-entry__txt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    line-height: 1.875;
  }

  .p-entry__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
  }

  .p-entry__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .p-entry__list-ttl {
    margin-bottom: 10px;
    width: 100%;
    gap: 10px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .p-entry__list-body {
    width: 100%;
  }

  .p-entry__file {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }

  .p-entry__file button {
    margin-top: 10px;
    width: 100%;
  }

  .p-entry__file p {
    margin-right: auto;
    text-align: left;
  }

  .p-entry__caution {
    margin-top: 30px;
    text-align: left;
  }

  .entryForm__recaptcha {
    margin-top: 25px;
  }

  button.entry {
    width: 100%;
  }

  a.back,
  button.back {
    width: 100%;
  }

  button.forward {
    width: 100%;
  }

  .p-entry__btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 10px;
    margin-top: 30px;
    width: 100%;
  }

  .p-entry__btn-wrap02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.p-thx__body {
  background: #FFF;
  font-size: 1.6rem;
  line-height: 1.875;
  margin-top: 30px;
  padding: 30px;
}
.p-thx__txt {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.6666666667;
}
.p-thx__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}
.p-thx__btn a,
.p-thx__btn button {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #223a70;
  border-radius: 99px;
  color: #FFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  height: 55px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
  width: 300px;
}
.p-thx__btn a:hover,
.p-thx__btn button:hover {
  background-color: #fff;
  color: #223a70;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.p-thx__btn a:hover .rMoreBtn__icon02,
.p-thx__btn button:hover .rMoreBtn__icon02 {
  background: url(../img/recruit/icon_arrow_right_02.svg) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .p-thx__txt {
    font-size: 1.6rem;
  }
  .p-thx__btn button {
    width: 100%;
  }
}
