.r-header {
  position: absolute;
  top: 20px;
  left: 28px;
}

.r-header a {
  display: block;
  transition: opacity 0.3s ease;
}

.r-header a:hover {
  opacity: 0.6;
}

.r-header__logo {
  aspect-ratio: 61 / 120;
  width: 61px;
}

@media(max-width: 700px) {
  .r-header__logo {
    width: 40px;
  }
}

.r-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.r-fv {
  background-image: url(../img/recruit/recruit_fv.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 435px;
  width: 100%;
  display: grid;
  place-items: center;
}

@media(max-width: 700px) {
  .r-fv {
    height: 300px;
    background-position: 70% center;
  }
}

.r-fv__title {
  display: grid;
  place-items: center;
  margin-top: 33px;
}

.r-fv__title-ja {
  font-size: 30px;
  color: #fff;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.r-fv__title-en {
  font-size: 15px;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: 500;
  margin-top: 17px;
}

.section-title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 2px;
  background-color: #a08650;
}

.r-content__inner {
  max-width: 1240px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
}

.r-content__inner--entry {
  max-width: 1160px;
}

/*=======================================================
/# recruit
/=======================================================*/
.r-content {
  padding-top: 104px;
  padding-bottom: 198px;
  background-color: #000;
}

@media(max-width: 700px) {
  .r-content {
    padding-top: 70px;
    padding-bottom: 100px;
  }
}

.r-content__container {
  margin-top: 102px;
}

@media(max-width: 700px) {
  .r-content__container {
    margin-top: 70px;
  }
}

.r-content__heading {
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #fff;
}

.r-content__message-text {
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 2;
  color: #fff;
  text-align: center;
  margin-top: 72px;
}

@media(max-width: 700px) {
  .r-content__message-text {
    margin-top: 50px;
  }
}

.r-content__wrap {
  margin-top: 28px;
}

.r-content__items {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  padding-bottom: 26px;
}

.r-content__items:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}


.r-content__item {
  display: flex;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #fff;
}

.r-content__item dt {
  width: 176px;
  flex-shrink: 0;
  line-height: 2;
}

@media(max-width: 700px) {
  .r-content__item dt {
    width: 100px;
  }
}

.r-content__item dd {
  line-height: 2;
}

.r-content__button {
  margin-top: 52px;
}

/*=======================================================
/# button
/=======================================================*/
.r-button {
  display: block;
  padding: 16px 20px;
  background-color: #fff;
  width: 238px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  font-size: 19px;
  letter-spacing: 0.02em;
  color: #000;
  font-weight: 600;
  transition: opacity 0.3s ease;
  position: relative;
}

.r-button:hover {
  opacity: 0.6;
}

.r-content__button .r-button::after,
.confirm-button::after,
.form__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 7px;
  height: 11px;
  background-image: url(../img/recruit/button_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

/*=======================================================
/# confirm
/=======================================================*/
.r-content__confirm-text {
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 2;
  color: #fff;
  text-align: center;
  margin-top: 42px;
}

.r-content__form {
  margin-top: 113px;
}

@media(max-width: 700px) {
  .r-content__form {
    margin-top: 70px;
  }
}

.r-content__confirm {
  margin-top: 143px;
  text-align: center;
}

@media(max-width: 700px) {
  .r-content__confirm {
    margin-top: 70px;
  }
}

.confirm-table{
  width: 100%;
  border-collapse: collapse;
}


.confirm-table tr {
  display: flex;
  align-items: center;
  background-color: #fff;
  width: 100%;
  border-bottom: 1px solid #D9D9D9;
}

@media(max-width: 700px) {
  .confirm-table tr {
    flex-direction: column;
  }
}

.confirm-table tr:last-child {
  border-bottom: none;
}

.confirm-table tr th {
  width: 169px;
  flex-shrink: 0;
  border-right: 1px solid #D9D9D9;
  padding: 29px;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #000;
  font-weight: 500;
  text-align: left;
  display: block;
}

@media(max-width: 700px) {
  .confirm-table tr th {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #D9D9D9;
    padding: 10px 16px;
  }
}

.confirm-table tr td {
  display: block;
  width: 100%;
  padding: 29px 49px;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: #000;
  font-weight: 500;
  font-feature-settings: "palt" 1;
  text-align: left;
}

@media(max-width: 700px) {
  .confirm-table tr td {
    padding: 20px 16px;
  }
}

.confirm__buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 52px;
}

@media(max-width: 700px) {
  .confirm__buttons {
    display: block;
    text-align: center;
  }
}

.confirm-button {
  display: inline-block;
  position: relative;
}

@media(max-width: 700px) {
  .confirm-button+.confirm-button {
    margin-top: 20px;
  }
}

.confirm-button--back::after {
  transform: translateY(-50%) scaleX(-1);
  right: auto;
  left: 20px;
}
.r-content__confirm-error{
  text-align: center;
}

.r-content__error-text {
  margin-top: 25px;
}

.error_messe {
  text-align: center;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 2;
  margin-top: 10px;
}

/*=======================================================
/# complete
/=======================================================*/
.r-content__complete-heading {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  margin-top: 83px;
}

.r-content__complete-heading .sp {
  display: none;
}

@media(max-width: 700px) {
  .r-content__complete-heading {
    margin-top: 70px;
  }

  .r-content__complete-heading .sp {
    display: block;
  }
}


.r-content__complete-text {
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 2;
  color: #fff;
  text-align: center;
  margin-top: 42px;
}

@media(max-width: 700px) {
  .r-content__complete-text {
    margin-top: 30px;
  }
}

/*=======================================================
/# form 
/=======================================================*/
.form {
  text-align: center;
}

.form__item {
  display: flex;
  text-align: left;
}

@media(max-width: 700px) {
  .form__item {
    flex-direction: column;
  }
}

.form__item+.form__item {
  margin-top: 35px;
}

@media(max-width: 700px) {
  .form__item+.form__item {
    margin-top: 20px;
  }
}

.form__item label {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.form__item label .required {
  margin-left: 10px;
}

.form__item dt {
  width: 169px;
  flex-shrink: 0;
}


.form__item dd {
  width: 100%;
}

@media(max-width: 700px) {
  .form__item dd {
    margin-top: 20px;
  }
}

form input[type=text],
form input[type=email],
form input[type=tel],
form input[type=number],
form select {
  background-color: #fff;
  color: #000;
  font-size: 15px;
  min-height: 73px;
  padding: 20px 32px;
  width: 100%;
  font-feature-settings: "palt" 1;
}

@media(max-width: 700px) {

  form input[type=text],
  form input[type=email],
  form input[type=tel],
  form input[type=number],
  form select {
    min-height: 50px;
    padding: 10px 16px;
  }
}

form input::placeholder,
form select::placeholder {
  color: #323232;
  font-size: 15px;
  font-weight: 500;
}

form input+input {
  margin-top: 16px;
}


.form__button {
  margin-top: 53px;
  display: inline-block;
  position: relative;
}

