@charset "UTF-8";

form {
  font-size: 16px;
  font-weight: 500;
}

::placeholder {
  color: #9b9b9b;
}

input,
textarea,
select {
  color: inherit;
  font: inherit;
  outline: none;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="file"]::file-selector-button,
textarea,
select {
  border: 1px solid #ccc;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  background-color: #f2f2f2;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
  height: 50px;
  padding: 5px 15px;
}

textarea {
  padding: 20px 15px;
}

input[type="file"]::file-selector-button,
select {
  background-color: #fff;
}

input[type="file"] {
  width: 100%;
}

label:has(input[type="checkbox"]),
label:has(input[type="radio"]),
select {
  cursor: pointer;
}

.site-main {
  padding-top: var(--header-h);
}

.kv {
  --btm-rad: 20px;
  height: 223px;
  position: relative;
}

.kv::before {
  content: '';
  display: block;
  width: calc(100% - 93px);
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
}

.kv-1::before {
  right: 0;
  background-image: url("../img/kv01_sp.jpg");
  border-bottom-left-radius: var(--btm-rad);
}

.kv-2::before {
  left: 0;
  background-image: url("../img/kv02_sp.jpg");
  border-bottom-right-radius: var(--btm-rad);
}

@media screen and (min-width: 1024px) {
  .kv {
    --btm-rad: 40px;
    height: 520px;
  }

  .kv::before {
    max-width: 81.25%;
    width: calc(50% + 600px);
  }

  .kv-1::before {
    background-image: url("../img/kv01.jpg");
  }

  .kv-2::before {
    background-image: url("../img/kv02.jpg");
  }
}

.page--head {
  position: relative;
}

.page--title {
  display: grid;
  color: #015bbb;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 25px;
  right: 25px;
  translate: 0 -50%;
}

.page--title .en {
  font-size: 40px;
  letter-spacing: 0.05em;
}

.page--title .ja {
  font-size: 14px;
  letter-spacing: 0.1em;
}

.page--nav {
  margin-top: 52px;
}

.page--nav .nav--list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding: 1px;
  color: #015bbb;
  font-weight: bold;
  text-align: center;
  background-color: currentcolor;
}

.page--nav .nav--list .item {
  background-color: #fff;
}

.page--nav .nav--list a {
  display: block;
  padding: 14px 1px;
}

.page--nav .nav--list .is-current a {
  color: #fff;
  background: linear-gradient(90deg, #015bbb 0%, #439eff 100%);
}

@media screen and (min-width: 768px) {
  .page--nav .nav--list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .page--title {
    max-width: 1516px;
    margin-inline: auto;
  }

  .page--title .en {
    font-size: 80px;
  }

  .page--title .ja {
    font-size: 28px;
  }

  .page--nav {
    margin-top: 100px;
  }

  .page--nav .nav--list {
    font-size: 20px;
  }

  .page--nav .nav--list a {
    padding: 24px 10px;
  }
}

@media (any-hover: hover) {
  .page--nav .nav--list a {
    transition: opacity 0.3s ease;
  }

  .page--nav .nav--list a:hover {
    opacity: 0.7;
  }
}

.sec--title {
  display: grid;
  row-gap: 12px;
  margin-bottom: 45px;
  font-weight: bold;
  text-align: center;
}

.sec--title span {
  letter-spacing: 0.1em;
  line-height: 1.3;
}

.sec--title .ja {
  font-size: 24px;
}

.sec--title .en {
  color: #015bbb;
  font-size: 13px;
}

@media screen and (min-width: 1024px) {
  .sec--title {
    right: 18px;
    margin-bottom: 62px;
  }

  .sec--title .ja {
    font-size: 32px;
  }

  .sec--title .en {
    font-size: 15px;
  }
}

.sec-1 {
  margin-top: 60px;
  padding-top: 50px;
  padding-bottom: 73px;
  background-color: #dfefff;
}

.sec-1 .box {
  padding: 20px 19px;
}

.sec-1 .list-job {
  display: grid;
  row-gap: 19px;
}

.sec-1 .list-job .item {
  display: grid;
  gap: 19px;
}

.sec-1 .list-job dt {
  padding-bottom: 15px;
  color: #015bbb;
  font-weight: bold;
  border-bottom: 2px solid;
}

.sec-1 .list-job dt br {
  display: none;
}

.sec-1 .list-job dd {
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}

.sec-1 .list-job dd em {
  color: #015bbb;
  font-weight: bold;
}

.sec-1 .list-line li {
  padding-left: 20px;
  position: relative;
}

.sec-1 .list-line li::before {
  content: '';
  display: block;
  width: 15px;
  height: 2px;
  background-color: #015bbb;
  position: absolute;
  top: 1em;
  left: 0;
}

@media screen and (min-width: 1024px) {
  .sec-1 {
    margin-top: 100px;
    padding-top: 96px;
    padding-bottom: 94px;
  }

  .sec-1 .box {
    padding: 60px 60px 75px;
  }

  .sec-1 .list-job .item {
    grid-template-columns: 350fr 710fr;
  }

  .sec-1 .list-job dt,
  .sec-1 .list-job dd {
    padding-right: 10px;
    padding-bottom: 20px;
    font-size: 18px;
  }

  .sec-1 .list-job dt {
    display: grid;
    align-items: center;
    padding-left: 26px;
  }

  .sec-1 .list-job dt br {
    display: revert;
  }

  .sec-1 .list-job dd {
    padding-left: 22px;
    border-bottom: 2px solid #a1ceff;
  }
}

.sec-2 {
  margin-top: -111px;
  padding-top: 155px;
  padding-bottom: 93px;
  background-color: #f2f2f2;
}

.sec-2 .text-1 {
  font-size: 14px;
  font-weight: bold;
  line-height: 2;
}

.sec-2 .box {
  margin-top: 31px;
  padding: 20px 19px 40px;
}

.sec-2 .required::after {
  content: '必須';
  display: inline-block;
  margin-left: 20px;
  padding: 1px 14px;
  color: #119200;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  border: 1px solid;
  border-radius: 15px;
}

.sec-2 .form--list {
  display: grid;
  row-gap: 20px;
}

.sec-2 .form--list .item {
  display: grid;
  row-gap: 20px;
  min-width: 0;
}

.sec-2 .form--list dt {
  padding-bottom: 12px;
  font-weight: bold;
  border-bottom: 2px solid #ccc;
}

.sec-2 .form--list .item-3 dd {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sec-2 .form--list .item-3 .year,
.sec-2 .form--list .item-3 .date {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sec-2 .form--list .item-3 .year input {
  max-width: 119px;
}

.sec-2 .form--list .item-3 .date input {
  max-width: 63px;
}

.sec-2 .form--list .item-3 .date span:not(:last-child) {
  margin-right: 6px;
}

.sec-2 .form--list .item-4 dd {
  display: flex;
  gap: 37px;
}

.sec-2 .form--list .item-4 input[type="radio"] {
  margin-right: 12px;
}

.sec-2 .form--list .item-7 .zip {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sec-2 .form--list .item-7 .zip-1 {
  max-width: 72px;
}

.sec-2 .form--list .item-7 .zip-2 {
  max-width: 90px;
}

.sec-2 .form--list .item-7 .address-1 {
  margin-top: 30px;
}

.sec-2 .form--list .item-7 .address-2 {
  margin-top: 15px;
}

.sec-2 .form--list .item-9 .date,
.sec-2 .form--list .item-10 .date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.sec-2 .form--list .item-9 .date--block,
.sec-2 .form--list .item-10 .date--block {
  display: flex;
  align-items: center;
  gap: 9px;
}

.sec-2 .form--list .item-9 .date select,
.sec-2 .form--list .item-10 .date select {
  width: 77px;
}

.sec-2 .form--list .item-9 .date select.select--year,
.sec-2 .form--list .item-10 .date select.select--year {
  width: 92px;
}

.sec-2 .form--list .item-9 .undecided {
  margin-top: 27px;
}

.sec-2 .form--list .item-10 .date:not(:last-child) {
  margin-bottom: 18px;
}

.sec-2 .form--list .item-10 .date .label {
  width: 100%;
}

.sec-2 .form--list .item-11 input[type="file"]::file-selector-button {
  display: block;
  padding: 3px 15px 2px;
  border-radius: 5px;
}

.sec-2 .form--list .item-11 .note {
  margin-top: 21px;
  font-size: 15px;
  line-height: 2;
}

.sec-2 .form--list .item-12 textarea {
  height: 191px;
}

.sec-2 .form--list .item-14 textarea {
  height: 266px;
}

.sec-2 .form--privacy {
  margin-top: 55px;
}

.sec-2 .form--privacy .title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.sec-2 .form--privacy .text-2 {
  margin-top: 25px;
}

.sec-2 .form--privacy .policy {
  max-height: 410px;
  margin-top: 27px;
  padding: 20px;
  line-height: 2;
  border: 1px solid #ccc;
  overflow-y: auto;
}

.sec-2 .form--privacy .agree {
  margin-top: 30px;
  text-align: center;
}

.sec-2 .form--privacy .agree input {
  margin-right: 16px;
}

.sec-2 .form--submit {
  margin-top: 60px;
}

.sec-2 .form--submit button {
  display: block;
  width: 100%;
  max-width: 400px;
  height: 80px;
  margin-inline: auto;
  font-size: 20px;
  font-weight: bold;
  position: relative;
}

.sec-2 .form--submit .btn-submit .icon {
  display: block;
  aspect-ratio: 1;
  width: 23px;
  background-image: url("../img/form_submit.svg");
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 21px;
  translate: 0 -50%;
}

.sec-2.sec-2__casual {
  margin-top: 50px;
  padding-top: 50px;
  padding-bottom: 94px;
}

.section-front-text {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.8;
  margin-top: 80px;
}

@media screen and (min-width: 768px) {
  .sec-2 .form--list .item-11 input[type="file"]::file-selector-button {
    display: inline-block;
    margin-right: 10px;
  }
}

@media screen and (min-width: 1024px) {
  .sec-2 {
    margin-top: -116px;
    padding-top: 220px;
    padding-bottom: 100px;
  }

  .sec-2 .text-1 {
    font-size: 20px;
    line-height: 1.8;
    text-align: center;
  }

  .sec-2 .box {
    margin-top: 72px;
    padding: 60px 60px 100px;
  }

  .sec-2 .form--list {
    row-gap: 22px;
  }

  .sec-2 .form--list .item {
    grid-template-columns: 360fr 700fr;
    gap: 20px;
    padding-bottom: 22px;
    border-bottom: 1px dashed #ccc;
  }

  .sec-2 .form--list dt {
    align-self: center;
    padding-bottom: 0;
    border-bottom: none;
  }

  .sec-2 .form--list .item-9 .date,
  .sec-2 .form--list .item-10 .date {
    gap: 9px 33px;
  }

  .sec-2 .form--list .item-9 .date span:not([class]):not(:last-child),
  .sec-2 .form--list .item-10 .date span:not([class]):not(:last-child) {
    margin-right: 24px;
  }

  .sec-2 .form--list .item-10 .date .label {
    width: unset;
    margin-right: 7px;
  }

  .sec-2 .form--privacy {
    max-width: 990px;
    margin-inline: auto;
  }

  .sec-2 .form--privacy .title {
    font-size: 24px;
  }

  .sec-2 .form--privacy .text-2 {
    text-align: center;
  }

  .sec-2 .form--privacy .policy {
    padding: 33px 48px 33px 26px;
  }

  .sec-2.sec-2__casual {
    margin-top: 80px;
    padding-top: 96px;
    padding-bottom: 94px;
  }

  .section-front-text {
    text-align: center;
    font-size: 18px;
  }
}

@media (any-hover: hover) {
  .sec-2 .form--submit button {
    transition: all 0.3s ease-out;
  }

  .sec-2 .form--submit button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.2);
  }
}

.form_check .form_cover {
  width: 100%;
  border-collapse: collapse;
}

.form_check .form_cover tbody {
  display: grid;
  row-gap: 20px;
}

.form_check .form_cover tr {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.form_check .form_cover th {
  padding-bottom: 12px;
  font-weight: bold;
  border-bottom: 2px solid #ccc;
  text-align: left;
}

.form_check .form--submit {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.form_check .form--submit button {
  display: block;
  width: 100%;
  max-width: 300px;
  height: 70px;
  font-size: 18px;
  font-weight: bold;
  position: relative;
}

.form_check .form--submit .btn-back {
  background-color: #f2f2f2;
}

@media (any-hover: hover) {
  .form_check .form--submit button {
    transition: all 0.3s ease-out;
  }

  .form_check .form--submit button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.2);
  }
}

@media screen and (min-width: 1024px) {
  .form_check .form_cover tbody {
    row-gap: 22px;
  }

  .form_check .form_cover tr {
    grid-template-columns: 360fr 700fr;
    padding-bottom: 22px;
    border-bottom: 1px dashed #ccc;
  }

  .form_check .form_cover th {
    align-self: center;
    padding-bottom: 0;
    border-bottom: none;
  }
}