<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

.container,
.container * {
  box-sizing: border-box;
}

/*---------------------------------------------------------------------------------
inputエラー表示
---------------------------------------------------------------------------------*/

.error {
  background-color: #FFE8E8;
  color: #ff0000;
  font-size: 12px;
  padding: 5px;
  margin-bottom: 5px;
  text-align: left;
}

.inp_error {
  background-color: #FFE8E8;
}

.inp_error {
  background-color: #FFE8E8 !important;
}

.error_text {
  background-color: #FFE8E8;
  color: #ff0000;
  font-size: 12px;
  width: 100%;
  padding: 5px;
  margin-bottom: 10px;
}

.error_text:empty {
  display: none;
}

.error_text_top {
  width: 100%;
  margin: 20px auto 0;
}



/*---------------------------------------------------------------------------------
input共通style
---------------------------------------------------------------------------------*/
.form_inner label {
  display: block;
  text-align: left;
  margin-bottom: 8px;
}

.form_inner&gt;input[type="text"],
.form_inner&gt;input[type="password"] {
  width: 100%;
  margin-bottom: 24px;
  height: 36px;
  border: #d6d6d6 1px solid;
  padding: 0 2%;
  font-size: 15px;
}

.form_inner label {
  display: block;
  text-align: left;
  margin-bottom: 3px;
}

/*---------------------------------------------------------------------------------
ログインページ
---------------------------------------------------------------------------------*/
.graduate_login {
  text-align: center;
  display: block;
  width: 100%;
  min-height: 100vh;
  background-color: #f8f8f8;
  padding: 70px 0 50px;
}

.login_img {
  display: block;
  width: 300px;
  max-width: 96%;
  margin: 0 auto 20px;
}

.login_form,
.new_member {
  background: #fff;
  padding: 30px;
  margin: 0 auto;
  text-align: center;
  width: 25%;
  min-width: 470px;
  border: #d5d5d5 1px solid;
}

#login_btn {
  background: #39598E;
  color: #fff;
  padding: 12px 2%;
  border-radius: 5px;
  font-size: 16px;
  border: 0px;
  cursor: pointer;
  font-weight: bold;
  margin: 10px auto;
  display: block;
  width: 100%;
}

#login_btn:hover,
.new_member_btn:hover {
  opacity: 0.7;
}

.toContact {
  display: block;
  margin-right: 3px;
  color: #0066c0;
  text-align: center;
  text-decoration: none;
}

.new_member {
  margin: 24px auto 50px;
  padding: 14px 30px;
}

.new_member_btn {
  background: #fff;
  color: #39598E;
  padding: 12px 2%;
  border-radius: 5px;
  font-size: 16px;
  border: 1px solid #39598E;
  cursor: pointer;
  font-weight: bold;
  margin: 10px auto;
  display: block;
  width: 100%;
  text-decoration: none;
}

/*---------------------------------------------------------------------------------
申し込み・新規会員登録
---------------------------------------------------------------------------------*/
/* ステップバー部分 */
.progressbar {
  position: relative;
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  text-align: center;
  width: 100%;
  overflow: hidden;
  font-size: 14px;
}

.progressbar.sp_none {
  display: flex;
}

.progressbar.pc_none {
  display: none;
}


.bar_item {
  position: relative;
  display: inline-block;
  line-height: 40px;
  padding: 0 40px 0 20px;
  background-color: #eee;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 24%;
}

.register_inner .bar_item {
  width: 33%;
}

.bar_item::before,
.bar_item::after {
  position: absolute;
  left: -12px;
  display: block;
  content: '';
  background-color: #eee;
  border-left: 4px solid #FFF;
  width: 18px;
  height: 20px;
}

.bar_item::after {
  top: 0;
  -moz-transform: skew(30deg);
  -ms-transform: skew(30deg);
  -webkit-transform: skew(30deg);
  transform: skew(30deg);
}

.bar_item::before {
  bottom: 0;
  -moz-transform: skew(-30deg);
  -ms-transform: skew(-30deg);
  -webkit-transform: skew(-30deg);
  transform: skew(-30deg);
}

.bar_item:first-child {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  width: 28%;
}


.register_inner .bar_item:first-child {
  width: 34%;
}

.bar_item:first-child::before,
.bar_item:first-child::after {
  content: none;
}

.bar_item:last-child {
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* active */

.bar_item.active {
  background: #3A598E;
  color: #FFF;
}

.bar_item.active::after,
.bar_item.active::before {
  background-color: #3A598E;
}

.app_top_txt {
  color: #FF0000;
  margin-bottom: 10px;
}

/* 共通ロゴ */
.app_top,
.register_top {
  width: 100%;
  padding: 0 0 20px;
}

.app_top&gt;h1,
.register_top&gt;h1 {
  width: 200px;
}

.app_ttl,
.register_ttl {
  font-size: 23px;
  margin-bottom: 20px;
  padding-left: 10px;
  border-left: 4px #FFA200 solid;
}

.app_top img,
.register_top img {
  width: 100%;
}

/* フォーム */
.app_inner,
.register_inner {
  padding: 20px 4% 50px;
  max-width: 1280px;
  margin: 0 auto;
}

.app h2,
.register h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.app h3,
.register h3 {
  font-size: 17px;
  margin-bottom: 16px;
}


.app_table,
.register_table {
  border: #D6D6D6 1px solid;
  border-spacing: 0;
  width: 100%;
  margin-bottom: 40px;
}

.app_head,
.app_data,
.register_head,
.register_data {
  border-bottom: #D6D6D6 1px solid;
}

.app_table tr:last-of-type .app_data,
.app_table tr:last-of-type .app_head,
.register_table tr:last-of-type .register_data,
.register_table tr:last-of-type .register_head {
  border-bottom: none;
}

.app_head,
.register_head {
  background-color: #EFEFEF;
  padding: 22px 2%;
  min-width: 140px;
  text-align: left;
  font-weight: bold;
  width: 23%;
  font-size: 15px;
}

.app_data,
.register_data {
  padding: 24px 3%;
  width: auto;
  background-color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.app input[type="text"],
.app input[type="email"],
.app input[type="tel"],
.app input[type="password"],
.app select,
.register input[type="text"],
.register input[type="email"],
.register input[type="tel"],
.register input[type="password"],
.register select {
  padding: 6px;
  font-size: 15px;
  border: 1px solid #D6D6D6;
  margin: 6px 0;
  background-color: #fff;
  color: #333;
}

.app select,
.register select {
  appearance: none;
  width: 100%;
}

.select_wrap {
  position: relative;
  margin-right: 2%;
  background-color: #fff;
}

.select_wrap::before {
  content: '';
  width: 7px;
  height: 7px;
  border: 0;
  border-bottom: solid 2px #999;
  border-right: solid 2px #999;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -6px;
  transform: rotate(45deg);
  pointer-events: none;
}

.radio_label {
  position: relative;
  cursor: pointer;
  padding-left: 30px;
  margin-right: 40px;
}

.radio_label::before,
.radio_label::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

.radio_label::before {
  background-color: #fff;
  border: 1px solid #D6D6D6;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  left: 5px;
}

.radio_label::after {
  background-color: #F15a24;
  border-radius: 50%;
  opacity: 0;
  width: 14px;
  height: 14px;
  left: 8px
}

input:checked+.radio_label::after {
  opacity: 1;
}

.radio {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}

.important {
  background-color: #ff0000;
  color: #fff;
  padding: 2px 8px;
  font-size: 10px;
  margin-left: 5px;
  white-space: nowrap;
}


/*******お名前*******/
.name_label {
  width: 44%;
  margin-right: 2%;
}

.name_label input {
  width: 85%;
}

/*******生年月日*******/
.birthday_data .select_wrap {
  width: 27%;
}

/*******メールアドレス・電話番号*******/
.app input[type="email"],
.app input[type="tel"],
.register input[type="email"],
.register input[type="tel"] {
  width: 80%;
}

/*******住所*******/
.address_data .select_wrap {
  width: 26%;
}

.address_label01 {
  width: 64.5%;
}

.address_label01 input {
  width: 70%;
}

.address_label02 {
  width: 100%;
}

.address_label02 input {
  width: 61.5%;
}

/*******ログインID*******/
.login_label {
  width: 100%;
}

.login_label input {
  width: 61%;
}

/*******パスワード*******/
.password_label {
  width: 100%;
}

.password_label input {
  width: 61%;
}

/*******学校区分*******/

.school_data .select_wrap {
  width: 27%;
}

/*******学校名*******/
.school_name input {
  width: 80%;
}

/*******学部・学科・専攻*******/
.study_data input {
  width: 80%;
}

/*******卒業年次*******/
.graduate_data .select_wrap {
  width: 27%;
}

/*******希望職種・希望勤務地*******/
.checkbox_list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.checkbox_list li {
  width: 32%;
  margin-bottom: 14px;
}

.checkbox_list input {
  display: none;
}

.checkbox_list label {
  position: relative;
  display: inline-block;
  padding: 3px 3px 3px 28px;
  cursor: pointer;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.checkbox_list label::before,
.checkbox_list label::after {
  position: absolute;
  content: '';
  -webkit-transition: all .2s;
  transition: all .2s;
}

.checkbox_list label::before {
  top: 50%;
  left: 0;
  width: 17px;
  height: 17px;
  margin-top: -8px;
  background: #f4f4f4;
  border: 1px solid #ccc;
  border-radius: 3px;
  transform: translateY(-7%);
}

.checkbox_list label::after {
  opacity: 0;
  top: 50%;
  left: 3px;
  width: 11px;
  height: 4px;
  margin-top: -4px;
  -webkit-transform: rotate(-45deg) scale(.5);
  transform: rotate(-45deg) scale(.5);
  border-left: 2px solid #F15A24;
  border-bottom: 2px solid #F15A24;
}

.checkbox_list label:hover::before {
  background: #fff;
}

.checkbox_list input[type="checkbox"]:checked+label::before {
  background: #fff;
  border: 1px solid
    /*#C9BA71*/
    #F15A24;
}

.checkbox_list input[type="checkbox"]:checked+label::after {
  opacity: 1;
  -webkit-transform: rotate(-45deg) scale(1);
  transform: rotate(-45deg) scale(1);
}

.area_wrap {
  width: 100%;
}

.area_wrap li:first-child {
  float: none;
  width: 100%;
  margin-bottom: 14px;
  font-weight: bold;
  color: #333;
  background-color: #d6d6d6;
  padding: 5px 10px;
}

.area_wrap li:not(:first-child) {
  margin-bottom: 10px;
  margin-left: 4%;
  width: 21%;
}

/*******勤務地・職種*******/
.workplace input,
.occupation input {
  width: 80%;
}


/*******サブミットボタン・戻るボタン*******/
.formbtn_area {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 0 4%;
}

.formback_btn {
  display: block;
  border: #F15A24 1px solid;
  padding: 16px;
  margin: 0 3% 20px;
  border-radius: 5px;
  width: 250px;
  max-width: 95%;
  text-align: center;
  font-weight: bold;
  background-color: #EFEFEF;
  border: #acacac solid 1px;
  text-decoration: none;
}

.submit_btn {
  display: block;
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 250px;
  background-color: #FFA200;
  color: #fff;
  font-size: 15px;
  padding: 16px;
  font-weight: bold;
  margin: 0 3% 20px;
  max-width: 95%;
  border-radius: 5px !important;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.submit_btn:disabled {
  background-color: #c7c7c7;
}

.formbtn_txt {
  text-align: center;
}

.graduate_app .small,
.graduate_register .small {
  font-size: 13px;
  color: rgb(73, 73, 73);
}

/*******確認画面*******/
.terms_text {
  width: 95%;
  text-align: center;
  margin: 20px auto 0;
  font-size: 13px;
}

.terms_text&gt;a {
  color: #1508c9;
  text-decoration: none;
}

/*******確認画面ここまで*******/

/*==================================
仮登録完了
===================================*/

.app_complete,
.register_complete {
  width: 100%;
  margin: 0 auto;
}

.app_complete&gt;h2,
.register_complete&gt;h2 {
  font-weight: bold;
  text-align: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.complete_img {
  display: block;
  margin: 0 auto;
  max-width: 270px;
}

.app_complete&gt;h3,
.register_complete&gt;h3 {
  padding: 0 5px;
  font-size: 17px;
  margin-bottom: 10px;
}

.app_complete&gt;p,
.register_complete&gt;p {
  text-align: center;
}

.complete_text {
  font-size: 18px;
}

.complete_important {
  font-size: 20px;
  color: #F15A24;
  font-weight: bold;
  margin-bottom: 50px;
}

.complete_list {
  background-color: #f3f3f3;
}

.complete_list li {
  padding: 10px 2%;
  border-top: #888 dashed 1px;
  list-style: none;
}

.complete_list li:nth-child(even) {
  background-color: #fff;
}

.complete_list h4 {
  font-weight: bold;
  color: #333;
  font-size: 16px;
}

.complete_list a {
  color: #F15A24;
  cursor: pointer;
}

.contact_txt {
  font-size: 17px;
  font-weight: bold;
}

.mb10 {
  margin-bottom: 10px;
}

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

  /*---------------------------------------------------------------------------------
ログインページ
---------------------------------------------------------------------------------*/
  .login_form,
  .new_member {
    background: #fff;
    padding: 30px;
    margin: 0 auto;
    text-align: center;
    width: 70%;
    border: #d5d5d5 1px solid;
    max-width: 100%;
    min-width: unset;

  }

  .new_member {
    margin: 24px auto 50px;
    padding: 14px 30px;
  }

  .form_inner {
    width: 97%;
    margin: 0 auto;
  }

  .form_inner&gt;input[type="text"],
  .form_inner&gt;input[type="password"] {
    width: 100%;
    margin-bottom: 24px;
    height: 36px;
    border: #d6d6d6 1px solid;
    padding: 0 2%;
    font-size: 15px;
    max-width: 100%;
  }

  /*---------------------------------------------------------------------------------
申し込み
---------------------------------------------------------------------------------*/

  /* ステップバー */
  .progressbar {
    width: 100%;
    margin: 0 auto 30px;
  }

  .progressbar.sp_none {
    display: none;
  }

  .progressbar.pc_none {
    display: flex;
  }

  /* フォーム */
  .important {
    margin-left: 2%;
    vertical-align: middle;
  }

  .app_table,
  .register_table {
    border: none;
    border-bottom: #D6D6D6 1px solid;
    border-top: #D6D6D6 1px solid;
  }

  .app_table tr:last-of-type .app_head,
  .register_table tr:last-of-type .register_head {
    border-bottom: #D6D6D6 1px solid;
  }

  .app_table th,
  .register_table th {
    display: block;
    width: 100%;
  }

  .app_head,
  .register_head {
    padding: 14px 3.2%;
    font-size: 16px;
  }

  .app_data,
  .register_data {
    padding: 20px 1%;
  }

  .app input[type="email"],
  .app input[type="tel"] {
    width: 80%;
  }

  /*******エラー上部*******/
  .error_text_top {
    width: 94%;
  }

  /*******お名前*******/
  .name_label {
    width: 100%;
    margin-right: 0;
  }

  .name_label input[type="text"] {
    width: 80%;
    margin-left: 1%;
  }

  /*******生年月日*******/
  .birthday_data .select_wrap {
    width: 31.3%;
  }

  /*******ご住所*******/
  .address_data .select_wrap {
    width: 40%;
    margin-bottom: 10px;
  }

  .address_label01 {
    width: 100%;
  }

  .address_label01 input,
  .address_label02 input {
    width: 100%;
  }

  /*******ログインID*******/
  .login_label input {
    width: 80%;
  }

  /*******パスワード*******/
  .password_label input {
    width: 80%;
  }


  /*******学校区分*******/

  .school_data .select_wrap {
    width: 40%;
  }

  /*******学校名*******/
  .school_name input {
    width: 100%;
  }

  /*******学部・学科・専攻*******/
  .study_data input {
    width: 100%;
  }

  /*******卒業年次*******/
  .graduate_data .select_wrap {
    width: 40%;
  }

  #users {
    width: 100%;
    margin: 0 auto;
    min-height: 600px;
  }

  .formset {
    padding-right: 0;
    width: 47%;
    height: 103px;
    padding: 0 5px;
    margin-right: 0;
  }

  .formsetone {
    float: none;
    width: 47%;
    padding-left: 5px;
  }

  .formset_checkbox {
    width: 25%;
    height: 50px;
    padding-right: 0;
  }

  .formsetone_long {
    float: none;
  }

  .formsetone_long input {
    width: 80% !important;
  }

  /*==================================
  仮登録完了
  ===================================*/

  .register_complete {
    width: 95%;
    margin: 30px auto;
  }

  .register_complete&gt;h2 {
    font-weight: bold;
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
  }

  .register_complete&gt;h3 {
    font-size: 16px;
  }

  .register_complete&gt;p {
    text-align: center;
    font-size: 14px;
  }

  .complete_text {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .complete_important {
    font-size: 20px;
    color: #F15A24;
    font-weight: bold;
    margin-bottom: 50px;
  }


  .complete_list li:nth-child(even) {
    background-color: #fff;
  }

  .complete_list h4 {
    font-size: 14px;
  }

  .complete_list p {
    font-size: 12px;
  }

  .contact_txt {
    font-size: 16px !important;
  }

}

@media screen and (max-width:480px) {
  /*---------------------------------------------------------------------------------
ログインページ
---------------------------------------------------------------------------------*/

  .graduate_login {
    background-color: rgba(252, 252, 252, 1);
    padding: 30px 0;
    width: 100%;
  }

  .login_img {
    margin: 0 auto 20px;
    width: 250px;
  }

  .login_form,
  .new_member {
    width: 100%;
    border: none;
  }

  .login_form {
    border-bottom: 1px solid #d6d6d6;
    padding: 20px 5%;
    background-color: rgba(252, 252, 252, 1);
  }

  .new_member {
    padding: 5px 5%;
    background-color: rgba(252, 252, 252, 1);
  }

  .toContact {
    font-size: 13px;
  }

  /*---------------------------------------------------------------------------------
申し込み
---------------------------------------------------------------------------------*/

  /* ステップバー部分 */
  .bar_item {
    font-size: 11px;
    padding: 0px 30px 0 10px;
  }

  .app_top,
  .register_top {
    padding: 0 0 5px;
  }

  .app_top&gt;h1,
  .register_top&gt;h1 {
    width: 38%;
    max-width: 150px;
    margin: 0 auto;
  }

  .app_ttl,
  .register_ttl {
    font-size: 18px;
  }


  /* フォーム */

  .app_top_txt,
  .register_top_txt {
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .app h3,
  .register h3 {
    font-size: 15px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .app_data label,
  .register_data label {
    font-size: 14px;
  }

  .login_label input,
  .password_label input {
    width: 100%;
  }

  .formbtn_txt {
    font-size: 12px;
  }

  .app_table th,
  .register_table th {

    font-size: 15px;
  }

  .app input[type="text"],
  .app input[type="email"],
  .app input[type="tel"],
  .app input[type="password"],
  .app select,
  .register input[type="text"],
  .register input[type="email"],
  .register input[type="tel"],
  .register input[type="password"],
  .register select {
    height: 40px;
    width: 100%;
  }

  .name_label input[type="text"] {
    width: 90%;
    margin-left: 1%;
  }

  .app02 .app_table .register02 .app_table {
    border: none;
    margin-bottom: 10px;
  }

  .graduate_app .small {
    font-size: 11px;
  }

  /*==================================
仮登録完了
===================================*/

  .app_complete&gt;h2 {
    font-size: 21px;
  }

  .complete_img {
    max-width: 200px;
  }

  .complete_text {
    font-size: 16px;
  }

  .app_complete&gt;p {
    font-size: 16px;
  }

  .formbtn_area {
    padding: 0;
  }
}</pre></body></html>