body{
  background-color: white;
}
.apply__page {
  display: block !important;
}

.apply__inner {
  max-width: 1000px;
}

.header__wrapper{
  border-bottom: 2px solid #eaeaea;
}

.apply__input {
  border: 2px solid rgb(228, 228, 228);
  padding: 8px 15px;
  border-radius: 5px;
  outline: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
}

.apply__input:active,
.apply__input:focus {
  border-color: var(--green) !important;
}

.apply__head {
  font-weight: normal;
  margin-bottom: 10px;
}

.apply__head--required::after {
  content: "必須";
  color: white;
  background-color: red;
  padding: 2px 4px;
  border-radius: 5px;
  font-size: 14px;
  margin-left: 8px;
}

.apply__head--optional::after {
  content: "任意";
  color: white;
  background-color: gray;
  padding: 2px 4px;
  border-radius: 5px;
  font-size: 14px;
  margin-left: 8px;
}

.sub__text {
  color: gray;
  font-size: 14px;
}

.apply__sub {
  text-align: left;
  font-weight: normal;
}

.apply__check {
  display: flex;
  align-items: center;
  margin-top: 0;
}

.apply__check a {
  color: var(--green);
}

input[type="checkbox"] {
  width: 1.5em;
  height: 1.5em;
  color: #fff;
  accent-color: var(--green);
}

table tr th {
  padding: 15px;
}

table tr td {
  background-color: #f8f7f5;
  text-align: center;
  padding: 15px;
}

.line-btn {
  background-color: #00b900;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  color: white;
  padding: 8px;
  border-radius: 10px;
  width: fit-content;
  column-gap: 10px ;
}

@media screen and (max-width: 450px) {
  .x-sm {
    flex-direction: column;
    align-items: start;
  }

  .x-sm div:first-of-type {
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 695px) {
  .apply__inner--title {
    flex-direction: column;
    row-gap: 10px;
  }

  .line-btn {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .sm {
    flex-direction: column;
  }
  .header--top {
    position: relative;
    width: inherit;
  }
}
