@charset "UTF-8";
/* -----------------------------------------------
  Variables
--------------------------------------------------*/
/* ---------- Font --------- */
/* -----------------------------------------------
  Mixins
--------------------------------------------------*/
/* ---------- Media Query --------- */
/* ---------- Font --------- */
@media screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    text-decoration: underline;
  }
}

/* -----------------------------------------------
    header
--------------------------------------------------*/
header.trial-header {
  background-color: #F4F4F4;
  padding: 14px 0;
}
header.trial-header h1 .trial-header__logo {
  width: 150px;
  margin-right: 0;
}
header.trial-header h1 .trial-header__logo img {
  height: auto;
}
header.trial-header .trial-header__copy {
  font-size: 0.6875rem;
  width: 100%;
  text-align: center;
}

/* -----------------------------------------------
    main
--------------------------------------------------*/
.trial-main {
  background-color: #F4F4F4;
}
.trial-main .inner {
  background-color: #fff;
  border-radius: 10px;
  width: 90%;
}
@media screen and (max-width: 768px) {
  .trial-main .inner {
    padding: 20px;
  }
}
.trial-main input::-moz-placeholder {
  color: #ccc;
}
.trial-main input::placeholder {
  color: #ccc;
}

.trial-title {
  text-align: center;
  max-width: 90%;
  margin: auto;
}

.trial-title-heading2 {
  display: flex;
  justify-content: center;
  font-size: 2.25rem;
}
@media screen and (max-width: 768px) {
  .trial-title-heading2 {
    font-size: 1.625rem;
    display: block;
  }
}
.trial-title-heading2 span {
  display: inline-block;
  padding: 2px 10px;
}
@media screen and (max-width: 768px) {
  .trial-title-heading2 span {
    display: block;
  }
}

.trial-title-heading2__01 {
  background-color: #05025C;
  color: #fff;
}

.trial-title-heading2__02 {
  background-color: #fff;
  color: #05025C;
}

.trial-title-copy {
  font-size: 1.375rem;
  text-align: center;
  font-weight: bold;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .trial-title-copy {
    font-size: 1.125rem;
  }
}
.trial-title-copy ._large {
  font-size: 1.875rem;
}
@media screen and (max-width: 768px) {
  .trial-title-copy ._large {
    font-size: 1.625rem;
  }
}
.trial-title-copy ._x-large {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .trial-title-copy ._x-large {
    font-size: 1.75rem;
  }
}

.trial-title-copy__border {
  display: inline-block;
}
.trial-title-copy__border::after {
  display: block;
  content: "";
  width: 100%;
  height: 5px;
  background-color: #FBDC00;
}

.trial-title-text {
  margin-top: 20px;
}

.trial-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 25px auto 40px;
}
.trial-flow::before {
  display: block;
  content: "";
  height: 2px;
  background-color: #BFBFBF;
  position: absolute;
  z-index: 1;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.trial-flow__item {
  width: 96px;
  margin: 0 10px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .trial-flow__item {
    width: 86px;
    margin: 0;
  }
}
.trial-flow__item .img-wrap {
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.trial-flow__item .img-wrap img {
  width: 27px;
  height: 27px;
}
.trial-flow__item p {
  color: #05025C;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .trial-flow__item p {
    font-size: 0.875rem;
  }
}

/* -----------------------------------------------
    form
--------------------------------------------------*/
.trial-form {
  display: flex;
}

.trial-form__inner {
  width: 100%;
  padding: 30px;
  height: 0;
}
@media screen and (max-width: 768px) {
  .trial-form__inner {
    padding: 0;
  }
}
.trial-form__inner.current {
  height: auto;
}

.trial-form__content {
  max-width: 830px;
  margin: auto;
  width: 100%;
  padding: 70px 0 30px;
}
@media screen and (max-width: 768px) {
  .trial-form__content {
    padding: 30px 20px;
  }
}
.trial-form__content .heading3 {
  color: #40ACA4;
  font-size: 1.125rem;
  font-weight: bold;
  border-bottom: 1px solid;
  line-height: 1.8;
  padding-bottom: 6px;
}

.trial-form__table {
  margin: 10px auto;
  width: 100%;
}
.trial-form__table ._small {
  font-weight: normal;
  font-size: 0.8125rem;
}
.trial-form__table th {
  color: #05025C;
  font-size: 1.125rem;
  font-weight: bold;
  position: relative;
  width: 170px;
  text-align: left;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .trial-form__table th {
    display: block;
    width: 100%;
    font-size: 1.0625rem;
    padding: 10px 0 0;
  }
}
.trial-form__table th ._reqire, .trial-form__table th ._any {
  font-size: 12px;
  display: inline-block;
  font-size: 0.75rem;
  position: absolute;
  top: 20px;
  right: 10px;
  padding: 2px 6px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .trial-form__table th ._reqire, .trial-form__table th ._any {
    top: 10px;
  }
}
.trial-form__table th ._reqire {
  background-color: #FBDC00;
}
.trial-form__table th ._any {
  background-color: #EEEEEE;
}
.trial-form__table td {
  padding: 10px 0;
  width: 660px;
}
@media screen and (max-width: 768px) {
  .trial-form__table td {
    display: block;
    width: 100%;
  }
}
.trial-form__table input[type=text], .trial-form__table input[type=email], .trial-form__table input[type=tel] {
  border-radius: 5px;
  border: 1px solid #999999;
  padding: 5px;
  height: 40px;
}

.trial-btn__wrap {
  margin-top: 30px;
  position: relative;
}
.trial-btn__wrap p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .trial-btn__wrap p {
    flex-direction: column-reverse;
  }
}

.trial-btn__link {
  width: 280px;
  height: 64px;
  border-radius: 5px;
  border: 1px solid #05025C;
  background-color: #05025C;
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  position: relative;
  cursor: pointer;
}
.trial-btn__link input {
  color: #fff;
  font-size: 1.25rem;
  border: none;
  background: none;
  width: 100%;
  height: 100%;
  font-weight: bold;
}
.trial-btn__link::before {
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  right: 20px;
  top: 40%;
  transform: rotate(45deg);
}
.trial-btn__link:hover {
  opacity: 0.7;
}
.trial-btn__link.disabled, .trial-btn__link:disabled {
  opacity: 0.4;
}

.trial-btn__back {
  border: none;
  padding: 10px 30px;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .trial-btn__back {
    position: absolute;
    left: 0;
    top: 15%;
  }
}
@media screen and (max-width: 768px) {
  .trial-btn__back {
    margin-top: 10px;
  }
}
.trial-btn__back:hover {
  opacity: 0.7;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #f44336;
  font-size: 1.1rem;
}
@media screen and (min-width: 769px) {
  .wpcf7 .ajax-loader {
    position: absolute;
  }
}

.trial-form__step {
  width: 420px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .trial-form__step {
    width: 80%;
  }
}

.trial-form__step-bar {
  width: 100%;
  margin: auto;
  height: 16px;
  border-radius: 100px;
  border: 1px solid #ccc;
  overflow: hidden;
  position: relative;
}
.trial-form__step-bar::before {
  position: absolute;
  display: block;
  content: "";
  background-color: #FBDC00;
  top: 0;
  left: 0;
  height: 16px;
  width: 100%;
  transform-origin: left top;
}

.trial-form__step-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #05025C;
}

.trial-privacy {
  text-align: center;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .trial-privacy {
    padding: 30px 20px;
    font-size: 0.875rem;
  }
}
.trial-privacy a {
  text-decoration: underline;
  line-height: 1.8;
}

/* -----------------------------------------------
    footer
--------------------------------------------------*/
.trial-footer {
  padding-top: 70px;
}
@media screen and (max-width: 768px) {
  .trial-footer {
    padding-top: 40px;
    text-align: center;
  }
}
.trial-footer .inner {
  font-size: 0.75rem;
}
@media screen and (min-width: 769px) {
  .trial-footer .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.trial-footer .logo {
  width: auto;
  max-width: 150px;
}
@media screen and (max-width: 768px) {
  .trial-footer .logo {
    margin: 0 auto 10px;
    max-width: 100px;
  }
}
.trial-footer .logo img {
  height: auto;
}
.trial-footer .copy {
  text-align: center;
  font-size: 0.75rem;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .trial-footer .copy {
    padding: 20px 0;
  }
}

@media screen and (max-width: 768px) {
  .trial-sales.trial-main .inner {
    padding: 0;
  }
}

.trial-flow__sales::before {
  width: 200px;
}

.trial-sales-form {
  width: 200%;
}
.trial-sales-form input[type=text], .trial-sales-form input[type=email], .trial-sales-form input[type=tel] {
  width: 100%;
}
.trial-sales-form.step1 {
  transform: translateX(0);
  transition: transform 0.3s ease-in-out;
}
.trial-sales-form.step1 + .trial-form__step .trial-form__step-bar::before {
  transform: scale(0.5, 1);
  transition: 0.3s;
}
.trial-sales-form.step2 {
  transform: translateX(-50%);
  transition: transform 0.3s ease-in-out;
}
.trial-sales-form.step2 input[type=text], .trial-sales-form.step2 input[type=email], .trial-sales-form.step2 input[type=tel] {
  width: 100%;
}
.trial-sales-form.step2 + .trial-form__step .trial-form__step-bar::before {
  transform: scale(1, 1);
  transition: 0.3s;
}

.trial-main-sales {
  overflow: hidden;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .trial-main-sales {
    padding-bottom: 40px;
  }
}

.trial-sales__service {
  position: relative;
}
.trial-sales__service input[type=checkbox] {
  display: none;
}
.trial-sales__service input[type=checkbox]:checked + .wpcf7-list-item-label {
  border: 1px solid #05025C;
  background-color: #05025C;
  color: #fff;
}
.trial-sales__service .wpcf7-form-control-wrap {
  display: block;
}
@media screen and (min-width: 1040px) {
  .trial-sales__service .wpcf7-form-control-wrap[data-name=text-kind-other] {
    position: absolute;
    right: 0;
    top: 65px;
  }
}
.trial-sales__service .wpcf7-form-control {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .trial-sales__service .wpcf7-form-control::after, .trial-sales__service .wpcf7-form-control::before {
    display: block;
    content: "";
    width: 120px;
  }
  .trial-sales__service .wpcf7-form-control::before {
    order: 1;
  }
}
.trial-sales__service .wpcf7-list-item {
  margin: 0;
  width: 120px;
  height: 40px;
  cursor: pointer;
  margin-bottom: 15px;
}
@media screen and (min-width: 1040px) {
  .trial-sales__service .wpcf7-list-item:nth-of-type(n+6) {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .trial-sales__service .wpcf7-list-item {
    width: 47%;
    margin-right: 0;
  }
}
.trial-sales__service .wpcf7-list-item-label {
  border: 1px solid #999999;
  box-shadow: 0px 0px 5px 0 rgba(0, 0, 0, 0.2);
  display: inline-block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  cursor: pointer;
}

input[type=text].trial-sales__service-other {
  width: 254px;
}
@media screen and (max-width: 768px) {
  input[type=text].trial-sales__service-other {
    width: 100%;
  }
}

@media screen and (min-width: 769px) {
  .trial-sales__usually p {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
}
.trial-sales__usually input[type=radio] {
  display: none;
}
.trial-sales__usually input[type=radio]:checked + .wpcf7-list-item-label {
  border: 1px solid #05025C;
  background-color: #05025C;
  color: #fff;
}
.trial-sales__usually .wpcf7-form-control-wrap[data-name=text-usually-other] {
  max-width: 390px;
  width: 100%;
}
.trial-sales__usually .wpcf7-form-control-wrap[data-name=text-usually-other] input {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .trial-sales__usually .wpcf7-form-control {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.trial-sales__usually .wpcf7-list-item {
  margin: 0;
  width: 120px;
  height: 40px;
  margin-right: 15px;
  margin-bottom: 15px;
}
@media screen and (min-width: 1040px) {
  .trial-sales__usually .wpcf7-list-item {
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 768px) {
  .trial-sales__usually .wpcf7-list-item {
    width: 47%;
    margin-bottom: 15px;
    margin-right: 0;
  }
}
.trial-sales__usually .wpcf7-list-item-label {
  border: 1px solid #999999;
  box-shadow: 0px 0px 5px 0 rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .trial-sales__usually .wpcf7-list-item-label {
    margin-right: 0;
    width: 100%;
  }
}

.trial-sales__usually-table {
  border-bottom: 1px solid #eee;
  width: 100%;
}
.trial-sales__usually-table th {
  font-weight: normal;
  color: #333333;
  font-size: 0.875rem;
  background-color: rgba(251, 220, 0, 0.2);
  border-bottom: 1px solid #fff;
  vertical-align: middle;
  text-align: center;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .trial-sales__usually-table th {
    display: table-cell;
    width: auto;
    writing-mode: vertical-rl;
  }
}
.trial-sales__usually-table td {
  vertical-align: middle;
  text-align: center;
  width: auto;
}
@media screen and (max-width: 768px) {
  .trial-sales__usually-table td {
    display: table-cell;
    width: auto;
    writing-mode: vertical-rl;
  }
}
.trial-sales__usually-table td p {
  display: flex;
  justify-content: center;
  align-items: center;
}
.trial-sales__usually-table td .wpcf7-list-item {
  margin: 0;
}
.trial-sales__usually-table td .wpcf7-list-item-label, .trial-sales__usually-table td .trial-sales__usually-checkbox span {
  position: relative;
  width: 16px;
  height: 16px;
  display: block;
  cursor: pointer;
}
.trial-sales__usually-table td .wpcf7-list-item-label::before, .trial-sales__usually-table td .trial-sales__usually-checkbox span::before {
  display: block;
  content: "";
  border: 1px solid #999;
  border-radius: 5px;
  content: "";
  width: 16px;
  height: 16px;
}
.trial-sales__usually-table td input[type=checkbox] {
  display: none;
}
.trial-sales__usually-table td input[type=checkbox]:checked + .wpcf7-list-item-label::after, .trial-sales__usually-table td input[type=checkbox]:checked + .trial-sales__usually-checkbox span::after {
  display: block;
  content: "";
  position: absolute;
  top: 2px;
  left: 4px;
  display: block;
  border-right: 2px solid #05025C;
  border-bottom: 2px solid #05025C;
  content: "";
  width: 8px;
  height: 9px;
  transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  .trial-recruitment.trial-main .inner {
    padding: 0;
  }
}

.trial-flow__recruitment::before {
  width: 350px;
}
@media screen and (max-width: 768px) {
  .trial-flow__recruitment::before {
    width: 300px;
  }
}

.trial-recruitment-form {
  width: 300%;
}
.trial-recruitment-form input[type=text], .trial-recruitment-form input[type=email], .trial-recruitment-form input[type=tel] {
  width: 100%;
}
.trial-recruitment-form.step1 {
  transform: translateX(0);
  transition: transform 0.3s ease-in-out;
}
.trial-recruitment-form.step1 + .trial-form__step .trial-form__step-bar::before {
  transform: scale(0.33, 1);
  transition: 0.3s;
}
.trial-recruitment-form.step2 {
  transform: translateX(-33.333%);
  transition: transform 0.3s ease-in-out;
}
.trial-recruitment-form.step2 + .trial-form__step .trial-form__step-bar::before {
  transform: scale(0.66, 1);
  transition: 0.3s;
}
.trial-recruitment-form.step3 {
  transform: translateX(-66.666%);
  transition: transform 0.3s ease-in-out;
}
.trial-recruitment-form.step3 + .trial-form__step .trial-form__step-bar::before {
  transform: scale(1, 1);
  transition: 0.3s;
}

.trial-main-recruitment {
  overflow: hidden;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .trial-main-recruitment {
    padding-bottom: 40px;
  }
}

.trial-recruitment__service, .trial-recruitment__care, .trial-recruitment__nurse {
  position: relative;
}
.trial-recruitment__service input[type=checkbox], .trial-recruitment__care input[type=checkbox], .trial-recruitment__nurse input[type=checkbox] {
  display: none;
}
.trial-recruitment__service input[type=checkbox]:checked + .wpcf7-list-item-label, .trial-recruitment__care input[type=checkbox]:checked + .wpcf7-list-item-label, .trial-recruitment__nurse input[type=checkbox]:checked + .wpcf7-list-item-label {
  border: 1px solid #05025C;
  background-color: #05025C;
  color: #fff;
}
.trial-recruitment__service .wpcf7-form-control-wrap, .trial-recruitment__care .wpcf7-form-control-wrap, .trial-recruitment__nurse .wpcf7-form-control-wrap {
  display: block;
}
@media screen and (min-width: 1040px) {
  .trial-recruitment__service .wpcf7-form-control-wrap[data-name=text-kind-other], .trial-recruitment__care .wpcf7-form-control-wrap[data-name=text-kind-other], .trial-recruitment__nurse .wpcf7-form-control-wrap[data-name=text-kind-other] {
    position: absolute;
    right: 0;
    top: 65px;
  }
}
@media screen and (min-width: 1040px) {
  .trial-recruitment__service .wpcf7-form-control-wrap[data-name=text-care-other], .trial-recruitment__care .wpcf7-form-control-wrap[data-name=text-care-other], .trial-recruitment__nurse .wpcf7-form-control-wrap[data-name=text-care-other] {
    position: absolute;
    top: 176px;
    left: 272px;
  }
}
@media screen and (min-width: 1040px) {
  .trial-recruitment__service .wpcf7-form-control-wrap[data-name=text-nurse-other], .trial-recruitment__care .wpcf7-form-control-wrap[data-name=text-nurse-other], .trial-recruitment__nurse .wpcf7-form-control-wrap[data-name=text-nurse-other] {
    position: absolute;
    top: 286px;
    left: 136px;
  }
}
.trial-recruitment__service .wpcf7-form-control, .trial-recruitment__care .wpcf7-form-control, .trial-recruitment__nurse .wpcf7-form-control {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .trial-recruitment__service .wpcf7-form-control::after, .trial-recruitment__service .wpcf7-form-control::before, .trial-recruitment__care .wpcf7-form-control::after, .trial-recruitment__care .wpcf7-form-control::before, .trial-recruitment__nurse .wpcf7-form-control::after, .trial-recruitment__nurse .wpcf7-form-control::before {
    display: block;
    content: "";
    width: 120px;
  }
  .trial-recruitment__service .wpcf7-form-control::before, .trial-recruitment__care .wpcf7-form-control::before, .trial-recruitment__nurse .wpcf7-form-control::before {
    order: 1;
  }
}
.trial-recruitment__service .wpcf7-list-item, .trial-recruitment__care .wpcf7-list-item, .trial-recruitment__nurse .wpcf7-list-item {
  margin: 0;
  width: 120px;
  height: 40px;
  cursor: pointer;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .trial-recruitment__service .wpcf7-list-item, .trial-recruitment__care .wpcf7-list-item, .trial-recruitment__nurse .wpcf7-list-item {
    width: 47%;
    margin-right: 0;
  }
}
.trial-recruitment__service .wpcf7-list-item-label, .trial-recruitment__care .wpcf7-list-item-label, .trial-recruitment__nurse .wpcf7-list-item-label {
  border: 1px solid #999999;
  box-shadow: 0px 0px 5px 0 rgba(0, 0, 0, 0.2);
  display: inline-block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  cursor: pointer;
}

.trial-recruitment__care .wpcf7-form-control, .trial-recruitment__nurse .wpcf7-form-control {
  width: 100%;
  max-width: 530px;
}
.trial-recruitment__care .wpcf7-list-item, .trial-recruitment__nurse .wpcf7-list-item {
  width: 120px;
}
@media screen and (min-width: 1040px) {
  .trial-recruitment__care .wpcf7-list-item:nth-of-type(19), .trial-recruitment__nurse .wpcf7-list-item:nth-of-type(19) {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .trial-recruitment__care .wpcf7-list-item, .trial-recruitment__nurse .wpcf7-list-item {
    width: 47%;
    margin-right: 0;
  }
}

@media screen and (min-width: 1040px) {
  .trial-recruitment__service .wpcf7-list-item:nth-of-type(n+6) {
    margin-bottom: 0;
  }
}

.trial-recruitment__care .wpcf7-list-item:nth-of-type(8), .trial-recruitment__care .wpcf7-list-item:nth-of-type(9) {
  font-size: 0.75rem;
}
@media screen and (min-width: 1040px) {
  .trial-recruitment__care .wpcf7-list-item:nth-of-type(n+17) {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1040px) {
  .trial-recruitment__nurse .wpcf7-list-item:nth-of-type(19) {
    width: 258px;
  }
  .trial-recruitment__nurse .wpcf7-list-item:nth-of-type(n+20) {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .trial-recruitment__nurse .wpcf7-list-item:nth-of-type(19) {
    font-size: 0.75rem;
  }
}

input[type=text].trial-recruitment__service-other {
  width: 525px;
}
@media screen and (max-width: 768px) {
  input[type=text].trial-recruitment__service-other {
    width: 100%;
  }
}

input[type=text].trial-recruitment__care-other {
  width: 258px;
}
@media screen and (max-width: 768px) {
  input[type=text].trial-recruitment__care-other {
    width: 100%;
  }
}

input[type=text].trial-recruitment__nurse-other {
  width: 395px;
}
@media screen and (max-width: 768px) {
  input[type=text].trial-recruitment__nurse-other {
    width: 100%;
  }
}

.trial-recruitment__employment input[type=radio] {
  display: none;
}
.trial-recruitment__employment input[type=radio]:checked + .wpcf7-list-item-label {
  border: 1px solid #05025C;
  background-color: #05025C;
  color: #fff;
}
.trial-recruitment__employment .wpcf7-form-control {
  width: 100%;
  max-width: 530px;
}
@media screen and (min-width: 769px) {
  .trial-recruitment__employment .wpcf7-form-control {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.trial-recruitment__employment .wpcf7-list-item {
  margin: 0;
  width: 49%;
  height: 40px;
}
@media screen and (max-width: 768px) {
  .trial-recruitment__employment .wpcf7-list-item {
    width: 100%;
    margin-top: 15px;
  }
  .trial-recruitment__employment .wpcf7-list-item:last-of-type {
    margin-bottom: 0;
  }
}
.trial-recruitment__employment .wpcf7-list-item-label {
  border: 1px solid #999999;
  box-shadow: 0px 0px 5px 0 rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .trial-recruitment__employment .wpcf7-list-item-label {
    margin-right: 0;
    width: 100%;
  }
}

/* -----------------------------------------------
    terms
--------------------------------------------------*/
.trial-term {
  padding: 20px 0 40px;
}
.trial-term .inner {
  padding: 80px;
}
@media screen and (max-width: 768px) {
  .trial-term .inner {
    padding: 30px;
  }
}
.trial-term .heading2 {
  font-size: 1.75rem;
  text-align: center;
}
.trial-term .heading3 {
  font-size: 1.5rem;
  margin-top: 30px;
}
.trial-term .heading4 {
  font-size: 1.25rem;
  margin-top: 30px;
}
.trial-term p {
  margin-top: 20px;
}

.list-main {
  list-style: none;
  counter-reset: number;
  margin-top: 20px;
}
.list-main li {
  position: relative;
  padding-left: 40px;
  line-height: 1.8;
}
.list-main li::before {
  counter-increment: number;
  content: counter(number) ".";
  position: absolute;
  left: 0;
}
.list-main li ol {
  margin-top: 10px;
  margin-bottom: 10px;
}

.list-sub {
  list-style: none;
  counter-reset: number;
  margin-top: 20px;
}
.list-sub li {
  position: relative;
  padding-left: 40px;
  line-height: 1.8;
}
.list-sub li::before {
  counter-increment: number;
  content: "（" counter(number) "）";
  position: absolute;
  left: 0;
}
.list-sub li ol {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* -----------------------------------------------
    thanks
--------------------------------------------------*/
.trial-main-thanks {
  padding: 80px 0;
  text-align: center;
  max-width: 560px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .trial-main-thanks {
    padding: 20px 0;
  }
}
.trial-main-thanks .heading2 {
  font-size: 1.8125rem;
}
@media screen and (max-width: 768px) {
  .trial-main-thanks .heading2 {
    font-size: 1.375rem;
  }
}
.trial-main-thanks .heading3 {
  color: #05025C;
  font-size: 1.25rem;
  line-height: 2;
  padding: 10px 0;
  font-weight: normal;
  margin-top: 30px;
}
.trial-main-thanks .heading3::after {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #CCCCCC;
  position: relative;
  bottom: -10px;
}
.trial-main-thanks .heading3 + p {
  margin-top: 20px;
}
.trial-main-thanks p {
  color: #05025C;
  margin-top: 30px;
}
.trial-main-thanks .trial-dl-thanks {
  color: #05025C;
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .trial-main-thanks .trial-dl-thanks {
    display: flex;
    justify-content: center;
  }
}
.trial-main-thanks .trial-dl-thanks dt {
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .trial-main-thanks .trial-dl-thanks dt {
    padding: 0px 30px;
  }
}
.trial-main-thanks .trial-dl-thanks dd {
  text-align: left;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .trial-main-thanks .trial-dl-thanks dd {
    padding: 0px 30px;
  }
}
@media screen and (max-width: 768px) {
  .trial-main-thanks .trial-dl-thanks dd {
    display: inline-block;
    margin-top: 10px;
  }
}
/*# sourceMappingURL=trial.css.map */