@charset "UTF-8";

html {
  height: 100%;
}

body {
  height: 100%;
}

input[type="button"],
input[type="submit"],
select,
textarea {
  -webkit-appearance: none;
  /* Google Chrome、Safari */
  -moz-appearance: none;
  /* Firefox */
  appearance: none;
  border-radius: 0;
  /* 標準のスタイルを無効に */
}

.contents {
  margin: 0 auto;
  padding: 40px 0;
  max-width: 1000px;
  width: 95%;
  box-sizing: border-box;
}

.contents>h2 {
  border-left: solid 3px #F15A24;
  padding-left: 10px;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 20px;
}

.register {
  margin: 0 auto 30px;
  width: 100%;
}

.main * {
  box-sizing: border-box;
}

.register h3 {
  font-size: 19px;
  font-weight: bold;
  margin: 30px auto 10px;
}

.fl2023_text {
  font-size: 14px;
  background-color: rgb(227 236 255);
  color: #333;
  padding: 8px;
  width: 100%;
  margin: 10px auto;
}

.fl2023_text>a {
  color: #1508c9;
  text-decoration: underline;
}

/*==================================
ステップバー部分
===================================*/
.progressbar {
  position: relative;
  list-style: none;
  margin: 0 0 1em;
  padding: 0;
  text-align: center;
  width: 100%;
  overflow: hidden;
}

.progressbar.sp_none {
  display: flex;
}

.progressbar.pc_none {
  display: none;
}

.bar_item {
  position: relative;
  float: left;
  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: calc(100% / 3);
}

.bar_item::before,
.bar_item::after {
  position: absolute;
  left: -15px;
  display: block;
  content: '';
  background-color: #eee;
  border-left: 4px solid #FFF;
  width: 20px;
  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;
}

.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: #F15a24;
  color: #FFF;
}

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


/*==================================
form部分
===================================*/

.register_table {
  border: #D6D6D6 1px solid;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

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

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

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

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

.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;
}

.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;
  margin-bottom: 5px;
}

.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: 16px;
  height: 16px;
  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;
}

.inp_txt {
  font-size: 12px;
  color: #8c8c8c;
}


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

.name_label input {
  width: 85%;
}

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

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

/*******住所*******/
.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: 40%;
}

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

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

.graduate_data .select_wrap {
  width: 40%;
}

/*******学籍番号*******/
.studentid_data input {
  width: 80%;
}

/*******希望職種・希望勤務地*******/
.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%;
}

/*******タイプ別適職診断*******/
.top_textbox {
  margin: 20px auto 16px;
  width: 94%;
}

.top_textbox h3 {
  font-weight: bold;
}

.qa_table th {
  display: block;
  width: 100%;
  padding: 12px 3%;
}

.qa_table .radio_label {
  width: 100%;
  margin-bottom: 10px;
  margin-right: 0;
}


/*******サブミットボタン・戻るボタン*******/
.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 1% 20px;
  border-radius: 5px;
  width: 250px;
  max-width: 95%;
  text-align: center;
  font-weight: bold;
  background-color: #EFEFEF;
  border: #acacac solid 1px;
}

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

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

/*******エラー*******/

.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;
}

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

.terms_text>a {
  color: #1508c9;
}

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


input:focus,
select:focus {
  outline-color: #1aaebc;
  border: 1px solid #1aaebc;
}

input[type="text"]:focus,
textarea:focus,
select:focus {
  box-shadow: 0 0 7px #1aaebc;
  border: 1px solid #1aaebc;
}

input[type="submit"]:focus {
  border: none;
  outline: none;

}

.checkbox,
.radio {
  display: none !important;
}

.checkbox+.checkbox-icon {
  position: relative;
  vertical-align: middle;
}

.checkbox+.checkbox-icon:before {
  content: "\f372";
  font-family: "Ionicons";
  color: #ccc;
  font-size: 40px;
  vertical-align: sub;
}

.checkbox:checked+.checkbox-icon:before {
  content: "\f374";
  color: #1aaebc;
}

.mailmagazine_annotation {
  font-size: 16px;
  float: left;
  margin-bottom: 30px;
}

.komidashi {
  float: left;
  display: table-cell;
  width: 275px;
  padding-top: 6px;
  box-sizing: border-box;
}

.komidashi span {
  margin-left: 20px;
  padding: 3px 5px;
  color: #fff;
  background: red;
  border-radius: 5px;
}

.komidashi_margin {
  padding-left: 275px;
  box-sizing: border-box;
}

.komidashi_kaigyo {
  width: 100%;
}

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

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

.register_complete>h2 {
  font-weight: bold;
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.register_complete>h3 {
  border-left: #F15A24 solid 4px;
  padding: 0 5px;
  font-size: 17px;
  margin-bottom: 10px;
}

.register_complete>p {
  text-align: center;
}

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

.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;
}

.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;
}

.complete_btn{
  background-color: #F15A24;
  color: #fff;
  display: block;
  width: 320px;
  max-width: 90%;
  padding: 16px 3%;
  font-weight: bold;
  text-align: center;
  margin: 20px auto 40px;
  border-radius: 4px;
  font-size: 15px;
}

.complete_btn:hover{
  opacity: 0.7;
}



/*==================================
登録完了
===================================*/
.mypage_btn {
  margin: 30px auto 0;
}

/*==================================
error(user.php)
===================================*/
.register_error_text {
  padding: 10px 2%;
  text-align: center;
}

.error_btn {
  margin: 30px auto;
}


/*==================================
errorページ どこに使ってるのか不明
===================================*/
.caution {
  font-size: 1.2rem;
  padding-top: 20px;
  padding-left: 5px;
}

.cautionError {
  font-size: 1.2rem;
  padding-top: 20px;
  padding-left: 5px;
  color: red;
}

.errorPage {
  border: 1px solid #d8d8d8;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  background-color: rgba(222, 213, 166, 0.1);
}

.errorPage input,
.errorPage textarea,
.errorPage select {
  border: 1px solid #999;
  border-radius: 5px;
  color: #333;
  font-size: 1.2em;
  height: 27px;
  margin-bottom: 10px;
  width: 250px;
  padding: 3px;
}

.errorPage select {
  height: 25px;
  padding-top: 5px;
  box-sizing: content-box;
}

.errorPage legend {
  color: #5D3026;
  padding: 40px 0 20px;
  font-size: 24px;
  letter-spacing: .7px;
  line-height: 1.3em;
}

.errorPage .design_long {
  color: #5D3026;
  display: block;
  letter-spacing: .7px;
  width: 550px;
  font-size: 15px;
  margin: 0 0 3px 0;
}

.errorPage .design {
  color: #5D3026;
  display: block;
  letter-spacing: .7px;
  width: 250px;
  font-size: 15px;
  margin: 0 0 3px 0;
}

.errorText {
  width: 300px;
  color: red;
  font-weight: bold;
  display: block;
}

.errorField {
  background: #ecbbaf;
}

.block input[type="submit"] {
  display: block;
  width: 300px;
  margin: 40px auto 50px;
  border: none !important;
  background: #5D3026;
  color: #fff !important;
  text-align: center;
  border-radius: 3px;
  height: 60px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  font-size: 1rem;
  font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

.block input[type="submit"]:hover {
  opacity: 0.7;
  cursor: pointer;
}

.read {
  width: 600px;
  display: block;
  margin: 40px auto;
  height: 120px;
  padding: 10px;
  background: #fff;
}

.policy {
  text-align: center;
}


/*==================================
Provisionalページ
p==================================*/
.kari {
  margin: 80px 0 100px;
}

.kari p {
  font-size: 30px;
  color: #5D3026;
  line-height: 2em;
  text-align: center;
}

.kari p:last-child {
  margin-top: 20px;
  text-align: center;
}

.kari img {
  border-radius: 50%;
  width: 150px;
}

.mailImage {
  z-index: -1;
  position: relative;
}

.button {
  background: #ED4559;
  color: #fff;
  border: none;
  position: relative;
  height: 60px;
  font-size: 1.1em;
  padding: 0.2em 1.5em;
  cursor: pointer;
  transition: 800ms ease all;
  outline: none;
  border-radius: 5px;
}

.button:hover {
  background: #fff;
  color: #ED4559;
}

.button:before,
.button:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 2px;
  width: 0;
  background: #ED4559;
  transition: 400ms ease all;
}

.button:after {
  right: inherit;
  top: inherit;
  left: 0;
  bottom: 0;
}

.button:hover:before,
.button:hover:after {
  width: 100%;
  transition: 800ms ease all;
}

/*==================================
問い合わせ
==================================*/

.error_mail dt {
  background: #ed4559;
  text-align: center;
  color: #FFF;
  font-weight: bold;
  font-size: 17px;
  line-height: 2em;
  margin-bottom: 15px;
  letter-spacing: 1.2px;
}

.no_recieve {
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.5em;
}

.no_recieve span {
  font-weight: normal;
  font-size: 100%;
}

.connect_tel_form {
  background: #ed4559;
  text-align: center;
  color: #FFF;
  font-weight: bold;
  font-size: 17px;
  line-height: 2em;
  margin-bottom: 15px;
  letter-spacing: 1.2px;
  margin-top: 40px;
}

.connect_flabo {
  overflow: hidden;
  margin-bottom: 35px;
}

.connect_title {
  border-left: solid 5px #ed4559;
  padding: 10px;
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 5px;
}

.connect_tel_l {
  float: left;
  overflow: hidden;
}

.connect_tel_l a {
  font-size: 60px;
  font-weight: bold;
  line-height: 1.3em;
}

.connect_tel_r {
  float: left;
  margin-top: 20px;
  margin-left: 50px;
}

.connect_left {
  font-size: 20px;
  line-height: 1.5em;
  margin-top: 20px;
}

.connect_right input {
  border-radius: 5px;
  border: solid 1px #ed4559;
  padding: 5px;
  font-size: 18px;
  width: 50%;
}

.connect_right textarea {
  border-radius: 5px;
  border: solid 1px #ed4559;
  padding: 5px;
  font-size: 18px;
  width: 100%;
  height: 8em;
}

.help_btn {
  margin: 20px auto 60px;
  display: block;
  font-size: 20px;
  padding: 10px;
  width: 200px;
  font-weight: bolder;
  border-radius: 5px;
  color: #fff;
  background: #ed4559;
  border: #ed4559;
  box-shadow: 1px 1px 1px #888;
  cursor: pointer;
}

/*==================================
lineボタン
===================================*/
.line_btn {
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.5em;
}

.line_btn a {
  background: -webkit-gradient(linear, left top, left bottom, from(#7bd660), to(#44ad24));
  background: -webkit-linear-gradient(top, #7bd660, #44ad24);
  background: linear-gradient(to bottom, #7bd660, #44ad24);
  border: 2px solid #44ad24;
  border-radius: 5px;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  margin: 2% 5% 2% 0%;
  line-height: 2em;
  display: block;
  text-decoration: none;
  text-align: center;
  width: 52%;
}

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

  input[type="button"],
  input[type="submit"],
  select,
  textarea {
    -webkit-appearance: none;
    /* Google Chrome、Safari */
    -moz-appearance: none;
    /* Firefox */
    appearance: none;
    border-radius: 0;
    /* 標準のスタイルを無効に */
  }

  input:focus {
    outline-color: #1aaebc;
  }

  fieldset {
    margin: 0;
  }

  select:focus {
    border-color: #1aaebc;
  }

  .contents {
    width: 100%;
    padding: 10px 0;
  }

  .contents>h2 {
    width: 94%;
    margin: 20px auto;
  }

  .register {
    margin: 0 auto 50px;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
  }

  .fl2023_text {
    width: 94%;
    font-size: 12px;
  }

  .sp_none {
    display: none;
  }

  .pc_none {
    display: block;
  }

  /*==================================
ステップバー部分
===================================*/

  .progressbar {
    width: 94%;
    margin: 0 auto;
  }

  .progressbar.sp_none {
    display: none;
  }

  .progressbar.pc_none {
    display: flex;
  }

  /*==================================
form部分
===================================*/

  .important {
    margin-left: 2%;
    vertical-align: middle;
  }

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

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

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

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

  .register_data {
    padding: 20px 5%;
  }

  .register h3 {
    padding: 0 3%;
    margin: 40px auto 10px;
  }

  .register input[type="email"],
  .register 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%;
  }

  #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;
  }

  .qa {
    width: 100%;
    height: 30px;
    margin: 30px 0;
  }

  .qa .design {
    font-size: 19px !important;
    text-indent: -3em;
    padding-left: 2.5em;
    padding-right: 1.5em;
    line-height: 1.3em;
  }

  .confirmation_box3 {
    width: 49%;
  }

  .mailmagazine_annotation {
    font-size: 14px;

  }

  .komidashi {
    width: 100%;
    padding-bottom: 20px;
    float: none;
    display: block;
    padding-right: 0;
    clear: both;
  }

  .komidashi_margin {
    padding-left: 0;
  }

  .komidashi span {
    margin-left: 20px;
  }

  /*==================================
    errorページ
    ===================================*/

  .errorPage input,
  .errorPage textarea,
  .errorPage select {
    -webkit-appearance: none;
    background: #fff;
    height: 35px;
    margin-bottom: 10px;
    width: 95%;
  }

  .errorPage select {
    box-sizing: content-box;
    padding-top: 3px;
  }

  .errorPage legend {
    color: #5D3026;
    padding: 40px 0 0;
    font-size: 24px;
    letter-spacing: .7px;
    line-height: 1.3em;
  }

  .errorPage .design_long {
    color: #5D3026;
    display: block;
    letter-spacing: .7px;
    width: 95%;
    font-size: 14px;
    margin: 0 0 3px 0;
  }

  .errorPage .design {
    color: #5D3026;
    display: block;
    letter-spacing: .7px;
    width: 95%;
    font-size: 15px;
    margin: 0 0 3px 0;
  }

  .errorPage .design_bold {
    color: #5D3026;
    display: block;
    letter-spacing: .7px;
    width: 95%;
    font-size: 16px;
    margin: 0 0 3px 0;
    font-weight: bold;
  }

  .errorText {
    width: 300px;
    color: red;
    font-weight: bold;
    display: block;
  }

  .block input[type="submit"] {
    display: block;
    width: 270px;
    margin: 20px auto 50px;
    border: none !important;
    background: #5D3026;
    color: #fff !important;
    text-align: center;
    border-radius: 3px;
    height: 40px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    font-size: 1rem;
  }

  .kari p {
    font-size: 24px;
    width: 80%;
    margin: 0 auto;
  }

  .kari p:last-child {
    margin-top: 40px;
  }

  .marginAdjust {
    margin-top: -20px;
  }

  .heightAdjust {
    height: 50px !important;
  }

  .button:hover {
    -webkit-appearance: none;
    background: #ED4559;
    color: #fff;
  }

  .button:before,
  .button:after {
    display: none;
  }

  .button {
    background: #ED4559;
    color: #fff;
    border: none;
    position: relative;
    height: 60px;
    font-size: 1.1em;
    padding: 0.8em 1.5em;
    outline: none;
    border-radius: 5px;
    box-shadow: 2px 2px 5px #999;
  }

  .read {
    box-sizing: border-box;
    width: 85%;
    display: block;
    margin: 40px auto;
    height: 120px;
    padding: 10px;
    background: #fff;
    color: #333 !important;
  }

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

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

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

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

  .register_complete>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;
  }



  /*==================================
    問い合わせ
      ==================================*/

  .user_mail_help {
    width: 90%;
    margin-left: 5%;
  }

  .error_mail dt {
    background: #ed4559;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    font-size: 15px;
    line-height: 2em;
    margin-bottom: 15px;
    letter-spacing: 1.2px;
  }

  .no_recieve {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5em;
  }

  .no_recieve span {
    font-weight: normal;
    font-size: 100%;
  }

  .connect_tel_form {
    background: #ed4559;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    font-size: 15px;
    line-height: 2em;
    margin-bottom: 15px;
    letter-spacing: 1.2px;
    margin-top: 40px;
  }

  .connect_flabo {
    overflow: hidden;
    margin-bottom: 35px;
  }

  .connect_title {
    border-left: solid 5px #ed4559;
    padding: 10px;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
  }

  .connect_tel_l {
    float: left;
    overflow: hidden;
    font-size: 12px;
  }

  .connect_tel_l a {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.3em;
  }

  .connect_tel_r {
    float: left;
    margin-top: 5px;
    margin-left: 0;
    font-size: 12px;
  }

  .connect_left {
    font-size: 14px;
    line-height: 1.5em;
    margin-top: 10px;
  }

  .connect_right input {
    border-radius: 5px;
    border: solid 1px #ed4559;
    padding: 5px;
    font-size: 18px;
    width: 50%;
  }

  .connect_right textarea {
    border-radius: 5px;
    border: solid 1px #ed4559;
    padding: 5px;
    font-size: 18px;
    width: 100%;
    height: 8em;
  }

  .help_btn {
    margin: 20px auto 60px;
    display: block;
    font-size: 16px;
    padding: 10px;
    width: 200px;
    font-weight: bolder;
    border-radius: 5px;
    color: #fff;
    background: #ed4559;
    border: #ed4559;
    box-shadow: 1px 1px 1px #888;
    cursor: pointer;
  }

  /*==================================
lineボタン
===================================*/
  .line_btn {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.5em;
  }

  .line_btn a {
    background: -webkit-gradient(linear, left top, left bottom, from(#7bd660), to(#44ad24));
    background: -webkit-linear-gradient(top, #7bd660, #44ad24);
    background: linear-gradient(to bottom, #7bd660, #44ad24);
    border: 2px solid #44ad24;
    border-radius: 5px;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    margin: 2% 5%;
    line-height: 2em;
    display: block;
    text-decoration: none;
    text-align: center;
    width: 90%;
  }

}

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

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

  }


  /*==================================
form部分
===================================*/
  .register input[type="text"],
  .register input[type="email"],
  .register input[type="tel"],
  .register input[type="password"],
  .register select {
    padding: 8px;
    font-size: 16px;
  }

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

  /*******お名前*******/
  .name_label input[type="text"] {
    width: 90%;
  }

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

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

  /*******学校区分*******/
  .school_data .select_wrap {
    width: 60%;
  }

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

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

  /*******卒業予定時期*******/
  .graduate_data .select_wrap {
    width: 60%;
  }

  /*******学籍番号*******/
  .studentid_data input {
    width: 100%;
  }

  /*******希望職種・希望勤務地*******/
  .checkbox_list li {
    width: 50%;
  }

  .area_wrap li:not(:first-child) {
    width: 46%;
  }

  /*******タイプ別適職診断*******/
  .qa_table th {
    font-size: 15px;
  }

  /*******サブミットボタン・戻るボタン*******/
  .formbtn_area {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  /*==================================
error(user.php)
===================================*/
  .register_error_text {
    text-align: left;
  }


  /*==================================
  errorページ
  ===================================*/
  .caution {
    font-size: 1rem;
    padding: 20px 5px 10px;
  }

  .cautionError {
    font-size: 1rem;
    padding-top: 20px;
    padding-left: 5px;
    color: red;
  }

  .errorPage {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .errorPage input,
  .errorPage textarea,
  .errorPage select {
    height: 35px;
    margin-bottom: 10px;
    width: 95%;
  }

  .errorPage select {
    box-sizing: content-box;
  }

  .errorPage legend {
    color: #5D3026;
    padding: 15px 0 10px;
    font-size: 20px;
    letter-spacing: .7px;
    line-height: 1.3em;
    padding-left: 2em;
    text-indent: -2em;
  }

  .errorPage .design {
    color: #5D3026;
    display: block;
    letter-spacing: .7px;
    width: 95%;
    font-size: 14px;
    margin: 0 0 3px 0;
  }

  .errorPage .qa .design {
    font-size: 14px;
    text-indent: -3em;
    padding-left: 3em;
    box-sizing: border-box;
  }

  .errorPage .design_bold {
    color: #5D3026;
    display: block;
    letter-spacing: .7px;
    width: 95%;
    font-size: 16px;
    margin: 0 0 3px 0;
    font-weight: bold;
  }

  .errorText {
    width: 100%;
    font-size: 14px;
    color: red;
    font-weight: bold;
    display: block;
    margin-top: -10px;
    margin-bottom: 5px;
    clear: both;
  }

  .block input[type="submit"] {
    display: block;
    width: 270px;
    margin: 40px auto 50px;
    border: none !important;
    background: #5D3026;
    color: #fff !important;
    text-align: center;
    border-radius: 3px;
    height: 60px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    font-size: 1rem;
  }

  .errorPage .formset {
    margin-bottom: 20px;
  }

  .errorPage .qa {
    padding-bottom: 20px;
  }

  .kari p {
    font-size: 17px;
    width: 90%;
    margin: 10px auto 0;
    text-align: center;
    line-height: 1.5em;
  }

  .kari .mailImage {
    text-align: center;

  }

  .kari {
    margin: 200px 0 80px;
    /*margin:80px 0;*/
  }

  .kari img {
    width: 100px;
    margin-top: -50px;
  }

  /*==================================
lineボタン
===================================*/
  .line_btn {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.5em;
  }

  .line_btn a {
    background: -webkit-gradient(linear, left top, left bottom, from(#7bd660), to(#44ad24));
    background: -webkit-linear-gradient(top, #7bd660, #44ad24);
    background: linear-gradient(to bottom, #7bd660, #44ad24);
    border: 2px solid #44ad24;
    border-radius: 5px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    margin: 2% 5%;
    line-height: 2em;
    display: block;
    text-decoration: none;
    text-align: center;
    width: 90%;
  }

}

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

  /*==================================
ステップバー
===================================*/
  .bar_item {
    padding: 0px 17px 0 0px;
    font-size: 10px;
  }
}