@charset "UTF-8";

/* ==== root ========================== */
:root {
  --color-black: #333;
  --color-black2: #231815;
  --color-white: #fff;
  --color-primary: #66d4a2;

  --color-grad: linear-gradient(90deg, rgba(93, 223, 145, 1) 33%, rgba(123, 217, 208, 1) 100%);

  --noto-sans: "Noto Sans JP", serif;

  --zen-min: "Zen Old Mincho", serif;
  --zen-kaku: "Zen Kaku Gothic New", sans-serif;
}


/*================================================
 * 
================================================*/
.formList * {
  font-family: var(--zen-kaku);
}

.formList dl {
  display: flex;
  align-items: stretch;
  justify-content: start;
  flex-wrap: wrap;
}


.formList dt {
  width: 21rem;
  padding: 4rem 0;
  border-bottom: 1px solid #cccccc;
}

/* .f-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
} */

.f-hd p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
}

.formList dt.as {
  align-items: start;
}

.f-hd span {
  display: block;
  background: #e0657a;
  font-size: 1.7rem;
  color: var(--color-white);
  font-weight: 400;
  padding: 0.5rem 0.5rem;
  line-height: 1;
}

.formList dd {
  width: calc(100% - 21rem);
  font-size: 1.9rem;
  padding: 4rem 0 4rem 7rem;
  border-bottom: 1px solid #cccccc;
}

.formList dt:last-of-type,
.formList dd:last-of-type {
  border-bottom: none;
}

.formList dd select,
.formList dd input,
.formList dd textarea {
  display: block;
  width: 60rem;
  border: 1px solid #cccccc;
  height: 5rem;
  padding: 0 1rem;
  border-radius: 0.3rem;
  font-family: var(--zen-kaku);
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.5;
}

.formList dd textarea {
  font-size: 1em;
  font-family: var(--zen-kaku);
  font-weight: 400;
  padding: 1rem;
}

.formList dd .select {
  position: relative;
  width: fit-content;
}

.formList dd .mt {
  margin-top: 1rem;
}

.formList dd .calendar {
  position: relative;
  width: fit-content;
}

.formList dd .calendar input {
  padding-left: 3.5rem;
}

.formList dd .calendar::before,
.formList dd .select::before,
.formList dd .select::after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;

  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
}

.formList dd .select select {
  padding-left: 3.5rem;
}

.formList dd .select::before {
  background-image: url(../../images/form/arrow_down.webp);
  width: 1rem;
  height: 0.5rem;
  right: 2rem;
}

.formList dd .select::after {
  background-image: url(../../images/form/icon_clock.webp);
  width: 1.5rem;
  height: 1.5rem;
  left: 1rem;
}


.formList dd .calendar::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;

  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../../images/form/icon_calendar.webp);
  width: 1.5rem;
  height: 1.5rem;
  left: 1rem;
}

#entry .formList dd .select::after {
  content: none;
}

#entry .formList dd .select select {
  padding-left: 1rem;
}



.formList dd textarea {
  height: 23rem;
}

.formList dd ::placeholder {
  color: #b3b3b3;
}

.formList dd small {
  display: inline-block;
  color: #666666;
  font-size: 1.5rem;
  font-weight: 400;
}

.formList label {
  cursor: pointer;
}

.ans {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
}

.formList input[type="radio"],
.formList input[type="checkbox"] {
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
}

.mwform-checkbox-field,
.mwform-radio-field {
  margin-left: 0 !important;
  margin-right: 3.2rem;
}


.formList .wpcf7-list-item-label {
  padding-left: 2rem;
  position: relative;
}

.formList .wpcf7-list-item-label {
  position: relative;
}

.formList .mwform-checkbox-field-text {
  background: #F5F5F5;
  border-radius: 0.6rem;
  padding: 2rem 1.3rem 2rem 5.2rem;
  display: inline-block;
}



.formList .wpcf7-list-item-label::before,
.formList .wpcf7-list-item-label::after {
  position: absolute;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  left: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  background: #dcdddd;
  border: 1px solid #dcdddd;
  border-radius: 0.2rem;
}

.formList .wpcf7-list-item-label::before,
.formList .wpcf7-list-item-label::after {
  border-radius: 1000px;
  left: 0;
}

.formList .mwform-checkbox-field-text::after,
.formList .wpcf7-list-item-label::after {
  background: #2ea7e0;
  width: 1.3rem;
  height: 1.3rem;
  left: 1.2rem;
  opacity: 0;
}

.formList .wpcf7-list-item-label::after {
  left: 0.1rem;
}

.formList .wpcf7-list-item {
  margin-left: 0;
  margin-right: 2rem;
}

.formList .wpcf7-list-item:has(input[type="radio"]:checked) .wpcf7-list-item-label::after {
  opacity: 1;
}

.tenpu {
  margin-top: 7rem;
}

.tenpu ul {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 3rem;
}

.tenpu li {
  /* width: 17rem; */
}

.tenpu li input {
  font-size: 1.2rem;
}

.tenpu .f-hd {
  justify-content: start;
  gap: 1rem;
}

.policy {
  padding: 5rem 10rem;
  background: rgb(102 212 162 / 10%);
  width: 90rem;
  margin: 10rem auto;
  font-size: 1.7rem;
  font-weight: 400;
}

.policy a {
  color: #29abe2;
}

.formList .policy input[type="checkbox"] {
  width: 2rem;
  height: 2rem;
  position: relative;
}

.policyCheck {
  margin-top: 2rem;
}

.formList .policy label {
  width: fit-content;
  display: block;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30rem;
  position: relative;
  border-radius: 100rem;
  font-size: 2.5rem;
  padding: 1.2rem 0;
  margin: 0 auto;
  background: var(--color-grad);
  font-family: var(--zen-min);
  color: var(--color-white);
  text-align: center;
}


.policyCheck .wpcf7-list-item-label {
  padding: 0;
  background: transparent;
}

.policyCheck .wpcf7-list-item-label::before,
.policyCheck .wpcf7-list-item-label::after {
  content: none;
}

.policyCheck {
  margin: 2rem auto 0;
  width: fit-content;
}

.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 1.6rem !important;
  font-weight: normal;
  display: block;
}



@media screen and (max-width:767px) {

  .formList dl {
    display: flex;
    align-items: stretch;
    justify-content: start;
    flex-wrap: wrap;
  }

  .formList dt {
    width: 100%;
    padding: 2rem 0 1rem;
    border-bottom: 1px solid #cccccc;
  }

  .formList dt:last-of-type {
    border-bottom: 1px solid #cccccc;
  }

  .f-hd span {
    font-size: 1.3rem;
  }

  .formList dd {
    width: 100%;
    font-size: 1.7rem;
    padding: 2rem 0 1rem;
    border-bottom: none;
  }

  .f-hd p {
    justify-content: start;
    gap: 1rem;
  }

  .formList dd .calendar,
  .formList dd .select {
    width: calc(100% - 5rem);
    margin-left: auto;
    margin-right: auto;
  }

  .formList dd select,
  .formList dd input,
  .formList dd textarea {
    width: calc(100% - 5rem);
    margin: 0 auto;
  }

  .formList dd .calendar input,
  .formList dd .select select {
    width: 100%;
  }

  .formList dd small {
    font-size: 1.4rem;
    margin-left: 2.5rem;
  }


  .tenpu {
    margin-top: 3rem;
  }

  .tenpu ul {
    flex-wrap: wrap;
  }

  .tenpu li {
    width: calc(50% - 3rem);
  }

  .tenpu li input {
    font-size: 1rem;
    margin-top: 1rem;
  }



  .policy {
    padding: 3rem 2rem;
    width: 100%;
    margin: 4rem auto;
    font-size: 1.5rem;
    font-weight: 400;
  }

  .policy b {
    font-size: 1.7rem;
  }

  .formList .policy input[type="checkbox"] {
    width: 1.5rem;
    height: 1.5rem;
  }

  .policyCheck {
    margin-top: 2rem;
  }


  .submit {
    width: 35rem;

    font-size: 2.5rem;
  }

  .mwform-checkbox-field,
  .mwform-radio-field {
    margin-right: 2rem;
  }

}

/* インターンフォームのみ */
.entry-intern .f-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 500;
}

/* 縦並びのラジオ・チェックボックス */
.entry-intern .ans-vertical {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.entry-intern .ans-vertical .wpcf7-list-item {
  display: block;
  margin-right: 0;
}

/* チェックボックス選択時 */
.entry-intern
  .wpcf7-list-item:has(input[type="checkbox"]:checked)
  .wpcf7-list-item-label::after {
  opacity: 1;
}

/* 日程の見出し */
.entry-intern .form-section-title {
  width: 100%;
  padding-bottom: 1rem;
  border-bottom: none;
}

.entry-intern .form-section-note {
  width: 100%;
  padding: 0 0 3rem;
}

.entry-intern .form-section-note p {
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .entry-intern .f-hd {
    justify-content: flex-start;
    gap: 1rem;
  }

  .entry-intern .ans-vertical {
    width: calc(100% - 5rem);
    margin: 0 auto;
  }

  .entry-intern .form-section-title,
  .entry-intern .form-section-note {
    width: 100%;
  }

  .entry-intern .form-section-note {
    padding: 0 2.5rem 2rem;
  }
}


/*================================================
 * 
================================================*/


@media screen and (max-width:767px) {}

/*================================================
 * 
================================================*/


@media screen and (max-width:767px) {}

/*================================================
 * 
================================================*/


@media screen and (max-width:767px) {}


/*================================================
 * 
================================================*/


@media screen and (max-width:767px) {}

/*================================================
 * 
================================================*/


@media screen and (max-width:767px) {}


/*================================================
 * 
================================================*/


@media screen and (max-width:767px) {}


/*================================================
 * 
================================================*/


@media screen and (max-width:767px) {}